From 8b6488ba82b1472731320d79ef7d91c213d673c9 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Mon, 11 Mar 2024 22:19:58 +0000 Subject: [PATCH 01/17] Department suit updates --- .../crates_lockers/closets/l3closet.dm | 42 +++++------------- code/modules/clothing/suits/bio.dm | 41 +++++------------ code/modules/gear_presets/synths.dm | 4 +- icons/mob/humans/onmob/head_0.dmi | Bin 119206 -> 117025 bytes icons/mob/humans/onmob/suit_0.dmi | Bin 339425 -> 334931 bytes icons/obj/items/clothing/hats.dmi | Bin 57530 -> 57166 bytes icons/obj/items/clothing/suits.dmi | Bin 167158 -> 164551 bytes maps/map_files/BigRed/BigRed.dmm | 8 ++-- .../BigRed/standalone/crashlanding-eva.dmm | 2 +- maps/map_files/CORSAT/Corsat.dmm | 2 +- .../FOP_v2_Cellblocks/Prison_Station_FOP.dmm | 2 +- .../FOP_v3_Sciannex/Fiorina_SciAnnex.dmm | 5 +-- maps/map_files/USS_Almayer/USS_Almayer.dmm | 6 +-- 13 files changed, 38 insertions(+), 74 deletions(-) diff --git a/code/game/objects/structures/crates_lockers/closets/l3closet.dm b/code/game/objects/structures/crates_lockers/closets/l3closet.dm index fa5332c0c996..723483104844 100644 --- a/code/game/objects/structures/crates_lockers/closets/l3closet.dm +++ b/code/game/objects/structures/crates_lockers/closets/l3closet.dm @@ -1,27 +1,25 @@ /obj/structure/closet/l3closet name = "level-3 biohazard suit closet" desc = "It's a storage unit for level-3 biohazard gear." - icon_state = "bio" - icon_closed = "bio" - icon_opened = "bioopen" + icon_state = "bio_general" + icon_closed = "bio_general" + icon_opened = "bio_generalopen" /obj/structure/closet/l3closet/Initialize() . = ..() - new /obj/item/clothing/suit/bio_suit/general( src ) - new /obj/item/clothing/head/bio_hood/general( src ) + new /obj/item/clothing/suit/bio_suit( src ) + new /obj/item/clothing/head/bio_hood( src ) +/obj/structure/closet/l3closet/medical + icon_state = "bio" + icon_closed = "bio" + icon_opened = "bioopen" -/obj/structure/closet/l3closet/general - icon_state = "bio_general" - icon_closed = "bio_general" - icon_opened = "bio_generalopen" - -/obj/structure/closet/l3closet/general/Initialize() +/obj/structure/closet/l3closet/medical/Initialize() . = ..() contents = list() - new /obj/item/clothing/suit/bio_suit/general( src ) - new /obj/item/clothing/head/bio_hood/general( src ) - + new /obj/item/clothing/suit/bio_suit/medical( src ) + new /obj/item/clothing/head/bio_hood/medical( src ) /obj/structure/closet/l3closet/virology icon_state = "bio_virology" @@ -33,9 +31,6 @@ contents = list() new /obj/item/clothing/suit/bio_suit/virology( src ) new /obj/item/clothing/head/bio_hood/virology( src ) - new /obj/item/clothing/mask/breath(src) - new /obj/item/tank/oxygen(src) - /obj/structure/closet/l3closet/security icon_state = "bio_security" @@ -48,19 +43,6 @@ new /obj/item/clothing/suit/bio_suit/security( src ) new /obj/item/clothing/head/bio_hood/security( src ) - -/obj/structure/closet/l3closet/janitor - icon_state = "bio_janitor" - icon_closed = "bio_janitor" - icon_opened = "bio_janitoropen" - -/obj/structure/closet/l3closet/janitor/Initialize() - . = ..() - contents = list() - new /obj/item/clothing/suit/bio_suit/janitor( src ) - new /obj/item/clothing/head/bio_hood/janitor( src ) - - /obj/structure/closet/l3closet/scientist icon_state = "bio_scientist" icon_closed = "bio_scientist" diff --git a/code/modules/clothing/suits/bio.dm b/code/modules/clothing/suits/bio.dm index 59e0918550ed..0453e3f12d3c 100644 --- a/code/modules/clothing/suits/bio.dm +++ b/code/modules/clothing/suits/bio.dm @@ -1,7 +1,9 @@ //Biosuit complete with shoes (in the item sprite) +//Standard biosuit, orange stripe + /obj/item/clothing/head/bio_hood name = "bio hood" - icon_state = "bio" + icon_state = "bio_general" desc = "A hood that protects the head and face from biological contaminants." permeability_coefficient = 0.2 armor_melee = CLOTHING_ARMOR_NONE @@ -26,7 +28,7 @@ /obj/item/clothing/suit/bio_suit name = "bio suit" desc = "A suit that protects against biological contamination." - icon_state = "bio" + icon_state = "bio_general" item_state = "bio_suit" w_class = SIZE_LARGE//bulky item gas_transfer_coefficient = 0.01 @@ -47,7 +49,7 @@ /obj/item/clothing/suit/storage/synthbio name = "bio suit" desc = "Synthetic compliant bio-hazard suit. Intended to allow a synthetic to offer the illusion of infection control to humans. Has had most of the internal protective lining removed, allowing it to hold equipment and be lighter to move in." - icon_state = "bio" + icon_state = "bio_general" item_state = "bio_suit" allowed = list( /obj/item/weapon/baton, @@ -65,13 +67,13 @@ /obj/item/device/motiondetector, ) -//Standard biosuit, orange stripe -/obj/item/clothing/head/bio_hood/general - icon_state = "bio_general" +//Medical biosuit, blue wrist bands +/obj/item/clothing/head/bio_hood/medical + icon_state = "bio_med" flags_armor_protection = BODY_FLAG_HEAD|BODY_FLAG_FACE|BODY_FLAG_EYES -/obj/item/clothing/suit/bio_suit/general - icon_state = "bio_general" +/obj/item/clothing/suit/bio_suit/medical + icon_state = "bio_med" flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS|BODY_FLAG_HANDS|BODY_FLAG_FEET flags_inv_hide = HIDEGLOVES|HIDEJUMPSUIT|HIDETAIL @@ -84,7 +86,7 @@ flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS flags_inv_hide = HIDEGLOVES|HIDEJUMPSUIT|HIDETAIL -//Security biosuit, grey with red stripe across the chest +//Security biosuit, red wrist bands /obj/item/clothing/head/bio_hood/security icon_state = "bio_security" @@ -93,17 +95,7 @@ flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS flags_inv_hide = HIDEGLOVES|HIDEJUMPSUIT|HIDETAIL -//Janitor's biosuit, grey with purple arms -/obj/item/clothing/head/bio_hood/janitor - icon_state = "bio_janitor" - -/obj/item/clothing/suit/bio_suit/janitor - icon_state = "bio_janitor" - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS - flags_inv_hide = HIDEGLOVES|HIDEJUMPSUIT|HIDETAIL - - -//Scientist's biosuit, white with a pink-ish hue +//Scientist's biosuit, purple wrist bands /obj/item/clothing/head/bio_hood/scientist icon_state = "bio_scientist" @@ -112,15 +104,6 @@ flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS flags_inv_hide = HIDEGLOVES|HIDEJUMPSUIT|HIDETAIL -//CMO's biosuit, blue stripe -/obj/item/clothing/suit/bio_suit/cmo - icon_state = "bio_cmo" - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS - flags_inv_hide = HIDEGLOVES|HIDEJUMPSUIT|HIDETAIL - -/obj/item/clothing/head/bio_hood/cmo - icon_state = "bio_cmo" - //Plague Dr mask can be found in clothing/masks/gasmask.dm /obj/item/clothing/suit/bio_suit/plaguedoctorsuit diff --git a/code/modules/gear_presets/synths.dm b/code/modules/gear_presets/synths.dm index 9a181c817020..1bd8bac6b5c1 100644 --- a/code/modules/gear_presets/synths.dm +++ b/code/modules/gear_presets/synths.dm @@ -212,14 +212,14 @@ /datum/equipment_preset/synth/survivor/scientist_synth name = "Survivor - Synthetic - Scientist Synth" equipment_to_spawn = list( - WEAR_HEAD = /obj/item/clothing/head/bio_hood, + WEAR_HEAD = /obj/item/clothing/head/bio_hood/synth, WEAR_FACE = /obj/item/clothing/mask/surgical, WEAR_EYES = /obj/item/clothing/glasses/hud/health, WEAR_BODY = /obj/item/clothing/under/rank/scientist, WEAR_BACK = /obj/item/storage/backpack/satchel/chem, WEAR_IN_BACK = /obj/item/reagent_container/glass/beaker/vial/random/good, WEAR_IN_BACK = /obj/item/paper/research_notes/good, - WEAR_JACKET = /obj/item/clothing/suit/bio_suit, + WEAR_JACKET = /obj/item/clothing/suit/storage/synthbio, WEAR_WAIST = /obj/item/storage/belt/medical/lifesaver/full, WEAR_HANDS = /obj/item/clothing/gloves/black, WEAR_R_HAND = /obj/item/device/motiondetector, diff --git a/icons/mob/humans/onmob/head_0.dmi b/icons/mob/humans/onmob/head_0.dmi index 9fc0bc82c1238b625fe84031c8df7d407350c47a..b4738019fe1a4a661a451a9795da5b3b368986fa 100644 GIT binary patch literal 117025 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 F{|BZK)A;}Z literal 119206 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 qRQ(+D z>PSfrrH>1zxK*-wm0YPM1W2KL;NrSP&qbOnPXqnbyj?Km!y`}K&R!FJVYr*fic^kf z)$3gaG z@Fr>2_wOo&qp32kTp>Ak1SKW^tgGG2Q84=xvxM+;=tHa=Bk(vS!fSo_R}>0B8-fAf zzZP++m!2<@?lyT;K`dM69dauoY2I5J9PIAHx2SJh_A@sH8e9R>EfE_;4qfym~C; zk2muQCbH2m4G)HTf%T%bmw5!e{gIpTOVA%7PjysCCwT6S-V#bnikqq1dAv6ka;_e* zhw06`*Dn`a$obs0hIZ|J^fhLL6J=W0K65xIKx&TxkH02({;olp~3 zBk<9T#3u2dJouGxFe1OV6Jt_BTj(wA zSnZBWa*)__4ZzGVMJX~?J_(lU4+`Q>C~S93i7|5q_^x~@d_c3+$x%C<9@knWYFD~{ zKXb*wq3>06bo92pa;e7tm(OBoZkn}MHNj!OI_=u{b-JPeAxSUd>~h=w$)f$lAhts5 z6Pm9pWDkFu1WK4@75cHJvew3A(_x21kYme)Jto-L!C?yD4=0}{2~akf^(Jx~TD>&a zsCiOSWd}J>!rCZ=%CN&}{B& zrQ~F_(I{Ld{+j zu^4uy=GhOqS=<{^_b8M^jEZ!#VeZQ*iUf zKX0YBGG9Me6QXBh%YPvUJG%v_CP;VEUfQ8SJ`Y&(Hy}_Z!i1jjC(BM0&oCS`puMT}0w2Ew*+Bg!flOfOVO{8%`{eNOKF{VV11$0^Uv zSI14(5>}Ueuk0y!ZcTkTtzVv!{5Phy|Lt*o|8F2+_75<94IAnIJ;`QwZNWbSYti$zOVTYDrs4Xpk0wd zx6^_Vv&rpYsY@vc$)*5SNthjj(+bs76 zf+hq-t}nkfuBx(Kw5(Lei(iLAGWg?~dcBK@4*BgpN+~vO;`+aaU!LV{a{8IQV+vlR|VZcVr;RU zHy+cmz5Mp=@|0KQSD6L4BEkSfMl$d%!Jp-?x99~c_sg1i{-Lqk++dwWr1W*(R^oc& zifd$5QmiHuNu6XGMdFnYc)Tw8()Jzi=qCH(2IOq!@07_OVb^+_bzpm_=Ddkr8d7ym zx5wv$E0`m(5}|aKRq2a|@5>07oK8`Q@e1Kn8atvWaLXG$PtVc?h`*o(X+f>?o5RL( zOg-cH;I1V{3y)$e4-l zKA*tb)46ti-t(w-!Gj!Z6v*2GYA^^YC@ds^^z`&@1?=aI4oHDY*uhGN{=3dl$k5Ou zpa+GXYY8d9C%C53JO&1M-)8Xryaoit8%nLnEcz_=k1cvoKo_su5&Nu<&si#ZEZke4 zs%H$D>Nd%Hep`Lw`9?Q37$&1*r-(0 zB@A@BeV|GeUO<1j7LMYMRq4*(yy)4d_9-Dg!!=j?v%I^8i7VWF!X_C%pK*Qwx}ARj zw=5(q8mu-2-J@@@deJ)pN)9H#z_2!wXPiV!C&PG`A3B`#wA?O zR!wt%b7-tml9&PJd(XB#Eti}m41$Uz*5BHy?yuv~hu)n7Z@EL>#$2m)Af6gO?weLI zB;R$xOA6WyT%DW7Gxo1XuTuF$9$@e-V_)u#fCBAHqb*o~Iddjn^G*ik!vhQrkFg*? za59a-AYI8`q;aau9rv1rNTMOA#>H=PYo|-Q;o-4oVslHVOTYi=)eK?sMhkJ?uw{@u zwz)|9ihc&K@$S-V`>uCwK$^_F!xq-0{dsvpTmAfZ-|CuiZ_~8^ceQS}N2J`gopdSy zUHm=hk#e@VYqO!()(of2lpE2E|1u{6lTZ6y=a>8ISMO*LiKCEj@$eWCeℑdVzWS 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£Z_l!1SGu8JY7!`Gnul2Zi;l`7CV) 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

2=Jpv;_1ndhl>*kl` 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 z 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 R{2<^XBc&)=DX#DPe*h%fWuyQA literal 339425 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

V9qNLeMA478+O-`GrS85tNz&w2lWP{6tVl`QKW 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

  • QUvg86!i#@+24mb}<6$mKg6(Hzu0)TQ{cR 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 literal 167158 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�Gg&%jX0_KuGeg5q8-~_6U-KpZF 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 G1^*9QbwhCg diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm index b605e7115c10..74428deddd50 100644 --- a/maps/map_files/BigRed/BigRed.dmm +++ b/maps/map_files/BigRed/BigRed.dmm @@ -6312,7 +6312,7 @@ /turf/open/floor/plating, /area/bigredv2/outside/admin_building) "asU" = ( -/obj/structure/closet/l3closet, +/obj/structure/closet/l3closet/general, /obj/effect/decal/cleanable/dirt, /turf/open/floor{ dir = 8; @@ -6328,7 +6328,7 @@ }, /area/bigredv2/outside/general_offices) "asW" = ( -/obj/structure/closet/l3closet, +/obj/structure/closet/l3closet/general, /turf/open/floor{ dir = 8; icon_state = "vault" @@ -13256,7 +13256,7 @@ }, /area/bigredv2/outside/virology) "aNa" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet/virology, /turf/open/floor{ icon_state = "white" }, @@ -35075,7 +35075,7 @@ }, /area/bigredv2/caves_virology) "oDB" = ( -/obj/structure/closet/l3closet, +/obj/structure/closet/l3closet/general, /obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 8; diff --git a/maps/map_files/BigRed/standalone/crashlanding-eva.dmm b/maps/map_files/BigRed/standalone/crashlanding-eva.dmm index 33eefe09518f..45e6ee64906e 100644 --- a/maps/map_files/BigRed/standalone/crashlanding-eva.dmm +++ b/maps/map_files/BigRed/standalone/crashlanding-eva.dmm @@ -473,7 +473,7 @@ }, /area/bigredv2/outside/general_offices) "ch" = ( -/obj/structure/closet/l3closet, +/obj/structure/closet/l3closet/general, /turf/open/floor{ icon_state = "platingdmg1" }, diff --git a/maps/map_files/CORSAT/Corsat.dmm b/maps/map_files/CORSAT/Corsat.dmm index 9c09a95e9f94..9d0c7f5f5a1b 100644 --- a/maps/map_files/CORSAT/Corsat.dmm +++ b/maps/map_files/CORSAT/Corsat.dmm @@ -31121,7 +31121,7 @@ }, /area/corsat/omega/maint) "bLD" = ( -/obj/structure/closet/l3closet/janitor, +/obj/structure/closet/l3closet/general, /turf/open/floor/corsat{ dir = 5; icon_state = "yellow" diff --git a/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm b/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm index 97f0248ff6e8..f060c68056c6 100644 --- a/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm +++ b/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm @@ -195,7 +195,7 @@ }, /area/prison/research/secret/testing) "aav" = ( -/obj/structure/closet/l3closet, +/obj/structure/closet/l3closet/general, /obj/structure/machinery/light{ dir = 1 }, diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm index f81f67e45a80..94aee03a8549 100644 --- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm +++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm @@ -13504,9 +13504,8 @@ /area/fiorina/station/botany) "igQ" = ( /obj/structure/closet/cabinet, -/obj/item/clothing/under/rank/janitor, -/obj/item/clothing/suit/bio_suit/janitor, -/obj/item/clothing/head/bio_hood/janitor, +/obj/item/clothing/suit/bio_suit/general, +/obj/item/clothing/head/bio_hood/general, /turf/open/floor/wood, /area/fiorina/station/civres_blue) "igV" = ( diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index 0d15799978a9..66c4bf1aadbf 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -17010,7 +17010,7 @@ }, /area/almayer/shipboard/port_point_defense) "bVe" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet/scientist, /obj/structure/window/reinforced{ dir = 8; health = 80 @@ -44926,7 +44926,7 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_s) "lmw" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet/scientist, /obj/structure/machinery/light{ dir = 8 }, @@ -51464,7 +51464,7 @@ /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_umbilical) "nDo" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet/scientist, /obj/structure/window/reinforced{ dir = 8; health = 80 From 5f8e48394abee6df5818a60e370c36f791be9f4b Mon Sep 17 00:00:00 2001 From: forest2001 Date: Mon, 11 Mar 2024 22:20:05 +0000 Subject: [PATCH 02/17] disease passing --- code/datums/disease.dm | 12 +++-- code/modules/mob/living/carbon/carbon.dm | 64 ++++++++++++++++++------ 2 files changed, 58 insertions(+), 18 deletions(-) diff --git a/code/datums/disease.dm b/code/datums/disease.dm index 024337c8e065..a8fdf504fc07 100644 --- a/code/datums/disease.dm +++ b/code/datums/disease.dm @@ -104,16 +104,20 @@ GLOBAL_LIST_INIT(diseases, typesof(/datum/disease) - /datum/disease) how_spread = force_spread if(how_spread == SPECIAL || how_spread == NON_CONTAGIOUS || how_spread == BLOOD)//does not spread - return + return FALSE if(stage < contagious_period) //the disease is not contagious at this stage - return + return FALSE if(!source)//no holder specified if(affected_mob)//no mob affected holder source = affected_mob else //no source and no mob affected. Rogue disease. Break - return + return FALSE + + var/mob/source_mob = source + if(istype(source_mob) && !source_mob.can_pass_disease()) + return FALSE var/check_range = airborne_range//defaults to airborne - range 2 @@ -122,7 +126,7 @@ GLOBAL_LIST_INIT(diseases, typesof(/datum/disease) - /datum/disease) if(isturf(source.loc)) for(var/mob/living/carbon/victim in oview(check_range, source)) - if(isturf(victim.loc)) + if(isturf(victim.loc) && victim.can_pass_disease()) if(AStar(source.loc, victim.loc, /turf/proc/AdjacentTurfs, /turf/proc/Distance, check_range)) victim.contract_disease(src, 0, 1, force_spread) diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index 08daa5348022..1ee7cc4c3169 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -156,30 +156,66 @@ . = ..() -/mob/living/carbon/attack_hand(mob/M as mob) - if(!istype(M, /mob/living/carbon)) return +/mob/living/carbon/attack_hand(mob/target_mob as mob) + if(!istype(target_mob, /mob/living/carbon)) return - if(M.mob_flags & SURGERY_MODE_ON && M.a_intent & (INTENT_HELP|INTENT_DISARM)) - var/datum/surgery/current_surgery = active_surgeries[M.zone_selected] + if(target_mob.mob_flags & SURGERY_MODE_ON && target_mob.a_intent & (INTENT_HELP|INTENT_DISARM)) + var/datum/surgery/current_surgery = active_surgeries[target_mob.zone_selected] if(current_surgery) - if(current_surgery.attempt_next_step(M, null)) + if(current_surgery.attempt_next_step(target_mob, null)) return TRUE else - var/obj/limb/affecting = get_limb(check_zone(M.zone_selected)) - if(affecting && initiate_surgery_moment(null, src, affecting, M)) + var/obj/limb/affecting = get_limb(check_zone(target_mob.zone_selected)) + if(affecting && initiate_surgery_moment(null, src, affecting, target_mob)) return TRUE - for(var/datum/disease/D in viruses) - if(D.spread_by_touch()) - M.contract_disease(D, 0, 1, CONTACT_HANDS) + if(can_pass_disease() && target_mob.can_pass_disease()) + for(var/datum/disease/virus in viruses) + if(virus.spread_by_touch()) + target_mob.contract_disease(virus, 0, 1, CONTACT_HANDS) - for(var/datum/disease/D in M.viruses) - if(D.spread_by_touch()) - contract_disease(D, 0, 1, CONTACT_HANDS) + for(var/datum/disease/virus in target_mob.viruses) + if(virus.spread_by_touch()) + contract_disease(virus, 0, 1, CONTACT_HANDS) - M.next_move += 7 //Adds some lag to the 'attack'. Adds up to 11 in combination with click_adjacent. + target_mob.next_move += 7 //Adds some lag to the 'attack'. Adds up to 11 in combination with click_adjacent. return +/// Whether or not a mob can pass diseases to another, or receive said diseases. +/mob/proc/can_pass_disease() + return TRUE + +/mob/living/carbon/human/can_pass_disease() + /// Multiplier for checked pieces. + var/mult = 0 + /// Total amount of bio protection + var/total_prot = 0 + /// Super bio armor + var/bio_hardcore = 0 + + var/list/worn_clothes = list() + worn_clothes += head + worn_clothes += wear_suit + worn_clothes += hands + worn_clothes += glasses + worn_clothes += w_uniform + worn_clothes += shoes + worn_clothes += wear_mask + + for(var/obj/item/clothing/worn_item in worn_clothes) + total_prot = (total_prot + worn_item.armor_bio) + mult++ + if(worn_item.armor_bio == CLOTHING_ARMOR_HARDCORE) + bio_hardcore++ + + if(bio_hardcore >= 2) + return FALSE + + var/perc = (total_prot / mult) + if(!prob(perc)) + return TRUE + return FALSE + /mob/living/carbon/electrocute_act(shock_damage, obj/source, siemens_coeff = 1.0, def_zone = null) if(status_flags & GODMODE) //godmode return FALSE From 27e2d48a1959c1f163e12e9e69b1bc020f4fd1f6 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Mon, 11 Mar 2024 22:47:41 +0000 Subject: [PATCH 03/17] map fixes --- maps/map_files/BigRed/BigRed.dmm | 6 +++--- maps/map_files/BigRed/standalone/crashlanding-eva.dmm | 2 +- maps/map_files/CORSAT/Corsat.dmm | 8 ++++---- .../map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm | 2 +- maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm | 10 +++------- 5 files changed, 12 insertions(+), 16 deletions(-) diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm index 74428deddd50..52a85debafc2 100644 --- a/maps/map_files/BigRed/BigRed.dmm +++ b/maps/map_files/BigRed/BigRed.dmm @@ -6312,7 +6312,7 @@ /turf/open/floor/plating, /area/bigredv2/outside/admin_building) "asU" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet, /obj/effect/decal/cleanable/dirt, /turf/open/floor{ dir = 8; @@ -6328,7 +6328,7 @@ }, /area/bigredv2/outside/general_offices) "asW" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet, /turf/open/floor{ dir = 8; icon_state = "vault" @@ -35075,7 +35075,7 @@ }, /area/bigredv2/caves_virology) "oDB" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet, /obj/effect/landmark/objective_landmark/close, /turf/open/floor{ dir = 8; diff --git a/maps/map_files/BigRed/standalone/crashlanding-eva.dmm b/maps/map_files/BigRed/standalone/crashlanding-eva.dmm index 45e6ee64906e..33eefe09518f 100644 --- a/maps/map_files/BigRed/standalone/crashlanding-eva.dmm +++ b/maps/map_files/BigRed/standalone/crashlanding-eva.dmm @@ -473,7 +473,7 @@ }, /area/bigredv2/outside/general_offices) "ch" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet, /turf/open/floor{ icon_state = "platingdmg1" }, diff --git a/maps/map_files/CORSAT/Corsat.dmm b/maps/map_files/CORSAT/Corsat.dmm index 9d0c7f5f5a1b..a0f2d17b69c0 100644 --- a/maps/map_files/CORSAT/Corsat.dmm +++ b/maps/map_files/CORSAT/Corsat.dmm @@ -31121,7 +31121,7 @@ }, /area/corsat/omega/maint) "bLD" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet, /turf/open/floor/corsat{ dir = 5; icon_state = "yellow" @@ -35244,7 +35244,7 @@ /turf/open/floor/corsat, /area/corsat/inaccessible) "bYU" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet, /turf/open/floor/corsat{ icon_state = "yellow" }, @@ -39429,7 +39429,7 @@ /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) "ePL" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -58094,7 +58094,7 @@ }, /area/corsat/gamma/hangar/flightcontrol) "sFD" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet, /obj/structure/machinery/light, /turf/open/floor/corsat{ icon_state = "plate" diff --git a/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm b/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm index f060c68056c6..97f0248ff6e8 100644 --- a/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm +++ b/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm @@ -195,7 +195,7 @@ }, /area/prison/research/secret/testing) "aav" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet, /obj/structure/machinery/light{ dir = 1 }, diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm index 94aee03a8549..40a5a4349435 100644 --- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm +++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm @@ -13504,8 +13504,8 @@ /area/fiorina/station/botany) "igQ" = ( /obj/structure/closet/cabinet, -/obj/item/clothing/suit/bio_suit/general, -/obj/item/clothing/head/bio_hood/general, +/obj/item/clothing/suit/bio_suit, +/obj/item/clothing/head/bio_hood, /turf/open/floor/wood, /area/fiorina/station/civres_blue) "igV" = ( @@ -14853,7 +14853,7 @@ }, /area/fiorina/station/civres_blue) "iXV" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) "iYa" = ( @@ -30982,10 +30982,6 @@ /area/fiorina/tumor/civres) "sQr" = ( /obj/structure/janitorialcart, -/obj/item/clothing/head/bio_hood/janitor{ - pixel_x = -4; - pixel_y = 5 - }, /turf/open/floor/prison, /area/fiorina/station/disco) "sQy" = ( From f3f4d6f08f24f4007a09d6a444b44cf0cd1ef75f Mon Sep 17 00:00:00 2001 From: forest2001 Date: Mon, 11 Mar 2024 22:55:27 +0000 Subject: [PATCH 04/17] gas proofing --- code/modules/clothing/head/helmet.dm | 2 +- code/modules/clothing/suits/bio.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index 26c92f632ee2..223342463410 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -1435,7 +1435,7 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( armor_rad = CLOTHING_ARMOR_HIGHPLUS force = 0 //"The M3 MOPP mask would be a normal weapon if you were to hit someone with it." throwforce = 0 - flags_inventory = BLOCKSHARPOBJ + flags_inventory = BLOCKSHARPOBJ|BLOCKGASEFFECT flags_marine_helmet = NO_FLAGS flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE flags_inv_hide = HIDEEARS|HIDEALLHAIR diff --git a/code/modules/clothing/suits/bio.dm b/code/modules/clothing/suits/bio.dm index 0453e3f12d3c..d57dd4ea5c8b 100644 --- a/code/modules/clothing/suits/bio.dm +++ b/code/modules/clothing/suits/bio.dm @@ -14,7 +14,7 @@ armor_bio = CLOTHING_ARMOR_ULTRAHIGH armor_rad = CLOTHING_ARMOR_MEDIUM armor_internaldamage = CLOTHING_ARMOR_LOW - flags_inventory = COVEREYES|COVERMOUTH + flags_inventory = COVEREYES|COVERMOUTH|BLOCKGASEFFECT flags_inv_hide = HIDEFACE|HIDEMASK|HIDEEARS|HIDEALLHAIR flags_armor_protection = BODY_FLAG_HEAD|BODY_FLAG_FACE|BODY_FLAG_EYES siemens_coefficient = 0.9 From c9ee558f3d134899919fecf301f8a8bca4e76d4f Mon Sep 17 00:00:00 2001 From: forest2001 Date: Fri, 15 Mar 2024 03:16:52 +0000 Subject: [PATCH 05/17] medical locker & bio hood --- .../crates_lockers/closets/l3closet.dm | 6 +++--- code/modules/clothing/suits/bio.dm | 2 +- icons/obj/structures/closet.dmi | Bin 53774 -> 53506 bytes maps/map_files/USS_Almayer/USS_Almayer.dmm | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/code/game/objects/structures/crates_lockers/closets/l3closet.dm b/code/game/objects/structures/crates_lockers/closets/l3closet.dm index 723483104844..fa2e959b7f64 100644 --- a/code/game/objects/structures/crates_lockers/closets/l3closet.dm +++ b/code/game/objects/structures/crates_lockers/closets/l3closet.dm @@ -11,9 +11,9 @@ new /obj/item/clothing/head/bio_hood( src ) /obj/structure/closet/l3closet/medical - icon_state = "bio" - icon_closed = "bio" - icon_opened = "bioopen" + icon_state = "bio_medical" + icon_closed = "bio_medical" + icon_opened = "bio_medicalopen" /obj/structure/closet/l3closet/medical/Initialize() . = ..() diff --git a/code/modules/clothing/suits/bio.dm b/code/modules/clothing/suits/bio.dm index d57dd4ea5c8b..9d40e8d92bd0 100644 --- a/code/modules/clothing/suits/bio.dm +++ b/code/modules/clothing/suits/bio.dm @@ -11,7 +11,7 @@ armor_laser = CLOTHING_ARMOR_NONE armor_energy = CLOTHING_ARMOR_NONE armor_bomb = CLOTHING_ARMOR_NONE - armor_bio = CLOTHING_ARMOR_ULTRAHIGH + armor_bio = CLOTHING_ARMOR_HARDCORE armor_rad = CLOTHING_ARMOR_MEDIUM armor_internaldamage = CLOTHING_ARMOR_LOW flags_inventory = COVEREYES|COVERMOUTH|BLOCKGASEFFECT diff --git a/icons/obj/structures/closet.dmi b/icons/obj/structures/closet.dmi index e0e50ab9ae09dc36b9380b371710a3d4a7718fc1..ebac1789024f812bd1869833d3e6a0ec85a8b5f7 100644 GIT binary patch literal 53506 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 diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index 66c4bf1aadbf..8af03368c922 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -41320,7 +41320,7 @@ }, /area/almayer/hallways/upper/aft_hallway) "jZY" = ( -/obj/structure/closet/l3closet/virology, +/obj/structure/closet/l3closet/medical, /turf/open/floor/almayer{ icon_state = "redfull" }, From 802e54008d6a682787c43fe4350a275e767fd756 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Fri, 15 Mar 2024 03:20:05 +0000 Subject: [PATCH 06/17] icon conflict --- icons/obj/structures/closet.dmi | Bin 55328 -> 55066 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/structures/closet.dmi b/icons/obj/structures/closet.dmi index 4377a48779cbc7669a18efab5d67cf6e372e7d9f..9bda5798f782bce8f2ec2ebf55173afbdf50d241 100644 GIT binary patch literal 55066 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 Q8wMcoboFyt=akR{04CGOGXMYp literal 55328 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 Date: Fri, 15 Mar 2024 03:55:05 +0000 Subject: [PATCH 07/17] closet icons --- icons/obj/structures/closet.dmi | Bin 55066 -> 54256 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/structures/closet.dmi b/icons/obj/structures/closet.dmi index 9bda5798f782bce8f2ec2ebf55173afbdf50d241..1d0c2138e0c1cfb9435fbb6eb37f4b4c39aae0c4 100644 GIT binary patch literal 54256 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 Q8wMcoboFyt=akR{04CGOGXMYp From 2f4be22b2e5d451e7684c96662e307c7f87b77c7 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Wed, 27 Mar 2024 21:18:27 +0000 Subject: [PATCH 08/17] stop div 0 --- code/modules/mob/living/carbon/carbon.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index 1ee7cc4c3169..cecfd4a19bd0 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -208,6 +208,9 @@ if(worn_item.armor_bio == CLOTHING_ARMOR_HARDCORE) bio_hardcore++ + if(!mult) + return FALSE + if(bio_hardcore >= 2) return FALSE From 621c666b992202a3e7e96ca5060e1fc78207d344 Mon Sep 17 00:00:00 2001 From: forest2001 <41653574+realforest2001@users.noreply.github.com> Date: Wed, 3 Apr 2024 09:17:16 +0100 Subject: [PATCH 09/17] Apply suggestions from code review Co-authored-by: SabreML <57483089+SabreML@users.noreply.github.com> --- code/modules/mob/living/carbon/carbon.dm | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index cecfd4a19bd0..bac6db19a302 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -172,11 +172,11 @@ if(can_pass_disease() && target_mob.can_pass_disease()) for(var/datum/disease/virus in viruses) if(virus.spread_by_touch()) - target_mob.contract_disease(virus, 0, 1, CONTACT_HANDS) + target_mob.contract_disease(virus, FALSE, TRUE, CONTACT_HANDS) for(var/datum/disease/virus in target_mob.viruses) if(virus.spread_by_touch()) - contract_disease(virus, 0, 1, CONTACT_HANDS) + contract_disease(virus, FALSE, TRUE, CONTACT_HANDS) target_mob.next_move += 7 //Adds some lag to the 'attack'. Adds up to 11 in combination with click_adjacent. return @@ -186,24 +186,17 @@ return TRUE /mob/living/carbon/human/can_pass_disease() - /// Multiplier for checked pieces. + // Multiplier for checked pieces. var/mult = 0 - /// Total amount of bio protection + // Total amount of bio protection var/total_prot = 0 - /// Super bio armor + // Super bio armor var/bio_hardcore = 0 - var/list/worn_clothes = list() - worn_clothes += head - worn_clothes += wear_suit - worn_clothes += hands - worn_clothes += glasses - worn_clothes += w_uniform - worn_clothes += shoes - worn_clothes += wear_mask + var/list/worn_clothes = list(head, wear_suit, hands, glasses, w_uniform, shoes, wear_mask) for(var/obj/item/clothing/worn_item in worn_clothes) - total_prot = (total_prot + worn_item.armor_bio) + total_prot += worn_item.armor_bio mult++ if(worn_item.armor_bio == CLOTHING_ARMOR_HARDCORE) bio_hardcore++ From f1a51ae82257a36068f4d05c17c876a799d290a0 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Sat, 7 Sep 2024 22:00:25 +0100 Subject: [PATCH 10/17] removes dupe proc and permeability_coefficient --- code/datums/agents/tools/conceal_gloves.dm | 2 - code/datums/diseases/mob_procs.dm | 70 +------------------ code/game/objects/items.dm | 5 -- code/modules/clothing/clothing.dm | 2 +- code/modules/clothing/gloves/color.dm | 3 +- code/modules/clothing/gloves/marine_gloves.dm | 4 +- code/modules/clothing/gloves/miscellaneous.dm | 7 +- code/modules/clothing/head/hardhat.dm | 2 +- code/modules/clothing/head/misc.dm | 1 - code/modules/clothing/masks/breath.dm | 5 +- code/modules/clothing/masks/gasmask.dm | 1 - code/modules/clothing/masks/miscellaneous.dm | 3 +- code/modules/clothing/shoes/colour.dm | 2 +- code/modules/clothing/shoes/marine_shoes.dm | 2 +- code/modules/clothing/shoes/miscellaneous.dm | 6 +- code/modules/clothing/spacesuits/captain.dm | 3 +- .../modules/clothing/spacesuits/spacesuits.dm | 3 +- code/modules/clothing/suits/armor.dm | 2 +- code/modules/clothing/suits/bio.dm | 2 - code/modules/clothing/suits/jobs.dm | 2 +- code/modules/clothing/suits/utility.dm | 6 +- code/modules/clothing/under/jobs/civilian.dm | 2 +- code/modules/clothing/under/jobs/medsci.dm | 22 +++--- code/modules/clothing/under/miscellaneous.dm | 1 - code/modules/clothing/under/under.dm | 1 - code/modules/cm_preds/yaut_bracers.dm | 2 +- code/modules/cm_preds/yaut_items.dm | 2 +- code/modules/reagents/Chemistry-Reagents.dm | 18 ++--- 28 files changed, 42 insertions(+), 139 deletions(-) diff --git a/code/datums/agents/tools/conceal_gloves.dm b/code/datums/agents/tools/conceal_gloves.dm index 8bb7e98a5085..de8d3753dc70 100644 --- a/code/datums/agents/tools/conceal_gloves.dm +++ b/code/datums/agents/tools/conceal_gloves.dm @@ -5,9 +5,7 @@ icon_state = "black" item_state = "bgloves" - siemens_coefficient = 0 - permeability_coefficient = 0.05 flags_cold_protection = BODY_FLAG_HANDS min_cold_protection_temperature = GLOVES_MIN_COLD_PROT flags_heat_protection = BODY_FLAG_HANDS diff --git a/code/datums/diseases/mob_procs.dm b/code/datums/diseases/mob_procs.dm index c27efecdff84..83f8c65c5b3f 100644 --- a/code/datums/diseases/mob_procs.dm +++ b/code/datums/diseases/mob_procs.dm @@ -49,36 +49,10 @@ if(prob(15/virus.permeability_mod)) return //the power of immunity compels this disease! but then you forgot resistances var/passed = 1 - //chances to target this zone - var/head_ch - var/body_ch - var/hands_ch - var/feet_ch - if(spread_type == -5) spread_type = virus.spread_type - switch(spread_type) - if(CONTACT_HANDS) - head_ch = 0 - body_ch = 0 - hands_ch = 100 - feet_ch = 0 - if(CONTACT_FEET) - head_ch = 0 - body_ch = 0 - hands_ch = 0 - feet_ch = 100 - else - head_ch = 100 - body_ch = 100 - hands_ch = 25 - feet_ch = 25 - - - var/target_zone = pick(head_ch;1,body_ch;2,hands_ch;3,feet_ch;4)//1 - head, 2 - body, 3 - hands, 4- feet - - passed = check_disease_pass_clothes(target_zone) + passed = can_pass_disease() if(passed) AddDisease(virus) @@ -102,45 +76,3 @@ . = ..() med_hud_set_status() -//returns whether the mob's clothes stopped the disease from passing through -/mob/proc/check_disease_pass_clothes(target_zone) - return 1 - -/mob/living/carbon/human/check_disease_pass_clothes(target_zone) - var/obj/item/clothing/Cl - var/protection = 0 - switch(target_zone) - if(1) - if(isobj(head) && !istype(head, /obj/item/paper)) - Cl = head - protection += (Cl.permeability_coefficient*100)-100 - if(isobj(wear_mask)) - Cl = wear_mask - protection += (Cl.permeability_coefficient*100)-100 - if(2)//arms and legs included - if(isobj(wear_suit)) - Cl = wear_suit - protection += (Cl.permeability_coefficient*100)-100 - if(isobj(WEAR_BODY)) - Cl = WEAR_BODY - protection += (Cl.permeability_coefficient*100)-100 - if(3) - if(isobj(wear_suit) && wear_suit.flags_armor_protection & BODY_FLAG_HANDS) - Cl = wear_suit - protection += (Cl.permeability_coefficient*100)-100 - - if(isobj(gloves)) - Cl = gloves - protection += (Cl.permeability_coefficient*100)-100 - if(4) - if(isobj(wear_suit) && wear_suit.flags_armor_protection & BODY_FLAG_FEET) - Cl = wear_suit - protection += (Cl.permeability_coefficient*100)-100 - - if(isobj(shoes)) - Cl = shoes - protection += (Cl.permeability_coefficient*100)-100 - else - to_chat(src, "Something bad happened with disease target zone code, tell a dev or admin ") - return prob(clamp(protection, 5, 90)) - diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index 7fd82aeb9c10..0733c46a872a 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -90,13 +90,8 @@ var/list/actions /// list of paths of action datums to give to the item on New(). var/list/actions_types - - //var/heat_transfer_coefficient = 1 //0 prevents all transfers, 1 is invisible - /// for leaking gas from turf to mask and vice-versa (for masks right now, but at some point, i'd like to include space helmets) var/gas_transfer_coefficient = 1 - /// for chemicals/diseases - var/permeability_coefficient = 1 /// for electrical admittance/conductance (electrocution checks and shit) var/siemens_coefficient = 1 /// How much clothing is slowing you down. Negative values speeds you up diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 323b5ead1df2..8144f58bb8fe 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -333,7 +333,7 @@ siemens_coefficient = 0.9 flags_armor_protection = BODY_FLAG_FEET flags_equip_slot = SLOT_FEET - permeability_coefficient = 0.50 + slowdown = SHOES_SLOWDOWN blood_overlay_type = "feet" /// The currently inserted item. diff --git a/code/modules/clothing/gloves/color.dm b/code/modules/clothing/gloves/color.dm index 3f8e2080f35e..ce28669a9710 100644 --- a/code/modules/clothing/gloves/color.dm +++ b/code/modules/clothing/gloves/color.dm @@ -4,7 +4,7 @@ icon_state = "insulated" item_state = "insulated" siemens_coefficient = 0 - permeability_coefficient = 0.05 + flags_cold_protection = BODY_FLAG_HANDS min_cold_protection_temperature = GLOVES_MIN_COLD_PROT flags_heat_protection = BODY_FLAG_HANDS @@ -16,7 +16,6 @@ icon_state = "insulated" item_state = "insulated" siemens_coefficient = 1 //Set to a default of 1, gets overridden in New() - permeability_coefficient = 0.05 /obj/item/clothing/gloves/fyellow/New() siemens_coefficient = pick(0,0.5,0.5,0.5,0.5,0.75,1.5) diff --git a/code/modules/clothing/gloves/marine_gloves.dm b/code/modules/clothing/gloves/marine_gloves.dm index d36073bb48a0..e178f4dcc3cb 100644 --- a/code/modules/clothing/gloves/marine_gloves.dm +++ b/code/modules/clothing/gloves/marine_gloves.dm @@ -7,7 +7,7 @@ icon_state = "black" item_state = "black" siemens_coefficient = 0.6 - permeability_coefficient = 0.05 + flags_cold_protection = BODY_FLAG_HANDS flags_heat_protection = BODY_FLAG_HANDS min_cold_protection_temperature = GLOVES_MIN_COLD_PROT @@ -84,7 +84,7 @@ icon_state = "yellow" item_state = "ygloves" siemens_coefficient = 0 - permeability_coefficient = 0.01 + adopts_squad_color = FALSE /obj/item/clothing/gloves/marine/techofficer/commander diff --git a/code/modules/clothing/gloves/miscellaneous.dm b/code/modules/clothing/gloves/miscellaneous.dm index 15a4cf742464..20e4f2d4424c 100644 --- a/code/modules/clothing/gloves/miscellaneous.dm +++ b/code/modules/clothing/gloves/miscellaneous.dm @@ -21,7 +21,7 @@ icon_state = "black" item_state = "swat_gl" siemens_coefficient = 0.6 - permeability_coefficient = 0.05 + flags_cold_protection = BODY_FLAG_HANDS min_cold_protection_temperature = GLOVES_MIN_COLD_PROT @@ -34,7 +34,7 @@ icon_state = "black" item_state = "swat_gl" siemens_coefficient = 0 - permeability_coefficient = 0.05 + flags_cold_protection = BODY_FLAG_HANDS min_cold_protection_temperature = GLOVES_MIN_COLD_PROT flags_heat_protection = BODY_FLAG_HANDS @@ -46,14 +46,13 @@ icon_state = "latex" item_state = "lgloves" siemens_coefficient = 0.30 - permeability_coefficient = 0.35 + armor_bio = CLOTHING_ARMOR_LOW /obj/item/clothing/gloves/botanic_leather desc = "These leather gloves protect against thorns, barbs, prickles, spikes and other harmful objects of floral origin." name = "botanist's leather gloves" icon_state = "leather" item_state = "ggloves" - permeability_coefficient = 0.9 siemens_coefficient = 0.9 diff --git a/code/modules/clothing/head/hardhat.dm b/code/modules/clothing/head/hardhat.dm index 3d0471a48253..e0ea973094b5 100644 --- a/code/modules/clothing/head/hardhat.dm +++ b/code/modules/clothing/head/hardhat.dm @@ -87,7 +87,7 @@ hardhat_color = "red" name = "firefighter helmet" gas_transfer_coefficient = 0.01 - permeability_coefficient = 0.01 + flags_inventory = NOPRESSUREDMAGE|BLOCKSHARPOBJ|COVERMOUTH|ALLOWINTERNALS|COVEREYES|BLOCKGASEFFECT|ALLOWREBREATH|ALLOWCPR flags_heat_protection = BODY_FLAG_HEAD|BODY_FLAG_FACE|BODY_FLAG_EYES flags_cold_protection = BODY_FLAG_HEAD|BODY_FLAG_FACE|BODY_FLAG_EYES diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm index d5b2f98b6d09..1bb853beaa9a 100644 --- a/code/modules/clothing/head/misc.dm +++ b/code/modules/clothing/head/misc.dm @@ -45,7 +45,6 @@ name = "plague doctor's hat" desc = "These were once used by Plague doctors. They're pretty much useless." icon_state = "plaguedoctor" - permeability_coefficient = 0.01 siemens_coefficient = 0.9 flags_armor_protection = 0 diff --git a/code/modules/clothing/masks/breath.dm b/code/modules/clothing/masks/breath.dm index ffdda93f8a73..bbfb67042cf8 100644 --- a/code/modules/clothing/masks/breath.dm +++ b/code/modules/clothing/masks/breath.dm @@ -7,7 +7,6 @@ flags_armor_protection = 0 w_class = SIZE_SMALL gas_transfer_coefficient = 0.10 - permeability_coefficient = 0.50 var/hanging = 0 @@ -37,7 +36,7 @@ name = "medical mask" icon_state = "medical" item_state = "medical" - permeability_coefficient = 0.01 + @@ -235,4 +234,4 @@ flags_armor_protection = 0 w_class = SIZE_SMALL gas_transfer_coefficient = 0.10 - permeability_coefficient = 0.50 + diff --git a/code/modules/clothing/masks/gasmask.dm b/code/modules/clothing/masks/gasmask.dm index b13fab0ae5a4..ff4d520bb952 100644 --- a/code/modules/clothing/masks/gasmask.dm +++ b/code/modules/clothing/masks/gasmask.dm @@ -11,7 +11,6 @@ w_class = SIZE_SMALL item_state = "gas_alt" gas_transfer_coefficient = 0.01 - permeability_coefficient = 0.9 armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE armor_laser = CLOTHING_ARMOR_NONE diff --git a/code/modules/clothing/masks/miscellaneous.dm b/code/modules/clothing/masks/miscellaneous.dm index 4f928f62399f..7edf77525e23 100644 --- a/code/modules/clothing/masks/miscellaneous.dm +++ b/code/modules/clothing/masks/miscellaneous.dm @@ -17,13 +17,12 @@ flags_inventory = COVERMOUTH flags_armor_protection = 0 gas_transfer_coefficient = 0.90 - permeability_coefficient = 0.3 armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE armor_laser = CLOTHING_ARMOR_NONE armor_energy = CLOTHING_ARMOR_NONE armor_bomb = CLOTHING_ARMOR_NONE - armor_bio = CLOTHING_ARMOR_NONE + armor_bio = CLOTHING_ARMOR_LOW armor_rad = CLOTHING_ARMOR_NONE armor_internaldamage = CLOTHING_ARMOR_NONE diff --git a/code/modules/clothing/shoes/colour.dm b/code/modules/clothing/shoes/colour.dm index f3de770790a8..2de4df03fc71 100644 --- a/code/modules/clothing/shoes/colour.dm +++ b/code/modules/clothing/shoes/colour.dm @@ -49,7 +49,7 @@ /obj/item/clothing/shoes/white name = "white shoes" icon_state = "white" - permeability_coefficient = 0.01 + /obj/item/clothing/shoes/leather name = "leather shoes" diff --git a/code/modules/clothing/shoes/marine_shoes.dm b/code/modules/clothing/shoes/marine_shoes.dm index b71c69643ff4..e80983172a19 100644 --- a/code/modules/clothing/shoes/marine_shoes.dm +++ b/code/modules/clothing/shoes/marine_shoes.dm @@ -144,7 +144,7 @@ /obj/item/clothing/shoes/veteran/pmc/commando name = "\improper PMC commando boots" desc = "A pair of heavily armored, acid-resistant boots." - permeability_coefficient = 0.01 + armor_bio = CLOTHING_ARMOR_HIGH siemens_coefficient = 0.2 unacidable = TRUE diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index 91ae13958e46..c5fc3d27cced 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -3,7 +3,7 @@ name = "brown shoes" icon_state = "brown" item_state = "brown" - permeability_coefficient = 0.05 + flags_inventory = NOSLIPPING var/list/clothing_choices = list() @@ -52,7 +52,7 @@ name = "ninja shoes" desc = "A pair of running shoes. Excellent for running and even better for smashing skulls." icon_state = "s-ninja" - permeability_coefficient = 0.01 + flags_inventory = NOSLIPPING armor_melee = CLOTHING_ARMOR_MEDIUMHIGH armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH @@ -85,7 +85,7 @@ desc = "Rubber boots" name = "galoshes" icon_state = "galoshes" - permeability_coefficient = 0.05 + flags_inventory = NOSLIPPING /obj/item/clothing/shoes/clown_shoes diff --git a/code/modules/clothing/spacesuits/captain.dm b/code/modules/clothing/spacesuits/captain.dm index 2643e43b2b6a..2222648f6250 100644 --- a/code/modules/clothing/spacesuits/captain.dm +++ b/code/modules/clothing/spacesuits/captain.dm @@ -4,7 +4,7 @@ icon_state = "capspace" item_state = "capspacehelmet" desc = "A special helmet designed for work in a hazardous, low-pressure environment. Only for the most fashionable of military figureheads." - permeability_coefficient = 0.01 + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH armor_laser = CLOTHING_ARMOR_MEDIUMHIGH @@ -22,7 +22,6 @@ item_state = "capspacesuit" w_class = SIZE_LARGE gas_transfer_coefficient = 0.01 - permeability_coefficient = 0.02 flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_FEET|BODY_FLAG_ARMS allowed = list(/obj/item/tank/emergency_oxygen, /obj/item/device/flashlight,/obj/item/weapon/gun, /obj/item/ammo_magazine, /obj/item/weapon/baton,/obj/item/restraint/handcuffs) slowdown = 1.5 diff --git a/code/modules/clothing/spacesuits/spacesuits.dm b/code/modules/clothing/spacesuits/spacesuits.dm index a8b056d0bb9d..13996e9688a7 100644 --- a/code/modules/clothing/spacesuits/spacesuits.dm +++ b/code/modules/clothing/spacesuits/spacesuits.dm @@ -6,7 +6,7 @@ icon_state = "space" desc = "A special helmet designed for work in a hazardous, low-pressure environment." item_state = "space" - permeability_coefficient = 0.01 + armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE armor_laser = CLOTHING_ARMOR_NONE @@ -30,7 +30,6 @@ item_state = "s_suit" w_class = SIZE_LARGE//bulky item gas_transfer_coefficient = 0.01 - permeability_coefficient = 0.02 flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_FEET|BODY_FLAG_ARMS|BODY_FLAG_HANDS allowed = list(/obj/item/device/flashlight,/obj/item/tank/emergency_oxygen) slowdown = 3 diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm index 7e9a41c6becc..519f848abb42 100644 --- a/code/modules/clothing/suits/armor.dm +++ b/code/modules/clothing/suits/armor.dm @@ -248,7 +248,7 @@ icon_state = "deathsquad" item_state = "swat_suit" gas_transfer_coefficient = 0.01 - permeability_coefficient = 0.01 + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_FEET|BODY_FLAG_ARMS allowed = list(/obj/item/weapon/gun,/obj/item/ammo_magazine,/obj/item/ammo_casing,/obj/item/weapon/baton,/obj/item/restraint/handcuffs,/obj/item/tank/emergency_oxygen) slowdown = 1 diff --git a/code/modules/clothing/suits/bio.dm b/code/modules/clothing/suits/bio.dm index 64174a301099..a53ff33a1969 100644 --- a/code/modules/clothing/suits/bio.dm +++ b/code/modules/clothing/suits/bio.dm @@ -5,7 +5,6 @@ name = "bio hood" icon_state = "bio_general" desc = "A hood that protects the head and face from biological contaminants." - permeability_coefficient = 0.2 armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE armor_laser = CLOTHING_ARMOR_NONE @@ -32,7 +31,6 @@ item_state = "bio_suit" w_class = SIZE_LARGE//bulky item gas_transfer_coefficient = 0.01 - permeability_coefficient = 0.2 flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_FEET|BODY_FLAG_ARMS|BODY_FLAG_HANDS slowdown = 1 armor_melee = CLOTHING_ARMOR_NONE diff --git a/code/modules/clothing/suits/jobs.dm b/code/modules/clothing/suits/jobs.dm index 589fb3b97221..4ff7c16e4595 100644 --- a/code/modules/clothing/suits/jobs.dm +++ b/code/modules/clothing/suits/jobs.dm @@ -100,7 +100,7 @@ icon_state = "chef" item_state = "chef" gas_transfer_coefficient = 0.90 - permeability_coefficient = 0.50 + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS allowed = list ( /obj/item/tool/kitchen/knife, diff --git a/code/modules/clothing/suits/utility.dm b/code/modules/clothing/suits/utility.dm index 3b415cf0f9e8..3776958eb6e7 100644 --- a/code/modules/clothing/suits/utility.dm +++ b/code/modules/clothing/suits/utility.dm @@ -16,7 +16,7 @@ item_state = "fire_suit" w_class = SIZE_LARGE//bulky item gas_transfer_coefficient = 0.90 - permeability_coefficient = 0.50 + fire_intensity_resistance = BURN_LEVEL_TIER_1 flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_FEET|BODY_FLAG_ARMS|BODY_FLAG_HANDS allowed = list( @@ -85,7 +85,7 @@ item_state = "bombsuit" w_class = SIZE_LARGE//bulky item gas_transfer_coefficient = 0.01 - permeability_coefficient = 0.01 + slowdown = 2 armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE @@ -150,7 +150,7 @@ item_state = "rad_suit" w_class = SIZE_LARGE//bulky item gas_transfer_coefficient = 0.90 - permeability_coefficient = 0.50 + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS|BODY_FLAG_HANDS|BODY_FLAG_FEET allowed = list( /obj/item/clothing/head/radiation, diff --git a/code/modules/clothing/under/jobs/civilian.dm b/code/modules/clothing/under/jobs/civilian.dm index 4b1fd077415c..54839e562636 100644 --- a/code/modules/clothing/under/jobs/civilian.dm +++ b/code/modules/clothing/under/jobs/civilian.dm @@ -63,7 +63,7 @@ name = "botanist's jumpsuit" icon_state = "hydroponics" item_state = "g_suit" - permeability_coefficient = 0.50 + /obj/item/clothing/under/rank/internalaffairs desc = "The plain, professional attire of an Internal Affairs Agent. The collar is immaculately starched." diff --git a/code/modules/clothing/under/jobs/medsci.dm b/code/modules/clothing/under/jobs/medsci.dm index 74507c2e5593..5d2be0cb82af 100644 --- a/code/modules/clothing/under/jobs/medsci.dm +++ b/code/modules/clothing/under/jobs/medsci.dm @@ -7,7 +7,7 @@ name = "research director's uniform" icon_state = "rdalt_s" worn_state = "rdalt_s" - permeability_coefficient = 0.50 + armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE armor_laser = CLOTHING_ARMOR_NONE @@ -22,7 +22,7 @@ desc = "It's made of a special fiber that provides minor protection against biohazards. It has markings that denote the wearer is a Research Director." name = "research director's jumpsuit" icon_state = "rdalt" - permeability_coefficient = 0.50 + armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE armor_laser = CLOTHING_ARMOR_NONE @@ -38,7 +38,7 @@ name = "scientist's jumpsuit" icon_state = "science" item_state = "w_suit" - permeability_coefficient = 0.50 + armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE armor_laser = CLOTHING_ARMOR_NONE @@ -53,7 +53,7 @@ name = "chemist's jumpsuit" icon_state = "chemistry" item_state = "w_suit" - permeability_coefficient = 0.50 + armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE armor_laser = CLOTHING_ARMOR_NONE @@ -71,7 +71,7 @@ name = "chief medical officer's jumpsuit" icon_state = "cmo" item_state = "w_suit" - permeability_coefficient = 0.50 + armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE armor_laser = CLOTHING_ARMOR_NONE @@ -86,7 +86,7 @@ name = "geneticist's jumpsuit" icon_state = "genetics" item_state = "w_suit" - permeability_coefficient = 0.50 + armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE armor_laser = CLOTHING_ARMOR_NONE @@ -101,7 +101,7 @@ name = "virologist's jumpsuit" icon_state = "virology" item_state = "w_suit" - permeability_coefficient = 0.50 + armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE armor_laser = CLOTHING_ARMOR_NONE @@ -116,7 +116,7 @@ desc = "It's a jumpsuit commonly worn by nursing staff in the medical department." name = "nurse's suit" icon_state = "nursesuit" - permeability_coefficient = 0.50 + armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE armor_laser = CLOTHING_ARMOR_NONE @@ -132,7 +132,7 @@ desc = "A dress commonly worn by the nursing staff in the medical department." name = "nurse's dress" icon_state = "nurse" - permeability_coefficient = 0.50 + armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE armor_laser = CLOTHING_ARMOR_NONE @@ -148,7 +148,7 @@ desc = "A white suit to be worn by orderly people who love orderly things." name = "orderly's uniform" icon_state = "orderly" - permeability_coefficient = 0.50 + armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE armor_laser = CLOTHING_ARMOR_NONE @@ -165,7 +165,7 @@ name = "medical doctor's uniform" icon_state = "medical" item_state = "w_suit" - permeability_coefficient = 0.50 + armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE armor_laser = CLOTHING_ARMOR_NONE diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index 42c61404a31a..d5ab3e6abc79 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -53,7 +53,6 @@ item_state = "bl_suit" w_class = SIZE_LARGE//bulky item gas_transfer_coefficient = 0.01 - permeability_coefficient = 0.02 flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_FEET|BODY_FLAG_ARMS|BODY_FLAG_HANDS flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS //Needs gloves and shoes with cold protection to be fully protected. min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROT diff --git a/code/modules/clothing/under/under.dm b/code/modules/clothing/under/under.dm index a48967d88538..0049ccd26dec 100644 --- a/code/modules/clothing/under/under.dm +++ b/code/modules/clothing/under/under.dm @@ -4,7 +4,6 @@ flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS - permeability_coefficient = 0.90 flags_equip_slot = SLOT_ICLOTHING armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE diff --git a/code/modules/cm_preds/yaut_bracers.dm b/code/modules/cm_preds/yaut_bracers.dm index 77efbb7ad4ef..2effb251eae5 100644 --- a/code/modules/cm_preds/yaut_bracers.dm +++ b/code/modules/cm_preds/yaut_bracers.dm @@ -9,7 +9,7 @@ ) siemens_coefficient = 0 - permeability_coefficient = 0.05 + flags_item = ITEM_PREDATOR flags_inventory = CANTSTRIP flags_cold_protection = BODY_FLAG_HANDS diff --git a/code/modules/cm_preds/yaut_items.dm b/code/modules/cm_preds/yaut_items.dm index 97b0f14f5b9b..2e36acc2257b 100644 --- a/code/modules/cm_preds/yaut_items.dm +++ b/code/modules/cm_preds/yaut_items.dm @@ -209,7 +209,7 @@ icon_state = "y-boots1_ebony" unacidable = TRUE - permeability_coefficient = 0.01 + flags_inventory = NOSLIPPING flags_armor_protection = BODY_FLAG_FEET|BODY_FLAG_LEGS flags_item = ITEM_PREDATOR diff --git a/code/modules/reagents/Chemistry-Reagents.dm b/code/modules/reagents/Chemistry-Reagents.dm index 7faf2f85a7f7..6b3cc9cba578 100644 --- a/code/modules/reagents/Chemistry-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents.dm @@ -93,24 +93,14 @@ GLOBAL_LIST_INIT(name2reagent, build_name2reagent()) if(method == TOUCH && permeable && !istype(self.holder.my_atom, /obj/effect/particle_effect/smoke/chem)) // If the chemicals are in a smoke cloud, do not try to let the chemicals "penetrate" into the mob's system (balance station 13) -- Doohl var/chance = 1 - var/block = FALSE for(var/obj/item/clothing/clothing in M.get_equipped_items()) - if(clothing.permeability_coefficient < chance) - chance = clothing.permeability_coefficient - if(istype(clothing, /obj/item/clothing/suit/bio_suit)) - // bio suits are just about completely fool-proof - Doohl - // kind of a hacky way of making bio suits more resistant to chemicals but w/e - if(prob(75)) - block = TRUE + if(clothing.armor_bio > chance) + chance = clothing.armor_bio - if(istype(clothing, /obj/item/clothing/head/bio_hood)) - if(prob(75)) - block = TRUE + chance = (100 - chance) - chance *= 100 - - if(prob(chance) && !block) + if(prob(chance))//This will need testing, I'm not confident I did it correctly. if(M.reagents) M.reagents.add_reagent(self.id, self.volume * 0.5) From 6b375ad97d94b3c816306761c97a7876b25908f3 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Sat, 7 Sep 2024 22:02:56 +0100 Subject: [PATCH 11/17] map reset --- maps/map_files/BigRed/BigRed.dmm | 6 +++++- maps/map_files/CORSAT/Corsat.dmm | 8 ++++---- maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm | 11 ++++++++--- maps/map_files/USS_Almayer/USS_Almayer.dmm | 8 ++++---- 4 files changed, 21 insertions(+), 12 deletions(-) diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm index eb38fe5f0d97..cdaf1df78295 100644 --- a/maps/map_files/BigRed/BigRed.dmm +++ b/maps/map_files/BigRed/BigRed.dmm @@ -29621,6 +29621,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/bigredv2/outside/nw) +"sab" = ( +/obj/structure/closet/l3closet/general, +/turf/open/floor/white, +/area/bigredv2/outside/virology) "sao" = ( /obj/structure/machinery/light{ dir = 4 @@ -43539,7 +43543,7 @@ nIY nof mnV aoD -nGL +sab bPC aoD aQz diff --git a/maps/map_files/CORSAT/Corsat.dmm b/maps/map_files/CORSAT/Corsat.dmm index 673e042c2139..5ddf50c1aed4 100644 --- a/maps/map_files/CORSAT/Corsat.dmm +++ b/maps/map_files/CORSAT/Corsat.dmm @@ -12958,7 +12958,7 @@ /turf/open/floor/corsat/bluecorner/east, /area/corsat/sigma/airlock/control) "gbg" = ( -/obj/structure/closet/l3closet, +/obj/structure/closet/l3closet/general, /obj/structure/machinery/light, /turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/virology) @@ -27468,7 +27468,7 @@ /turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "nIj" = ( -/obj/structure/closet/l3closet, +/obj/structure/closet/l3closet/janitor, /turf/open/floor/corsat/yellow/northeast, /area/corsat/omega/maint) "nIu" = ( @@ -27832,7 +27832,7 @@ /turf/open/floor/corsat/redcorner, /area/corsat/sigma/south/security) "nUw" = ( -/obj/structure/closet/l3closet, +/obj/structure/closet/l3closet/general, /turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/virology) "nUS" = ( @@ -41549,7 +41549,7 @@ /turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/hydroeast) "vpD" = ( -/obj/structure/closet/l3closet, +/obj/structure/closet/l3closet/general, /turf/open/floor/corsat/yellow, /area/corsat/omega/control) "vpG" = ( diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm index 8f0576a8cbe8..d1ba560171cf 100644 --- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm +++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm @@ -6907,7 +6907,7 @@ /turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "fkl" = ( -/obj/structure/closet/l3closet, +/obj/structure/closet/l3closet/general, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) "fkL" = ( @@ -11428,6 +11428,10 @@ /area/fiorina/lz/near_lzI) "iFn" = ( /obj/structure/janitorialcart, +/obj/item/clothing/head/bio_hood/janitor{ + pixel_x = -4; + pixel_y = 5 + }, /turf/open/floor/prison, /area/fiorina/station/disco) "iFO" = ( @@ -30036,8 +30040,9 @@ /area/fiorina/station/medbay) "wXf" = ( /obj/structure/closet/cabinet, -/obj/item/clothing/suit/bio_suit, -/obj/item/clothing/head/bio_hood, +/obj/item/clothing/under/rank/janitor, +/obj/item/clothing/suit/bio_suit/janitor, +/obj/item/clothing/head/bio_hood/janitor, /turf/open/floor/wood, /area/fiorina/station/civres_blue) "wXy" = ( diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index 688ab7d779ea..ce2e3d97ac5d 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -17932,7 +17932,7 @@ /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) "gid" = ( -/obj/structure/closet/l3closet/scientist, +/obj/structure/closet/l3closet/general, /obj/structure/window/reinforced{ dir = 8; health = 80 @@ -22593,7 +22593,7 @@ /turf/closed/wall/almayer, /area/almayer/maint/hull/upper/u_m_p) "hRs" = ( -/obj/structure/closet/l3closet/medical, +/obj/structure/closet/l3closet/virology, /turf/open/floor/almayer/redfull, /area/almayer/medical/upper_medical) "hRu" = ( @@ -28361,7 +28361,7 @@ /turf/open/floor/almayer/plate, /area/almayer/living/briefing) "jOh" = ( -/obj/structure/closet/l3closet/scientist, +/obj/structure/closet/l3closet/general, /obj/structure/window/reinforced{ dir = 8; health = 80 @@ -35531,7 +35531,7 @@ /turf/open/floor/almayer/blue/east, /area/almayer/living/basketball) "mrS" = ( -/obj/structure/closet/l3closet/scientist, +/obj/structure/closet/l3closet/general, /obj/structure/machinery/light{ dir = 8 }, From 4ecf67f89249e23e153039b0e12fb6dee844aec0 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Sat, 7 Sep 2024 22:11:00 +0100 Subject: [PATCH 12/17] I hate mapping conflicts From a0b05e4b444c3cdd7ed6bead4df58d523d570a40 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Sat, 7 Sep 2024 22:14:11 +0100 Subject: [PATCH 13/17] WHY WON'T YOU WORK From 300daff51777d509203cd0f4a460c05eec324c7e Mon Sep 17 00:00:00 2001 From: forest2001 Date: Sat, 7 Sep 2024 22:19:55 +0100 Subject: [PATCH 14/17] GOOD BYE MAPS --- maps/map_files/BigRed/BigRed.dmm | 88166 ---------- .../BigRed/sprinkles/10.prison_breakout.dmm | 1899 - .../BigRed/sprinkles/10.tcomms_open.dmm | 249 - .../BigRed/sprinkles/15.reactor_meltdown.dmm | 2042 - .../BigRed/sprinkles/20.etatunnel_open.dmm | 1342 - .../BigRed/sprinkles/20.lz1entrance_v2.dmm | 994 - .../BigRed/sprinkles/20.lz1north_mining.dmm | 244 - .../BigRed/sprinkles/25.chapel_cult.dmm | 512 - .../sprinkles/25.containerroom_xenos.dmm | 357 - .../BigRed/sprinkles/25.lz1cave_flank.dmm | 288 - .../sprinkles/25.lz1containers_scramble.dmm | 732 - .../BigRed/sprinkles/25.vault_v2.dmm | 546 - .../BigRed/sprinkles/30.cargo_containers.dmm | 1051 - .../BigRed/sprinkles/30.viro-rock_open.dmm | 150 - .../sprinkles/35.filtration_restored.dmm | 1392 - .../BigRed/sprinkles/40.admin_pmc.dmm | 668 - .../BigRed/sprinkles/40.dorms_party.dmm | 578 - .../BigRed/sprinkles/40.viro_open.dmm | 650 - .../map_files/BigRed/sprinkles/5.eta_carp.dmm | 388 - .../BigRed/sprinkles/70.se-checkpoint.dmm | 530 - .../BigRed/standalone/crashlanding-eva.dmm | 1843 - .../standalone/crashlanding-offices.dmm | 1917 - .../standalone/lambda-cave_extratunnel.dmm | 297 - .../standalone/lambda-cave_mushroom.dmm | 271 - .../BigRed/standalone/lambda-graveyard.dmm | 292 - .../BigRed/standalone/medbay-passage.dmm | 130 - .../map_files/BigRed/standalone/medbay-v3.dmm | 2231 - maps/map_files/CORSAT/Corsat.dmm | 108968 ------------ maps/map_files/CORSAT/sprinkles/.gitkeep | 1 - .../standalone/lockdown_gammacontrol.dmm | 90 - .../CORSAT/standalone/lockdown_gammanorth.dmm | 96 - .../CORSAT/standalone/lockdown_highsec.dmm | 538 - .../standalone/lockdown_thetacontrol.dmm | 90 - .../CORSAT/standalone/lockdown_thetaeast.dmm | 93 - .../map_files/CORSAT/standalone/sigma_ice.dmm | 8669 - .../FOP_v3_Sciannex/Fiorina_SciAnnex.dmm | 85552 ---------- .../FOP_v3_Sciannex/sprinkles/.gitkeep | 1 - .../sprinkles/10.podholder.dmm | 175 - .../sprinkles/10.scavshipholder.dmm | 977 - .../sprinkles/15.birthdayparty.dmm | 211 - .../FOP_v3_Sciannex/sprinkles/15.nogear.dmm | 287 - .../sprinkles/15.wardenofficedecorated.dmm | 210 - .../sprinkles/20.gamertime.dmm | 584 - .../sprinkles/20.poolparty.dmm | 1791 - .../sprinkles/20.yardbasketball.dmm | 337 - .../sprinkles/25.researchprestine.dmm | 1100 - .../sprinkles/30.engineeroffice.dmm | 247 - .../sprinkles/30.pizzatime.dmm | 430 - .../sprinkles/30.repairpanelslz.dmm | 402 - .../sprinkles/unused/20.medicalhold.dmm | 934 - .../standalone/riot_in_progress.dmm | 1966 - maps/map_files/USS_Almayer/USS_Almayer.dmm | 129482 --------------- maps/map_files/USS_Almayer/sprinkles/.gitkeep | 1 - 53 files changed, 452991 deletions(-) delete mode 100644 maps/map_files/BigRed/BigRed.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/25.vault_v2.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/40.dorms_party.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/40.viro_open.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/5.eta_carp.dmm delete mode 100644 maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm delete mode 100644 maps/map_files/BigRed/standalone/crashlanding-eva.dmm delete mode 100644 maps/map_files/BigRed/standalone/crashlanding-offices.dmm delete mode 100644 maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm delete mode 100644 maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm delete mode 100644 maps/map_files/BigRed/standalone/lambda-graveyard.dmm delete mode 100644 maps/map_files/BigRed/standalone/medbay-passage.dmm delete mode 100644 maps/map_files/BigRed/standalone/medbay-v3.dmm delete mode 100644 maps/map_files/CORSAT/Corsat.dmm delete mode 100644 maps/map_files/CORSAT/sprinkles/.gitkeep delete mode 100644 maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm delete mode 100644 maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm delete mode 100644 maps/map_files/CORSAT/standalone/lockdown_highsec.dmm delete mode 100644 maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm delete mode 100644 maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm delete mode 100644 maps/map_files/CORSAT/standalone/sigma_ice.dmm delete mode 100644 maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm delete mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/.gitkeep delete mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/10.podholder.dmm delete mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm delete mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm delete mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm delete mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm delete mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm delete mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm delete mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/20.yardbasketball.dmm delete mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm delete mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm delete mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm delete mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm delete mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/unused/20.medicalhold.dmm delete mode 100644 maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm delete mode 100644 maps/map_files/USS_Almayer/USS_Almayer.dmm delete mode 100644 maps/map_files/USS_Almayer/sprinkles/.gitkeep diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm deleted file mode 100644 index cdaf1df78295..000000000000 --- a/maps/map_files/BigRed/BigRed.dmm +++ /dev/null @@ -1,88166 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/open/space, -/area/space) -"aab" = ( -/turf/closed/shuttle{ - dir = 1; - icon_state = "pwall" - }, -/area/space) -"aae" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port) -"aah" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aao" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"aaq" = ( -/obj/structure/sign/safety/hazard, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port) -"aau" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "LZ1: Communications Landing Zone" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aaw" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/space_port) -"aaF" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aaH" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aaI" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aaJ" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aaU" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aaX" = ( -/obj/structure/closet/secure_closet/injection, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"abb" = ( -/obj/item/stack/sheet/wood{ - layer = 2.7; - pixel_y = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"abc" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"abk" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"abl" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"abm" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"abu" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"abv" = ( -/obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"abw" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"abx" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Spaceport"; - name = "\improper Spaceport Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"abz" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"abD" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"abO" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_north) -"abR" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Spaceport"; - name = "\improper Spaceport Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"abS" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"abT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aca" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"acd" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"ack" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_lambda) -"acn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aco" = ( -/obj/item/shard, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"acp" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/marshal_office) -"acq" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Marshal Offices"; - name = "\improper Marshal Offices Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"acr" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/marshal_office) -"acs" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/window_frame/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"acx" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"acA" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/telecomm) -"acE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"acP" = ( -/turf/open/mars, -/area/bigredv2/outside/n) -"acQ" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/telecomm) -"acZ" = ( -/turf/open/floor/greengrid, -/area/bigredv2/outside/telecomm) -"adj" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"adk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"adz" = ( -/obj/structure/window/framed/solaris/reinforced/tinted, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"adA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"adB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"adG" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/structure/window_frame/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"adL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"adQ" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"adR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"adS" = ( -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"adX" = ( -/obj/item/tool/pickaxe{ - pixel_y = 12 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"adZ" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/lambda/xenobiology) -"ael" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aep" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aeq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aer" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"aev" = ( -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"aew" = ( -/obj/structure/closet/crate/internals, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"aex" = ( -/obj/structure/closet/crate/freezer/rations, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"aeF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aeG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aeH" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aeI" = ( -/turf/open/mars, -/area/bigredv2/outside/nw) -"aeN" = ( -/obj/structure/bed/stool, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aeU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"aeV" = ( -/obj/structure/closet/crate/radiation, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"afd" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"afg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"afi" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office Isolation" - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"afr" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/closet/bombclosetsecurity, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"afv" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "tcomms"; - name = "\improper Telecommunications Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/telecomm) -"afz" = ( -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/research) -"afA" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"afB" = ( -/obj/structure/machinery/smartfridge/chemistry, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"afH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"afL" = ( -/obj/structure/showcase{ - icon_state = "broadcaster_send" - }, -/turf/open/floor/greengrid, -/area/bigredv2/outside/telecomm) -"afU" = ( -/obj/structure/closet/bombclosetsecurity, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"agm" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves_north) -"agu" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside/nw) -"agy" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Marshal Offices"; - name = "\improper Marshal Offices Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"ahf" = ( -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"ahi" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/nw) -"ahk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ahl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ahm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ahn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ahs" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aht" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ahu" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ahv" = ( -/obj/structure/surface/table/holotable/wood, -/obj/item/paper_bin, -/obj/item/tool/pen/clicky, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"ahN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/telecomm) -"ahX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/nw) -"aiv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/telecomm) -"aiO" = ( -/obj/structure/bed/chair, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aiP" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajd" = ( -/obj/structure/surface/table/holotable/wood, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Lambda Labs"; - phone_color = "blue"; - phone_id = "Administration" - }, -/obj/item/clothing/mask/cigarette{ - pixel_x = 5; - pixel_y = 6 - }, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"aje" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajm" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"ajL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajM" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajO" = ( -/obj/structure/machinery/prop/almayer/computer/PC, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"ajQ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/recharger, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajU" = ( -/obj/structure/machinery/light/small, -/obj/structure/sign/safety/maint{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"aka" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"akc" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"akj" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Office Complex 2"; - name = "\improper Marshal Office Complex Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"akl" = ( -/obj/structure/sign/safety/hazard, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/telecomm) -"ako" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/general_offices) -"akp" = ( -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"akq" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"akr" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aks" = ( -/obj/effect/landmark/good_item, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"akt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aku" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Dormitories"; - name = "\improper Dormitories Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"akL" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/general_offices) -"akU" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"alr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"alu" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/medical) -"alx" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aly" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"alD" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Medical"; - name = "\improper Medical Storm Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"alK" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"alX" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/medical) -"alZ" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Marshal Offices"; - name = "\improper Marshal Offices Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"amb" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"amh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/closed/wall/solaris, -/area/bigredv2/outside/general_offices) -"amj" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"amk" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/lambda/breakroom) -"aml" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"amm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"amn" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/dorms) -"amp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"amq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/shoes/black, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"amr" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"amu" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"amD" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/n) -"amE" = ( -/turf/open/floor/plating, -/area/bigredv2/caves_north) -"amH" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"amI" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Dormitories"; - name = "\improper Dormitories Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/dorms) -"amV" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Dormitories"; - name = "\improper Dormitories Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/dorms) -"amX" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/breakroom) -"amY" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/almayer{ - id = "sci_br"; - name = "\improper Lambda Observation Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/breakroom) -"amZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/closed/wall/solaris, -/area/bigredv2/outside/general_offices) -"anf" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"anj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave, -/area/bigredv2/caves_lambda) -"ank" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"anl" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"anm" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/powercell, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"anp" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/nw/ceiling) -"ant" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Dormitories"; - name = "\improper Dormitories Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"anw" = ( -/obj/structure/sign/safety/bulkhead_door, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/lambda/breakroom) -"anB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"anD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"anI" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/lambda/research) -"anJ" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/bar) -"anK" = ( -/obj/structure/window_frame/solaris, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/dorms) -"anL" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/research) -"anM" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"anN" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"anT" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/hydroponics) -"anU" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Greenhouse"; - name = "\improper Greenhouse Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/hydroponics) -"anW" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/library) -"anX" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Greenhouse"; - name = "\improper Greenhouse Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/hydroponics) -"anY" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/hydroponics) -"anZ" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Medical"; - name = "\improper Medical Storm Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"aob" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/lambda/virology) -"aoc" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Library"; - name = "\improper Library Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/library) -"aof" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/admin_building) -"aoj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aoo" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"aop" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"aoq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"aou" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"aoz" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Bar Complex"; - name = "\improper Bar Complex Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"aoD" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/virology) -"aoE" = ( -/obj/item/stool, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"aoH" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/general_store) -"apc" = ( -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"apd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"aph" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"app" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"apq" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"apr" = ( -/obj/structure/surface/table, -/obj/item/tool/screwdriver, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"aps" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/machine/batteryrack, -/obj/item/stack/cable_coil/orange, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"apt" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "General Store"; - name = "\improper General Store Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_store) -"apu" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/general_store) -"apC" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/admin_building) -"apD" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Operations"; - name = "\improper Operations Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"apG" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/virology) -"apJ" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Operations"; - name = "\improper Operations Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"apK" = ( -/obj/structure/bed/chair, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"apQ" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/general_store) -"apR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"apS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"aqb" = ( -/obj/structure/surface/table, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"aqc" = ( -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"aqx" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Library"; - name = "\improper Library Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/library) -"aqz" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Bar Complex"; - name = "\improper Bar Complex Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"aqB" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aqE" = ( -/obj/structure/surface/table/reinforced, -/obj/item/book/manual/research_and_development, -/turf/open/floor/whitepurple/east, -/area/bigredv2/caves/lambda/xenobiology) -"aqO" = ( -/obj/structure/barricade/wooden, -/turf/open/mars, -/area/bigredv2/outside/n) -"aqQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"aqU" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Kitchen"; - name = "\improper Kitchen Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/hydroponics) -"ars" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"arD" = ( -/turf/open/mars, -/area/bigredv2/outside/ne) -"arI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"arK" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves_lambda) -"arT" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"asj" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "General Store"; - name = "\improper General Store Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_store) -"asl" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"asp" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"asr" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"ass" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"asv" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/office_complex) -"asx" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave, -/area/bigredv2/caves_lambda) -"asH" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Office Complex 1"; - name = "\improper Office Complex Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/office_complex) -"asI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories" - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"asJ" = ( -/turf/open/floor, -/area/bigredv2/outside/dorms) -"asK" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/cargo) -"asN" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"asO" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"asP" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"asS" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"asT" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"atb" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/chapel) -"atd" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Chapel"; - name = "\improper Chapel Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/chapel) -"atn" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"atw" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Cargonia"; - name = "\improper Cargo Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"atA" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"atD" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"atE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"atF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"atG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"atH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"atJ" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Office Complex 1"; - name = "\improper Office Complex Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/office_complex) -"atP" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Chapel"; - name = "\improper Chapel Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/chapel) -"atQ" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars, -/area/bigredv2/outside/nw) -"atU" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aua" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aub" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"auc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"aud" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"auj" = ( -/obj/item/device/radio/intercom{ - frequency = 150; - name = "Safe-Room intercom"; - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"auk" = ( -/obj/structure/window/framed/solaris, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aul" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"auW" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/outside/c) -"auY" = ( -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"avq" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/chips, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"avr" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/office_complex) -"avC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/plate, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"avD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"avG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"avI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"avJ" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"avK" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"avM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"avN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"avS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris, -/area/bigredv2/outside/office_complex) -"avT" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"avU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"avV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"awd" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/se) -"awj" = ( -/obj/structure/surface/table, -/obj/item/toy/prize/mauler, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"awn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"awo" = ( -/obj/structure/bed/chair, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"awp" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/filtration_plant) -"aws" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"awu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"aww" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"awz" = ( -/obj/item/ashtray/bronze{ - pixel_x = -7 - }, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 14 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"awB" = ( -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Lambda Labs"; - phone_color = "blue"; - phone_id = "Director" - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"awC" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"awD" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"awM" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/outside/filtration_plant) -"awY" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"awZ" = ( -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axa" = ( -/obj/structure/surface/table, -/obj/item/ashtray/bronze, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axd" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axi" = ( -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"axo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"axp" = ( -/obj/structure/bed/chair/comfy/lime{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"axr" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Filtration Plant"; - name = "\improper Filtration Plant Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"axG" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axK" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axL" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Cargonia"; - name = "\improper Cargo Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"axT" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"axX" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/engineering) -"axZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"aya" = ( -/obj/effect/landmark/hunter_primary, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"ayb" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"ayc" = ( -/obj/structure/window/framed/solaris/reinforced/hull, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"ayf" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port_lz2) -"ayo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/pistachios, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ayp" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ayq" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ayr" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/engineering) -"ayv" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ayA" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"ayB" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/woodentable, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/tool/lighter/zippo, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"ayF" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"ayV" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"ayX" = ( -/obj/effect/landmark/good_item, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ayY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ayZ" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"azb" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Engineering"; - name = "\improper Engineering Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"azl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave, -/area/bigredv2/caves/lambda/research) -"azm" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves/lambda/breakroom) -"azn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"azo" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"azB" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Engineering"; - name = "\improper Engineering Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"azE" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"azG" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Filtration Plant"; - name = "\improper Filtration Plant Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"azK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/n) -"azO" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/outside/eta) -"azP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azS" = ( -/obj/structure/machinery/vending/snack{ - icon_state = "snack-broken"; - stat = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azT" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azU" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azV" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azW" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aAa" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aAb" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aAc" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/e) -"aAo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/mars_cave, -/area/bigredv2/caves/lambda/research) -"aAp" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/eta/storage) -"aAq" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"aAA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/n) -"aAC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aAI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Bar Maintenance" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"aAM" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/engine, -/area/bigredv2/caves/lambda/research) -"aAN" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/engine, -/area/bigredv2/caves/lambda/research) -"aAO" = ( -/turf/open/floor/engine, -/area/bigredv2/caves/lambda/research) -"aAZ" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"aBa" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"aBi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aBv" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/eta/research) -"aBw" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"aBy" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"aBA" = ( -/turf/closed/wall/solaris, -/area/bigredv2/caves/eta/research) -"aBE" = ( -/turf/closed/wall/solaris, -/area/bigredv2/caves/eta/storage) -"aBQ" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"aBR" = ( -/turf/open/mars, -/area/bigredv2/outside/c) -"aBU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/trash/candy, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aCe" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/eta/xenobiology) -"aCh" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"aCi" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCj" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCl" = ( -/obj/structure/surface/table, -/obj/item/tool/shovel/spade, -/obj/structure/machinery/camera/autoname, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCm" = ( -/obj/structure/surface/table, -/obj/item/paper/hydroponics, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCn" = ( -/obj/structure/machinery/fermenter, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCp" = ( -/obj/structure/machinery/seed_extractor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCq" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/engine, -/area/bigredv2/caves/lambda/research) -"aCH" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/xenobiology) -"aCL" = ( -/turf/closed/wall/solaris, -/area/bigredv2/caves/eta/xenobiology) -"aCM" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars, -/area/bigredv2/outside/c) -"aCY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCZ" = ( -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aDa" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aDb" = ( -/obj/structure/machinery/door_control{ - id = "Greenhouse"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aDi" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/engine, -/area/bigredv2/caves/lambda/research) -"aDj" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/xenobiology) -"aDv" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/living) -"aDQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control{ - id = "Dormitories"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aDX" = ( -/turf/closed/wall/solaris, -/area/bigredv2/caves/eta/living) -"aDY" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/eta/living) -"aEd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aEg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/popcorn, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aEh" = ( -/obj/structure/machinery/botany/editor, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aEj" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/living) -"aEk" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aEs" = ( -/obj/structure/bed/chair/comfy/lime{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"aEu" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside) -"aEF" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves/lambda/research) -"aEK" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aES" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"aET" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/shovel/spade, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aEU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aEW" = ( -/obj/item/tool/hatchet, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aEX" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside/se) -"aEZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/liquidfood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aFa" = ( -/obj/structure/machinery/botany/extractor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aFb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aFc" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside/sw) -"aFd" = ( -/obj/structure/flora/jungle/plantbot1{ - pixel_y = 10 - }, -/turf/open/jungle, -/area/bigredv2/outside/admin_building) -"aFv" = ( -/turf/open/mars, -/area/bigredv2/outside/virology) -"aFL" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/c) -"aFN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aFP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aGb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aGf" = ( -/obj/structure/curtain/medical, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/lambda/virology) -"aGh" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"aGL" = ( -/obj/structure/machinery/biogenerator, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aGS" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/weapon/gun/shotgun/combat, -/obj/structure/machinery/door/window/eastleft, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"aHn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars, -/area/bigredv2/outside/nw) -"aHN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"aHP" = ( -/obj/structure/prop/almayer/computers/mapping_computer{ - desc = "A strange-looking collection of coordinate inputs, relay shunts, and wiring. Designed to operate an experimental teleporter."; - name = "\improper Teleporter Targeting Computer" - }, -/turf/open/floor/greengrid, -/area/bigredv2/caves/lambda/research) -"aId" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"aIF" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aIT" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aIY" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aJu" = ( -/obj/structure/closet/secure_closet, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"aJA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aKk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/c) -"aKr" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars, -/area/bigredv2/outside/c) -"aKA" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aKP" = ( -/turf/open/mars, -/area/bigredv2/outside/e) -"aLc" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/turf/open/mars, -/area/bigredv2/outside/c) -"aLl" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aLo" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aLI" = ( -/turf/open/floor/greengrid, -/area/bigredv2/caves/lambda/research) -"aMl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aMp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cheesie, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aMr" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/greengrid, -/area/bigredv2/caves/lambda/research) -"aMs" = ( -/turf/open/floor/bluegrid, -/area/bigredv2/caves/lambda/research) -"aMt" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/bluegrid, -/area/bigredv2/caves/lambda/research) -"aMu" = ( -/obj/structure/cryofeed/right{ - name = "\improper coolant feed" - }, -/turf/open/floor/greengrid, -/area/bigredv2/caves/lambda/research) -"aMz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aMA" = ( -/obj/structure/surface/table, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_color = "red"; - phone_id = "Marshal Office" - }, -/obj/item/restraint/handcuffs, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"aMC" = ( -/obj/effect/landmark/railgun_camera_pos, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aMD" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"aML" = ( -/obj/structure/bed/chair, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aMO" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aMQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aMS" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/eta/xenobiology) -"aNo" = ( -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aNq" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOa" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aOc" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aOe" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aOg" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/kitchen/utensil/spoon, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aOw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOJ" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"aOW" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aOY" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aPa" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aPb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aPh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aPi" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/plate, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aPl" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table, -/turf/open/floor/darkblue2/northeast, -/area/bigredv2/caves/eta/research) -"aPC" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aPG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aQa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQd" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQf" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/kitchen/utensil/fork, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQk" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQm" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQn" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQo" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQq" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQs" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/kitchen/knife, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"aQz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"aQM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aQT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aRq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aRr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aRv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/computer3/server, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"aRD" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"aRE" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"aRM" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aRP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aSd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/e) -"aSj" = ( -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) -"aSk" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/telecomm/warehouse) -"aSv" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - health = 25000 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"aSI" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aTa" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"aTm" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/cigarette, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"aTQ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aUe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"aUq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"aUV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aUW" = ( -/obj/item/paper/crumpled/bloody, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aVh" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aVt" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars, -/area/bigredv2/outside/e) -"aVK" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aVM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aVQ" = ( -/obj/structure/platform_decoration/kutjevo/rock, -/turf/open/mars, -/area/space) -"aVY" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/e) -"aWa" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"aWz" = ( -/obj/structure/showcase{ - icon_state = "bus" - }, -/turf/open/floor/greengrid, -/area/bigredv2/outside/telecomm) -"aWL" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars, -/area/bigredv2/outside/e) -"aWZ" = ( -/obj/structure/machinery/conveyor_switch{ - id = "anomalybelt" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/purple/north, -/area/bigredv2/caves/lambda/research) -"aXd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aXh" = ( -/obj/structure/surface/table, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"aXi" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"aXr" = ( -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aXH" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aXS" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aXU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aXV" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aXX" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_lambda) -"aYc" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aYd" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"aYs" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aYt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/eat, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aYu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aYB" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"aYF" = ( -/turf/open/mars, -/area/bigredv2/outside/w) -"aYG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aYH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aYI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aYJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aYO" = ( -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"aZa" = ( -/obj/effect/decal/mecha_wreckage/ripley/firefighter, -/turf/open/floor/mech_bay_recharge_floor, -/area/bigredv2/outside/office_complex) -"aZc" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aZd" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aZm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aZn" = ( -/obj/structure/closet/secure_closet/quartermaster, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZo" = ( -/obj/structure/closet/secure_closet/cargotech{ - req_access = null; - req_one_access_txt = "21;101" - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZr" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZs" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZt" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZu" = ( -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZv" = ( -/obj/structure/machinery/door/window/eastleft{ - layer = 3.1 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZx" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZB" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aZC" = ( -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aZD" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"aZM" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZQ" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZR" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZT" = ( -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aZU" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"baj" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bay" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/hunter_primary, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baE" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/crowbar, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baG" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"baJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"baO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"baP" = ( -/obj/structure/surface/table, -/obj/item/paper, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bbb" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/mars, -/area/bigredv2/outside/w) -"bbe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbf" = ( -/obj/effect/spawner/random/tool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbh" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbi" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbj" = ( -/obj/structure/surface/table, -/obj/item/alienjar, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"bbo" = ( -/obj/structure/bed/chair/comfy/blue, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bbp" = ( -/obj/structure/bed/sofa/south/grey/left{ - pixel_y = 6 - }, -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bbq" = ( -/obj/structure/bed/sofa/south/grey{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bbr" = ( -/obj/structure/surface/table, -/obj/item/storage/photo_album, -/obj/item/tool/pen/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bbC" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bbM" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/device/flashlight, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbR" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbU" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bca" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bcd" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"bcv" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcw" = ( -/obj/effect/decal/mecha_wreckage/ripley, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control{ - id = "Cargonia"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcy" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcz" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcA" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcB" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = -30 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcC" = ( -/obj/structure/machinery/door_control{ - id = "Cargonia"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcF" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"bcG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"bcQ" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bcU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"bcV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"bcW" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"bcX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bcY" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bda" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdc" = ( -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/living) -"bde" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/transmitter/colony_net{ - phone_category = "Solaris Ridge"; - phone_color = "yellow"; - phone_id = "Filtration"; - pixel_y = 24 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"bdh" = ( -/obj/effect/spawner/random/tool, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bdi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bdr" = ( -/obj/structure/machinery/vending/snack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bdt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"bdy" = ( -/obj/structure/bed/chair/comfy/lime{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/folder/red, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdA" = ( -/obj/structure/sign/prop1, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdK" = ( -/obj/structure/largecrate, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bdL" = ( -/obj/structure/largecrate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bdM" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bdN" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bdW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bec" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bed" = ( -/obj/effect/landmark/good_item, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bee" = ( -/obj/structure/closet/emcloset, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bef" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/lighter/random, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bei" = ( -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bes" = ( -/turf/open/mars, -/area/bigredv2/outside/se) -"bex" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bez" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beA" = ( -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"beT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beW" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beX" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/item/tool/lighter/random, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bfk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bfr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bfv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Office Complex" - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bfz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bfB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bfE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bfG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bfH" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bfZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bgb" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bgr" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bhi" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside/c) -"bhr" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/se) -"bhO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/mars, -/area/bigredv2/outside/c) -"bhP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars, -/area/bigredv2/outside/c) -"bhS" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_sw) -"bic" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/mars, -/area/bigredv2/outside/se) -"bie" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/space_port_lz2) -"big" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"bij" = ( -/obj/structure/filingcabinet/medical{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/medical{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"biq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bir" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bit" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"biI" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - name = "LZ2: Engineering Landing Zone" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port_lz2) -"biL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/megaphone, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"biN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"biQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/greengrid, -/area/bigredv2/outside/telecomm) -"biV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating, -/area/bigredv2/outside/c) -"biZ" = ( -/turf/open/mars_cave/mars_cave_22, -/area/bigredv2/caves_research) -"bje" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port_lz2) -"bji" = ( -/obj/item/reagent_container/glass/bottle/tramadol, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bjo" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port_lz2) -"bjt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/bedroll{ - dir = 5 - }, -/obj/item/prop/colony/usedbandage{ - dir = 4; - pixel_x = -2; - pixel_y = 7 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"bjv" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/warnplate/northwest, -/area/bigredv2/caves/lambda/xenobiology) -"bjA" = ( -/turf/open/mars, -/area/bigredv2/outside/s) -"bjC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/s) -"bjM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bjN" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"bjU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/teleport/station, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"bkl" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bkn" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bkq" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/s) -"bkA" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bkB" = ( -/obj/structure/machinery/computer/arcade, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bkT" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bkU" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bld" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"blf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"blg" = ( -/obj/structure/machinery/computer/ordercomp, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"blh" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bli" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - health = 25000 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"blj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - health = 25000 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bll" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"blm" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bln" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"blo" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"blp" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"blF" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Atmospherics Condenser Air Filtration" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"blG" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"blO" = ( -/obj/item/prop/colony/usedbandage{ - dir = 5; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"blR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bme" = ( -/turf/open/mars, -/area/bigredv2/outside/sw) -"bmn" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"bmI" = ( -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/filtration_plant) -"bmM" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port_lz2) -"bmT" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"bmV" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"boA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"boJ" = ( -/obj/structure/tunnel{ - id = "hole4" - }, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"boT" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 16 - }, -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -2 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"bpt" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/camera, -/obj/structure/machinery/light/small, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"bpv" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/landmark/objective_landmark/close, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"bpw" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/outside/medical) -"bpU" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bpV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bqv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bqw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bqA" = ( -/obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"bqX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"brq" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"brD" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_cave_cas) -"brE" = ( -/turf/open/floor/greengrid, -/area/bigredv2/outside/filtration_cave_cas) -"bss" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - icon = 'icons/obj/pipes/manifold.dmi'; - icon_state = "map"; - name = "Pipe manifold" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"bsv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Abandoned Mining Storage" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"bsz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/cabinet, -/obj/item/disk/nuclear, -/obj/item/weapon/gun/pistol/mod88, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"bsA" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_telecomm_cas) -"bsH" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor, -/area/bigredv2/outside/filtration_cave_cas) -"bsU" = ( -/obj/item/clothing/accessory/storage/holster/armpit, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"bsV" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"bts" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Checkpoint" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"btw" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/lz2_south_cas) -"bty" = ( -/obj/item/trash/snack_bowl{ - pixel_x = 1; - pixel_y = -12 - }, -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/virology) -"btC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"btL" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"btT" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen/east, -/area/bigredv2/caves/lambda/xenobiology) -"buv" = ( -/obj/structure/window_frame/solaris, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"buT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"buU" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"bvb" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"bvg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"bvv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/lz2_south_cas) -"bvF" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/lz2_south_cas) -"bvI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/northwest, -/area/bigredv2/outside/admin_building) -"bvJ" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/northeast, -/area/bigredv2/caves/lambda/xenobiology) -"bvP" = ( -/turf/open/mars, -/area/bigredv2/caves/eta/research) -"bvS" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/plating, -/area/bigredv2/outside/lz2_south_cas) -"bvT" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bvY" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/eta) -"bwm" = ( -/obj/item/clothing/suit/storage/labcoat/science, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) -"bwo" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bww" = ( -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"bwA" = ( -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bwK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bwN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bwO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxc" = ( -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxe" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxU" = ( -/obj/structure/largecrate/cow, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"byf" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"byg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"byh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"byx" = ( -/obj/structure/largecrate/mule, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"byH" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"byI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"byY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bzm" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bAa" = ( -/obj/structure/bed/chair, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bAu" = ( -/obj/structure/surface/table, -/obj/item/storage/box/wy_mre, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bAK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bAL" = ( -/obj/structure/surface/table, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bAY" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bBv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"bBN" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"bBO" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"bCB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"bCE" = ( -/obj/item/stack/sheet/xenochitin, -/turf/open/mars, -/area/bigredv2/caves/eta/research) -"bCF" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bCJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars, -/area/bigredv2/caves/eta/research) -"bCK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/mars, -/area/bigredv2/caves/eta/research) -"bDk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/mars, -/area/bigredv2/caves/eta/xenobiology) -"bDx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bDy" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bDE" = ( -/obj/item/trash/kepler, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bDF" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bDM" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bEz" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bEF" = ( -/obj/structure/surface/table, -/obj/item/trash/semki, -/obj/structure/pipes/vents/pump, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bEI" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bEN" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bES" = ( -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bEY" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/mars, -/area/bigredv2/outside/n) -"bFi" = ( -/obj/structure/machinery/light/double, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz2_south_cas) -"bFw" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/telecomm/warehouse) -"bFx" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"bFF" = ( -/obj/effect/decal/hefa_cult_decals/d32, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"bFK" = ( -/obj/structure/surface/table, -/obj/item/storage/box/snappops, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"bFM" = ( -/obj/structure/prop/almayer/missile_tube{ - desc = "A detached drill arm of a big old Seegson D-602 Mining Robot. Seems to be jury rigged to run without the main robot assembly."; - name = "\improper Massive mining drill"; - pixel_y = 12 - }, -/obj/item/ore{ - pixel_x = 13; - pixel_y = 12 - }, -/obj/structure/cable, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"bFU" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Large Cables"; - pixel_y = 13 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"bGe" = ( -/obj/item/stack/sheet/metal{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"bGf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/paper/bigred/union, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"bGp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/obj/item/tool/hand_labeler, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"bGq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Complex" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"bGT" = ( -/obj/item/weapon/gun/boltaction, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"bHd" = ( -/obj/structure/surface/table, -/obj/item/tool/pen, -/turf/open/floor/darkblue2, -/area/bigredv2/outside/admin_building) -"bHw" = ( -/obj/structure/closet, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/ore{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/reagent_container/food/snacks/packaged_burger, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"bHE" = ( -/obj/structure/closet/crate, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"bHL" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/platingdmg1, -/area/bigredv2/outside/office_complex) -"bIw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"bIF" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/sw) -"bIJ" = ( -/obj/structure/machinery/vending/coffee, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"bIN" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) -"bJb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/caves/eta/research) -"bJd" = ( -/turf/open/floor/darkblue2/northwest, -/area/bigredv2/caves/eta/research) -"bJf" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"bJk" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"bJx" = ( -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"bJH" = ( -/obj/item/tool/warning_cone, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/se) -"bJI" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/breakroom) -"bJJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"bJN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"bJS" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"bJU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/surgery/hemostat, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"bKm" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/adv/empty, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"bKq" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"bKx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"bKA" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"bKS" = ( -/obj/structure/sign/safety/medical{ - pixel_x = -32 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"bLx" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/living) -"bLy" = ( -/obj/structure/fence, -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"bLR" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/breakroom) -"bMw" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/engineering) -"bMy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"bMA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"bMG" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/surface/table, -/turf/open/floor/darkblue2/northeast, -/area/bigredv2/outside/admin_building) -"bMH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"bMQ" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"bMS" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/ne) -"bNf" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_north) -"bNh" = ( -/obj/effect/decal/cleanable/blood/gibs/robot{ - pixel_y = 7; - pixel_x = -4; - name = "door debris" - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/stack/rods, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"bNo" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2"; - pixel_x = -9; - pixel_y = 11 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1"; - pixel_x = 12; - pixel_y = 16 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"bNy" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"bNK" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/research) -"bOu" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) -"bOw" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"bOG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/ammo_casing/bullet, -/obj/item/ammo_casing/bullet, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"bOK" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"bOL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/red/east, -/area/bigredv2/outside/marshal_office) -"bOR" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"bPd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/warnwhite/northwest, -/area/bigredv2/outside/virology) -"bPh" = ( -/obj/structure/closet/boxinggloves, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"bPB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkblue2/north, -/area/bigredv2/outside/admin_building) -"bPC" = ( -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"bPV" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"bPZ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"bQc" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_lambda) -"bQe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bQm" = ( -/obj/structure/platform/shiva{ - dir = 4 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"bQV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"bQW" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"bRb" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/bigredv2/caves_lambda) -"bRd" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/bigredv2/oob) -"bRg" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves_research) -"bRC" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "reactor_meltdown" - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"bRI" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/filtration_plant) -"bRX" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) -"bRY" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bSb" = ( -/obj/structure/machinery/light/double, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"bSe" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"bSh" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/plasmacutter{ - pixel_y = 5 - }, -/obj/item/tool/pickaxe/plasmacutter{ - pixel_y = -5 - }, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"bSj" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/research) -"bSk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"bSx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"bSL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; - name = "\improper Virology Lab Decontamination" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"bTw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/filtration_plant) -"bTF" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bTN" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"bUj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"bUy" = ( -/obj/item/device/healthanalyzer, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"bUS" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"bVi" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"bVS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"bWr" = ( -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/engineering) -"bWy" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/ne) -"bWX" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"bWY" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/reagent_container/glass/bottle/cyanide{ - pixel_y = 2; - pixel_x = -6 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"bXa" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-10" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"bXd" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-interior"; - name = "Lambda Checkpoint Interior" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/bigredv2/outside/lambda_cave_cas) -"bXe" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"bXF" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"bXQ" = ( -/obj/structure/barricade/wooden{ - pixel_y = 2 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"bXR" = ( -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/door/window{ - layer = 4 - }, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/caves/lambda/virology) -"bXZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_4" - }, -/obj/item/reagent_container/glass/bottle/toxin{ - pixel_y = 12; - pixel_x = 12 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"bYa" = ( -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bYh" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/s) -"bYl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bYv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/telecomm/lz2_cave) -"bYB" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/bottle/cognac, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"bYP" = ( -/obj/item/trash/cigbutt{ - pixel_x = -9; - pixel_y = -6 - }, -/turf/open/mars, -/area/bigredv2/outside/nw) -"bYS" = ( -/obj/item/device/radio/intercom{ - dir = 1; - frequency = 150; - name = "Safe-Room intercom"; - pixel_y = -30 - }, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"bZp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"bZt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"bZA" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"bZG" = ( -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"bZT" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/space_port_lz2) -"cao" = ( -/obj/structure/machinery/light, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"caq" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/s) -"caF" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engine Reactor Control" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"caI" = ( -/obj/item/bodybag/cryobag, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"caN" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"cbC" = ( -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"cbD" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"cbN" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"cbX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"ccd" = ( -/obj/structure/window/framed/solaris/reinforced/hull, -/obj/structure/cable, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/oob) -"ccx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreencorner/north, -/area/bigredv2/caves/lambda/virology) -"ccz" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"ccA" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves/eta/research) -"ccQ" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb{ - pixel_y = -11; - pixel_x = 5 - }, -/obj/item/weapon/gun/revolver/cmb{ - pixel_y = -1; - pixel_x = -3 - }, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"ccR" = ( -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/xenobiology) -"ccS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/ammo_casing/bullet, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"cdb" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"cdj" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"cdl" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"cds" = ( -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" - }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"cdM" = ( -/obj/structure/bed/roller, -/turf/open/mars, -/area/bigredv2/outside/nw) -"cec" = ( -/obj/structure/bed, -/obj/item/toy/plush/farwa, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"cek" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz2_south_cas) -"cel" = ( -/turf/open/floor/almayer/w_y2/north, -/area/bigredv2/outside/admin_building) -"ces" = ( -/turf/open/floor/loadingarea, -/area/bigredv2/outside/cargo) -"ceD" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"ceH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteblue/north, -/area/bigredv2/outside/medical) -"ceQ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"ceX" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"ceY" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"cfi" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"cfj" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"cft" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"cfJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/item/frame/table, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"cfM" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/drinks/bottle/goldschlager, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"cfP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/eta/research) -"cfQ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine{ - density = 0; - req_one_access_txt = "200" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"cge" = ( -/obj/item/explosive/grenade/slug/baton{ - dir = 1; - pixel_y = -8 - }, -/obj/item/explosive/grenade/baton{ - dir = 4; - pixel_x = 9; - pixel_y = -8 - }, -/obj/structure/cable{ - icon_state = "4-10" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-5" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"cgm" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/caves_lambda) -"cgN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"chy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/whitepurplefull, -/area/bigredv2/outside/medical) -"chN" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/asphalt/cement/cement15, -/area/bigredv2/caves_lambda) -"chP" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"chR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"chX" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/mp27, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/admin_building) -"cik" = ( -/obj/structure/machinery/door_control{ - id = "Filtration Plant"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"cio" = ( -/obj/structure/surface/table{ - flipped = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"cis" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/whitegreencorner/east, -/area/bigredv2/caves/lambda/virology) -"ciw" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/blood, -/obj/item/tool/kitchen/knife, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"ciC" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/eta) -"ciQ" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/w) -"ciS" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/s) -"cjf" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/virology) -"cjh" = ( -/obj/item/stool, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"cjm" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/lz1_north_cas) -"cjQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"cjR" = ( -/obj/effect/decal/remains/human, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/lambda_cave_cas) -"ckg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_sw) -"ckl" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Cell" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/xenobiology) -"ckF" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/eta/research) -"ckG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"ckJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"ckL" = ( -/obj/structure/closet/toolcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/filtration_plant) -"clr" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/caves_north) -"clw" = ( -/obj/structure/closet/radiation, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"cly" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"clD" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_virology) -"clK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"clP" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) -"clR" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/colonist, -/obj/item/grown/sunflower{ - pixel_x = -2; - pixel_y = -7 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"clW" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"cmh" = ( -/turf/open/floor/bcircuit, -/area/bigredv2/outside/telecomm/warehouse) -"cmD" = ( -/obj/effect/decal/cleanable/ash{ - pixel_x = 11; - pixel_y = 25 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"cmE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/surface/table, -/obj/structure/machinery/light, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"cns" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "se-checkpoint" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"cnt" = ( -/obj/structure/pipes/standard/manifold/visible, -/obj/effect/decal/medical_decals{ - icon_state = "cryotop" - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"cnE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/c) -"cnI" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/c) -"coc" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port_lz2) -"col" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"coz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"coL" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"coU" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"coZ" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/donkpocket, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"cpd" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; - pixel_x = 30 - }, -/obj/item/shard, -/turf/open/floor/red/southeast, -/area/bigredv2/outside/marshal_office) -"cpo" = ( -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"cpD" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"cpM" = ( -/obj/item/tool/surgery/scalpel{ - pixel_y = -8 - }, -/turf/open/floor/whiteblue, -/area/bigredv2/outside/medical) -"cqe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"cqy" = ( -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"cqB" = ( -/obj/structure/barricade/handrail/medical{ - dir = 1 - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"cqE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/xenobiology) -"cqI" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/outside/lz1_telecomm_cas) -"cqR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"cqW" = ( -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/breakroom) -"cqY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"cri" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_east) -"csb" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/purple/northwest, -/area/bigredv2/caves/lambda/research) -"csg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories Tool Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"csP" = ( -/obj/structure/machinery/door/poddoor/almayer/closed, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"csQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Eta Lab Restroom" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/living) -"csU" = ( -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port_lz2) -"cta" = ( -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/virology) -"cth" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/ne) -"cti" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/c) -"ctm" = ( -/obj/structure/barricade/wooden, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"ctv" = ( -/turf/open/asphalt/cement/cement12, -/area/bigredv2/outside/lambda_cave_cas) -"ctw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 5; - layer = 3.01; - pixel_y = -7 - }, -/obj/item/trash/eat{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/item/trash/eat{ - pixel_x = -9; - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"ctW" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/mars, -/area/bigredv2/outside/nw) -"ctX" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/nw) -"cuD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"cuH" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_virology) -"cuS" = ( -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"cuT" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"cuU" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigred/ground/garage_workshop) -"cvc" = ( -/obj/structure/flora/grass/desert/lightgrass_10, -/turf/open/mars, -/area/bigredv2/outside/nw) -"cve" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"cvg" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"cvo" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"cvq" = ( -/obj/structure/machinery/telecomms/server, -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/eta/storage) -"cvz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"cvH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/welding, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"cvJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/e) -"cwb" = ( -/obj/effect/landmark/hunter_primary, -/obj/structure/flora/grass/desert/lightgrass_7, -/turf/open/mars, -/area/bigredv2/outside/n) -"cws" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/strata_decals/grime/grime3, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/e) -"cwu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"cwB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/armor/riot{ - pixel_y = 5; - pixel_x = 7 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"cwF" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"cwP" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"cwQ" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_virology) -"cxa" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Access door" - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"cxF" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_2" - }, -/obj/item/reagent_container/pill/happy, -/obj/item/reagent_container/pill/happy, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"cxG" = ( -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -9 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/c) -"cyv" = ( -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_x = 3; - pixel_y = 12 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"cyx" = ( -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -6; - pixel_y = -4; - layer = 3.1 - }, -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 8; - layer = 3.01; - pixel_y = 17 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"cyA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/telecomm/n_cave) -"cyE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"cyR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/trash/semki{ - pixel_x = 6; - pixel_y = -5 - }, -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/medical) -"cyT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Office Complex Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"czd" = ( -/obj/effect/glowshroom, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/caves/lambda/xenobiology) -"czg" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/ne) -"czx" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"czC" = ( -/obj/structure/machinery/light, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"czL" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves/lambda/xenobiology) -"czS" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"cAc" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"cAe" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/virology) -"cAg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"cAm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/warning_cone, -/obj/structure/barricade/handrail/wire{ - dir = 1 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"cAv" = ( -/obj/structure/bed, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"cAA" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"cAF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Virology Lab Chemistry" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"cAN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"cBj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull, -/area/bigredv2/caves/lambda/xenobiology) -"cBn" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Operations Toilet" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"cBG" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/n) -"cBH" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Engineering"; - name = "\improper Engineering Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"cBI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"cBL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"cBN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"cCj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/roller, -/obj/structure/closet/bodybag, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"cCY" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"cDu" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"cDB" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Cell" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/xenobiology) -"cDD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 7; - pixel_y = -6 - }, -/obj/item/trash/eat{ - pixel_x = -9; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"cDL" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/warnwhite/east, -/area/bigredv2/outside/admin_building) -"cEa" = ( -/obj/structure/bed/roller, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"cEf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/caves/eta/research) -"cEv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"cEy" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 7 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"cEB" = ( -/turf/open/floor/darkredcorners2/north, -/area/bigredv2/outside/admin_building) -"cEG" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"cEK" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_y = -9; - pixel_x = -7 - }, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_y = -2 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"cFe" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"cFf" = ( -/obj/effect/landmark/crap_item, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"cFl" = ( -/obj/structure/machinery/botany/editor, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitegreen_v/northwest, -/area/bigredv2/caves/lambda/xenobiology) -"cFp" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"cFz" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/e) -"cFB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/good_item, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"cFE" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/space_port) -"cFJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/e) -"cFN" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/head/det_hat, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"cFY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_sw) -"cGB" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/meson, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"cGE" = ( -/obj/structure/barricade/wooden, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"cGX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"cHa" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"cHb" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/sosjerky{ - pixel_x = 14; - pixel_y = -4 - }, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"cHd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor/whitepurple/west, -/area/bigredv2/caves/lambda/research) -"cHj" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"cHo" = ( -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"cHp" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/w) -"cHy" = ( -/obj/item/device/flashlight, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cHS" = ( -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"cIf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"cIl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/access_button/airlock_interior{ - master_tag = "viro_controller"; - pixel_y = 28 - }, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"cIo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"cIs" = ( -/obj/structure/bed/chair, -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) -"cIC" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor, -/area/bigredv2/outside/lambda_cave_cas) -"cID" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"cIK" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"cIP" = ( -/obj/item/paper/bigred/smuggling, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cJd" = ( -/turf/open/space/basic, -/area/space) -"cJm" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/space_port_lz2) -"cJn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"cJE" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"cKs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"cKD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"cKK" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"cKU" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"cLd" = ( -/obj/structure/largecrate/guns, -/turf/open/floor/bot, -/area/bigredv2/caves/eta/storage) -"cLq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"cLx" = ( -/obj/structure/morgue{ - dir = 2 - }, -/turf/open/floor/whiteblue/north, -/area/bigredv2/outside/medical) -"cLJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/storage) -"cLM" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = -32 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" - }, -/obj/structure/barricade/handrail/medical, -/obj/structure/sign/safety/med_cryo{ - pixel_x = -16 - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"cMa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/bigredv2/caves_lambda) -"cMh" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/n) -"cMk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"cMo" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/lz1_north_cas) -"cMz" = ( -/obj/structure/flora/grass/desert/lightgrass_11, -/turf/open/mars, -/area/bigredv2/outside/ne) -"cME" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/c) -"cMK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"cMU" = ( -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"cMW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/outside/medical) -"cMY" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"cNi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port) -"cNm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"cNq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/snack_bowl{ - pixel_y = 5; - pixel_x = -8 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"cND" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"cNJ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"cNN" = ( -/turf/open/floor/grimy, -/area/bigredv2/outside/admin_building) -"cNT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/c) -"cOe" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_plant) -"cOt" = ( -/obj/structure/sign/poster/clf, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"cOB" = ( -/obj/item/frame/rack, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"cOP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Operations" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"cPp" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/whiteblue/southwest, -/area/bigredv2/outside/medical) -"cPq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/outside/medical) -"cPr" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"cPM" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"cPP" = ( -/obj/structure/foamed_metal, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"cPR" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"cQg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic Treatment" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"cQF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"cQG" = ( -/obj/structure/surface/table, -/obj/item/clothing/suit/storage/CMB{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"cQH" = ( -/obj/structure/flora/grass/desert/lightgrass_11, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"cQL" = ( -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/dirt, -/obj/item/organ/heart/prosthetic{ - pixel_x = 6; - pixel_y = -7 - }, -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"cQO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"cQV" = ( -/obj/structure/filingcabinet/medical, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"cQW" = ( -/obj/structure/ore_box, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves/mining) -"cQZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/podhatch/northwest, -/area/bigredv2/caves/lambda/research) -"cRb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cRE" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/red, -/area/bigredv2/outside/lambda_cave_cas) -"cRH" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"cRJ" = ( -/obj/item/tool/extinguisher/mini, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) -"cRQ" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/mars, -/area/bigredv2/outside/nw) -"cRY" = ( -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -9 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/nw) -"cSp" = ( -/obj/item/tool/extinguisher, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"cSD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"cTz" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/engineering) -"cTL" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"cTT" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_virology) -"cTV" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/s) -"cUc" = ( -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"cUi" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/s) -"cVd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"cVh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"cVi" = ( -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/turf/open/floor/whitepurple/northeast, -/area/bigredv2/caves/lambda/research) -"cVj" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 30 - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 7; - pixel_y = 32 - }, -/obj/effect/decal/cleanable/vomit, -/obj/structure/machinery/light/built{ - dir = 1 - }, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"cVw" = ( -/turf/open/shuttle/escapepod/floor1, -/area/bigredv2/oob) -"cVG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/crushed_cup{ - pixel_x = 3; - pixel_y = 14 - }, -/obj/structure/largecrate/random/barrel/red{ - pixel_y = -1; - pixel_x = 3 - }, -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"cVJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/bananapeel, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"cVK" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/whiteblue, -/area/bigredv2/outside/medical) -"cVY" = ( -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"cWe" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"cWG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"cXc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/extinguisher, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"cXs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"cXu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 7; - pixel_y = -32 - }, -/obj/structure/machinery/light/built, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"cXx" = ( -/obj/item/tool/surgery/scalpel/laser/advanced, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"cXH" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"cYi" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 2; - pixel_y = 9 - }, -/obj/structure/prop/invuln/pipe_water{ - pixel_x = 9; - pixel_y = -1 - }, -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_y = -19; - pixel_x = 7 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"cYx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/engineering) -"cYM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/red/north, -/area/bigredv2/outside/lambda_cave_cas) -"cZj" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"cZO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"cZS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"cZV" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"cZW" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"dar" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 9; - pixel_y = 11 - }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"dau" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/ammo_casing/bullet, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"dax" = ( -/obj/structure/surface/table, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_15"; - pixel_y = 10 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"daU" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"dbd" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"dbf" = ( -/obj/structure/largecrate/random, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port_lz2) -"dbi" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/outside/telecomm/lz2_cave) -"dbt" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/outside/medical) -"dbF" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/ganucci{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/trash/cigbutt{ - pixel_x = -14; - pixel_y = -6 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"dbR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"dbZ" = ( -/obj/item/tool/warning_cone, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/se) -"dcj" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/closet/crate/miningcar/yellow{ - layer = 3 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"dck" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_lambda) -"dct" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/mars, -/area/bigredv2/outside/n) -"dcL" = ( -/obj/item/alien_embryo, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"dcN" = ( -/obj/structure/machinery/filtration/console{ - pixel_y = 13 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"dde" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"ddo" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"ddO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"def" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/objective{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"dem" = ( -/turf/open/floor/delivery, -/area/bigred/ground/garage_workshop) -"deo" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/scalpel/manager, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves/lambda/xenobiology) -"dfm" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"dfI" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/outside/medical) -"dfU" = ( -/turf/open/asphalt/cement, -/area/bigredv2/caves_lambda) -"dgb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"dgd" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/admin_building) -"dgi" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_north) -"dgz" = ( -/obj/structure/bed, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"dhk" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/mars, -/area/bigredv2/outside/nw) -"dhp" = ( -/obj/structure/flora/grass/desert/lightgrass_11, -/turf/open/mars, -/area/bigredv2/outside/n) -"dhI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"dhN" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/almayer{ - id = "rad_door"; - name = "\improper Radiation Shielding" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"dif" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/nw/ceiling) -"diq" = ( -/obj/structure/pipes/vents/scrubber/on{ - dir = 4 - }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/research) -"dit" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 2; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"diT" = ( -/obj/structure/surface/table, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"djd" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"djk" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/nw) -"djp" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/lambda_cave_cas) -"djI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"dkh" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/darkblue2/east, -/area/bigredv2/outside/admin_building) -"dkk" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/outside/lz1_north_cas) -"dkK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"dkM" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close{ - pixel_x = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"dlg" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/filtration_cave_cas) -"dlj" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/csandwich, -/obj/item/toy/deck/uno{ - pixel_y = 18 - }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"dlo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves/eta/research) -"dlr" = ( -/turf/open/floor/darkred2/southeast, -/area/bigredv2/outside/admin_building) -"dlv" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/telecomm/n_cave) -"dlI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/semki{ - pixel_y = -14 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"dlJ" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/caves_lambda) -"dlK" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"dlP" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"dlU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 3; - pixel_y = 15 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"dma" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"dmb" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves_research) -"dmB" = ( -/obj/item/tool/pickaxe, -/turf/open/mars, -/area/bigredv2/outside/filtration_plant) -"dmO" = ( -/obj/structure/machinery/fuelcell_recycler, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"dmW" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"dmX" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"dnb" = ( -/obj/structure/surface/table, -/obj/item/storage/box/gloves{ - pixel_y = 8 - }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"dnq" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/item/trash/cigbutt{ - icon_state = "ucigbutt"; - pixel_x = 2; - pixel_y = 8 - }, -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -9 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/nw) -"dnt" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"dnF" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"dnN" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/telecomm/lz2_cave) -"dnP" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"dnT" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood/drip, -/obj/item/weapon/baton/damaged{ - pixel_y = 20; - pixel_x = 16 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"doe" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/item/stack/cable_coil/blue{ - pixel_y = 10 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"dof" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/space) -"dot" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"doN" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/space_port_lz2) -"doX" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"doZ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"dpn" = ( -/obj/structure/surface/table, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/storage/box/beakers{ - pixel_y = -1; - pixel_x = 4 - }, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"dpv" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/surgicaldrill, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"dpJ" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"dqk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"dqu" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"drl" = ( -/obj/structure/surface/rack, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"drp" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/e) -"drJ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"dsf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"dsy" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"dsJ" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz1_telecomm_cas) -"dsK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"dsX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"dtc" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"dtA" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Server" - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"dtD" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/telecomm/n_cave) -"dtM" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves/mining) -"duo" = ( -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"duA" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"duE" = ( -/obj/item/reagent_container/food/snacks/sausage, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/space) -"duM" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"duO" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"duY" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_south_cas) -"duZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Bar"; - density = 0; - icon_state = "door_open" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"dvq" = ( -/obj/structure/bed/chair/wood/normal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"dvr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"dvz" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/lambda_cave_cas) -"dvJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"dvL" = ( -/obj/structure/surface/table, -/obj/item/tool/extinguisher, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"dvX" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"dwg" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"dwh" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/mars, -/area/bigredv2/outside/n) -"dww" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/item/prop/colony/usedbandage{ - dir = 5 - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"dwO" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/stack/cable_coil/cut{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"dwV" = ( -/obj/structure/closet/secure_closet/marshal, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/floor4, -/area/bigredv2/outside/marshal_office) -"dxe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/c) -"dxi" = ( -/obj/item/storage/firstaid/adv/empty{ - pixel_y = -6; - pixel_x = -8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"dxL" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"dxO" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine{ - density = 0; - req_one_access_txt = "200" - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"dxS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"dxT" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"dym" = ( -/obj/item/stack/sheet/metal{ - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"dyo" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/virology) -"dyt" = ( -/obj/item/explosive/grenade/baton{ - dir = 8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"dyv" = ( -/turf/open/mars, -/area/bigredv2/caves/eta/xenobiology) -"dyz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/botany, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"dyE" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/packaged_burger, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"dyW" = ( -/turf/open/mars/mars_dirt_5, -/area/bigredv2/outside/w) -"dzi" = ( -/obj/item/tool/warning_cone, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement/cement9, -/area/bigredv2/outside/filtration_cave_cas) -"dzj" = ( -/obj/item/trash/semki{ - layer = 2; - pixel_x = -13; - pixel_y = 14 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/w) -"dzI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/asteroidwarning/east, -/area/bigred/ground/garage_workshop) -"dzS" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/filtration_plant) -"dzW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"dAa" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = 32 - }, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/outside/medical) -"dAf" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"dAi" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/bigredv2/outside/lz2_south_cas) -"dAp" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"dAs" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"dCa" = ( -/obj/structure/curtain/medical, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/caves/lambda/virology) -"dCo" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"dCA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"dCE" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/space_port_lz2) -"dCU" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"dDx" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/asteroidwarning, -/area/bigred/ground/garage_workshop) -"dDz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/bigredv2/outside/space_port) -"dDB" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"dDE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"dDP" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Register" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"dDZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor/plating/platebotc, -/area/bigredv2/outside/space_port) -"dEf" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"dEs" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"dEv" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"dEN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"dEQ" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/lz2_south_cas) -"dFc" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"dFA" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_plant) -"dFF" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/se) -"dFO" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/se) -"dFZ" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/lambda/virology) -"dGa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/caves_lambda) -"dGb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 32 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/research) -"dGn" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"dGx" = ( -/obj/item/weapon/gun/rifle/m4ra, -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 - }, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_research) -"dGD" = ( -/obj/structure/bed, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"dGH" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"dGM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Anomaly Lab" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"dGN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dormitories Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"dHd" = ( -/obj/structure/largecrate/random/mini{ - pixel_x = -6; - pixel_y = 7; - layer = 3.1 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"dHn" = ( -/obj/item/prop/colony/usedbandage{ - dir = 5; - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/prop/colony/usedbandage{ - dir = 4; - pixel_x = 11; - pixel_y = -4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"dHr" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = -15 - }, -/turf/open/mars_cave, -/area/bigredv2/caves/mining) -"dHK" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/syndi_cakes, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"dHR" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"dHU" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_lambda) -"dHZ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"dIb" = ( -/turf/open/floor, -/area/bigredv2/caves) -"dIc" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/n) -"dIq" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/w) -"dIX" = ( -/obj/effect/decal/strata_decals/grime/grime2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"dJb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/botany, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"dJc" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"dJd" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/reagent_container/food/drinks/cans/cola{ - pixel_x = -5 - }, -/obj/item/reagent_container/food/drinks/cans/cola{ - pixel_x = 1 - }, -/obj/item/reagent_container/food/drinks/cans/cola{ - pixel_x = 7 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"dJx" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"dJZ" = ( -/obj/item/ammo_casing/bullet, -/obj/item/weapon/gun/pistol/holdout{ - pixel_x = -8; - pixel_y = 11 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"dKo" = ( -/obj/item/ore/iron{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/ore/iron{ - pixel_x = -9; - pixel_y = 8 - }, -/obj/item/ore/iron, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"dKq" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/adv{ - pixel_y = 13; - pixel_x = 7 - }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"dKx" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/c) -"dKM" = ( -/obj/structure/machinery/door_control{ - id = "Kitchen Greenhouse"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"dKP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/bigredv2/outside/space_port) -"dKX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"dLp" = ( -/obj/structure/machinery/computer/area_atmos/area, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"dLs" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"dLD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_x = 7; - pixel_y = 14 - }, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"dLF" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"dLN" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Break Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"dLO" = ( -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"dLU" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"dMn" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves_north) -"dMB" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/lz1_telecomm_cas) -"dMD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves/eta/research) -"dMR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/plate{ - pixel_x = -13; - pixel_y = 12 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/space_port_lz2) -"dMS" = ( -/obj/structure/disposalpipe/segment, -/obj/item/frame/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/pipes/valve/open, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"dNm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"dNo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/item/stack/sheet/metal{ - pixel_y = 9; - pixel_x = 9 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/medical) -"dNJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"dNX" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"dOf" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/mars, -/area/bigredv2/outside/nw) -"dOr" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/objective, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"dOw" = ( -/obj/structure/prop/tower, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port) -"dOB" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/se) -"dOW" = ( -/obj/structure/surface/table, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"dPa" = ( -/obj/structure/inflatable/door, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"dPe" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"dPu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"dPx" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Bedroom" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"dPG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"dPJ" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/bigredv2/outside/c) -"dPK" = ( -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/virology) -"dPO" = ( -/obj/structure/largecrate, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"dPW" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"dQg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"dQk" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"dQy" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_sw) -"dQB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"dQD" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement/cement15, -/area/bigredv2/caves_lambda) -"dQH" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"dRh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"dRm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"dRn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"dRp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - name = "Interview Room APC" - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"dRJ" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 13; - pixel_y = 13 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"dRO" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_north) -"dRV" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/bedsheet/medical{ - pixel_x = 4; - pixel_y = -12 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"dSg" = ( -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"dSn" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/obj/item/trash/pistachios{ - pixel_x = -3; - pixel_y = 11 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/w) -"dSv" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"dSN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"dSR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/asteroidwarning/north, -/area/bigred/ground/garage_workshop) -"dSY" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"dTg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -8; - pixel_y = -5 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"dTB" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/lambda_cave_cas) -"dTD" = ( -/obj/structure/bed/roller, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 7 - }, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"dTV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"dUf" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_east) -"dUn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"dUp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"dUC" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/device/healthanalyzer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"dUX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"dVd" = ( -/obj/structure/barricade/wooden, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"dVe" = ( -/obj/effect/decal/strata_decals/grime/grime2, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/bigredv2/outside/space_port_lz2) -"dVi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"dVm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"dVU" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_sw) -"dWp" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"dWB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/machinery/light/built{ - dir = 4 - }, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"dWI" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"dWQ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/c) -"dWV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/nw) -"dXc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) -"dXk" = ( -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/caves/lambda/virology) -"dXt" = ( -/turf/open/mars_cave/mars_cave_4, -/area/bigredv2/caves_se) -"dXD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Tool Storage" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"dYg" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/filtration_plant) -"dYk" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"dYo" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - id_tag = "mbayexit"; - name = "Medbay Reception"; - req_one_access_txt = "2;8;19" - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"dYB" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves/mining) -"dYG" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/warnplate/north, -/area/bigredv2/caves/lambda/xenobiology) -"dYZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"dZc" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/mars, -/area/bigredv2/outside/ne) -"dZd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/laser{ - pixel_y = 32 - }, -/turf/open/floor/purple/north, -/area/bigredv2/caves/lambda/research) -"dZf" = ( -/obj/item/ashtray/glass, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"dZH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"dZN" = ( -/turf/open/floor/chapel/east, -/area/bigredv2/outside/chapel) -"eak" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"ear" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/xenobiology) -"eaE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"eaG" = ( -/obj/structure/cable{ - icon_state = "1-6" - }, -/obj/structure/cable{ - icon_state = "6-8" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eaQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"ebf" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "\improper Engine Reactor" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"ebA" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/eta) -"ebJ" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/space_port_lz2) -"ebK" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"ebY" = ( -/obj/item/clothing/mask/breath/medical{ - pixel_y = -3; - pixel_x = -7 - }, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ecd" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"ecE" = ( -/obj/item/ammo_casing/shell, -/turf/open/floor/whiteblue/north, -/area/bigredv2/outside/medical) -"edf" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"edm" = ( -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_virology) -"eds" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/item/trash/kepler{ - pixel_y = 9; - pixel_x = 12 - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"edB" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"edJ" = ( -/obj/item/trash/barcardine{ - pixel_y = 5; - pixel_x = 17 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"edZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"eec" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"eed" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"eee" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/telecomm/n_cave) -"ees" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"eeP" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"efa" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/space_port_lz2) -"eff" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Dormitories EVA Maintenance"; - welded = 1 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"efv" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_lambda) -"efD" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement/cement9, -/area/bigredv2/caves_lambda) -"egd" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/se) -"egH" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"egS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"egT" = ( -/obj/structure/bed/chair, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"egV" = ( -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"ehb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/w) -"ehw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"ehA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/xeno, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"ehF" = ( -/obj/structure/machinery/power/apc/power/north{ - name = "Control Center APC" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"ehG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/telecomm/n_cave) -"ehL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000; - layer = 2.8 - }, -/obj/structure/machinery/vending/snack{ - pixel_x = 5; - pixel_y = -1; - layer = 2.9 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"ehM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"ehU" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/c) -"ehV" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/mars, -/area/bigredv2/outside/s) -"eii" = ( -/obj/structure/machinery/processor, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"eip" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/disk/nuclear, -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/research) -"eiq" = ( -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/lambda_cave_cas) -"eix" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"eiF" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/e) -"eiX" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"ejj" = ( -/turf/open/floor/warnwhite/north, -/area/bigredv2/outside/virology) -"ejv" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/item/toy/prize/ripley, -/obj/item/toy/prize/odysseus, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"ejx" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"ejB" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"ejL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/buritto{ - pixel_y = 12; - pixel_x = -7 - }, -/obj/item/stack/tile/plasteel{ - pixel_x = 16 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"ejP" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/se) -"ejX" = ( -/obj/structure/bed/chair, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"eke" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/transmitter/colony_net{ - phone_category = "Solaris Ridge"; - phone_color = "blue"; - phone_id = "Operations"; - pixel_y = 24 - }, -/turf/open/floor/darkblue2/north, -/area/bigredv2/outside/admin_building) -"ekh" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"eks" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/effect/landmark/corpsespawner/colonist/random/burst, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"ekE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"ekL" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-interior"; - name = "Lambda Checkpoint Interior" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/asphalt/cement, -/area/bigredv2/outside/lambda_cave_cas) -"elr" = ( -/obj/structure/largecrate/random, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"elu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"elC" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"elY" = ( -/obj/structure/surface/table, -/obj/item/trash/kepler{ - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"emK" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/nw) -"emR" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"emU" = ( -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"ene" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ - pixel_x = -11; - pixel_y = 11 - }, -/obj/item/reagent_container/food/snacks/cookie, -/turf/open/mars_cave, -/area/bigredv2/caves/mining) -"eng" = ( -/obj/structure/machinery/door_control{ - id = "Operations"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"enq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"env" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"enD" = ( -/obj/item/trash/cigbutt/ucigbutt, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_y = 7 - }, -/obj/item/trash/cigbutt{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"enX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/bigredv2/outside/space_port) -"eoM" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"eoR" = ( -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"epg" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_se) -"epp" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"epQ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Cargo Bay Offices" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"eqg" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Cables" - }, -/obj/structure/cryofeed/right{ - color = "silver"; - desc = "A bewildering tangle of machinery and pipes."; - name = "\improper coolant feed" - }, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) -"eqk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/bigredv2/outside/lambda_cave_cas) -"eqt" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor/darkred2/southeast, -/area/bigredv2/outside/admin_building) -"eqv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"eqz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/turf/open/floor/plating/platebotc, -/area/bigredv2/outside/space_port) -"eqD" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"eqT" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/engineering) -"erb" = ( -/turf/open/floor/whiteyellow, -/area/bigredv2/caves/lambda/xenobiology) -"eru" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"erF" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/asteroidwarning/northeast, -/area/bigred/ground/garage_workshop) -"erP" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"erT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"ese" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/engineering) -"ess" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"esx" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves_north) -"esT" = ( -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 10; - pixel_y = 6 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/s) -"etc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"etg" = ( -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -8; - pixel_y = -4 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"etj" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 13; - pixel_y = 10 - }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"etz" = ( -/obj/structure/surface/table, -/obj/item/evidencebag{ - pixel_y = 12 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"eup" = ( -/obj/structure/bed/chair, -/obj/item/trash/cigbutt, -/obj/item/storage/fancy/cigarettes/lady_finger{ - pixel_x = 11 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"eut" = ( -/obj/item/device/flashlight/lamp{ - pixel_x = 5; - pixel_y = 13 - }, -/obj/item/ashtray/plastic, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"euw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/glass, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"euL" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"euV" = ( -/obj/structure/platform/shiva{ - dir = 8 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"euX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"evf" = ( -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/medical) -"evn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/tofu{ - pixel_x = -1; - pixel_y = 14 - }, -/obj/item/reagent_container/food/snacks/tofu{ - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/tofu, -/obj/structure/cable{ - icon_state = "5-9" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"evx" = ( -/obj/item/device/flashlight/on{ - pixel_x = 8 - }, -/turf/open/shuttle/escapepod/floor1, -/area/bigredv2/oob) -"evR" = ( -/obj/item/storage/toolbox/mechanical, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"evS" = ( -/obj/structure/machinery/botany, -/obj/item/seeds/goldappleseed, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"evU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"ewa" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/filtration_cave_cas) -"ewA" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"ewH" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"ewJ" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/w) -"ewV" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"ewZ" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"exs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Break Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"exu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/barricade/metal, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"exN" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/n) -"exO" = ( -/obj/structure/largecrate/mule, -/turf/open/floor/bot, -/area/bigredv2/caves/eta/storage) -"exR" = ( -/obj/structure/machinery/smartfridge/secure/virology, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"eye" = ( -/obj/item/tool/match{ - pixel_x = 8; - pixel_y = 9 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/ne) -"eyr" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 13 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"eyE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -9 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"eyH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/filtration_plant) -"eyZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"eza" = ( -/obj/structure/barricade/wooden, -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/c) -"ezH" = ( -/obj/structure/machinery/light, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"ezK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Director's Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"ezP" = ( -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"ezW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars, -/area/bigredv2/outside/n) -"eAu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - layer = 3.1; - pixel_y = 11 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"eAy" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"eAz" = ( -/obj/item/tool/wrench{ - pixel_x = -7; - pixel_y = -14 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 4 - }, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves/mining) -"eAP" = ( -/obj/item/ammo_magazine/shotgun/slugs, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"eBv" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"eBy" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"eBR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"eBU" = ( -/turf/open/asphalt/cement/cement12, -/area/bigredv2/outside/filtration_cave_cas) -"eBW" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"eCg" = ( -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -2; - pixel_y = -4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"eCp" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eCt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/admin_building) -"eCx" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"eCD" = ( -/obj/item/ore, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"eCP" = ( -/obj/item/shard, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"eDu" = ( -/obj/structure/machinery/conveyor{ - id = "anomalybelt" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/plasticflaps, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"eDQ" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"eDS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"eEp" = ( -/obj/item/stack/sheet/metal{ - pixel_y = -3; - pixel_x = -8 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"eEu" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"eEv" = ( -/obj/structure/surface/table, -/obj/item/device/radio{ - pixel_x = -10; - pixel_y = 9 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"eEy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave, -/area/bigredv2/outside/lz2_west_cas) -"eEz" = ( -/obj/structure/closet/secure_closet/RD, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/darkblue2/north, -/area/bigredv2/caves/eta/research) -"eES" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/eta/xenobiology) -"eFH" = ( -/obj/structure/bed, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"eFN" = ( -/obj/structure/surface/table, -/obj/item/tank/anesthetic, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"eGl" = ( -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"eGr" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/outside/ne) -"eGI" = ( -/obj/structure/machinery/door_control{ - id = "garage"; - name = "Garage Shutters"; - pixel_x = 26; - range = 500 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"eHa" = ( -/obj/item/ore{ - pixel_x = 9; - pixel_y = 13 - }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"eHe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-in" - }, -/turf/open/floor/plating/platebotc, -/area/bigredv2/outside/space_port) -"eHz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"eHZ" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/filtration_plant) -"eIj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"eIn" = ( -/obj/structure/surface/table/woodentable{ - dir = 4; - flipped = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"eIq" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/bun, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"eIu" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/lz1_north_cas) -"eIA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/obj/structure/xenoautopsy/tank/hugger, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/whitepurple/southeast, -/area/bigredv2/caves/lambda/xenobiology) -"eIC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"eIL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"eIM" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/landing/console) -"eIS" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Dormitories EVA"; - icon_state = "door_open"; - density = 0 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"eIT" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/telecomm/n_cave) -"eJa" = ( -/obj/structure/surface/table, -/obj/item/alienjar, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/caves/eta/xenobiology) -"eJc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eJh" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"eJj" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eJD" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"eKb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/outside/admin_building) -"eKC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/machinery/light/double{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 14; - pixel_y = 3 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"eKO" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/bigredv2/outside/virology) -"eLq" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"eLJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/iv_drip, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"eLK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"eLR" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "Righty tighty, lefty loosey!"; - dir = 1; - icon = 'icons/obj/pipes/valve.dmi'; - icon_state = "map_valve1"; - name = "Pressure Valve" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eLZ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Atmospherics Condenser Storage" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"eMa" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/space_port_lz2) -"eMo" = ( -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -5; - pixel_y = 11 - }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"eMs" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"eMt" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/n) -"eMG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/e) -"eMI" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/blood{ - layer = 3; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"eNl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/virology) -"eNu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"eNx" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lambda-cave-mushroom" - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"eND" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"eNW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eOg" = ( -/obj/effect/decal/cleanable/flour, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"eOs" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/c) -"eOu" = ( -/obj/item/frame/table, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"ePa" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool{ - pixel_y = 7; - pixel_x = 13 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ePg" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"ePk" = ( -/obj/structure/prop/server_equipment/broken, -/turf/open/floor/greengrid, -/area/bigredv2/caves/lambda/research) -"ePu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"ePx" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_lambda) -"ePy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"eQr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/telecomm/n_cave) -"eQy" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold/small_stack, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eQC" = ( -/obj/item/tool/pickaxe/drill, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"eQG" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/c) -"eRe" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"eRq" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/filtration_plant) -"eRs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"eRD" = ( -/obj/item/trash/eat{ - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"eRS" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"eSj" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/w) -"eSl" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkgreencorners2/east, -/area/bigredv2/caves/lambda/virology) -"eSS" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/item/weapon/baseballbat, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"eSZ" = ( -/obj/structure/largecrate/random/barrel/green{ - pixel_x = -11; - pixel_y = 9 - }, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/tuxedo{ - pixel_x = -5; - pixel_y = 26 - }, -/obj/item/trash/plate{ - pixel_x = -12; - pixel_y = 22 - }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/ne) -"eTm" = ( -/obj/structure/surface/table, -/obj/item/toy/dice, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"eTo" = ( -/turf/open/mars_cave/mars_cave_22, -/area/bigredv2/caves/eta/research) -"eTE" = ( -/obj/structure/window, -/obj/structure/surface/table/woodentable, -/obj/item/newspaper, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"eTP" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/trash/plate, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"eUc" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/living) -"eUs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_x = 3; - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"eUE" = ( -/obj/item/grown/log, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"eUY" = ( -/obj/item/clothing/head/welding, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"eVf" = ( -/obj/structure/bed, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/outside/medical) -"eVj" = ( -/turf/closed/wall/solaris{ - damage = 2677; - damage_overlay = 8; - current_bulletholes = 3 - }, -/area/bigredv2/outside/medical) -"eVE" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"eVS" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"eWe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"eWm" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves/mining) -"eWo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/filtration_plant) -"eWr" = ( -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/space_port) -"eWy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/moneybag, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"eWC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Medical Clinic" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"eWI" = ( -/turf/open/floor/wood, -/area/bigredv2/outside/office_complex) -"eWK" = ( -/obj/item/ore{ - pixel_x = -4; - pixel_y = 7 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eWP" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"eWT" = ( -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/eta/storage) -"eWW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eWX" = ( -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - icon = 'icons/obj/pipes/manifold.dmi'; - icon_state = "map"; - name = "Pipe manifold" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"eXf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/gm/river/darkred, -/area/bigredv2/outside/c) -"eYa" = ( -/obj/structure/bed/bedroll{ - dir = 5 - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/item/prop/colony/usedbandage{ - dir = 4; - pixel_x = -1; - pixel_y = -4 - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"eYd" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port_lz2) -"eYH" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"eZc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"eZi" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/space_port_lz2) -"eZm" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/bigredv2/outside/filtration_cave_cas) -"eZw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"eZU" = ( -/obj/structure/closet/secure_closet/chemical, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whiteyellow/northeast, -/area/bigredv2/caves/lambda/xenobiology) -"faB" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"faI" = ( -/obj/structure/machinery/compressor{ - dir = 1 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"faQ" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/lz1_north_cas) -"faS" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"fbl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"fbr" = ( -/obj/structure/closet/secure_closet, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"fbw" = ( -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -2 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/s) -"fbB" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "crashlanding-eva" - }, -/turf/closed/wall/solaris, -/area/bigredv2/outside/bar) -"fbC" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"fbP" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/pistol/holdout, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"fbW" = ( -/obj/structure/machinery/r_n_d/organic_analyzer, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/caves/eta/research) -"fcb" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/virology) -"fcl" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"fcr" = ( -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/admin_building) -"fcN" = ( -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"fdl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/caves/eta/research) -"fdt" = ( -/obj/structure/foamed_metal, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/xenobiology) -"fdx" = ( -/obj/effect/landmark/good_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"fdy" = ( -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"fdF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/xenobiology) -"fdQ" = ( -/obj/structure/machinery/light, -/obj/item/trash/crushed_cup{ - pixel_x = -4; - pixel_y = -7 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"fdR" = ( -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"fdT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"fea" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/lz2_south_cas) -"feL" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"feZ" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/virology) -"ffb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/se) -"ffl" = ( -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = -7 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"ffm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/paper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"ffN" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"ffO" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"fga" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"fgo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"fgs" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"fgv" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"fgw" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"fgU" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/w) -"fhz" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Recreation" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"fhH" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"fhR" = ( -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"fil" = ( -/obj/item/explosive/grenade/custom/antiweed, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"fin" = ( -/turf/open/floor/plating, -/area/bigredv2/caves/eta/xenobiology) -"fiB" = ( -/obj/item/clothing/gloves/latex{ - pixel_y = 5; - pixel_x = 12 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"fiR" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"fiT" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"fja" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/caves_lambda) -"fjd" = ( -/obj/structure/bed, -/obj/item/prop/colony/usedbandage{ - dir = 9; - pixel_x = 5; - pixel_y = 15 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"fjq" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"fjw" = ( -/obj/item/ammo_casing/bullet, -/obj/item/ammo_casing/bullet, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"fjG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/marshal_office) -"fjI" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/waffles, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"fjS" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/w) -"fjT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"fkh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/e) -"fkG" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"fkJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkredcorners2, -/area/bigredv2/outside/admin_building) -"fkN" = ( -/turf/open/floor/purple/northeast, -/area/bigredv2/caves/lambda/research) -"fkU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_lambda) -"fkV" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"fla" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/medium, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -7 - }, -/obj/item/reagent_container/food/drinks/coffee, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 7 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"flf" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 - }, -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"fls" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"fme" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dormitories Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"fmy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"fmI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"fmJ" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 - }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"fmP" = ( -/obj/structure/surface/table, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_color = "blue"; - phone_id = "Space Port" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"fmR" = ( -/obj/structure/machinery/mill, -/turf/open/floor/whitegreen/north, -/area/bigredv2/caves/lambda/xenobiology) -"fnm" = ( -/obj/structure/platform_decoration/shiva{ - dir = 1 - }, -/obj/structure/platform_decoration/shiva{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"fnr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 14 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"fnv" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"fnL" = ( -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"fnX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/effect/landmark/static_comms/net_two{ - broken_on_spawn = 1 - }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/engineering) -"fnZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/storage) -"fob" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/xenobiology) -"foQ" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/ne) -"fpa" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 - }, -/turf/closed/wall/wood, -/area/bigredv2/caves/mining) -"fpY" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_east) -"fqa" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"fqh" = ( -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/eta/xenobiology) -"frk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"frs" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/outside/n) -"frI" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_4" - }, -/turf/open/mars, -/area/bigredv2/outside/nw) -"frS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/twohanded/fireaxe, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"frY" = ( -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/mars, -/area/bigredv2/outside/c) -"fsd" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves/mining) -"ftf" = ( -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 32 - }, -/obj/structure/machinery/door_control{ - id = "Bar Complex"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"ftj" = ( -/obj/structure/prop/wooden_cross, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/nw) -"fub" = ( -/turf/open/floor/whitegreencorner/east, -/area/bigredv2/caves/lambda/xenobiology) -"fui" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"fut" = ( -/obj/item/toy/plush/bee, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"fuA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/s) -"fuR" = ( -/obj/item/trash/uscm_mre, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"fuU" = ( -/obj/structure/tunnel{ - id = "hole1" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"fvn" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"fvI" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/nw) -"fvN" = ( -/obj/item/trash/burger, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"fvR" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/ashtray/bronze, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"fvW" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"fww" = ( -/obj/structure/barricade/metal{ - dir = 1 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"fwB" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/virology) -"fwV" = ( -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/caves) -"fxa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"fxg" = ( -/obj/item/ore{ - pixel_x = 13; - pixel_y = 12 - }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"fxm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/se) -"fxs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5; - pixel_x = -1 - }, -/turf/open/floor/red/east, -/area/bigredv2/outside/marshal_office) -"fxB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/e) -"fxE" = ( -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/lambda/virology) -"fxF" = ( -/obj/structure/filingcabinet/security, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"fyb" = ( -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/se) -"fyt" = ( -/obj/effect/acid_hole, -/turf/closed/wall/solaris, -/area/bigredv2/outside/medical) -"fzb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"fzc" = ( -/obj/item/storage/firstaid/o2/empty{ - pixel_y = 4; - pixel_x = -11 - }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"fzl" = ( -/turf/open/asphalt/cement, -/area/bigredv2/outside/filtration_cave_cas) -"fzQ" = ( -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"fAf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"fAi" = ( -/obj/structure/xenoautopsy/tank, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"fAo" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"fAw" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/nw) -"fAG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/space_port) -"fBa" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"fBc" = ( -/obj/structure/pipes/standard/tank/phoron, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"fBm" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"fBw" = ( -/obj/structure/dispenser/oxygen, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"fBx" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"fBP" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"fCb" = ( -/turf/open/floor, -/area/bigredv2/outside/filtration_cave_cas) -"fCh" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"fCl" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port_lz2) -"fDj" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"fDk" = ( -/turf/open/mars_cave/mars_cave_22, -/area/bigredv2/caves/eta/xenobiology) -"fDo" = ( -/obj/item/bedsheet/brown{ - pixel_y = -1; - pixel_x = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"fDE" = ( -/obj/item/ore{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"fDG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/snack, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"fEb" = ( -/turf/closed/wall/solaris{ - damage = 1000; - damage_overlay = 3 - }, -/area/bigredv2/outside/office_complex) -"fEf" = ( -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"fEi" = ( -/obj/structure/machinery/iv_drip, -/obj/effect/landmark/corpsespawner/chef, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"fEp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"fEz" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"fEM" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/alien_embryo{ - pixel_x = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"fEX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"fEY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"fFi" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"fFs" = ( -/obj/effect/decal/cleanable/mucus, -/obj/structure/machinery/door_control{ - id = "sci_br"; - name = "Observation Shutters"; - pixel_y = 28 - }, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"fFy" = ( -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"fGl" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/s) -"fGp" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"fGD" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/northwest, -/area/bigredv2/caves/eta/research) -"fGP" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"fGQ" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port_lz2) -"fHk" = ( -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/obj/structure/surface/table, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"fHI" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"fHW" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"fIc" = ( -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/research) -"fIj" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"fIl" = ( -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_4" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"fIp" = ( -/obj/structure/sign/safety/galley{ - pixel_x = -32 - }, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"fIx" = ( -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"fIy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"fIW" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/library) -"fJf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"fJk" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_research) -"fKt" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/raisins{ - pixel_x = 9; - pixel_y = 11 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"fKP" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"fKT" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_se) -"fKU" = ( -/turf/open/floor/whitepurple/east, -/area/bigredv2/caves/lambda/xenobiology) -"fLx" = ( -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"fLE" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement/cement12, -/area/bigredv2/outside/space_port) -"fMc" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"fMs" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"fMx" = ( -/obj/item/trash/popcorn, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/virology) -"fMC" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/filtration_cave_cas) -"fML" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"fMQ" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"fNf" = ( -/obj/item/stack/rods{ - pixel_y = 13; - pixel_x = 17 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"fNs" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_lambda) -"fNt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"fNM" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/obj/item/trash/cigbutt{ - pixel_x = 7 - }, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves/mining) -"fNR" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"fOI" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"fOM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"fOP" = ( -/obj/item/trash/chips{ - pixel_y = 4; - pixel_x = -8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"fPj" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"fPk" = ( -/obj/item/folder/yellow, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"fPB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"fQj" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/prop/helmetgarb/spent_buckshot{ - pixel_x = 9; - pixel_y = -10 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"fQB" = ( -/turf/open/floor/purplecorner/west, -/area/bigredv2/caves/lambda/research) -"fQI" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"fQJ" = ( -/obj/item/device/flashlight, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"fQZ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"fRa" = ( -/obj/structure/machinery/computer3/server, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"fRr" = ( -/obj/structure/largecrate/random/barrel/true_random, -/turf/open/floor/plating/platebotc, -/area/bigredv2/outside/space_port) -"fRt" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_y = -7; - pixel_x = -7 - }, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"fRu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/c) -"fRZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/w) -"fSa" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/eta) -"fSm" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_lambda) -"fSr" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_sw) -"fSs" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/mars, -/area/bigredv2/outside/se) -"fSA" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/mars, -/area/bigredv2/outside/e) -"fSF" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating/platingdmg1, -/area/bigredv2/outside/office_complex) -"fSW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"fTi" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"fTk" = ( -/obj/structure/largecrate/random/mini{ - pixel_x = -8; - pixel_y = -7; - layer = 2.9 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"fTn" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/e) -"fUh" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"fUo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"fUE" = ( -/obj/structure/machinery/compressor{ - dir = 1 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"fUL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_lambda) -"fVc" = ( -/obj/effect/spawner/random/tool{ - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"fVn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/bigredv2/caves_lambda) -"fVt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"fVI" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"fVP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"fWj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/bigredv2/outside/virology) -"fWM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/item/weapon/gun/pistol/holdout{ - pixel_x = 9; - pixel_y = 18 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"fXa" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/c) -"fXj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"fXo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"fXz" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"fXE" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"fXG" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/nw) -"fXS" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/obj/effect/landmark/queen_spawn, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"fYC" = ( -/turf/open/floor/plating/platebotc, -/area/bigredv2/outside/space_port) -"fYH" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/caves/mining) -"fYO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper General Store Maintenance" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_store) -"fYW" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves/lambda/research) -"fZd" = ( -/obj/structure/transmitter/colony_net{ - dir = 4; - do_not_disturb = 1; - phone_category = "Lambda Labs"; - phone_color = "red"; - phone_id = "Director's Safe Room"; - pixel_x = -18 - }, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"fZt" = ( -/obj/item/shard, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/n) -"fZz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"fZO" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"gaa" = ( -/obj/structure/machinery/door_control{ - id = "General Store"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"gaf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement, -/area/bigredv2/caves_lambda) -"gam" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/mars, -/area/bigredv2/outside/c) -"gay" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/crushed_cup{ - pixel_x = 7; - pixel_y = -5 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"gaz" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"gaG" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/eta) -"gaN" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"gaO" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"gaV" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/filtration_plant) -"gba" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"gbn" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/warnplate, -/area/bigredv2/caves/lambda/xenobiology) -"gbG" = ( -/obj/structure/window_frame/solaris, -/obj/structure/curtain, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"gbH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"gbL" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"gbO" = ( -/obj/effect/decal/cleanable/dirt{ - pixel_x = 17 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"gbS" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"gbV" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"gcm" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/bigredv2/outside/nw) -"gcs" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_west_cas) -"gcB" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"gcU" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"gda" = ( -/turf/open/mars_cave, -/area/bigredv2/outside/lz1_telecomm_cas) -"gde" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"gdh" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/nw) -"gdq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"gdN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars, -/area/bigredv2/caves/eta/xenobiology) -"gdU" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"ged" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"geh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"gei" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/turf/open/floor/warnwhite, -/area/bigredv2/outside/office_complex) -"gem" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/eta) -"gen" = ( -/obj/structure/machinery/light, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"gep" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 16 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/s) -"gey" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves_lambda) -"geK" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"gfn" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_sw) -"gfv" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"gfI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"gfK" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz2_west_cas) -"gfL" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/ne) -"gfO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engine Reactor Control" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"ggh" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port_lz2) -"ggG" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"ggP" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"ghn" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"ghB" = ( -/obj/structure/surface/rack, -/obj/item/weapon/twohanded/lungemine{ - pixel_y = 8 - }, -/obj/item/weapon/twohanded/lungemine{ - pixel_y = -7 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ghD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/caves/lambda/virology) -"gif" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/trash/uscm_mre{ - pixel_y = 13; - pixel_x = 6 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"gio" = ( -/turf/open/mars_cave, -/area/bigredv2/outside/filtration_cave_cas) -"giB" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave, -/area/bigredv2/caves_sw) -"giM" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_north) -"gjv" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"gjI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"gjO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/barricade/wooden{ - dir = 8; - pixel_y = -5; - pixel_x = -9 - }, -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"gkk" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/mars, -/area/bigredv2/outside/c) -"gkl" = ( -/obj/item/folder/yellow, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"gkK" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"gkX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal{ - pixel_x = 1; - pixel_y = -2 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"glq" = ( -/obj/structure/bed, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"gly" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"glB" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/lz2_south_cas) -"glI" = ( -/obj/item/paper{ - info = "god save us, I take this end over that at the hands of those monsters"; - name = "scribbled note" - }, -/obj/item/tool/pen{ - pixel_x = 10; - pixel_y = 14 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"gmc" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/radio{ - pixel_x = 10 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ - pixel_y = 1; - pixel_x = -6 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"gmi" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/n) -"gmj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"gmm" = ( -/obj/structure/window/framed/solaris, -/obj/effect/decal/cleanable/molten_item, -/obj/structure/machinery/door/poddoor/almayer{ - id = "rad_door"; - name = "\improper Radiation Shielding" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"gmq" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"gmy" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port) -"gmD" = ( -/obj/item/ore{ - pixel_x = -1 - }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"gmM" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"gmW" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"gmZ" = ( -/obj/item/clothing/under/darkred, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"gnj" = ( -/obj/structure/platform_decoration/shiva{ - dir = 1 - }, -/obj/structure/platform_decoration/shiva{ - dir = 4 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/stack/cable_coil/random, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"gnk" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/se) -"gnl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/item/stack/rods{ - pixel_y = 13; - pixel_x = 17 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/bigredv2/outside/nw) -"gnm" = ( -/obj/structure/surface/table, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"gnr" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/mars, -/area/bigredv2/outside/ne) -"gnX" = ( -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -10; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"gob" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"gof" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/telecomm/lz2_cave) -"goh" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/n) -"goi" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_research) -"goq" = ( -/obj/structure/machinery/deployable/barrier, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Operations" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"goz" = ( -/obj/structure/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"goB" = ( -/obj/structure/machinery/light/built{ - dir = 8 - }, -/obj/structure/pipes/vents/scrubber/on{ - dir = 4 - }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/xenobiology) -"goC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/lighter/random{ - pixel_x = -9; - pixel_y = 2 - }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"goM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"goS" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Lambda Checkpoint" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) -"goY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/warnplate/northeast, -/area/bigredv2/caves/lambda/xenobiology) -"gpg" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_east) -"gph" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/c) -"gpl" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"gpR" = ( -/turf/open/gm/river, -/area/bigredv2/outside/c) -"gqf" = ( -/obj/item/ore{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"gqm" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/se) -"gqH" = ( -/obj/structure/machinery/computer/med_data{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"gqP" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_2, -/area/space) -"gqQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/s) -"gqS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"grb" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/outside/nw) -"gri" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "containerroom_xenos" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/nw/ceiling) -"grn" = ( -/obj/item/shard, -/obj/item/stack/sheet/wood{ - layer = 2.7; - pixel_y = 8 - }, -/turf/open/floor/whiteblue/northwest, -/area/bigredv2/outside/medical) -"grq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"gsA" = ( -/obj/structure/machinery/smartfridge/secure/virology, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"gsZ" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/c) -"gtd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Eta Lab Dormitories" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"gti" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/item/restraint/handcuffs, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"gtt" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"gtw" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"gtO" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 - }, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"gtX" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_se) -"gtY" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"gue" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"guF" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/e) -"guH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"guZ" = ( -/obj/structure/machinery/power/port_gen/pacman, -/obj/effect/decal/warning_stripes{ - icon_state = "U-N" - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"gva" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"gvx" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"gvG" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"gvK" = ( -/obj/item/prop/colony/canister{ - pixel_y = -10 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/nw) -"gvQ" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/binoculars, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"gvX" = ( -/obj/item/reagent_container/pill/happy, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"gwe" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars/mars_dirt_6, -/area/bigredv2/outside/w) -"gwh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"gww" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_north) -"gwZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkred2, -/area/bigredv2/caves/eta/research) -"gxn" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"gxM" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"gyb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/e) -"gyc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/bar) -"gyt" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"gyx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/e) -"gyM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 8; - name = "\improper Abandoned Mining Storage" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"gyV" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"gzl" = ( -/obj/structure/bed/stool, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"gzo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/breakroom) -"gzu" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 7 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -5 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -3; - pixel_y = 16 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"gzA" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"gzU" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper General Store" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_store) -"gAz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"gAE" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -9 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"gAK" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "chapel_cult" - }, -/turf/closed/wall/solaris, -/area/bigredv2/outside/chapel) -"gBi" = ( -/obj/item/trash/pistachios{ - pixel_x = -11; - pixel_y = -9 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"gBp" = ( -/obj/structure/machinery/conveyor{ - id = "anomalybelt" - }, -/turf/open/floor/purple/north, -/area/bigredv2/caves/lambda/research) -"gBx" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/bed, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"gBA" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"gBT" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"gCa" = ( -/turf/open/floor/chapel/north, -/area/bigredv2/outside/chapel) -"gCc" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/outside/lz2_south_cas) -"gCf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"gCC" = ( -/obj/structure/closet/secure_closet, -/obj/item/explosive/plastic{ - desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; - name = "Mining explosives" - }, -/obj/item/explosive/plastic{ - desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; - name = "Mining explosives" - }, -/obj/item/explosive/plastic{ - desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; - name = "Mining explosives" - }, -/obj/item/explosive/plastic{ - desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; - name = "Mining explosives" - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"gCF" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"gCL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/cardboard{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/reagent_container/food/drinks/bottle/beer/craft{ - pixel_x = 7; - pixel_y = -7 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"gDc" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/c) -"gDk" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-interior"; - name = "Lambda Checkpoint Interior" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/lambda_cave_cas) -"gDz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"gEp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"gEw" = ( -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/telecomm/n_cave) -"gES" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/pen, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"gEW" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/space_port_lz2) -"gFb" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 27; - pixel_y = 9 - }, -/turf/closed/wall/solaris, -/area/bigredv2/outside/bar) -"gFd" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"gFt" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/e) -"gFH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"gFY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"gGf" = ( -/turf/open/floor/darkgreencorners2/east, -/area/bigredv2/caves/eta/storage) -"gGq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"gGB" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"gGP" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"gGT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Lockers" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"gGY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"gHo" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_research) -"gHv" = ( -/obj/structure/machinery/light, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"gHG" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"gHQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"gHT" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "filtration_restored" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/s) -"gIA" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/living) -"gIF" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"gIL" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement/cement12, -/area/bigredv2/caves_lambda) -"gIQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"gJk" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; - name = "\improper Eta Lab Decontamination" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"gJq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/rack, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"gJw" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave, -/area/bigredv2/caves_virology) -"gJx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"gJF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/research) -"gJG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"gJT" = ( -/obj/structure/inflatable/door, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"gKc" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port) -"gKr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_east) -"gKE" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/lz2_south_cas) -"gKH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"gKI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -9 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/c) -"gKV" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/e) -"gKZ" = ( -/obj/structure/closet/bodybag, -/obj/structure/bed/bedroll{ - dir = 10 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"gLk" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/mars, -/area/bigredv2/outside/filtration_plant) -"gLw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Surgery" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"gLB" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_2, -/area/space) -"gLM" = ( -/obj/structure/fence, -/turf/open/asphalt/cement, -/area/bigredv2/outside/filtration_cave_cas) -"gLV" = ( -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/research) -"gMc" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"gMd" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, -/turf/open/floor/whiteblue/southeast, -/area/bigredv2/outside/medical) -"gMg" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"gMi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"gMw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/item/shard{ - icon_state = "small" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"gMC" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"gMD" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"gMG" = ( -/obj/structure/closet/crate, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"gMJ" = ( -/obj/structure/disposalpipe/junction, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"gMQ" = ( -/obj/item/prop/helmetgarb/rosary{ - pixel_y = 7; - pixel_x = 12 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"gNt" = ( -/obj/structure/prop/dam/truck/damaged, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"gNH" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves) -"gNN" = ( -/obj/structure/flora/grass/desert/lightgrass_10, -/turf/open/mars, -/area/bigredv2/outside/c) -"gNP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "U-S" - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"gNQ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"gNY" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"gOK" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/darkblue2/southeast, -/area/bigredv2/outside/admin_building) -"gOO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"gPl" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/zippo, -/obj/item/tool/lighter/zippo, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"gPx" = ( -/obj/structure/closet/l3closet/scientist, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"gQc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/door_control{ - id = "Medical"; - name = "Storm Shutters"; - pixel_y = 32 - }, -/obj/structure/bed, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"gQf" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_north) -"gQi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"gQj" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"gQq" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 - }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"gQD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"gQS" = ( -/obj/item/device/analyzer, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"gQT" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"gRd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"gRo" = ( -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/outside/engineering) -"gRC" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"gRE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"gRO" = ( -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"gRX" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/donkpocket, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"gRY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Chapel" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/chapel) -"gSz" = ( -/obj/structure/girder/reinforced, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves/lambda/research) -"gSB" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8 - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"gSV" = ( -/obj/structure/surface/table, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"gSZ" = ( -/obj/item/trash/kepler{ - pixel_y = 14; - pixel_x = 15 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"gTa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/ne) -"gTh" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/whitepurple/east, -/area/bigredv2/caves/lambda/xenobiology) -"gTx" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"gTB" = ( -/obj/item/stack/sheet/metal{ - pixel_x = 4; - pixel_y = -9 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"gTG" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"gTJ" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"gUa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"gUy" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"gUF" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"gVn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/xenobiology) -"gVz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"gVJ" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/ne) -"gVK" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"gVZ" = ( -/obj/structure/showcase{ - icon = 'icons/obj/structures/machinery/research.dmi'; - icon_state = "d_analyzer_la" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"gWf" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/c) -"gWk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"gWl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-in" - }, -/turf/open/floor/plating/platebotc, -/area/bigredv2/outside/space_port) -"gWv" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "eta_carp" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/eta/xenobiology) -"gWD" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/space_port_lz2) -"gWN" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"gXQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/caves/eta/living) -"gYj" = ( -/obj/item/shard, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"gYr" = ( -/turf/open/floor/darkred2/southwest, -/area/bigredv2/outside/admin_building) -"gYK" = ( -/obj/structure/surface/table, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag{ - pixel_y = 5; - pixel_x = -5 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"gYM" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Xenobiology" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"gYY" = ( -/obj/structure/largecrate, -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"gZe" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Machine room" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"gZq" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"hae" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/e) -"han" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/c) -"hbk" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/nw) -"hbu" = ( -/obj/structure/barricade/wooden{ - dir = 8; - pixel_y = 12; - pixel_x = 2 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"hbz" = ( -/turf/open/mars/mars_dirt_6, -/area/bigredv2/outside/nw) -"hbB" = ( -/turf/open/floor/darkpurplecorners2/west, -/area/bigredv2/caves/lambda/xenobiology) -"hbG" = ( -/obj/structure/surface/table, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"hbK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/virology) -"hbR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"hbS" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"hbU" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/e) -"hcg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1; - name = "\improper Engineering Workshop" - }, -/turf/open/floor/delivery, -/area/bigred/ground/garage_workshop) -"hcm" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"hcF" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"hcK" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/door_control{ - id = "tcomms"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"hcL" = ( -/obj/item/ammo_magazine/pistol/b92fs, -/obj/item/weapon/gun/pistol/b92fs{ - pixel_x = 13; - pixel_y = -7 - }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"hcN" = ( -/turf/open/floor/whitepurple/southeast, -/area/bigredv2/caves/lambda/research) -"hcO" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/machinery/door/window, -/obj/structure/window/reinforced, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"hcQ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"hda" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Abandoned Mining Storage" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hdf" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/red/northeast, -/area/bigredv2/outside/marshal_office) -"hdo" = ( -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - pixel_x = -2; - pixel_y = 10 - }, -/obj/item/prop/colony/usedbandage, -/obj/item/prop/colony/usedbandage{ - dir = 4; - pixel_x = 5; - pixel_y = 26 - }, -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/ash{ - pixel_y = 19 - }, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/nw) -"hdD" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) -"hdK" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_color = "green"; - phone_id = "Virology Lab" - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"hdN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"hez" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/c) -"heW" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"hfp" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves_north) -"hfA" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/eta) -"hgb" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"hgl" = ( -/obj/item/stack/rods{ - pixel_x = -11; - pixel_y = -8 - }, -/obj/item/stack/rods{ - pixel_y = 13; - pixel_x = 17 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"hgs" = ( -/obj/item/ore{ - pixel_x = 9; - pixel_y = -4 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"hgy" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"hgB" = ( -/turf/open/floor/darkred2/southeast, -/area/bigredv2/caves/eta/xenobiology) -"hgZ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"hhy" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"hhz" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"hhT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/outside/engineering) -"his" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -6; - pixel_y = -4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"hit" = ( -/obj/structure/surface/table, -/obj/structure/window, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"hiz" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"hiP" = ( -/obj/structure/sign/safety/one{ - pixel_x = 16 - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"hjJ" = ( -/obj/item/trash/cigbutt{ - pixel_x = -14; - pixel_y = -6 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"hjK" = ( -/obj/structure/foamed_metal, -/turf/open/floor/whiteyellow/southwest, -/area/bigredv2/caves/lambda/xenobiology) -"hka" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 7 - }, -/turf/open/mars/mars_dirt_5, -/area/bigredv2/outside/nw) -"hkj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_research) -"hkq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"hkv" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"hkO" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/caves_lambda) -"hkS" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"hlw" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"hlA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"hlR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/turf/open/floor/plating/platebot, -/area/bigredv2/outside/space_port) -"hlW" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -5; - pixel_y = 10 - }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"hmf" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"hmo" = ( -/obj/item/weapon/gun/smg/m39, -/obj/structure/closet/secure_closet/guncabinet/wy, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"hmx" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"hmz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"hmA" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"hmI" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/n) -"hmJ" = ( -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"hmN" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/mars, -/area/bigredv2/outside/virology) -"hmQ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves/eta/research) -"hno" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"hns" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"hnt" = ( -/obj/item/device/healthanalyzer{ - pixel_x = 3; - pixel_y = 8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"hnJ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"hnM" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/chapel, -/area/bigredv2/outside/chapel) -"hoq" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Control Module"; - pixel_y = 13 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"hoD" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/thirteenloko{ - pixel_x = -5 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/reagent_container/food/drinks/cans/thirteenloko{ - pixel_x = 1 - }, -/obj/item/reagent_container/food/drinks/cans/thirteenloko{ - pixel_x = 7 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"hoL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-in" - }, -/turf/open/floor/plating/platebot, -/area/bigredv2/outside/space_port) -"hoS" = ( -/obj/structure/machinery/light/built, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"hpr" = ( -/obj/item/trash/eat{ - pixel_x = 12; - pixel_y = -13 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"hpt" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"hpX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/eat{ - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"hqk" = ( -/turf/open/floor/plating/platebot, -/area/bigredv2/outside/space_port) -"hqp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/se) -"hqO" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars, -/area/bigredv2/caves_north) -"hrg" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/lambda_cave_cas) -"hri" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"hrC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"hrK" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/item/ammo_casing/bullet, -/obj/item/ammo_casing/bullet, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"hsm" = ( -/obj/structure/surface/table, -/obj/item/toy/prize/ripley, -/obj/item/toy/prize/mauler, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"hsI" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/s) -"hsM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office"; - welded = 1 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"htk" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"htt" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"htx" = ( -/obj/item/stack/sheet/metal{ - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/space_port) -"hty" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"htQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Cargo Bay Security" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"htZ" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/se) -"huc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ - pixel_y = 9; - pixel_x = -15 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"huq" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/s) -"huP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"hve" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"hvi" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/s) -"hvA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"hvB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/wetleather, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hvQ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"hvZ" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "eta"; - name = "Eta Lockdown" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/lz2_south_cas) -"hwC" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port_lz2) -"hwL" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"hwO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"hwP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"hxa" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz2_west_cas) -"hxd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/clothing/suit/armor/riot{ - pixel_y = -9; - pixel_x = -12 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"hxh" = ( -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/lambda/xenobiology) -"hxj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"hxk" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/outside/lz2_south_cas) -"hxF" = ( -/obj/structure/machinery/lapvend, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"hxR" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"hxY" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 16 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"hxZ" = ( -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"hyo" = ( -/obj/item/ore{ - pixel_x = 9 - }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"hyE" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 18; - pixel_y = 11 - }, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 10; - pixel_y = 2 - }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"hyN" = ( -/obj/item/folder/yellow, -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"hyR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/bigredv2/outside/lambda_cave_cas) -"hze" = ( -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"hzy" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"hzz" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"hzE" = ( -/obj/structure/girder, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/medical) -"hzT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1/north, -/area/bigredv2/outside/space_port) -"hzX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/engineering) -"hAf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/caves/eta/research) -"hAj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave, -/area/bigredv2/caves_research) -"hAO" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hBe" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"hBk" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"hBn" = ( -/obj/structure/bed/bedroll{ - dir = 10 - }, -/obj/item/weapon/baseballbat{ - pixel_x = -17; - pixel_y = 10 - }, -/obj/item/prop/colony/usedbandage{ - dir = 9; - pixel_x = 5; - pixel_y = 15 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"hBs" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"hBw" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) -"hBy" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/e) -"hBD" = ( -/obj/structure/bed/chair, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"hBL" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_id = "Clinic Reception"; - pixel_y = 9; - pixel_x = 6 - }, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"hBT" = ( -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/outside/admin_building) -"hCc" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Register" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"hCf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hCj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"hCs" = ( -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"hCE" = ( -/obj/item/device/mass_spectrometer/adv, -/obj/structure/foamed_metal, -/turf/open/floor/whiteyellow, -/area/bigredv2/caves/lambda/xenobiology) -"hCU" = ( -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"hDg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"hDh" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Lambda Lab Maintenance Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"hDF" = ( -/obj/structure/cryofeed, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/outside/filtration_plant) -"hDP" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_research) -"hDT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"hDY" = ( -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 7; - pixel_y = -6 - }, -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/s) -"hEm" = ( -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -9 - }, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/space_port) -"hEw" = ( -/obj/structure/largecrate/cow, -/turf/open/floor/bot, -/area/bigredv2/caves/eta/storage) -"hEy" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"hEC" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/bigredv2/outside/lz2_south_cas) -"hED" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "4-10" - }, -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hEI" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4; - layer = 2.9; - pixel_x = 4 - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"hEU" = ( -/obj/structure/bed/chair{ - dir = 4; - layer = 3.06 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/ne) -"hEY" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/mars, -/area/bigredv2/outside/c) -"hFa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"hFj" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/tool/hatchet{ - pixel_x = -6; - pixel_y = -9 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/marshal_office) -"hFk" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port) -"hFm" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_research) -"hFr" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves_sw) -"hFN" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"hGe" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"hGn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"hGx" = ( -/obj/structure/fence, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"hGy" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/se) -"hGN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/bigredv2/caves_lambda) -"hGQ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) -"hHb" = ( -/obj/structure/sign/safety/ladder, -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/oob) -"hHp" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/mars, -/area/bigredv2/outside/nw) -"hHC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/red/southwest, -/area/bigredv2/outside/lambda_cave_cas) -"hHF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"hHG" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"hHI" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/c) -"hHO" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/filtration_plant) -"hIj" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/wy_mre, -/obj/item/storage/box/donkpockets{ - pixel_x = 6; - pixel_y = 8 - }, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/virology) -"hIC" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"hID" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_north) -"hII" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/explosive/grenade/high_explosive/frag{ - desc = "High-Explosive Fragmenting-Antipersonnel. A small, but deceptively strong fragmentation grenade that has been phasing out the M15 fragmentation grenades alongside the M40 HEDP. Capable of being loaded in the M92 Launcher, or thrown by hand. This one seems to have weird insciptions all over it. You can barely make out 'PrAIs3 thE H3f@ G0d'" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hIK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"hIV" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"hJf" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/telecomm) -"hJQ" = ( -/turf/open/mars/mars_dirt_6, -/area/bigredv2/outside/space_port_lz2) -"hJS" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"hKi" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 1 - }, -/obj/item/reagent_container/food/drinks/cans/aspen{ - pixel_x = -7 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/reagent_container/food/drinks/cans/tonic{ - pixel_x = 7 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"hLa" = ( -/obj/effect/decal/strata_decals/grime/grime1, -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"hLp" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/mars_cave, -/area/bigredv2/caves/mining) -"hLw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves/eta/research) -"hLC" = ( -/obj/structure/coatrack{ - pixel_x = -8; - pixel_y = 16 - }, -/obj/item/clothing/shoes/black{ - pixel_y = -7 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"hLD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"hLS" = ( -/obj/structure/sign/poster/safety, -/turf/closed/wall/wood, -/area/bigredv2/caves/mining) -"hMt" = ( -/obj/effect/landmark/good_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"hMz" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"hMA" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - icon = 'icons/obj/pipes/manifold.dmi'; - icon_state = "map"; - name = "Pipe manifold" - }, -/obj/structure/cable{ - icon_state = "2-9" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hMC" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_research) -"hMU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) -"hMV" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"hMX" = ( -/obj/structure/morgue{ - dir = 2 - }, -/turf/open/floor/whiteblue/northwest, -/area/bigredv2/outside/medical) -"hNc" = ( -/obj/structure/bed/roller, -/obj/structure/closet/bodybag, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"hNf" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"hNs" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 13 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hNt" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hND" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"hOa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigred/ground/garage_workshop) -"hOy" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"hOA" = ( -/obj/structure/surface/table/reinforced, -/obj/item/trash/waffles, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"hOB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"hOQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/hotdog, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"hOU" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/weapon/gun/pistol/mod88, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/admin_building) -"hOV" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/item/weapon/gun/revolver/cmb{ - pixel_x = 7; - pixel_y = -13 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/item/explosive/grenade/high_explosive{ - pixel_x = -11; - pixel_y = 17 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"hPg" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"hPo" = ( -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 - }, -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Lambda Labs"; - phone_id = "Virology" - }, -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/caves/lambda/virology) -"hPW" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"hQa" = ( -/obj/structure/surface/table, -/obj/item/trash/semki, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"hQk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/caves/lambda/virology) -"hQI" = ( -/obj/structure/machinery/chem_master, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"hQR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"hRb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"hRi" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/window{ - dir = 8 - }, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"hRq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/reaper, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/reaper{ - pixel_y = 8; - pixel_x = 17 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"hRr" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/eta) -"hRx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"hRH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"hRL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) -"hRW" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"hSf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/se) -"hSk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/caves/lambda/virology) -"hSq" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/grown/log, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"hTk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/lambda/virology) -"hTn" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"hTw" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/xenobiology) -"hTB" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"hTL" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_virology) -"hUr" = ( -/obj/structure/surface/table/reinforced, -/obj/item/trash/plate, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"hUR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/outside/space_port) -"hUS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/hefa_cult_decals/d96, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hVc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"hVz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"hVN" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"hWd" = ( -/obj/item/clothing/mask/gas{ - pixel_y = 9 - }, -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"hWg" = ( -/obj/structure/morgue{ - dir = 1 - }, -/turf/open/floor/whiteblue, -/area/bigredv2/outside/medical) -"hWk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"hWm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/caves/eta/research) -"hWu" = ( -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_y = 8; - pixel_x = 13 - }, -/obj/item/reagent_container/food/drinks/cup, -/obj/effect/decal/cleanable/generic, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/nw) -"hXk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"hXo" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/bigredv2/outside/virology) -"hXp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/red, -/area/bigredv2/outside/lambda_cave_cas) -"hXr" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"hXI" = ( -/turf/open/floor/whitepurple/north, -/area/bigredv2/caves/lambda/research) -"hXJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Greenhouse Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/library) -"hYe" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"hYg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/eta/research) -"hYm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"hYs" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"hYu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"hYB" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"hYD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"hYL" = ( -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"hYR" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_research) -"hZb" = ( -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_4" - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_plant) -"hZl" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 3; - pixel_y = 15 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"hZn" = ( -/turf/open/floor/carpet13_5/west, -/area/bigredv2/outside/bar) -"hZv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"hZw" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/lz2_south_cas) -"hZx" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/woodentable, -/obj/structure/window{ - dir = 8 - }, -/obj/structure/machinery/door_control{ - id = "Library"; - name = "Storm Shutters" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"hZB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"hZL" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves/mining) -"hZU" = ( -/obj/structure/surface/table/woodentable{ - dir = 4; - flipped = 1 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"hZZ" = ( -/obj/structure/machinery/vending/snack{ - icon_state = "snack-broken"; - stat = 1 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"iac" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"ian" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/door_control{ - id = "Cargonia"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"iaq" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_se) -"iaC" = ( -/obj/structure/platform, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"iaF" = ( -/obj/structure/barricade/wooden, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"iaJ" = ( -/obj/structure/girder, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"iaM" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"iaN" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"iaR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"iaV" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"ibl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_plant) -"ibF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"ibN" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/mars, -/area/bigredv2/outside/e) -"ibO" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/panelscorched, -/area/bigredv2/outside/engineering) -"ibP" = ( -/turf/open/floor/plating, -/area/bigredv2/caves_research) -"ici" = ( -/obj/structure/bed, -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"icJ" = ( -/obj/structure/bed/stool, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"icO" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"icW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"idd" = ( -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/filtration_cave_cas) -"idq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"ieJ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ - pixel_y = 6; - pixel_x = 16 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"ieW" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/mars, -/area/bigredv2/outside/c) -"ifc" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"ifh" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"ifO" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/virology) -"igf" = ( -/obj/structure/machinery/light, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"igh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"igj" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"igu" = ( -/turf/closed/wall/solaris{ - damage = 1870; - damage_overlay = 5 - }, -/area/bigredv2/outside/office_complex) -"igz" = ( -/obj/structure/machinery/vending/coffee{ - icon_state = "coffee-broken"; - stat = 1 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"igO" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"igW" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"ihw" = ( -/obj/item/ore{ - pixel_x = 9; - pixel_y = 2 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"iig" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"iim" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"iiq" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/recharger, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"iiw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"iiE" = ( -/obj/structure/pipes/vents/scrubber/on, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/xenobiology) -"iiG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"iiL" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/regular{ - pixel_y = 3; - pixel_x = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ija" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"ijc" = ( -/obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/turf/open/floor/plating/platebot, -/area/bigredv2/outside/space_port) -"ijg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/se) -"iji" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/storage) -"ijl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Medical Clinic" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"ijy" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"ijZ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"ikd" = ( -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"ikk" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/s) -"ikv" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"ikx" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/e) -"iky" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/nw) -"ikJ" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/sw) -"ikM" = ( -/obj/item/stack/folding_barricade, -/turf/open/mars, -/area/bigredv2/outside/c) -"ikW" = ( -/turf/open/mars_cave/mars_cave_4, -/area/bigredv2/caves_lambda) -"ikZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"ila" = ( -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"ilv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/defibrillator{ - pixel_x = 6; - pixel_y = 12 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ima" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/darkgreencorners2/east, -/area/bigredv2/caves/lambda/virology) -"imi" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/se) -"imj" = ( -/turf/open/floor/whitegreencorner/east, -/area/bigredv2/outside/medical) -"imA" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"imN" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/mars, -/area/bigredv2/outside/e) -"imP" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Lambda Lab Chemistry Lab" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"imZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/crowbar{ - pixel_x = -13 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"ino" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/research) -"inE" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"ior" = ( -/obj/structure/surface/table, -/obj/item/clothing/under/brown{ - pixel_y = 7; - pixel_x = 12 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"ioX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/largecrate, -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"ipf" = ( -/obj/item/device/flashlight/lantern{ - pixel_x = -6 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"ipQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"iql" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/virology) -"iqm" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"iqP" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"iqQ" = ( -/obj/structure/machinery/computer/operating, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"iqS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"iqW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_east) -"irm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"iru" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"irA" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/structure/barricade/wooden, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"irN" = ( -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"irX" = ( -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"isk" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"iso" = ( -/obj/item/frame/table, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"isr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"isI" = ( -/obj/item/shard/shrapnel, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"isN" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"itO" = ( -/obj/structure/machinery/light, -/obj/structure/window{ - dir = 4 - }, -/obj/structure/surface/table/woodentable, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10"; - pixel_y = 11 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"iuc" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/down, -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/n) -"iuh" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/bigredv2/caves_lambda) -"ium" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"iux" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"iuQ" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"iuX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/research) -"ivj" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/item/trash/crushed_cup{ - pixel_x = -10; - pixel_y = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"ivs" = ( -/obj/structure/surface/table, -/obj/item/bodybag{ - pixel_y = 1; - pixel_x = -2 - }, -/obj/item/bodybag{ - pixel_y = -2; - pixel_x = 9 - }, -/obj/item/bodybag{ - pixel_y = 8; - pixel_x = -7 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"ivu" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib3" - }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"ivw" = ( -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"ivF" = ( -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"ivH" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/reagent_container/food/snacks/wrapped/booniebars{ - pixel_y = 7; - pixel_x = -2 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"ivK" = ( -/obj/structure/machinery/camera/autoname, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1; - pixel_y = -1 - }, -/turf/open/floor/red/northeast, -/area/bigredv2/outside/marshal_office) -"ivM" = ( -/obj/structure/disposalpipe/broken{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"iwn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"iwD" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"iwJ" = ( -/turf/open/floor/darkred2/southwest, -/area/bigredv2/caves/eta/research) -"ixb" = ( -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"ixe" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"ixq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"ixu" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"ixU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Complex" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"iya" = ( -/obj/structure/closet/crate/miningcar, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"iyr" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/dice/d20, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"iyz" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = -4; - pixel_y = -10 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"iyB" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"iyH" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"iyK" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_research) -"iyP" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/filtration_cave_cas) -"izf" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/se) -"izg" = ( -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"izs" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"izx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ - dir = 1; - name = "\improper Dormitories Restroom" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"izA" = ( -/obj/structure/machinery/power/port_gen/pacman, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"izH" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/caves_north) -"izQ" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/drip, -/obj/item/clothing/head/helmet/marine/desert{ - pixel_x = 10; - pixel_y = 7 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"iAi" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"iAw" = ( -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"iAI" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"iAJ" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random{ - pixel_y = 6; - pixel_x = -4 - }, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"iAL" = ( -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"iAQ" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stock_parts/smes_coil, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"iAR" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/e) -"iAT" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"iBv" = ( -/obj/structure/surface/table, -/obj/item/trash/kepler, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"iBA" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_lambda) -"iBG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"iBN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/lambda/research) -"iCd" = ( -/obj/structure/foamed_metal, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/lambda/xenobiology) -"iCp" = ( -/obj/structure/machinery/door_control{ - id = "Office Complex 1"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"iCx" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"iCy" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/ore{ - pixel_y = 5 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"iCC" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/w) -"iCJ" = ( -/turf/open/floor/bcircuit, -/area/bigredv2/outside/telecomm/lz2_cave) -"iDb" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - health = 25000 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"iDk" = ( -/turf/open/asphalt/cement, -/area/bigredv2/outside/space_port) -"iDM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"iDY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"iEg" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/ne) -"iEm" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"iEz" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/armor/vest, -/obj/structure/machinery/door/window/eastright, -/obj/structure/window/reinforced, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"iEJ" = ( -/obj/structure/platform, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"iEU" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/bar) -"iEX" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/se) -"iFc" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/lz1_north_cas) -"iFW" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_north) -"iGk" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"iGr" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"iGv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/roller, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"iGK" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_sw) -"iGO" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/space) -"iHo" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves_north) -"iHr" = ( -/obj/structure/barricade/metal{ - dir = 4; - icon_state = "barricade" - }, -/obj/structure/ore_box, -/turf/open/floor/whitepurple/east, -/area/bigredv2/caves/lambda/research) -"iHw" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/item/storage/box/m94{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"iHF" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/virology) -"iHQ" = ( -/obj/structure/machinery/light, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/outside/medical) -"iHX" = ( -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"iId" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/shard/shrapnel/bone_chips, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"iIh" = ( -/obj/structure/cable{ - icon_state = "1-6" - }, -/obj/structure/cable{ - icon_state = "1-9" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"iIo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"iIr" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_casing/bullet{ - icon_state = "cartridge_10_1" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"iIz" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"iIH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/cola, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"iIQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lantern, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"iIZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/virology) -"iJe" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 - }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"iJg" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"iJp" = ( -/obj/item/storage/toolbox{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/ammo_casing/bullet, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"iJs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitegreencorner/west, -/area/bigredv2/outside/medical) -"iJx" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"iJH" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/sw) -"iJI" = ( -/obj/structure/powerloader_wreckage/ft, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"iKg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"iKm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/pill/happy, -/obj/item/reagent_container/pill/happy, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"iKr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ - pixel_x = -11; - pixel_y = 12 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"iKM" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/s) -"iLd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"iLf" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask, -/obj/item/reagent_container/food/drinks/flask{ - pixel_x = 7 - }, -/obj/item/reagent_container/food/drinks/flask{ - pixel_x = -5 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"iLg" = ( -/turf/open/floor/chapel/west, -/area/bigredv2/outside/chapel) -"iLK" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"iLU" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/mars, -/area/bigredv2/outside/se) -"iMk" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/telecomm/n_cave) -"iMz" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/n) -"iMG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/bar) -"iNa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/structure/surface/table, -/obj/item/ammo_magazine/handful/shotgun/buckshot/incendiary{ - pixel_y = 12 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"iNf" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"iNq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"iNs" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"iNv" = ( -/obj/structure/fence, -/turf/open/asphalt/cement/cement12, -/area/bigredv2/outside/filtration_cave_cas) -"iNB" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/good_item, -/obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"iNL" = ( -/obj/item/reagent_container/glass/fertilizer/ez, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"iNM" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper/Court, -/turf/open/floor/cult, -/area/bigredv2/outside/marshal_office) -"iNQ" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"iNR" = ( -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"iNY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"iOe" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/mars, -/area/bigredv2/outside/n) -"iOk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"iOM" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/e) -"iPa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/item/tool/surgery/retractor, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"iPg" = ( -/obj/structure/largecrate/random/barrel/true_random, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"iPI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"iPU" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"iQk" = ( -/obj/structure/window/reinforced, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/breakroom) -"iQo" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"iQt" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/s) -"iQw" = ( -/obj/item/ore, -/turf/open/gm/river, -/area/bigredv2/outside/filtration_plant) -"iQI" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"iQQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"iQS" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"iRm" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"iRp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"iRu" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"iRy" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/caves_north) -"iSa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"iSv" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/xenoautopsy, -/turf/open/floor/whitepurple/north, -/area/bigredv2/caves/lambda/xenobiology) -"iSz" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/engineering) -"iSJ" = ( -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/research) -"iSP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/eta/xenobiology) -"iSU" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_cave_cas) -"iTa" = ( -/obj/structure/pipes/vents/scrubber/on{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"iTk" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"iTw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"iTB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"iTI" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves_sw) -"iUm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"iUq" = ( -/obj/structure/surface/table, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_y = -7; - pixel_x = 8 - }, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_y = 3; - pixel_x = -1 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"iUV" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement14, -/area/bigredv2/caves_lambda) -"iUX" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/sw) -"iVd" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/mars, -/area/space) -"iVh" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"iVi" = ( -/obj/structure/fence, -/turf/open/mars, -/area/bigredv2/outside/se) -"iVr" = ( -/obj/structure/machinery/access_button/airlock_exterior{ - master_tag = "viro_controller"; - pixel_y = -28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"iVO" = ( -/turf/open/floor/darkred2/southeast, -/area/bigredv2/caves/eta/research) -"iWk" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves/mining) -"iWH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Xenobiology Lab" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/xenobiology) -"iWW" = ( -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"iXc" = ( -/obj/structure/machinery/teleport/station, -/turf/open/floor/podhatch, -/area/bigredv2/caves/lambda/research) -"iXi" = ( -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"iXt" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/obj/structure/largecrate/random/mini{ - pixel_x = 5; - pixel_y = -8 - }, -/obj/structure/largecrate/random/mini{ - pixel_x = 2; - pixel_y = 9 - }, -/obj/structure/largecrate/random/mini{ - pixel_x = 9; - pixel_y = 6; - layer = 2.95 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"iXx" = ( -/turf/open/mars_cave, -/area/bigredv2/outside/n) -"iXz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/syndi_cakes{ - pixel_y = -11; - pixel_x = 9 - }, -/obj/item/trash/crushed_cup{ - pixel_y = 12 - }, -/obj/item/trash/semki{ - pixel_y = -14 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"iXA" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"iXL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"iXQ" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"iYi" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"iYo" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/chapel, -/area/bigredv2/outside/chapel) -"iYp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"iYF" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/mars, -/area/bigredv2/outside/s) -"iYH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"iYL" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -5 - }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 1 - }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 7 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"iYP" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"iZy" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/n) -"iZA" = ( -/obj/structure/surface/rack, -/turf/open/floor, -/area/bigredv2/caves) -"iZN" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"iZX" = ( -/obj/item/spacecash/c1, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"jaf" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 - }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"jaq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/weldingtool{ - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"jaB" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_virology) -"jaK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"jbe" = ( -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/obj/structure/window/reinforced/toughened, -/obj/structure/closet/crate/freezer, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/caves/lambda/virology) -"jbf" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/item/stack/sheet/metal, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"jbi" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/xenobiology) -"jbl" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"jbS" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"jch" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/ammo_magazine/pistol/hp{ - pixel_x = 8; - pixel_y = -7 - }, -/obj/item/ammo_magazine/pistol{ - pixel_y = -4 - }, -/obj/structure/cable{ - icon_state = "9-10" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"jcr" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/mars/mars_dirt_12, -/area/space) -"jcv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Eta Lab Security Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/storage) -"jcI" = ( -/obj/effect/decal/cleanable/ash{ - pixel_y = 19 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"jcY" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Lockers" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"jdf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/w) -"jdP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/space_port) -"jee" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_south_cas) -"jef" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"jei" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"jek" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/xenobiology) -"jer" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"jev" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"jez" = ( -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -6; - pixel_y = 12 - }, -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 7; - pixel_y = 3; - layer = 3.1 - }, -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"jeE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/breakroom) -"jeK" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump, -/obj/structure/transmitter/colony_net{ - phone_category = "Solaris Ridge"; - phone_color = "green"; - phone_id = "Clinic"; - pixel_y = 24 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"jeP" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"jfb" = ( -/obj/item/tool/warning_cone{ - pixel_x = -12 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"jfi" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/scalpel/manager, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"jfL" = ( -/obj/structure/closet/boxinggloves, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"jfS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"jgm" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/nw) -"jgY" = ( -/obj/structure/window/reinforced/toughened{ - icon_state = "fwindow" - }, -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/obj/structure/machinery/computer/pandemic, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/caves/lambda/virology) -"jhz" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/ne) -"jhQ" = ( -/obj/structure/showcase, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"jhZ" = ( -/obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-in" - }, -/turf/open/floor/plating/platebot, -/area/bigredv2/outside/space_port) -"jic" = ( -/obj/structure/machinery/squeezer, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"jit" = ( -/obj/structure/machinery/optable, -/turf/open/floor/whiteblue/east, -/area/bigredv2/outside/medical) -"jiG" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"jiK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"jiQ" = ( -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/eta/research) -"jiT" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/lz2_south_cas) -"jjm" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - layer = 3.1 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/nw) -"jjq" = ( -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 - }, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/lambda/virology) -"jjz" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"jjA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/s) -"jjG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/stack/cable_coil/random, -/obj/effect/spawner/random/powercell{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/spawner/random/attachment, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"jjL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/red/west, -/area/bigredv2/outside/marshal_office) -"jjM" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/platebotc, -/area/bigredv2/outside/space_port) -"jjV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/bigredv2/outside/filtration_cave_cas) -"jka" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras/wooden_tv{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"jkz" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/computer3frame/wallcomp, -/obj/structure/cable{ - icon_state = "11-2" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"jkC" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"jkO" = ( -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/mars_cave, -/area/bigredv2/caves/mining) -"jla" = ( -/obj/item/clothing/accessory/storage/holster/armpit, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"jle" = ( -/obj/structure/bed, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"jlg" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank/gas, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"jlj" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"jlt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/telecomm/n_cave) -"jlO" = ( -/obj/item/weapon/gun/pistol/b92fs{ - pixel_x = 13; - pixel_y = -7 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"jlW" = ( -/obj/item/tool/warning_cone{ - pixel_y = 20 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/telecomm/n_cave) -"jmp" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/bigredv2/outside/se) -"jmz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/c) -"jmT" = ( -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/xenobiology) -"jng" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"jnv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"jnA" = ( -/obj/item/stack/sheet/cardboard{ - pixel_x = -6; - pixel_y = -2 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"jnC" = ( -/obj/structure/surface/table, -/obj/item/tool/pen/blue{ - pixel_y = -8; - pixel_x = 3 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"jnJ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"jnQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"jnT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -9 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"jnW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/turf/open/floor/plating/platebotc, -/area/bigredv2/outside/space_port) -"joz" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/pistol/holdout, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"joU" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dormitories Bedroom" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"jpf" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"jph" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"jpq" = ( -/obj/effect/landmark/crap_item, -/obj/structure/flora/grass/desert/lightgrass_11, -/turf/open/mars, -/area/bigredv2/outside/c) -"jpB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkredcorners2/north, -/area/bigredv2/outside/admin_building) -"jpD" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"jpM" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_east) -"jqD" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/tonic{ - pixel_x = 7 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 1 - }, -/obj/item/reagent_container/food/drinks/cans/aspen{ - pixel_x = -5 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"jrc" = ( -/obj/structure/prop/dam/crane, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"jrp" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_lambda) -"jrx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) -"jrH" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"jrJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/bigredv2/outside/w) -"jrW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/s) -"jsu" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"jsF" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/item/weapon/gun/rifle/mar40/lmg, -/obj/item/ammo_magazine/rifle/mar40/lmg, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"jsO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"jsV" = ( -/turf/open/asphalt/cement/cement1/north, -/area/bigredv2/outside/space_port) -"jtb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"jte" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"jtf" = ( -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"jtl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"jtm" = ( -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/oob) -"jtE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"jtG" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_west_cas) -"juj" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Lambda Checkpoint" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) -"jul" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/loadingarea/north, -/area/bigredv2/caves/eta/storage) -"juq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement14, -/area/bigredv2/outside/space_port) -"jut" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "\improper Engineering Secure Storage" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"juT" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves_north) -"juU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"juV" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"jvd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"jvv" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/outside/lz2_south_cas) -"jvy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"jvN" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 - }, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"jvR" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/ne) -"jwa" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/caves/eta/living) -"jwz" = ( -/turf/open/floor/darkred2, -/area/bigredv2/caves/eta/xenobiology) -"jwI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/e) -"jwL" = ( -/obj/structure/machinery/computer/area_atmos{ - dir = 1 - }, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"jwU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 16 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"jxe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"jxh" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Cargo Bay Quartermaster" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"jxn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/ammo_casing/shell, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"jxA" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/engineering) -"jyb" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/sw) -"jyE" = ( -/obj/item/clothing/gloves/latex, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"jyL" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_plant) -"jyP" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/lz2_west_cas) -"jyR" = ( -/obj/structure/machinery/computer/general_air_control, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"jzh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Cargo Offices" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"jzl" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"jzM" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"jzN" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitepurple/northwest, -/area/bigredv2/caves/lambda/xenobiology) -"jzP" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/space_port) -"jAg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"jAU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/xenobiology) -"jBz" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/sw) -"jBF" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/ne) -"jBJ" = ( -/obj/item/clothing/under/lightbrown{ - pixel_x = -7; - pixel_y = -4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"jBK" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"jBM" = ( -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/lambda/virology) -"jCe" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"jCj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"jCE" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) -"jCQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/hydroponics) -"jDb" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Lambda Lab Maintenance" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"jDm" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 1 - }, -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/space_port_lz2) -"jDn" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"jDy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/cable{ - icon_state = "11-2" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"jDW" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/nw) -"jDX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/s) -"jEg" = ( -/obj/structure/surface/table, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_x = 3; - pixel_y = 12 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"jEE" = ( -/obj/item/stack/sheet/metal{ - pixel_x = 3; - pixel_y = -11 - }, -/turf/open/floor/panelscorched, -/area/bigredv2/outside/medical) -"jEM" = ( -/obj/item/device/multitool, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) -"jEU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/caves_lambda) -"jFl" = ( -/turf/open/asphalt/cement/cement3, -/area/bigredv2/caves_lambda) -"jFr" = ( -/obj/item/trash/sosjerky{ - pixel_x = 8; - pixel_y = 12 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/w) -"jFD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Dormitories"; - welded = 1 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"jFG" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/se) -"jFI" = ( -/obj/structure/machinery/vending/snack{ - icon_state = "snack-broken"; - stat = 1 - }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"jFO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"jFX" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"jGc" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"jGu" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Virology Lab Cell" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"jGE" = ( -/obj/structure/flora/grass/desert/lightgrass_7, -/obj/item/stack/folding_barricade, -/turf/open/mars, -/area/bigredv2/outside/c) -"jGG" = ( -/obj/structure/platform_decoration/shiva{ - dir = 8 - }, -/obj/structure/platform_decoration/shiva, -/obj/item/stack/cable_coil, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"jGX" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Eta Lab Maintenance Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/storage) -"jHg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper General Store Maintenance" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"jHi" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/c) -"jHw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_lambda) -"jHy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"jHE" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = -15 - }, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/pistol/highpower, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"jHG" = ( -/obj/structure/surface/table/woodentable{ - dir = 8; - flipped = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"jHM" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"jHP" = ( -/turf/open/floor/plating/warnplate/north, -/area/bigredv2/caves/lambda/xenobiology) -"jHS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"jHW" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump, -/obj/item/device/flashlight/lamp{ - pixel_y = 8; - pixel_x = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/ashtray/glass{ - icon_state = "ashtray_half_gl"; - pixel_x = -5 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"jIc" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/pistol/m1911, -/obj/item/ammo_magazine/pistol/m1911, -/obj/item/ammo_magazine/pistol/m1911, -/obj/item/ammo_magazine/pistol/m1911, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/ammo_magazine/pistol/m1911, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"jIs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Greenhouse Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"jIz" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/w) -"jIB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"jIP" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"jIU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/virology) -"jJa" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"jJh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"jJB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/caves/eta/xenobiology) -"jJC" = ( -/obj/item/tool/pickaxe{ - pixel_y = -7 - }, -/obj/item/tool/pickaxe{ - pixel_y = 4 - }, -/obj/item/tool/pickaxe{ - pixel_y = -3 - }, -/obj/item/tool/pickaxe, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/rack, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"jJJ" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"jJY" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"jKb" = ( -/obj/structure/pipes/vents/scrubber/on, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"jKs" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_lambda) -"jKv" = ( -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"jKA" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"jKB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/ne) -"jLy" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/door_control{ - id = "Spaceport"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/obj/item/tool/pen, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"jLL" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz2_south_cas) -"jLT" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"jMk" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_sw) -"jMq" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_se) -"jMx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"jMN" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, -/area/bigredv2/outside/virology) -"jNa" = ( -/obj/structure/surface/table, -/obj/item/weapon/baton, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"jNe" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"jNf" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"jNi" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/s) -"jNr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/asphalt/cement/cement12, -/area/bigredv2/caves_lambda) -"jNu" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"jNJ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves/mining) -"jNP" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Cables" - }, -/obj/structure/cryofeed{ - color = "silver"; - desc = "A bewildering tangle of machinery and pipes."; - name = "coolant feed" - }, -/turf/open/shuttle/escapepod/floor1, -/area/bigredv2/oob) -"jNQ" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/nw) -"jOg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"jOh" = ( -/obj/structure/machinery/message_server, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"jOo" = ( -/turf/open/floor/darkred2, -/area/bigredv2/caves/eta/research) -"jOT" = ( -/obj/item/reagent_container/spray/cleaner, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) -"jPm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"jPq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"jPD" = ( -/obj/structure/machinery/light, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/lambda/xenobiology) -"jPJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/virology) -"jPX" = ( -/obj/item/ore/diamond{ - pixel_x = 8; - pixel_y = -11 - }, -/obj/item/storage/firstaid/fire, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"jQo" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"jQu" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/research) -"jQB" = ( -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"jQT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"jQV" = ( -/obj/effect/vehicle_spawner/van/decrepit, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"jRf" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"jRh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"jRz" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"jRA" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"jRG" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/se) -"jRZ" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/n) -"jSq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"jSr" = ( -/obj/item/tool/extinguisher, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"jSC" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Private Office"; - density = 0; - icon_state = "door_open" - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"jSH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkgreencorners2/east, -/area/bigredv2/caves/eta/storage) -"jTI" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"jTN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/se) -"jTV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"jUc" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"jUo" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/se) -"jUp" = ( -/obj/effect/decal/cleanable/blood/gibs/up, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"jUy" = ( -/obj/structure/surface/table, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"jUN" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/nw) -"jUY" = ( -/turf/open/mars_cave, -/area/bigredv2/caves/mining) -"jVw" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"jVy" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"jVT" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 - }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"jVU" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/stack/cable_coil/cut{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"jVX" = ( -/obj/structure/machinery/door_control{ - id = "Office Complex 1"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"jWl" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westright, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"jWE" = ( -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"jXb" = ( -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -9 - }, -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"jXo" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_se) -"jXz" = ( -/obj/item/tool/pickaxe{ - pixel_x = -18; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"jXB" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_sw) -"jXO" = ( -/obj/structure/machinery/computer3/server, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"jXT" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"jXY" = ( -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) -"jYq" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/spawner/random/technology_scanner, -/obj/item/xenos_claw, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"jYC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/turf/open/floor/plating/platebot, -/area/bigredv2/outside/space_port) -"jYG" = ( -/turf/open/asphalt/cement/cement12, -/area/bigredv2/outside/space_port) -"jYJ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"jZa" = ( -/obj/structure/machinery/floodlight, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"jZi" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/nw) -"jZq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_west_cas) -"jZu" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"jZw" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"jZD" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/living) -"jZS" = ( -/obj/structure/closet/l3closet/security, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"kab" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/eta) -"kao" = ( -/obj/item/stack/sheet/wood{ - pixel_x = -8 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"kaD" = ( -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"kaG" = ( -/turf/open/floor/whitepurplecorner/west, -/area/bigredv2/caves/lambda/xenobiology) -"kaJ" = ( -/obj/structure/machinery/door_control{ - desc = "A remote control-switch for opening the engines blast doors."; - id = "rad_door"; - name = "Reactor Radiation Shielding control"; - pixel_x = 30; - req_access_txt = "7" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"kaL" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"kaM" = ( -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/research) -"kaW" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"kaY" = ( -/obj/item/ammo_magazine/handful/shotgun/custom_color{ - color = "#6666ff"; - desc = "A handful of ulta rare 12 gauge HE/FRAG ammunition to seriously fuck shit up with. Too bad its behind this indestructable window....."; - name = "handful of HE/FRAG shells (12g)"; - pixel_y = 3 - }, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) -"kbe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/machinery/vending/cola{ - pixel_x = 8; - pixel_y = -7; - layer = 2.84 - }, -/obj/structure/largecrate/random/mini/wooden{ - pixel_x = -12; - pixel_y = -4 - }, -/obj/structure/largecrate/random/mini/wooden{ - pixel_x = -18; - pixel_y = 7 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"kbq" = ( -/obj/item/ore{ - pixel_x = -1; - pixel_y = -8 - }, -/obj/effect/decal/cleanable/blood/oil/streak{ - pixel_y = 4 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"kby" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/eta) -"kbE" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves/lambda/research) -"kbG" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"kbL" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"kcg" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper/courtroom{ - name = "A Crash Course in Legal SOP" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"kcm" = ( -/obj/item/reagent_container/spray/plantbgone, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"kcn" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"kcx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/broken_bottle, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"kcD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/darkblue2, -/area/bigredv2/caves/eta/research) -"kcJ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/darkblue2, -/area/bigredv2/outside/admin_building) -"kcL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/rods, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"kdn" = ( -/obj/structure/sign/safety/maint{ - pixel_y = 32 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"kdI" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 4 - }, -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"kdV" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/obj/effect/decal/cleanable/blood, -/turf/open/mars, -/area/bigredv2/outside/n) -"keg" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/lz2_south_cas) -"kep" = ( -/obj/structure/surface/table, -/obj/item/ore/diamond, -/obj/item/ore/uranium, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"key" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/mars_cave, -/area/bigredv2/caves/mining) -"kfk" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave, -/area/bigredv2/caves_lambda) -"kfz" = ( -/turf/open/floor/whiteyellow/west, -/area/bigredv2/caves/lambda/xenobiology) -"kgb" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/n) -"kgd" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"kge" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/cabinet, -/obj/item/clothing/accessory/armband, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"kgp" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "An exchange valve"; - dir = 8; - icon = 'icons/obj/pipes/filter.dmi'; - icon_state = "map"; - name = "Automated Valve" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kgs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/se) -"kgE" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"kgH" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 - }, -/obj/item/stack/sheet/cardboard{ - pixel_x = -9; - pixel_y = -5 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"kgW" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"khg" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_lambda) -"khy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"khU" = ( -/turf/open/floor/almayer/w_y1/north, -/area/bigredv2/outside/admin_building) -"kim" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"kiy" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/outside/medical) -"kiC" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/n) -"kiL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"kiW" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8; - layer = 2.9; - pixel_x = -3 - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"kiY" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/lz1_north_cas) -"kjd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/good_item, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"kji" = ( -/obj/structure/bookcase/manuals/medical, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"kjm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"kju" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"kjw" = ( -/obj/item/ore, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"kjH" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"kka" = ( -/obj/structure/barricade/handrail, -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/engineering) -"kke" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"kkm" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/space_port) -"kkr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"kkB" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"kkC" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"klc" = ( -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"klx" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/mars, -/area/bigredv2/outside/e) -"klI" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"klJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/c) -"klN" = ( -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"klO" = ( -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"klP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/space_port_lz2) -"kmv" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"kmz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/red/west, -/area/bigredv2/outside/marshal_office) -"knp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"knK" = ( -/obj/structure/surface/table, -/obj/item/toy/prize/ripley, -/obj/item/toy/prize/odysseus, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"koQ" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves/mining) -"kpc" = ( -/obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"kpC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"kpF" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/loadingarea/east, -/area/bigredv2/outside/cargo) -"kpH" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz2_south_cas) -"kpR" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - icon = 'icons/obj/pipes/manifold.dmi'; - icon_state = "map"; - name = "Pipe manifold" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kpZ" = ( -/obj/structure/bed, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"kqd" = ( -/obj/structure/machinery/power/apc/power/north{ - name = "Virology APC" - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"kqj" = ( -/obj/structure/barricade/wooden, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/bigredv2/outside/c) -"kql" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_virology) -"kqG" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Toilet" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"kqH" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"kqK" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"krj" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/mars, -/area/bigredv2/outside/n) -"krr" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt{ - pixel_x = -1; - pixel_y = 17 - }, -/turf/open/asphalt/cement, -/area/bigredv2/outside/filtration_cave_cas) -"krw" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"krD" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "Righty tighty, lefty loosey!"; - dir = 1; - icon = 'icons/obj/pipes/valve.dmi'; - icon_state = "map_valve1"; - name = "Pressure Valve" - }, -/obj/structure/cable{ - icon_state = "1-9" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-5" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"krO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"krU" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/ne) -"krW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/writing, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"krY" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"ksd" = ( -/obj/structure/barricade/metal{ - dir = 4; - icon_state = "barricade" - }, -/turf/open/floor/whitepurple/southeast, -/area/bigredv2/caves/lambda/research) -"ksk" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"kso" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ksq" = ( -/obj/item/ore, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"ksr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engineering Workshop" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"ksX" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/breakroom) -"ksZ" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/virology) -"ktj" = ( -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_research) -"ktC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/mining) -"ktH" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/research) -"ktS" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"kut" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"kuu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"kuS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"kuT" = ( -/obj/item/reagent_container/food/drinks/bottle/beer/craft/ganucci{ - pixel_x = -6; - pixel_y = -8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"kvC" = ( -/obj/item/stack/rods{ - pixel_y = -2 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"kvW" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"kwL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"kxe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Biology Wing" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"kxr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/landmark/nightmare{ - insert_tag = "dorms_party" - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"kxt" = ( -/turf/open/mars_cave/mars_cave_8, -/area/bigredv2/outside/lambda_cave_cas) -"kxu" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"kxD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex Janitor Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"kxH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"kxM" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"kxU" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"kxW" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"kyl" = ( -/obj/effect/decal/strata_decals/grime/grime1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"kyt" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/e) -"kyx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"kyV" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/c) -"kzm" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/filtration_cave_cas) -"kzH" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/lz1_north_cas) -"kzN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kzU" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"kAc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/caves/eta/living) -"kAg" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"kAj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"kAn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_east) -"kAB" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/whiteblue/southeast, -/area/bigredv2/outside/medical) -"kAG" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/vents/scrubber/on{ - dir = 1 - }, -/turf/open/floor/darkgreen2/north, -/area/bigredv2/caves/lambda/virology) -"kAU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"kBi" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"kBn" = ( -/turf/closed/wall/solaris, -/area/bigredv2/caves) -"kBE" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"kBK" = ( -/obj/item/stack/sheet/wood{ - pixel_y = 5; - pixel_x = -4 - }, -/obj/item/dartboard{ - pixel_y = 28 - }, -/turf/open/floor/carpet11_12/west, -/area/bigredv2/outside/bar) -"kCk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"kCw" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -6; - pixel_y = 8 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/marshal_office) -"kCz" = ( -/obj/structure/reagent_dispensers/virusfood{ - pixel_x = -32 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"kCL" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/solar_tracker, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/filtration_plant) -"kCT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kDg" = ( -/obj/item/ore{ - pixel_x = 9; - pixel_y = 13 - }, -/obj/item/ore{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"kDw" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"kDC" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 9; - pixel_y = -3 - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"kDO" = ( -/obj/item/weapon/broken_bottle, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kDQ" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/xenobiology) -"kDS" = ( -/turf/open/mars_cave/mars_cave_22, -/area/bigredv2/caves_east) -"kDU" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"kEd" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"kEe" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/structure/machinery/light/built{ - dir = 1 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"kEf" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"kEw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/revolver/small{ - pixel_x = -11; - pixel_y = 13 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"kEL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"kER" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"kEV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"kFi" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/FixOVein{ - pixel_x = -7; - pixel_y = -6 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"kFn" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/n) -"kFy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"kFE" = ( -/obj/structure/machinery/conveyor{ - id = "anomalybelt" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"kFJ" = ( -/obj/structure/surface/table, -/obj/item/device/radio{ - pixel_y = 8 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"kFN" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_north) -"kGa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"kGc" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"kGl" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/e) -"kGw" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"kGJ" = ( -/obj/structure/surface/table, -/obj/item/toy/sword, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"kGV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/red/southeast, -/area/bigredv2/outside/marshal_office) -"kHf" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"kHn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"kHB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"kHH" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"kHM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/breakroom) -"kHO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"kHW" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz1_telecomm_cas) -"kHZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/dart/green{ - pixel_y = -10; - pixel_x = -11 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"kIi" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/eta) -"kIm" = ( -/obj/structure/morgue{ - dir = 1 - }, -/turf/open/floor/whiteblue/southwest, -/area/bigredv2/outside/medical) -"kIA" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"kIE" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"kIF" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"kIH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"kIL" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"kIM" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/engineering) -"kIZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/podhatch/northeast, -/area/bigredv2/caves/lambda/research) -"kJm" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"kJD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/e) -"kJG" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/podhatch/north, -/area/bigredv2/caves/lambda/research) -"kJH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"kJK" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "eta"; - name = "Eta Lockdown" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/eta) -"kJR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"kJX" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"kKx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"kKC" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"kKD" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_sw) -"kKI" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"kKK" = ( -/obj/structure/janitorialcart, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"kKN" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/s) -"kKY" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"kLg" = ( -/obj/structure/coatrack{ - pixel_x = -5; - pixel_y = 13 - }, -/obj/item/clothing/shoes/dress{ - pixel_y = -13 - }, -/obj/item/clothing/under/suit_jacket/trainee{ - pixel_x = -6; - pixel_y = 15 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"kLm" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"kLs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Kitchen Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"kLv" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves_sw) -"kLL" = ( -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/admin_building) -"kLP" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Telecommunications" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/telecomm) -"kMg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"kMh" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"kMw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/e) -"kMx" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves/mining) -"kMM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Greenhouse Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"kMP" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/lambda/research) -"kMR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"kNg" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ - pixel_x = 3 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"kNE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"kNT" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper General Store Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"kOg" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves/mining) -"kOh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"kOw" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/outside/lz1_north_cas) -"kOz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"kOX" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"kPm" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"kPr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"kPD" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_lambda) -"kPM" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/outside/n) -"kPN" = ( -/obj/item/frame/table, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"kPQ" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"kPU" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"kQc" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave, -/area/bigredv2/caves_east) -"kQo" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"kQS" = ( -/obj/item/cell/hyper/empty, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"kRh" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"kRD" = ( -/obj/item/weapon/broken_bottle, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"kRK" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"kRT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"kRZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port_lz2) -"kSg" = ( -/obj/structure/tunnel{ - id = "hole3" - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"kSv" = ( -/obj/structure/window_frame/solaris, -/obj/item/stack/rods{ - pixel_y = 4; - pixel_x = -13 - }, -/obj/item/shard, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"kSD" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"kSE" = ( -/obj/structure/surface/table, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/tool/hand_labeler{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"kSI" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"kSO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office Brig" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"kTe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Kitchen" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"kTf" = ( -/obj/structure/bed/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"kTp" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"kTs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/filtration_cave_cas) -"kTx" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"kTE" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/ne) -"kUa" = ( -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = -10; - pixel_y = 2 - }, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 8; - pixel_y = 7 - }, -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kUc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/armor/riot{ - pixel_y = -6; - pixel_x = -8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"kUl" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/s) -"kUs" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/space_port_lz2) -"kUD" = ( -/obj/structure/closet/wardrobe/medic_white, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"kUK" = ( -/obj/structure/noticeboard{ - desc = "A board for pinning important items upon."; - dir = 1; - name = "trophy board"; - pixel_y = 30 - }, -/obj/item/oldresearch/Chitin{ - anchored = 1; - pixel_y = 27 - }, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"kUT" = ( -/turf/open/mars/mars_dirt_5, -/area/bigredv2/outside/nw) -"kUX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_lambda) -"kVN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"kWK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"kWL" = ( -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/research) -"kWU" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) -"kXc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kXg" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"kXo" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"kXD" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/s) -"kXO" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/nw) -"kYl" = ( -/obj/structure/machinery/power/apc/power/north{ - name = "Dormitories APC" - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"kYB" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves/mining) -"kYJ" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"kZc" = ( -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"kZh" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/space_port_lz2) -"kZj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"kZw" = ( -/obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"kZx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/sosjerky{ - pixel_x = -12; - pixel_y = 17 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"kZG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/bible/hefa, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"kZR" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5; - pixel_x = -1 - }, -/turf/open/floor/plating/warnplate/east, -/area/bigredv2/outside/telecomm/warehouse) -"lac" = ( -/obj/item/trash/syndi_cakes{ - pixel_y = -11; - pixel_x = 9 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"lag" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"lau" = ( -/obj/structure/largecrate/cow, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"laz" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"laB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/w) -"laC" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/black_vest, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"laL" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/surgery/surgicaldrill, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"laM" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_research) -"lbk" = ( -/turf/open/floor/carpet5_1/west, -/area/bigredv2/outside/admin_building) -"lbC" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"lbD" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"lbE" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ - dir = 1 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/landing/console2) -"lbK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"lbP" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/caves/eta/research) -"lbQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/good_item, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"lbZ" = ( -/obj/item/frame/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/pickaxe{ - pixel_y = -7 - }, -/obj/item/tool/pickaxe{ - pixel_y = -3 - }, -/obj/item/tool/pickaxe, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"lcc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"lce" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"lco" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/eta) -"lcu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette, -/obj/item/clothing/mask/cigarette{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/ashtray/bronze{ - pixel_x = -7 - }, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"lcy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-in" - }, -/turf/open/floor/plating/platebotc, -/area/bigredv2/outside/space_port) -"lcF" = ( -/obj/item/ammo_casing/bullet, -/obj/item/ammo_casing/bullet, -/turf/open/mars, -/area/bigredv2/outside/c) -"ldj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/bigredv2/outside/lambda_cave_cas) -"lds" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"ldt" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/darkblue2/northwest, -/area/bigredv2/caves/eta/research) -"ldF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"ldH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"ldK" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"ldX" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/darkpurplecorners2/west, -/area/bigredv2/caves/lambda/xenobiology) -"lei" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"leu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"leX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"lfn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"lfz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"lfR" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"lgk" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Kitchen" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"lgt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/plating/warnplate/southwest, -/area/bigredv2/outside/telecomm/warehouse) -"lgz" = ( -/obj/effect/decal/strata_decals/grime/grime2, -/obj/item/trash/kepler/flamehot{ - pixel_y = 13; - pixel_x = 14 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/bigredv2/outside/nw) -"lgA" = ( -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"lgO" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"lgQ" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"lgT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"lgV" = ( -/obj/structure/surface/table, -/obj/item/trash/snack_bowl, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"lhd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/botany, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"lhA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_se) -"lhC" = ( -/obj/structure/sign/nosmoking_1{ - pixel_x = -32 - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"liF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"liT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"ljx" = ( -/obj/structure/closet/jcloset, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"ljy" = ( -/obj/structure/bed/chair, -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) -"ljJ" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/eta) -"ljK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/nw/ceiling) -"lkn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"lkt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/obj/item/ammo_casing/bullet, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"lku" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"lkv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 2; - name = "\improper Operations" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"lky" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/device/flashlight/lantern, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"lkX" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"lls" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 30 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"llz" = ( -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"llO" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"lmg" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/lz2_south_cas) -"lmv" = ( -/obj/structure/surface/table, -/obj/item/spacecash/c100, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_y = 12 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"lmB" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"lmI" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.2; - pixel_x = 2; - pixel_y = -3 - }, -/turf/open/floor/whitegreencorner/west, -/area/bigredv2/outside/medical) -"lmW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-in" - }, -/turf/open/floor/whitegreencorner/east, -/area/bigredv2/caves/lambda/virology) -"lnz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"lnA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"lof" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/nosmoking_1{ - pixel_x = -32 - }, -/obj/item/stack/sheet/wood/medium_stack{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/stack/sheet/wood{ - pixel_x = -4; - pixel_y = -10 - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"lok" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/cult, -/area/bigredv2/outside/marshal_office) -"lou" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/nw) -"loK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/hazard{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"loQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/red/southwest, -/area/bigredv2/outside/marshal_office) -"loX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/healthanalyzer{ - pixel_y = 10; - pixel_x = 6 - }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"lpa" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/xenobiology) -"lpf" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_se) -"lpg" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/e) -"lpx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"lpD" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = 30 - }, -/obj/item/tool/soap/deluxe{ - pixel_y = -7; - pixel_x = -9 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"lpH" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/filtration_plant) -"lpM" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"lpZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"lqg" = ( -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"lqh" = ( -/obj/structure/cable{ - icon_state = "5-8" - }, -/obj/structure/cable{ - icon_state = "5-6" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"lqi" = ( -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"lqt" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"lqQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"lqW" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves_research) -"lrn" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/s) -"lrz" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/s) -"lrQ" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/filtration_plant) -"lsa" = ( -/obj/structure/surface/table, -/obj/structure/machinery/recharger, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"lsk" = ( -/turf/open/floor/purple/southeast, -/area/bigredv2/caves/lambda/research) -"lsl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"lso" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port_lz2) -"lsw" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"lsQ" = ( -/obj/item/device/defibrillator{ - pixel_x = -9; - pixel_y = -9 - }, -/obj/item/reagent_container/hypospray/autoinjector/adrenaline{ - pixel_y = 6; - pixel_x = 9 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"lsR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"ltf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"ltn" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"ltq" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/shotgun, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"lts" = ( -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"ltt" = ( -/obj/item/stack/sheet/metal/med_small_stack, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"lty" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"ltI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/warning_cone{ - pixel_x = 6 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"ltK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "Dormitories"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ltL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"ltY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/sheet/wood, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"lui" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/loadingarea, -/area/bigredv2/outside/cargo) -"lus" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"lux" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"luI" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/w) -"lve" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/lambda/xenobiology) -"lvf" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"lvq" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_casing/shell, -/obj/item/ammo_casing/shell, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"lvy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/se) -"lvK" = ( -/mob/living/simple_animal/hostile/retaliate/clown{ - desc = "Always returning. Always watching."; - health = 10000; - move_to_delay = 2; - name = "Gonzo the Magnificent"; - rapid = 1 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_2, -/area/space) -"lvQ" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"lvX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/research) -"lwe" = ( -/obj/structure/surface/table/woodentable{ - dir = 8; - flipped = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"lwm" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"lwq" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras/wooden_tv{ - dir = 8 - }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"lwr" = ( -/obj/structure/machinery/vending/hydroseeds, -/obj/structure/machinery/light, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/xenobiology) -"lwC" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/mars, -/area/bigredv2/outside/c) -"lwE" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda"; - name = "Lambda Lockdown" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves_north) -"lwY" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6; - pixel_y = 10 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"lxb" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"lxm" = ( -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"lxw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"lxz" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/glass/bottle/toxin, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"lxB" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"lxE" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"lxF" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"lym" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"lyN" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"lze" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/virology) -"lzv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"lzy" = ( -/obj/structure/machinery/power/apc/no_power/west{ - name = "Xenbiology Lab APC" - }, -/obj/structure/machinery/door_control{ - id = "lambda"; - name = "Lambda Lockdown"; - pixel_y = -25 - }, -/turf/open/floor/whitepurple/southwest, -/area/bigredv2/caves/lambda/xenobiology) -"lzA" = ( -/obj/item/trash/syndi_cakes{ - pixel_y = -15; - pixel_x = -3 - }, -/obj/item/prop/magazine/book/starshiptroopers{ - pixel_x = -6; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/nw) -"lzI" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves) -"lzJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/office_complex) -"lzR" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"lAB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"lAF" = ( -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"lAL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"lAM" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"lAV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"lBc" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/c) -"lBe" = ( -/obj/structure/sign/poster/safety, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"lBz" = ( -/obj/item/stack/sheet/metal{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"lBM" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"lBT" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/warnplate/north, -/area/bigredv2/caves/lambda/xenobiology) -"lCz" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/filtration_plant) -"lCN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Robotics" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/storage) -"lCR" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 9; - pixel_y = 17 - }, -/obj/item/device/radio{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/item/clothing/mask/cigarette/weed{ - pixel_y = -3 - }, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/mars_cave, -/area/bigredv2/caves/mining) -"lDk" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/n) -"lDB" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"lDI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/surface/table/woodentable{ - flipped = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"lDO" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"lEb" = ( -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"lEc" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement/cement12, -/area/bigredv2/outside/filtration_cave_cas) -"lEs" = ( -/obj/structure/flora/grass/desert/lightgrass_11, -/turf/open/mars, -/area/bigredv2/outside/nw) -"lEG" = ( -/obj/item/device/taperecorder, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"lEK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"lFg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"lFR" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "viro_open" - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"lGj" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"lGl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"lGB" = ( -/obj/structure/platform/shiva{ - dir = 4 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"lGC" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"lGE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"lGM" = ( -/obj/item/tool/weldingtool/experimental, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) -"lGO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/caves_lambda) -"lGQ" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/caves/eta/living) -"lHC" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"lIh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/se) -"lIk" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper General Store Maintenance" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"lIl" = ( -/obj/item/ammo_magazine/rifle/mar40/lmg, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"lIB" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_virology) -"lIL" = ( -/obj/structure/sign/safety/fire_haz, -/turf/closed/wall/wood, -/area/bigredv2/caves/mining) -"lJf" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/s) -"lJK" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"lJS" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_north) -"lJY" = ( -/obj/structure/surface/table, -/turf/open/floor/warnwhite, -/area/bigredv2/outside/office_complex) -"lKg" = ( -/obj/structure/curtain/medical, -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/caves/lambda/virology) -"lKL" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"lKY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/virology) -"lLd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"lLi" = ( -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/lambda_cave_cas) -"lLo" = ( -/obj/item/weapon/gun/smg/mp5{ - current_mag = null; - pixel_y = 8; - pixel_x = -18 - }, -/obj/item/ammo_casing/bullet, -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/mars, -/area/bigredv2/outside/c) -"lLA" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/c) -"lLE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"lLM" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"lLO" = ( -/obj/structure/prop/server_equipment/broken, -/turf/open/floor/podhatch/southwest, -/area/bigredv2/caves/lambda/research) -"lLT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/telecomm/n_cave) -"lMN" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000; - layer = 2.9; - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"lMZ" = ( -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"lNg" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_research) -"lNv" = ( -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"lNK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/lambda_cave_cas) -"lNR" = ( -/obj/item/reagent_container/spray/pepper, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"lNX" = ( -/obj/structure/xenoautopsy/tank/alien, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/whitepurple, -/area/bigredv2/caves/lambda/xenobiology) -"lOo" = ( -/obj/item/tool/weldingtool{ - pixel_x = 9; - pixel_y = -8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"lOq" = ( -/obj/structure/machinery/computer/WYresearch, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"lOB" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/item/tool/pickaxe, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"lOK" = ( -/turf/open/floor/darkblue2/northwest, -/area/bigredv2/outside/admin_building) -"lOY" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "etatunnel_open" - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"lPg" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/n) -"lPk" = ( -/obj/structure/closet/l3closet/security, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"lPr" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/c) -"lPt" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/item/reagent_container/food/drinks/bottle/beer/craft{ - pixel_x = 7; - pixel_y = -7 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"lPA" = ( -/obj/item/weapon/ice_axe/green{ - pixel_y = -12 - }, -/obj/item/stack/medical/bruise_pack{ - pixel_x = -15; - pixel_y = 10 - }, -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/n) -"lPE" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_east) -"lPN" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -4; - pixel_y = 20 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"lPR" = ( -/turf/open/floor/darkish, -/area/bigredv2/outside/marshal_office) -"lQb" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_virology) -"lQr" = ( -/obj/structure/machinery/light, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"lQy" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/red, -/area/bigredv2/outside/lambda_cave_cas) -"lRz" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/ore/diamond, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"lRD" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port) -"lRO" = ( -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/w) -"lRR" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/c) -"lSn" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/item/trash/cigbutt/cigarbutt, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/nw) -"lSK" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/eta) -"lSM" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"lTw" = ( -/obj/item/prop/magazine/dirty/torn/alt{ - pixel_x = -11; - pixel_y = 4 - }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 7; - pixel_y = -18 - }, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/outside/ne) -"lTx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"lTy" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"lTI" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"lTS" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"lTW" = ( -/obj/structure/fence, -/obj/structure/disposalpipe/segment, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"lUj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"lUm" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/outside/filtration_plant) -"lUu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"lUw" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"lUz" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/filtration_plant) -"lUB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/hydroponics) -"lUH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"lUM" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"lUP" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_virology) -"lUW" = ( -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/bigredv2/outside/c) -"lUY" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/darkgreen2/north, -/area/bigredv2/caves/eta/xenobiology) -"lVe" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/virology) -"lVh" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/ne) -"lVl" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/warnwhite/west, -/area/bigredv2/caves/lambda/xenobiology) -"lVL" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"lWa" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/red/north, -/area/bigredv2/outside/lambda_cave_cas) -"lWh" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/nw) -"lWB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"lXt" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-2"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"lXF" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"lXM" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib3" - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"lXN" = ( -/obj/structure/bed, -/obj/item/bedsheet/rd, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"lXU" = ( -/obj/item/stack/sheet/metal{ - pixel_x = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"lYy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"lYM" = ( -/obj/item/grown/sunflower, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"lYR" = ( -/obj/item/ammo_casing/bullet, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"lYS" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz2_west_cas) -"lYZ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"lZf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"lZx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-in" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/turf/open/floor/plating/platebot, -/area/bigredv2/outside/space_port) -"lZy" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/admin_building) -"lZD" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"maa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"mai" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"maA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"maB" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "viro-rock_open" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/virology) -"maF" = ( -/obj/item/frame/rack, -/obj/effect/landmark/good_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"mbs" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"mbu" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 5; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"mbK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"mbV" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"mbW" = ( -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 - }, -/obj/structure/machinery/disease2/diseaseanalyser, -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/caves/lambda/virology) -"mcd" = ( -/obj/structure/machinery/body_scanconsole, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"mci" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"mck" = ( -/obj/item/device/radio/headset, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"mcm" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"mcu" = ( -/obj/item/trash/used_stasis_bag{ - pixel_y = 5 - }, -/turf/open/floor/whiteblue/northeast, -/area/bigredv2/outside/medical) -"mcJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet13_5/west, -/area/bigredv2/outside/bar) -"mcM" = ( -/obj/structure/machinery/photocopier, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"mcN" = ( -/obj/item/tool/mop{ - pixel_y = 19; - pixel_x = 10 - }, -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"mcO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"mcX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/whitegreen/east, -/area/bigredv2/caves/lambda/virology) -"mcZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"mdg" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"mdm" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/door/window{ - dir = 1; - opacity = 1 - }, -/turf/open/floor/warnwhite, -/area/bigredv2/caves/lambda/virology) -"mdz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/firstaid/rad/empty{ - pixel_x = -9 - }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"mdF" = ( -/obj/item/ore{ - pixel_x = 13; - pixel_y = 12 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"mdL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"mdN" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/space_port_lz2) -"mdP" = ( -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 - }, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/lambda/virology) -"mdS" = ( -/obj/item/trash/eat, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"mec" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"mef" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/darkblue2/north, -/area/bigredv2/caves/eta/research) -"mek" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"meq" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"mes" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"meu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"mez" = ( -/obj/structure/window_frame/solaris/reinforced, -/obj/item/tool/crowbar/red{ - pixel_y = -13 - }, -/obj/item/shard, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"meI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"meK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"meM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"meN" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/se) -"meQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"meT" = ( -/turf/open/mars, -/area/bigredv2/outside/eta) -"meX" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves_north) -"mfv" = ( -/obj/item/weapon/gun/revolver/m44{ - pixel_x = 9; - pixel_y = -14 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) -"mfF" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"mfH" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/mars, -/area/bigredv2/outside/w) -"mfW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/ne) -"mgd" = ( -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/breakroom) -"mgf" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"mgl" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"mgu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/metal, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"mgR" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_box/magazine/misc/flares, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"mgZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"mhn" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"mhD" = ( -/obj/structure/flora/grass/desert/lightgrass_7, -/turf/open/mars, -/area/bigredv2/outside/nw) -"mhG" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -3 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 11 - }, -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/caves/mining) -"mhI" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/se) -"mic" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"mix" = ( -/obj/structure/machinery/door_control{ - id = "Medical"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"miF" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) -"miZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"mje" = ( -/obj/item/clothing/shoes/galoshes{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"mji" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - name = "\improper Engineering Workshop" - }, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"mjx" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"mjG" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/eta) -"mke" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"mkq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper General Store Security" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_store) -"mkt" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"mkz" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 1 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"mkG" = ( -/turf/open/floor/whitepurple/east, -/area/bigredv2/caves/lambda/research) -"mkM" = ( -/obj/structure/surface/table, -/obj/item/storage/briefcase, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"mld" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Oxygen Supply Console" - }, -/obj/structure/cable{ - icon_state = "11-2" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"mlG" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"mlQ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"mlZ" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/se) -"mmr" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"mmx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/caves/lambda/virology) -"mmG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"mmN" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4 - }, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/admin_building) -"mmT" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_plant) -"mmZ" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"mnf" = ( -/obj/item/clothing/under/darkred{ - pixel_y = 7; - pixel_x = 10 - }, -/obj/structure/surface/rack, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"mng" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_east) -"mnF" = ( -/obj/effect/decal/remains/human, -/turf/open/asphalt/cement/cement15, -/area/bigredv2/caves_lambda) -"mnG" = ( -/obj/item/trash/cigbutt{ - pixel_x = -1; - pixel_y = 17 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"mnQ" = ( -/obj/structure/surface/table, -/obj/item/toy/prize/mauler, -/obj/item/toy/prize/odysseus, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"mnS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"mnT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/folder/black, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"mnV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/bigredv2/outside/virology) -"moe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"mof" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/gm/river/red, -/area/bigredv2/outside/c) -"moB" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/stack/sheet/cardboard{ - pixel_x = -6; - pixel_y = -11 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"moH" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/mars, -/area/bigredv2/outside/se) -"moP" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz1_telecomm_cas) -"moY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/filtration_plant) -"mpo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"mpz" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/landmark/corpsespawner/miner, -/obj/item/weapon/gun/rifle/m16{ - pixel_x = 10 - }, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"mpS" = ( -/turf/open/asphalt/cement/cement9, -/area/bigredv2/caves_lambda) -"mqz" = ( -/obj/item/trash/cigbutt{ - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"mqD" = ( -/obj/structure/surface/table, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"mqI" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"mqJ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"mqL" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"mrs" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"mru" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"mrw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"mrB" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/firealarm, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"mrC" = ( -/obj/structure/surface/table, -/obj/item/folder/black, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"msk" = ( -/obj/structure/bed/stool, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"msp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"msw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/filtration_cave_cas) -"msT" = ( -/obj/structure/machinery/computer/cameras, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"msV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/turf/open/floor/plating/platebot, -/area/bigredv2/outside/space_port) -"msW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"mtf" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"mto" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/filtration_plant) -"mtv" = ( -/obj/item/device/flashlight, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"mtH" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/space_port) -"mtL" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - pixel_x = 7; - pixel_y = 10 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"mtT" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"mua" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"muk" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"mus" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/filtration_plant) -"muy" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement/cement1/north, -/area/bigredv2/outside/filtration_cave_cas) -"muP" = ( -/turf/closed/wall/wood, -/area/bigredv2/caves_research) -"muY" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/w) -"mvk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - pixel_x = 12 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"mvu" = ( -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"mvU" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) -"mwC" = ( -/obj/structure/surface/table/woodentable, -/obj/item/newspaper, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"mxn" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_north) -"mxv" = ( -/obj/effect/spawner/random/bomb_supply{ - pixel_x = 6; - pixel_y = -3 - }, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"mxQ" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"mxT" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_sw) -"mzf" = ( -/obj/structure/machinery/door_control{ - id = "workshop_br_g"; - name = "Workshop Garage Lockdown"; - pixel_x = -28 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/nw) -"mzG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"mzR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 8; - pixel_y = 12; - pixel_x = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"mzV" = ( -/turf/open/mars, -/area/bigredv2/outside/filtration_plant) -"mAt" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves/mining) -"mAT" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"mBe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"mBj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"mBo" = ( -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -7; - pixel_y = 9 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"mBv" = ( -/obj/item/stack/sheet/wood{ - pixel_x = 6; - pixel_y = -12 - }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"mBF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"mBI" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"mBM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"mBW" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"mBZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplefull, -/area/bigredv2/outside/medical) -"mCc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/outside/engineering) -"mCu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"mCy" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/caves_lambda) -"mCD" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"mCI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/red/southeast, -/area/bigredv2/outside/lambda_cave_cas) -"mDk" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"mDD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-exterior"; - name = "Lambda Checkpoint Exterior" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement, -/area/bigredv2/outside/lambda_cave_cas) -"mDG" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"mDX" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"mDZ" = ( -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"mEa" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"mEk" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/mars, -/area/bigredv2/outside/virology) -"mEA" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/bigredv2/caves_lambda) -"mEX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"mFg" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/carpet7_3/west, -/area/bigredv2/outside/admin_building) -"mFl" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/caves/lambda/xenobiology) -"mFq" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/hydroponics) -"mGF" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -3; - pixel_y = 16 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 7 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"mGV" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"mHd" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"mHo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"mHz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-in" - }, -/turf/open/floor/whitegreencorner/north, -/area/bigredv2/caves/lambda/virology) -"mHF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/northeast, -/area/bigredv2/outside/admin_building) -"mIj" = ( -/obj/item/weapon/shield/riot, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 - }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"mIp" = ( -/obj/item/stack/sheet/metal{ - pixel_x = 6; - pixel_y = -9 - }, -/turf/open/mars, -/area/bigredv2/outside/c) -"mIt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"mIu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"mJs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/medical) -"mJv" = ( -/obj/structure/bed/stool, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"mJW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/ore{ - pixel_x = -4; - pixel_y = 7 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"mJY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/w) -"mKk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor/plating/platebotc, -/area/bigredv2/outside/space_port) -"mKt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"mKu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"mKM" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"mLb" = ( -/obj/structure/closet/crate/miningcar/yellow, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"mLk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves_north) -"mLo" = ( -/obj/structure/surface/table, -/obj/item/ore/uranium, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"mLS" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = 12 - }, -/obj/item/stack/sheet/wood, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"mNt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"mNF" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/chapel/east, -/area/bigredv2/outside/chapel) -"mNK" = ( -/obj/effect/decal/cleanable/blood/gibs/up, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"mNN" = ( -/turf/open/floor/darkpurple2/northwest, -/area/bigredv2/caves/lambda/research) -"mOd" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"mOe" = ( -/obj/item/paper/bigred/crazy, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"mOv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/transmitter/colony_net{ - phone_category = "Lambda Labs"; - phone_id = "Surgery"; - pixel_y = 24 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"mOB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"mOH" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/xenoautopsy/tank/broken, -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/effect/decal/warning_stripes, -/turf/open/floor/whitepurple, -/area/bigredv2/caves/lambda/xenobiology) -"mON" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/cigarettes/kpack{ - pixel_x = 6 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"mPh" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 1; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"mPr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"mPz" = ( -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"mPD" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"mPM" = ( -/obj/structure/transmitter/colony_net{ - dir = 4; - phone_category = "Eta Labs"; - phone_id = "Observation"; - pixel_x = -18 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"mPO" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/outside/lz2_west_cas) -"mQm" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"mQn" = ( -/turf/open/floor/rampbottom, -/area/bigredv2/outside/chapel) -"mQM" = ( -/turf/open/floor/darkblue2/northwest, -/area/bigredv2/caves/eta/storage) -"mQP" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"mQS" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/mars, -/area/bigredv2/outside/se) -"mQW" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"mRa" = ( -/obj/structure/bed, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"mRu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"mRD" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor, -/area/bigredv2/caves) -"mSk" = ( -/turf/open/floor/rampbottom, -/area/bigredv2/outside/marshal_office) -"mSw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"mSy" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"mSC" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"mSF" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz2_west_cas) -"mSH" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"mSJ" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"mTh" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"mTl" = ( -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"mTm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"mTv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/e) -"mTJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/whitepurplefull, -/area/bigredv2/outside/medical) -"mTM" = ( -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"mTS" = ( -/obj/structure/platform/shiva{ - dir = 1 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"mUk" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"mUA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"mUC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/eta) -"mUH" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"mVd" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/filtration_plant) -"mVf" = ( -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/c) -"mVg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Robotics" - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"mVI" = ( -/obj/item/trash/crushed_cup{ - pixel_x = -7; - pixel_y = -8 - }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/ne) -"mVR" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/mars, -/area/bigredv2/outside/s) -"mVS" = ( -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"mWp" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/mars, -/area/bigredv2/outside/c) -"mWX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"mXl" = ( -/obj/effect/spawner/random/tool, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) -"mXr" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/camera_film, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"mXt" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"mXV" = ( -/obj/item/ammo_casing/shell, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"mYe" = ( -/obj/structure/closet/crate, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"mYt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"mYv" = ( -/obj/item/trash/raisins, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"mYJ" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"mZe" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "medbay-v3" - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"mZf" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitepurplecorner, -/area/bigredv2/caves/lambda/research) -"mZo" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"mZr" = ( -/turf/open/mars_cave/mars_cave_8, -/area/bigredv2/caves_research) -"mZu" = ( -/obj/item/stack/sheet/metal{ - pixel_y = 9; - pixel_x = 9 - }, -/obj/item/stack/rods{ - pixel_y = 4; - pixel_x = -13 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"mZV" = ( -/obj/item/trash/sosjerky{ - pixel_x = -12; - pixel_y = 17 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"nay" = ( -/obj/effect/decal/strata_decals/grime/grime2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/bigredv2/outside/nw) -"naC" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/n) -"naS" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"nbb" = ( -/obj/structure/window, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"nbn" = ( -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/door/window{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/lambda/virology) -"nbu" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"nbz" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/ne) -"nbC" = ( -/obj/effect/spawner/random/claymore/highchance, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"nbF" = ( -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"nbH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"nbP" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"nci" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 1; - name = "\improper Engine Reactor" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"ncr" = ( -/obj/structure/closet/secure_closet/bar, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"ncC" = ( -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; - pixel_x = -8; - pixel_y = 9 - }, -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; - pixel_x = 4; - pixel_y = 15 - }, -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" - }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves/mining) -"ncJ" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Lambda Lab Anomaly Chamber" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"ncR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/xeno, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"ncU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -30 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/research) -"ndm" = ( -/obj/structure/janitorialcart, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"ndn" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"ndY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/storage) -"nem" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/uranium{ - amount = 50; - pixel_x = 3 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"nes" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/item/tank/air, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/filtration_plant) -"nev" = ( -/obj/structure/flora/grass/desert/lightgrass_11, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"nex" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"nfh" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/nw) -"nfk" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_lambda) -"nfn" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/w) -"nfq" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"nfF" = ( -/obj/structure/machinery/light, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/virology) -"nfQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/caves/lambda/virology) -"nfS" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/c) -"nfX" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/c) -"ngf" = ( -/obj/structure/machinery/door/poddoor/almayer/closed, -/obj/structure/cable, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ngz" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/mars, -/area/bigredv2/outside/n) -"ngD" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"ngF" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves/mining) -"ngM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"ngU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000; - pixel_y = 6; - pixel_x = 7 - }, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"nha" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/space_port) -"nhj" = ( -/obj/structure/largecrate/guns, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/bot, -/area/bigredv2/caves/eta/storage) -"nhk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Dormitories EVA"; - icon_state = "door_open"; - density = 0 - }, -/obj/item/stack/sheet/wood, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"nho" = ( -/obj/structure/sign/safety/electronics{ - pixel_y = 32 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"nhz" = ( -/turf/open/floor/darkyellow2, -/area/bigredv2/caves/eta/research) -"nhB" = ( -/obj/structure/bed/chair, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"nhD" = ( -/obj/item/trash/wy_chips_pepper{ - pixel_y = -13; - pixel_x = 24 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"nhM" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_x = 8; - pixel_y = -5 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"nhQ" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 3; - pixel_y = 15 - }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"nib" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"nic" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/warnplate/southwest, -/area/bigredv2/caves/lambda/xenobiology) -"nin" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/engineering) -"nix" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/bigredv2/caves_lambda) -"nja" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"njk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"njI" = ( -/obj/structure/showcase{ - desc = "A stand with a plastic display of some kind of weird machine."; - icon_state = "coinpress0" - }, -/turf/open/floor/carpet10_8/west, -/area/bigredv2/caves/eta/living) -"njZ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-2-4"; - name = "heavy duty power cable" - }, -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"nkb" = ( -/obj/structure/barricade/metal{ - dir = 4; - icon_state = "barricade" - }, -/turf/open/floor/whitepurple/northeast, -/area/bigredv2/caves/lambda/research) -"nko" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/mars, -/area/bigredv2/outside/e) -"nkw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"nky" = ( -/obj/structure/machinery/vending/coffee, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"nkG" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/c) -"nkS" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/warnwhite/southeast, -/area/bigredv2/caves/lambda/virology) -"nlg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/tool/wrench{ - pixel_x = -5 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"nlQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/eta) -"nlR" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/eta/xenobiology) -"nlW" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo/rock, -/turf/open/mars, -/area/space) -"nlY" = ( -/obj/item/paper/bigred/witness, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz2_south_cas) -"nma" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/asphalt/cement, -/area/bigredv2/outside/space_port) -"nmv" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/c) -"nmx" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"nmL" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/eta) -"nmS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/xenobiology) -"nnh" = ( -/obj/structure/flora/grass/desert/lightgrass_10, -/turf/open/mars, -/area/bigredv2/outside/n) -"nnV" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"nnX" = ( -/obj/item/stack/sheet/wood, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_north) -"nof" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/virology) -"nol" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"non" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"noo" = ( -/obj/structure/surface/table, -/obj/item/oldresearch/Blood, -/obj/item/oldresearch/Blood, -/obj/item/tool/pen, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/caves/eta/xenobiology) -"noJ" = ( -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"npa" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/mars, -/area/bigredv2/outside/e) -"npl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) -"npo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"npC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/nw) -"npD" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"npG" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/s) -"npI" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag{ - pixel_y = -3; - pixel_x = 10 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ - pixel_y = 3; - pixel_x = 7 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"npS" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - id = "anomalybelt" - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"npV" = ( -/obj/item/folder/yellow, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"nqr" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"nqA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"nqE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"nqL" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) -"nqP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"nqZ" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/space_port) -"nri" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"nrq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/xeno, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"nrs" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"nry" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"nrF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/good_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"nrV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"nsc" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 - }, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"nsf" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_sw) -"nso" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/trash/crushed_cup{ - pixel_x = -3; - pixel_y = 11 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"nsq" = ( -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/virology) -"nsr" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves_sw) -"nss" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"nsF" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"nsP" = ( -/obj/structure/bed, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"nsY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bar Backroom" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"ntt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/xtracks, -/obj/item/explosive/grenade/custom/large{ - pixel_x = 6; - pixel_y = 9 - }, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/outside/medical) -"ntv" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/filtration_plant) -"ntw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal{ - pixel_x = -2; - pixel_y = 3 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"ntI" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves/lambda/xenobiology) -"ntJ" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/n) -"ntO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"nuc" = ( -/obj/effect/landmark/crap_item, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/w) -"nug" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"nuk" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/n) -"nuy" = ( -/turf/open/floor/delivery, -/area/bigredv2/caves) -"nuT" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"nuZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/handrail/wire{ - dir = 1 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"nvt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"nvv" = ( -/obj/item/stack/sheet/wood{ - pixel_y = 5; - pixel_x = -4 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/n) -"nvC" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/mars, -/area/bigredv2/outside/n) -"nvD" = ( -/obj/structure/machinery/botany, -/obj/item/seeds/goldappleseed, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/marshal_office) -"nvF" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"nvQ" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"nvS" = ( -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/space_port_lz2) -"nvV" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/head/hardhat{ - pixel_x = 7; - pixel_y = 12 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_plant) -"nwv" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/s) -"nxw" = ( -/turf/open/floor/darkbluecorners2, -/area/bigredv2/outside/admin_building) -"nxD" = ( -/obj/item/stack/sheet/wood, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_north) -"nxH" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_sw) -"nxR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"nxS" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/welding, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"nxV" = ( -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"nyd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Operations Armory" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"nyn" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"nyw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-in" - }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/caves/lambda/virology) -"nyT" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/mars, -/area/bigredv2/outside/n) -"nyU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/s) -"nzc" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Lambda Lab Cell" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"nzn" = ( -/turf/open/floor/darkpurple2/northeast, -/area/bigredv2/caves/lambda/research) -"nzr" = ( -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/xenobiology) -"nzz" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"nzK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"nzS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Eta Lab Armory" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"nAf" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox{ - pixel_x = 1; - pixel_y = -7 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"nAo" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 13; - pixel_y = 10 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"nAs" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"nAK" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/core, -/obj/item/shard, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"nAL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "eta"; - name = "Eta Lockdown" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/eta) -"nAV" = ( -/obj/structure/curtain/medical, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"nBl" = ( -/obj/item/clothing/glasses/meson{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"nBo" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/caves/eta/research) -"nBU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/darkred2/northwest, -/area/bigredv2/outside/admin_building) -"nBZ" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"nCi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"nCn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/nw) -"nCN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"nCR" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/bigredv2/outside/nw) -"nCT" = ( -/obj/structure/sign/poster/ad, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"nCX" = ( -/obj/structure/closet/crate/miningcar/yellow{ - layer = 3 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"nDc" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomright" - }, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/outside/medical) -"nDj" = ( -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/research) -"nDE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"nDP" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"nDT" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"nEc" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"nEi" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"nEw" = ( -/obj/structure/showcase, -/turf/open/floor/carpet6_2/west, -/area/bigredv2/caves/eta/living) -"nEO" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"nFg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/light/built{ - dir = 4 - }, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"nFw" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"nFK" = ( -/obj/structure/machinery/power/apc/no_power/south, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/greengrid, -/area/bigredv2/outside/telecomm) -"nFN" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/c) -"nGL" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"nGO" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/w) -"nHk" = ( -/obj/structure/window, -/obj/structure/window{ - dir = 8 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/objective_landmark/close, -/obj/item/prop/magazine/book/starshiptroopers, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"nHK" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"nHL" = ( -/obj/effect/decal/cleanable/molten_item{ - pixel_x = -5; - pixel_y = -11 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"nHZ" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor/darkred2/northeast, -/area/bigredv2/outside/admin_building) -"nId" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/mars, -/area/bigredv2/outside/c) -"nIp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"nIL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"nIY" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/virology) -"nJi" = ( -/obj/structure/safe, -/obj/effect/landmark/objective_landmark/close, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"nJj" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"nJk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/surface/table/woodentable{ - dir = 8; - flipped = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"nJx" = ( -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/lambda/virology) -"nJJ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"nKe" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"nKl" = ( -/obj/structure/machinery/computer/telecomms/server{ - req_one_access_txt = "19;200" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"nKn" = ( -/obj/structure/showcase{ - icon_state = "bus" - }, -/turf/open/floor/carpet9_4/west, -/area/bigredv2/caves/eta/living) -"nKo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-interior"; - name = "Lambda Checkpoint Interior" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/asphalt/cement, -/area/bigredv2/outside/lambda_cave_cas) -"nKU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"nKX" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"nKZ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/xenobiology) -"nLe" = ( -/obj/structure/sign/safety/chem_lab{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/xenobiology) -"nLf" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"nLl" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_2, -/area/space) -"nLr" = ( -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"nLM" = ( -/obj/item/trash/cigbutt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"nLN" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"nLT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"nMe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"nME" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Equipment" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"nMF" = ( -/obj/structure/machinery/reagentgrinder{ - pixel_x = 7 - }, -/obj/structure/surface/table/woodentable, -/obj/item/weapon/gun/shotgun/double/sawn{ - pixel_x = 1; - pixel_y = 10 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"nMX" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/medical_supply_link, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/eta/research) -"nNw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/wood, -/area/bigredv2/outside/office_complex) -"nNz" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/n) -"nNI" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"nNO" = ( -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"nNW" = ( -/obj/structure/machinery/light, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"nNZ" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_se) -"nOT" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/space_port_lz2) -"nOX" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"nPa" = ( -/obj/item/ore, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"nPi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"nPn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"nPq" = ( -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"nPB" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/lz2_south_cas) -"nPD" = ( -/turf/open/mars_cave/mars_cave_8, -/area/bigredv2/caves_lambda) -"nPX" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/stack/sheet/wood{ - pixel_y = -6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"nPY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Cargo Bay Quartermaster" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"nQm" = ( -/obj/structure/platform, -/obj/structure/flora/jungle/planttop1{ - pixel_y = 10 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"nQp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"nQV" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/e) -"nRd" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"nRJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"nRY" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"nSa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/telecomm/lz2_cave) -"nSb" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"nSk" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"nSB" = ( -/obj/structure/machinery/computer/crew{ - density = 0; - pixel_y = 16 - }, -/obj/item/reagent_container/pill/happy, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"nSD" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/sw) -"nTt" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/se) -"nTL" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/darkblue2/northeast, -/area/bigredv2/caves/eta/research) -"nUj" = ( -/obj/structure/surface/table/woodentable, -/obj/item/newspaper{ - pixel_x = -7 - }, -/obj/item/prop/magazine/book/theartofwar{ - pixel_x = 11 - }, -/obj/item/tool/pen{ - pixel_x = -7 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"nUv" = ( -/obj/effect/landmark/crap_item, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"nUx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"nUL" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"nUM" = ( -/obj/item/trash/pistachios{ - pixel_x = -11; - pixel_y = -9 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/virology) -"nUT" = ( -/obj/item/shard, -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"nUX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/xenobiology) -"nVb" = ( -/obj/item/stack/rods{ - pixel_x = 9; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"nVs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"nVG" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/item/paper_bin/wy{ - pixel_x = -4; - pixel_y = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"nVJ" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"nVV" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"nVX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"nWr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_south_cas) -"nWu" = ( -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 - }, -/obj/structure/machinery/door/window{ - dir = 8 - }, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/lambda/virology) -"nWK" = ( -/obj/item/tool/pickaxe/drill, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"nWP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/virology) -"nWV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"nXd" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"nXx" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -3; - pixel_y = 12 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"nXD" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"nYa" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 30 - }, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"nYp" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"nYq" = ( -/obj/structure/prop/invuln/minecart_tracks, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"nYE" = ( -/obj/structure/surface/table, -/obj/item/ashtray/bronze, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/admin_building) -"nYV" = ( -/obj/item/tool/warning_cone, -/turf/open/mars, -/area/bigredv2/outside/s) -"nZd" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz1cave_flank" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port) -"nZe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) -"nZz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"nZK" = ( -/obj/item/ore/diamond, -/obj/item/stack/sheet/mineral/diamond{ - pixel_x = 13; - pixel_y = -5 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"nZX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"oad" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/barricade/wooden{ - pixel_y = -10 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"oai" = ( -/obj/item/tool/weldingtool{ - pixel_x = 9; - pixel_y = 1 - }, -/obj/structure/barricade/wooden{ - dir = 8; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"oas" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/lz1_north_cas) -"oaH" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"oaO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/whitegreencorner/north, -/area/bigredv2/outside/medical) -"oaW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"obf" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lambda-graveyard" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/se) -"obq" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"obS" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"obX" = ( -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"ocp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"ocC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"ocH" = ( -/obj/structure/machinery/computer/station_alert, -/obj/structure/surface/table, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"ocW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"ocX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"ocZ" = ( -/obj/item/trash/cheesie, -/obj/item/trash/pistachios, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"odb" = ( -/obj/structure/filingcabinet, -/obj/structure/sign/safety/hvac{ - pixel_x = -32 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"odp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/admin_building) -"odr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex Janitor Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"odt" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 7 - }, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/item/trash/cigbutt{ - icon_state = "ucigbutt"; - pixel_x = 2; - pixel_y = 8 - }, -/obj/structure/bed/chair{ - dir = 4; - layer = 3.06 - }, -/turf/open/mars, -/area/bigredv2/outside/nw) -"odw" = ( -/obj/structure/bed, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"ody" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/item/stack/sheet/wood{ - pixel_x = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"odz" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/item/clothing/head/soft/ferret{ - pixel_x = -4; - pixel_y = 7 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"odB" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/obj/item/prop{ - desc = "A bunch of tiny bits of shattered metal."; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "piece of shrapnel"; - pixel_x = -1; - pixel_y = 4 - }, -/turf/open/floor/whiteblue/north, -/area/bigredv2/outside/medical) -"odE" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"odM" = ( -/obj/effect/decal/cleanable/ash{ - pixel_y = -21 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"odQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"oec" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_sw) -"oeH" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"oeJ" = ( -/turf/open/floor/purple, -/area/bigredv2/caves/lambda/research) -"oeM" = ( -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/c) -"oeO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"ofn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris, -/area/bigredv2/outside/filtration_plant) -"ofp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/bigredv2/caves_lambda) -"ofD" = ( -/obj/structure/machinery/door_control{ - id = "Dormitories"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"ofG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"ofQ" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/caves/lambda/xenobiology) -"ofV" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Medical Clinic Chemistry" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"ofX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/s) -"ogv" = ( -/obj/item/trash/sosjerky{ - pixel_x = -12; - pixel_y = 17 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"ogH" = ( -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/research) -"ogL" = ( -/obj/structure/transmitter/colony_net{ - phone_category = "Solaris Ridge"; - phone_color = "green"; - phone_id = "Clinic Labs"; - pixel_y = 24 - }, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"ogT" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"ohz" = ( -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet13_5/west, -/area/bigredv2/outside/bar) -"ohI" = ( -/obj/item/clothing/under/color/orange{ - pixel_y = -7; - pixel_x = 6 - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"ohS" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"ohW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/living) -"ohY" = ( -/obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"oie" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"oil" = ( -/obj/structure/lz_sign/solaris_sign, -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/nw) -"ojs" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Lambda Lab Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"ojw" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 - }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves/mining) -"ojD" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"ojI" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/eta) -"okp" = ( -/obj/structure/largecrate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"okr" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/n) -"oku" = ( -/obj/item/trash/cigbutt{ - pixel_x = 7 - }, -/obj/item/trash/cigbutt{ - pixel_x = -1; - pixel_y = 17 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 7 - }, -/obj/item/trash/cigbutt{ - pixel_x = -9; - pixel_y = -6 - }, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -9 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/nw) -"okP" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves/mining) -"olE" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"olH" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) -"omy" = ( -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/e) -"omM" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/cult, -/area/bigredv2/outside/marshal_office) -"onc" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port_lz2) -"one" = ( -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/vomit{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"onp" = ( -/turf/open/mars_cave/mars_cave_8, -/area/bigredv2/caves_virology) -"ont" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"onF" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"onK" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/whiteyellow/northeast, -/area/bigredv2/caves/lambda/xenobiology) -"onN" = ( -/obj/item/toy/beach_ball{ - pixel_x = -6; - pixel_y = -10 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"onQ" = ( -/obj/effect/decal/strata_decals/grime/grime2, -/turf/open/asphalt/cement, -/area/bigredv2/outside/filtration_cave_cas) -"onR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/broken, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"ooc" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"oou" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"oox" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/c) -"ooI" = ( -/obj/item/stack/sheet/wood{ - pixel_x = 1; - pixel_y = 6 - }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"ooV" = ( -/obj/structure/surface/table, -/obj/item/storage/briefcase, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"opf" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_se) -"oph" = ( -/obj/structure/machinery/door_control{ - id = "Engineering"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"opA" = ( -/obj/structure/largecrate/random/barrel/green{ - pixel_y = 5; - pixel_x = 3 - }, -/obj/item/storage/fancy/cigar/matchbook{ - pixel_x = 6; - pixel_y = 17 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"opD" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"oqn" = ( -/obj/structure/closet/l3closet/security, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"oqC" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 5; - pixel_y = 11 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"oqS" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/nw) -"ora" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/space_port_lz2) -"orl" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/se) -"orv" = ( -/obj/item/device/flashlight/lamp/tripod{ - layer = 6; - pixel_y = 11 - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"ory" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/lz2_south_cas) -"orC" = ( -/obj/structure/flora/grass/desert/lightgrass_7, -/turf/open/mars, -/area/bigredv2/outside/e) -"orF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = -1; - pixel_x = -4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"orO" = ( -/obj/structure/flora/grass/desert/lightgrass_11, -/turf/open/mars, -/area/bigredv2/caves_north) -"orT" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"ose" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/warnwhite/west, -/area/bigredv2/outside/virology) -"osj" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/space_port_lz2) -"osn" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/w) -"ote" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"ott" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/n) -"otE" = ( -/turf/open/floor/warnwhite/west, -/area/bigredv2/caves/lambda/xenobiology) -"otI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreencorner/east, -/area/bigredv2/outside/medical) -"otP" = ( -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 7; - pixel_y = 9 - }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"otQ" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_north) -"otY" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/darkred2/northeast, -/area/bigredv2/caves/eta/research) -"oun" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/c) -"ouw" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"ouN" = ( -/obj/structure/machinery/biogenerator, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/xenobiology) -"ouS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/outside/admin_building) -"ouX" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/c) -"ovG" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"ovP" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Hydroponics" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"owb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/mineral/processing_unit, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"owy" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"owB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/space_port_lz2) -"owF" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"owW" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"oxd" = ( -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"oxk" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"oyf" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"oym" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"oyn" = ( -/obj/structure/surface/table, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_color = "blue"; - phone_id = "Administration" - }, -/turf/open/floor/warnwhite/east, -/area/bigredv2/outside/admin_building) -"oyC" = ( -/turf/open/floor/rampbottom/north, -/area/bigredv2/outside/marshal_office) -"oyJ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"oyP" = ( -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/xenobiology) -"ozr" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Telecommunications" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/telecomm) -"ozv" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, -/area/bigredv2/caves_virology) -"ozy" = ( -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = 8; - pixel_y = -3 - }, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -1; - pixel_y = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"ozz" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"ozJ" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_se) -"oAb" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/n) -"oAc" = ( -/obj/structure/ore_box, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"oAn" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_se) -"oAt" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"oAy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"oAH" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/darkblue2/north, -/area/bigredv2/caves/eta/research) -"oAK" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-exterior"; - name = "Lambda Checkpoint Exterior" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement/cement12, -/area/bigredv2/outside/lambda_cave_cas) -"oAM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 16 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/c) -"oAO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/w) -"oBo" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"oBw" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"oBC" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"oBR" = ( -/obj/structure/xenoautopsy/tank/alien, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/whitepurple/southwest, -/area/bigredv2/caves/lambda/xenobiology) -"oCm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"oCK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/lightreplacer, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"oDb" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/item/tool/extinguisher, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"oDf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"oDy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Technical Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"oDI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"oDT" = ( -/obj/structure/fence, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/filtration_cave_cas) -"oDU" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement, -/area/bigredv2/caves_lambda) -"oEs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light, -/obj/structure/machinery/door_control{ - id = "viro_q"; - layer = 4; - name = "Qurantine Lockdown"; - normaldoorcontrol = 1; - pixel_x = -25; - req_access_txt = "7"; - specialfunctions = 4 - }, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"oEv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/admin_building) -"oEx" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves_lambda) -"oEz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"oEC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"oEE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"oEY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000; - pixel_y = 20 - }, -/obj/structure/machinery/vending/cigarette/colony{ - layer = 3.1; - pixel_y = 9 - }, -/obj/structure/largecrate/random/mini/chest/b{ - layer = 3.2; - pixel_y = -4 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"oFq" = ( -/obj/effect/landmark/objective_landmark/far, -/obj/structure/sink{ - pixel_x = 1; - pixel_y = 20 - }, -/obj/structure/mirror{ - pixel_y = 29 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/admin_building) -"oFB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"oFX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreen/east, -/area/bigredv2/caves/lambda/virology) -"oGj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigred/ground/garage_workshop) -"oGl" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-2"; - name = "heavy duty power cable" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"oGA" = ( -/obj/item/tool/pickaxe/drill, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves/mining) -"oGB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"oGM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"oGP" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/aspen{ - pixel_x = -7 - }, -/obj/item/reagent_container/food/drinks/cans/aspen{ - pixel_x = 1 - }, -/obj/item/reagent_container/food/drinks/cans/aspen{ - pixel_x = 7 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"oHc" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port) -"oHi" = ( -/obj/structure/fence, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"oHj" = ( -/obj/item/reagent_container/pill/cyanide, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"oHK" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"oHT" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"oIe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"oIg" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"oIr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/camera/oldcamera, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"oIx" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"oIB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/woodentable, -/obj/item/device/camera, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"oIH" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/outside/n) -"oIK" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"oIZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"oJa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/e) -"oJi" = ( -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"oJl" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/n) -"oJs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"oKp" = ( -/obj/item/ammo_casing/bullet, -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/whitegreencorner/east, -/area/bigredv2/outside/medical) -"oKH" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"oKJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Medical Clinic"; - density = 0; - icon_state = "door_open" - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"oKK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/good_item, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"oLa" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/eta) -"oLB" = ( -/turf/open/floor/whitegreencorner, -/area/bigredv2/caves/lambda/xenobiology) -"oLH" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"oLX" = ( -/obj/item/tool/pickaxe, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"oLY" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit{ - icon_state = "open" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"oLZ" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"oMa" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/caves_lambda) -"oMg" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port_lz2) -"oMq" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/outside/space_port) -"oMA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail/medical{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"oNl" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_lambda) -"oNo" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"oNs" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/c) -"oNw" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Command Complex"; - density = 0; - icon_state = "door_open" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"oNx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"oNI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"oOh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkgreencorners2/east, -/area/bigredv2/caves/eta/storage) -"oOm" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/knife, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"oOp" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/cell/hyper, -/turf/open/floor/whitepurple/northwest, -/area/bigredv2/caves/lambda/research) -"oOw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/river, -/area/bigredv2/outside/c) -"oOP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/c) -"oOS" = ( -/obj/structure/bed/bedroll{ - dir = 1 - }, -/obj/item/prop/colony/usedbandage{ - dir = 5; - pixel_y = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"oOX" = ( -/obj/structure/machinery/vending/sovietsoda{ - icon_state = "sovietsoda-broken"; - stat = 1 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"oPg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/item/weapon/gun/rifle/nsg23/no_lock, -/obj/item/ammo_magazine/rifle/nsg23, -/obj/item/ammo_magazine/rifle/nsg23, -/obj/item/ammo_magazine/rifle/nsg23/ap, -/obj/item/ammo_magazine/rifle/nsg23/ap, -/obj/item/ammo_magazine/rifle/nsg23/extended, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"oPF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/largecrate/supply/medicine/medkits{ - pixel_x = -3 - }, -/obj/structure/largecrate/supply/supplies/flares{ - pixel_x = -1; - pixel_y = 20; - layer = 3.1 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"oPG" = ( -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"oPH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"oPO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"oPT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/c) -"oPX" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"oQq" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"oQC" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"oQW" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/mars, -/area/bigredv2/outside/nw) -"oRa" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"oRr" = ( -/obj/structure/machinery/light/small/built{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/virology) -"oRw" = ( -/obj/item/tool/pickaxe, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"oRV" = ( -/obj/structure/janitorialcart, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"oSF" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"oSH" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_y = -8; - pixel_x = -6 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"oSV" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/mars, -/area/bigredv2/caves_north) -"oSZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"oTc" = ( -/obj/effect/spawner/random/attachment, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"oTi" = ( -/obj/structure/machinery/power/turbine, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"oTs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"oTH" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/tool/pickaxe/drill, -/turf/open/floor/purple/southwest, -/area/bigredv2/caves/lambda/research) -"oTW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"oUd" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_north) -"oUn" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/filtration_plant) -"oUF" = ( -/obj/item/frame/table, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/outside/office_complex) -"oUV" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/eta) -"oVk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/telecomm/lz2_cave) -"oVn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/e) -"oVq" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz1entrance_v2" - }, -/turf/open/mars, -/area/bigredv2/outside/nw) -"oVs" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"oVt" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Evidence Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"oWn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = -32 - }, -/obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/xenobiology) -"oWt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"oWO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/item/tool/extinguisher, -/turf/open/floor/asteroidwarning/north, -/area/bigred/ground/garage_workshop) -"oWW" = ( -/obj/item/tool/warning_cone{ - pixel_x = -13; - pixel_y = 11 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"oXb" = ( -/obj/structure/surface/rack, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/caves/eta/research) -"oXv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"oXA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/red, -/area/bigredv2/outside/marshal_office) -"oXK" = ( -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"oXL" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"oXY" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"oYe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/coffin/woodencrate, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"oYB" = ( -/obj/item/ore, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"oZi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/admin_building) -"oZj" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/outside/lz1_telecomm_cas) -"oZx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"oZE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"oZP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"oZQ" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/bigredv2/outside/filtration_plant) -"oZS" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"oZT" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"pad" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 - }, -/obj/structure/surface/table, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"pah" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"paC" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"pbh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"pbn" = ( -/obj/item/weapon/shield/riot{ - pixel_x = -6 - }, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"pbq" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/se) -"pbr" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/solaris, -/area/bigredv2/outside/filtration_cave_cas) -"pbL" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"pbT" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"pbX" = ( -/obj/effect/spawner/random/tool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"pbZ" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"pca" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitegreencorner/north, -/area/bigredv2/outside/medical) -"pcf" = ( -/obj/structure/sign/safety/manualopenclose{ - desc = "The now broken door access console for these podlocks. Seems like some poor bastard was frantically trying to slide their card due to the the card reader being scraped up. Poor bastards."; - icon = 'icons/obj/structures/machinery/monitors.dmi'; - icon_state = "auth_off"; - name = "Access console"; - pixel_y = -2 - }, -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/caves/mining) -"pcF" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"pcY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"pde" = ( -/turf/open/mars_cave/mars_cave_12, -/area/bigredv2/caves/eta/research) -"pdg" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/space_port) -"pds" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/sw) -"pdv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/warning_cone{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"pdC" = ( -/obj/structure/machinery/computer/communications{ - dir = 8 - }, -/obj/structure/surface/table, -/turf/open/floor/darkblue2/southeast, -/area/bigredv2/outside/admin_building) -"pdJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"pdM" = ( -/obj/item/frame/table, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"pee" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/filtration_plant) -"peo" = ( -/obj/structure/showcase{ - icon_state = "broadcaster_send" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"per" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/dorms) -"pev" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"pex" = ( -/obj/item/prop{ - icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'; - icon_state = "m41ae2"; - name = "M41AE2 Heavy Pulse Rifle"; - desc = "A large claw mark across this weapon indicates it is inoperable."; - pixel_x = 4; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"peC" = ( -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -9 - }, -/obj/item/trash/cigbutt{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/mars, -/area/bigredv2/outside/nw) -"peD" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"peP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Operations" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"peY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/filtration_plant) -"pft" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/e) -"pfy" = ( -/obj/structure/closet/wardrobe/virology_white, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"pfJ" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"pfX" = ( -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/lambda/virology) -"pgK" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"phg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"phm" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"phu" = ( -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"phH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"phQ" = ( -/obj/item/paper/bigred/them, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"pjl" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"pjA" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"pjM" = ( -/obj/item/stack/sheet/wood{ - pixel_y = -13; - pixel_x = 12 - }, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/mars, -/area/bigredv2/outside/n) -"pjN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"pjW" = ( -/obj/item/ore{ - pixel_x = -1; - pixel_y = -8 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"pjY" = ( -/obj/structure/flora/grass/desert/lightgrass_7, -/turf/open/mars, -/area/bigredv2/outside/eta) -"pke" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 13 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"pkj" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopleft" - }, -/obj/structure/barricade/handrail/medical{ - dir = 1 - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"pkL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"pkQ" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"pkU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/silver, -/obj/item/stack/sheet/mineral/silver{ - amount = 20 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"pli" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/s) -"plG" = ( -/obj/structure/largecrate, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"plR" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"plX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/woodentable{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"plY" = ( -/obj/structure/fence, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/filtration_cave_cas) -"pml" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"pmv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/darkgreen2/east, -/area/bigredv2/caves/lambda/xenobiology) -"pmC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"pmG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"pmM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"pmS" = ( -/turf/open/mars, -/area/bigredv2/caves_north) -"pnb" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/e) -"pnu" = ( -/obj/effect/decal/cleanable/mucus, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/xenobiology) -"pnP" = ( -/obj/structure/fence, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"pnR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/outside/medical) -"pog" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"poj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"pom" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/caves_north) -"pop" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"poD" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves_research) -"ppe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"ppf" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/chapel/east, -/area/bigredv2/outside/chapel) -"pph" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"ppp" = ( -/obj/structure/sign/safety/hazard, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"ppr" = ( -/obj/structure/surface/table, -/obj/item/tool/screwdriver, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Eta Labs"; - phone_color = "yellow"; - phone_id = "Robotics" - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"ppy" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"ppG" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/structure/machinery/camera/autoname, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"ppH" = ( -/obj/structure/machinery/chem_master, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"pqo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"pqY" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3; - pixel_x = 24 - }, -/obj/item/trash/chips{ - pixel_y = -6; - pixel_x = -3 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"prj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/n) -"prm" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"prY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"psn" = ( -/obj/structure/barricade/wooden{ - dir = 8; - pixel_y = 12 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"psY" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_se) -"ptp" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"ptw" = ( -/obj/structure/machinery/flasher/portable, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"ptL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"ptM" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/lightbrown{ - pixel_x = 10; - pixel_y = -5 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"ptR" = ( -/turf/open/asphalt/cement, -/area/bigredv2/outside/lambda_cave_cas) -"pua" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz1_north_cas) -"puk" = ( -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_sw) -"puq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/spawner/random/tool{ - pixel_x = -8; - pixel_y = -6 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"puT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"pvj" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"pvl" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"pvn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"pvq" = ( -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"pvs" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/cameras/wooden_tv, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"pvA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/s) -"pvD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"pvW" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/s) -"pwc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/c) -"pwk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/caves/eta/living) -"pwH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/arcade, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"pwJ" = ( -/obj/item/prop/helmetgarb/gunoil, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"pwM" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/s) -"pwY" = ( -/turf/closed/wall/solaris{ - damage = 500; - damage_overlay = 2; - current_bulletholes = 1 - }, -/area/bigredv2/outside/office_complex) -"pwZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/eta/research) -"pxi" = ( -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"pxV" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"pxY" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"pye" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement/cement15, -/area/bigredv2/outside/filtration_cave_cas) -"pyj" = ( -/obj/structure/machinery/photocopier, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"pzc" = ( -/obj/item/tool/warning_cone{ - pixel_x = 16; - pixel_y = 14 - }, -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/mars, -/area/bigredv2/outside/n) -"pze" = ( -/obj/item/trash/eat{ - pixel_x = -7; - pixel_y = 6 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/ne) -"pzh" = ( -/obj/structure/machinery/computer/telecomms/monitor{ - req_one_access_txt = "19;200" - }, -/obj/structure/transmitter/colony_net{ - dir = 4; - phone_category = "Solaris Ridge"; - phone_color = "yellow"; - phone_id = "Communications"; - pixel_x = -18 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"pzq" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/mars, -/area/bigredv2/outside/w) -"pzC" = ( -/obj/structure/window/framed/solaris, -/obj/structure/curtain, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"pzZ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/item/stack/sheet/wood{ - pixel_y = -7 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"pAc" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) -"pAm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"pAu" = ( -/obj/item/bedsheet/brown, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/bed, -/obj/structure/bed{ - pixel_y = 13 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"pAB" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/obj/item/trash/cigbutt{ - pixel_x = -1; - pixel_y = 17 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/se) -"pAC" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"pAL" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_x = -8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"pAQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Bar Backroom" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"pAX" = ( -/turf/open/floor, -/area/bigredv2/outside/lambda_cave_cas) -"pBg" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"pBA" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/filtration_plant) -"pBG" = ( -/obj/structure/closet/toolcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"pCi" = ( -/obj/item/clothing/mask/gas, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/filtration_plant) -"pCF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"pCJ" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"pCY" = ( -/obj/structure/showcase{ - icon_state = "mechfab1" - }, -/turf/open/floor/carpet5_1/west, -/area/bigredv2/caves/eta/living) -"pDi" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/se) -"pDt" = ( -/obj/item/tool/warning_cone{ - pixel_x = 5; - pixel_y = 13 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/filtration_plant) -"pDC" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"pDM" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "eta"; - name = "Eta Lockdown" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/lz2_south_cas) -"pDU" = ( -/obj/item/prop/colony/folded_bedroll{ - pixel_x = -5; - pixel_y = -4 - }, -/obj/item/stack/medical/bruise_pack{ - pixel_x = -8; - pixel_y = 2 - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"pEb" = ( -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"pEc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"pEs" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/warnplate/north, -/area/bigredv2/caves/lambda/xenobiology) -"pEx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"pEz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"pEF" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"pEX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"pFe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Bar" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"pFf" = ( -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"pFi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/item/clipboard, -/turf/open/floor/whitepurple/west, -/area/bigredv2/caves/lambda/research) -"pFo" = ( -/obj/item/weapon/baton/damaged{ - pixel_y = 20 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"pFz" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whiteblue/north, -/area/bigredv2/outside/medical) -"pGp" = ( -/turf/open/floor/whitepurplecorner, -/area/bigredv2/caves/lambda/research) -"pGw" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_north) -"pGJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"pHt" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"pHy" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engineering Workshop" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"pHK" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/outside/filtration_plant) -"pHY" = ( -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"pIm" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/xenobiology) -"pIn" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"pIv" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"pIH" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/pinpointer, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"pIR" = ( -/obj/structure/largecrate/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"pJc" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/mars, -/area/bigredv2/outside/c) -"pJg" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/c) -"pJh" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"pJp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/floor/loadingarea/west, -/area/bigredv2/outside/cargo) -"pJs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 2; - pixel_y = 17 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"pJv" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) -"pJA" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves/mining) -"pJH" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"pJI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"pJR" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"pJW" = ( -/obj/item/stack/sheet/metal{ - pixel_x = 3; - pixel_y = -11 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"pKn" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_x = -9; - pixel_y = 13 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"pKB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"pKM" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/n) -"pLc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/research) -"pLe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/e) -"pLi" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/c) -"pLp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"pLy" = ( -/obj/item/reagent_container/food/drinks/bottle/beer/craft{ - pixel_y = -9; - pixel_x = -7 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"pLC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"pLJ" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/eta) -"pLO" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib3"; - pixel_x = 17 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 13 - }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"pMw" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/virology) -"pMX" = ( -/obj/item/shard, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"pNe" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"pNv" = ( -/turf/open/floor/warnwhite, -/area/bigredv2/outside/office_complex) -"pNJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/outside/medical) -"pOq" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"pOC" = ( -/obj/structure/surface/table/reinforced, -/obj/item/restraint/handcuffs, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"pOE" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/trash/crushed_cup{ - pixel_x = -7; - pixel_y = -8 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"pOF" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/item/ammo_casing/shell, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"pOS" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_se) -"pPa" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" - }, -/obj/structure/cable, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) -"pPj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/lambda_cave_cas) -"pPl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_north) -"pPr" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"pPv" = ( -/obj/structure/surface/table, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Eta Labs"; - phone_color = "Blue"; - phone_id = "Director" - }, -/turf/open/floor/darkblue2/southeast, -/area/bigredv2/caves/eta/research) -"pPB" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" - }, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) -"pQq" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/outside/lz2_west_cas) -"pQr" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/mars, -/area/bigredv2/outside/filtration_plant) -"pQs" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"pQv" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigredv2/caves) -"pQz" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/queen_spawn, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"pQE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "11-1" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"pQH" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"pQM" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave, -/area/bigredv2/outside/lz1_telecomm_cas) -"pRb" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"pRp" = ( -/obj/structure/sign/safety/biohazard{ - pixel_x = 7; - pixel_y = -24 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/virology) -"pRs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control{ - id = "Medical"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"pRv" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"pRP" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/telecomm/n_cave) -"pSf" = ( -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"pSm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkred2/southeast, -/area/bigredv2/caves/eta/research) -"pSK" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = -5 - }, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 1 - }, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 7 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"pSX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"pTa" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"pTf" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port_lz2) -"pTt" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz1containers_scramble" - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"pTw" = ( -/obj/structure/machinery/conveyor{ - dir = 9; - id = "anomalybelt" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"pTB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) -"pTD" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/w) -"pTI" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 32 - }, -/obj/item/storage/box/gloves, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"pTM" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/nw) -"pUi" = ( -/obj/item/weapon/broken_bottle, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"pUk" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkred2, -/area/bigredv2/caves/eta/research) -"pUB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Eta Lab Storage Bay" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/storage) -"pUQ" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"pUS" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"pUX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"pUZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Complex" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"pVf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/c) -"pVA" = ( -/obj/item/trash/pistachios{ - pixel_x = -3; - pixel_y = 11 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"pVJ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"pVO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "Office Complex 2"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"pVR" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"pVV" = ( -/turf/open/gm/river/red, -/area/bigredv2/outside/c) -"pVY" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"pWb" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor, -/area/bigredv2/outside/lambda_cave_cas) -"pWk" = ( -/obj/item/tool/warning_cone{ - pixel_y = 17 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/filtration_plant) -"pWo" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/radio/headset, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"pWq" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/obj/structure/bed/bedroll{ - dir = 10 - }, -/obj/item/prop/colony/usedbandage{ - dir = 4; - pixel_x = -1; - pixel_y = -4 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"pWs" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/engineering) -"pWt" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"pWu" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random, -/obj/item/device/flashlight/lamp{ - pixel_y = 15 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"pWJ" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/virology) -"pWP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"pXd" = ( -/obj/structure/machinery/autolathe, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitepurple/northeast, -/area/bigredv2/caves/lambda/research) -"pXX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/space_port_lz2) -"pYs" = ( -/turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"pYC" = ( -/obj/effect/landmark/crap_item, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/c) -"pZl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/outside/medical) -"pZp" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/s) -"pZy" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_y = 17 - }, -/obj/item/reagent_container/food/snacks/jellysandwich/cherry, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"pZz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/virology) -"pZC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/restraint/adjustable/cable, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"pZS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/southeast, -/area/bigredv2/outside/admin_building) -"pZZ" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"qao" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/lambda_cave_cas) -"qav" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/caves/eta/xenobiology) -"qaC" = ( -/obj/item/clothing/suit/storage/hazardvest, -/obj/effect/decal/cleanable/blood, -/obj/item/clothing/head/hardhat, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"qaJ" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"qaR" = ( -/obj/vehicle/powerloader/ft, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"qbp" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"qcA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"qcB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkred2/northwest, -/area/bigredv2/caves/eta/xenobiology) -"qcE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"qcU" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"qcZ" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"qdj" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/breakroom) -"qdu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"qdz" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/nw) -"qdD" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/space_port_lz2) -"qeb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"qeG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"qfj" = ( -/obj/effect/decal/strata_decals/grime/grime2, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/space_port) -"qfo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"qfz" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/eta) -"qfA" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"qfM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"qgf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_north) -"qgC" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/nw) -"qgE" = ( -/obj/structure/machinery/vending/hydronutrients, -/obj/structure/machinery/light, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/xenobiology) -"qgZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/bigredv2/caves_lambda) -"qha" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/whiteyellow/southeast, -/area/bigredv2/caves/lambda/xenobiology) -"qhg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"qhk" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 9; - pixel_y = -2 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"qht" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"qhw" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/mars, -/area/bigredv2/outside/n) -"qhS" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/platform_decoration, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"qhX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-in" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/turf/open/floor/plating/platebot, -/area/bigredv2/outside/space_port) -"qir" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"qiz" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/hvac{ - pixel_x = -32 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"qiK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"qiL" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"qiR" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ - pixel_y = 8; - pixel_x = -2 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"qjf" = ( -/obj/structure/surface/table, -/obj/item/toy/sword, -/obj/item/toy/gun, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"qjj" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/chapel/north, -/area/bigredv2/outside/chapel) -"qjp" = ( -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/xenobiology) -"qjw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/virology) -"qjA" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"qjO" = ( -/obj/structure/prop/almayer/computers/mapping_computer{ - desc = "A strange-looking collection of coordinate inputs, relay shunts, and wiring. Designed to operate an experimental teleporter."; - name = "\improper Teleporter Targeting Computer" - }, -/turf/open/floor/greengrid, -/area/space) -"qkf" = ( -/obj/structure/bed/roller, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"qkj" = ( -/obj/structure/airlock_assembly, -/obj/item/stack/rods{ - pixel_y = -2 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"qkn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/eta/research) -"qks" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/grimy, -/area/bigredv2/outside/admin_building) -"qkv" = ( -/obj/structure/sign/safety/biohazard{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"qlK" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"qlQ" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/w) -"qlY" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/darkgreen2/north, -/area/bigredv2/caves/lambda/virology) -"qme" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"qmm" = ( -/obj/structure/cargo_container/hd/right/alt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"qmw" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/glass, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 16 - }, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 7; - pixel_y = 12 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"qmA" = ( -/obj/item/reagent_container/blood/OMinus, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"qnx" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -6; - pixel_y = 12 - }, -/obj/item/ore{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"qnA" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"qnF" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"qnT" = ( -/turf/open/floor/grimy, -/area/bigredv2/outside/office_complex) -"qoG" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"qoM" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"qoO" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_virology) -"qoZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigred/ground/garage_workshop) -"qpb" = ( -/obj/structure/surface/table, -/obj/item/clothing/under/color/orange, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"qpC" = ( -/obj/structure/fence, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/filtration_cave_cas) -"qpR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/firstaid/fire/empty, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"qqh" = ( -/obj/structure/surface/rack, -/obj/item/trash/wy_chips_pepper{ - pixel_y = -13; - pixel_x = 24 - }, -/obj/item/explosive/grenade/high_explosive{ - pixel_x = -1; - pixel_y = -2 - }, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"qql" = ( -/obj/structure/platform_decoration/shiva{ - dir = 1 - }, -/obj/structure/platform_decoration/shiva{ - dir = 4 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"qqn" = ( -/obj/structure/closet/secure_closet/marshal, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/floor4, -/area/bigredv2/outside/marshal_office) -"qqx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"qqR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Technical Lab" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"qrW" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_sw) -"qrZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/fire, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"qsd" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"qss" = ( -/obj/structure/machinery/botany/extractor, -/turf/open/floor/whitegreen/north, -/area/bigredv2/caves/lambda/xenobiology) -"qsy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/whitegreencorner/north, -/area/bigredv2/outside/medical) -"qsE" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigred/ground/garage_workshop) -"qsF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"qsI" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/trash/tray, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"qsS" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitepurple/northeast, -/area/bigredv2/caves/lambda/xenobiology) -"qsT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/bigredv2/outside/lambda_cave_cas) -"qtg" = ( -/obj/effect/acid_hole{ - dir = 4 - }, -/turf/closed/wall/solaris, -/area/bigredv2/outside/medical) -"qtp" = ( -/obj/structure/machinery/teleport/hub, -/turf/open/floor/podhatch/southeast, -/area/bigredv2/caves/lambda/research) -"qtv" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"qtw" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/general_offices) -"qtD" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"qtJ" = ( -/obj/item/robot_parts/robot_component/diagnosis_unit{ - pixel_y = 15 - }, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"qtW" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_lambda) -"quc" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/mars, -/area/bigredv2/outside/n) -"qun" = ( -/obj/structure/surface/table, -/obj/item/tool/weedkiller/D24, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"qup" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/eta) -"qux" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"quE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Chief Engineer's Office" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"quV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"qve" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/research) -"qvm" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/n) -"qvy" = ( -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"qvH" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"qvK" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_research) -"qvL" = ( -/obj/structure/machinery/power/breakerbox/activated, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"qvP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"qvU" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/c) -"qwc" = ( -/obj/structure/machinery/light/double{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz2_south_cas) -"qwr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"qwE" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"qwJ" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"qxk" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"qxC" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"qxR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/barrel/white, -/obj/item/stack/medical/ointment{ - pixel_x = 2; - pixel_y = 16 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"qxU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/research) -"qya" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer/plant_analyzer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitegreen_v/northeast, -/area/bigredv2/caves/lambda/xenobiology) -"qye" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"qyn" = ( -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/research) -"qyz" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/mp27, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/admin_building) -"qyJ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"qyO" = ( -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -11; - pixel_y = -4; - layer = 3.2 - }, -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 7; - pixel_y = 16; - layer = 3.1 - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/item/trash/hotdog{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"qzp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"qzy" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/caves_north) -"qzL" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"qzT" = ( -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/outside/space_port) -"qAe" = ( -/obj/item/ore{ - pixel_x = -1; - pixel_y = -8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"qAV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"qBd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/darkish, -/area/bigredv2/caves/eta/storage) -"qBt" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/eta) -"qBH" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"qBJ" = ( -/obj/structure/fence, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"qCa" = ( -/obj/item/tool/weldpack, -/obj/item/frame/rack, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"qCh" = ( -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/shuttle/escapepod/floor1, -/area/bigredv2/oob) -"qCu" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/living) -"qCP" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"qCU" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/filtration_cave_cas) -"qCW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/grimy, -/area/bigredv2/outside/admin_building) -"qCX" = ( -/obj/structure/bed/roller, -/obj/structure/closet/bodybag, -/turf/open/floor/whitegreencorner/west, -/area/bigredv2/outside/medical) -"qDf" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/telecomm/n_cave) -"qDg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/northwest, -/area/bigredv2/outside/admin_building) -"qDi" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"qDt" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"qDw" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/lambda/xenobiology) -"qDC" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"qDI" = ( -/obj/structure/flora/grass/desert/lightgrass_7, -/turf/open/mars, -/area/bigredv2/outside/s) -"qDR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"qDU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"qEy" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/ne) -"qEV" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"qFr" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/mars, -/area/bigredv2/outside/nw) -"qFs" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"qFS" = ( -/obj/structure/closet/firecloset, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"qFZ" = ( -/obj/structure/prop/dam/crane/damaged, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"qGq" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper General Store" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_store) -"qGs" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreencorner/north, -/area/bigredv2/outside/medical) -"qGw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/s) -"qGD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Operating Theatre" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"qGE" = ( -/obj/structure/bed, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"qGJ" = ( -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/lambda/research) -"qHo" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"qHs" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"qHF" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigred/ground/garage_workshop) -"qHG" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"qHK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"qHW" = ( -/obj/item/ammo_casing/bullet, -/turf/open/mars, -/area/bigredv2/outside/c) -"qHZ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"qIg" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"qIC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/s) -"qIJ" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"qIR" = ( -/obj/structure/platform/shiva{ - dir = 1 - }, -/obj/structure/platform/shiva, -/obj/structure/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"qIU" = ( -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/whitepurple/north, -/area/bigredv2/caves/lambda/research) -"qJz" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 1; - name = "\improper Engine Reactor" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"qJA" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"qJM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"qJN" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"qKc" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/pipes/valve/open, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"qKe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"qKz" = ( -/obj/structure/fence, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"qKU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Medical Clinic CMO's Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"qLb" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"qLu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_north) -"qLI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt{ - pixel_x = -9; - pixel_y = -6 - }, -/obj/item/trash/cigbutt{ - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"qLW" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/eta) -"qMe" = ( -/obj/structure/barricade/handrail/medical{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/nw) -"qMs" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"qMH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"qMK" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/s) -"qML" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/w) -"qMN" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/s) -"qMU" = ( -/obj/structure/platform/shiva, -/obj/structure/platform/shiva{ - dir = 1 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"qNf" = ( -/obj/item/trash/popcorn{ - pixel_y = 9 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"qNG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/crate/freezer/rations, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"qNJ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"qNM" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"qNP" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"qOq" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"qOv" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/caves/eta/xenobiology) -"qOz" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement, -/area/bigredv2/outside/filtration_cave_cas) -"qOC" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"qOZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Library" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/library) -"qPc" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/w) -"qPD" = ( -/obj/item/folder/yellow, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"qPJ" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/mars, -/area/bigredv2/outside/nw) -"qPT" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/eta) -"qQq" = ( -/turf/closed/wall/solaris{ - damage = 2677; - damage_overlay = 8; - current_bulletholes = 3 - }, -/area/bigredv2/outside/office_complex) -"qQM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"qRg" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"qRn" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/space_port_lz2) -"qRC" = ( -/obj/item/tool/weedkiller, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"qRP" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/eastleft, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"qSj" = ( -/obj/structure/cargo_container/hd/mid/alt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"qSt" = ( -/obj/item/tool/hatchet, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"qSE" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves_north) -"qSP" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/outside/space_port) -"qSW" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/mars, -/area/bigredv2/outside/s) -"qTa" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/e) -"qTr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"qTy" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves/lambda/research) -"qTz" = ( -/obj/structure/machinery/sensortower{ - pixel_x = -9 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/caves_lambda) -"qTJ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"qTK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"qTP" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/e) -"qTY" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"qUd" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/filtration_plant) -"qUf" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"qUw" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"qUB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"qUE" = ( -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/outside/medical) -"qUI" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 7 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"qUR" = ( -/obj/structure/surface/table, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"qUU" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"qUZ" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/mars, -/area/bigredv2/outside/s) -"qVc" = ( -/obj/item/trash/cigbutt{ - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"qVi" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"qVk" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"qVt" = ( -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 10; - pixel_y = 6 - }, -/obj/item/stack/sheet/cardboard{ - pixel_x = 2; - pixel_y = -5; - layer = 3.01 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"qVC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/eta) -"qVI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"qVM" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkblue2/southwest, -/area/bigredv2/caves/eta/research) -"qVV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"qWe" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port) -"qWf" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"qWg" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"qWx" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"qWC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"qXk" = ( -/obj/structure/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"qXx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/medical{ - pixel_y = -32 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"qXI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/metal{ - dir = 8 - }, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"qYC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/southright, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"qYU" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/stack/sheet/wood{ - pixel_y = -2 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"qYW" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/research) -"qZe" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -30 - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/light/built{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"qZl" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"qZH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"qZV" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"qZX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"rac" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Private Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"rah" = ( -/obj/structure/pipes/unary/freezer{ - icon_state = "freezer_1" - }, -/obj/structure/sign/safety/med_cryo{ - pixel_x = -16 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"raY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"rbd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkred2/northeast, -/area/bigredv2/caves/eta/xenobiology) -"rbs" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/lambda_cave_cas) -"rbC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"rbG" = ( -/obj/structure/lamarr, -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/research) -"rbP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "\improper Engine Reactor" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"rcj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement15, -/area/bigredv2/outside/space_port) -"rcm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"rcw" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"rcR" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"rcU" = ( -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"rcZ" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lz2_south_cas) -"rdk" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"rdl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/bodybag, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"rdt" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random{ - pixel_y = -5; - pixel_x = -3 - }, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"rdR" = ( -/turf/open/floor, -/area/bigredv2/outside/lz2_south_cas) -"ree" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/filtration_cave_cas) -"ref" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"reL" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "vault_v2" - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"reX" = ( -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_y = 7; - pixel_x = -5 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"rfj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"rfv" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/window, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"rfE" = ( -/turf/open/gm/river/desert/deep/toxic, -/area/bigredv2/outside/c) -"rfN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/drill{ - pixel_y = 8 - }, -/obj/item/tool/pickaxe/drill{ - pixel_y = -8 - }, -/obj/item/tool/pickaxe/drill, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"rfS" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/surgery/blue, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"rgb" = ( -/obj/item/tool/shovel, -/turf/open/mars, -/area/bigredv2/outside/nw) -"rgd" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/suit/storage/lawyer/bluejacket, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"rgg" = ( -/obj/structure/sign/safety/biohazard{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/light/small/built{ - dir = 1 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/caves/lambda/virology) -"rgk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/weapon/baseballbat/metal{ - pixel_x = -16; - pixel_y = 18 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"rgq" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/research) -"rgJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/caves/lambda/virology) -"rgX" = ( -/obj/structure/surface/table/reinforced, -/obj/item/pizzabox/vegetable, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"rgZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/prop3{ - pixel_y = 32 - }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"rha" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves/lambda/xenobiology) -"rhg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"rhl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"rhr" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/n) -"rhx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Dormitories Lavatory"; - density = 0; - icon_state = "door_open" - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"rhV" = ( -/obj/structure/window, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"rij" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/item/weapon/gun/rifle/m41a/training, -/obj/effect/spawner/gibspawner/human, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"riu" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"riD" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/bonesetter{ - pixel_y = 6; - pixel_x = -7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"riG" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"riO" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_research) -"rja" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"rjd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"rjr" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"rjw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/filtration_cave_cas) -"rjF" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 19 - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"rjL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/e) -"rjQ" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/toxin{ - pixel_y = 6; - pixel_x = -7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"rjZ" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/warnwhite/southwest, -/area/bigredv2/caves/lambda/virology) -"rkF" = ( -/obj/item/clothing/suit/storage/CMB{ - pixel_x = -6; - pixel_y = -10 - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"rld" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"rlw" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/whitegreencorner/west, -/area/bigredv2/outside/medical) -"rlz" = ( -/obj/item/ammo_casing/shell, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"rmi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"rml" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"rmw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"rmN" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = -32 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"rmO" = ( -/turf/open/floor/purplecorner, -/area/bigredv2/caves/lambda/research) -"rmP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"rmS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"rnc" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_research) -"rnd" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"rnf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"rnz" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/w) -"rnF" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"rnL" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"rnP" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz1_north_cas) -"rnZ" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/mars, -/area/bigredv2/outside/s) -"roA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/latex{ - pixel_x = 3 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"roV" = ( -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"rpe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/xenobiology) -"rpk" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"rpm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"rpn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"rpw" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves) -"rpD" = ( -/obj/item/stack/cable_coil/cut{ - pixel_x = -3; - pixel_y = -5 - }, -/obj/item/stack/cable_coil/cut{ - pixel_x = 9; - pixel_y = -8 - }, -/obj/item/stack/cable_coil/cut{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves/mining) -"rpM" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"rqf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/w) -"rqq" = ( -/obj/item/paper/bigred/final, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"rqx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Bar Maintenance" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"rqH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"rqL" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"rqR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories"; - welded = 1 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"rqS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"rqT" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"rqU" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"rrh" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"rrl" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"rrn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"rrs" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"rrJ" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"rsa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"rsy" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/flask/detflask, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"rsH" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/n) -"rsJ" = ( -/obj/structure/showcase{ - icon_state = "bus" - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"rta" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"rtl" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/cult, -/area/bigredv2/outside/marshal_office) -"rtx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"rtP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/filtration_cave_cas) -"rtW" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"rtX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating/warnplate/west, -/area/bigredv2/outside/telecomm/warehouse) -"ruc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"rue" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"ruh" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"rus" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/s) -"rut" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/headset, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"ruz" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"rvr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"rvM" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"rvO" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-interior"; - name = "Lambda Checkpoint Interior" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves_north) -"rwe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/lambda_cave_cas) -"rwh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"rwi" = ( -/obj/structure/cable{ - icon_state = "11-2" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"rwp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/welding, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"rxa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/caves/eta/research) -"rxx" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/w) -"rxB" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" - }, -/obj/item/stack/sheet/wood{ - pixel_y = -8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"rxV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -2 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"ryf" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars/mars_dirt_10, -/area/bigredv2/caves/eta/xenobiology) -"ryj" = ( -/obj/item/storage/belt/grenade, -/obj/structure/closet/crate, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ryk" = ( -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) -"ryr" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"ryy" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves/mining) -"ryG" = ( -/obj/structure/closet/hydrant{ - pixel_y = -32 - }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/xenobiology) -"ryH" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"ryJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"ryP" = ( -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/eta/research) -"rzm" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"rzD" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"rzO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"rzT" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"rzV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/virology) -"rAr" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor/purple/west, -/area/bigredv2/caves/lambda/research) -"rAD" = ( -/obj/structure/machinery/light, -/turf/open/asphalt/cement/cement12, -/area/bigredv2/outside/lambda_cave_cas) -"rAF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/filtration_cave_cas) -"rAH" = ( -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/e) -"rAQ" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/mars, -/area/bigredv2/outside/e) -"rAR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"rAS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/s) -"rBd" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/e) -"rBo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft"; - pixel_x = 20 - }, -/obj/item/stack/sheet/wood{ - pixel_x = 4; - pixel_y = 7 - }, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"rBp" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 18 - }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves/mining) -"rBv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/hotdog{ - pixel_x = -12; - pixel_y = -11 - }, -/obj/item/trash/cigbutt{ - pixel_x = 7 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"rBH" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"rBL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_south_cas) -"rCq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"rCE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"rCR" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Operations Bedroom" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"rDE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkpurplecorners2/west, -/area/bigredv2/caves/lambda/xenobiology) -"rDN" = ( -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"rDS" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/s) -"rEh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/caves_lambda) -"rEl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"rEJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"rEL" = ( -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"rEX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"rFh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"rFq" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"rFr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"rFO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/c) -"rFU" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"rFV" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"rFZ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"rGc" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"rGg" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/ne) -"rGt" = ( -/turf/open/asphalt/cement/cement1, -/area/bigredv2/caves_lambda) -"rGu" = ( -/obj/structure/platform/kutjevo/rock, -/obj/item/trash/used_stasis_bag{ - pixel_y = 8; - pixel_x = 9 - }, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/nw) -"rGv" = ( -/obj/structure/platform/shiva{ - dir = 8 - }, -/obj/item/disk, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"rGz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating/platingdmg1, -/area/bigredv2/outside/medical) -"rGY" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/plating/warnplate/west, -/area/bigredv2/oob) -"rHf" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"rHu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"rHw" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"rHz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/cult, -/area/bigredv2/outside/marshal_office) -"rHA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/river, -/area/bigredv2/outside/filtration_plant) -"rHF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/c) -"rHI" = ( -/obj/structure/machinery/r_n_d/server, -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/eta/storage) -"rHM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/curtain/red, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/engineering) -"rIf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"rIl" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/oob) -"rIF" = ( -/obj/structure/surface/table, -/obj/item/cell/hyper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"rIM" = ( -/obj/item/tool/lighter/random, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"rIT" = ( -/obj/structure/closet/l3closet/scientist, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/research) -"rJc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"rJw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/marshal_office) -"rJx" = ( -/turf/closed/wall/solaris{ - damage = 500; - damage_overlay = 2; - current_bulletholes = 1 - }, -/area/bigredv2/outside/medical) -"rJB" = ( -/obj/effect/decal/strata_decals/grime/grime1, -/obj/effect/decal/cleanable/ash{ - pixel_y = 19 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/bigredv2/outside/nw) -"rJM" = ( -/obj/structure/curtain/medical, -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/lambda/virology) -"rKe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"rKs" = ( -/obj/item/stack/medical/splint{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder{ - pixel_x = -9; - pixel_y = -14 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"rKu" = ( -/obj/structure/fence, -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/se) -"rKz" = ( -/obj/structure/machinery/light, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"rKE" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/mars, -/area/bigredv2/outside/ne) -"rKX" = ( -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/bar) -"rLa" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves_sw) -"rLz" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/hemostat, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"rLW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/outside/engineering) -"rMj" = ( -/obj/item/tool/pickaxe, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_plant) -"rMu" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"rMv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/northeast, -/area/bigredv2/outside/admin_building) -"rMG" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"rMU" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/ne) -"rNc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/harpoon, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"rNd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"rNs" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "tcomms_open" - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"rNx" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/ne) -"rNK" = ( -/obj/structure/closet/athletic_mixed, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"rOy" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/ne) -"rOC" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/w) -"rOL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"rOO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"rOT" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"rPd" = ( -/obj/item/explosive/grenade/baton, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_research) -"rPl" = ( -/obj/structure/surface/table, -/obj/structure/bedsheetbin{ - pixel_y = 10; - pixel_x = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"rPr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"rPC" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves/mining) -"rPJ" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 27 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"rPK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Cargo Bay Offices" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"rPL" = ( -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_4" - }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = -6; - pixel_y = -1 - }, -/turf/open/floor/whitegreencorner/east, -/area/bigredv2/outside/medical) -"rPP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 32 - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"rQf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/hydroponics) -"rQj" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/s) -"rQs" = ( -/obj/structure/bed/sofa/south{ - desc = "An old rusty ladder"; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "ladder11"; - name = "Old Ladder" - }, -/turf/open/floor/plating, -/area/bigredv2/oob) -"rQw" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/c) -"rQK" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"rRa" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"rRr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/s) -"rRt" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"rRx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Kitchen Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"rRQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/nw) -"rRU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"rSA" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"rSG" = ( -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"rSN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"rSQ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"rSX" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"rTa" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"rTu" = ( -/obj/item/tool/warning_cone, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"rTA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/wood{ - pixel_x = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"rTS" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"rUa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"rUn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "11-2" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"rUr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"rUs" = ( -/obj/structure/machinery/door_control{ - id = "safe_room"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 28; - req_access_txt = "106"; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"rUx" = ( -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/outside/admin_building) -"rUF" = ( -/obj/structure/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"rUG" = ( -/obj/structure/bed/chair, -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves/eta/research) -"rUK" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "workshop_br_g"; - name = "\improper Workshop Garage" - }, -/turf/open/floor/delivery, -/area/bigred/ground/garage_workshop) -"rUN" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"rUR" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"rUW" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/item/stack/sheet/wood{ - pixel_y = -8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"rVa" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/n) -"rVC" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -9; - pixel_y = 1 - }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 9; - pixel_y = 4 - }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"rVJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreencorner/north, -/area/bigredv2/outside/medical) -"rVN" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"rVQ" = ( -/turf/open/floor/bluegrid/damaged5, -/area/bigredv2/caves/lambda/research) -"rWa" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/research) -"rWc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, -/obj/structure/machinery/light, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"rWg" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/s) -"rWh" = ( -/obj/item/tool/warning_cone, -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"rWi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-in" - }, -/turf/open/floor/plating/platebot, -/area/bigredv2/outside/space_port) -"rWk" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/barricade/wooden, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"rWp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/purple/southeast, -/area/bigredv2/caves/lambda/research) -"rWx" = ( -/turf/open/floor/darkblue2/southwest, -/area/bigredv2/caves/eta/storage) -"rWS" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/plate, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"rXd" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/caves/eta/xenobiology) -"rXf" = ( -/turf/open/asphalt/cement/cement2, -/area/bigredv2/outside/space_port) -"rXs" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/copper{ - pixel_y = 1 - }, -/obj/item/stack/sheet/mineral/osmium{ - pixel_y = 6 - }, -/obj/item/stack/sheet/mineral/platinum{ - pixel_y = 12 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"rXG" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"rXM" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"rYb" = ( -/obj/structure/closet/secure_closet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"rYp" = ( -/obj/structure/surface/rack, -/obj/item/device/analyzer, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"rYs" = ( -/obj/structure/surface/table, -/obj/item/device/megaphone, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"rYu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"rYH" = ( -/obj/structure/platform_decoration/shiva{ - dir = 8 - }, -/obj/structure/platform_decoration/shiva, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"rYO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"rYS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"rYW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"rZn" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/w) -"rZz" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) -"rZA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/paper/bigred/witness, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"rZB" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"rZF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"rZI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"rZP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"sab" = ( -/obj/structure/closet/l3closet/general, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"sao" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/window, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"sav" = ( -/obj/structure/cable{ - icon_state = "5-6" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"saM" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"saV" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/whitepurple, -/area/bigredv2/caves/lambda/research) -"saW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"sbb" = ( -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/living) -"sbs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"sbA" = ( -/obj/item/frame/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/decal/cleanable/dirt, -/obj/item/explosive/plastic{ - desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; - name = "Mining explosives" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"sbI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"scd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"sce" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"sck" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/ne) -"sco" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"scE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"sda" = ( -/obj/item/trash/cigbutt{ - pixel_x = -9; - pixel_y = -6 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"sdb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lantern, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/mining) -"sdw" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dormitories Toilet" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sdP" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"sea" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"sel" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/tool/screwdriver{ - pixel_x = -13; - pixel_y = 9 - }, -/obj/item/tool/crowbar/red{ - pixel_y = -14; - pixel_x = 2 - }, -/obj/item/stack/tile/plasteel{ - pixel_x = 16; - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"sen" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sev" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sez" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/n) -"seD" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"sfd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 - }, -/obj/item/reagent_container/food/snacks/tofu{ - pixel_y = 11 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sfj" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/s) -"sfR" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sga" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-exterior"; - name = "Lambda Checkpoint Exterior" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement, -/area/bigredv2/outside/lambda_cave_cas) -"sgc" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/n) -"sgf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"sgk" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/breakroom) -"sgq" = ( -/obj/structure/surface/table, -/obj/structure/xenoautopsy, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/caves/eta/xenobiology) -"sgy" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"sgE" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"sht" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"shY" = ( -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"sig" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/objective, -/obj/item/clothing/glasses/science, -/turf/open/floor/whitepurple/north, -/area/bigredv2/caves/lambda/research) -"sis" = ( -/obj/item/frame/table/reinforced, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"siE" = ( -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/caves/eta/research) -"siJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/e) -"siS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"sja" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"sjc" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/smes_coil, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"sje" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"sjk" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"sju" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/mars, -/area/bigredv2/outside/c) -"sjy" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/n) -"ski" = ( -/turf/open/mars_cave, -/area/bigredv2/outside/lz2_west_cas) -"sll" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Virology Lab Cell" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"sls" = ( -/obj/structure/machinery/vending/security, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/red, -/area/bigredv2/outside/lambda_cave_cas) -"slw" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/nw) -"slz" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/s) -"slD" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"slF" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"slZ" = ( -/obj/structure/sink{ - pixel_y = 32 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"smh" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, -/area/bigredv2/caves_north) -"smj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"smx" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/nw) -"smI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"sna" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"sne" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"snx" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"snF" = ( -/obj/item/clothing/under/brown{ - pixel_x = 4; - pixel_y = -5 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"snK" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"snM" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool{ - pixel_x = 4; - pixel_y = 13 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"sob" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_sw) -"sop" = ( -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"spD" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/space_port_lz2) -"sqp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/e) -"sqE" = ( -/obj/structure/surface/table, -/obj/item/clothing/suit/armor/det_suit{ - pixel_x = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"sra" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/n) -"srg" = ( -/obj/item/ore/coal{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/ore/coal, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"srn" = ( -/obj/structure/machinery/iv_drip, -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - pixel_x = -5; - pixel_y = 2; - layer = 2.8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"srT" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_north) -"ssc" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/eta) -"ssp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"ssq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-in" - }, -/turf/open/floor/plating/platebotc, -/area/bigredv2/outside/space_port) -"sst" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/pistol/holdout, -/obj/structure/machinery/light, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ssE" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/caves) -"ssR" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_virology) -"ssX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/filtration_cave_cas) -"ssZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/arcade, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"sta" = ( -/obj/item/trash/cigbutt{ - pixel_x = -1; - pixel_y = 17 - }, -/obj/item/newspaper{ - pixel_x = 7; - pixel_y = -12 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"stj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet7_3/west, -/area/bigredv2/outside/admin_building) -"stl" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/lambda/virology) -"stq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"sts" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_se) -"stt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-in" - }, -/turf/open/floor/plating/platebot, -/area/bigredv2/outside/space_port) -"sty" = ( -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/trash/cigbutt{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"stR" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"suR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"suU" = ( -/obj/item/ore/iron{ - pixel_x = 6; - pixel_y = 9 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"svd" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"svg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Virology Quarantine" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/virology) -"svD" = ( -/obj/structure/bed, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"svJ" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"svS" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/w) -"svT" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars, -/area/bigredv2/outside/c) -"swe" = ( -/obj/item/tool/warning_cone, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/se) -"swy" = ( -/obj/structure/surface/rack, -/obj/item/device/camera_film, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"swz" = ( -/obj/structure/flora/grass/desert/lightgrass_7, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"swW" = ( -/obj/item/stack/rods{ - pixel_y = -2 - }, -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) -"sxg" = ( -/obj/structure/curtain/open/medical, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"sxp" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"sxz" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_east) -"sxZ" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/lz2_south_cas) -"sye" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/caves_east) -"sym" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/caves/eta/research) -"syv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/storage) -"syB" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/mars, -/area/bigredv2/outside/s) -"syG" = ( -/obj/item/trash/hotdog{ - pixel_x = -12; - pixel_y = -11 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"syL" = ( -/obj/structure/flora/grass/desert/lightgrass_7, -/turf/open/mars, -/area/bigredv2/outside/virology) -"syM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"syT" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 - }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"szh" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/item/storage/box/stompers{ - pixel_y = 15 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"szn" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"szT" = ( -/obj/structure/surface/table, -/obj/item/storage/box/snappops, -/obj/item/storage/box/snappops, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"szY" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"sAs" = ( -/obj/structure/girder, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sAz" = ( -/obj/structure/girder, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/office_complex) -"sAD" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/device/multitool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"sAL" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/ne) -"sAS" = ( -/obj/item/toy/prize/fireripley{ - pixel_y = 19 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"sAV" = ( -/obj/item/tank/air, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"sBi" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/virology) -"sBl" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/filtration_plant) -"sBv" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_lambda) -"sBx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) -"sBB" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"sBL" = ( -/obj/item/weapon/dart/green{ - pixel_y = -11 - }, -/turf/open/floor/carpet11_12/west, -/area/bigredv2/outside/bar) -"sBY" = ( -/obj/item/stack/sheet/wood, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_north) -"sCd" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/obj/structure/flora/grass/desert/lightgrass_11, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"sCp" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/e) -"sCC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/obj/structure/largecrate/supply/medicine/iv{ - pixel_y = -7; - pixel_x = 3 - }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = 5; - pixel_y = 6 - }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"sCG" = ( -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/lambda/research) -"sCS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/research) -"sDf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"sDv" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"sDB" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"sDD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"sDS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/smg/mp5{ - current_mag = null; - pixel_y = 8; - pixel_x = -18 - }, -/obj/item/ammo_casing/bullet, -/obj/item/ammo_casing/bullet, -/obj/item/ammo_casing/bullet, -/obj/item/ammo_casing/bullet, -/obj/item/ammo_casing/bullet, -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"sDV" = ( -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/marshal_office) -"sEa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/folding_barricade, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"sFk" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"sFB" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"sFD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"sGa" = ( -/obj/item/trash/snack_bowl{ - pixel_x = 1; - pixel_y = -12 - }, -/obj/item/trash/raisins{ - pixel_y = 8; - pixel_x = -2 - }, -/obj/item/trash/uscm_mre{ - pixel_y = 3; - pixel_x = 10 - }, -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/ash{ - pixel_y = 19 - }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/nw) -"sGm" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 2; - pixel_y = 9 - }, -/obj/item/tool/warning_cone{ - pixel_x = 6 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"sGx" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves_north) -"sGD" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/chapel/north, -/area/bigredv2/outside/chapel) -"sGF" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"sGS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"sHe" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_sw) -"sHl" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/pill/happy, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"sHp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"sHr" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/eta) -"sHt" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/c) -"sHJ" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda-exterior"; - name = "Lambda Checkpoint Exterior" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/lambda_cave_cas) -"sHK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"sHQ" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_se) -"sHS" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"sIe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"sIh" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lambda-cave-extratunnel" - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"sJs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/se) -"sJE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"sKa" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"sKj" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"sKl" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/wood, -/area/bigredv2/outside/office_complex) -"sKn" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000; - pixel_y = 4; - pixel_x = 22 - }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"sKz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/nw) -"sKM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"sKO" = ( -/obj/structure/bed/chair/wheelchair{ - pixel_y = 5; - pixel_x = 5 - }, -/obj/structure/machinery/iv_drip{ - pixel_y = 20; - pixel_x = -13 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"sKR" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) -"sKU" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"sLf" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Power Substation" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/lz2_south_cas) -"sLn" = ( -/obj/item/stack/sheet/wood{ - pixel_y = -8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"sLA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"sLL" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/obj/structure/cable{ - icon_state = "11-6" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sLS" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"sMc" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/whiteyellow/north, -/area/bigredv2/caves/lambda/xenobiology) -"sMg" = ( -/turf/open/floor/darkblue2/northeast, -/area/bigredv2/caves/eta/storage) -"sMq" = ( -/obj/structure/bed/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"sMs" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-in" - }, -/turf/open/floor/plating/platebot, -/area/bigredv2/outside/space_port) -"sMt" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"sMx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/bluegrid/damaged3, -/area/bigredv2/caves/lambda/research) -"sMB" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"sMD" = ( -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"sMR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/w) -"sNo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/radiation, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/outside/engineering) -"sNr" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/living) -"sNt" = ( -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"sNG" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"sNL" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/s) -"sOa" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/item/tool/lighter/random, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"sOm" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating/warnplate/west, -/area/bigredv2/oob) -"sOt" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"sOH" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port) -"sOR" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"sOZ" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/weapon/gun/launcher/grenade/m81/m79{ - pixel_x = -3; - pixel_y = -9 - }, -/obj/structure/cable{ - icon_state = "1-5" - }, -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sPs" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"sPF" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/w) -"sPQ" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"sPU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"sPZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/filtration_plant) -"sQh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"sQq" = ( -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/space_port) -"sQA" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"sQB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/flare{ - pixel_y = -7 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sRd" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 4; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" - }, -/obj/structure/cable{ - icon_state = "2-5" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sRw" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"sRz" = ( -/obj/structure/surface/table, -/obj/item/storage/box/snappops, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"sRY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"sSg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"sSy" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"sSA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/hunter_primary, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"sSB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/firealarm{ - dir = 1 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sSD" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"sSL" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/mars, -/area/bigredv2/outside/filtration_plant) -"sSN" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/whitepurple/west, -/area/bigredv2/caves/lambda/xenobiology) -"sSW" = ( -/obj/item/tool/pickaxe, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"sTb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/warnwhite, -/area/bigredv2/outside/office_complex) -"sTj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"sTG" = ( -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -9 - }, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"sTP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"sTX" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/s) -"sTZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/e) -"sUc" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"sUh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/ammo_casing/bullet, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"sUu" = ( -/obj/item/trash/cigbutt{ - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"sUL" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/cola{ - pixel_x = -5 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/reagent_container/food/drinks/cans/cola{ - pixel_x = 1 - }, -/obj/item/reagent_container/food/drinks/cans/cola{ - pixel_x = 7 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"sUQ" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"sUX" = ( -/obj/effect/spawner/gibspawner/human, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"sVn" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/space_port) -"sWr" = ( -/obj/structure/machinery/power/turbine, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"sXd" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "prison_breakout" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/marshal_office) -"sXi" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/ash{ - pixel_y = 19 - }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/nw) -"sXr" = ( -/turf/open/floor/darkyellow2/east, -/area/bigredv2/caves/eta/research) -"sXA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/ammo_casing/bullet, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"sXK" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/office_complex) -"sXM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office"; - welded = 1; - dir = 2; - density = 0; - icon_state = "door_open" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"sXY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"sYg" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves_north) -"sYn" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Cables" - }, -/obj/structure/cryofeed{ - color = "silver"; - desc = "A bewildering tangle of machinery and pipes."; - name = "coolant feed" - }, -/obj/structure/machinery/portable_atmospherics/powered/scrubber{ - desc = "A big air filter."; - icon = 'icons/obj/structures/props/almayer_props64.dmi'; - icon_state = "fuel_enhancer"; - layer = 5; - name = "Air filter"; - pixel_x = -3; - pixel_y = 1 - }, -/obj/structure/machinery/portable_atmospherics/powered/scrubber{ - desc = "Critical part of an HVAC system. Compresses refridgerant to send off to air cooling coils."; - icon = 'icons/obj/structures/props/almayer_props64.dmi'; - icon_state = "cooling_system"; - layer = 4; - name = "\improper Air Condenser"; - pixel_x = -5; - pixel_y = 25 - }, -/turf/open/shuttle/escapepod/floor1, -/area/bigredv2/oob) -"sYG" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8; - layer = 2.9; - pixel_x = -3 - }, -/obj/structure/platform/kutjevo/rock, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"sYI" = ( -/obj/structure/tunnel{ - id = "hole5" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"sYP" = ( -/obj/structure/window_frame/solaris, -/obj/item/shard, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"sYV" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/s) -"sZd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"sZs" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"taa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"tag" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"tas" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask, -/obj/item/reagent_container/food/drinks/flask, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/reagent_container/food/drinks/flask{ - pixel_x = 7 - }, -/obj/item/reagent_container/food/drinks/flask{ - pixel_x = -5 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"tav" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"taA" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"taN" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 - }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves/mining) -"taP" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"tbd" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"tbe" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/obj/item/weapon/twohanded/spear{ - pixel_x = -4; - pixel_y = 3 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"tbE" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/lz2_south_cas) -"tcb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/pizzabox/meat, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"tcE" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"tcP" = ( -/obj/effect/decal/cleanable/dirt/greenglow, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/engineering) -"tcZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"tdw" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "crashlanding-offices" - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"tdD" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"tdZ" = ( -/obj/item/tool/pickaxe/drill, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cheeseburger{ - pixel_y = 22 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"tei" = ( -/obj/item/device/reagent_scanner, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"ter" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/red/northwest, -/area/bigredv2/outside/marshal_office) -"tes" = ( -/obj/item/trash/cheesie{ - pixel_y = -4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"tft" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave, -/area/bigredv2/outside/lz2_west_cas) -"tfz" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"tfP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"tgi" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"tgl" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/outside/n) -"tgo" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -5; - pixel_y = 10 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"tgA" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"tgB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"tha" = ( -/obj/item/stack/sheet/wood, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_north) -"thr" = ( -/obj/structure/machinery/light/small/built{ - dir = 1 - }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/caves/lambda/research) -"thz" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"thV" = ( -/obj/structure/surface/table, -/obj/item/storage/box/bodybags{ - pixel_y = 4 - }, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"thX" = ( -/obj/structure/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/virology) -"tic" = ( -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"tit" = ( -/obj/structure/machinery/door_control{ - id = "workshop_br_g"; - name = "Workshop Garage Lockdown"; - pixel_x = 28 - }, -/turf/open/floor/asteroidwarning/northeast, -/area/bigred/ground/garage_workshop) -"tiY" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"tkd" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/whiteblue/northeast, -/area/bigredv2/outside/medical) -"tkl" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"tkv" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/ne) -"tkx" = ( -/obj/structure/closet/crate/secure, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"tky" = ( -/obj/structure/surface/table/woodentable, -/obj/item/tool/lighter/zippo, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"tkB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"tkE" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/lz2_south_cas) -"tkF" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"tkP" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"tld" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/southeast, -/area/bigredv2/caves/lambda/xenobiology) -"tlk" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"tlw" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/telecomm/n_cave) -"tlJ" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/mars, -/area/bigredv2/outside/c) -"tlP" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"tmf" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/nw) -"tmh" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"tmm" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/chapel) -"tmJ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/filtration_plant) -"tmX" = ( -/obj/item/storage/toolbox/mechanical, -/obj/item/device/multitool, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/rack, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"tne" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"tnj" = ( -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/lambda/virology) -"tnl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"tnv" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"tnC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"tnF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Operations" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"tnT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/red/north, -/area/bigredv2/outside/marshal_office) -"tnZ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 2; - pixel_y = 9 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"tos" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - desc = "An old W-Y systems control computer that manages the air enviorment for a large area. Commonly used in mining operations in order to control O2 levels, alert of any dangerous gases and make the heat slightly more bearable."; - name = "W-Y Enviorment Control System Control Panel" - }, -/obj/structure/cable{ - icon_state = "11-2" - }, -/obj/structure/cable{ - icon_state = "11-10" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"toy" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"toI" = ( -/obj/item/trash/eat{ - pixel_x = -9; - pixel_y = 10 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"toR" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/admin_building) -"tph" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/donut_box, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"tpj" = ( -/obj/effect/landmark/crap_item, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/e) -"tpx" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/packaged_burrito{ - pixel_x = 5; - pixel_y = 9 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"tpC" = ( -/obj/structure/surface/table, -/obj/item/device/multitool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"tpE" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/n) -"tpF" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"tpS" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"tpX" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_virology) -"tpY" = ( -/obj/structure/lz_sign/solaris_sign, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"tqg" = ( -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 8; - pixel_y = -19 - }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 3; - pixel_y = -1 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/marshal_office) -"tqp" = ( -/obj/structure/machinery/vending/sovietsoda{ - icon_state = "sovietsoda-broken"; - stat = 1 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"tqw" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/se) -"tqB" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) -"tqG" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ - pixel_y = 8; - pixel_x = -11 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"tqS" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves_north) -"tqW" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/space_port_lz2) -"trn" = ( -/obj/effect/landmark/crap_item, -/turf/open/asphalt/cement, -/area/bigredv2/outside/filtration_cave_cas) -"tss" = ( -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"tsw" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"tsy" = ( -/obj/effect/decal/cleanable/dirt{ - pixel_x = 8 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 4; - pixel_y = 15 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 14 - }, -/obj/item/trash/cigbutt{ - pixel_x = 7 - }, -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 6; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"tsG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/ne) -"ttd" = ( -/obj/structure/largecrate/lisa, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/bot, -/area/bigredv2/caves/eta/storage) -"tth" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"ttz" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/filtration_plant) -"ttF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"tuh" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Head Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"tum" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"tuq" = ( -/obj/structure/flora/grass/desert/lightgrass_11, -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/c) -"tuN" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave, -/area/bigredv2/caves/mining) -"tuQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Bar Maintenance" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/bar) -"tuT" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"tvg" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/obj/item/stack/sheet/metal{ - pixel_x = -13; - pixel_y = 14 - }, -/turf/open/mars, -/area/bigredv2/outside/c) -"tvj" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/n) -"tvw" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Private Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"tvD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"tvI" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/obj/structure/largecrate/supply/medicine/medkits, -/obj/structure/largecrate/supply{ - layer = 3.2; - pixel_x = -2; - pixel_y = 19 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"tvU" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/eta) -"twZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/filtration_plant) -"txg" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"txE" = ( -/obj/structure/flora/grass/desert/lightgrass_10, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"txJ" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"txS" = ( -/obj/structure/closet/secure_closet/marshal, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"tyf" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"tyo" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"tyr" = ( -/obj/item/trash/cigbutt{ - pixel_x = -1; - pixel_y = 17 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"tyE" = ( -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"tyG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/research) -"tzb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"tzk" = ( -/obj/structure/machinery/computer/station_alert, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"tzx" = ( -/obj/structure/surface/table, -/obj/item/trash/kepler{ - pixel_y = 9 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"tzA" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"tzF" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port_lz2) -"tzZ" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"tAi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/caves_east) -"tBc" = ( -/obj/structure/ore_box, -/turf/open/floor/whitepurple, -/area/bigredv2/caves/lambda/research) -"tBf" = ( -/obj/structure/largecrate/random/barrel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"tBo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"tBs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/surface/table/woodentable, -/obj/item/storage/bible, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"tBN" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"tBY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/limb/head, -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"tCh" = ( -/obj/structure/machinery/door/poddoor/almayer/closed, -/obj/structure/prop/invuln/minecart_tracks, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"tCn" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -7 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/reagent_container/food/drinks/coffee, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 7 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"tDa" = ( -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_4" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"tDk" = ( -/obj/structure/machinery/light/double{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"tDY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/breakroom) -"tEx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"tES" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/space_port_lz2) -"tEV" = ( -/obj/item/weapon/gun/smg/fp9000, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"tFc" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"tFi" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/ne) -"tFj" = ( -/obj/structure/coatrack{ - pixel_x = 12 - }, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/suit/storage/windbreaker/windbreaker_gray{ - pixel_x = 11; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"tFk" = ( -/obj/structure/machinery/light, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"tFN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"tGk" = ( -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"tGw" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"tHa" = ( -/obj/structure/machinery/mecha_part_fabricator, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"tHs" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"tHI" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz2_south_cas) -"tIo" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"tIr" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic"; - icon_state = "door_open"; - density = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"tIx" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"tIA" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"tIR" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/c) -"tIV" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"tJg" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"tJy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Spaceport" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/space_port) -"tJC" = ( -/obj/item/ore{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"tJT" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt/cement, -/area/bigredv2/outside/filtration_cave_cas) -"tKg" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"tKy" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"tKD" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/item/tool/extinguisher, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"tKO" = ( -/obj/item/clothing/mask/gas{ - pixel_x = 10; - pixel_y = -12 - }, -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"tLj" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/under/brown{ - pixel_y = 11; - pixel_x = 7 - }, -/obj/structure/machinery/washing_machine{ - pixel_y = 13 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"tLy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_box/rounds/empty{ - pixel_x = 3; - pixel_y = -6 - }, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"tLC" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"tLS" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"tMe" = ( -/obj/structure/barricade/deployable, -/obj/item/ammo_casing/bullet, -/turf/open/mars, -/area/bigredv2/outside/c) -"tMk" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"tMq" = ( -/obj/item/ammo_magazine/shotgun/beanbag/riot, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_research) -"tMu" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/shuttle/escapepod/floor5, -/area/bigredv2/oob) -"tMM" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/filtration_plant) -"tMW" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves/mining) -"tNA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations Meeting Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"tOF" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"tPi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"tPm" = ( -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"tPu" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz2_south_cas) -"tPv" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"tPM" = ( -/turf/open/floor/darkpurplecorners2/north, -/area/bigredv2/caves/lambda/research) -"tPO" = ( -/obj/item/tool/wirecutters, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"tPZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/w) -"tQf" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"tQg" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"tQk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"tQs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"tQu" = ( -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/e) -"tQy" = ( -/obj/structure/flora/grass/desert/lightgrass_11, -/turf/open/mars, -/area/bigredv2/outside/c) -"tQJ" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"tRe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"tRA" = ( -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" - }, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"tRL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"tRS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/research) -"tSu" = ( -/obj/structure/surface/table/woodentable{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"tSx" = ( -/obj/item/trash/hotdog{ - pixel_x = -12; - pixel_y = -11 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 3; - pixel_y = 13 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"tSy" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/c) -"tSP" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Lambda Lab Administration Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"tTh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/eta) -"tTt" = ( -/obj/structure/machinery/computer/general_air_control{ - dir = 8; - pixel_y = 6 - }, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"tTv" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/caves_north) -"tTw" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"tTM" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"tTU" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"tUb" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/s) -"tUk" = ( -/obj/structure/foamed_metal, -/obj/structure/machinery/light, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/xenobiology) -"tUn" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"tUr" = ( -/obj/structure/sign/safety/terminal{ - pixel_y = -32 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"tUM" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"tVb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz2_south_cas) -"tVe" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/mars/mars_dirt_12, -/area/space) -"tVf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 3; - pixel_y = 15 - }, -/obj/effect/spawner/gibspawner/human, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"tVn" = ( -/obj/item/tool/lighter/zippo, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"tVu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"tVv" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/collectable/tophat/super, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"tVw" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"tVC" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves/eta/research) -"tVD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"tVF" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"tVS" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/obj/structure/machinery/camera/autoname, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"tWl" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/whitepurple, -/area/bigredv2/caves/lambda/research) -"tWA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"tWD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/xenobiology) -"tWH" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"tWM" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/mars, -/area/bigredv2/outside/n) -"tXc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"tXi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Administration Wing" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"tXj" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"tXB" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/lambda/virology) -"tYp" = ( -/obj/structure/machinery/door_control{ - id = "safe_room"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -28; - req_access_txt = "106"; - specialfunctions = 4 - }, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"tYF" = ( -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - pixel_x = -2; - pixel_y = 10 - }, -/obj/item/prop/colony/usedbandage{ - dir = 5; - pixel_y = 8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"tZi" = ( -/obj/item/clothing/mask/gas{ - pixel_y = 7; - pixel_x = 7 - }, -/obj/structure/barricade/deployable, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"tZA" = ( -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - pixel_x = -5; - pixel_y = 2; - layer = 2.8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"tZE" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/rifle/lmg/heap{ - pixel_x = -8; - pixel_y = -2; - max_rounds = 0 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 9; - pixel_y = 5 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"tZI" = ( -/obj/structure/machinery/door_control{ - id = "Chapel"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"uaG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"uaJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/medical_decals{ - icon_state = "cryocell2deval" - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"uaV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Medical Clinic Treatment"; - density = 0; - icon_state = "door_open" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"uba" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/virology) -"ubg" = ( -/obj/structure/machinery/computer/cameras, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"ubp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"ubC" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/n) -"ubO" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/c) -"ucc" = ( -/obj/structure/machinery/light, -/obj/structure/closet/cabinet, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"uci" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/hotdog{ - pixel_x = -9; - pixel_y = 1 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"ucl" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"ucn" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/spawner/random/tool{ - pixel_x = -6 - }, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/partypopper{ - pixel_x = 10; - pixel_y = 10 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"ucw" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-2"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves/mining) -"ucA" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/item/prop/alien/hugger, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"ucE" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/chapel/west, -/area/bigredv2/outside/chapel) -"ucF" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/ne) -"ucG" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/bluegrid/damaged4, -/area/bigredv2/caves/lambda/research) -"ucH" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_virology) -"ucP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/drip, -/obj/item/trash/sosjerky{ - pixel_y = 7; - pixel_x = -13 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/nw) -"ucV" = ( -/obj/item/reagent_container/glass/rag{ - pixel_x = -9; - pixel_y = -7 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"udb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -6; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"udn" = ( -/obj/effect/spawner/random/tool, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"udp" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/glass/beaker/sulphuric, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"udR" = ( -/obj/structure/barricade/wooden, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"uec" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/ne) -"ueg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkblue2/southeast, -/area/bigredv2/caves/eta/storage) -"uer" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = -2; - pixel_x = -8 - }, -/obj/item/reagent_container/food/snacks/packaged_meal{ - pixel_x = 8; - pixel_y = 9 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"uex" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Medical Clinic Power Station"; - locked = 1 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"ueO" = ( -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"ueU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"ueW" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) -"ufm" = ( -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"ufX" = ( -/obj/structure/prop/dam/truck/mining{ - desc = "A crawler, imported from the Alpha Centauri colonies."; - dir = 1; - icon_state = "crawler_crate_alt"; - name = "crawler" - }, -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/s) -"ugc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/barrel, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"ugj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"ugC" = ( -/turf/open/floor/rampbottom/north, -/area/bigredv2/outside/chapel) -"ugJ" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves_north) -"ugO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Medical Clinic"; - locked = 1 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"uhc" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"uhp" = ( -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 - }, -/obj/structure/machinery/door/window{ - layer = 4 - }, -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/caves/lambda/virology) -"uhM" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen_v/northeast, -/area/bigredv2/caves/lambda/xenobiology) -"uhP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"uhR" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/c) -"uhS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"uhX" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_sw) -"uib" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 16 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"uid" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/compressor{ - dir = 1 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"uit" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"uiu" = ( -/obj/item/shard, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"uiX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-5" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"ujv" = ( -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"ujy" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/c) -"ujG" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/item/weapon/baton/loaded, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"ujI" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/whiteyellow/northwest, -/area/bigredv2/caves/lambda/xenobiology) -"ujR" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 - }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"ujW" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"ujX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"ujZ" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_virology) -"uko" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/marshal_office) -"ukB" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"ukJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"ukN" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt/cement/cement12, -/area/bigredv2/outside/filtration_cave_cas) -"ukR" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"ukY" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/telecomm/n_cave) -"ule" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/mars, -/area/bigredv2/outside/s) -"ulx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"ulB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ulD" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"ulH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/on, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"ulI" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"ulK" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/se) -"ulL" = ( -/obj/structure/machinery/mech_bay_recharge_port, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"ulO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"ulV" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves_north) -"ulZ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"umz" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"umO" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkgreen2, -/area/bigredv2/caves/eta/xenobiology) -"umS" = ( -/obj/structure/barricade/deployable, -/turf/open/mars, -/area/bigredv2/outside/c) -"unp" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"uny" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"unB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"unD" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/tool/surgery/circular_saw{ - pixel_x = 10 - }, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"unH" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"unK" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"unN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"unS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/carpet, -/area/bigredv2/outside/library) -"uoc" = ( -/obj/structure/barricade/handrail/medical{ - dir = 4 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"uoe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"uoq" = ( -/obj/structure/closet/l3closet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/general_offices) -"uou" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_research) -"uoY" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"upj" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"upE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"upG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/telecomm/lz2_cave) -"upN" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/telecomm/lz2_cave) -"upP" = ( -/obj/structure/closet/crate, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"uqh" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/xenobiology) -"uqn" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"uqo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"uqy" = ( -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/xenobiology) -"uqD" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"uqT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_4, -/area/bigredv2/caves/lambda/research) -"urc" = ( -/obj/structure/sign/double/barsign{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/c) -"urx" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/se) -"urE" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"urP" = ( -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"urX" = ( -/turf/open/floor/darkgreen2, -/area/bigredv2/caves/lambda/virology) -"urZ" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/se) -"usi" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"ust" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"usA" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/bigredv2/outside/virology) -"usR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"utd" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Register" - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"uto" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/mars, -/area/bigredv2/outside/virology) -"utp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/s) -"utq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"uty" = ( -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/storage) -"utG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/flour, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"uug" = ( -/turf/open/floor/darkredcorners2, -/area/bigredv2/outside/admin_building) -"uuB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/extinguisher{ - pixel_y = 15; - pixel_x = -7 - }, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"uuJ" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/lz1_north_cas) -"uuN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"uvo" = ( -/obj/structure/machinery/light_construct{ - dir = 4 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"uvp" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Large Cables"; - pixel_y = 12 - }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"uvs" = ( -/obj/structure/airlock_assembly, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"uvI" = ( -/obj/structure/surface/table, -/obj/item/tool/hand_labeler, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"uvJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/mining) -"uvL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/mucus, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/mining) -"uvN" = ( -/obj/structure/surface/table, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"uvU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"uvW" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"uwb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"uwg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"uwi" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/classic_baton, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"uwo" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 1; - icon_state = "door_locked"; - id = "safe_room"; - name = "\improper Lambda Lab Director's Safe Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"uwO" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"uwV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/general_offices) -"uwW" = ( -/obj/structure/barricade/wooden, -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"uxk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"uxo" = ( -/obj/item/trash/burger{ - pixel_y = -10; - pixel_x = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/nw) -"uxx" = ( -/obj/structure/machinery/door/poddoor/almayer/closed, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"uxW" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/asteroidwarning/northeast, -/area/bigred/ground/garage_workshop) -"uyb" = ( -/turf/open/floor/chapel, -/area/bigredv2/outside/chapel) -"uyr" = ( -/obj/item/trash/pistachios, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"uzd" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz1_telecomm_cas) -"uzh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) -"uzn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"uzD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"uzJ" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/lz1_north_cas) -"uzK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ - pixel_x = 7; - pixel_y = -9 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"uzL" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_telecomm_cas) -"uAi" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"uAj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/se) -"uAs" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"uAx" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/c) -"uAE" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - health = 25000 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/c) -"uAQ" = ( -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"uAU" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/mars, -/area/bigredv2/outside/n) -"uBu" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"uBF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"uBG" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"uBP" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"uBX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"uBZ" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_plant) -"uCc" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkish, -/area/bigredv2/outside/marshal_office) -"uCe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"uCh" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/n) -"uCk" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/bigredv2/outside/nw) -"uCs" = ( -/obj/item/trash/cheesie{ - pixel_y = -1; - pixel_x = -11 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"uCO" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"uCU" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"uCV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"uDi" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"uDn" = ( -/obj/structure/sign/safety/west, -/obj/structure/sign/safety/hazard{ - pixel_x = 12 - }, -/turf/closed/wall/wood, -/area/bigredv2/caves/mining) -"uDo" = ( -/obj/structure/surface/table, -/obj/item/device/radio{ - pixel_y = 8 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"uDs" = ( -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"uDD" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"uDF" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"uDS" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"uEh" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/cult, -/area/bigredv2/outside/marshal_office) -"uEo" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Lambda Labs"; - phone_id = "Xenobiology" - }, -/turf/open/floor/whitepurple/east, -/area/bigredv2/caves/lambda/xenobiology) -"uEx" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"uEy" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/donut, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"uEH" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves_north) -"uEP" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras/wooden_tv{ - dir = 4 - }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"uEQ" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_covered_bed" - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_lambda) -"uER" = ( -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"uFa" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"uFc" = ( -/obj/structure/machinery/robotic_fabricator, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"uFg" = ( -/turf/open/mars_cave/mars_cave_12, -/area/bigredv2/caves_research) -"uFi" = ( -/obj/item/paper/bigred/finance{ - pixel_x = -9 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"uFj" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"uFp" = ( -/obj/structure/machinery/mill, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"uFq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic"; - icon_state = "door_open"; - density = 0 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"uFV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"uGe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"uGh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/recharge_station, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"uGj" = ( -/obj/structure/machinery/vending/coffee{ - icon_state = "coffee-broken"; - stat = 1 - }, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"uGp" = ( -/obj/item/trash/popcorn{ - pixel_y = 9 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"uGA" = ( -/obj/structure/curtain/red, -/obj/item/prop/alien/hugger, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"uGH" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/mars, -/area/bigredv2/caves_north) -"uGO" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves/lambda/xenobiology) -"uHf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/welding, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"uHg" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/filtration_plant) -"uHo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"uHs" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/asphalt/cement, -/area/bigredv2/caves_lambda) -"uHQ" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"uHY" = ( -/obj/item/trash/raisins{ - pixel_y = -5; - pixel_x = -8 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"uId" = ( -/obj/item/clothing/glasses/welding, -/turf/open/floor/purplecorner/west, -/area/bigredv2/caves/lambda/research) -"uIg" = ( -/obj/structure/prop/almayer/missile_tube{ - desc = "A detached drill arm of a big old Seegson D-602 Mining Robot. Seems to be jury rigged to run without the main robot assembly."; - name = "\improper Massive mining drill"; - pixel_y = 13 - }, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"uIi" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/xenobiology) -"uIE" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/hydroponics) -"uJh" = ( -/obj/structure/machinery/power/reactor/colony{ - name = "Reactor Turbine" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"uJm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"uJo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"uJL" = ( -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/research) -"uJP" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"uKb" = ( -/obj/item/tool/warning_cone, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/s) -"uKo" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/molten_item, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"uKu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"uKB" = ( -/obj/structure/machinery/computer/pandemic, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"uLo" = ( -/obj/item/stack/sheet/wood{ - layer = 4.1; - pixel_x = 14; - pixel_y = -4 - }, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"uLs" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"uLu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves/mining) -"uLx" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"uLN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/e) -"uMa" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz1_north_cas) -"uMj" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"uMp" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/transmitter/colony_net{ - dir = 4; - phone_category = "Eta Labs"; - phone_id = "Observation"; - pixel_x = -18 - }, -/turf/open/floor/purple/southwest, -/area/bigredv2/caves/lambda/research) -"uMs" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"uMu" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Cell" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/research) -"uMy" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window{ - dir = 2 - }, -/obj/structure/foamed_metal, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "chem_lock"; - name = "\improper Chemistry Lockdown" - }, -/turf/open/floor/whiteyellowfull, -/area/bigredv2/caves/lambda/xenobiology) -"uNk" = ( -/obj/item/stack/sheet/cardboard{ - pixel_x = 8; - pixel_y = -1 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"uNF" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/mars, -/area/bigredv2/outside/s) -"uNM" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves_sw) -"uNP" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_se) -"uNR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"uNV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"uOC" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/nw) -"uOM" = ( -/obj/structure/bed/bedroll{ - dir = 10 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"uPu" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) -"uPH" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"uPS" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/mars, -/area/bigredv2/outside/se) -"uQt" = ( -/obj/structure/closet/l3closet/scientist, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"uQw" = ( -/obj/structure/largecrate/supply/supplies, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"uQB" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "lambda-exterior"; - name = "Lambda Checkpoint Exterior"; - pixel_x = null - }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"uQS" = ( -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"uQT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"uRz" = ( -/turf/open/floor/whitegreen/west, -/area/bigredv2/caves/lambda/xenobiology) -"uRE" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "medbay-passage" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/admin_building) -"uRW" = ( -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/storage) -"uSe" = ( -/obj/structure/surface/table, -/obj/item/tool/pen, -/obj/item/paper_bundle, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"uSg" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/eta) -"uSu" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves/eta/xenobiology) -"uTg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"uTj" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"uTn" = ( -/turf/open/floor/purple/north, -/area/bigredv2/caves/lambda/research) -"uTF" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/c) -"uTI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"uTR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"uTZ" = ( -/turf/open/asphalt/cement/cement12, -/area/bigredv2/caves_lambda) -"uUr" = ( -/obj/structure/prop/invuln/rope{ - pixel_x = -5; - pixel_y = 26 - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/item/prop/colony/usedbandage{ - dir = 4; - pixel_x = 10; - pixel_y = -4 - }, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/n) -"uUy" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8; - layer = 2.9; - pixel_x = -3 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"uUD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"uUH" = ( -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"uUM" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/item/weapon/baton/loaded, -/obj/item/weapon/twohanded/spear{ - pixel_x = -16; - pixel_y = -9 - }, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 - }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"uUO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"uUT" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/mars, -/area/bigredv2/outside/se) -"uUV" = ( -/obj/structure/prop/server_equipment/yutani_server/broken, -/turf/open/floor/greengrid, -/area/bigredv2/caves/lambda/research) -"uVy" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"uWa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"uWv" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves/mining) -"uWy" = ( -/obj/structure/machinery/vending/sovietsoda{ - icon_state = "sovietsoda-broken"; - stat = 1 - }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/filtration_plant) -"uWF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"uWH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"uWQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"uWU" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"uXs" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"uXH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/burger{ - pixel_y = 12; - pixel_x = -8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"uYa" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"uYe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/burger, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"uYg" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/n) -"uYm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/loadingarea/north, -/area/bigredv2/caves/eta/storage) -"uYD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"uYM" = ( -/obj/structure/foamed_metal, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/xenobiology) -"uYX" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/mars, -/area/bigredv2/outside/ne) -"uZd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"uZW" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/virology) -"val" = ( -/obj/structure/machinery/light/built{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/research) -"vaB" = ( -/obj/structure/machinery/light/built, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"vaO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/virology) -"vaV" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_telecomm_cas) -"vaX" = ( -/obj/item/trash/uscm_mre{ - pixel_y = 42; - pixel_x = -3 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"vaY" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 3; - pixel_y = 15 - }, -/obj/effect/spawner/gibspawner/human, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"vbd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"vbj" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"vbk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/plating/warnplate/southeast, -/area/bigredv2/outside/telecomm/warehouse) -"vbt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkblue2/southwest, -/area/bigredv2/caves/eta/storage) -"vbM" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkpurple2/east, -/area/bigredv2/caves/lambda/xenobiology) -"vbO" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"vbU" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"vbV" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"vcM" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"vdh" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) -"vdA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/darkblue2/west, -/area/bigredv2/caves/eta/research) -"vdB" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"vdM" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/engineering) -"vdT" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/n) -"vec" = ( -/obj/structure/pipes/standard/tank, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"vew" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"vex" = ( -/turf/closed/wall/wood, -/area/bigredv2/outside/lz2_south_cas) -"vey" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/medical) -"veC" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/caves_lambda) -"veF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/whitegreencorner/west, -/area/bigredv2/outside/medical) -"veY" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_north) -"vfO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"vgi" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"vgx" = ( -/obj/structure/prop/rock/brown{ - pixel_y = 10; - pixel_x = -6 - }, -/turf/open/mars, -/area/bigredv2/outside/nw) -"vhb" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"vhz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 6 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"vhB" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"vhG" = ( -/obj/item/trash/hotdog{ - pixel_x = -12; - pixel_y = -11 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"vhO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Prisoner Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"vhP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/s) -"vhR" = ( -/mob/living/simple_animal/corgi/puppy{ - desc = "It's a corgi puppy. MISTER WIGGLES!! HE IS THE GREATEST!"; - name = "\improper Mister Wiggles" - }, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"vhT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"vii" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/beret/sec/warden{ - pixel_y = 5 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"vio" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/nw) -"viq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"viF" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_se) -"vjd" = ( -/obj/item/weapon/dart{ - pixel_x = 10 - }, -/turf/open/floor/carpet9_4/west, -/area/bigredv2/outside/bar) -"vje" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/metal{ - dir = 1 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"vjw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_casing/bullet, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"vjI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"vjZ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/darkgreen2/east, -/area/bigredv2/caves/eta/xenobiology) -"vka" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"vkg" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port) -"vki" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/se) -"vkq" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"vkr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"vkt" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_lambda) -"vkF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"vkH" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -5; - pixel_y = 10 - }, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves/mining) -"vkI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/lambda/virology) -"vkQ" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/w) -"vkR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/prop/helmetgarb/spent_buckshot{ - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"vkT" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/close, -/obj/item/paper/bigred/crazy{ - pixel_x = 8; - pixel_y = 13 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"vkU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/s) -"vkW" = ( -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_4" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"vkZ" = ( -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"vlc" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"vle" = ( -/obj/structure/ore_box, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"vlp" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/space_port_lz2) -"vlU" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations Meeting Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"vmd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/c) -"vmn" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"vmo" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/lz2_south_cas) -"vmF" = ( -/obj/item/tool/wrench, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"vmL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"vmV" = ( -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -12; - pixel_y = -4 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 10; - pixel_y = 10 - }, -/obj/structure/prop/invuln/minecart_tracks{ - desc = "Righty tighty, lefty loosey!"; - dir = 1; - icon = 'icons/obj/pipes/valve.dmi'; - icon_state = "map_valve1"; - name = "Pressure Valve" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"vnf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/framed/solaris, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"vnp" = ( -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"vnN" = ( -/obj/structure/surface/table, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"vnO" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/w) -"vom" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"von" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"voy" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"voB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"voD" = ( -/obj/item/stack/sheet/glass, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"voH" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/nw) -"voX" = ( -/obj/structure/surface/table, -/obj/item/book/manual/nuclear, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"vpR" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_sw) -"vpZ" = ( -/obj/item/device/flashlight/lamp/tripod{ - layer = 6; - pixel_y = 11 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/n) -"vqc" = ( -/turf/open/mars/mars_dirt_6, -/area/bigredv2/outside/w) -"vqh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engine Reactor Control" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"vqj" = ( -/obj/structure/xenoautopsy/tank/larva, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/whitepurple, -/area/bigredv2/caves/lambda/xenobiology) -"vqE" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"vqH" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/caves/eta/xenobiology) -"vqJ" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/asphalt/cement/cement12, -/area/bigredv2/outside/lambda_cave_cas) -"vqL" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"vrD" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz2_south_cas) -"vst" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Machine room" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"vsw" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"vsK" = ( -/obj/structure/barricade/wooden, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"vsN" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "viro"; - name = "Virology Lockdown"; - pixel_x = -25 - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"vtc" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"vte" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/w) -"vtm" = ( -/obj/effect/decal/cleanable/blood/gibs/robot{ - name = "door debris" - }, -/obj/effect/decal/cleanable/blood/gibs/xeno, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"vtp" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"vtN" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"vtU" = ( -/obj/structure/surface/table, -/obj/item/oldresearch/Blood, -/obj/item/oldresearch/Blood, -/obj/item/paper, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"vuN" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"vvj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/xenobiology) -"vvx" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"vvB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/e) -"vvG" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/lz2_west_cas) -"vvL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/minecart_tracks{ - desc = "Righty tighty, lefty loosey!"; - dir = 1; - icon = 'icons/obj/pipes/valve.dmi'; - icon_state = "map_valve1"; - name = "Pressure Valve" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"vvP" = ( -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"vvU" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/n) -"vvZ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/lambda/xenobiology) -"vwt" = ( -/obj/structure/surface/table, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"vwz" = ( -/obj/structure/cryofeed/right{ - name = "\improper coolant feed" - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/outside/filtration_plant) -"vwJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/plasteel/medium_stack, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"vwP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"vxb" = ( -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/space_port) -"vxe" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/spaceacillin, -/obj/structure/machinery/computer/objective, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"vxg" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Dormitories EVA" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"vxt" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves/lambda/xenobiology) -"vxy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Break Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"vxI" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_telecomm_cas) -"vxM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"vxQ" = ( -/obj/item/tool/pickaxe/gold, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"vxT" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"vxX" = ( -/obj/structure/surface/table, -/obj/structure/bedsheetbin{ - pixel_y = 8; - pixel_x = 7 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"vyn" = ( -/obj/item/ammo_casing/shell, -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"vyF" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port_lz2) -"vyV" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"vzo" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"vzp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"vzA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Virology Wing" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/virology) -"vzB" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"vzO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/eta/research) -"vAd" = ( -/obj/item/tool/warning_cone{ - pixel_x = -14; - pixel_y = 10 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"vAf" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"vAj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"vAs" = ( -/obj/structure/window/framed/solaris/reinforced/tinted, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"vAP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"vAX" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"vBb" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"vBd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"vBk" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/outside/filtration_cave_cas) -"vBx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Cargo Bay" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"vBK" = ( -/obj/effect/landmark/survivor_spawner, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"vBM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Dormitories Tool Storage Maintenance"; - welded = 1 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) -"vCg" = ( -/obj/item/stack/sheet/wood{ - pixel_y = -8 - }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"vCp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"vCE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/hatchet, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"vCY" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"vDf" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"vDg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"vDk" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"vDl" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"vDC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = -8 - }, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves/mining) -"vDM" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/se) -"vEl" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/lz2_south_cas) -"vET" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/recharge_station, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"vFb" = ( -/turf/closed/wall/solaris{ - damage = 1870; - damage_overlay = 5; - current_bulletholes = 3 - }, -/area/bigredv2/outside/medical) -"vFd" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"vFj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"vFr" = ( -/obj/structure/machinery/computer/telecomms/traffic{ - req_one_access_txt = "19;200" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"vFx" = ( -/obj/structure/surface/table, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Eta Labs"; - phone_color = "red"; - phone_id = "Security" - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"vFB" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine{ - density = 0; - req_one_access_txt = "200" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkblue2/southwest, -/area/bigredv2/outside/admin_building) -"vFJ" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/w) -"vFN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"vFT" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"vFY" = ( -/obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-in" - }, -/turf/open/floor/plating/platebot, -/area/bigredv2/outside/space_port) -"vGb" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/caves/eta/research) -"vGg" = ( -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"vGX" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Server Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"vHu" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"vHw" = ( -/turf/closed/wall/wood, -/area/bigredv2/caves/mining) -"vHx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"vHG" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"vHM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/eta/research) -"vHO" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 13 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"vHX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/se) -"vIk" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"vIn" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -3; - pixel_y = 16 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 7 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"vIu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"vID" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"vIX" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/obj/item/ammo_casing/bullet, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"vJm" = ( -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/caves/lambda/research) -"vJs" = ( -/obj/structure/largecrate/random/secure{ - pixel_x = -9; - pixel_y = 20 - }, -/obj/structure/largecrate/supply/supplies/tables_racks{ - pixel_y = 1; - pixel_x = -6; - layer = 3.1 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"vJJ" = ( -/obj/structure/filingcabinet/medical, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"vJV" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/sw) -"vKa" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/outside/ne) -"vKV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"vKZ" = ( -/obj/effect/landmark/objective_landmark/close, -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -6; - pixel_y = 6; - layer = 3.1 - }, -/obj/effect/decal/cleanable/generic, -/obj/item/trash/cheesie{ - pixel_y = 6; - pixel_x = 9 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"vLd" = ( -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"vLj" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"vLl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"vLp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"vLx" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Personal Computer" - }, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"vLz" = ( -/obj/item/tool/pickaxe{ - pixel_y = -3 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"vLC" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/e) -"vMo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Lambda Checkpoint" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) -"vNc" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/e) -"vNv" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/w) -"vNW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/bar) -"vNZ" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" - }, -/obj/structure/prop/almayer/missile_tube{ - color = "grey"; - desc = "An linear accelerator used in experimental genetic treatments. It hums ominously."; - icon_state = "missiletubesouth"; - name = "\improper massive vent"; - pixel_x = -15 - }, -/turf/open/shuttle/escapepod/floor1, -/area/bigredv2/oob) -"vOh" = ( -/obj/structure/closet/secure_closet/RD, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"vOm" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"vOn" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/caves/eta/xenobiology) -"vOr" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/bigredv2/outside/c) -"vOv" = ( -/obj/structure/largecrate/guns/merc{ - icon_state = "case_double"; - name = "supply crate" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"vOG" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"vOQ" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/whitepurple/north, -/area/bigredv2/caves/lambda/xenobiology) -"vOX" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"vPs" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/asteroidwarning/north, -/area/bigred/ground/garage_workshop) -"vPx" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"vPy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"vPK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/ore{ - pixel_x = 13; - pixel_y = 12 - }, -/obj/item/ammo_box/magazine/misc/flares/empty, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"vPM" = ( -/turf/open/floor/grimy, -/area/bigredv2/outside/marshal_office) -"vPS" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"vQc" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname, -/obj/effect/decal/cleanable/blood, -/obj/item/alien_embryo, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"vQD" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"vQL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden, -/turf/open/floor/whitegreencorner/north, -/area/bigredv2/outside/medical) -"vQN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/purple/east, -/area/bigredv2/caves/lambda/research) -"vQO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"vQP" = ( -/obj/effect/landmark/crap_item, -/turf/open/asphalt/cement/cement9, -/area/bigredv2/outside/space_port) -"vQS" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/bigredv2/outside/general_store) -"vQT" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, -/obj/structure/machinery/light, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"vRj" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_lambda) -"vRo" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"vRs" = ( -/obj/structure/sign/safety/high_voltage, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"vSl" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/landmark/objective_landmark/science, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"vSB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"vTP" = ( -/obj/structure/machinery/door_control{ - id = "Engineering"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"vUE" = ( -/obj/structure/machinery/photocopier{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/darkblue2/north, -/area/bigredv2/outside/admin_building) -"vVa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, -/turf/open/floor/whiteblue, -/area/bigredv2/outside/medical) -"vVv" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/curtain/red, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/engineering) -"vVz" = ( -/obj/item/trash/uscm_mre{ - pixel_x = 10; - pixel_y = -2 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"vVD" = ( -/turf/open/floor/darkblue2/west, -/area/bigredv2/outside/admin_building) -"vVI" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_y = -9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_y = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"vVJ" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"vVR" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"vVZ" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/filtration_cave_cas) -"vWd" = ( -/turf/open/floor/plating/warnplate, -/area/bigredv2/caves/lambda/xenobiology) -"vWi" = ( -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_2" - }, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/mono{ - pixel_x = -11; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/partypopper{ - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"vWp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/c) -"vWq" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigred/ground/garage_workshop) -"vWF" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_lambda) -"vWK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"vWP" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/chapel/east, -/area/bigredv2/outside/chapel) -"vWR" = ( -/obj/structure/machinery/door_control{ - id = "sci_br"; - name = "Observation Shutters"; - pixel_y = 28 - }, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"vXa" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"vXe" = ( -/obj/structure/closet/secure_closet/detective, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"vXi" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/outside/space_port) -"vXt" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"vXA" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 2; - pixel_y = 17 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"vXM" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"vXQ" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/item/storage/fancy/vials/random, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"vXZ" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"vYa" = ( -/obj/item/stack/sheet/wood{ - pixel_y = -7 - }, -/turf/open/floor/whitegreencorner/east, -/area/bigredv2/outside/medical) -"vYb" = ( -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"vYc" = ( -/obj/item/stack/cable_coil/cut{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"vYn" = ( -/obj/structure/target, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/xenobiology) -"vYB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"vYD" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"vYW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"vZg" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"vZv" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/research) -"vZJ" = ( -/obj/effect/landmark/crap_item, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/ne) -"vZK" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_4, -/area/bigredv2/caves_virology) -"wad" = ( -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_2" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/c) -"war" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/cautery{ - pixel_y = 9; - pixel_x = 9 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_y = 4; - pixel_x = -8 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"wat" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Lambda Lab Prison Restroom" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"waO" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 9; - layer = 3.01; - pixel_y = 1 - }, -/obj/item/trash/hotdog{ - pixel_x = -5; - pixel_y = 1 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"wbo" = ( -/obj/structure/surface/table, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"wbx" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "Righty tighty, lefty loosey!"; - dir = 1; - icon = 'icons/obj/pipes/valve.dmi'; - icon_state = "map_valve1"; - name = "Pressure Valve" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"wbK" = ( -/turf/open/floor/carpet13_5/west, -/area/bigredv2/outside/admin_building) -"wbR" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"wcf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/reagent_dispensers/virusfood{ - pixel_y = 32 - }, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) -"wch" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"wcl" = ( -/obj/structure/platform/shiva{ - dir = 1 - }, -/obj/structure/platform/shiva, -/obj/structure/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"wcm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/explosive/grenade/custom/large{ - pixel_x = 6; - pixel_y = 9 - }, -/turf/open/floor/whitepurplefull, -/area/bigredv2/outside/medical) -"wcw" = ( -/turf/open/gm/river, -/area/bigredv2/outside/filtration_plant) -"wcx" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/mars, -/area/bigredv2/outside/se) -"wcy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"wcC" = ( -/turf/closed/wall/solaris{ - damage = 1870; - damage_overlay = 5; - current_bulletholes = 3 - }, -/area/bigredv2/outside/office_complex) -"wcD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/marshal_office) -"wcF" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"wcP" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"wcR" = ( -/obj/structure/surface/table, -/obj/item/spacecash/c1, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"wcV" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"wdi" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"wdq" = ( -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/obj/effect/landmark/good_item, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"wdD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"wdE" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/item/tool/pen, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"weg" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/virology) -"wel" = ( -/obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"weF" = ( -/obj/item/shard/shrapnel, -/obj/item/shard, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/marshal_office) -"weO" = ( -/obj/structure/closet/secure_closet/medical_wall{ - pixel_y = -5 - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"weV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"weX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"weZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"wfd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"wfl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"wfn" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"wfB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"wfE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/e) -"wfH" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/mining) -"wfO" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Surgery" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/xenobiology) -"wfP" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"wfQ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"wfV" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper/janitor{ - pixel_x = 3; - pixel_y = 7 - }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"wgb" = ( -/turf/open/floor/whitepurple/northwest, -/area/bigredv2/caves/lambda/xenobiology) -"wgD" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Control Module"; - pixel_y = 15 - }, -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"wgE" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"who" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"whr" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"whu" = ( -/obj/structure/closet/jcloset, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"whA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/sheet/plasteel, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"whX" = ( -/turf/open/floor/darkblue2/southeast, -/area/bigredv2/caves/eta/storage) -"wie" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"wim" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/general_air_control/large_tank_control, -/obj/structure/cable{ - icon_state = "11-2" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"wiF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/arcade, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"wiT" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = -7 - }, -/obj/item/storage/fancy/cigarettes/kpack{ - pixel_x = 6 - }, -/obj/item/tool/lighter/zippo{ - pixel_x = -1; - pixel_y = 14 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"wjc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"wjo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/e) -"wjB" = ( -/obj/structure/machinery/computer/area_atmos{ - dir = 1 - }, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"wjC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Relaxation Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"wjH" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"wjN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/space_port_lz2) -"wjO" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/s) -"wjX" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"wkQ" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/lz1_north_cas) -"wkS" = ( -/obj/item/trash/semki{ - pixel_x = 6; - pixel_y = -5 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"wkV" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"wkY" = ( -/obj/structure/bed, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"wld" = ( -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"wll" = ( -/turf/open/floor/asteroidwarning, -/area/bigred/ground/garage_workshop) -"wln" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"wlu" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"wlF" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Server" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/storage) -"wlO" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"wms" = ( -/obj/structure/barricade/handrail/wire, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"wmz" = ( -/turf/open/floor/darkblue2/north, -/area/bigredv2/outside/admin_building) -"wmZ" = ( -/obj/structure/sign/safety/biolab{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"wnl" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"wno" = ( -/obj/structure/platform_decoration/shiva{ - dir = 8 - }, -/obj/structure/platform_decoration/shiva, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"wnB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/hefa_cult_decals/d32, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"wnD" = ( -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"wnH" = ( -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/xenobiology) -"wod" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/c) -"wou" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"woz" = ( -/obj/item/clothing/suit/armor/riot{ - pixel_y = -5; - pixel_x = -4 - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"woB" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"wpr" = ( -/obj/structure/surface/table, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"wpu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"wpz" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/asteroidfloor/north, -/area/bigred/ground/garage_workshop) -"wpC" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/eta/research) -"wpK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/biogenerator, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"wpW" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"wqn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"wqo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/bigredv2/outside/office_complex) -"wqt" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"wqJ" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 7 - }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -5 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"wqK" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 2; - pixel_x = -20 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"wqR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"wqU" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"wrj" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"wro" = ( -/obj/item/storage/pill_bottle/tramadol{ - pixel_y = -6; - pixel_x = 6 - }, -/obj/item/trash/burger, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"wrH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Atmospherics Condenser Storage" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"wrS" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"wsb" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe{ - pixel_y = -7 - }, -/obj/item/tool/pickaxe{ - pixel_y = -3 - }, -/obj/item/tool/pickaxe, -/obj/item/tool/pickaxe{ - pixel_y = 4 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"wsz" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/engineering) -"wsI" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/warnplate/northwest, -/area/bigredv2/caves/lambda/xenobiology) -"wsT" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"wtj" = ( -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"wtt" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"wtw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ - name = "\improper Dormitories Restroom" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"wtA" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/caves/eta/research) -"wtB" = ( -/obj/item/paper, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"wul" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves/mining) -"wum" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/s) -"wuI" = ( -/obj/item/ore, -/obj/item/ore{ - pixel_x = 13; - pixel_y = 12 - }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"wvn" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/structure/machinery/light, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitepurple/southwest, -/area/bigredv2/caves/lambda/research) -"wvo" = ( -/obj/item/ammo_magazine/smg/bizon{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/gun/smg/bizon{ - pixel_x = 1; - pixel_y = 11 - }, -/obj/item/ammo_magazine/smg/bizon{ - pixel_x = 11; - pixel_y = -3 - }, -/obj/item/ammo_magazine/smg/bizon, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"wvt" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/xenobiology) -"wwc" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"www" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/restraint/adjustable/cable/cyan, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"wwG" = ( -/obj/effect/spawner/random/tool{ - pixel_x = -11; - pixel_y = -9 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"wwQ" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_lambda) -"wwT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/engineering) -"wwW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"wxh" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"wxl" = ( -/obj/structure/flora/grass/desert/lightgrass_7, -/turf/open/mars, -/area/bigredv2/outside/se) -"wxv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"wxQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/plantspray/weeds, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"wya" = ( -/obj/structure/closet/secure_closet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/redfull/northwest, -/area/bigredv2/caves/eta/research) -"wyL" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"wyW" = ( -/obj/structure/curtain/medical, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopleft" - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"wzt" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"wzR" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/xenobiology) -"wAn" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/mars/mars_dirt_9, -/area/space) -"wAu" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/bar) -"wAw" = ( -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/caves/lambda/virology) -"wAB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkred2/north, -/area/bigredv2/outside/admin_building) -"wAP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/hydroponics) -"wAY" = ( -/obj/structure/closet/secure_closet/security/science, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"wBa" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/outside/lambda_cave_cas) -"wBj" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"wBy" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/lz2_south_cas) -"wBJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"wBN" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 27 - }, -/obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"wCs" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"wCw" = ( -/obj/structure/surface/table, -/obj/item/explosive/grenade/flashbang{ - pixel_x = 3; - pixel_y = -7 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"wCC" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_x = 4 - }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"wCE" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"wCF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"wCP" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip, -/obj/item/ammo_casing/shell, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"wCV" = ( -/turf/open/floor/darkred2/southwest, -/area/bigredv2/caves/eta/xenobiology) -"wCZ" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"wDh" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"wDt" = ( -/obj/item/trash/waffles{ - pixel_x = -19; - pixel_y = -5 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"wDv" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_se) -"wDx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -9 - }, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/mono{ - pixel_x = 18; - pixel_y = -9 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"wDK" = ( -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/marshal_office) -"wDZ" = ( -/turf/open/floor/red, -/area/bigredv2/outside/lambda_cave_cas) -"wEb" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"wEr" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/whitepurple/north, -/area/bigredv2/caves/lambda/xenobiology) -"wEv" = ( -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 2; - pixel_y = -4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"wES" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/caves/lambda/virology) -"wEZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/c) -"wFc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port_lz2) -"wFk" = ( -/obj/effect/decal/cleanable/mucus, -/obj/structure/surface/table, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"wFo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Marshal Office Armory"; - locked = 1 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"wFr" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison"; - icon_state = "door_open" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"wFI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"wFK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop{ - desc = "A bunch of tiny bits of shattered metal."; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "piece of shrapnel"; - pixel_x = -1; - pixel_y = 24 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"wGf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt{ - pixel_x = -1; - pixel_y = 17 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/se) -"wGr" = ( -/obj/structure/closet/firecloset/full, -/turf/open/mars, -/area/bigredv2/outside/c) -"wGs" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"wGx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"wGC" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/whiteyellowcorner/east, -/area/bigredv2/caves/lambda/xenobiology) -"wGK" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"wGO" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 4; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"wGS" = ( -/obj/item/stack/sheet/metal{ - pixel_y = 5; - pixel_x = 7 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"wHb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-in" - }, -/turf/open/floor/whitegreencorner/west, -/area/bigredv2/caves/lambda/virology) -"wHg" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz1north_mining" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port) -"wHm" = ( -/turf/open/asphalt/cement/cement14, -/area/bigredv2/outside/space_port) -"wHn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/caves/eta/living) -"wIb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"wIc" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/e) -"wIh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/bigredv2/outside/c) -"wIy" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves_north) -"wIE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves/lambda/research) -"wIN" = ( -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/research) -"wJd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"wJr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/s) -"wJt" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/darkblue2/southwest, -/area/bigredv2/caves/eta/research) -"wJz" = ( -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"wJA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -6; - pixel_y = -4; - layer = 3.1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"wJB" = ( -/obj/item/stack/sheet/wood{ - layer = 2.7; - pixel_x = -13 - }, -/obj/item/stack/rods{ - pixel_y = 11; - pixel_x = -11 - }, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/outside/medical) -"wJV" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/ne) -"wKb" = ( -/obj/structure/closet/l3closet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/general_offices) -"wKl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"wKn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkblue2, -/area/bigredv2/caves/eta/research) -"wKK" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/tank/air, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/filtration_plant) -"wKP" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"wKY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/research) -"wLa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Marshal Office Courtroom"; - welded = 1 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"wLf" = ( -/obj/structure/machinery/mill, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"wLg" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/virology) -"wLk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "Operations"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/obj/effect/landmark/good_item, -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"wLE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) -"wLP" = ( -/turf/open/floor/darkblue2/southeast, -/area/bigredv2/caves/eta/research) -"wMd" = ( -/obj/structure/surface/table/reinforced, -/obj/item/oldresearch/Resin, -/turf/open/floor/whitepurple/east, -/area/bigredv2/caves/lambda/xenobiology) -"wMi" = ( -/turf/open/floor/darkgreencorners2/east, -/area/bigredv2/caves/lambda/virology) -"wMs" = ( -/obj/item/weapon/gun/smg/mp5{ - current_mag = null; - pixel_y = 8; - pixel_x = -18 - }, -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_casing/bullet, -/obj/item/ammo_casing/bullet, -/obj/item/ammo_casing/bullet, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"wMv" = ( -/obj/structure/surface/table, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"wMy" = ( -/obj/structure/curtain/medical, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/caves/lambda/virology) -"wMJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"wMQ" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"wMR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"wNa" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz1_north_cas) -"wNd" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"wNe" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/landmark/corpsespawner/russian, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"wNk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"wNo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/morgue{ - dir = 2 - }, -/turf/open/floor/whiteblue/north, -/area/bigredv2/outside/medical) -"wNp" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"wNw" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Canteen" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/living) -"wNy" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/computer/aifixer, -/obj/structure/surface/table, -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/research) -"wNA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/pistol/m1911, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"wNP" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - layer = 3.5 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"wNT" = ( -/obj/structure/surface/table, -/obj/item/paper, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"wNW" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/cigar/matchbook/brown{ - pixel_x = 7; - pixel_y = 9 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"wOe" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/outside/medical) -"wOy" = ( -/obj/structure/barricade/wooden{ - pixel_y = -4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"wOC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"wOE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"wOV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/w) -"wOX" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/bigredv2/caves/lambda/xenobiology) -"wPb" = ( -/obj/item/stack/sheet/plasteel, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"wPh" = ( -/obj/structure/surface/table, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"wPs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"wPu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"wPx" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ - pixel_y = 4; - pixel_x = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) -"wQc" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = 30 - }, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/caves/lambda/xenobiology) -"wQf" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"wQj" = ( -/obj/item/stack/sheet/wood, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves_north) -"wQk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/research) -"wQq" = ( -/turf/open/floor/darkgreen2/west, -/area/bigredv2/caves/eta/xenobiology) -"wQs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"wQy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/breakroom) -"wQR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"wRa" = ( -/obj/item/stack/sheet/wood{ - layer = 2.7; - pixel_y = 8 - }, -/obj/item/stack/rods{ - pixel_x = 3; - pixel_y = 8 - }, -/turf/open/floor/whitegreencorner/west, -/area/bigredv2/outside/medical) -"wRl" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "admin_pmc" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/admin_building) -"wRm" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/general_store) -"wRA" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/c) -"wRU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Armory"; - locked = 1 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"wSj" = ( -/obj/structure/sign/safety/life_support, -/obj/structure/sign/safety/maint{ - pixel_x = 13 - }, -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/oob) -"wSk" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"wSw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/caves_lambda) -"wSz" = ( -/obj/item/trash/semki{ - pixel_y = -14 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/virology) -"wSQ" = ( -/obj/structure/cryofeed, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/outside/filtration_plant) -"wST" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/mars, -/area/bigredv2/outside/nw) -"wTq" = ( -/turf/open/floor/whitegreencorner/north, -/area/bigredv2/outside/medical) -"wTE" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/uranium{ - amount = 50 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"wTH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"wUe" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/carpet15_15/west, -/area/bigredv2/outside/bar) -"wUw" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"wUE" = ( -/obj/item/trash/hotdog{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"wUM" = ( -/obj/structure/sign/nosmoking_1{ - pixel_x = -32 - }, -/obj/item/prop/colony/usedbandage{ - dir = 5; - pixel_x = 10; - pixel_y = 18 - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"wUV" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/filtration_plant) -"wUX" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 10; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"wVg" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5 - }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"wVm" = ( -/obj/structure/surface/table, -/turf/open/floor/wood, -/area/bigredv2/caves/eta/living) -"wVq" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 1; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" - }, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"wVB" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"wVC" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/eta) -"wVM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5; - pixel_x = -1 - }, -/turf/open/floor/plating/warnplate/east, -/area/bigredv2/outside/telecomm/warehouse) -"wWp" = ( -/obj/item/tool/warning_cone{ - pixel_x = -6 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/filtration_plant) -"wWy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/caves/eta/living) -"wWH" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/virology) -"wWM" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/item/phone, -/turf/open/floor/darkblue2/north, -/area/bigredv2/caves/eta/research) -"wWT" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"wXl" = ( -/obj/structure/machinery/door_control{ - id = "eta"; - name = "Eta Lockdown"; - pixel_x = 30; - throw_range = 15 - }, -/turf/open/floor/darkblue2/east, -/area/bigredv2/caves/eta/research) -"wXm" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_lambda) -"wXs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/s) -"wXz" = ( -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"wXB" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"wXE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/machinery/iv_drip, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"wXP" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"wXY" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/door_control{ - id = "Kitchen"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"wYp" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/s) -"wYw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"wYF" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"wYW" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/rad_haz{ - pixel_y = -32 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/darkpurple2, -/area/bigredv2/caves/lambda/research) -"wZl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"wZp" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"wZq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/shard/shrapnel/bone_chips, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"wZz" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/c) -"wZE" = ( -/obj/item/trash/cigbutt{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/virology) -"xad" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/shard, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"xas" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/mars, -/area/bigredv2/outside/e) -"xaC" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"xaH" = ( -/turf/closed/wall/wood, -/area/bigredv2/caves_sw) -"xba" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_east) -"xbg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"xbh" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/floor/loadingarea/west, -/area/bigredv2/outside/cargo) -"xbv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"xbD" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/mars, -/area/bigredv2/outside/c) -"xbW" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/nw) -"xcc" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/obj/effect/decal/medical_decals{ - icon_state = "cryotop" - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"xdd" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/filtration_cave_cas) -"xdm" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"xdr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/outside/medical) -"xdO" = ( -/obj/structure/bed/chair, -/turf/open/floor/yellowfull, -/area/bigredv2/outside/hydroponics) -"xen" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_sw) -"xeq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) -"xeD" = ( -/obj/structure/filingcabinet, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"xeG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Break Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"xeI" = ( -/obj/structure/window/reinforced/toughened{ - icon_state = "fwindow" - }, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/lambda/virology) -"xeY" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/space_port_lz2) -"xfe" = ( -/obj/item/prop{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 7; - pixel_y = 3; - layer = 3.1 - }, -/obj/effect/decal/cleanable/generic, -/obj/item/stack/sheet/cardboard{ - pixel_x = 2; - pixel_y = -5; - layer = 3.01 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/s) -"xfu" = ( -/obj/item/weapon/shield/riot, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"xfO" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"xfZ" = ( -/obj/structure/window/framed/solaris/reinforced/hull, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/oob) -"xgc" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"xgt" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/camera, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"xgx" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"xgO" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"xhd" = ( -/obj/structure/computer3frame/wallcomp, -/obj/structure/cable{ - icon_state = "11-2" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"xhg" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"xhO" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"xia" = ( -/turf/open/floor/darkpurple2/west, -/area/bigredv2/caves/lambda/breakroom) -"xib" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port_lz2) -"xie" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"xij" = ( -/turf/open/floor/darkblue2, -/area/bigredv2/outside/admin_building) -"xik" = ( -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/surface/table, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"xip" = ( -/obj/structure/surface/table, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Eta Labs"; - phone_id = "Workshop" - }, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"xis" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/telecomm/warehouse) -"xix" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"xiG" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/filtration_plant) -"xiJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_4" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"xiK" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering SMES" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"xjf" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/nw/ceiling) -"xjk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"xjl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/storage) -"xjN" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/hardhat/orange{ - pixel_y = 10 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_plant) -"xjR" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"xjU" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"xkb" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"xkl" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"xks" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"xku" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"xkC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"xkQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"xlc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"xlg" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 1 - }, -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"xlm" = ( -/obj/structure/machinery/computer/cameras, -/turf/open/floor/darkredcorners2/east, -/area/bigredv2/caves/eta/xenobiology) -"xln" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/eat{ - pixel_y = -2 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/ne) -"xlq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cigbutt{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"xlA" = ( -/obj/structure/fence, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"xlS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/tunnel{ - id = "hole2" - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"xmr" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"xmJ" = ( -/obj/structure/pipes/vents/scrubber/on{ - dir = 8 - }, -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/virology) -"xmX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/e) -"xnb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/ne) -"xnk" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"xnq" = ( -/obj/structure/filingcabinet/medical, -/turf/open/floor/darkred2/north, -/area/bigredv2/caves/eta/research) -"xnx" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"xnK" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) -"xnQ" = ( -/obj/item/reagent_container/pill/happy, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"xob" = ( -/obj/structure/closet/crate/trashcart{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/ganucci, -/obj/item/stack/sheet/cardboard{ - pixel_x = 7; - pixel_y = -2 - }, -/obj/item/trash/eat{ - pixel_x = -9; - pixel_y = -5 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"xol" = ( -/obj/item/clothing/mask/gas, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"xoM" = ( -/obj/structure/surface/table, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"xoV" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves_north) -"xpq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-in" - }, -/turf/open/floor/plating/platebot, -/area/bigredv2/outside/space_port) -"xpt" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/space_port_lz2) -"xpv" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/caves/eta/living) -"xpw" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/structure/machinery/recharge_station, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"xpB" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/space_port_lz2) -"xpC" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"xpF" = ( -/obj/item/trash/cheesie, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"xpG" = ( -/obj/structure/sign/safety/hazard, -/turf/closed/wall/solaris, -/area/bigredv2/outside/filtration_plant) -"xpH" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/nw) -"xpI" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/research) -"xqf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"xqw" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"xqE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Research Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/living) -"xqO" = ( -/obj/item/ore{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"xqV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle/impenetrable, -/area/bigredv2/caves/eta/xenobiology) -"xrj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000; - pixel_y = 3; - pixel_x = 17 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"xrn" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"xrp" = ( -/obj/structure/largecrate/guns/merc{ - name = "\improper dodgy crate" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"xrw" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"xrF" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"xrL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/flour, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"xsa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"xsb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) -"xso" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"xsw" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"xsD" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"xsI" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/retractor, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/caves/lambda/xenobiology) -"xsU" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"xsX" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor, -/area/bigredv2/outside/lambda_cave_cas) -"xta" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) -"xth" = ( -/obj/item/trash/snack_bowl{ - pixel_y = 5; - pixel_x = -8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"xtk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/e) -"xtA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"xtG" = ( -/obj/item/storage/box/MRE{ - pixel_x = -1; - pixel_y = -6 - }, -/obj/item/storage/box/MRE{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"xtH" = ( -/obj/structure/largecrate/random, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"xtT" = ( -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = 3; - pixel_y = 12 - }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"xtU" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/telecomm/lz2_cave) -"xux" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/suit_storage_unit/carbon_unit{ - icon_state = "open" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"xuC" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - name = "\improper Medical Clinic Morgue"; - locked = 1 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"xuP" = ( -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 16; - pixel_y = 16 - }, -/obj/item/trash/cigbutt, -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - icon = 'icons/obj/pipes/manifold.dmi'; - icon_state = "map"; - name = "Pipe manifold" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"xuY" = ( -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/caves/eta/xenobiology) -"xvo" = ( -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"xvw" = ( -/obj/structure/surface/table, -/obj/item/folder/yellow, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"xvB" = ( -/obj/structure/barricade/wooden, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"xvO" = ( -/turf/open/floor/dark, -/area/bigredv2/caves/eta/living) -"xvP" = ( -/obj/effect/glowshroom, -/turf/open/floor/whitegreenfull, -/area/bigredv2/caves/lambda/xenobiology) -"xwd" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/s) -"xwk" = ( -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"xws" = ( -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -11 - }, -/obj/structure/machinery/power/apc/power/north{ - name = "Bar APC" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"xwL" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/whitepurplefull, -/area/bigredv2/caves/lambda/xenobiology) -"xwT" = ( -/obj/item/shard, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"xxt" = ( -/obj/structure/pipes/vents/scrubber/on{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/breakroom) -"xxP" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Medical Clinic Power Station" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"xyc" = ( -/obj/structure/machinery/filtration/console{ - pixel_y = 15 - }, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves/mining) -"xyw" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) -"xyK" = ( -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - pixel_x = -5; - pixel_y = 2; - layer = 2.8 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/outside/nw) -"xyX" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"xyZ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = -8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves/mining) -"xzl" = ( -/obj/item/shard, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"xzv" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"xzx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"xzB" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_east) -"xzJ" = ( -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/window/reinforced/toughened, -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/lambda/virology) -"xzR" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"xAd" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteblue, -/area/bigredv2/outside/medical) -"xAg" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/bigredv2/outside/filtration_cave_cas) -"xAi" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"xAO" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"xBd" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"xBy" = ( -/obj/structure/machinery/r_n_d/bioprinter, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/caves/eta/research) -"xBU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"xCh" = ( -/turf/open/floor/whitegreencorner/west, -/area/bigredv2/outside/medical) -"xCk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"xDx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/pistachios{ - pixel_y = -21; - pixel_x = -6 - }, -/obj/item/stack/sheet/cardboard{ - pixel_x = -1; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"xDK" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz2_south_cas) -"xDY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"xEf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/woodentable, -/obj/item/prop/magazine/book/bladerunner{ - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"xEk" = ( -/obj/item/ore{ - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"xEl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) -"xEs" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port) -"xEG" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"xFt" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/queen_spawn, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"xFu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"xFF" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"xFZ" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_lambda) -"xGD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/high_rad{ - pixel_x = -32 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"xGF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Eta Lab" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/living) -"xGP" = ( -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/xenobiology) -"xGV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"xHA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/outside/admin_building) -"xHE" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/ne) -"xHW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"xIi" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"xIt" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"xIM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/turf/open/floor/plating/platebotc, -/area/bigredv2/outside/space_port) -"xIP" = ( -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/lz2_south_cas) -"xJb" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"xJl" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/white, -/area/bigredv2/outside/virology) -"xJq" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 9 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"xJu" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Holding Cell" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"xJC" = ( -/obj/item/ore, -/turf/open/mars, -/area/bigredv2/outside/filtration_plant) -"xJU" = ( -/turf/closed/wall/solaris{ - damage = 1870; - damage_overlay = 5; - current_bulletholes = 1 - }, -/area/bigredv2/outside/office_complex) -"xJX" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) -"xKb" = ( -/obj/structure/prop/server_equipment/yutani_server, -/turf/open/floor/greengrid, -/area/bigredv2/caves/lambda/research) -"xKc" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 18 - }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"xKs" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) -"xKt" = ( -/obj/structure/bed/bedroll{ - dir = 5 - }, -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"xKG" = ( -/obj/structure/bed/sofa/south/grey/right{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"xLf" = ( -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/storage) -"xLg" = ( -/obj/structure/largecrate/random, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"xLJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/whitegreen, -/area/bigredv2/caves/lambda/virology) -"xLR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"xLU" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"xLY" = ( -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"xMq" = ( -/obj/item/stack/sheet/glass, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"xMr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/caves/mining) -"xMz" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"xMQ" = ( -/obj/structure/machinery/light, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"xNA" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/mars, -/area/bigredv2/outside/ne) -"xNS" = ( -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"xOh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"xOk" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "cargo_containers" - }, -/turf/closed/wall/solaris, -/area/bigredv2/outside/cargo) -"xOl" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"xOD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"xOQ" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"xPz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/spacecash/c1{ - pixel_x = -6; - pixel_y = -8 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"xPV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"xPX" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 13 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves/mining) -"xQb" = ( -/obj/structure/pipes/vents/pump/on, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"xQn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Relaxation" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/eta/living) -"xQs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - name = "\improper Virology Lab Decontamination" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"xQx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/obj/item/ammo_casing/bullet, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"xQA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"xQE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"xQG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/mining) -"xQI" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"xQO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"xQW" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"xRf" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"xRj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) -"xRt" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_research) -"xRy" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) -"xRE" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 13 - }, -/obj/structure/closet/crate/miningcar/yellow, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves/mining) -"xRH" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/purple/southwest, -/area/bigredv2/caves/lambda/research) -"xRJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/engineering) -"xRL" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"xRU" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/admin_building) -"xSw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/e) -"xSE" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/lz2_south_cas) -"xSK" = ( -/obj/structure/largecrate/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"xSP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Marshal Office Prison Toilet" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"xSW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/s) -"xSX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 4 - }, -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"xTh" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/nw) -"xTk" = ( -/obj/limb/arm/l_arm, -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor, -/area/bigredv2/outside/lambda_cave_cas) -"xTE" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Cargo Bay Storage" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"xTL" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Crew Habitation Complex" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/hydroponics) -"xTM" = ( -/obj/structure/closet/medical_wall, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"xTP" = ( -/obj/structure/machinery/centrifuge, -/turf/open/floor/whitegreen/north, -/area/bigredv2/caves/lambda/xenobiology) -"xTQ" = ( -/turf/open/floor/almayer/w_y0/north, -/area/bigredv2/outside/admin_building) -"xTS" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves_lambda) -"xUa" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"xUq" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/mining) -"xUt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"xUU" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_north) -"xVc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"xVd" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/structure/machinery/light/built, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitepurple/southeast, -/area/bigredv2/caves/lambda/research) -"xVG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"xVP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"xWh" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/research) -"xWr" = ( -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; - pixel_x = 4; - pixel_y = 15 - }, -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; - pixel_x = -8; - pixel_y = 9 - }, -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"xWw" = ( -/obj/structure/surface/table, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/phone, -/turf/open/floor/warnwhite/east, -/area/bigredv2/outside/admin_building) -"xWC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Engineering Complex" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/engineering) -"xWL" = ( -/obj/effect/acid_hole, -/turf/closed/wall/solaris, -/area/bigredv2/outside/general_offices) -"xWN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/general_store) -"xWW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"xXp" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/lambda/research) -"xXv" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "lambda-interior"; - name = "Lambda Checkpoint Interior"; - pixel_x = null - }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/lambda_cave_cas) -"xXV" = ( -/obj/structure/surface/table, -/obj/item/device/radio/headset, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm) -"xXY" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"xYa" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Director's Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"xYm" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_research) -"xYp" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"xYF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"xYY" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 18 - }, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 - }, -/obj/item/weapon/gun/rifle/m41a/training, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves/mining) -"xZz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"xZL" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside/lambda_cave_cas) -"yai" = ( -/obj/item/paper/bigred/walls, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"yaq" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/se) -"yay" = ( -/obj/item/ammo_casing/bullet, -/obj/item/ammo_casing/bullet, -/obj/item/ammo_casing/bullet, -/turf/open/mars, -/area/bigredv2/outside/c) -"yaH" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) -"yaQ" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) -"yaT" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/medical_decals{ - icon_state = "cryocell1decal" - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"ybd" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/outside/lz1_telecomm_cas) -"ybw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel{ - layer = 3.3; - pixel_x = -15; - pixel_y = -9 - }, -/obj/structure/largecrate/random/barrel{ - pixel_x = -4; - pixel_y = 10; - layer = 3.2 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ybA" = ( -/obj/item/tool/warning_cone{ - pixel_y = 19 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"ybU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"ycc" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"ycr" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/e) -"ycw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Armory" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"ycN" = ( -/obj/item/stack/sheet/wood{ - pixel_y = -8 - }, -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves/mining) -"ycO" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"ycQ" = ( -/obj/item/weapon/shield/riot{ - pixel_x = -3; - pixel_y = -7 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"ydl" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/e) -"ydw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/library) -"ydC" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"ydJ" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"ydX" = ( -/obj/item/stack/sheet/wood{ - pixel_x = 4 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"yea" = ( -/obj/structure/surface/table, -/obj/item/trash/kepler{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"yeK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations Office" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"yeQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) -"yeV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/breakroom) -"yeW" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/stack/sheet/metal{ - amount = 3 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/medical) -"yfa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light_construct{ - dir = 8 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"yfg" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/nw) -"yfr" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/whitepurple/west, -/area/bigredv2/caves/lambda/research) -"yfH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/space_port_lz2) -"yfM" = ( -/obj/structure/machinery/door_control{ - id = "filtration"; - name = "Filtration Lockdown"; - pixel_x = 30; - throw_range = 15 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"yfS" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) -"ygz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"ygQ" = ( -/obj/item/ore/gold, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"yhh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"yhq" = ( -/obj/item/tool/pickaxe, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/mining) -"yhu" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/e) -"yhJ" = ( -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/outside/engineering) -"yhP" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/e) -"yhW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/darkredcorners2/north, -/area/bigredv2/outside/admin_building) -"yie" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/filtration_plant) -"yij" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"yiu" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves/mining) -"yiB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Bedroom" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/dorms) -"yiC" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"yiJ" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"yjo" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp{ - pixel_y = 15 - }, -/obj/item/paper/bigred/lambda, -/turf/open/floor/elevatorshaft/north, -/area/bigredv2/caves/lambda/breakroom) -"yjq" = ( -/turf/open/floor/whitepurple/west, -/area/bigredv2/caves/lambda/research) -"yjt" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/lz2_south_cas) -"yjC" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/e) -"yjN" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"yjV" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"ykb" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"ykh" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/se) -"ykl" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) -"ykr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"ykx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/s) -"ykH" = ( -/turf/open/asphalt/cement/cement4, -/area/bigredv2/caves_lambda) -"ykJ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/darkpurple2/north, -/area/bigredv2/caves/lambda/research) -"ykR" = ( -/turf/closed/wall/mineral/uranium, -/area/bigredv2/outside/engineering) -"ykX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Robotics" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/office_complex) -"ylg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) -"ylv" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz1_telecomm_cas) -"ylK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/lambda/research) -"yma" = ( -/obj/structure/window_frame/solaris, -/obj/item/shard, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) - -(1,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(2,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(3,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -"} -(4,1,1) = {" -aaa -aab -aao -aao -nLl -gqP -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -acA -acA -acA -acA -acA -acA -acA -acA -acA -acA -acA -acA -acA -acA -acA -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -qoO -lIB -lIB -lUP -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -qoO -lIB -lIB -lIB -lIB -lIB -lIB -lUP -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(5,1,1) = {" -aaa -aab -aao -gLB -lvK -qjO -iGO -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -acA -toy -toy -toy -toy -toy -toy -toy -toy -toy -toy -toy -toy -toy -acA -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -oZj -uzL -cuH -cuH -cuH -lUP -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -qoO -cuH -cuH -cuH -cuH -kql -cuH -cuH -cuH -cuH -cuH -cuH -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(6,1,1) = {" -aaa -aab -aao -aao -dof -duE -jcr -tVe -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -acA -toy -toy -toy -toy -toy -toy -toy -toy -toy -toy -toy -toy -toy -acA -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -oZj -uzL -uzL -cuH -kql -cuH -cuH -lUP -aao -aao -aao -aao -aao -aao -aao -aao -onp -aao -qoO -cuH -cuH -cuH -cuH -cuH -cuH -ucH -cuH -cuH -cuH -cuH -cuH -cuH -aao -aao -onp -aao -qoO -lUP -aao -qoO -bhS -bhS -bhS -bhS -bhS -bhS -bhS -bhS -qrW -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(7,1,1) = {" -aaa -aab -aao -aao -aao -wAn -aVQ -nlW -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -acA -toy -toy -acQ -acQ -acQ -acQ -acQ -acQ -acQ -acQ -acQ -rUr -toy -ahN -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -uzd -uzL -uzL -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -aao -aao -qoO -cuH -lIB -cuH -cuH -cuH -cuH -cuH -cuH -cTT -cuH -cuH -cuH -cuH -cuH -cuH -cuH -aao -aao -hTL -lIB -cuH -cuH -lIB -cuH -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -qrW -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(8,1,1) = {" -aaa -aab -aao -aao -aao -iVd -nlW -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -acA -toy -toy -acQ -mrC -pVJ -hkS -pzh -nKl -vFr -hcK -acQ -toy -toy -aiv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -uzL -uzL -uzL -oZj -uzL -uzL -uzL -cuH -cuH -cuH -jaB -cuH -cuH -cuH -cuH -cuH -cuH -cuH -aao -hTL -cuH -cuH -cuH -ucH -cuH -aao -aao -aao -aao -aao -aao -aao -aao -cuH -cuH -cuH -lIB -lQb -cuH -cuH -cuH -cuH -cuH -cuH -eRS -cpD -cpD -mQP -cpD -cpD -eRS -cpD -cpD -cpD -bhS -bhS -bhS -bhS -bhS -bhS -qrW -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -cdj -cdj -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(9,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -acA -toy -toy -acQ -qcZ -qcZ -qcZ -mck -iQS -qcZ -xoM -afv -qTr -qTr -acA -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -uzL -uzL -uzL -uzL -uzL -uzL -uzL -uzL -uzd -uzL -uzL -uzL -cuH -cuH -cuH -jaB -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -jaB -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -ucH -ucH -ucH -iGK -iGK -iGK -iGK -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -bhS -bhS -qrW -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nxH -bhS -bhS -bhS -bhS -qrW -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -pev -oYB -kSg -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(10,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -acA -toy -toy -acQ -aWz -acZ -qcZ -qcZ -qcZ -qPD -qcZ -afv -qTr -qTr -acA -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -rNs -aao -aao -uzL -uzL -uzL -uzL -uzL -uzL -uzL -uzL -uzL -uzL -bsA -uzL -uzd -uzL -uzL -uzL -cuH -cuH -cuH -jaB -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -jaB -aao -aao -aao -aao -aao -aao -aao -aao -aao -lIB -lIB -lIB -cuH -cuH -cuH -cuH -cuH -cTT -aao -aao -aao -aao -aao -aao -aao -mxT -iGK -iGK -iGK -iGK -iGK -iGK -cpD -cpD -cpD -cpD -eRS -cpD -cpD -cpD -dQy -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -cpD -cpD -cpD -cpD -cpD -aao -aao -aao -aao -aao -aao -nxH -bhS -puk -puk -puk -puk -puk -puk -qrW -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -ksq -xqO -wuI -aao -aao -aao -aao -aao -aao -pev -oLX -pev -mdF -lVL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(11,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -acA -toy -toy -acQ -aWz -biQ -qcZ -qcZ -qcZ -coz -ruz -afv -toy -toy -acA -acA -acA -acA -acA -ahN -acA -kHW -moP -uzL -uzL -uzL -uzL -uzL -uzL -uzL -uzL -uzL -uzL -gda -gda -gda -uzL -uzL -uzL -moP -uzL -uzL -vxI -uzL -cuH -cuH -cuH -jaB -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -kql -cuH -cuH -lIB -lIB -lIB -lIB -aao -aao -aao -aao -cuH -cuH -ucH -ucH -cuH -cuH -cuH -cuH -jaB -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -mxT -iGK -iGK -iGK -iGK -cpD -cpD -cpD -gcs -gcs -gcs -gcs -gcs -gcs -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -cpD -cpD -cpD -pEz -cpD -cpD -cpD -cpD -cpD -aao -aao -aao -nxH -cpD -cpD -cFY -puk -puk -puk -puk -puk -dQy -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -oAc -unH -unH -unH -unH -wWT -cdj -pev -oLX -sSW -xEk -vHw -vHw -aao -aao -aao -pev -vkq -lVL -pev -pev -pev -vHw -vHw -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(12,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -acA -toy -toy -acQ -acQ -acQ -acQ -ozr -acQ -acQ -acQ -acQ -toy -toy -toy -qTr -qTr -qTr -qTr -hJf -akl -dsJ -uzL -uzL -moP -cqI -uzL -uzL -uzL -uzL -uzL -uzL -moP -uzL -uzL -moP -uzL -uzL -uzL -uzL -uzL -uzL -uzL -uzL -cuH -cuH -cuH -jaB -aao -aao -aao -aao -aao -aao -cuH -hTL -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cTT -cuH -cuH -cuH -cuH -cuH -cuH -jaB -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -mxT -ski -gcs -gcs -gcs -mSF -mSF -mSF -gcs -gcs -gcs -gcs -gcs -aao -aao -aao -aao -aao -cpD -cpD -cpD -cpD -cpD -cpD -mek -mek -cpD -cpD -pEz -qnA -cpD -cpD -cpD -cpD -puk -puk -puk -jXB -puk -puk -puk -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -unH -unH -unH -unH -oqC -mSH -wfP -xRE -lwY -qnx -xUq -lVL -lVL -nKX -wWT -idq -pev -kYB -nry -nry -nry -nry -nry -kDw -vHw -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(13,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -acA -toy -toy -acQ -uvI -xvw -kkC -jJh -bKA -qcZ -nFK -acQ -toy -toy -qTr -kFy -toy -qTr -qTr -hJf -acA -dsJ -uzL -uzL -uzL -ylv -uzL -uzL -uzL -uzL -uzL -moP -uzL -uzL -uzL -uzL -uzL -uzL -uzL -uzL -uzL -uzL -uzL -uzL -cuH -cuH -cuH -jaB -aao -aao -aao -aao -aao -aao -aao -hTL -cuH -cuH -cuH -cuH -cuH -cuH -cuH -cuH -kql -cuH -cuH -ucH -cuH -cuH -cuH -aao -aao -hTL -cuH -cuH -cTT -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -gcs -gcs -gcs -gcs -gcs -gcs -gcs -gcs -gcs -mSF -mSF -gcs -gcs -cpD -cpD -cpD -cpD -cpD -cpD -mek -mek -cpD -cpD -mek -mek -cpD -cpD -cpD -qnA -cpD -cpD -cpD -cpD -puk -puk -puk -puk -puk -puk -puk -puk -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -pev -nKX -unH -unH -unH -unH -unH -fiR -unH -nry -nry -hlW -xKc -nry -klc -wWT -idq -pev -uLu -unH -unH -unH -unH -klc -fUh -unH -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(14,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -acA -toy -toy -acQ -xoM -cKs -cKs -cKs -qcZ -qcZ -acZ -afv -qTr -qTr -toy -toy -toy -toy -toy -hJf -acA -dsJ -uzL -uzL -uzL -uzL -moP -moP -uzL -moP -moP -uzL -uzL -uzL -uzL -uzL -uzL -uzL -uzL -uzL -uzL -uzL -gda -gda -edm -cuH -cuH -kql -lUP -aao -aao -aao -aao -aao -aao -hTL -ucH -ucH -ucH -cuH -cuH -ucH -ucH -ucH -ucH -ucH -jaB -aao -hTL -cuH -aao -aao -aao -ujZ -ucH -cTT -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -gcs -gcs -gcs -gcs -gcs -gcs -gcs -gcs -gcs -ski -eEy -ski -gcs -gcs -gcs -jZq -cpD -bhS -mek -mek -cpD -pEz -mek -mek -cpD -cpD -cpD -cpD -cpD -cpD -cpD -qnA -ckg -cpD -cpD -cpD -cpD -cpD -cpD -cpD -puk -puk -puk -puk -cpD -aao -aao -aao -vHw -vHw -vHw -vHw -vHw -vHw -aao -aao -aao -pev -pev -pJA -unH -mSH -unH -unH -unH -nPn -klc -klc -clK -clK -klc -klc -klc -wWT -idq -pev -pev -nKX -unH -unH -unH -klc -klc -unH -unH -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(15,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aae -dgb -ewH -ewH -ewH -ewH -dgb -ewH -ewH -ewH -ewH -ewH -ewH -dgb -ewH -toy -oaW -kLP -wFI -nqA -nqA -tnC -qcZ -qcZ -afL -afv -toy -toy -toy -toy -toy -qTr -kxW -hJf -acA -dsJ -uzL -uzL -uzL -uzL -uzL -uzL -bsA -uzL -uzL -uzL -uzL -aao -aao -uzL -uzL -moP -moP -uzd -gda -ybd -aao -aao -hTL -gJw -gJw -ssR -clD -aao -aao -aao -aao -aao -aao -aao -aao -aao -hTL -hTL -cTT -aao -aao -aao -aao -aao -aao -aao -hTL -jaB -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -gcs -gcs -mSF -mSF -gcs -gcs -gcs -gcs -gcs -gcs -gcs -gcs -gcs -gfK -gcs -gcs -gcs -cpD -cpD -sHe -mek -cpD -cpD -cpD -cpD -cpD -cpD -pEz -cpD -cpD -aao -aao -aao -gfn -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -puk -cpD -puk -puk -kOg -unH -vHw -vHw -vHw -vHw -vHw -vHw -vHw -vHw -klc -wWT -pev -pev -pev -pJA -unH -unH -unH -unH -unH -wWT -nKX -clK -clK -klc -klc -bSk -wWT -cBN -pev -pev -nKX -unH -unH -unH -unH -unH -xCk -unH -unH -vHw -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(16,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aae -ewH -dOw -qtD -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -smj -acQ -qcZ -qcZ -qcZ -cKs -qcZ -qcZ -acZ -afv -toy -qTr -qTr -toy -toy -qTr -toy -hJf -acA -aao -uzL -gda -gda -gda -gda -gda -gda -gda -uzL -uzL -aao -aao -aao -aao -uzd -uzL -uzL -gda -aao -aao -aao -aao -cTT -aao -feZ -cAe -uba -uba -aao -aao -aao -aao -lFR -aao -aao -aao -hTL -hTL -cuH -aao -aao -aao -aao -aao -aao -aao -ujZ -jaB -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -gcs -gcs -gfK -jtG -gcs -gcs -gcs -gcs -gcs -pQq -gcs -gcs -gcs -gcs -gfK -gcs -jtG -cpD -cpD -cpD -cpD -cpD -bhS -qrW -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -gfn -cpD -cpD -cpD -cpD -cpD -xaH -xaH -cpD -puk -puk -puk -puk -mAt -unH -unH -wQf -unH -unH -fiR -klc -dPW -klc -klc -klc -kMx -pev -lVL -pev -nKX -unH -unH -unH -unH -unH -klc -ykb -ykb -ykb -ykb -ykb -tMW -cBN -pev -pev -nKX -unH -unH -unH -unH -unH -unH -unH -unH -vHw -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(17,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aae -ewH -ewH -ewH -kbL -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -xjR -ewH -ewH -lpx -acQ -kkC -rtW -dvL -xXV -qcZ -qcZ -afL -acQ -toy -qTr -qTr -toy -toy -qTr -toy -hJf -akl -aao -aao -pQM -vaV -vaV -pQM -vaV -vaV -vaV -aao -aao -aao -aao -aao -aao -dMB -gda -ylv -aao -aao -aao -aao -aao -aao -aao -iHF -lVe -ksZ -weg -aao -aao -aao -aao -aao -aao -aao -aao -cwQ -tpX -vZK -aao -aao -aao -aao -aao -aao -aao -ozv -ssR -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -gcs -gcs -gcs -gcs -gcs -mSF -gcs -gcs -gcs -ski -ski -ski -pQq -aao -aao -aao -aao -aao -jyP -ski -ski -cpD -mek -mek -cpD -cpD -cpD -dQy -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -gfn -cpD -cpD -cpD -cpD -cpD -xaH -xaH -cpD -puk -puk -puk -puk -unH -rij -unH -tPm -unH -unH -unH -klc -klc -klc -klc -klc -wWT -pTa -pev -pev -nKX -aao -aao -aao -aao -unH -wWT -hPg -pev -pev -lVL -pev -gbV -cBN -pev -pev -nKX -unH -unH -unH -pQz -unH -unH -unH -miZ -miZ -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(18,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -aae -aae -aae -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -xQO -ewH -ewH -ewH -ewH -ewH -ewH -lpx -acQ -acQ -acQ -acQ -acQ -acQ -acQ -acQ -acQ -acA -ahN -acA -acA -acA -acA -acA -acA -acA -aao -aao -qsE -qsE -qsE -qsE -qsE -qsE -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -weg -ksZ -weg -nof -pMw -pMw -nof -nof -aoD -aoD -aoD -aoD -aoD -aRD -aoD -aoD -aoD -aoD -aoD -aoD -aoD -aoD -aRD -aRD -aoD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -mPO -gcs -gcs -gcs -gcs -gcs -gcs -gcs -gcs -lYS -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -gfn -mek -mek -cpD -pEz -cpD -cpD -bhS -qrW -aao -aao -aao -aao -aao -aao -aao -aao -mxT -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -puk -puk -puk -puk -unH -ykb -ykb -ykb -ykb -sht -fiR -wNe -klc -klc -klc -klc -klc -kMx -hPg -pev -aao -aao -aao -aao -uHQ -uHQ -uHQ -uHQ -djd -sop -bsv -djd -uHQ -uHQ -uHQ -ryy -rrJ -unH -xCk -uWv -unH -ykb -ykb -unH -miZ -miZ -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(19,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -icO -aae -vFN -ewH -ewH -ewH -ewH -ewH -lpx -dgb -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -aae -aao -aao -qsE -qsE -qlK -jHS -qrZ -qsE -aao -qsE -qsE -vLd -hBD -bGp -tcb -qsE -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -weg -weg -nof -cjf -mEk -aFv -bty -jMN -aoD -bFx -bPC -aoD -vJJ -aRE -iDb -arT -qun -vsN -egH -kCz -rSX -aoD -pfy -aRE -aoD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -vvG -tft -hxa -hxa -hxa -tft -tft -ski -ski -pQq -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -mxT -iGK -iGK -cpD -cpD -cpD -cpD -cpD -dQy -aao -aao -aao -aao -aao -aao -aao -aao -aao -gfn -puk -puk -puk -puk -puk -puk -puk -puk -puk -puk -puk -rPC -mLb -pjW -ihw -kjw -pJA -unH -key -jUY -jUY -jUY -dHr -hLp -ivM -vHw -aao -aao -aao -aao -aao -uHQ -wzt -wvo -uHQ -eNW -hvB -aHN -sop -wiT -sst -uHQ -oQq -oLZ -ykb -ykb -mlQ -wWT -pev -pev -pJA -miZ -miZ -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(20,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -ewH -ewH -ewH -ewH -ewH -ewH -ewH -xjR -ewH -ewH -ewH -dgb -ewH -ewH -ewH -ewH -ewH -ewH -lpx -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -aae -aao -aao -qsE -oxk -vLd -lYZ -vLd -qsE -qsE -qsE -hbS -upE -hBD -lcu -gqS -qsE -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nof -weg -nof -nof -nIY -nIY -nof -mnV -aoD -sab -bPC -aoD -aQz -uQT -iDb -arT -iqQ -bPC -hND -bPC -hdK -aoD -nGL -hND -aoD -aao -aao -aao -aao -aao -aao -aao -aao -ayf -ayf -ayf -ayf -ayf -ayf -ayf -ayf -ayf -ayf -ayf -ayf -ayf -ayf -ayf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -mxT -cpD -cpD -cpD -pEz -dQy -aao -aao -aao -aao -aao -aao -aao -aao -aao -gfn -puk -puk -puk -puk -puk -puk -puk -puk -puk -puk -cFY -tbe -lVL -yhq -hyo -fDE -lVL -nKX -wtj -vka -krW -kuu -onR -egS -gMJ -lTW -eJc -dMS -uHQ -uHQ -uHQ -uHQ -rjF -sdw -lBe -okp -aHN -uER -sop -dnt -fXE -uHQ -aao -aao -cdj -cdj -nKX -wWT -pev -pev -pev -fUo -miZ -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(21,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -xEs -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -xEs -ewH -ewH -ewH -ewH -lpx -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -ewH -aae -aao -qsE -qsE -vLd -upE -vLd -upE -qsE -rMG -vLd -vLd -upE -vLd -qNP -qNP -qsE -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nof -nof -lze -eNl -qjw -qjw -qjw -nWP -bSL -sGS -nzK -bSL -iso -lnA -aSv -arT -vxe -icJ -gdq -lnA -bPC -aoD -aYB -xDY -aoD -aao -aao -aao -aao -aao -aao -aao -aao -ayf -bcW -cVY -ayf -cVY -uBP -ayf -cVY -cVY -cVY -cVY -cVY -cVY -cVY -ayf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -gfn -cpD -mQP -cpD -dQy -aao -aao -aao -aao -aao -aao -aao -aao -aao -gfn -puk -puk -puk -puk -puk -puk -puk -jXB -puk -iGK -nsf -vHw -vHw -cdj -cdj -iqP -kYB -vYc -wtj -iIQ -uYe -vmL -aHN -iIQ -unH -mCD -qCa -eCp -uHQ -wPh -lmv -jJC -nAo -vFT -xTM -okp -lgQ -maa -sop -vhb -aHN -uHQ -cdj -cdj -yhq -lVL -nKX -wWT -pev -lVL -pev -nKX -unH -unH -aao -aao -aao -aab -aaa -aaa -aaa -"} -(22,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -ewH -ewH -cFf -wwc -vAX -kvW -bOR -wwc -vAX -kvW -bOR -wwc -vAX -kvW -bOR -wwc -vAX -kvW -tTw -hIC -fCh -kxU -mgl -rmw -cNi -rmw -rmw -vfO -aae -aao -qsE -uFp -vLd -vLd -upE -vLd -qsE -tlP -vLd -upE -vLd -vLd -upE -wMQ -qsE -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aoD -pMw -nof -iql -iQQ -fzQ -kHO -fzQ -pRp -aoD -bPC -bPC -aoD -pdM -ngM -iDb -arT -eFN -qUR -uKB -ngM -bPC -aoD -mDX -ngM -aoD -aao -aao -aao -aao -aao -aao -aao -aao -ayf -cVY -cVY -cVY -cVY -ucl -gQj -dCU -tQg -cVY -cVY -bjN -cVY -cVY -ayf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -gfn -cpD -cpD -cpD -dQy -aao -aao -aao -aao -aao -aao -aao -aao -aao -dVU -qnA -qnA -cFY -puk -puk -puk -puk -kLv -kLv -aao -aao -aao -aao -aao -aao -aao -aao -wtj -tfz -aHN -aHN -aHN -hUS -wnB -unH -mCD -oyf -qKc -uHQ -jEg -pKn -bGf -dPu -uCU -uHQ -mgR -rVC -aHN -uCU -dnt -dnt -uHQ -aao -gmD -eHa -fxg -nKX -unH -koQ -cuT -pev -nKX -xCk -unH -aao -aao -aao -aab -aaa -aaa -aaa -"} -(23,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -ewH -lRD -aah -aaF -aah -aah -aah -aah -aah -aah -aah -aah -aaF -aah -aah -aah -aah -aah -aah -aah -aah -aaF -aah -gmy -ewH -ewH -ewH -lpx -aae -aao -qsE -tIA -vLd -vLd -vLd -vLd -mji -vLd -vLd -vLd -vLd -tVn -vLd -mBI -qsE -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aoD -aoD -aFv -pWJ -iql -nVX -kHO -vmn -fzQ -rzV -aoD -fwB -fcb -aoD -kqd -ngM -iDb -apG -arT -arT -apG -cAF -apG -aoD -aoD -xQs -aoD -aao -aao -aao -aao -aao -aao -aao -aao -ayf -ayf -cVY -cVY -cVY -xjU -cVY -cVY -cVY -cVY -cVY -cVY -cVY -cVY -ayf -ayf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -mxT -iGK -iGK -cpD -cpD -qrW -aao -aao -aao -aao -aao -nxH -bhS -bhS -cpD -cpD -qnA -puk -puk -puk -puk -iTI -kKD -kKD -aao -aao -aao -aao -aao -aao -aao -pWt -jVU -qux -pJs -aHN -hII -aHN -rZA -unH -mCD -njZ -oGl -uHQ -pWu -mOe -iNa -gnX -iZX -nCT -eWW -iYi -aHN -fvN -aHN -bPh -uHQ -aao -aao -lVL -cdj -nKX -egT -mON -dar -wVg -unH -unH -unH -aao -aao -aao -aab -aaa -aaa -aaa -"} -(24,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -ewH -qWe -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -hFk -ewH -ewH -ewH -lpx -aae -aao -qsE -rml -vLd -upE -vLd -vLd -vLd -vLd -vLd -vLd -upE -vLd -vLd -dEf -qsE -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aeI -aoD -uto -pWJ -iql -nVX -fzQ -fzQ -fzQ -nfF -aoD -aoD -aoD -aoD -uQT -ngM -nAs -pVY -pVY -pVY -pVY -pCF -bPC -egH -bPC -ngM -aoD -aao -aao -aao -aao -aao -aao -aao -aao -ayf -qsd -cVY -cVY -nbu -cVY -cVY -cVY -cVY -tES -spD -cVY -cVY -cVY -cVY -ayf -ayf -ayf -ayf -ayf -ayf -ayf -ayf -ayf -ayf -ayf -ayf -ayf -ayf -ayf -ayf -ayf -aao -aao -aao -aao -aao -aao -gfn -pEz -dQy -aao -aao -aao -aao -aao -mxT -cpD -cpD -pEz -cpD -qnA -puk -puk -puk -nsr -kKD -rLa -uHQ -uHQ -uHQ -uHQ -uHQ -uHQ -uHQ -gSB -dwO -gmq -sop -uvJ -wNA -cVd -aHN -wnB -unH -mCD -olE -rwi -uHQ -iYP -oTc -kCT -mGV -tQJ -sev -gue -aHN -jIB -kUa -gue -aHN -uHQ -aao -aao -gQT -cdj -nKX -eJD -rYs -kFJ -uLs -unH -unH -unH -aao -aao -aao -aab -aaa -aaa -aaa -"} -(25,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -ewH -vkg -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -acx -aah -sOH -ewH -ewH -ewH -lpx -aae -aao -qsE -qsE -dem -hcg -qsE -qsE -qsE -qsE -qsE -qsE -vLd -upE -vLd -eDQ -qsE -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aeI -aeI -aeI -aeI -aeI -aoD -aFv -pWJ -pZz -nVX -fzQ -wWH -nUM -rzV -aoD -gjI -bPC -bPC -bPC -ngM -bPC -bPC -ejx -bPC -bPC -ngM -bPC -uQT -bPC -ngM -aoD -aoD -aoD -aoD -aao -aao -aao -aao -aao -ayf -mkt -cVY -cVY -tES -eMa -cVY -tES -spD -dma -dma -spD -spD -spD -spD -ayf -ayf -pTf -ayf -ayf -xeY -dma -kZh -cVY -cVY -osj -dma -kZh -cVY -cVY -cVY -ayf -ayf -aao -aao -aao -aao -aao -gfn -cpD -cpD -bhS -cpD -aao -aao -aao -cpD -oec -mek -cpD -cpD -nsf -aao -puk -puk -nsr -kKD -rLa -uHQ -sAS -tdZ -kBE -gTJ -nZK -jIc -qVi -wtj -qhk -cVd -sdb -uvJ -kZG -aHN -lky -unH -mCD -bLy -eCp -uHQ -uHQ -uHQ -xYp -aHN -xYp -wfd -bSh -jjG -aHN -urP -eJj -cCY -uHQ -aao -aao -aao -nry -unH -egT -wcR -gxM -uLs -unH -unH -unH -aao -aao -aao -aab -aaa -aaa -aaa -"} -(26,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -ewH -oHc -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -gKc -ewH -ewH -ewH -lpx -aae -aao -qsE -dSR -qHF -oKH -hOa -oKH -oKH -jQV -wll -qsE -dem -hcg -qsE -qsE -qsE -aao -aao -aao -aao -aao -aao -aao -lWh -ftj -xTh -rGu -aeI -aeI -mhD -aeI -aoD -aoD -nIY -nof -iql -nVX -dyo -nof -nof -eKO -aoD -xJl -bPC -bPC -bPC -kNE -dUp -dUp -dUp -dUp -bPd -iIZ -lKY -lKY -lKY -ose -aoD -rFq -rFq -aoD -aoD -aoD -aoD -aao -aao -ayf -ayf -cVY -cVY -dma -ebJ -hhy -hhy -hhy -hhy -hhy -hhy -hhy -hhy -hhy -hhy -hhy -fFi -hhy -hhy -hhy -hhy -hhy -hhy -hhy -hhy -hhy -hhy -hhy -hhy -doN -dma -ayf -ayf -aao -aao -aao -aao -gfn -eRS -cpD -cpD -cpD -cpD -aao -cpD -cpD -oec -mek -cpD -dQy -aao -aao -aao -aao -aao -fSr -rLa -uHQ -cyv -jPm -uFi -wtj -jPX -lRz -qVi -wtj -pbZ -wtj -hCf -oIr -uvJ -uvJ -aHN -unH -unH -rrh -unH -unH -unH -djd -sop -sfR -sQB -ygQ -aHN -aHN -gbO -sop -vOv -oPg -uHQ -aao -unH -unH -unH -unH -unH -wou -wou -unH -unH -unH -unH -aao -aao -aao -aab -aaa -aaa -aaa -"} -(27,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -ewH -lRD -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -acd -aah -aah -aah -aah -aah -aah -aah -aah -aah -gmy -ewH -ewH -ewH -lpx -aae -aao -qsE -oWO -qHF -oKH -qHF -oKH -oKH -wpz -dDx -iIo -oNx -oGj -qsE -aao -aao -aao -aao -aeI -aeI -aeI -aao -aao -emK -gdh -lSn -voH -aeI -aeI -aeI -aeI -aeI -aoD -nof -nof -wSz -nVX -rzV -nof -pMw -hXo -aoD -dpv -bPC -bPC -mic -rEJ -cXH -bPC -bPC -jHM -ejj -bPC -bPC -nAs -bPC -bPC -bPC -bPC -uQT -bPC -eHz -bPC -aoD -aao -aao -ayf -cVY -cVY -tES -dma -onc -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -jpf -dma -dma -ayf -aao -aao -aao -aao -gfn -cpD -cpD -cpD -pEz -bhS -cpD -cpD -xen -cpD -cpD -cpD -nsf -aao -aao -aao -aao -aao -aao -aao -uHQ -eut -vxQ -mtL -pUi -eWy -hNs -hZl -ust -tgo -lZD -wul -rpD -ucw -ucw -ucw -lXt -lXt -pOq -wWT -nKX -unH -djd -dUX -vPK -rfN -ltq -eQy -cfM -uER -uHQ -uHQ -uHQ -uHQ -xkQ -unH -unH -unH -unH -unH -unH -klc -klc -unH -unH -unH -aao -aao -aao -aab -aaa -aaa -aaa -"} -(28,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -ewH -qWe -aah -aah -aah -aah -acx -aah -aah -aah -aah -aah -aau -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -hFk -ewH -ewH -ewH -lpx -aae -aao -qsE -vPs -qHF -oKH -qoZ -oKH -oKH -oKH -dDx -oNx -oNx -wll -qsE -aao -aao -aao -aeI -aeI -aeI -aeI -aeI -aeI -aeI -cdM -rgb -aeI -cRQ -aeI -aeI -aeI -aeI -aoD -nof -nof -ifO -nVX -fMx -cjf -aFv -sBi -aoD -apG -apG -apG -apG -apG -apG -jSr -bPC -bPC -ejj -bPC -bPC -bPC -bPC -bPC -bPC -bPC -bPC -bPC -bPC -bPC -aoD -aao -aao -ayf -cVY -cVY -osj -dma -onc -pTf -fGQ -ggh -eYd -lso -fGQ -ggh -eYd -lso -fGQ -ggh -eYd -lso -fGQ -ggh -eYd -lso -fGQ -ggh -eYd -lso -fGQ -pTf -fFi -jpf -gde -dma -ayf -aao -aao -aao -aao -mxT -iGK -cpD -cpD -cpD -cpD -cpD -bhS -cpD -cpD -cpD -cpD -aao -aao -aao -aao -aao -aao -aao -aao -weO -sop -wtj -rKs -wJd -bFF -sop -qVi -eup -enD -tsy -mPh -mPh -wVq -ykb -wVq -ykb -ykb -hXr -ykb -ykb -unH -gyM -mJW -kzN -vwJ -mtv -xSK -aHN -rmP -uHQ -hVN -sop -djd -lkn -unH -unH -unH -unH -unH -unH -uWv -uWv -unH -unH -unH -aao -aao -aao -aab -aaa -aaa -aaa -"} -(29,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -ewH -vkg -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -acd -aah -aah -aah -aah -sOH -ewH -ewH -ewH -lpx -aae -aao -qsE -erF -qHF -oKH -qHF -oNx -oNx -oKH -oGj -vWq -vWq -cuU -qsE -aao -aao -aeI -aeI -aeI -hHp -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aoD -aoD -nof -nof -iql -nVX -wZE -cjf -aFv -aFv -aoD -rHw -rHw -rHw -rHw -rrs -arT -bPC -bPC -uQT -ejj -bPC -bPC -bPC -bPC -bPC -bPC -ejx -bPC -bPC -bPC -bPC -aoD -aao -aao -ayf -ayf -cVY -osj -dma -onc -qOC -bie -bje -bie -bie -bie -bie -bie -bie -bie -bie -bje -bie -bie -bie -bie -bie -bie -bie -bie -bje -bie -hwC -fFi -jpf -rqU -dma -ayf -aao -aao -aao -aao -aao -aao -mxT -iGK -cpD -cpD -cpD -cpD -eRS -dQy -cpD -cpD -aao -aao -aao -aao -aao -aao -aao -aao -uHQ -gCC -wtj -duo -wtj -wtj -iAi -uHQ -jlg -vvL -xuP -unH -tMW -pev -pev -pev -pev -pev -mru -pev -pev -nKX -sop -aHN -rpn -rXs -sop -iCy -iNB -cfi -owb -sop -phQ -djd -lYy -unH -unH -uWv -nJJ -unH -unH -klc -klc -unH -unH -unH -aao -aao -aao -aab -aaa -aaa -aaa -"} -(30,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -ewH -oHc -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -acx -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -gKc -ewH -ewH -ewH -lpx -aae -aao -qsE -qsE -uxW -dzI -qHF -oKH -oNx -oNx -wll -gYY -vbV -qsE -qsE -aao -aao -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -qFr -aeI -aeI -aeI -aeI -aeI -aeI -aoD -nof -nof -iql -dxS -dyo -cjf -hmN -aFv -aoD -rHw -rrs -uZW -rHw -rHw -arT -bPC -bPC -bPC -aoD -asl -sll -aoD -asl -sll -aoD -asl -sll -aoD -asl -sll -aoD -aao -aao -ayf -tpY -cVY -osj -dma -onc -kaL -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bjo -bie -bie -bie -bie -tzF -fFi -jpf -dma -dma -ayf -aao -aao -aao -aao -aao -aao -aao -aao -gfn -cpD -cpD -cpD -cpD -cpD -cpD -pEz -aao -aao -aao -aao -aao -aao -aao -aao -uHQ -bHw -wtj -wtj -mBo -wtj -xrp -rzT -txg -vmV -bss -wWT -pev -pev -lVL -lVL -wfH -pev -mru -lVL -cdj -nKX -djd -aHN -aHN -sop -sop -sop -sop -sop -sAs -sop -sop -uvs -xkQ -xCk -unH -klc -vHw -vHw -pxV -klc -bSk -unH -unH -unH -aao -aao -aao -aab -aaa -aaa -aaa -"} -(31,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -ewH -lRD -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -gmy -ewH -ewH -ewH -lpx -aae -aao -aao -qsE -qsE -qsE -qHF -oKH -wpz -oKH -oGj -ioX -qsE -qsE -aao -aao -hHp -aeI -aeI -aeI -aeI -yfg -vio -aeI -aeI -aeI -oQW -aeI -aeI -aeI -aeI -aeI -aeI -aoD -nof -nof -iql -nVX -dyo -cjf -syL -aFv -aoD -rHw -rHw -rHw -rHw -rHw -jGu -bPC -bPC -bPC -asl -lxz -rHw -asl -dOW -rHw -asl -kim -rHw -asl -dOW -rHw -aoD -aao -aao -ayf -cVY -cVY -osj -dma -onc -pxY -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -xib -fFi -jpf -dma -dma -ayf -aao -aao -aao -aao -aao -aao -aao -aao -gfn -cpD -pEz -cpD -cpD -mek -mek -dQy -aao -aao -aao -aao -aao -aao -aao -aao -uHQ -cZj -mIu -fML -eUs -sop -ryj -lIL -fBc -eLR -eWX -wWT -pev -pev -lVL -wfH -pev -pev -mru -pev -pev -nKX -djd -vOv -rPJ -ghB -gzu -sop -wsb -aHN -sop -kDO -sop -djd -xkQ -unH -unH -geK -vHw -vHw -unH -klc -klc -unH -unH -unH -aao -aao -aao -aab -aaa -aaa -aaa -"} -(32,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -ewH -qWe -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -hFk -ewH -ewH -ewH -lpx -aae -aao -aao -aao -aao -qsE -tit -oKH -oKH -wpz -wll -qsE -qsE -aao -aao -aao -aeI -aeI -aeI -atQ -yfg -hRW -hRW -nfh -xbW -aeI -aeI -aeI -yfg -nfh -vio -qPJ -aeI -aoD -nof -fWj -fzQ -nVX -fzQ -usA -cjf -aFv -aoD -rHw -rHw -rHw -rrs -uZW -arT -bPC -bPC -bPC -asl -qGE -tnl -asl -qGE -tnl -asl -qGE -tnl -asl -qGE -tnl -aoD -aao -aao -ayf -ayf -cVY -kUs -dma -onc -tlk -bie -bie -bie -bjo -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -vyF -fFi -jpf -dma -dma -ayf -aao -aao -aao -aao -aao -aao -aao -aao -gfn -cpD -cpD -iGK -cpD -mek -mek -cpD -aao -aao -aao -aao -aao -aao -aao -aao -uHQ -uHQ -uHQ -uHQ -uHQ -uHQ -uHQ -vHw -fBc -eLR -kgp -wWT -hPg -pev -lVL -wfH -pev -lVL -rZB -lVL -pev -hZL -cOt -tqp -aHN -hNt -sop -aHN -aHN -sen -sop -qFZ -yai -djd -xkQ -unH -unH -unH -wWT -ovG -pJA -ykb -unH -unH -unH -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(33,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -ewH -vkg -aah -aaF -aah -aah -aah -aah -aah -aah -aah -aah -aaF -aah -aah -aah -aah -aah -aah -aah -aah -aaF -aah -sOH -ewH -ewH -ewH -lpx -aae -aao -aao -aao -aao -qsE -qsE -rUK -rUK -rUK -rUK -qsE -aao -aao -aeI -aeI -aeI -yfg -nfh -nfh -hRW -hRW -hRW -hRW -hRW -nfh -nfh -nfh -hRW -hRW -hRW -nfh -nfh -aoD -nof -aoD -slF -oGB -jpD -aoD -cjf -aFv -aoD -uZW -rjr -jSq -rHw -rHw -arT -bPC -bPC -bPC -asl -lxF -jsu -asl -lxF -jsu -asl -lxF -jsu -asl -lxF -jsu -aoD -aao -aao -ayf -cVY -cVY -cVY -osj -onc -qOC -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bmM -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -hwC -fFi -jpf -dma -dma -ayf -aao -aao -aao -aao -aao -aao -aao -aao -gfn -cpD -dQy -aao -mxT -cpD -cpD -cpD -cpD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -vHw -vec -wbx -bss -llO -vHw -vle -lVL -kxM -lVL -pev -ppy -kxu -cdj -pev -uHQ -wBN -rNc -bGT -sop -eWK -eJj -sop -sop -sop -uHQ -uHQ -wfd -uHQ -unH -unH -wWT -pev -pev -pev -pJA -unH -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(34,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -ewH -ewH -hBw -mvU -xKs -jCE -hBw -sBx -pTB -jCE -hBw -mvU -xKs -jCE -hBw -mvU -xKs -jCE -hBw -mvU -xKs -jCE -hBw -ewH -xEs -ewH -ewH -lpx -aae -aao -aao -aeI -aeI -cvc -mzf -kPm -kTp -rZP -kPm -npC -oVq -aeI -mhD -aeI -pTM -kPm -rZP -rZP -rZP -uHY -rZP -rZP -xJb -kPm -kPm -kPm -tsw -rZP -kPm -rZP -rRQ -aoD -aoD -aoD -iNs -iux -kHO -aoD -aoD -aoD -aoD -aoD -aoD -aoD -aoD -aoD -aoD -aoD -maB -aoD -aoD -aoD -aoD -aoD -aoD -aoD -aoD -aoD -aoD -aoD -aoD -aoD -aoD -ayf -ayf -ayf -cVY -cVY -tES -dma -onc -xsa -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -biI -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -tzF -fFi -jpf -dma -dma -ayf -aao -aao -aao -aao -aao -aao -aao -aao -gfn -cpD -dQy -aao -aao -mxT -cpD -cpD -cpD -cpD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -xqO -adX -qtJ -dcN -pev -ppy -wfH -lVL -lVL -uHQ -wtj -ohY -sop -vOv -sop -hVN -sop -sop -sop -xSX -ipf -sdP -uHQ -unH -wul -wul -nry -kMx -pev -pev -nKX -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(35,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -xEs -qCP -qCP -qCP -qCP -qCP -qCP -qCP -qCP -qCP -qCP -qCP -qCP -xEs -qCP -nkw -qCP -nkw -nkw -qCP -qCP -pTt -qCP -qCP -qCP -qCP -qCP -jdP -aae -taP -aeI -aeI -aeI -aeI -gcm -uAQ -ePy -uAQ -uVy -slw -aeI -aeI -aeI -aeI -qJA -uAQ -ePy -uWH -ePy -ePy -uAQ -ePy -uAQ -xQE -jiK -eyE -jiK -jiK -jiK -jiK -rOO -rRQ -hRW -aoD -dYk -fNt -dYk -aoD -oqS -aoD -aEu -aEu -aoD -aEu -aEu -aoD -aEu -aEu -aoD -aEu -aEu -aoD -aEu -aEu -aoD -aEu -aEu -aoD -eSj -eSj -aoD -eSj -eSj -rZn -eSj -dma -spD -spD -dma -dma -onc -pxY -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -xib -fFi -jpf -dma -dma -ayf -aao -aao -aao -aao -aao -aao -aao -aao -gfn -cpD -nsf -aao -aao -aao -gfn -cpD -pEz -cpD -cpD -cpD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -tJC -kDg -uIg -bFU -hoq -pev -fNM -etj -eks -kMx -uHQ -wtj -qSj -sop -uHQ -sSB -vOG -mVS -nDP -sop -vqE -dKo -sop -uHQ -ykb -ykb -ykb -ykb -wWT -pev -pev -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(36,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -aah -aah -aah -aah -aaH -aaH -aah -abk -abu -abk -aah -abu -aaH -ueW -lcy -dDZ -eHe -vxb -vxb -lcy -dDZ -eHe -aah -aah -rXf -enX -wHm -aeG -aae -taP -aeI -dhk -aeI -aeI -mhD -jcI -uAQ -uAQ -lds -aeI -aeI -aeI -aeI -yfg -qJA -uAQ -rqT -fIj -lLd -fIj -fIj -uAQ -htk -rPr -fBP -uAQ -pJR -uAQ -rqT -uAQ -rPr -cgN -hRW -nCR -uAQ -tBY -uAQ -uCk -oqS -aEu -aEu -aEu -aEu -aEu -dyW -vqc -vqc -aEu -aEu -aEu -aEu -aEu -aEu -eSj -aEu -aEu -aEu -aEu -eSj -eSj -eSj -eSj -wOV -wOV -wOV -dma -dma -dma -dma -dma -onc -lAB -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -vyF -fFi -jpf -dma -dma -ayf -aao -aao -aao -aao -aao -aao -aao -aao -mxT -nsf -aao -aao -aao -aao -gfn -cpD -cpD -cpD -cpD -cpD -cpD -qrW -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -gqf -qAe -udn -lVL -pev -sce -lCR -hyE -xtT -uHQ -wtj -qmm -vLz -lBe -sop -sop -sAs -nDP -aHN -nqr -aHN -xWr -uHQ -vHw -nry -nry -nry -wWT -pev -lVL -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(37,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -aah -aah -aah -aah -aaI -aaI -aah -abl -abv -abl -aah -abv -aaI -rZz -eqz -jjM -xIM -vxb -vxb -fYC -fRr -jnW -jxe -aah -kkm -iDk -fLE -aeG -aae -taP -aeI -aeI -aeI -aeI -aeI -nhD -ePy -ePy -lds -aeI -aeI -aeI -dhk -djk -qJA -ePy -mcZ -fxa -jgm -hbk -smx -gcm -rnF -gDz -fIj -fIj -fIj -mcN -fIj -uAQ -cBL -nUv -hRW -hRW -vhB -rPr -lds -hRW -xpH -aeI -aEu -aEu -aEu -aEu -gwe -aEu -dyW -vqc -aEu -laB -vkQ -cHp -vkQ -rnz -vkQ -rqf -vkQ -vkQ -vkQ -rqf -nGO -vkQ -tPZ -vkQ -vkQ -dMR -klP -klP -vlp -qRn -fFi -hHF -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bjo -hwC -fFi -jpf -dma -dma -ayf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -gfn -cpD -eRS -cpD -cpD -cpD -cpD -dQy -aao -aao -aao -uHQ -uHQ -uHQ -uHQ -uHQ -uHQ -aao -aao -aao -aao -aao -aao -aao -aao -kMx -pev -pev -rOT -ene -dlj -nWK -uHQ -uHQ -uHQ -uHQ -uHQ -sop -hda -uHQ -djd -djd -wrS -cxa -uHQ -uHQ -uHQ -ykb -ykb -ykb -tMW -rFr -pev -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(38,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -aah -aah -aah -aah -aaJ -aaJ -aah -abm -abw -abm -aah -abw -aaJ -bIN -gWl -mKk -ssq -vxb -vxb -gWl -mKk -ssq -aah -aah -eWr -iDk -jYG -aeG -aae -taP -vio -aeI -oQW -aeI -aeI -qJA -ePy -rqT -lds -dhk -aeI -aeI -aeI -djk -pqo -pJR -cgN -hRW -qoM -anp -anp -anp -xjf -ljK -xjf -anp -anp -anp -gri -pqo -rPr -cgN -qJN -hRW -fnr -rPr -lds -oqS -ctW -aeI -aeI -aEu -aEu -aEu -aEu -aEu -aEu -dyW -dyW -svS -lRO -jdf -luI -luI -jdf -luI -luI -jdf -pTD -luI -dSn -vte -lRO -lRO -lRO -cJm -owB -eZi -eZi -mdN -fFi -kaL -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -bie -tzF -fFi -jpf -dma -dma -ayf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -gfn -cpD -cpD -cpD -cpD -cpD -cpD -cpD -gfn -aao -aao -xMr -kXc -lbZ -maF -sbA -pcf -tTM -rqq -ykb -pLO -jev -flf -mLS -irA -tMW -pev -wfH -jNJ -vtp -dpJ -tMW -ovG -pev -pev -pev -pev -nKX -unH -wQf -wWT -pev -wfn -lVL -nCX -uHQ -uHQ -pev -pev -pev -pev -pev -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(39,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aae -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -jXY -aah -aah -jxe -vxb -vxb -jxe -aah -aah -aah -aah -eWr -dDz -jYG -aeG -aae -taP -txE -vio -aeI -aeI -wST -dIX -uAQ -uAQ -rsa -aeI -aeI -frI -aeI -djk -qJA -uAQ -cgN -oqS -qoM -anp -avT -bZp -avT -axZ -avT -azn -avT -avT -anp -qJA -rPr -xlg -hRW -hRW -qJA -raY -dlI -oqS -aeI -aeI -aEu -aEu -aEu -aEu -aEu -aEu -eSj -eSj -eSj -mJY -qPc -dzj -eSj -eSj -qlQ -qlQ -qlQ -vnO -dIq -eSj -vNv -lRO -lRO -lRO -fgU -xEl -dma -dma -tyf -dma -onc -pxY -bie -bje -bie -bie -bie -bie -bie -bie -bie -bie -bje -bie -bie -bie -bie -bie -bie -bie -bie -bje -bie -xib -fFi -jpf -dma -uoY -ayf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -mxT -iGK -iGK -cpD -cpD -pEz -cpD -cpD -gfn -cpD -bSb -fYH -lUu -dCA -cAN -iiG -mhG -eKC -lei -vaY -iLK -bNo -jXz -rxB -pzZ -pev -jHE -xyZ -mru -duM -kKC -pev -lVL -vkq -pev -pev -pev -nKX -unH -unH -wWT -wfH -cFp -srg -nCX -uHQ -uHQ -idq -cBN -idq -lvf -cBN -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(40,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -eIu -aae -aae -aae -wHg -aah -aah -aaU -abc -aah -aah -aah -aah -aah -aah -jXY -aah -stt -hqk -nha -vxb -jhZ -rWi -aah -aah -aah -eWr -iDk -jYG -aeG -aae -jUN -hRW -hRW -vio -ahi -aeI -odM -ePy -uib -nHL -aeI -aeI -aeI -aeI -djk -qJA -uAQ -lds -lou -mdg -bFw -rtX -rtX -lgt -axZ -avT -azo -aAq -aAZ -anp -qJA -rPr -pJR -kPm -kPm -htk -rPr -cgN -oqS -aeI -jgm -nCn -aEu -aEu -aEu -aEu -aEu -aEu -aEu -qML -jrJ -muY -iCC -rOC -rOC -rOC -rOC -rOC -qML -aYF -osn -vNv -fjS -vte -rxx -sMR -xEl -dma -cIK -dma -dma -onc -pTf -igW -dQk -vtN -syM -xeq -dQk -vtN -cPr -igW -dQk -vtN -cPr -igW -dQk -vtN -cPr -igW -dQk -vtN -cPr -igW -pTf -fFi -jpf -dma -jNu -ayf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -gfn -cpD -cpD -cpD -cpD -cpD -cpD -leu -uxx -fOM -ulH -uvL -iiG -uxx -cbX -hcL -hgZ -ewV -nhQ -lXM -xvB -xvB -hGe -pev -pev -ppy -pev -wnD -vXA -vHO -pev -lVL -pev -pev -nKX -unH -unH -wWT -pev -cFp -lVL -eCp -uHQ -uHQ -kYB -nry -nry -nry -nry -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(41,1,1) = {" -aaa -aab -aao -aao -aao -aao -rnP -wNa -wNa -uMa -tKg -aae -aah -aah -aah -aah -aah -aah -aah -abD -aah -aah -jXY -aah -msV -hlR -vxb -nha -msV -hlR -aah -aah -aah -qfj -iDk -nma -juq -cFE -cRY -iXQ -kPm -rZP -kPm -tsw -uAQ -fBP -uAQ -uAQ -syG -kPm -tsw -xlq -rZP -rqT -uAQ -cgN -oqS -qoM -bFw -cmh -aSk -xis -axZ -avT -avT -avT -avT -anp -lgz -kuS -lZf -cjQ -cjQ -fga -dVm -fAw -oqS -aeI -qoM -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aoH -asj -qGq -qGq -asj -aoH -aoH -asK -kNT -asK -jIz -aYF -aYF -vNv -lRO -vte -lRO -sMR -xEl -dma -dma -dma -dma -onc -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -fFi -jpf -dma -col -ayf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -gfn -cpD -cpD -cpD -cpD -lKL -dcj -wfB -tCh -eZw -cVh -bIw -oWt -tCh -jvd -qDC -qDC -qDC -qDC -jYJ -rWk -rUW -qDC -qDC -jYJ -nLf -qDC -qDC -qDC -ngF -qDC -qDC -qDC -dYB -dtM -tth -tth -iWk -nYq -aId -pev -nCX -uHQ -aao -klc -klc -klc -klc -klc -klc -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(42,1,1) = {" -aaa -aab -aao -aao -aao -cjm -rnP -kiY -rnP -pua -tKg -aaq -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -jXY -aah -xpq -hoL -vxb -vxb -xpq -hoL -aah -aMC -aah -hEm -iDk -dDz -dKP -fAG -nUx -jiK -jiK -jiK -wKl -uAQ -uVy -uAQ -uAQ -uAQ -uVy -ePy -uAQ -ePy -ePy -uAQ -ePy -vkW -oqS -qoM -bFw -cmh -cmh -xis -axZ -avT -avT -avT -avT -anp -smx -jNQ -jNQ -jNQ -hRW -hRW -hRW -hRW -xpH -dOf -iqS -apt -mXt -rpM -jsO -rpM -rpM -xso -jsO -kZc -rpM -rpM -knK -mnQ -aoH -aXH -aXH -asK -jIz -aYF -mfH -vNv -lRO -vte -lRO -sMR -dma -aao -aao -dma -dma -onc -vXt -juU -juU -oMg -oMg -oMg -fFi -fFi -fFi -oMg -oMg -fFi -oMg -oMg -oMg -oMg -oMg -oMg -fFi -fFi -fFi -oMg -oMg -oMg -ora -dma -ayf -ayf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -mxT -iGK -iGK -cpD -cpD -cpD -cpD -leu -uxx -ktC -xQG -kKx -kso -uxx -dlU -ujR -fNR -ivu -nry -nry -ycN -udR -kMx -pev -pev -mru -pev -pev -cdj -kYB -nry -nry -nry -kMx -pev -pev -pev -hPg -lVL -pev -kYB -sop -uHQ -aao -aao -klc -klc -bSk -klc -klc -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(43,1,1) = {" -aaa -aab -aao -aao -rnP -rnP -rnP -rnP -rnP -pua -tKg -aae -aah -aah -aah -adL -aah -aah -aah -adL -aah -aah -jXY -aah -acx -aah -vxb -vxb -aah -aah -aah -aah -aah -vQP -hzT -jsV -rcj -cFE -nay -rnF -fIj -uAQ -rPr -ePy -fIj -fIj -fIj -fIj -fIj -fIj -nEc -gSZ -fIj -fIj -lLd -uxo -oqS -eru -bFw -kZR -wVM -vbk -aya -avT -azo -aAq -aAZ -anp -taP -aeI -oQW -ahi -jDW -jNQ -xpH -aeI -qFr -aeI -iqS -apt -mXt -aNo -aOB -aOB -aNo -aOB -aOB -aNo -aOB -aOB -aNo -ejv -aoH -aXH -aXH -asK -jIz -aYF -aYF -nuc -lRO -lRO -lRO -sMR -dma -dma -aao -aao -dma -onc -vXt -fFi -jpf -dbf -coc -csU -onc -fFi -xyw -ayf -ayf -pTf -ayf -ayf -xeY -dma -dma -dma -dCE -qdD -xpt -dma -xeY -dma -dma -dma -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -xDK -duY -nWr -vrD -rBL -uxx -fOM -kcx -pbX -iiG -uxx -vDC -eWm -vkH -vHw -vHw -uHQ -uHQ -djd -djd -vst -vRs -mru -lVL -pev -wfH -nKX -aao -aao -ykb -ykb -lVL -pev -cQW -uHQ -pah -ceY -sop -iya -uHQ -aao -aao -unH -ykb -ykb -unH -unH -unH -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(44,1,1) = {" -aaa -aab -aao -aao -faQ -rnP -rnP -uzJ -uuJ -fBx -tKg -aae -aaw -cFE -tJy -aaw -aaw -abx -abx -aaw -aaw -aah -jXY -aah -stt -rWi -vxb -vxb -stt -rWi -aah -aah -aah -aah -aah -aah -aeG -aae -oil -hRW -hRW -mZo -rPr -kke -pVA -hka -hRW -bKq -hRW -hRW -hbz -hRW -hRW -qJN -hRW -hRW -xkb -qoM -anp -avT -avT -avT -axZ -avT -avT -avT -avT -anp -taP -aeI -aeI -aeI -aeI -aeI -aeI -lEs -aeI -aeI -iqS -apt -mXt -aOw -uEy -coL -rXG -coZ -mes -dWI -aNo -kZc -www -awj -aoH -aXH -aXH -asK -jIz -bbb -aYF -vNv -lRO -lRO -lRO -sMR -nev -dma -nEi -dma -dma -onc -fFi -fFi -fFi -hhy -hhy -hhy -fFi -fFi -lbE -ayf -ayf -ayf -ayf -ayf -dma -dma -xeY -dma -tqW -pXX -xpB -dma -dma -dma -dma -dma -xeY -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -xDK -duY -duY -duY -tVb -csP -rUn -dSg -pQE -jDy -ngf -tVf -vYD -vHw -vHw -vHw -uHQ -sLL -onF -eLR -mbu -qVi -mru -pev -lVL -pev -nKX -vHw -vHw -nry -nry -pev -pev -aao -uHQ -uHQ -uHQ -uHQ -uHQ -uHQ -aao -aao -tMW -pev -pev -nKX -klc -klc -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(45,1,1) = {" -aaa -aab -aao -aao -aao -rnP -uzJ -fBx -fBx -fBx -iFc -aae -odb -mgf -iYp -fhH -uFj -eIM -fmP -qSP -aaw -aca -jXY -aah -msV -hlR -vxb -vxb -msV -ijc -aah -aah -aah -aah -aah -aah -aeG -aae -taP -hRW -kUT -pqo -rPr -lds -cmD -edJ -wkS -hRW -hRW -hRW -fXz -hRW -ddo -kUT -hRW -hRW -hRW -tmf -anp -avU -avT -avT -axZ -avT -avT -avT -aBa -anp -taP -aeI -aeI -aeI -cvc -aeI -aeI -aeI -aeI -aeI -iqS -apt -mXt -aOx -wGK -aoH -aoH -aoH -aoH -ppG -aNo -kZc -aOB -hsm -aoH -aXH -aXH -asK -jIz -pzq -ciQ -vNv -vFJ -lRO -lRO -sPF -dma -sCd -dma -dma -dma -onc -fFi -fFi -juU -oMg -oMg -oMg -fFi -fFi -taA -ayf -aFc -aFc -aFc -ayf -cBH -cBH -axX -dma -tqW -gEW -efa -dma -dma -dma -dma -dma -dma -hJQ -lzI -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -xDK -duY -duY -duY -bFi -uHQ -tBf -qjA -bJS -iaN -uHQ -tDk -mGF -gNH -aao -aao -uHQ -jkz -iIh -sop -wGO -qVi -jRz -pev -pev -pev -pJA -ykb -ykb -ykb -tMW -kYB -aao -aao -aao -aao -aao -aao -aao -aao -aao -tMW -pev -idq -idq -nKX -klc -klc -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(46,1,1) = {" -aaa -aab -aao -aao -aao -uuJ -fBx -fBx -fBx -oas -wNa -aae -kRh -mgf -mgf -mgf -mgf -mgf -hcm -fKP -abR -aah -jXY -aah -xpq -sMs -vxb -vxb -lZx -qhX -aah -jxe -jxe -aeF -afg -afg -hUR -aae -hIV -jNQ -hRW -qJA -rPr -ePy -kPm -kPm -ewZ -xJb -kPm -kPm -kPm -xgx -kPm -kPm -kPm -kPm -kPm -qgC -xjf -avT -avT -avT -axZ -avT -avT -avT -avT -anp -taP -aeI -aeI -cRQ -aeI -aeI -aeI -aeI -aeI -cvc -uAi -aoH -dde -aOy -wpr -vVJ -nib -avq -gRX -eIq -aNo -wZl -aQM -aPG -fYO -aYG -aXH -asK -jIz -ciQ -eSj -jFr -lRO -lRO -lRO -nfn -dma -dma -dma -dma -dma -kRZ -fvW -pjN -jpf -csU -fCl -dbf -onc -fFi -vnN -gWD -aFc -aFc -nSD -azb -tGk -uUH -azb -dCE -nvS -nOT -pXX -qdD -bZT -qdD -qdD -qdD -qdD -xpt -pDM -vEl -vEl -vEl -ory -keg -keg -keg -keg -keg -keg -keg -keg -keg -aao -aao -aao -aao -aao -aao -fea -duY -duY -duY -tHI -uHQ -uHQ -uHQ -uHQ -uHQ -uHQ -gNH -gNH -aao -aao -aao -uHQ -oyf -onF -krD -kpR -uHQ -vHw -vHw -kMx -pev -pev -pev -kYB -nry -nry -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -pev -pev -mpo -idq -pJA -klc -klc -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(47,1,1) = {" -aaa -aab -aao -aao -aao -wkQ -wkQ -fBx -dkk -rnP -eIu -aae -rUF -iYp -iYp -mgf -iYp -mgf -mgf -tzA -abR -aah -jXY -aah -aah -aah -vxb -vxb -aah -aah -aah -jxe -jxe -aeG -wGS -sQq -qzT -htx -nVb -ahX -djk -qJA -rPr -uAQ -rqT -htk -uAQ -uAQ -uAQ -uAQ -pJR -uAQ -rqT -uAQ -uAQ -uAQ -uAQ -lds -xjf -avT -avT -avT -axZ -avT -avT -avT -avT -anp -taP -frI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -qoM -aoH -kZc -aOx -aNo -aNo -aNo -aOB -aOB -aUV -aVK -aOy -aNo -kGJ -aoH -aYH -aXH -asK -ewJ -rOC -ehb -mJY -fRZ -vte -vte -nfn -yfH -hhy -hhy -hhy -hhy -pcY -juU -wFc -juU -hhy -hhy -hhy -fFi -fFi -gvG -gWD -aFc -aFc -nSD -azb -shY -qMs -dLN -wjN -nvS -pXX -pXX -nvS -nvS -nvS -nvS -nvS -nOT -efa -pDM -rcZ -rcZ -rcZ -hZw -keg -xIP -bvF -keg -bvS -bvS -bvS -bvS -keg -tPu -aao -aao -aao -aao -aao -vex -qwc -jee -duY -bFi -vex -aao -aao -aao -aao -aao -aao -aao -aao -lOY -aao -uHQ -xhd -bXa -lqh -sRd -uHQ -vHw -hLS -wWT -pev -lVL -pev -nKX -unH -unH -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -kMx -pev -pev -lVL -pev -nKX -klc -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(48,1,1) = {" -aaa -aab -aao -aao -aao -aao -rnP -pua -dkk -rnP -cMo -aae -xpw -iYp -iYp -mNK -iYp -iYp -mgf -fHk -aaw -aah -jXY -acn -stt -rWi -vxb -vxb -stt -rWi -aah -aah -aah -aeH -aah -sQq -jzP -qzT -vxM -ahX -djk -wDt -wCF -uuN -cjQ -cjQ -cjQ -cjQ -cjQ -cjQ -cjQ -cMk -cjQ -cjQ -cjQ -cjQ -cMk -sKz -dif -avV -avV -avV -ayb -avT -avT -avT -avT -anp -taP -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -qoM -aoH -xWN -aOx -aOB -aOB -aRM -aOB -aOB -aUW -pZC -igh -kGJ -qjf -aoH -aYI -aXH -asK -ewJ -ewJ -asK -jrJ -luI -luI -oAO -muY -asK -fFi -fFi -fFi -asK -fFi -fFi -wFc -juU -ggG -ggG -gWD -fFi -fFi -wMv -gWD -aFc -aFc -nSD -azb -shY -fnL -azb -dVe -eZi -eZi -eZi -eZi -eZi -eZi -eZi -owB -eZi -jDm -pDM -rcZ -rcZ -rcZ -hZw -keg -rdR -rdR -keg -btw -btw -btw -btw -keg -tPu -aao -aao -aao -aao -aao -aao -xDK -duY -duY -tHI -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -lBe -oyf -hED -eLR -hMA -uHQ -aao -wQf -wWT -pev -pev -pev -nKX -unH -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -klc -kMx -pev -qeb -kYB -klc -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(49,1,1) = {" -aaa -aab -aao -aao -aao -rnP -rnP -pua -dkk -kiY -aao -aae -qFS -mgf -mgf -mgf -nVV -mgf -mgf -kgE -abS -aah -jXY -aco -jYC -hlR -vxb -nqZ -msV -hlR -jxe -aah -aah -aah -aah -aah -pdg -qzT -mZu -oQW -djk -uGp -uAQ -cgN -mZV -hRW -jNQ -jNQ -hRW -hbz -hRW -hRW -jNQ -jNQ -hRW -hRW -hRW -jgm -anp -avT -avT -avT -axZ -avT -avT -avT -avT -anp -taP -aeI -aeI -aeI -aeI -aeI -aeI -dhk -aeI -aeI -qoM -aoH -kZc -aOz -sUL -dJd -hoD -jqD -hKi -tCn -aQM -dsK -aoH -aoH -aoH -aYH -aXH -asK -atw -atU -asK -kpF -kpF -kpF -kpF -kpF -asK -atw -atw -atw -asK -asK -asK -hVz -vBx -asK -asK -asK -asK -jxh -asK -xOk -aFc -ikJ -bIF -azb -shY -fnL -axX -azB -axX -axX -azB -azB -azB -axX -axX -vJV -pds -pds -glB -sxZ -rcZ -rcZ -rcZ -sLf -rdR -rdR -sLf -btw -btw -dAi -hEC -keg -tPu -aao -aao -aao -aao -aao -duY -xDK -duY -duY -tHI -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -uHQ -gVK -eaG -sav -wUX -hiP -vIn -unH -unH -nry -nry -nry -unH -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -pev -pev -nKX -klc -nry -nry -klc -klc -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(50,1,1) = {" -aaa -aab -aao -aao -aao -rnP -uzJ -fBx -fBx -uuJ -aao -aae -qFS -mgf -mgf -szn -mgf -mgf -iYp -ila -abT -aah -jXY -aah -vFY -hoL -vxb -mtH -xpq -hoL -aah -aah -aah -aah -aah -fNf -sQq -jzP -taP -ahX -djk -qJA -sUu -nLM -hRW -qdz -aeI -aeI -jDW -jNQ -jNQ -xpH -aeI -dhk -jDW -jNQ -jNQ -qoM -anp -avU -avT -avT -axZ -avT -avT -avT -aBa -anp -taP -aeI -mhD -aeI -aeI -aeI -aeI -aeI -aeI -aeI -qoM -aoH -dHR -aOy -iYL -aoH -aoH -aoH -aoH -fla -aNo -kZc -aoH -aXH -aXH -aYJ -aZm -jHg -bay -aZu -asK -wDh -cPR -cPR -wDh -cPR -asK -aZu -aZu -aZu -asK -kjH -beT -baz -xsU -bbM -rYS -asK -aZw -aZu -bld -asK -ikJ -bIF -bme -azb -shY -gRo -ixb -uUH -azb -jFI -rcw -cvo -ont -uGj -axX -nSD -bme -aao -glB -sxZ -rcZ -rcZ -hZw -keg -bvv -lmg -keg -btw -btw -btw -btw -keg -tPu -tPu -aao -aao -aao -aao -duY -duY -duY -duY -duY -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -uHQ -mld -bXa -evn -jch -qiz -unH -ykb -unH -ykb -unH -lGC -vHw -aao -aao -aao -aao -aao -aao -aao -aao -aao -pev -kYB -nry -klc -klc -klc -klc -klc -klc -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(51,1,1) = {" -aaa -aab -aao -aao -aao -rnP -pua -fBx -fBx -fBx -aao -aae -bsV -nJj -qOq -jLy -jng -iaV -ohS -vXi -abR -aah -jXY -aah -aah -aah -vxb -sVn -aah -aah -aah -aah -aah -jxe -aah -qzT -eEp -oMq -hgl -aeI -djk -xsD -uAQ -lds -oqS -aeI -ctW -aeI -aeI -aeI -cvc -aeI -aeI -aeI -aeI -aeI -hHp -qoM -anp -avT -avT -avT -axZ -avT -avT -avT -avT -anp -taP -aeI -aeI -aeI -aeI -hHp -aeI -aeI -aeI -aeI -qoM -apt -mXt -aOy -wqJ -tas -iLf -iLf -pSK -oGP -aNo -kZc -aoH -aXH -aXH -aXH -aXH -asK -baz -aZu -cRb -aZu -aZu -aZu -aZu -aZu -lui -xLg -cDu -jiG -atA -gMC -aSj -hMU -aSj -aSj -aZu -asK -aZu -bkA -hzy -axL -nSD -bme -bme -azb -shY -qMs -qMs -fnL -azb -shY -qMs -qMs -qMs -fnL -azb -bme -bme -aao -glB -hvZ -hvZ -hvZ -hvZ -keg -xIP -xIP -keg -bvS -bvS -bvS -bvS -keg -tPu -jiT -aao -aao -jvv -vrD -duY -duY -duY -duY -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -uHQ -wim -cge -maa -sfd -gZe -iJe -lDO -nKX -nry -unH -unH -vHw -aao -aao -aao -aao -aao -aao -aao -klc -klc -nry -klc -klc -klc -klc -klc -klc -klc -klc -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(52,1,1) = {" -aaa -aab -aao -aao -aao -rnP -kOw -fBx -fBx -fBx -aao -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aah -dXc -jxe -aah -aah -vxb -vxb -aah -aah -aah -adL -aah -aah -aah -aah -sQq -aae -vxM -aeI -djk -qJA -uAQ -kke -oqS -aeI -aeI -aeI -aeI -aeI -aeI -lEs -aeI -aeI -aeI -aeI -aeI -qoM -anp -qaR -avT -avT -axZ -avT -azo -aAq -aAZ -anp -taP -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -qoM -apt -mXt -aOy -aNo -aNo -aNo -aNo -aNo -aNo -aOC -kZc -aoH -aXH -aXH -asK -asK -asK -baA -bbe -bbN -bcv -bdh -bbe -bbe -baC -bbe -bfz -aZO -aZu -atA -bkn -aSj -bfB -blR -jOT -bbe -nPY -bbe -bbe -aLo -axL -nSD -bme -bme -azb -shY -qMs -qMs -qMs -dLN -qMs -qMs -blf -ejX -oBo -axX -bme -iUX -aao -glB -wBy -xSE -xSE -yjt -keg -keg -keg -keg -keg -keg -keg -keg -keg -tkE -duY -duY -duY -duY -duY -duY -duY -duY -duY -duY -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -uHQ -tos -uiX -sOZ -lPN -hAO -unH -nvQ -unH -tPm -unH -unH -fiR -unH -aao -aao -aao -aao -aao -pZy -uDo -klc -klc -klc -yiu -klc -klc -klc -klc -klc -klc -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(53,1,1) = {" -aaa -aab -aao -aao -aao -kiY -rnP -kOw -fBx -fBx -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aae -aae -aae -aae -aae -aae -aae -nZd -aae -aae -aaq -aae -aae -aae -aae -aae -aae -aae -dWV -aeI -djk -pqo -lac -cgN -hRW -vio -aeI -qFr -aeI -oQW -aeI -aeI -aeI -dOf -aeI -cRQ -aeI -qoM -anp -avT -avT -avT -axZ -avT -avT -avT -avT -anp -taP -aeI -aeI -aeI -aeI -aHn -aeI -aeI -aeI -aeI -wPu -apu -kZc -aOy -aPC -aNo -aNo -aNo -aTQ -aRM -aNo -aES -aoH -aXH -aXH -asK -aZn -aZu -aZu -aZu -bbO -aZu -aZu -bdK -aZM -aZu -ces -vKV -lTx -mvu -asK -aZu -aSj -uzh -npl -hRL -ugc -atA -bkl -aZO -blg -axL -nSD -bme -bme -azb -shY -qMs -qMs -fnL -azb -shY -qMs -blf -ejX -sKj -azb -iUX -vJV -aao -tPu -vmo -tPu -kpH -tPu -hxk -duY -duY -duY -duY -duY -duY -duY -duY -duY -duY -nPB -nPB -nPB -duY -duY -duY -duY -duY -duY -duY -aao -aao -aao -aao -aao -aao -aao -aao -aao -rIl -rIl -rIl -ccd -xfZ -xfZ -wSj -unH -unH -xJq -ykb -ykb -lOB -unH -unH -unH -aao -aao -aao -cdj -tLS -oGA -klc -klc -geK -vHw -rnd -klc -klc -ykb -jrc -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(54,1,1) = {" -aaa -aab -aao -aao -aao -faQ -rnP -rnP -pua -fBx -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -agm -agm -aao -aao -aao -aao -aao -aao -aeI -aeI -djk -vhB -ePy -cgN -kUT -oqS -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -eru -anp -anp -alX -stR -ijl -alX -anp -anp -anp -anp -taP -aeI -aeI -ahi -aeI -aeI -aeI -aeI -oQW -aeI -meq -apu -dde -aOy -mkM -tVv -mkM -tVv -ooV -szh -aNo -kZc -aoH -aXH -aXH -asK -aZo -aZu -aZu -aZu -baz -bcw -aZu -aZO -bec -cIP -aZu -bfB -bbe -bbe -nPY -bbe -vew -rVN -qxC -vkF -fVt -atA -bkl -aZu -aZu -axL -nSD -bme -bme -azb -ufm -rcU -rcU -iWW -azb -ufm -qMs -rcU -qMs -vTP -axX -vJV -vJV -aao -tPu -tPu -tPu -tPu -tPu -tPu -cek -duY -duY -nPB -duY -duY -duY -duY -duY -tbE -tPu -tPu -tPu -hxk -duY -duY -duY -duY -duY -duY -aao -aao -aao -aao -aao -aao -aao -aao -aao -rIl -tMu -kaY -pPa -eqg -eqg -rIl -aao -unH -iAT -pev -pev -pJA -unH -ejB -unH -aao -aao -aao -jbS -cZV -tOF -nKX -klc -klc -dPW -klc -klc -wWT -lVL -pev -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(55,1,1) = {" -aaa -aab -aao -aao -aao -rnP -rnP -rnP -pua -fBx -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -agm -agm -agm -aao -aao -aao -aao -aao -aao -aeI -cvc -djk -qJA -ePy -rsa -hbz -oqS -dhk -aeI -lEs -aeI -aeI -aeI -aeI -aeI -aeI -cvc -aeI -qoM -kgH -waO -alu -lEb -pvn -fyt -chP -wcV -cbD -wcV -taP -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -qoM -apt -mXt -aOy -gUy -aoH -aoH -aoH -aoH -mkM -aNo -dhI -aoH -aXH -aXH -asK -aZo -aZM -baB -aZO -baz -aZu -aZO -bdL -aZu -aZu -ces -plG -erT -tFk -asK -asK -asK -hVz -vBx -asK -asK -asK -aLl -aZu -blh -asK -ikJ -jBz -bme -axX -azB -azB -azB -axX -axX -axX -pHy -ayr -pHy -axX -axX -vJV -iJH -aao -aao -aao -tPu -tPu -dEQ -tPu -cek -duY -gCc -tPu -hxk -duY -duY -nPB -tbE -tPu -tPu -tPu -tPu -tPu -nlY -duY -duY -duY -duY -duY -aao -aao -aao -aao -aao -aao -aao -aao -aao -rIl -cVw -evx -vNZ -sYn -jNP -rIl -aao -aao -wWT -jQo -pke -qaC -eAz -unH -unH -aao -aao -aao -aao -evR -kbq -vzB -xyc -klc -klc -klc -klc -wWT -pev -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(56,1,1) = {" -aaa -aab -aao -aao -aao -rnP -rnP -uzJ -fBx -fBx -fBx -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -agm -agm -aao -aao -aao -aao -aao -aao -vgx -aeI -aeI -djk -krY -uAQ -gGB -hRW -xpH -aeI -aeI -aeI -jgm -hbk -kXO -hbk -hbk -hbk -hbk -hbk -qNf -iyH -cyx -fyt -lEb -xGV -alu -hBn -chP -snK -wcV -wcV -hbk -hbk -hbk -hbk -hbk -hbk -smx -aeI -aeI -iqS -apt -mXt -aOy -bFK -wpW -bFK -sRz -joz -szT -aNo -vcM -aoH -aXH -aYc -asK -aZn -aZu -aZO -bbf -bbP -aZu -aZO -aZu -bed -aZu -aZu -bbO -aZO -aZu -aZO -aZu -beT -baz -vFj -aZu -aZu -asK -atA -jxh -atA -asK -axX -axX -axX -axX -kXo -vOX -kXo -axX -kut -rYW -qMs -fIp -fnL -azb -vJV -vJV -vJV -vJV -aao -aao -aao -tPu -tPu -tPu -hxk -nPB -tbE -tPu -dEQ -hxk -tbE -tPu -tPu -tPu -tPu -tPu -vmo -tPu -cek -duY -duY -duY -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -hHb -mXl -hdD -pPB -eqg -eqg -rIl -aao -aao -unH -kMx -kKC -pev -pev -pJA -ykb -aao -aao -aao -gmD -eHa -bFM -uvp -wgD -klc -ykb -klc -klc -klc -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(57,1,1) = {" -aaa -aab -aao -aao -aao -aao -uuJ -fBx -fBx -fBx -fBx -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -agm -agm -agm -aao -aao -aao -aao -aao -aeI -aeI -yfg -hRW -kyl -ePy -lds -oqS -ctW -aeI -aeI -aeI -qoM -alu -alu -alu -alu -alu -alu -alu -alu -alu -qtg -alu -stR -ugO -alu -alu -alu -alu -alu -alu -alu -alu -alu -alu -alu -alu -mZe -aCM -aBR -oQC -apt -mXt -aOy -aOB -aNo -aNo -aOy -aNo -aOB -aOB -kZc -aoH -cec -aXH -asK -aZn -aZu -aZu -aZu -bbO -bcx -bdi -aZu -aZu -aZu -ces -hCj -dPO -dPO -lTx -mvu -aZu -baz -biL -aZu -aZu -aZu -aZu -aZu -beA -axX -bMQ -bMQ -bMQ -kzU -oZP -wOE -gdU -axX -kut -rYW -qMs -blf -fnL -azb -iJH -vJV -vJV -vJV -vJV -aao -aao -tPu -tPu -tPu -jLL -tPu -tPu -tPu -tPu -tPu -vmo -tPu -tPu -jiT -tkE -gKE -tPu -tPu -cek -duY -duY -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -rIl -cVw -qCh -vNZ -sYn -jNP -rIl -aao -aao -unH -eAy -fsd -pev -cdj -pev -pev -aao -aao -aao -aao -hgs -cdj -nKX -unH -wWT -pev -nKX -klc -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(58,1,1) = {" -aaa -aab -aao -aao -aao -aao -fBx -fBx -fBx -fBx -oas -rnP -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -agm -agm -agm -aao -aao -aao -aao -aao -frI -aeI -djk -hRW -qJA -lzv -gMQ -uOC -aeI -aeI -aeI -ctW -qwJ -alu -qoG -rdt -dpn -unD -qht -iAJ -mxv -alu -ivF -wTq -tvI -oPF -lmI -fVI -alu -kWU -ljy -amj -wbo -jfi -vDf -fiB -hMz -alu -oaH -aBR -aBR -oQC -aoH -kZc -aOA -aPG -aQM -aQM -aSI -aOB -aNo -aNo -kZc -aoH -hmJ -aXH -asK -asK -atA -cPR -vBx -auk -asK -asK -bee -aZu -bex -bbe -bfE -aZu -aZu -aZu -bed -aZu -bfB -bbe -bbe -bbe -bfz -aZO -aZu -bli -bGq -hGn -rGc -oie -oie -ese -blf -fnL -axX -ayr -ayr -wGs -blf -fnL -axX -axX -axX -vJV -vJV -vJV -aao -aao -aao -tPu -tPu -tPu -tPu -tPu -tPu -tPu -tPu -tPu -tPu -jiT -duY -duY -duY -tkE -tkE -duY -duY -duY -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -rIl -rGY -sOm -sOm -rIl -rIl -rIl -aao -aao -unH -unH -xPX -kMx -pev -tOF -pev -aao -aao -aao -jZa -wqt -cdj -sFB -unH -wWT -lVL -pJA -klc -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(59,1,1) = {" -aaa -aab -aao -aao -aao -aao -fBx -fBx -fBx -dkk -rnP -rnP -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -agm -agm -aao -aao -aao -aao -aao -aao -aeI -aeI -djk -hbz -pqo -ePy -gba -cmD -vio -aeI -aeI -aeI -qoM -alu -ogL -nxV -nxV -tei -nxV -ugj -iiw -ofV -wro -uXH -vJs -ybw -wNP -aXi -alu -kWU -kWU -kSv -riD -fSW -lbK -xXY -dLO -alu -oaH -aBR -aBR -oQC -apt -mXt -aOB -aOB -aOB -aRP -aOy -aOB -aOB -aNo -kZc -aoH -odw -aXH -asK -aZu -aZO -aZO -aZO -baz -bcy -asK -bee -aZu -baz -ces -dPO -lau -lau -lau -mvu -aZu -baz -aZu -aZu -aZu -bfB -bbe -bbe -blj -qeG -nBZ -jbf -mBM -rHu -rHu -lwm -sSg -jcY -jAg -hzX -blf -euw -hhT -iAQ -kKK -axX -vJV -vJV -vJV -aao -aao -aao -aao -dEQ -tPu -tPu -aao -aao -hFr -sob -sob -sob -cpD -kLv -cpD -cpD -cpD -kLv -kLv -kLv -cpD -cpD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -rIl -bRd -rQs -jtm -rIl -aao -aao -aao -pev -nKX -vXa -vXa -unH -pev -tOF -aao -aao -aao -aao -aao -aao -fAo -pjl -unH -tMW -pev -szY -nKX -klc -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(60,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -fBx -dkk -rnP -faQ -cjm -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -agm -agm -aao -aao -aao -aao -agu -aeI -aeI -aeI -djk -hRW -pqo -ePy -jXT -vXZ -kPm -fXG -dOf -aeI -iqS -alu -mBZ -mBZ -wcm -mTJ -mBZ -chy -mBZ -sYP -mBe -oZE -mvk -gjO -gaN -eGl -qkj -pJv -swW -amj -uAs -prY -cQL -reX -gen -alu -oaH -sju -aBR -oQC -apt -aNo -aNo -kZc -bPV -jsO -iGv -kZc -jsO -kZc -qWf -aoH -aXH -aXH -lIk -aZu -aZO -aZO -xQb -bbR -bcz -asK -bdM -aZu -eRe -aZu -aZu -aZu -aZu -aZu -aZu -aZM -biq -biN -bji -aZu -baz -aZu -aZu -aZr -axX -vVv -ayr -ayr -ayr -ayr -dDE -cZO -ayr -blf -blf -blf -sSA -uaG -blf -fnL -axX -vJV -vJV -vJV -aao -aao -aao -aao -tPu -aao -aao -aao -aao -cpD -cpD -cpD -cpD -iTI -aao -aao -aao -aao -aao -kKD -kKD -uhX -cpD -nsr -kKD -aao -aao -aao -aao -aao -aao -aao -aao -aao -rIl -rIl -rIl -rIl -rIl -aao -aao -cdj -pev -jVT -jUY -jUY -jUY -kDw -nry -aao -aao -aao -aao -aao -aao -aao -aao -tMW -pev -lVL -pev -nKX -klc -klc -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(61,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -fBx -fBx -kzH -rnP -rnP -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -acp -acp -acp -acp -acp -aao -aao -aeI -aeI -wST -aeI -jDW -hRW -qJA -ePy -ePy -ePy -kEf -jIP -aeI -aeI -lty -alu -ppH -ija -eJh -fmy -hQI -ryJ -xie -oyJ -rld -sco -lEb -vZg -lEb -dTD -alu -kWU -kWU -amj -kFi -dcL -lEb -ebY -dLO -alu -oaH -aBR -aBR -oQC -aoH -qGq -qGq -aoH -vQc -aOC -laL -aNo -eTm -aOB -aoH -aoH -aXH -aXH -asK -asK -atA -cPR -vBx -auk -asK -asK -asK -asK -asK -asK -atA -atA -atA -asK -aZw -aZu -bir -biN -aZu -aZu -baz -aZO -aZu -aZr -axX -eqT -nin -bMw -kIM -rHM -phm -hns -gGT -vBd -fPk -cIo -xLR -wcy -blf -jJY -azb -jyb -vJV -vJV -aao -aao -aao -aao -aao -aao -aao -cpD -qrW -cpD -cpD -cpD -cpD -aao -bRC -aao -aao -aao -aao -uNM -kKD -uhX -cpD -iTI -kKD -kKD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -pev -lVL -gQq -jUY -jUY -tuN -vHw -vHw -aao -aao -aao -aao -aao -aao -aao -aao -pev -pev -pev -pev -nKX -klc -klc -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(62,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -fBx -dkk -rnP -kiY -rnP -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -acp -lPR -uCc -lPR -acp -aao -aao -bYP -aeI -ahi -aeI -aeI -djk -rJB -lLd -gTG -cEy -aWa -cgN -vio -aeI -iqS -alu -iQI -sxp -gSV -dym -iQI -kSE -thV -alu -meK -egV -cqB -qkf -mqz -boT -alu -pAc -kWU -amj -war -iVh -edZ -lyN -lHC -alu -oaH -ieW -aBR -oQC -gzU -aNq -aOC -apQ -ciw -aNo -dUC -aNo -fbP -aVM -aoH -jzl -aXH -aXH -asK -aZr -aZQ -aZu -aZu -aIT -bcA -atA -qHZ -bef -bez -asK -aZu -aZu -aZu -asK -wUw -aZu -aZO -biN -aZu -aZu -bbO -aZO -aZu -aZs -axX -ayr -ayr -ayr -ayr -ayr -ayr -ayr -ayr -ayr -rrn -ixq -qMs -dRn -qMs -pLC -azb -jyb -vJV -vJV -aao -aao -aao -cpD -cpD -cpD -cpD -mmr -cpD -qrW -cpD -cpD -cpD -aao -aao -aao -aao -aao -aao -rLa -hFr -cpD -nsr -kKD -kKD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -lVL -jZw -jaf -jUY -jUY -jUY -vHw -aao -aao -aao -aao -aao -aao -vHw -aao -aao -pev -lVL -pev -pev -nKX -klc -klc -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(63,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -fBx -fBx -uuJ -kzH -rnP -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aMD -acp -lPR -lPR -lPR -acp -aao -odt -peC -aeI -aeI -dhk -aeI -jDW -hRW -hRW -hRW -gBi -qJA -lds -oqS -oQW -sKa -alu -alu -ldK -amj -sis -alu -alu -alu -alu -jnQ -elC -alu -alu -alu -alu -alu -alu -alu -alu -alu -alu -qGD -alu -alu -alu -oaH -aBR -aBR -oQC -gzU -aNq -aNo -apQ -sOa -aNo -sAD -aNo -oOm -aOB -aoH -vQS -aXH -aXH -asK -aZs -aZu -aZO -aZO -baz -aZu -epQ -aZO -bbO -beA -asK -aZO -aZO -aZu -asK -aZu -aZO -aZO -aZO -aZu -aZu -bbO -aZu -aZu -bdN -axX -hNf -qIJ -xtH -xtH -qRg -xtH -doZ -ghn -ayr -rrn -qMs -jeP -qMs -qMs -kIE -axX -jyb -vJV -vJV -aao -aao -aao -cpD -cpD -cpD -cpD -cpD -cpD -cpD -bhS -cpD -aao -aao -aao -aao -aao -aao -aao -hFr -cpD -cpD -nsr -kKD -rLa -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -pev -hYe -mIj -jUY -klc -klc -klc -unH -unH -unH -unH -unH -aao -vHw -vHw -unH -nry -nry -nry -nry -unH -unH -unH -unH -unH -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(64,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -fBx -fBx -fBx -uuJ -uuJ -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nuk -sra -aMD -acp -xzl -adz -adz -acp -aao -oku -dnq -hbk -hbk -hbk -smx -aeI -jZi -hRW -sUc -hRW -wBj -cgN -hRW -nfh -qXx -alu -xkC -xLY -xLY -muk -cCj -amj -gKZ -wUM -qsy -rBo -amj -bpw -iKg -xLY -nDc -amj -bpw -xLY -pDC -bJf -ess -fJf -dfI -alu -oaH -aBR -aBR -oQC -aoH -qGq -qGq -aoH -hCc -aNo -dDP -aNo -utd -aNo -aoH -aXd -aXH -aXH -asK -aZt -aZu -aZO -aZO -baz -aZu -atA -aZO -beg -bbe -jzh -baC -bfZ -bbe -jzh -bbe -baC -bit -baC -bbe -bbe -bfE -aZu -aZu -bll -axX -qUf -fgv -blf -blf -fgs -uyr -qMs -gMi -ayr -rrn -qNJ -mBW -gES -hYu -xgc -axX -jyb -jyb -aao -aao -aao -giB -giB -giB -giB -giB -giB -giB -giB -giB -aao -aao -aao -aao -aao -aao -uNM -kKD -uhX -cpD -cpD -nsr -kKD -kKD -kKD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -pev -nKX -jkO -klc -ykb -cds -klc -unH -unH -unH -ykb -ykl -wQf -unH -unH -unH -unH -unH -igO -oRw -unH -unH -unH -hFN -unH -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(65,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -fBx -fBx -fBx -fBx -fBx -aao -aao -aao -aao -aao -aao -aao -aao -aao -sra -uYg -riu -aMD -acp -adj -adA -adA -acp -acp -acp -acp -agy -agy -acp -taP -aeI -djk -gvK -sGa -hWu -qJA -cgN -jjm -hdo -oMA -alD -uXs -blO -sco -sco -hNc -amj -bjt -egV -uFV -cPq -cQg -uTI -bQV -irm -lcc -oKJ -vLl -wXE -uTI -bCB -mke -etc -mcd -alu -oaH -aBR -aBR -oQC -apt -aNq -aOB -qyJ -fFy -fFy -vDg -fFy -fFy -eIC -aoH -aXH -aXH -aXH -asK -aZu -aZu -aZu -bbh -bbT -bcB -asK -aZu -beh -aZO -cPR -aZO -bbO -aZu -cPR -aZu -aZO -biq -aZu -aZu -aZM -aZu -aZu -aZu -blm -axX -yiJ -dEs -rcU -mdS -blf -xQW -rzm -gfv -ayr -ksr -ayZ -ayZ -ayZ -axX -axX -axX -axX -axX -axX -axX -axX -axX -axX -axX -wwT -axX -axX -axX -axX -axX -axX -axX -axX -aao -aao -aao -aao -hFr -cpD -cpD -cpD -cpD -fSr -kKD -kKD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -vHw -kDw -fUh -klc -tMW -pev -pev -nKX -suU -fUh -wWT -lVL -pev -nKX -unH -ykb -klc -klc -unH -kKI -unH -unH -unH -unH -jsF -lIl -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(66,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -fBx -wkQ -fBx -fBx -fBx -fBx -aao -aao -aao -aao -aao -aao -aao -frs -riu -sgc -riu -aMD -acp -adk -adk -adk -ael -vqL -afi -gKH -adk -adS -acp -taP -aeI -iky -grb -lzA -sXi -qJA -tzZ -xyK -ctX -oMA -alD -uXs -lEb -sco -roA -qCX -amj -rVJ -ygz -xdr -pZl -stR -sco -sco -lgT -ekh -amj -pNJ -hwP -rfS -mRu -uZd -umz -iHQ -alu -oaH -aBR -ieW -oQC -aoH -pAC -aNo -aOB -aOB -aNo -aOy -aNo -aOB -tvD -aoH -asK -kNT -asK -asK -aZu -aZu -baD -aZu -aZu -bcC -epQ -aZu -aZu -aZu -asK -aZw -baz -aZu -asK -aZu -aZu -baz -aZu -aZu -aZu -aZu -aZu -aZu -bln -axX -ayr -ayr -ayr -jut -jut -ayr -ayr -ayr -ayr -uaG -ixb -jAg -uUH -ayZ -vbU -ayZ -cSp -jAg -yfa -ixb -xnx -faI -sWr -uid -sWr -izA -jAg -ixb -ayZ -ixb -uUH -axX -axX -aao -aao -cpD -cpD -cpD -cpD -cpD -cpD -cpD -iTI -kKD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -klc -klc -klc -gZq -pev -tOF -tOF -nKX -unH -klc -wWT -pev -kYB -unH -unH -nry -klc -klc -unH -eSS -btL -tyE -unH -tPm -wfP -wWT -lVL -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(67,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -rnP -kOw -wkQ -fBx -fBx -fBx -aao -aao -aao -aao -aao -nuk -frs -riu -riu -riu -aMD -acp -aaX -adB -adk -adk -vqL -adS -vqL -adS -adk -acp -wcV -smx -aeI -jDW -hRW -hRW -lAM -lds -uoc -uoc -qMe -alD -oaO -xXY -sZd -mDG -pdJ -eWC -sXA -sDS -oHK -hmx -amj -dAa -tZA -pvn -kiy -alu -amj -tWA -alu -alu -alu -alu -alu -alu -oaH -aBR -aBR -oQC -apt -kAg -aNo -aOB -aQT -nVs -jQT -fFy -fFy -fFy -aoH -uTj -uTj -uTj -asK -aZv -aZR -baE -aZR -bbU -aZR -asK -atA -atA -asK -asK -atA -htQ -atA -asK -aZu -aZu -baz -aZu -cHy -aZu -aZu -ian -bkn -blo -axX -bmn -bmT -ayr -isr -blf -sNG -ayr -swy -ixb -jtl -voD -qMs -blf -nci -wjc -nci -rcU -hYu -hYu -hYu -blf -rcU -hYu -hYu -blf -rcU -rcU -pxi -qJz -qMs -fnL -clw -axX -aao -cpD -cpD -cpD -cpD -cpD -kLv -kLv -iTI -kKD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -klc -klc -tRA -vHw -avK -jlO -uCO -nKX -unH -unH -unH -nry -unH -rFV -ykb -ykb -ykb -unH -unH -aao -aao -unH -unH -unH -unH -wWT -lVL -lVL -aao -aao -aao -aab -aaa -aaa -aaa -"} -(68,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -kiY -rnP -rnP -pua -fBx -fBx -fBx -aao -aao -aao -nuk -nuk -uYg -riu -ntJ -pKM -vsw -acp -acp -acp -acp -acp -acp -acp -acp -sKn -xrj -acp -acp -wcV -hbk -hbk -hbk -smx -mZo -rqT -vXZ -jXb -fvI -iaM -egV -wld -qDU -sjk -gYj -ffO -oKp -bNy -mEX -ygz -alu -alu -evf -cyR -alu -alu -kUD -hLD -tkF -kqK -bKm -rFZ -dKq -alu -oaH -aBR -aFL -oQC -apt -pwH -aOB -aNo -aNo -vDg -aoH -apQ -apQ -apQ -aoH -uTj -uTj -uTj -asK -aZu -aZu -mvu -aZu -aZu -aZu -aZu -qHZ -hzy -atA -beW -aZu -baz -bgr -asK -bYa -aZu -baz -asK -dot -dot -aZu -asK -asK -asK -axX -bmn -bmV -xiK -shY -blf -wch -ayr -rYp -qMs -uaG -qMs -qMs -rmN -axX -axX -axX -iig -iig -iig -ibO -ebf -iig -iig -ayZ -ebf -vnf -vnf -ayZ -axX -ebf -ayZ -axX -axX -aao -cpD -cpD -cpD -cpD -iTI -kKD -kKD -kKD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -klc -klc -unH -jKv -rBp -pev -pev -aao -aao -aao -aao -aao -ykb -ncC -lVL -pev -pev -pev -aao -aao -aao -aao -aao -klc -klc -jvN -wWT -lVL -lVL -aao -aao -aao -aab -aaa -aaa -aaa -"} -(69,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -cjm -rnP -kOw -fBx -fBx -fBx -tKg -nuk -sra -nuk -ntJ -pKM -pKM -vsw -acp -acp -acp -emU -emU -emU -acr -xjk -vtc -acp -qnF -tQk -bQW -acp -acr -acr -acr -acr -acr -gnl -gFY -cjQ -cjQ -ucP -bUj -iJs -fOP -dww -srn -eGl -nUT -whr -bNy -mEX -eWe -amj -rah -hJS -pvn -yjN -alu -vHu -nBl -uuB -egV -egV -qpR -fOI -alu -oaH -aBR -gam -oQC -apt -wRm -aNo -aNo -aNo -vDg -apQ -uBu -aVh -vQD -aoH -uTj -uTj -dWp -asK -aZw -aZu -aZO -aZO -aZu -bbi -aZO -aZu -aZu -atA -bei -bfG -baz -bei -asK -aZw -aZu -baz -asK -aZu -aZO -aZO -xTE -aZO -aZu -axX -bmn -bmV -ayr -nho -blf -krO -ayZ -uwb -xLR -wcy -qMs -qMs -xMq -vbU -vbU -axX -hYB -iAI -iAI -dsy -iSz -hYB -iAI -wVB -kka -pog -iAI -wVB -ayZ -pxi -fnL -axX -aao -aao -cpD -cpD -cpD -iTI -kKD -kKD -kKD -hFr -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -lVL -nKX -klc -klc -wWT -mpz -pev -mKM -aao -aao -aao -aao -aao -vle -vle -vle -aao -aao -aao -aao -aao -aao -aao -aao -fpa -fmJ -syT -ojw -ouw -lVL -lVL -aao -aao -aab -aaa -aaa -aaa -"} -(70,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -rnP -rnP -pua -fBx -fBx -rhr -uYg -riu -oIH -aMD -acp -acp -agy -acp -gBx -fjT -frk -wkV -emU -pJW -emU -emU -wFr -tVw -adk -rKz -acp -iXi -jlj -iXi -iXi -acr -oPH -sXM -acp -acp -acp -sXd -gQc -mmZ -pGJ -pCJ -fjd -amj -mPz -ijy -fzb -eWe -alu -dnP -cnt -uaJ -pPr -alu -tiY -vhz -lEb -dxi -xnQ -sco -rjQ -alu -oaH -aBR -aBR -oQC -apt -fDG -iIH -qQM -fQJ -rhg -mkq -jQT -gaa -tvD -aoH -uTj -uTj -uTj -asK -aZx -aZx -aZx -bbi -bbi -bbi -bbi -aZx -aZx -asK -beX -bfH -bgb -bei -asK -cPR -eqD -khy -asK -eLq -eWP -aZu -asK -bkB -blp -axX -ayr -ayr -ayr -hhz -blf -krO -ayZ -rrn -blf -blf -blf -tVF -gRo -gkl -uUH -dhN -duA -iNR -ykR -iaC -iSz -duA -iNR -iaC -kka -duA -ykR -iaC -ayZ -shY -fnL -axX -aao -cpD -uhX -cpD -nsr -kKD -rLa -kKD -kKD -uhX -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -cdj -nKX -nsc -lvQ -taN -lXF -pev -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -vHw -dyt -ujG -pev -lVL -lVL -lVL -aao -aao -aab -aaa -aaa -aaa -"} -(71,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -faQ -rnP -pua -fBx -fBx -naC -riu -sgc -riu -aMD -acp -nvD -emU -hbR -emU -emU -emU -frk -frk -acr -mRa -emU -acp -iac -adk -rEL -acp -iXi -qWx -qWx -qWx -acr -dau -kvC -aer -qWx -qtv -acp -amj -amj -amj -alu -alu -alu -oIZ -eGl -eaQ -fEi -amj -mUH -mua -vAP -xMQ -alu -jeK -gvX -xXY -fBa -aKA -sco -iiL -alu -oaH -aBR -aBR -oQC -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aoH -uTj -uTj -uTj -asK -atw -atw -atw -asK -cPR -rPK -asK -atw -atw -asK -asK -asK -asK -asK -asK -xbh -xbh -pJp -asK -asK -asK -asK -asK -asK -asK -axX -iuQ -ixb -ixb -cTz -xLR -rAR -dXD -svJ -xLR -xLR -xLR -xLR -xLR -uWQ -fnL -dhN -duA -iNR -iNR -iaC -iSz -duA -iNR -iaC -kka -duA -iNR -iaC -ayZ -shY -fnL -axX -aao -cpD -cpD -cpD -nsr -kKD -kKD -kKD -kKD -uhX -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -cdj -nKX -gtO -vCg -gCF -qBH -uFa -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -vHw -kMx -pev -pev -lVL -npD -lVL -aao -aao -aab -aaa -aaa -aaa -"} -(72,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -rnP -rnP -pua -nuk -frs -dnF -vdT -riu -riu -aMD -acq -sDV -emU -emU -emU -mBv -emU -frk -frk -acr -acr -acr -acp -iac -adk -rEL -acp -mlG -qWx -qWx -qWx -oVt -lsR -qdu -xJu -qWx -pQH -acp -vdB -bXZ -iKm -pHt -ivF -amj -wTq -eGl -iUm -unK -alu -dnP -xcc -yaT -yjN -alu -lsa -egV -mdz -loX -wQs -fzc -mhn -alu -oaH -aBR -aBR -cnI -xRy -nZe -nZe -yaH -miF -xRy -nqL -xRy -hGQ -nZe -nZe -vLp -huP -uTj -xRy -nZe -nZe -nZe -xRy -xRy -nZe -nZe -nZe -xRy -xRy -xRy -xRy -xRy -xRy -nFN -gDc -gsZ -dxe -uAE -cnI -wYp -wYp -wYp -wYp -lJf -axX -usi -qMs -blf -blf -blf -gMi -ayZ -xzx -rLW -hYu -hYu -tRe -hYu -uaG -iWW -dhN -nug -yjV -ykR -iaC -iSz -duA -iNR -iaC -kka -duA -ykR -iaC -ayZ -shY -fnL -axX -vpR -cpD -cpD -cpD -nsr -kKD -kKD -kKD -hFr -cpD -cpD -cpD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -muP -laM -ktj -bRg -dmb -poD -kIA -muP -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -unH -eBy -pev -lVL -pev -lVL -lVL -aao -aao -aab -aaa -aaa -aaa -"} -(73,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -iMz -nuk -nuk -nuk -dnF -sgc -riu -fZt -aMD -acr -sDV -isI -emU -qpb -emU -diT -frk -frk -acr -xjk -vtc -acp -iac -ahk -rEL -acp -kep -nXd -mLo -ezH -acr -bOG -lkt -aer -qWx -dgz -acp -gqH -cxF -jHW -sHl -ilv -qKU -oXv -xix -oHK -eGl -amj -eAu -lEb -pvn -pPr -alu -dnb -egV -vHu -vHu -sRw -mqD -mqD -alu -oaH -aKk -aBR -aBR -qHW -nId -qHW -umS -aBR -mWp -aFL -aBR -aBR -aBR -aBR -oQC -uTj -oaH -eQG -lRR -aBR -aBR -pLi -cRH -cRH -cRH -cRH -lRR -xbD -aBR -aBR -aBR -aBR -aBR -wXB -oeM -gKI -scE -cRH -xgO -xgO -xgO -hvi -huq -axX -wLf -qMs -blf -npV -blf -jjz -ayZ -oCK -gMi -axX -axX -axX -axX -vqh -axX -axX -axX -duA -iNR -iaC -iSz -nug -rUN -oIK -kka -duA -iNR -iaC -ayZ -shY -fnL -axX -jMk -cpD -uhX -cpD -cpD -sob -sob -sob -cpD -cpD -cpD -cpD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -ktj -ktj -bRg -xRt -dmb -xRt -hDP -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nKX -uqD -uUM -pev -pev -lVL -lVL -lVL -aao -aao -aab -aaa -aaa -aaa -"} -(74,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nuk -nuk -nuk -nuk -tvj -riu -riu -qvm -aMD -acs -hFj -emU -frk -frk -emU -emU -lsw -dyz -ePu -dkK -dkK -sbs -ckJ -ahl -pph -acp -acr -acr -acr -acr -acr -nZX -qdu -acp -acp -acp -acp -nSB -iGk -iIz -vbj -ivF -amj -imj -eGl -xmr -mix -alu -alu -stR -uaV -alu -alu -amj -mEa -alu -alu -alu -alu -alu -alu -oaH -aBR -aLc -aBR -qHW -lcF -yay -aBR -ikM -aBR -aBR -hEY -tlJ -frY -aBR -oQC -uTj -oaH -aBR -ieW -aBR -uhR -cRH -cRH -cRH -tJg -ehU -aBR -aBR -aBR -aBR -aBR -aBR -uhR -vOr -nfS -wEZ -qDR -cRH -xgO -xgO -xgO -ikk -huq -axX -gWN -qMs -cvH -blf -qMs -hTB -ayr -rrn -fnL -axX -qvL -czx -ktS -uaG -ixb -uKo -dhN -duA -ykR -iaC -pWs -uJh -uJh -uJh -jxA -duA -ykR -iaC -vnf -isr -fnL -tcP -jMk -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -ktj -ktj -bRg -mSC -mSC -xRt -hDP -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -xYY -kKI -wWT -pev -kYB -kMx -lVL -aao -aao -aao -aab -aaa -aaa -aaa -"} -(75,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nuk -nuk -nuk -nuk -rhr -iMz -iMz -nuk -cXs -acq -weF -frk -ldF -wxQ -emU -mcm -emU -hbR -acr -emU -emU -acp -fIx -ahm -tcZ -acp -ter -jjL -kmz -loQ -eCx -elu -tcZ -aer -qWx -lku -acp -anZ -anZ -alu -alu -alu -alu -sKO -eGl -rZF -xCh -pDU -cLM -lkX -rwh -pkj -lof -kJm -mrs -wyW -dGD -ucA -glq -wOe -alu -uTj -jTI -jTI -jTI -jTI -jTI -jUp -uMj -ndn -jTI -jTI -jTI -jTI -jTI -jTI -uTj -vPx -uTj -jTI -jTI -jTI -jTI -jTI -jTI -jTI -jTI -jTI -jTI -nkG -aBR -gNN -aBR -aBR -wod -cRH -cRH -ocX -jnv -cRH -pwM -pwM -ikk -bjA -huq -axX -ulI -blf -blf -qMs -qMs -cEG -ayZ -xzx -gMi -axX -xrn -wie -xLR -wcy -snx -ifh -gmm -duA -iNR -iaC -xku -ixb -ehM -ixb -gGY -duA -iNR -iaC -vnf -isr -gMi -tcP -dFc -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -ktj -ktj -bRg -ujW -xfu -xRt -uou -ktj -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -cdj -wfH -juV -kqH -wWT -pev -nKX -unH -lVL -aao -aao -aao -aab -aaa -aaa -aaa -"} -(76,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nuk -nuk -rhr -nuk -nuk -nuk -eBW -acq -tqg -frk -frk -ooI -emU -diT -emU -lUj -acr -acr -acr -acp -fIx -ahm -oKK -acp -tnT -iXi -vID -oXA -qWx -elu -tcZ -xJu -qWx -pQH -acp -rHf -evU -evU -evU -cmE -alu -pca -eGl -rjd -cwu -mqI -lEb -dVi -wMJ -sco -qYU -gaO -wSk -sxg -gaO -gaO -dRV -fut -alu -uTj -uTj -uTj -uTj -uTj -apC -apC -apJ -apJ -apJ -apC -apC -apC -apC -apC -apJ -nex -apJ -apC -apC -apC -apC -apC -apC -apC -apC -wRl -uTj -oaH -aBR -aBR -aBR -aBR -aFL -pLi -cRH -vAd -pdv -ehU -bjA -bjA -qUZ -bjA -huq -axX -ryr -hYu -ueU -pyj -ixe -gcU -ayZ -eNu -blf -gfO -mPr -igj -buT -blf -qMs -jwL -dhN -duA -ykR -iaC -bwo -uhc -axX -oNI -pEX -duA -ykR -iaC -ayZ -shY -gMi -axX -dFc -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -ktj -dGx -iyK -uwi -xRt -tMq -ktj -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -cdj -wfH -nKX -unH -wWT -pev -nKX -okP -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(77,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nuk -nuk -frs -aMD -acp -kCw -nNO -emU -diT -frk -qiL -emU -mRa -acr -owy -vtc -acp -fIx -ahn -tcZ -acp -tnT -iXi -iXi -oXA -qWx -maA -eix -aer -qWx -dgz -acp -vHG -vdT -hmI -riu -von -tIr -sCC -cMW -oHK -ulB -tYF -lsQ -eWe -mEX -hDg -bUy -wld -uZd -ceX -jZu -wkY -jVw -eVf -alu -uTj -uTj -uTj -uTj -apC -apC -pad -xik -wNT -jNe -aof -cHS -jCe -jOh -aof -bvI -qXI -gYr -aof -rhl -fhR -fhR -fhR -fhR -rhl -fhR -apC -apC -oaH -aBR -aBR -aBR -aBR -aBR -pLi -cRH -tPO -nCi -cRH -hvi -bjA -bjA -sfj -huq -axX -axX -axX -ayr -ayr -ayr -ayr -ayr -fls -stq -axX -xRJ -fnX -rYW -blf -snx -qHo -dhN -duA -iNR -iaC -dvX -rcU -kMR -hYu -sRY -duA -iNR -iaC -ayZ -shY -fnL -axX -dFc -cpD -cpD -kLv -kLv -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -ktj -ktj -goi -goi -rPd -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -cdj -lVL -nKX -unH -wWT -pev -nKX -okP -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(78,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nuk -iZy -frs -aMD -acq -uko -iNL -riG -emU -ltn -frk -frk -lhd -xpC -emU -emU -hBs -fIx -ahn -ycO -acp -ivK -fxs -fxs -kGV -xFF -maA -rEL -acp -acp -acp -acp -vHG -nNz -riu -qVc -qUI -jrH -wRa -wJB -rZF -dHn -mSw -wFK -kRD -rZF -jyE -pRs -eVj -vFb -eVj -rJx -rJx -alu -alu -alu -alu -voy -uTj -uTj -uRE -dOr -nPq -fXj -nPq -nPq -aof -cHS -cHS -gyt -aof -oTs -bOK -hCs -asT -aZC -aZC -baG -aZC -baG -aZC -fhR -uDi -apC -oaH -aBR -aBR -aBR -ieW -sju -lBc -oun -hLa -biV -jmz -bjC -hvi -bkq -xwd -huq -axX -qvy -ixb -svd -nRY -oIg -ayZ -cND -cYx -gMi -axX -bWr -wsz -kaJ -qMs -rcU -pBg -dhN -duA -ykR -iaC -pWs -uJh -uJh -uJh -jxA -duA -ykR -iaC -ayZ -isr -fnL -axX -dFc -cpD -iTI -rLa -kKD -uhX -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -hYR -jkC -guH -wYF -pbn -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -uDn -pxV -unH -wWT -rMu -vHw -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(79,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -dIc -nuk -kPM -aMD -acp -nvD -ydC -evS -riG -emU -fjG -wcD -wcD -acr -mRa -emU -acp -wCC -orF -gHv -acp -qWx -qWx -qWx -qWx -qWx -maA -rEL -aer -qWx -paC -acp -vHG -nXD -riu -riu -sTG -alD -rPL -ngU -cve -xix -hOB -kZx -hOB -kSD -ydX -eLJ -hzE -uvW -ayV -jDn -lhC -eds -qHs -qHs -alu -aof -oNw -aof -apC -xdm -cNJ -nPq -tcE -cao -aof -rdk -xHW -cHS -aof -dZH -bOK -hCs -asT -aZB -aZT -aIY -bbj -caN -wlO -fhR -fhR -apC -oaH -aBR -aBR -aBR -aBR -aBR -pLi -cRH -gbS -qvH -cRH -gCf -cTV -bjA -xwd -huq -axX -tzk -qMs -mYt -wqR -kGa -azE -shY -uaG -oph -axX -axX -axX -axX -caF -axX -axX -axX -duA -iNR -iaC -iSz -hYB -iAI -wVB -kka -duA -iNR -iaC -ayZ -isr -fnL -axX -aao -aao -aao -kKD -aao -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -xRt -lqW -wYF -bRg -gvx -xRt -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(80,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -vdT -oIH -nuk -iXx -aMD -acp -acp -agy -acp -acp -tgA -acp -slZ -tBN -acr -acr -acr -acp -fIx -aMz -ssZ -kSO -wDK -rJw -rJw -rJw -wDK -ahm -rEL -xJu -qWx -pQH -acp -vHG -riu -ffN -riu -aMD -alD -gYK -rdl -sco -lEb -nrV -qxR -sco -rEl -nDT -eGl -uiu -jEE -rGz -dNo -ejL -laz -rta -uTI -uFq -fZz -fZz -gbH -tnF -vje -fZz -fZz -wTH -tUr -aof -cHS -uTg -toR -aof -wdq -bOK -hCs -aof -aZC -aZU -aZC -aZU -aZC -bcF -fhR -fhR -apD -oaH -aBR -aBR -aBR -aBR -bhi -bhi -ltt -vmF -rWh -cRH -gCf -ufX -bjA -xwd -jrW -axX -wrj -cwF -cGB -dsf -cZO -ayZ -shY -uaG -sNo -ixb -ixb -uCV -ixb -blf -uUH -dhN -hYB -ojD -ykR -iaC -iSz -duA -iNR -iaC -kka -duA -ykR -iaC -iig -isr -fnL -axX -aao -aao -aao -aao -aao -aao -cpD -cpD -cpD -aao -aao -cpD -cpD -cpD -cpD -cpD -cpD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -dmb -xRt -hDP -bRg -xRt -poD -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(81,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -riu -riu -qvm -nuk -vvU -kbG -kbG -kbG -aao -acp -acp -acp -lpD -dGn -xSP -iDM -ooc -acp -fIx -oad -dJb -jvy -pEx -lpZ -lpZ -lpZ -alr -qHG -daU -aer -qWx -dgz -acp -vHG -nXD -riu -riu -aMD -alD -ivs -wld -eCP -wld -uZd -puT -otI -fcl -hOV -uLo -vey -eBv -pnR -ntt -mJs -gyV -uZd -jKA -stR -ibF -tcE -bVi -wtt -fww -nPq -nPq -oJs -nPq -wfl -cID -iDY -cID -dUn -jGc -bOK -bOK -vlU -aZC -aZC -aZC -aZC -aZC -bcG -fhR -fhR -apD -oaH -aBR -aBR -tuq -bhi -bhi -bhi -upN -fEf -woB -mkz -gCf -cTV -bjA -xwd -jrW -axX -xOl -sMB -iBv -blf -liF -quE -xLR -oIx -ddO -env -env -blf -qMs -blf -fnL -dhN -duA -iNR -iNR -iaC -iSz -duA -iNR -iaC -kka -duA -iNR -iaC -ayZ -shY -fnL -axX -aao -aao -aao -aao -aao -aao -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -xRt -xRt -hDP -bRg -xRt -dmb -xRt -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(82,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -riu -nXD -qvm -nuk -frs -riu -uCh -acP -aao -aao -aao -acp -acp -acp -acp -acp -acp -acp -acp -acp -acp -acp -aer -jWl -aer -acp -epp -phH -uEx -acp -acp -acp -acp -kKY -riu -riu -riu -pNe -alu -alu -pzC -xuC -gbG -alu -alu -uXs -vzp -caI -xCh -sYP -qGs -yeW -mKu -wlu -hBL -tnv -tnv -alu -aof -oNw -aof -apC -sHS -cNJ -kaW -poj -hxF -aof -jXO -tag -jXO -aof -qfA -bOK -hCs -aof -fhR -fhR -fhR -fhR -fhR -fXo -fhR -fhR -apC -oaH -aBR -aBR -oox -bhi -dbi -nSa -nSa -cNT -uNV -cRH -gCf -cTV -bjA -xwd -jrW -axX -abz -lqt -gPl -tFc -iWW -ayZ -sDB -uaG -nxS -fHI -tpS -blf -fgs -qMs -dDB -dhN -duA -iNR -ykR -iaC -iSz -duA -iNR -iaC -kka -duA -ykR -iaC -ayZ -shY -fnL -axX -aao -aao -aao -aao -aao -aao -aao -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -xRt -hDP -bRg -xRt -xRt -xRt -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(83,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -riu -riu -riu -qvm -nuk -oJl -riu -uCh -acP -acP -aao -aao -aao -aao -kbG -yiC -acp -ptw -jtf -jtf -jtf -acp -txS -pkQ -tKO -hWd -aer -iac -ahn -gcB -aer -qWx -lku -acp -vHG -riu -riu -riu -emR -alu -hMX -cPp -taa -grn -kIm -alu -ulD -vzp -qUE -vYa -iaM -xwT -ayV -pvn -wlu -rlw -kwL -dbt -alu -bKS -uTj -uTj -apD -ocH -nPq -xLU -tHs -aof -aof -aof -aof -aof -aof -jWE -bOK -hCs -aof -aof -asT -asT -asT -aof -tNA -aof -aof -apC -xbv -aBR -aBR -bhi -bhi -dbi -iCJ -gof -dnN -nZz -oun -ofX -xgO -lrz -xgO -vkU -axX -ayr -ayZ -ayZ -ayr -ayr -ayr -cHj -uaG -dmW -wXP -rIM -qMs -yhJ -rcU -wjB -axX -nug -rUN -rUN -oIK -iSz -nug -rUN -oIK -kka -nug -rUN -oIK -ayZ -vdM -fnL -axX -aao -aao -aao -aao -aao -aao -aao -aao -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -fJk -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -wYF -wYF -wYF -hMC -xRt -xRt -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(84,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -riu -sgc -riu -cBG -nuk -sra -uYg -riu -uCh -pzc -acP -acP -dwh -acP -acP -acP -aMD -acp -lPk -izg -mXV -fuR -acp -ged -eOu -cOB -kmv -aer -xQI -ahn -tcZ -xJu -qWx -pQH -acp -vHG -riu -riu -riu -aMD -alu -cLx -vVa -lEb -pFz -hWg -alu -npI -veF -wwW -vQL -bUj -uTI -pqY -vPS -wln -hnt -sco -eGl -alu -uTj -uTj -uTj -apD -dxO -nPq -nPq -sXY -aof -qyz -odp -odp -odp -nyd -hXk -dEN -xHA -cMK -tfP -gGq -gQi -tfP -xBU -lTy -gYr -apD -huP -xbv -aBR -aBR -bhi -bhi -dbi -iCJ -iCJ -bYv -oPT -wRA -xSW -pvW -qMN -jDX -rDS -bGq -tWH -jRA -jRA -nYp -jAg -ixU -vdM -gwh -vxT -vxT -mAT -blf -loK -axX -axX -axX -ayZ -ayZ -ayZ -ayZ -ebf -ayZ -dSY -vnf -rbP -dSY -ayZ -ayZ -axX -ebf -ayZ -axX -axX -aao -aao -aao -aao -aao -aao -aao -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -cpD -wYF -wYF -wYF -wYF -wYF -wYF -gHo -wYF -wYF -hkj -gHo -wYF -wYF -wYF -wYF -dtc -xYm -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -goi -goi -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(85,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -riu -riu -kgb -nuk -eee -jlt -jlt -jlW -tlw -jlt -jlt -dlv -acP -acP -acP -acP -aMD -acp -oqn -pAL -laC -vVz -acp -aMA -xol -kUc -pQs -qYC -usR -kEw -tcZ -aer -qWx -dgz -acp -vHG -riu -riu -riu -aMD -alu -cLx -cVK -qEV -ceH -hWg -alu -wfQ -wld -rPP -pTI -rJx -kAU -wld -pGJ -dYo -wld -uZd -ucV -alu -uTj -uTj -uTj -apD -oyn -cDL -xWw -poj -aof -chX -oEv -fcr -hOU -aof -kZj -bOK -qhS -fGP -rqL -cWG -bOK -bOK -bOK -cWG -yij -apD -huP -oaH -aBR -aBR -sHt -bhi -dbi -upG -oVk -pVf -oPT -fXa -jNi -wJr -vhP -wJr -qIC -xQA -dNJ -dQB -dNJ -kMg -dNJ -xQA -vBd -wpu -vBd -kIH -hns -sSg -blf -nci -xGD -nci -ixb -jAg -jAg -jAg -blf -jAg -jAg -cSp -blf -ixb -ixb -vdM -qJz -qMs -fnL -clw -axX -aao -aao -aao -aao -aao -aao -aao -aao -cpD -cpD -cpD -cpD -cpD -cpD -cpD -wYF -wYF -wYF -wYF -guH -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -gHo -gHo -gHo -gHo -wYF -gHo -rFh -gHo -gHo -qvK -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(86,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -kgb -iMz -nuk -nuk -cyA -pRP -oHi -uPu -fEY -pnP -pRP -dtD -acP -nvC -acP -lDk -aMD -acp -jZS -rBv -cEK -qWx -acp -gGP -wNk -cZS -kmv -aer -iac -mci -tcZ -acp -acp -acp -acp -vHG -riu -riu -riu -aMD -alu -wNo -xAd -fEM -ecE -hWg -alu -alu -uex -alu -alu -alu -anZ -anZ -anZ -alu -alu -alu -alu -alu -uTj -uTj -uTj -apC -bOK -bOK -fHW -ref -aof -aof -aof -aof -aof -aof -kZj -bOK -nQm -aFd -xrw -fkJ -sNt -ijZ -sNt -cWG -pZS -apD -uTj -oaH -aBR -aBR -aBR -bhi -bhi -auW -xtU -rUa -nZz -oun -ofX -xgO -xgO -xgO -qGw -axX -axX -axX -axX -axX -axX -axX -axX -axX -axX -ozz -hyN -jtl -cXc -ayZ -vbU -ayZ -rcU -cVJ -uvo -rcU -kcn -fUE -oTi -fUE -oTi -kcn -rcU -rcU -ayZ -rcU -iWW -axX -axX -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -cpD -cpD -cpD -wYF -wYF -wYF -wYF -gHo -wYF -rnc -rnc -rnc -rnc -rnc -rnc -rnc -rnc -rnc -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -gHo -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(87,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -dIc -nuk -nuk -tpE -iMk -pRP -pIn -iru -iru -bpv -pnP -dtD -acP -acP -acP -ubC -aao -acp -qqh -qLI -vVI -jnJ -acp -vii -dTg -cwB -kmv -aer -fjw -ajL -gOO -bts -sKU -cuD -acq -vHG -riu -cQH -riu -aMD -alu -cLx -cpM -kDC -odB -hWg -alu -iJg -nhM -dSv -alu -uTj -xRy -xRy -xRy -olH -xRy -xRy -xRy -xRy -xRy -xRy -uTj -apC -bOK -bOK -fHW -poj -aof -nBU -tfP -xBU -tfP -gQi -yhW -bOK -vBK -jJJ -fZO -xVc -aof -aof -aof -yeK -aof -aof -apC -oaH -aBR -aBR -aBR -pLi -cRH -wms -pwJ -rUa -nZz -cRH -nuZ -xgO -xgO -xgO -caq -wYp -nwv -wYp -wYp -wYp -wYp -utp -esT -xfe -axX -axX -kMh -jtl -uHf -axX -axX -axX -axX -axX -axX -axX -axX -axX -axX -axX -axX -axX -axX -axX -axX -axX -axX -axX -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -lNg -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -hFm -rnc -rnc -rnc -rnc -rnc -rnc -hAj -rnc -rnc -wYF -wYF -wYF -wYF -wYF -rnc -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(88,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -sjy -nuk -frs -jRZ -iMk -pnP -iEJ -gEw -qDf -gMc -oHi -dtD -acP -acP -lDk -riu -aao -acp -drl -wNk -oSH -fdQ -acp -vjI -wNk -gJq -tZi -aer -iJp -fWM -yhh -aer -gnm -wEb -acq -vHG -riu -riu -exN -pNe -alu -tkd -kAB -jit -mcu -gMd -xxP -ody -fcN -wCP -alu -oaH -aBR -aBR -aBR -aBR -aBR -aBR -aBR -gNN -aBR -aFL -oQC -apC -nvt -dEN -iRp -gMD -aof -lbQ -uug -btC -sNt -sNt -sNt -sgy -kQS -rUx -bOK -xVc -aof -fhR -sKM -pJI -fhR -vXM -apC -oaH -aBR -jpq -aBR -pLi -cRH -wms -cRH -rUa -nZz -cRH -cAm -xgO -xgO -pwM -xgO -xgO -dVd -bjA -bjA -bjA -bjA -bjA -bjA -nyU -hDY -axX -rcR -liF -mCc -ukJ -ukJ -ukJ -ukJ -viq -axX -iQt -syB -bjA -bjA -xwd -xgO -azO -azO -azO -azO -azO -azO -azO -azO -azO -azO -azO -azO -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -hYR -guH -wYF -wYF -rnc -riO -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -mZr -aao -aao -hFm -riO -aao -hFm -wYF -guH -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(89,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -dIc -frs -riu -cyA -pnP -iEJ -gEw -gEw -qTY -oHi -dtD -acP -lDk -riu -aao -aao -acp -ccQ -iXz -wnl -bSx -ycw -hxd -uzD -cfJ -tXc -wRU -sel -vIX -tcZ -acp -aer -aer -acp -vHG -riu -uCh -acP -aMD -alu -alu -alu -alu -alu -alu -alu -alu -alu -alu -alu -oaH -aBR -aBR -aBR -aBR -aBR -sju -aBR -aBR -aBR -aBR -oQC -apC -lfR -aof -aof -aof -aof -wAB -yij -aof -aof -kRK -kRK -aof -aof -rzD -bOK -xVc -aof -stj -mFg -lbk -aof -aof -apC -oaH -qvU -aBR -aBR -pLi -cRH -wms -cRH -rUa -nZz -cRH -nuZ -xgO -xgO -bjA -cUi -ikk -bjA -bjA -bjA -bjA -ule -bjA -syB -bjA -jrW -axX -xAO -rcU -hIK -tRe -pKB -lSM -pxi -cZO -axX -iQt -bjA -qDI -sfj -xgO -rQj -azO -ojI -ojI -ojI -ojI -ciC -kgW -kgW -kgW -kgW -kgW -qPT -aao -aao -aao -aao -aao -aao -aao -wYF -riO -ibP -fJk -wYF -xYm -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(90,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -dIc -frs -riu -cyA -pRP -kEd -kgd -kgd -fqa -pnP -lLT -acP -ntJ -aao -aao -aao -acp -fRt -ycQ -uoe -ogv -acp -xOQ -xhg -ulO -rRU -acp -fIx -amp -hmz -hsM -aoj -aoj -nqP -rbC -riu -uCh -acP -vvU -kbG -kbG -kbG -kbG -kbG -uwW -hgb -kbG -qWC -kbG -kbG -rQw -aBR -tQy -aBR -aFL -aBR -aBR -aBR -aBR -aBR -aBR -oQC -apD -qDg -tfP -gGq -gQi -vuN -yhW -yij -kRK -lOK -vVD -vVD -vFB -kRK -oTs -bOK -wLk -aof -mmN -nYE -wbK -aof -bij -apC -oaH -cRH -qvU -aBR -bhi -bhi -auW -tIR -qme -nbH -tIR -ofX -gNt -ikk -bjA -bjA -bjA -bjA -bjA -bjA -bjA -bjA -bjA -bjA -iYF -huq -axX -axX -axX -axX -axX -axX -axX -mDZ -xWC -axX -iQt -bjA -sfj -xgO -xgO -xgO -azO -kab -ojI -ojI -tvU -ciC -kgW -kgW -kgW -kgW -kgW -qPT -aao -aao -aao -aao -aao -aao -uFg -ibP -ibP -fJk -rnc -rnc -riO -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -hFm -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(91,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -sjy -sjy -rVa -iMk -pRP -pnP -oHi -pnP -pnP -pRP -lLT -acP -aMD -acp -acp -acp -acp -acp -acp -qRP -acp -acp -acp -aer -wFo -aer -acp -gva -amq -jaq -vqL -adS -adk -vqL -mgZ -riu -iuc -amD -acP -acP -quc -acP -acP -acP -aqO -aqO -acP -acP -azK -acP -aBR -aBR -aBR -aBR -aBR -aBR -aBR -aBR -aBR -aBR -aBR -oQC -apD -rMv -btC -cWG -bOK -sNt -sNt -dlr -ydJ -wmz -bOK -bOK -xij -kRK -jWE -bOK -xVc -aof -lZy -kLL -wbK -uGA -fhR -apC -oaH -mHd -lRR -aBR -bhi -bhi -wGr -aBR -gbS -qvH -cRH -gCf -xgO -bjA -bkq -bjA -rnZ -bjA -bjA -bjA -bjA -bjA -bjA -bjA -bjA -caq -wYp -wYp -wYp -lJf -ayr -uWU -cvo -vdM -cZO -ayr -iQt -lrz -xgO -xgO -sTX -azO -azO -azO -nmL -kab -ojI -ciC -wNp -kgW -kgW -kgW -kgW -aAp -aAp -aAp -aAp -aAp -aAp -aAp -byf -byf -aAp -aAp -aBy -aBy -aAp -aAp -aAp -aAp -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -gWv -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(92,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -dIc -frs -ukY -ehG -ehG -eIT -eIT -eIT -ehG -eQr -acP -aMD -acp -adQ -aep -adQ -afr -afU -adS -adS -aer -adS -adS -ajL -adS -acr -fIx -ahn -pph -acp -acp -acp -acp -mgZ -riu -exN -nvC -acP -uAU -acP -acP -acP -pjM -aqO -aqO -tWM -acP -aAA -acP -aBR -aBR -aBR -aBR -aBR -aBR -aBR -aBR -aBR -xbD -aBR -oQC -apC -aof -aof -cWG -cOP -aof -aof -aof -aof -bPB -bOK -bOK -bOK -ydJ -bOK -bOK -xVc -aof -aof -aof -aof -aof -xIi -apC -oaH -ehU -aBR -sju -aBR -aBR -aBR -aBR -txJ -fIl -cRH -gCf -xgO -hvi -bjA -bjA -bjA -sfj -lrz -lrz -lrz -lrz -lrz -ciS -bjA -bjA -ule -xwd -xgO -caq -ayr -gWN -vxT -qMs -pvD -ayr -lJf -rWg -rQj -rQj -huq -kJK -mSy -kJK -wVC -qBt -kby -qfz -kgW -kgW -kgW -kgW -kgW -aAp -bwK -bxc -bxc -bww -bxK -bxc -byg -bxd -kGw -aBE -gGf -nLr -aAp -rHI -qBd -cvq -aCe -qcB -jmT -jmT -wCV -aCe -fAi -hlw -nol -nol -nol -aCe -dyv -bDk -dyv -aCe -dyv -bDk -dyv -aCe -vqH -iSP -jJB -aCe -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -qvK -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(93,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -hEI -hEI -hEI -hEI -aao -aao -aao -aao -nuk -iMz -iMz -rVa -uCh -acP -acP -acP -acP -quc -aMD -acp -adR -aeq -aeN -aeq -adk -adk -adS -nME -adS -adS -ahm -adS -ptp -fIx -amr -hYL -aer -qWx -qtv -acp -mgZ -uCh -ntJ -pKM -pKM -pKM -pKM -pKM -pKM -pKM -pKM -nvv -pKM -pKM -prj -pKM -jTI -kOh -kOh -kOh -jTI -kOh -nkG -aBR -aBR -aBR -aBR -oQC -apD -bvI -wGx -cWG -bOK -aof -aTa -aTa -aof -vUE -bOK -ixu -bHd -aof -jWE -bOK -wPs -aof -pfJ -fhR -fhR -fhR -fhR -apC -oaH -ehU -aBR -tQy -aBR -aBR -aBR -bhO -cNm -cME -fRu -gqQ -pli -rus -qMN -qMN -pli -qMN -qMN -kUl -qMN -qMN -pli -qMN -wum -qMN -fGl -fbw -iKM -rDS -bGq -qMs -qMs -qMs -hYs -pUZ -jjA -jjA -fuA -fuA -jjA -nAL -cqY -nAL -qhg -nlQ -tTh -lGl -lGl -lGl -lGl -jaK -lGl -pUB -jul -bxc -bxd -nhj -bxc -bxU -bxc -exO -bxd -aBE -gGf -nLr -aAp -eWT -lqg -eWT -aCe -oyP -qAV -mai -cqy -ckl -cqy -cqy -cqy -cqy -pop -aCe -dyv -dyv -dyv -aCe -gdN -dyv -dyv -aCe -dyv -ryf -eES -fDk -gHo -qvK -wYF -fJk -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(94,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -xtG -iPU -rkF -aao -aao -aao -nuk -nuk -frs -uCh -acP -acP -aao -aao -acP -aMD -acp -adS -adS -adS -adk -adk -adk -adS -aer -cQG -adS -ahm -adS -acr -fIx -ahm -pFo -xJu -fDo -lQr -acp -mgZ -uCh -aMD -amn -amV -amV -amn -amV -amV -amn -amV -amV -amn -anK -per -amn -amn -amn -amn -amn -amn -amn -oaH -aBR -aBR -aBR -aBR -oQC -apD -jWE -bOK -cWG -bOK -wgE -aTa -aTa -wgE -wmz -nxw -dkh -gOK -kRK -mfF -bOK -wPs -aof -fhR -bUS -xAi -fhR -fhR -apC -oaH -cRH -qvU -aBR -aBR -gam -gam -bhP -ocX -pYC -fXa -tUb -npG -rAS -tUb -tUb -tUb -gep -tUb -rAS -tUb -wjO -pZp -rAS -rAS -tUb -tUb -tUb -rAS -kXD -mDZ -qMs -qMs -fgs -uaG -mDZ -lJf -lJf -wYp -wYp -slz -kJK -hMV -kJK -oRa -qup -mjG -hmA -kgW -kgW -kgW -kgW -kgW -xLf -uYm -bxd -bxd -cLd -bxc -hEw -byh -byx -byg -aBE -gGf -oSZ -aAp -lqg -lqg -lqg -aCe -oyP -cqy -cqy -jwz -aCe -qav -wdD -pEc -cqy -wdi -aCe -dyv -dyv -dyv -aCe -dyv -dyv -dyv -aCe -dyv -qOv -aMS -vvj -fJk -wYF -wYF -guH -wYF -xqw -wYF -wYF -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(95,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -jla -eAP -iPU -nbC -aao -dIc -vpZ -kFn -nuk -uYg -uCh -acP -acP -acP -aao -acP -aMD -acp -qqn -qqn -qqn -qqn -dwV -qqn -qqn -aer -gti -adS -ajL -akp -acr -hdf -bOL -cpd -mez -qWx -jle -acp -mgZ -riu -aMD -amn -gMG -eoR -eoR -eoR -eoR -eoR -eoR -eoR -eoR -gtt -eoR -amn -atn -atn -atn -atn -atn -amn -xbv -aBR -aBR -sju -aBR -oQC -apC -gAz -bOK -cWG -hCs -aof -ehF -czS -aof -eke -kcJ -aof -kRK -aof -dZH -bOK -xVc -aof -nJi -jka -cfQ -lgV -cQV -apC -oaH -cRH -cRH -qvU -aBR -aBR -aBR -bhP -lUW -oOP -ieW -xwd -sTX -wXs -wXs -wXs -ykx -bYh -bYh -bYh -bYh -bYh -wXs -wXs -bYh -bYh -bYh -bYh -bYh -bYh -ayr -oBC -qMs -qMs -cZO -ayr -lJf -iQt -xgO -xgO -huq -kJK -wKP -kJK -kIi -lco -tvU -ciC -kgW -kgW -kgW -kgW -kgW -aAp -bwN -bxe -bxd -nhj -bww -hEw -bxc -ttd -byH -aBE -oOh -nLr -aAp -aBy -dtA -aBy -aCe -vYn -cqy -cqy -jwz -aCH -xlm -xlS -eec -gFH -jYq -aCe -aCH -cDB -aCH -aCe -aCH -cDB -aCH -aCe -aCH -cDB -fin -vvj -guH -wYF -wYF -wYF -xYm -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(96,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -kiW -sYG -eYa -orv -iPU -nbC -aao -uUr -kiC -nuk -uYg -riu -riu -okr -tWM -acP -acP -acP -aMD -acp -acr -aer -aer -aer -acp -acp -acp -acp -akr -adS -ajL -akq -acr -acr -wLa -acr -acp -acp -acp -acp -mgZ -riu -aMD -amn -pAu -eoR -lmB -pAu -eMI -hpt -pAu -vwt -eoR -pAu -eoR -amn -aua -aua -aua -aEK -aFN -amn -oaH -aBR -aBR -aBR -aBR -oQC -apC -bIJ -bOK -cWG -yij -aof -sLS -aUe -aof -bMG -pdC -kRK -bvI -cly -jpB -iwn -xVc -aof -aof -aof -aof -aof -aof -apC -xlc -hRH -phg -phg -phg -phg -phg -lbC -jTI -kOh -kOh -kOh -huP -awp -awp -axr -axr -axr -awp -ueO -xtA -awp -awp -awp -awp -awp -awp -awp -awp -awp -ayr -gmW -qMs -qMs -cZO -ayr -lJf -iQt -xgO -xgO -caq -azO -azO -azO -ebA -kby -ojI -ciC -kgW -kgW -kgW -kgW -kgW -aAp -bwO -bxf -bxq -bxD -bxD -bxD -bxf -bxf -byI -aBE -gGf -lag -aAp -lqg -lqg -gIF -aCe -kDQ -cqy -cqy -jwz -aCH -rXd -wdD -wYw -cdb -cqy -aCL -pIm -cqy -pIm -aCL -pIm -cqy -pIm -aCL -pIm -cqy -vvj -uSu -wYF -wYF -wYF -wYF -xYm -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(97,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -kiW -uUy -ohI -woz -aao -lPA -nuk -frs -riu -riu -riu -uCh -acP -acP -acP -acP -aMD -acp -xJX -pvs -iiq -klN -tIo -aer -ahs -adS -ahk -adk -ajL -kNg -acr -adS -ajL -adk -anB -alx -alx -acr -mgZ -riu -aMD -amn -eoR -eoR -lce -pAu -upP -bHE -pAu -gMG -mcO -pvl -eoR -amn -aua -aua -aua -aua -aws -amn -rqH -aBR -aBR -aBR -aBR -oQC -apD -oTs -bOK -cWG -eng -aof -aof -aof -aof -kRK -kRK -aof -oTs -meM -xTQ -hQR -mgu -peP -aYO -bca -bcQ -bdr -nky -apC -qzp -nZe -nZe -nZe -nZe -uTj -hwL -ykr -huP -huP -huP -huP -oxd -awp -uWy -tKD -fEz -rnL -cik -qZX -tRL -knp -tRL -tRL -bXF -bTF -lUm -urE -vAf -ntv -ayr -gmW -qMs -dxT -cZO -ayr -lJf -iQt -pwM -pwM -pwM -pwM -azO -meT -hfA -ojI -ojI -oUV -kgW -kgW -kgW -kgW -kgW -aAp -aAp -aAp -lCN -aBy -aBy -aBy -aAp -aAp -aAp -aAp -gGf -nLr -aAp -lqg -ppe -gIF -aCe -vYn -cqy -cqy -jwz -aCH -eJa -cqy -ium -wdD -cqy -mPM -cqy -cqy -cqy -npo -cqy -cqy -cqy -gpl -cqy -wdD -cqy -uSu -wYF -wYF -wYF -wYF -xYm -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(98,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -dIc -frs -riu -sgc -riu -uCh -acP -acP -acP -acP -aMD -acq -fxF -tEV -rsy -oDf -klN -acp -adS -adS -adk -adk -ajL -aks -acr -alx -amu -anf -adk -alx -alx -alZ -mgZ -riu -aMD -amn -joU -amn -amn -amn -amn -amn -amn -amn -amn -amn -joU -amn -fme -amn -amn -amn -dGN -amn -oaH -aBR -lwC -aBR -aBR -oQC -apD -jWE -bOK -bZA -hBT -wGx -wGx -fdx -jef -sMD -sMD -sMD -cEB -meM -khU -hQR -exu -uHo -baJ -qCW -eCt -cNN -bQe -apC -ttF -cRH -cRH -cRH -uAx -oQC -uTj -gHQ -jTV -uwg -uwg -jTV -uwg -knp -tRL -pbh -fBm -rSN -rfj -xUt -lts -awp -awp -awp -iPI -qfo -goM -qfo -qfo -qfo -rue -vdM -qMs -qMs -cZO -ayr -lJf -iQt -bkq -bjA -bjA -bjA -azO -meT -meT -lSK -ojI -qfz -wNp -kgW -wqU -kgW -kgW -aAp -xeD -cbC -iXL -dSN -ltL -dPe -kHB -ltL -uQt -aAp -gGf -lxB -wlF -lqg -oAt -nmx -aCe -oyP -cqy -qAV -jwz -aCH -sgq -cqy -uKu -wdD -pEc -iRm -wdD -wdD -wdD -pgK -wdD -wdD -wdD -klI -wdD -cqy -cqy -vvj -fJk -wYF -wYF -wYF -xYm -wYF -guH -wYF -wYF -wYF -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(99,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -dIc -ott -rVa -riu -riu -riu -okr -acP -dwh -acP -aMD -adG -klN -iIr -fvR -klN -klN -tuh -adS -adk -adS -aje -ajM -adS -acr -cLq -lym -alx -anD -cLq -cLq -acr -weZ -rpm -cqe -asI -ayY -ayY -ayY -ayY -ayY -ayY -axG -ayY -ayY -kxr -asJ -asJ -aua -asJ -aDQ -eYH -aws -amI -oaH -qvU -aBR -aKr -aBR -oQC -apC -rMv -vSB -sNt -sNt -sNt -bOK -sNt -sNt -sNt -vSB -btC -sNt -ouS -cel -hQR -yij -aof -bbo -cNN -oZi -cNN -bQe -apD -ttF -cRH -uAx -lRR -aBR -oQC -uTj -huP -huP -huP -huP -huP -huP -awp -oXK -jPq -jPq -jPq -qfo -bTF -lts -ayF -pUQ -fbl -xOD -wQR -wQR -kRT -wQR -gUa -qeG -vBd -vBd -rcm -oEz -ayr -lJf -iQt -bjA -ehV -bjA -bjA -azO -pjY -meT -hfA -ojI -mUC -kgW -kgW -kgW -kgW -kgW -aAp -xeD -mQM -ndY -uty -uty -uty -cLJ -rWx -gPx -aAp -gGf -xta -aAp -aAp -aAp -aAp -aCe -oyP -mai -cqy -jwz -aCH -noo -fbC -uKu -wdD -wdD -uBF -rYO -wdD -rYO -kPr -rYO -wdD -rYO -gFd -vYb -cqy -rYO -fin -ibP -guH -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(100,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -dIc -dIc -frs -riu -riu -riu -uCh -acP -acP -acP -aMD -acq -cFe -bsU -cFN -oDf -klN -acp -adS -adk -aiO -yea -dRJ -akt -acr -rqS -xIt -anD -dnT -lfz -tuT -amb -vHG -riu -uUD -asJ -asJ -aua -aua -avC -aua -asJ -iSa -ayo -iLd -azP -asJ -aua -asJ -asJ -asJ -awn -aws -amI -xbv -cRH -qvU -aBR -uhR -oQC -apC -aof -rCR -aof -aof -aof -rCR -aof -aof -aof -rCR -aof -aof -mHF -sTP -eKb -yij -aof -bbp -cNN -dgd -cNN -aYO -apD -ttF -ehU -pJc -aBR -aBR -oQC -uTj -xRy -tqB -tqB -xRy -huP -iNq -awp -nLN -qfo -qfo -qwr -cqR -bTF -lts -ayF -upj -fbl -cFB -qfo -qfo -oEE -wjH -lts -ayr -ayr -ayr -ayr -ayr -ayr -lJf -iQt -bjA -bjA -syB -bjA -azO -meT -meT -meT -lSK -ciC -kgW -kgW -kgW -kgW -kgW -aAp -xeD -sMg -uRW -uRW -uRW -fnZ -iji -whX -gPx -aAp -gGf -oSZ -aBE -ubg -xjl -wAY -aCe -rbd -nzr -nzr -hgB -aCH -vtU -kPU -tBo -kPU -tkx -aCL -ear -cqy -ear -aCL -ear -cqy -ear -aCL -ear -cqy -ear -aCe -aao -hFm -rnc -rnc -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aab -aaa -aaa -aaa -"} -(101,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -dIc -dIc -uYg -riu -riu -aao -riu -okr -acP -acP -aMD -acp -vXe -eGI -klN -klN -klN -aer -adS -adS -aiO -etz -vkT -akt -acr -tPv -xzR -adS -anD -tPv -tPv -buv -nfq -riu -uUD -amn -amn -amn -amn -avD -awn -uYD -rDN -uYD -ayX -azQ -aAC -aAC -aBU -ayY -aAC -aAC -aFP -meu -oaH -cRH -cRH -lLA -cRH -oQC -apC -sFk -fhR -kLg -aof -gob -fhR -tFj -aof -hLC -fhR -sOR -aof -cBn -aof -oTs -hCs -aof -bbq -bcd -bcU -qks -aYO -apC -rFO -cRH -lLA -qvU -aBR -oQC -oaH -dPJ -gpR -gpR -dPJ -iNf -vDk -awp -mus -fBw -qLb -fRa -aRv -qLb -bmI -ayF -pUQ -fbl -tQs -bTF -ffm -wdE -jNa -sBl -awp -lJf -wYp -wYp -wYp -lJf -lJf -iQt -bjA -bjA -bjA -bjA -azO -meT -oLa -gem -ojI -pLJ -kgW -kgW -kgW -kgW -kgW -aAp -ppr -unp -cbC -cbC -iJI -cbC -kyx -cbC -hgy -aAp -gGf -rJc -jcv -sbI -pLp -pLp -aCe -aCe -aCe -aCe -aCe -aCe -aCL -aDj -iWH -aDj -aCL -aCe -aCH -cDB -aCH -aCe -aCH -cDB -aCH -aCe -aCH -cDB -aCH -aCe -aao -aao -aao -aao -mZr -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aab -aaa -aaa -aaa -"} -(102,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -tgl -nuk -uYg -riu -riu -riu -aao -aao -uCh -dhp -acP -aMD -acp -acp -acp -acp -acp -acp -acp -aht -adS -aiO -sqE -elY -akt -acr -adS -ahm -adS -adk -adk -adS -acr -vHG -sez -aMD -amI -pAu -eoR -amn -asJ -aua -obS -iLd -cft -aua -gRd -asJ -aBi -asJ -aua -aua -aua -asJ -xEG -oaH -cRH -cRH -cRH -cRH -oQC -apC -oIe -fhR -fhR -aof -oIB -fhR -fhR -aof -oIe -fhR -pIH -aof -oFq -aof -oTs -hCs -aof -xKG -aTa -bcV -bdt -baJ -goq -vWp -vmd -klJ -ubO -aBR -oQC -rrl -gpR -gpR -gpR -gpR -qUw -uTj -awM -awM -awM -ayc -ayc -awM -awM -awM -awM -awp -awp -cIf -xtA -awp -awp -awp -awp -awp -iQt -bjA -bjA -bjA -sYV -lJf -iQt -bjA -uNF -bjA -bjA -azO -sHr -kby -ojI -kab -ciC -kgW -kgW -kgW -kgW -kgW -aAp -lxb -mQM -cLJ -syv -uty -uty -cLJ -vbt -vAj -aBy -gGf -rOL -aBE -vAj -iTB -pLp -aBE -dmO -bww -bww -hkv -aCL -nlR -wQq -uKu -wQq -fqh -aCe -fob -uqy -uqy -aCe -lpa -uqy -uqy -aCe -uqy -fob -uqy -aCe -aao -aao -aao -aao -mZr -aao -aao -wYF -wYF -wYF -wYF -aao -aao -aao -aab -aaa -aaa -aaa -"} -(103,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -dIc -frs -riu -riu -riu -riu -riu -aao -uCh -acP -acP -vvU -kbG -kbG -kbG -kbG -kbG -vsw -acr -ahu -adS -aiO -wCw -ajQ -akt -acr -adk -omM -iNM -rtl -uEh -adk -alZ -vHG -iOe -aMD -amI -upP -eoR -yiB -asJ -aua -aua -aua -aua -asJ -azS -amn -amn -amn -xEG -izx -amn -amn -amn -xbv -cRH -uTF -uAx -uAx -oQC -apC -pfJ -gvQ -tky -aof -pfJ -fhR -fDj -aof -pfJ -fhR -fMQ -aof -xRU -aof -nHZ -eqt -aof -bbr -bQe -aYO -fPB -bQe -cJE -kqj -fXa -nmv -hTn -aBR -oQC -rrl -gpR -gpR -gpR -gpR -qUw -uTj -awM -vwz -vwz -vwz -vwz -vwz -vwz -vwz -awM -uHg -wBJ -xUt -bTF -cik -nqE -oVs -tmJ -awp -iQt -bjA -bjA -bjA -huq -lJf -iQt -bjA -bjA -sTX -azO -azO -azO -nmL -tvU -lco -ciC -kgW -kgW -xnK -kgW -kgW -aAp -rFU -sMg -uRW -uRW -uRW -uRW -uRW -ueg -lGE -mVg -ltL -uzn -aBQ -gTx -cvg -cbC -aBE -hHG -bBv -bww -bBN -aCL -lUY -cqy -quV -gbL -umO -aCe -uqy -uqy -uqy -aCe -uqy -uqy -fob -aCe -uqy -uqy -uqy -aCe -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -guH -aao -aao -aao -aab -aaa -aaa -aaa -"} -(104,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nuk -nuk -rVa -riu -riu -riu -riu -riu -uCh -acP -acP -acP -acP -acP -acP -acP -acP -aMD -acr -ahu -adS -aiP -adS -ajL -ajj -acr -adk -oyC -lok -rHz -mSk -adS -acr -vHG -nvC -aMD -amn -tkP -eoR -amn -pvj -asJ -awY -kHf -aua -asJ -azT -amn -gzA -mqJ -qFs -qFs -saM -vET -amn -xbv -lRR -aBR -aBR -aBR -pHY -apC -apJ -apJ -apJ -apC -apJ -apJ -apJ -apC -apJ -apJ -apJ -apC -apC -apC -wtt -lkv -apC -apC -apC -apC -apC -apC -apC -gph -iaF -gbS -kdI -qvU -oQC -oaH -dPJ -gpR -oOw -dPJ -oQC -uTj -awM -hDF -hDF -hDF -hDF -wSQ -hDF -hDF -awM -bde -tQs -bpU -bqv -bpU -qfo -qfo -hcQ -awp -iQt -bjA -uNF -bjA -huq -lJf -iQt -bjA -bjA -huq -kJK -uYa -kJK -wVC -kab -kby -ciC -kgW -kgW -kgW -kgW -kgW -aAp -sna -odz -fgw -lxE -rTa -rTa -mcM -ltL -bYl -aBy -gGf -tgB -aBQ -vFx -bZG -bZG -aBE -hHG -bww -bww -bBO -aCL -vOn -vjZ -tBo -vjZ -xuY -aCe -uqy -xqV -uqy -aCe -uqy -gVn -uqy -aCe -lpa -gVn -fob -aCe -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -aao -aao -aao -aab -aaa -aaa -aaa -"} -(105,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -tgl -nuk -nuk -nuk -rVa -riu -vdT -riu -riu -uCh -acP -acP -lPg -goh -goh -goh -lPg -acP -aMD -acr -acr -acr -acr -adS -ajL -acr -acr -acr -acr -acr -acr -acr -acr -acr -vHG -acP -eBW -amn -pAu -eoR -amn -asJ -awo -dkM -ePa -ayp -asJ -azU -amn -qFs -sJE -dwg -sJE -eRs -uGh -amn -oaH -aBR -aBR -aBR -aBR -cnI -xRy -xRy -xRy -mfv -miF -xRy -nqL -xRy -xRy -xRy -xRy -xRy -xRy -xRy -rQw -pJg -ubO -cnI -xRy -xRy -xRy -xRy -xRy -xRy -ujy -cRH -ctm -wEZ -pwc -huP -uTj -kOh -tFN -oZS -kOh -uTj -uTj -awM -awM -awM -ayc -ayc -awM -awM -awM -awM -sMt -tQs -bpV -bkU -bqX -qfo -qDi -dmX -awp -iQt -bjA -bjA -bjA -huq -lJf -lJf -bYh -bYh -lJf -kJK -uYa -kJK -wNp -uSg -gaG -wNp -kgW -kgW -kgW -kgW -kgW -aAp -aAp -aAp -aAp -aAp -aAp -aAp -aAp -aAp -aAp -aAp -jSH -tgB -aBE -aBQ -aBQ -aBQ -aBE -aBE -jGX -aBE -aBE -aCL -aCL -aDj -iWH -aDj -aCL -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aCe -aDY -aDY -aDY -aDY -aDY -aDY -aao -aao -wYF -wYF -wYF -aao -aao -aao -aab -aaa -aaa -aaa -"} -(106,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -oIH -nuk -nuk -eMt -nuk -iMz -rVa -riu -riu -uCh -acP -acP -lDB -mBj -tLC -uQw -eiX -acP -vvU -kbG -kbG -vsw -acr -adS -ajL -akc -nhB -klN -xzv -pVO -rgd -xgt -mXr -acr -vHG -iOe -aMD -amn -mYe -eoR -amn -asJ -awo -axa -aEk -ayq -ayY -azV -amn -ebK -jLT -qFs -qFs -amn -amn -amn -oaH -aBR -aBR -aBR -svT -aBR -aBR -svT -aBR -jGE -aBR -aBR -aBR -aBR -aBR -gkk -tlJ -pLi -cRH -ehU -nId -gbS -mSJ -aBR -pJc -pLi -cRH -cRH -ehU -aBR -sju -eza -ctm -oeM -jHi -huP -uTj -uTj -cfj -uTj -uTj -huP -huP -awp -pBG -yie -qUB -ujv -gly -gly -gly -icW -mVd -tQs -bpU -bkU -bpU -qfo -qfo -eND -awp -iQt -bjA -bjA -bjA -caq -wYp -wYp -wYp -wYp -lJf -kJK -uYa -kJK -oRa -fSa -qup -kgW -kgW -kgW -kgW -kgW -kgW -aBv -rgq -rgq -rgq -rgq -aBA -rvr -uQS -uQS -uQS -vHM -lqi -kkr -jMx -jMx -lgO -dJx -uQS -uQS -lqi -uQS -uQS -tav -oGM -jMx -kkr -uQS -aDv -bJx -bJx -gUF -bJx -dLs -bJx -bJx -ePg -cBI -gVz -gVz -gVz -gUF -bJx -bJx -bJx -bJx -gUF -aDY -aao -aao -wYF -wYF -wYF -wYF -aao -aao -aab -aaa -aaa -aaa -"} -(107,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -riu -oIH -sra -nuk -nuk -nuk -oJl -riu -riu -uCh -acP -acP -lDB -mBj -vsw -uQw -eiX -acP -acP -acP -acP -aMD -acr -adS -ajR -acr -nhB -vPM -vPM -vPM -vPM -vPM -klN -acr -vHG -ezW -iyB -amI -upP -eoR -yiB -asJ -awo -dJc -axK -ayp -asJ -jph -amn -gxn -vCE -qFs -qFs -kqG -hxR -amn -oaH -aBR -aBR -aBR -aBR -mWp -aBR -aBR -sju -aBR -mIp -aBR -aBR -aBR -uhR -lLA -lLA -cRH -cRH -cRH -lLA -wZz -qvH -lLA -lLA -cRH -cRH -cRH -cRH -lLA -lLA -cRH -oPG -qvH -cRH -oQC -uTj -xRy -yfS -tqB -xRy -uTj -huP -awp -pBG -mmG -qfo -qfo -qfo -rRa -qfo -qfo -ukR -tQs -bpV -bkU -bqX -bTF -pHK -kCL -azG -pvA -bjA -bjA -bjA -bjA -bjA -xwd -xgO -xgO -huq -kJK -uYa -kJK -ljJ -hRr -ojI -oUV -kgW -kgW -wqU -kgW -kgW -gJk -rWa -wpC -rWa -rWa -gJk -cKU -hRb -suR -aUq -ubp -ubp -pUX -qcA -oDI -vwP -mUA -qTK -ubp -ubp -vwP -oDI -ubp -ubp -ubp -pUX -oDI -xGF -tVD -gIQ -gIQ -uGe -nLT -nLT -nRJ -wOC -tVD -lxw -fVP -fVP -fVP -uTR -mnS -fVP -ofG -lxm -aDY -aao -aao -wYF -wYF -wYF -wYF -aao -aao -aab -aaa -aaa -aaa -"} -(108,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -riu -riu -riu -qvm -nuk -nuk -frs -riu -riu -uCh -acP -acP -lDB -vsw -vsw -tkl -eiX -acP -acP -acP -acP -aMD -acr -adS -ajS -gHG -tPi -jrx -ryk -jrx -jrx -sKR -pUS -acr -nfq -acP -iJx -amI -pAu -eoR -amn -asJ -awo -eEv -snM -ayp -asJ -azW -amn -cSD -bJU -qFs -qFs -amn -amn -amn -oaH -aBR -aBR -aBR -aBR -aBR -aBR -aBR -qHW -aBR -qHW -aBR -aBR -tlJ -eOs -tSy -vmd -vmd -vmd -kyV -kyV -cxG -dWQ -kyV -kyV -kyV -vmd -kyV -kyV -vmd -kyV -kyV -oeM -siS -ehU -oQC -oaH -dPJ -rfE -rfE -dPJ -iNf -huP -awp -wKK -mVd -bTF -jPq -eyZ -wQR -gUa -frS -mBF -xUt -bpU -bqw -bpU -nSk -ekE -feL -azG -pvA -bjA -mVR -bjA -bjA -bjA -xwd -xgO -hsI -caq -azO -azO -azO -qLW -kab -ojI -ciC -kgW -kgW -kgW -kgW -kgW -aBv -bNK -bNK -rIT -bNK -aBA -jQu -kaM -kaM -grq -lqi -kaM -kaM -kaM -kaM -pLc -qve -ino -suR -lUH -kkr -suR -dRm -lqi -hMt -lqi -lqi -sbb -xvO -xvO -xvO -xvO -nrF -fmI -xvO -uLx -fmI -bvg -aDX -aDv -aDv -aDv -aDv -aDX -pwk -lxm -aDY -aao -aao -wYF -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(109,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -riu -vdT -riu -qvm -nuk -nuk -uYg -riu -riu -uCh -acP -acP -uUD -vsw -vsw -vsw -vHG -acP -acP -nnh -acP -aMD -fAf -adS -adk -acr -klN -vPM -vPM -vPM -vPM -vPM -vbO -acr -oeH -acP -iJx -amn -amn -amn -amn -kYl -awo -nAf -awZ -ayp -asJ -azP -wtw -gmj -sJE -qFs -qFs -kqG -nNI -amn -oaH -aBR -aBR -aBR -aBR -aBR -aBR -aBR -qHW -qHW -tvg -aBR -aLc -aBR -gbS -oeM -fXa -fXa -fXa -hHI -fXa -lPr -fXa -fXa -dKx -fXa -fXa -oAM -gWf -fXa -fXa -fXa -fXa -nfX -lRR -oQC -rrl -rfE -rfE -rfE -rfE -qUw -uTj -awp -jte -bTF -pIv -tRL -qsF -qfo -qfo -jPq -fkG -xVP -qfo -qfo -bTF -qfo -qfM -feL -azG -iQt -bjA -bjA -syB -bjA -bjA -xwd -qMK -qMK -hsI -hsI -azO -meT -hfA -ojI -ojI -ciC -kgW -kgW -kgW -kgW -kgW -aBv -aBv -aBv -aBv -aBv -aBv -aBv -aBv -aBv -cfP -uQS -aBv -aBw -aBw -aBw -ezK -aBv -aBv -kaM -kaM -kkr -sCS -sCS -kaM -kaM -kaM -kaM -aDv -lxm -eoM -lxm -lxm -lxm -kCk -fQI -mrw -fmI -kjm -aDv -bdc -gIA -ohW -bdc -aDv -pwk -sIe -aDY -aao -aao -wYF -guH -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(110,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -riu -riu -riu -qvm -nuk -frs -riu -riu -riu -uCh -acP -acP -lDB -vsw -vsw -mBj -eiX -acP -acP -acP -acP -aMD -vqL -adS -adk -akc -nhB -vdh -bRX -vPM -cIs -vdh -gBA -acr -jFX -iOe -aMD -amI -pAu -eoR -amn -asJ -asJ -axd -axd -asJ -aua -azY -nCN -lsl -wLE -fQZ -qFs -amn -amn -amn -jwU -aBR -hEY -aBR -aBR -aBR -aBR -qHW -svT -lLo -tMe -aBR -tlJ -aBR -txJ -oXL -cRH -cRH -cRH -cRH -cRH -cRH -cRH -uAx -uAx -uAx -lRR -aBR -aBR -aBR -wod -uAx -uAx -lRR -aBR -oQC -rrl -rfE -rfE -pVV -mof -qUw -oBw -awp -bRI -tUn -qWg -tUn -tQs -jyR -tic -kPN -tic -tTt -tTt -yfM -tic -tic -bTw -feL -awp -iQt -bjA -bjA -nYV -bjA -qSW -rRr -uKb -hsI -kKN -sNL -azO -meT -meT -hfA -kby -ciC -kgW -kgW -kgW -kgW -kgW -aBw -nBo -iPa -mTM -inE -lgA -mTM -xBy -aBv -cfP -uQS -aBw -bJd -nDj -nDj -vdA -wJt -aBv -aBA -aCh -uBX -aCh -aBA -aBA -aCh -aCh -aCh -aBA -aBA -aBA -aDX -aDX -aDX -aDX -aDX -aDX -lGQ -kjm -aDX -aDX -aDX -aDX -aDX -aDX -pwk -lxm -aDY -aao -aao -wYF -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(111,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -sgc -kgb -nuk -nuk -frs -riu -riu -riu -uCh -dct -acP -lDB -vsw -mBj -tLC -eiX -acP -acP -acP -acP -aMD -acr -ajj -adk -akc -nhB -cdl -cdl -klN -nhB -cdl -kcg -acr -vHG -acP -aMD -amI -upP -eoR -yiB -asJ -asJ -aua -aua -awn -aua -ltK -amn -owW -faB -mQm -qFs -kqG -pEF -amn -uTj -jTI -jTI -pEb -kOh -jTI -kOh -uMj -sZs -jTI -sEa -kOh -nkG -aBR -gbS -siS -cRH -xhO -uAx -uAx -uAx -uAx -lRR -aBR -aBR -sju -aBR -aBR -aBR -aBR -aBR -aBR -aBR -aBR -pJc -wyL -oaH -dPJ -mof -eXf -dPJ -oQC -uTj -awp -awp -awp -awp -awp -wrH -awp -awp -ayF -ayF -ayF -xpG -awp -ayF -ayF -ayF -awp -awp -xiG -lrz -lrz -lrz -lrz -lrz -hsI -hsI -hsI -lrn -gHT -azO -meT -meT -meT -lSK -ciC -kgW -bvY -kgW -eZc -kgW -aBw -ckF -oDI -oDI -oDI -oDI -oDI -fdl -aBv -hYg -kJR -aBw -oAH -lqi -mNt -lqi -wKn -aBv -fGD -cuS -kkr -cuS -cuS -wKY -dQH -dQH -dQH -cPM -cuS -iwJ -aDX -noJ -voX -vLx -wVm -aDX -lGQ -uCe -aDX -uqn -uSe -wVm -wVm -aDX -pwk -iwD -aDY -aao -aao -wYF -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(112,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -riu -qvm -nuk -nuk -frs -jRZ -riu -riu -riu -okr -acP -lDB -pIR -kZw -iPg -eiX -acP -acP -acP -qhw -aMD -acr -acr -acr -acr -akj -akj -akj -akj -akj -akj -akj -acr -dLU -bEY -aMD -amn -upP -oHj -amn -asJ -gRO -kjd -dqk -dqk -dqk -azZ -amn -amn -amn -amn -amn -amn -amn -amn -anJ -anJ -anJ -aoz -anJ -aoz -anJ -aoz -anJ -aoz -anJ -anJ -oaH -aBR -gbS -qvH -cRH -ehU -aBR -gkk -aBR -aBR -aBR -aBR -nId -aBR -aBR -aBR -pJc -aBR -aBR -aBR -aBR -aBR -aBR -oQC -uTj -ldH -ulx -qZl -ldH -cAA -hwL -awp -eaE -mec -awp -vRo -tQs -bPZ -awp -isk -isk -isk -isk -isk -isk -isk -isk -isk -isk -xiG -lrQ -xgO -aao -aao -plY -plY -plY -plY -qBJ -aao -azO -meT -meT -meT -lSK -qVC -kgW -kgW -kgW -kgW -kgW -aBv -qkn -suR -suR -lqi -hZB -suR -rxa -aBw -jiQ -mCu -aBv -wWM -ldt -eip -qVM -wKn -aBv -pZZ -lqi -kkr -suR -suR -suR -lqi -lqi -lqi -lqi -lqi -jOo -aDX -vXQ -noJ -lzR -noJ -aDX -lGQ -pmM -aDX -noJ -noJ -lzR -noJ -aDX -pwk -lxm -aDY -aao -aao -wYF -wYF -wYF -guH -wYF -aao -aab -aaa -aaa -aaa -"} -(113,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -dIc -nuk -uYg -riu -riu -riu -riu -uCh -acP -lPg -xlA -xlA -xlA -lPg -ngz -acP -acP -acP -vvU -kbG -kbG -kbG -qWC -qWC -kbG -kbG -qWC -wxv -euX -jOg -prm -gmi -amD -aMD -amn -clR -vnp -amn -avG -gRO -gRO -ceD -gRO -dqk -aws -amn -onN -wPx -jfL -rNK -naS -gmc -amn -wAu -wUe -hZn -xth -bJk -phu -hkq -phu -kGc -phu -vhG -anJ -mjx -aBR -gbS -qvH -cRH -ehU -oNs -jTI -jTI -jTI -kOh -jTI -kOh -jTI -jTI -jTI -jTI -jTI -jTI -jTI -rxV -kOh -kOh -uTj -uTj -oBw -uTj -oBw -tdw -uTj -uTj -awp -oXK -wcP -awp -vRo -tQs -xkl -awp -isk -isk -uBZ -cOe -cOe -uBZ -isk -isk -isk -isk -xiG -lrQ -lrQ -aao -aao -xRL -gJG -xRL -xRL -xRL -aao -azO -meT -meT -meT -lSK -ciC -bvY -kgW -bvY -kgW -kgW -aBv -nMX -suR -tkB -suR -lqi -lqi -hAf -oDy -vzO -iXA -aBv -mef -nTL -qYW -pPv -wKn -aBv -lEK -lqi -msp -vIu -wel -vIu -oDI -scd -mdL -lqi -lqi -jOo -aDX -bsz -cKD -rmi -cKD -xqE -nLT -ukB -xqE -cKD -cKD -rmi -ucc -aDX -pwk -lxm -aDY -aao -aao -wYF -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(114,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -sjy -frs -riu -riu -riu -aao -riu -riu -okr -acP -acP -acP -acP -acP -acP -acP -acP -acP -acP -dwh -acP -acP -acP -acP -acP -acP -ezW -acP -ezW -kdV -acP -acP -acP -aMD -amn -bWY -oHj -amn -uYD -gRO -jer -xZz -gRE -xZz -aAa -fhz -plX -wiF -roV -eoR -eoR -eoR -fhz -rKX -iEU -hZn -big -hPW -kHn -kHn -dNm -brq -abb -vFd -aqz -oaH -lLA -ocX -qvH -cRH -ehU -oQC -asv -asv -asv -atJ -atJ -atJ -asv -asv -asv -asv -asv -asv -asv -atJ -atJ -atJ -asv -asv -uTj -uTj -ifc -uTj -uTj -tyr -awp -oXK -mec -awp -vRo -tQs -lts -awp -isk -xiG -oZQ -wcw -wcw -oZQ -mmT -isk -isk -ofn -xiG -lrQ -dYg -aao -xRL -gJG -xRL -gJG -xRL -aao -aao -azO -azO -meT -oLa -kby -ciC -kgW -kby -eZc -bvY -kgW -aBw -siE -lqi -hRb -suR -suR -wQk -bJb -aBw -jiQ -tEx -aBv -eEz -hZv -oDI -oDI -kcD -aBv -xnq -lqi -lqi -lqi -lqi -lqi -gQD -kkr -gQD -lqi -suR -jOo -aDX -noJ -noJ -noJ -noJ -aDX -lGQ -uCe -aDX -noJ -imA -dEv -noJ -aDX -pwk -lxm -aDY -aao -aao -aao -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(115,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -frs -sgc -riu -aao -aao -aao -riu -uCh -acP -acP -acP -acP -acP -acP -acP -acP -acP -acP -acP -acP -uAU -acP -acP -acP -amD -acP -acP -acP -ezW -acP -acP -acP -aMD -amI -gMG -eoR -yiB -asJ -gRO -gRO -rmS -sFD -dqk -aAb -amn -vVR -ujX -sPU -wiF -rTA -ofD -amn -rKX -rKX -mcJ -tes -weX -lwe -uJP -nJk -phu -weX -phu -anJ -vCY -cRH -hxY -woB -cRH -ehU -oQC -asv -uFc -pNv -iAL -nvF -mUk -oPX -asv -kSI -kSI -isN -asv -dxL -obq -rvM -lGj -hQa -asv -uTj -uTj -uTj -asv -atJ -atJ -awp -eLZ -awp -awp -awp -wrH -awp -awp -isk -wUV -wcw -iQw -wcw -wcw -dFA -isk -isk -qKz -xiG -lrQ -lrQ -oDT -gJG -gJG -gJG -xRL -xRL -aao -aao -aao -azO -azO -ojI -ojI -ciC -ssc -bvY -kgW -ssc -kgW -aBw -oXb -sXr -sXr -fbW -cEf -sXr -lbP -aBv -pwZ -tEx -aBv -aPl -wXl -wNy -rbG -wLP -aBv -nnV -nVJ -lqi -kWL -xsb -pbT -aXh -gkK -eak -tdD -hze -pSm -aDX -eFH -noJ -noJ -nEw -aDX -lGQ -kjm -aDX -pCY -noJ -noJ -buU -aDX -pwk -lxm -aDY -aao -aao -aao -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(116,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -frs -riu -riu -riu -riu -riu -riu -uCh -acP -acP -dwh -acP -acP -acP -acP -uAU -acP -acP -acP -acP -acP -acP -acP -acP -acP -ntJ -pKM -pKM -pKM -pKM -pKM -pKM -vsw -amI -pAu -eoR -amn -pvj -xYF -xZz -nQp -mKt -gRO -aws -fhz -sLn -kTf -kTf -kTf -msk -msk -fhz -rKX -vNW -ohz -phu -tSu -pOF -vyn -lDI -phu -dZf -hzz -aqz -oaH -wZp -oNo -qvH -cRH -ehU -wyL -asH -iAL -pNv -leX -hOQ -kJH -leX -leX -leX -iAL -iAL -asv -obq -mYv -hxj -hxj -aTm -asH -uTj -huP -uTj -asv -uxk -lNv -kkB -peY -mrB -bVS -tgi -wqn -eyH -ayF -oWW -wUV -wcw -wcw -wcw -wcw -dFA -isk -isk -qKz -xiG -ttz -lrQ -oDT -gJG -xRL -xRL -gJG -xRL -aao -aao -aao -aao -azO -azO -azO -azO -azO -azO -azO -azO -azO -aBv -aBv -aBv -aBv -aBv -aBv -aBv -aBv -aBv -jiQ -uhS -aBv -aBv -aBv -aBv -aBv -aBv -aBv -xip -lqi -lqi -pUk -aBA -aCh -aCh -aCh -aCh -aCh -aCh -aBA -aDX -aDX -aDX -aDX -aDX -aDX -jwa -xpv -aDX -aDX -aDX -aDX -aDX -aDX -wWy -uUO -aDY -aao -aao -aao -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(117,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nuk -rVa -riu -riu -riu -riu -riu -riu -okr -acP -acP -dct -acP -acP -acP -acP -acP -acP -acP -acP -acP -acP -cwb -acP -acP -aMD -ako -ako -ako -ako -ako -ako -ako -amn -amn -amn -amn -asJ -tne -asJ -uYD -ayv -asJ -aws -amn -jHG -qiR -eoR -eoR -vVR -vVR -amn -iMG -gyc -mcJ -phu -oDb -hZU -lvq -ybU -phu -heW -phu -anJ -oaH -cRH -uMs -qvH -cRH -ehU -oQC -asH -ulL -pNv -leX -iAL -kJH -leX -leX -non -leX -gRC -asv -fEp -enq -ecd -xPV -bJJ -avr -uDF -huP -huP -asv -hxZ -lNv -awp -mmG -qfo -bRY -qfo -uNR -mOB -ayF -isk -pWk -oZQ -wcw -rHA -oZQ -rMj -isk -isk -qKz -xiG -lrQ -pCi -oDT -xRL -xRL -xRL -gJG -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aBv -nsP -pYs -vZv -aBA -jiQ -tEx -aBv -hmo -hmo -hmo -hmo -hmo -aBv -nnV -lqi -lqi -fIc -wKY -bSe -iZN -fjq -hno -jUy -iwJ -bjU -aDX -svD -noJ -noJ -njI -aDX -lGQ -uCe -aDX -nKn -noJ -noJ -eFH -aDX -gXQ -uUO -aDY -aao -aao -aao -wYF -guH -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(118,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nuk -dIc -iMz -cMh -iMz -rVa -riu -riu -riu -rsH -rsH -okr -acP -krj -acP -acP -acP -ntJ -pKM -pKM -pKM -pKM -pKM -pKM -pKM -vsw -aku -aoo -atE -apK -tpx -ars -apc -odE -ivH -ars -amn -amn -cJn -jFD -amn -amn -anJ -rqx -anJ -anJ -anJ -fbB -amn -amn -amn -amn -kBK -sBL -vjd -kju -ruc -rlz -eIn -lAL -ocZ -weX -dlP -anJ -ouX -cRH -gbS -qvH -cRH -ehU -oQC -asH -aZa -pNv -leX -mnT -wMR -gRC -asv -gNQ -leX -lEG -asv -hxj -ocC -rvM -rvM -tpC -asH -qVt -huP -huP -asv -kOz -vbd -sUX -lLE -dsX -djI -jPq -qir -xMz -ayF -isk -isk -moY -twZ -nes -moY -isk -isk -isk -qKz -xiG -lrQ -lrQ -oDT -xRL -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aBv -pYs -pYs -dbR -gtd -vzO -cAc -nzS -scd -suR -lqi -lqi -lqi -aBv -mTl -lqi -lqi -suR -suR -lqi -lqi -lqi -lqi -suR -gwZ -lqi -aDX -noJ -noJ -noJ -noJ -aDX -wHn -uCe -aDX -noJ -noJ -imA -noJ -aDX -gXQ -edf -aDY -aao -aao -aao -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(119,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nuk -nuk -iXx -nuk -nuk -nuk -rVa -riu -riu -riu -riu -riu -okr -acP -acP -acP -acP -aMD -lPg -hGx -hGx -hGx -hGx -vsw -vsw -vsw -aku -aop -apc -apK -dyE -ars -apc -apK -uer -ars -ako -fTk -ehL -iXt -dHd -ahf -anJ -xWW -cNq -xDx -wJA -anJ -udb -jnA -phu -weX -weX -big -kHZ -eUY -phu -phu -phu -jxn -dGH -ksk -weX -duZ -pJg -wad -cti -qvH -swz -ehU -oQC -asv -iAL -pNv -gQS -iAL -mqL -leX -asv -cHa -cHa -cHa -asv -oEC -bJJ -rvM -dHK -uPH -asv -cDD -uTj -clW -asv -ssp -nNW -awp -mmG -jPq -vhT -rfj -rfj -unB -ayF -isk -isk -ibl -uBZ -uBZ -uBZ -isk -isk -isk -awp -qUd -dYg -lrQ -oDT -xRL -xRL -sAV -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aBv -ici -sLA -ccz -aBA -jiQ -mCu -aBv -hDT -gWk -fgo -hmf -czC -aBv -wpK -lqi -lqi -lqi -qUU -suR -suR -suR -suR -lqi -jOo -aBA -aDX -kge -cKD -uWa -cKD -xqE -nLT -ukB -xqE -cKD -rmi -cKD -ucc -aDX -pwk -uUO -aDY -aao -aao -aao -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(120,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nuk -nuk -sjy -nuk -nuk -sra -iZy -iZy -rVa -riu -riu -riu -okr -acP -acP -acP -aMD -hGx -pIR -pIR -mBj -vsw -vsw -vsw -vsw -aku -aop -apc -atE -atE -atE -atE -atE -apc -apc -apc -lMN -mzR -hbu -psn -bGe -anJ -nss -hlA -wDx -xrL -tuQ -nMe -jRh -pmG -pmG -kHn -eMs -pmG -pmG -eIL -pmG -rCE -lPt -weX -weX -vsK -mWX -wIh -hez -wEZ -qvH -cRH -ehU -oQC -asv -tHa -pNv -iAL -iAL -rwp -iAL -asv -asv -asv -asv -asv -cyT -asv -asv -asv -asv -asv -avS -asv -asv -asv -ssp -lNv -awp -bvb -jPq -jPq -qfo -rut -hnJ -ayF -ybA -xiG -oZQ -rzO -bkU -oZQ -jyL -isk -isk -qKz -xiG -lrQ -lrQ -oDT -xRL -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aBv -pYs -lux -pYs -aBA -jiQ -tEx -aBw -suR -suR -lqi -lqi -lqi -aBv -otY -hze -lqi -hze -hze -cpo -hze -hze -lqi -hze -iVO -lOq -aDX -noJ -noJ -duO -noJ -aDX -lGQ -kjm -aDX -noJ -noJ -duO -noJ -aDX -pwk -uUO -aDY -aao -aao -aao -wYF -wYF -wYF -guH -aao -aab -aaa -aaa -aaa -"} -(121,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nuk -nuk -nuk -uYg -riu -oIH -sra -oJl -riu -riu -riu -uCh -acP -acP -acP -aMD -hGx -tLC -mBj -vsw -vsw -mBj -vsw -vsw -aku -aoq -apd -jfS -jtE -nzz -apc -apc -apc -apc -aqQ -imZ -fdT -lOo -gkX -ars -anJ -dit -sTj -cGX -gCL -anJ -dvJ -phu -weX -ruc -brq -phu -phu -weX -eRD -ruc -phu -kxH -jRh -kWK -cGE -anJ -urc -gbS -oeM -siS -mnG -ehU -oQC -asv -asv -asv -xRf -leX -hvA -lJY -aul -bdy -bdy -asv -nWV -pSX -vbd -vbd -vbd -vbd -vbd -oAy -vbd -vbd -vbd -bjM -lNv -awp -ckL -sHK -mtT -ogT -dLp -lUz -awp -isk -xiG -mDk -bkU -bkU -irN -jyL -qKe -eCD -qKz -xiG -lrQ -ttz -oDT -nPa -xRL -rTu -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aBv -nsP -pYs -nsP -aBA -jiQ -kEL -aBw -fbr -aJu -wya -rYb -wya -aBv -aBw -aBw -uMu -aBw -aBw -aBv -aBw -aBw -uMu -aBw -aBw -aBv -aDY -aDY -def -vLx -dHZ -aDX -lGQ -kjm -aDX -kji -sjc -vLx -uvN -aDX -pwk -qye -aDY -aao -aao -aao -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(122,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -frs -riu -riu -riu -riu -qvm -rVa -riu -riu -riu -okr -nyT -acP -aMD -hGx -kZw -vsw -vsw -mBj -mBj -vsw -vsw -ako -ako -ako -rhx -ako -ako -ako -ako -ako -ako -ako -avI -aop -atE -wjX -ahf -anJ -cVG -xWW -ctw -tSx -anJ -lAL -phu -brq -dGH -phu -phu -wcF -gzl -gzl -gzl -gzl -qIg -weX -xiJ -phu -anJ -ttF -eVE -han -qvH -cRH -lRR -oQC -uTj -uTj -asv -rIF -leX -wMR -gei -aul -aXU -aXr -asv -hxZ -bfk -eIj -eIj -eIj -lbD -irX -irX -lFg -irX -gmM -irX -irX -awp -awp -blF -awp -ayF -ayF -ayF -awp -isk -xiG -bkU -bkU -boA -bkU -xjN -isk -qKe -qKz -xiG -lrQ -lrQ -oDT -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aBv -aBv -aBv -aBv -aBv -jiQ -tEx -aBv -aBv -aBv -aBv -aBv -aBv -aBv -iSJ -iSJ -iSJ -iSJ -iSJ -aBv -bvP -bvP -bvP -bvP -bvP -aBv -aao -aDY -aDX -aDX -aDX -aDX -lGQ -kjm -aDX -aDX -aDX -aDX -aDX -aDX -gXQ -uUO -aDY -aao -aao -aao -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(123,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -frs -riu -vdT -riu -riu -qvm -nuk -rVa -riu -riu -uCh -acP -acP -aMD -hGx -vsw -vsw -vsw -mBj -vsw -vsw -mBj -ako -mnf -gmZ -rIf -cUc -fQj -ako -atD -uDS -uDS -ako -atE -awu -apc -ako -ako -anJ -anJ -aAI -anJ -anJ -anJ -nsY -anJ -anJ -anJ -anJ -anJ -anJ -qmw -htt -ucn -cHb -dbF -gzl -mbK -uBG -aqz -ttF -kXg -han -wxh -oNs -jTI -uTj -uTj -uTj -asv -udp -leX -jtb -sTb -bcX -bdz -bcX -ykX -sgf -sja -asv -asv -rac -asv -asv -asv -asv -atJ -atJ -asv -asv -awp -bkT -bkU -bkT -bkU -bkT -bkU -awp -isk -xiG -oZQ -bkU -boA -oZQ -nvV -isk -isk -qKz -xiG -lrQ -lrQ -ppp -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aBv -hWm -sje -hty -msT -hve -wtA -gMg -sym -aBv -iSJ -xpI -iSJ -iSJ -xpI -aBv -bvP -bvP -bCE -bvP -bvP -aBv -aao -aDY -bDx -bDE -fdy -wNw -xvO -utq -aly -hwO -hwO -hwO -hwO -kAc -eLK -uUO -aDY -aao -aao -aao -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(124,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nuk -rVa -riu -jRZ -riu -qvm -nuk -oJl -riu -riu -riu -okr -acP -aMD -vsw -vsw -vsw -vsw -vsw -vsw -vsw -oYe -ako -ptM -rCq -vkR -xsw -iUq -ako -puq -atE -apc -ako -iTw -aop -atE -dPx -vCp -dzW -ako -jnT -etg -tIV -anJ -owF -hRq -ivj -tDa -nMF -rja -anJ -phu -phu -nja -phu -kYJ -gzl -mbK -weX -anJ -ttF -hBe -mVf -vzo -oQC -asv -asv -asv -asv -asv -wNd -iAL -oCm -pNv -aXr -aXr -aXU -qzL -hxZ -xVG -asv -wqo -eWI -sXK -eWI -lzJ -asv -ulK -iEX -iEX -ulK -awp -bkU -bkU -bkU -bkU -bkU -bkU -awp -isk -isk -wWp -oUn -oUn -pDt -isk -isk -isk -awp -xiG -ttz -lrQ -aao -aao -xRL -xRL -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aBv -wXz -saW -suR -wXz -lqi -lqi -bAK -nhz -aBv -iSJ -iSJ -iSJ -iSJ -iSJ -aBv -bvP -bCE -bCJ -bvP -bvP -aBv -aao -aDY -bDy -bDF -bDM -aDX -kCk -uUO -xvO -uUO -hYm -uUO -uUO -pmM -lxm -kCk -aDY -aao -aao -aao -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(125,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nuk -frs -riu -riu -kgb -nuk -eMt -uYg -riu -aao -riu -uCh -acP -aMD -vsw -mBj -mBj -vsw -vsw -vsw -mBj -qHK -xWL -tQf -rCq -vYW -rCq -ior -ako -asN -atE -fVc -ako -atE -aop -apc -ako -hbG -kpZ -ako -iBG -sda -his -anJ -xws -one -vWi -phu -kuT -phu -pAQ -phu -kPQ -phu -phu -fKt -sMq -lAL -ruh -anJ -ttF -kXg -dWQ -mSJ -rHF -asv -aXS -aYs -aZc -asv -asv -asv -asv -asv -asv -asv -pwY -asv -ote -sOt -pwY -eWI -eWI -nNw -wqo -eWI -asH -sJs -pDi -pDi -egd -awp -bkT -blG -bkT -bkU -bkT -bkU -awp -isk -isk -isk -awp -qKz -qKz -qKz -qKz -awp -awp -xiG -lrQ -lrQ -aao -sea -xRL -xRL -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aBv -ryP -gJx -ocp -wXz -bAa -aOJ -bAu -vGb -aBv -iSJ -iSJ -iSJ -iSJ -xpI -aBv -bvP -bvP -bvP -bvP -bvP -aBv -aao -aDY -aDY -aDY -aDY -aDX -aDX -aDX -csQ -aDX -aDX -aDX -aDX -xQn -aDX -aDX -aDY -aao -aao -aao -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(126,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nuk -iMz -iMz -nuk -nuk -frs -jRZ -riu -aao -aao -riu -okr -aMD -hGx -vsw -mBj -vsw -vsw -mBj -kZw -kZw -ako -xsw -nHK -kJX -sgE -oHT -ako -asO -atE -apc -ako -atE -meQ -axi -ako -ako -ako -ako -iBG -sty -vBb -anJ -nbP -nXx -nso -jic -ncr -cAv -anJ -uDD -bTN -anJ -ftf -bYB -gzl -lAL -weX -aqz -tyo -mIt -cME -cME -cnE -vWK -sUh -bcX -bcX -vbd -vbd -vbd -oAy -oAy -oAy -vbd -iCp -vbd -beL -oou -pwY -hBk -qnT -hBk -wqo -wqo -asv -sJs -bes -bes -egd -awp -awp -awp -awp -awp -awp -awp -awp -isk -tMk -qKe -uBZ -uBZ -uBZ -uBZ -uBZ -hZb -uBZ -eHZ -lrQ -lrQ -xdd -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aBv -ryP -bzm -tVC -hLw -rUG -bAu -bAL -vGb -aBv -iSJ -xpI -lvX -iSJ -iSJ -aBv -bvP -bvP -bCK -bvP -bCE -aBv -aao -aao -aao -aao -aDY -jZD -jZD -sNr -jZD -qCu -aDX -fdy -fdy -ptL -fdy -bES -aDY -aao -aao -aao -wYF -wYF -wYF -aao -aao -aab -aaa -aaa -aaa -"} -(127,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -tgl -iZy -iZy -nuk -nuk -nuk -nuk -uYg -riu -riu -riu -aao -riu -uCh -aMD -hGx -vsw -vsw -vsw -uQw -aao -aao -aao -ako -eyr -iId -vxX -snF -tQf -ako -asP -wwG -apc -csg -apc -meQ -tXj -dPx -qZV -rZI -ako -iBG -njk -vBb -anJ -anJ -anJ -anJ -anJ -gFb -anJ -anJ -anJ -anJ -anJ -anJ -anJ -anJ -fEX -pFe -anJ -lUw -vOr -wEZ -oeM -nfX -qzL -aXr -aXr -aXU -eEu -eIj -eIj -irX -lFg -irX -eIj -eIj -irX -aXU -qqx -pwY -doX -jnC -ewA -eWI -eWI -asH -sJs -ykh -bes -mhI -iEX -iEX -iEX -iEX -iEX -iEX -iEX -dFO -ijg -sPZ -pBA -xJC -mzV -mzV -mzV -mzV -mzV -mzV -lCz -lrQ -lrQ -xdd -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aBv -byY -eTo -dlo -wXz -ccA -wXz -pde -bAY -aBv -aBv -aBv -aBv -aBv -aBv -aBv -aBv -bCF -aBv -bCF -bCF -aBv -aao -aao -aao -aao -aDY -bLx -bLx -bLx -bLx -eUc -aDX -bEz -bEF -bEI -bEN -fdy -aDY -aao -aao -aao -wYF -rFh -wYF -aao -aao -aab -aaa -aaa -aaa -"} -(128,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -sra -sra -oAb -nuk -nuk -nuk -nuk -frs -riu -riu -riu -riu -riu -riu -uCh -aMD -hGx -kZw -pIR -aao -aao -aao -aao -aao -ako -tLj -jBJ -rPl -tQf -xKt -ako -doe -atE -atE -tbd -apc -ehA -atE -ako -iyz -uOM -ako -xRj -vBb -uCs -iGr -uci -kaD -njk -xPz -tnZ -vBb -vBb -pLy -vBb -toI -cMU -vBb -anT -wIb -vaX -anT -mTv -gFt -cFJ -qTa -pnb -asH -aXU -aYt -aXr -asv -asv -asv -asv -asv -qQq -qQq -iaJ -qQq -hxZ -xVG -pwY -dax -gBT -acE -eWI -sKl -asv -fxm -gqm -bes -bes -vDM -bes -bes -bes -bes -fSs -bes -bes -jRG -mto -tMM -mzV -pQr -mzV -mzV -mzV -pQr -mzV -lCz -lrQ -dYg -xdd -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aBv -aBv -aBv -aBv -hmQ -dMD -aBv -aBv -aBv -aBv -aao -aao -aao -aao -aao -aao -aao -hYR -gHo -gHo -riO -aao -aao -aao -aao -aao -aDY -aDY -aDY -aDY -aDY -aDY -aDY -aDY -aEj -aEj -aDY -aDY -aDY -aao -aao -aao -wYF -wYF -wYF -aao -aao -aab -aaa -aaa -aaa -"} -(129,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -sgc -riu -oIH -sra -nuk -nuk -oAb -frs -riu -vdT -riu -riu -riu -riu -riu -aMD -hGx -aao -aao -aao -aao -aao -aao -aao -ako -eyr -oOS -wZq -pWq -rCq -ako -cbN -atF -atE -ako -tXj -rgk -dLF -ako -ako -ako -ako -iNY -vBb -vBb -vBb -vBb -vBb -njk -ltI -sGm -hEy -vBb -njk -njk -njk -njk -vBb -xTL -aQa -hjJ -xTL -mTv -gFt -xSw -cFz -qTP -asv -aXV -aYu -aZd -asv -dAf -bwA -lXU -igu -bcY -fSF -oUF -sAz -hxZ -xVG -pwY -pwY -asv -asv -asv -asv -asv -meN -pbq -ykh -bes -bes -wxl -bes -bes -bes -bes -bes -bes -hqp -hSf -dzS -mzV -mzV -mzV -mzV -gLk -mzV -mzV -lCz -lrQ -pee -pbL -xRL -xRL -sea -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -wYF -xYm -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -biZ -gHo -gHo -gHo -gHo -gHo -qvK -aao -aao -aao -aao -wYF -wYF -wYF -aao -aao -aab -aaa -aaa -aaa -"} -(130,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -riu -riu -riu -riu -oIH -nuk -nuk -frs -riu -riu -aao -aao -aao -aao -riu -aao -aao -aao -aao -aao -aao -aao -aao -aao -ako -ako -ako -amh -ako -ako -ako -asS -atG -aub -ako -cvz -vYB -apc -dPx -vCp -vkr -ako -iBG -vBb -sta -mxQ -njk -hpX -rEX -opA -cYi -jfb -jzM -njk -gay -njk -xob -wEv -anT -aQb -hpr -anT -mTv -hBy -ikx -pft -qTP -asv -asv -asv -asv -asv -wtB -baO -xfO -bNh -uvU -gTB -vtm -asv -rgZ -ncR -meI -jBK -lNv -jVX -lJK -lNv -cEv -uAj -lIh -imi -bhr -bes -bes -bes -bes -moH -bes -bes -bes -jRG -fyb -lpH -mzV -eWo -mzV -dmB -mzV -mzV -mzV -lCz -dYg -hHO -pbL -xRL -xRL -lTI -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -guH -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -gHo -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -dtc -xYm -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -wYF -guH -wYF -wYF -riO -aao -aao -aao -aao -wYF -wYF -wYF -aao -aao -aab -aaa -aaa -aaa -"} -(131,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -riu -riu -riu -riu -riu -qvm -dgi -xoV -bNf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -pmS -smh -pmS -aou -aph -apR -xOh -jRf -ako -bqA -atG -auc -ako -bMH -aop -apc -ako -hbG -kpZ -ako -iBG -uNk -anT -anX -anX -anX -anX -anX -anT -anT -anT -anT -anT -anT -anT -anT -anT -odQ -lgk -anT -mTv -hBy -ikx -tpj -lpg -yhP -rQK -rQK -rQK -asv -asv -asv -asv -xJU -dRp -bdA -hYD -bHL -hxZ -bfr -nKU -sQh -nKU -nKU -fvn -irX -qzL -jRG -gnk -imi -bes -bes -bes -bes -bes -bes -bes -bes -bes -jRG -fyb -gnk -mzV -mzV -mzV -sSL -mzV -mzV -mzV -lCz -pee -hHO -pbL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -fJk -wYF -wYF -qvK -aao -aao -aao -aao -aao -aao -aao -aao -aao -hYR -wYF -wYF -xYm -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -wYF -wYF -wYF -xYm -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(132,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -vdT -riu -iqm -jRZ -riu -gww -dgi -dgi -tha -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -pmS -hqO -mLk -aou -geh -apS -gfI -gfI -vBM -oEY -atH -aud -amZ -nPi -atH -wqK -ako -ako -ako -ako -gif -vBb -anU -lUB -rQf -wAP -uIE -mFq -anT -peD -ycc -rTS -hOA -aMl -mOd -aCZ -kOX -aQd -ezP -anT -mTv -hBy -ikx -qTa -aKP -yjC -qTP -rQK -rQK -asH -baj -baP -bbC -igu -bda -fTi -hYD -qQq -hxZ -kcL -pwY -pwY -asv -asv -asv -asv -asv -hGy -ffb -mlZ -mlZ -urZ -mlZ -mlZ -mlZ -mlZ -mlZ -mlZ -kgs -vHX -vHX -gnk -bes -mzV -eWo -mzV -mzV -mzV -eRq -dYg -hHO -aao -aao -xRL -xRL -xRL -dlg -xRL -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -xYm -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -wYF -wYF -xYm -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -wYF -wYF -wYF -wYF -riO -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(133,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -bNf -bNf -bNf -bNf -sYg -dgi -dgi -dgi -oUd -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -pmS -pmS -amE -hqO -ako -ako -eff -ako -ako -ako -ako -ako -ako -ako -ako -avI -bXQ -kbe -rqR -lnz -liT -lnz -tum -lnz -kMM -aCY -aCZ -aET -aMQ -aCZ -anT -peD -rTS -lBM -vlc -ezP -aCZ -xdO -aOW -nKe -aQm -aqU -eMG -yhu -ikx -vNc -drp -gFt -qTP -rQK -rQK -asv -aXr -baO -aXr -tvw -qxk -xfO -ntw -wcC -xpF -xVG -pwY -oRV -jFO -iHw -tzx -wfV -asv -hqp -vHX -fyb -fyb -fyb -fyb -urx -fyb -pAB -jFG -urx -fyb -vHX -fyb -gnk -bes -mzV -mzV -mzV -mzV -mzV -lCz -ttz -hHO -aao -aao -xRL -xRL -xRL -msw -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -eVS -wYF -wYF -wYF -wYF -wYF -gHo -qvK -aao -aao -aao -aao -aao -aao -aao -fJk -wYF -wYF -xYm -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -hFm -wYF -wYF -wYF -xYm -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(134,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -sBY -sGx -dgi -dgi -veY -mxn -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -orO -pmS -uGH -pmS -hqO -ako -vOm -bJN -hRx -hiz -ieJ -ako -qtw -uoq -qtw -ako -nzz -wOy -ozy -tbd -vBb -gVJ -xln -njk -njk -wCZ -aCo -aCZ -aEU -aMQ -gAE -anT -peD -eOg -hFa -aQs -aCZ -ezP -aML -qsI -aQf -hcF -aqU -vLC -kyt -tQu -rjL -kyt -eiF -qTP -rQK -rQK -asv -asv -asv -asv -pwY -lBz -bdB -bdW -fEb -hxZ -xVG -pwY -oRV -bZt -oeO -oeO -rSG -asv -hqp -fyb -htZ -htZ -htZ -jTN -jTN -vHX -fyb -fyb -fyb -htZ -htZ -htZ -vki -lvy -lvy -lvy -bes -mzV -eRq -lrQ -aao -aao -aao -aao -aao -rnf -rnf -rtP -rnf -rnf -rnf -rnf -rnf -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -guH -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -xYm -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -qvK -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -wYF -wYF -riO -aao -aao -aao -aao -wYF -wYF -guH -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(135,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nnX -lJS -wIy -juT -hID -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -pmS -oSV -pmS -pmS -hqO -ako -vOm -pmC -huc -xnk -lMZ -ako -ltf -ltf -xnk -ako -atE -atE -oai -ako -eye -arD -arD -rOy -eCg -anU -aCZ -aCZ -aQa -aCZ -aCZ -anT -fMs -rTS -hFa -vlc -ezP -aCZ -vPy -aOY -cKK -aCo -aqU -gyx -tQu -sCp -sCp -sCp -oVn -qTP -rQK -rQK -asv -bvT -aqB -cio -tvw -ffl -nrq -ngD -asv -hxZ -xVG -pwY -ndm -bZt -xbg -oeO -rSG -odr -hqp -gnk -ykh -bes -bes -bes -bes -jRG -fyb -vHX -swe -bes -uPS -bes -bes -fSs -bes -bes -mzV -eRq -gaV -aao -aao -aao -aao -aao -aao -kBn -ewa -ewa -ewa -ewa -ewa -ssX -ewa -kBn -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -hFm -wYF -dtc -wYF -wYF -xYm -wYF -wYF -wYF -wYF -guH -wYF -wYF -wYF -wYF -wYF -wYF -xYm -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -wYF -xYm -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(136,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -xUU -iHo -bNf -bNf -wQj -aao -aao -aao -aao -aao -aao -bNf -dMn -aao -aao -aao -pmS -izH -qzy -pmS -hqO -ako -xux -pmC -ltf -ltf -lMZ -aml -voB -xQx -hrK -yma -aZD -nPX -apc -aku -tkv -cMz -arD -rOy -njk -anU -jCQ -aCo -aEU -aCZ -uIE -anT -rUR -ylg -pkL -fjI -aCZ -ezP -aOa -euL -aMQ -ehw -aqU -gyx -qTa -wIc -wIc -wIc -gFt -qTP -rQK -rQK -asH -baj -nlg -vvx -asv -asv -jSC -asv -asv -hxZ -eqv -kxD -cAg -qvP -mje -goC -oeO -qzL -hqp -wGf -gqm -bes -bes -wxl -bes -bJH -fyb -fyb -gnk -vVZ -aao -vVZ -vVZ -eDS -aao -vVZ -aao -cns -aao -aao -aao -aao -aao -aao -aao -aao -iSU -iSU -iSU -iSU -iSU -iSU -iSU -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -guH -wYF -wYF -wYF -wYF -fJk -wYF -wYF -wYF -wYF -gHo -gHo -gHo -gHo -wYF -wYF -rnc -rnc -rnc -rnc -wYF -wYF -gHo -qvK -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -rFh -xYm -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(137,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -srT -nxD -ugJ -dRO -dRO -meX -dRO -aao -aao -aao -aao -bNf -qSE -bNf -bNf -aao -aao -aao -aao -bNf -dMn -tTv -aao -ako -vOm -nri -iKr -uzK -pRv -eIS -lpM -wMs -pMX -vxg -kao -apc -avJ -aku -tkv -arD -arD -rOy -vBb -anU -jCQ -aCo -aEW -aCZ -uIE -anT -fPj -ylg -pkL -rSA -ezP -aML -rWS -aPa -hcF -aRq -anT -gyx -pft -nQV -aVY -aKP -yjC -qTP -rQK -rQK -asv -asv -asv -asv -asv -wNW -izQ -pex -asv -hxZ -irX -qzL -rSG -oeO -oeO -oeO -kQo -asv -jmp -dbZ -gqm -fSs -bes -bes -ejP -kzm -qOz -qOz -lEc -vVZ -rjw -fCb -aao -fCb -fCb -fCb -aao -pcF -kBn -kBn -kBn -kBn -kBn -kBn -kBn -aao -aao -kBn -ewa -ewa -ewa -ewa -ewa -vVZ -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -fJk -wYF -wYF -wYF -wYF -wYF -rnc -rnc -rnc -rnc -riO -aao -aao -aao -aao -fJk -wYF -wYF -xYm -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -wYF -riO -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(138,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -esx -dgi -xoV -bNf -dMn -bNf -bNf -aao -aao -aao -iFW -bNf -bNf -bNf -bNf -sYg -aao -aao -aao -qSE -dMn -bNf -aao -ako -tVS -hri -sHp -kEV -rBH -amm -kEV -uny -oZT -aml -atE -aww -apc -aku -tsG -arD -arD -rOy -vBb -anU -jCQ -rNd -aEU -aCZ -uIE -anT -gaz -ylg -pkL -hUr -aCZ -xdO -jUc -qsI -aQi -oPO -kTe -gyx -aAc -hBy -aKP -aKP -yjC -qTP -rQK -rQK -rQK -rQK -rQK -rQK -asv -tZE -gEp -tLy -asv -hxZ -irX -asv -eMo -otP -jNf -ljx -whu -asv -dFF -imi -gqm -bes -bhr -aao -aao -idd -jjV -fzl -eBU -brD -fCb -fCb -rjw -fCb -fCb -rjw -fCb -pcF -kBn -iZA -dIb -pQv -fwV -fwV -kBn -aao -aao -aao -iaR -iaR -iaR -iaR -iaR -iaR -iaR -iaR -aao -aao -aao -aao -xYm -wYF -wYF -guH -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -hYR -wYF -wYF -wYF -rnc -rnc -riO -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -hAj -wYF -wYF -qvK -aao -aao -aao -aao -aao -aao -aao -hYR -gHo -wYF -xYm -aao -aao -aao -aao -aao -aao -guH -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(139,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -bNf -gww -dgi -iFW -bNf -bNf -sBY -bNf -aao -aao -xoV -bNf -bNf -bNf -sYg -dgi -dgi -dgi -dgi -gQf -giM -dMn -aao -ako -oLY -ltY -xBd -rSQ -fkV -ako -dbd -xnk -gtw -ako -xqf -apc -apc -aku -tkv -arD -rKE -rOy -wUE -anU -uIE -aCZ -aQa -aCZ -mFq -anT -fPj -ylg -pkL -kiL -ezP -aCo -ntO -aPb -mPD -aRr -wCZ -gyx -qTa -hBy -aKP -aKP -yjC -qTP -rQK -rQK -rQK -rQK -rQK -rQK -asv -asv -asv -asv -asv -aXr -bfv -asv -asv -asv -asv -asv -asv -asv -nTt -imi -izf -bes -bes -aao -aao -idd -krr -trn -eBU -aao -aao -rjw -fCb -aao -aao -aao -aao -pcF -nuy -dIb -dIb -dIb -dIb -fwV -kBn -aao -aao -aao -dlg -dlg -xRL -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -wYF -xYm -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -fJk -wYF -wYF -xYm -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -gHo -gHo -gHo -gHo -gHo -gHo -gHo -wYF -wYF -wYF -riO -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -guH -wYF -aao -aab -aaa -aaa -aaa -"} -(140,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -dMn -hfp -dgi -xoV -bNf -bNf -uEH -bNf -aao -aao -otQ -gQf -gQf -kFN -dgi -dgi -dgi -dgi -dgi -dgi -xoV -qSE -aao -ako -mtf -nri -mTh -hiz -tqG -ako -qtw -wKb -qtw -ako -avJ -atE -axi -ako -tkv -arD -arD -rOy -anT -anT -anY -anY -odQ -jIs -anY -anT -fPj -lus -dKM -ceQ -aCZ -ehw -aOe -pRb -aQk -ezP -anT -gyx -qTa -ycr -aKP -aKP -yjC -lpg -yhP -yhP -yhP -yhP -yhP -yhP -yhP -yhP -yhP -yhP -iEX -iEX -iEX -iEX -iEX -iEX -iEX -iEX -iEX -orl -dFO -gqm -bes -bes -bes -aao -kBn -qCU -tJT -tJT -ukN -vVZ -brE -fCb -fCb -rjw -fCb -aao -aao -pcF -kBn -dIb -dIb -dIb -dIb -dIb -kBn -aao -aao -xRL -xRL -dlg -xRL -xRL -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -hYR -wYF -wYF -wYF -xYm -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -guH -wYF -wYF -rnc -riO -wYF -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -aao -aab -aaa -aaa -aaa -"} -(141,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -qSE -bNf -gww -dgi -iFW -bNf -bNf -sYg -aao -aao -otQ -dgi -dgi -dgi -dgi -dgi -dgi -dgi -dgi -esx -ulV -qSE -aao -akL -akU -nhk -akU -akU -akL -akL -akL -akL -akL -akL -cQO -atE -avJ -ako -tkv -dZc -arD -jvR -anU -aCi -aCZ -aCZ -aQa -aCo -aGL -anT -anT -rRx -anT -anT -ezP -aMO -iRu -aPa -uwO -aCo -aqU -gyx -pft -aKP -aKP -aKP -kGl -wIc -gFt -gFt -wIc -wIc -gFt -gFt -gFt -gFt -wIc -wIc -imi -imi -imi -imi -imi -imi -imi -imi -imi -rKu -pDi -izf -moH -wcx -bes -bes -aao -idd -xAg -onQ -eBU -vVZ -vVZ -vVZ -vVZ -fCb -vVZ -vVZ -vVZ -pcF -kBn -dIb -dIb -dIb -dIb -iZA -kBn -aao -xRL -xRL -xRL -lTI -xRL -sea -xRL -xRL -xRL -xRL -ree -aao -aao -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -fJk -wYF -wYF -iQo -xYm -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -gHo -wYF -rnc -rnc -rnc -rnc -rnc -rnc -rnc -rnc -rnc -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -aao -aao -aab -aaa -aaa -aaa -"} -(142,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -gww -dgi -dgi -gQf -gQf -mxn -aao -aao -hfp -dgi -dgi -dgi -dgi -esx -esx -dgi -xoV -bNf -bNf -aao -aao -akL -sGF -nri -oXY -ltf -nem -ltf -gtY -xnk -xUa -uwV -ant -ant -ant -ako -tsG -arD -arD -rOy -anU -aCj -aCo -aCo -aEU -aCZ -aCZ -anT -wmZ -hFa -vgi -anT -aCZ -tKy -aOg -eTP -aQm -oPO -aqU -cws -pft -aKP -aKP -rAQ -aKP -aKP -kGl -gFt -aKP -aKP -kGl -wIc -wIc -ycr -aKP -aKP -vDM -imi -imi -imi -imi -imi -imi -imi -izf -iVi -bes -bes -bes -dOB -tqw -tqw -aao -idd -fzl -fzl -eBU -vVZ -fCb -fCb -fCb -fCb -fCb -fCb -aao -pcF -kBn -dIb -dIb -dIb -dIb -kBn -kBn -dlg -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -sea -xRL -mbs -wYF -wYF -wYF -guH -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -fJk -wYF -rnc -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aab -aaa -aaa -aaa -"} -(143,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -otQ -dgi -dgi -dgi -dgi -ulV -aao -bNf -gww -dgi -dgi -ulV -bNf -bNf -hfp -ulV -bNf -aao -aao -aao -akL -cwP -pmC -iTk -bKx -oFB -ltf -glI -bKx -xnk -akL -njk -gVJ -pze -mfW -gfL -sck -nbz -gTa -anU -aOc -aCo -aCo -aEZ -aGb -aEd -kLs -unN -eBR -hOy -anT -ckG -aMQ -ntO -aPb -ezP -aCZ -aqU -gyx -pft -aVt -aKP -aKP -aKP -aKP -aKP -aKP -npa -aKP -aKP -aKP -aKP -aKP -aKP -aKP -bes -vDM -pDi -pDi -pDi -pDi -pDi -izf -bes -iVi -bes -bes -bes -yaq -imi -imi -aao -rAF -jjV -fzl -eBU -fMC -kTs -fCb -bsH -fCb -fCb -aao -aao -pcF -kBn -fwV -dIb -dIb -dIb -ssE -dlg -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -mbs -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -qvK -wYF -aao -hYR -gHo -gHo -gHo -gHo -gHo -wYF -wYF -wYF -wYF -wYF -wYF -guH -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aab -aaa -aaa -aaa -"} -(144,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -pGw -dgi -dgi -dgi -xoV -bNf -uEH -bNf -gww -dgi -xoV -bNf -bNf -qSE -bNf -uEH -bNf -aao -aao -aao -akL -lYR -lWB -qiK -ccS -whA -vjw -krw -dJZ -wPb -akL -tsG -tFi -tFi -tFi -tFi -tFi -jhz -rOy -anT -aCl -aDa -aDa -aFa -aEU -aCZ -wCZ -ylg -utG -tGw -anT -aCZ -ezP -aCZ -ikZ -aQn -ezP -anT -gyx -pft -nQV -aKP -aKP -aKP -aKP -aKP -aKP -aKP -aKP -aKP -nko -aKP -aKP -aKP -aKP -bes -bes -bes -bes -bes -bes -bes -bhr -bes -iVi -bes -bes -dOB -imi -imi -aao -aao -idd -jjV -jjV -eBU -fMC -fCb -fCb -fCb -aao -aao -aao -aao -pcF -kBn -mRD -dIb -dIb -dIb -ssE -dlg -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -mbs -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -guH -xYm -wYF -hYR -wYF -wYF -wYF -wYF -wYF -wYF -wYF -xYm -guH -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -wYF -wYF -wYF -rFh -wYF -wYF -aao -aao -aao -aab -aaa -aaa -aaa -"} -(145,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -pGw -abO -dgi -ulV -qSE -bNf -sYg -dgi -dgi -xoV -bNf -bNf -bNf -bNf -aao -aao -aao -aao -aao -akL -jei -xnk -wTE -ltf -pkU -cwP -seD -rSQ -seD -akL -tkv -tFi -rNx -sAL -qEy -rMU -jhz -rOy -anT -aCm -aCZ -aCZ -aCZ -aQa -aCZ -anT -rTS -hFa -eii -anT -oTW -aEd -qVV -aPh -kOX -aCZ -aqU -kMw -iAR -hBy -aKP -aKP -aKP -aKP -aKP -aKP -aKP -aKP -aKP -aKP -aKP -aKP -rAQ -aKP -bes -bes -bes -bes -bes -bes -bes -bes -bes -iVi -bes -fSs -yaq -jUo -aao -aao -aao -idd -fzl -eZm -eBU -vVZ -fCb -kTs -kTs -aao -aao -aao -aao -pcF -kBn -fwV -dIb -dIb -kBn -kBn -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -sea -xRL -gio -xRL -mbs -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -rnc -rnc -rnc -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -rnc -riO -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -guH -wYF -wYF -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aab -aaa -aaa -aaa -"} -(146,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -otQ -xoV -bNf -qLu -bNf -gww -dgi -dgi -ulV -bNf -aao -aao -aao -aao -aao -aao -aao -aao -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -tsG -tFi -rNx -kTE -aao -ucF -rMU -rOy -anU -aCn -aCZ -aCo -aCo -aQa -aCZ -anT -anT -rRx -anT -anT -aEU -oPO -aML -rWS -aQo -uwO -aqU -xmX -qTa -hBy -aKP -imN -aKP -aKP -aKP -aKP -aVY -aKP -aKP -aKP -aKP -aKP -aKP -aKP -bes -bes -bes -uUT -bes -bes -bes -bes -bes -iVi -bes -bes -yaq -imi -aao -aao -aao -qpC -gLM -gLM -iNv -vVZ -kTs -fCb -fCb -fCb -fCb -fCb -brE -pcF -kBn -kBn -kBn -nuy -kBn -xRL -xRL -xRL -xRL -sea -xRL -xRL -xRL -xRL -xRL -xRL -ree -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -hYR -xYm -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -rnc -wYF -wYF -wYF -wYF -wYF -wYF -xYm -wYF -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aab -aaa -aaa -aaa -"} -(147,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -pPl -qgf -qgf -qgf -pPl -pPl -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -xHE -bWy -bWy -bWy -bWy -mfW -mfW -mfW -bWy -gfL -tFi -tFi -kTE -aao -aao -vKa -jKB -anU -aCo -aCZ -aEg -aCo -aQa -aCZ -anT -dlK -aJA -vHx -aEd -sDf -aCZ -xdO -aPi -iCx -aQm -aqU -xmX -qTa -hBy -aKP -aKP -klx -aKP -aKP -aKP -aKP -aKP -aKP -aKP -aKP -aKP -aKP -aKP -bes -bes -bes -bes -bes -bes -bes -bes -bes -iVi -bes -bes -yaq -aao -aao -aao -aao -dzi -muy -muy -pye -pbr -pbr -pbr -pbr -pbr -pbr -pbr -pbr -pcF -aao -aao -aao -rpw -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -xYm -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -fJk -wYF -wYF -wYF -dtc -wYF -riO -wYF -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(148,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -tqS -lwE -lwE -rvO -lwE -lwE -tqS -aao -aao -aao -aao -aao -aao -aao -aao -aao -nPD -aao -aao -aao -aao -aao -aao -tFi -krU -tFi -tFi -tFi -rNx -tFi -tFi -tFi -lTw -hEU -aao -vKa -gTa -anU -aCp -aDb -aEh -aFb -aQa -aCZ -anT -aIF -tzb -aCZ -oPO -aMp -oPO -aCo -qTJ -aQq -wXY -anT -jwI -pft -hBy -aKP -aKP -aKP -aKP -aKP -aKP -aKP -aKP -aKP -aKP -aKP -aKP -aKP -aKP -bes -bes -bes -mQS -bes -bes -bes -bes -iLU -iVi -bes -bes -aao -aao -aao -aao -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -xRL -xRL -sea -xRL -dlg -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -xYm -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -fJk -wYF -wYF -wYF -wYF -xYm -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -guH -wYF -wYF -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(149,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -tqS -clr -pom -pom -pom -iRy -tqS -aao -aao -aao -aao -aao -aao -aao -aao -aao -sBv -vkt -fNs -aao -aao -aao -aao -aao -aao -aao -rGg -rGg -aao -aao -rNx -tFi -mVI -eGr -eSZ -jBF -rOy -anW -anW -anW -anW -anW -hXJ -anW -anW -anW -anW -anW -anW -anW -anW -anW -anW -anW -anW -anW -gyx -pft -hBy -aKP -aKP -ibN -aKP -pnb -cvJ -guF -cvJ -cvJ -cvJ -guF -cvJ -cvJ -guF -dFF -bes -bes -bes -bes -bes -bes -bes -bes -awd -awd -awd -aao -aao -aao -aao -xRL -xRL -iyP -iyP -iyP -vBk -xRL -msw -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -dlg -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -xYm -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -hFm -rnc -rnc -rnc -rnc -riO -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(150,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -tqS -lwE -lwE -lwE -lwE -lwE -tqS -aao -aao -aao -aao -aao -aao -aao -kPD -vkt -fGp -fGp -fGp -fNs -aao -aao -aao -aao -aao -oEx -ucF -ucF -xnb -aao -aao -tFi -tFi -tFi -tFi -rNx -foQ -vBb -anW -nEO -vom -hWk -mHo -mQW -anW -cZW -nEO -nEO -anW -nEO -anW -cZW -cZW -cZW -anW -hbU -kJD -qTa -hBy -aKP -aWL -aKP -aKP -qTP -atb -atb -atP -atP -atP -atP -atP -atb -gAK -nTt -bes -bes -bes -bes -bes -bes -bes -bes -obf -awd -aao -aao -aao -aao -xRL -xRL -xRL -xRL -xRL -xRL -xRL -iyP -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -dlg -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -xYm -wYF -guH -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -guH -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(151,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -ipQ -ipQ -ipQ -ipQ -ipQ -ipQ -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -oSF -fGp -xFZ -anj -fGp -fGp -aao -aao -aao -gey -wwQ -uEQ -oEx -ucF -vKa -rNx -wJV -tFi -tFi -tFi -tFi -tFi -tFi -rOy -anW -nEO -pvq -pvq -mHo -pvq -kDU -pvq -pvq -vom -ydw -vom -lAV -pvq -pvq -pvq -aqx -ikx -wfE -pft -hBy -aKP -aKP -aKP -aKP -qTP -atb -kER -xwk -xwk -xwk -xwk -xwk -tZI -atb -nTt -bes -bes -wcx -bes -bes -bes -bes -bes -aao -aao -aao -aao -aao -aao -xRL -xRL -xRL -sea -xRL -xRL -xRL -xRL -xRL -aao -aao -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -guH -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(152,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -oSF -fGp -fGp -fGp -sBv -fGp -xyX -fGp -oSF -fSm -fGp -fGp -fGp -fGp -aao -aao -kUX -wwQ -wwQ -wwQ -gey -efv -vKa -rNx -wJV -tFi -tFi -rNx -tFi -tFi -rNx -rOy -anW -nEO -vom -hrC -smI -unS -unS -unS -pWP -kAj -qJM -pSf -pvq -pSf -iEm -nUj -aqx -ikx -wfE -pft -gFt -nQV -aKP -fSA -aKP -qTP -atd -oLH -ugC -xwk -kHH -xwk -mQn -oLH -atb -nTt -bes -bes -bes -bes -bes -bes -bes -bes -bes -aao -aao -aao -aao -aao -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -xRL -xRL -xRL -sea -xRL -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -fJk -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(153,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -rtx -fGp -fGp -fGp -rtx -fGp -oSF -fGp -fGp -nrs -sBv -fGp -fGp -fGp -kfk -fGp -fGp -fGp -fGp -fGp -aao -gey -wwQ -wwQ -wwQ -wwQ -uEQ -efv -ucF -rMU -vZJ -tFi -rNx -tFi -tFi -tFi -tFi -rOy -anW -anW -dLD -kpC -nbb -pSf -dNX -pSf -pvq -moe -unS -unS -chR -unS -rKe -itO -anW -gKV -fxB -pft -gFt -hBy -aKP -aKP -aKP -qTP -atd -oLH -pWo -dfm -tBs -dfm -dfm -oLH -atb -nTt -mQS -bes -bes -bes -bes -bes -bes -bhr -bes -bes -bes -aao -aao -aao -aao -xRL -xRL -xRL -dlg -xRL -xRL -xRL -aao -aao -aao -aao -aao -xRL -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -hYR -wYF -wYF -wYF -wYF -qvK -wYF -aao -aao -aao -aao -aao -aao -aao -aao -guH -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(154,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -oSF -fGp -rtx -fGp -sBv -fGp -fGp -aXX -aao -sBv -fGp -fGp -rtx -fGp -fGp -dHU -wwQ -wwQ -wwQ -wwQ -wwQ -aao -aao -ucF -czg -tFi -tFi -tFi -tFi -tFi -tFi -rOy -anW -dYZ -mzG -cQF -rfv -vom -vom -vom -pvq -pvq -pvq -tUM -nHk -pSf -qcE -pWP -qOZ -gyb -hae -pft -gFt -hBy -aKP -aKP -fTn -qTP -atb -oLH -gCa -iLg -dvr -gCa -iLg -pJh -atb -nTt -bes -bes -aEX -aEX -aEX -aEX -bes -bes -bes -bes -bes -aao -aao -aao -aao -aao -xRL -xRL -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -vBk -xRL -xRL -xRL -xRL -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fJk -wYF -wYF -wYF -fJk -wYF -qvK -aao -aao -aao -aao -aao -aao -aao -aao -wYF -wYF -wYF -wYF -wYF -wYF -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -mbs -mbs -mbs -mbs -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(155,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -qbp -qbp -fGp -oSF -fGp -uit -fGp -sBv -fGp -wXm -aao -aao -nfk -fGp -fGp -qbp -qbp -fGp -xTS -gey -wwQ -wwQ -aao -aao -aao -aao -aao -iEg -rMU -rNx -rNx -tFi -tFi -tFi -rOy -anW -drJ -hit -drJ -hit -pvq -dvq -who -iyr -qNM -pvq -tUM -eTE -pvq -llz -vom -fIW -ikx -fxB -pft -gFt -gFt -drp -drp -gFt -qTP -atd -oLH -mNF -iYo -dvr -mNF -iYo -oLH -atb -nTt -bes -bes -aEX -aEX -aEX -aEX -aEX -aEX -bes -bes -wxl -bes -aao -aao -aao -aao -aao -xRL -xRL -dlg -xRL -aao -aao -aao -aao -aao -aao -aao -vBk -xRL -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -viF -uNP -nFw -nFw -nFw -aao -jMq -nFw -sts -aao -aao -aao -aao -aao -aao -aao -aao -nFw -nFw -nFw -nFw -nFw -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(156,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -oSF -fGp -fGp -fGp -fGp -fGp -ePx -aao -aao -aao -nfk -fGp -qbp -qbp -fGp -fGp -jKs -jKs -aao -aao -aao -ucF -xnb -ucF -ucF -xnb -bMS -rMU -tFi -tFi -tFi -rOy -anW -anW -anW -anW -anW -mbV -tUM -cTL -cTL -qNM -pvq -pvq -rhV -mwC -hRi -hZx -anW -rAH -aSd -fkh -sqp -sqp -sTZ -sqp -uLN -qMH -atd -oLH -sGD -ucE -dvr -qjj -ucE -oLH -atb -nTt -bes -bes -bes -aEX -aEX -aEX -aEX -aEX -aEX -bes -bes -bes -bes -aao -aao -aao -aao -fui -fui -sxz -fui -aao -aao -aao -aao -aao -fui -fui -fui -lPE -lPE -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -psY -wDv -lqQ -wDv -wDv -aao -epg -wDv -lpf -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(157,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -qbp -qbp -fGp -fGp -fGp -aao -sYI -fGp -fGp -fGp -fSm -aao -aao -aao -aao -aao -sBv -fGp -fGp -fGp -rtx -fGp -fGp -aao -aao -aao -aao -ucF -ucF -ucF -aao -aao -aao -tFi -tFi -tFi -rOy -vBb -iim -vKZ -jez -anW -erP -lTS -lTS -vom -uhP -lTS -pvq -pvq -pvq -xrF -wbR -aqx -ikx -wfE -rjL -sCp -sCp -sCp -sCp -ydl -sDD -atb -oLH -mNF -iYo -dvr -ppf -iYo -oLH -atb -nTt -bes -bes -bes -bes -bes -bes -bes -bes -bes -bes -wxl -bes -bes -bes -aao -aao -aao -fui -fui -fui -fui -fui -aao -fui -aao -aao -fui -fui -fui -gpg -gpg -gpg -fui -fui -fui -gpg -fui -fui -fui -fui -fui -pVR -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fKT -wDv -wDv -wDv -wDv -aao -aao -aao -psY -lpf -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -lqQ -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -lqQ -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(158,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -rtx -fGp -fGp -qbp -qbp -fGp -fGp -fGp -aao -aao -sBv -fGp -fGp -fGp -bQc -aao -aao -aao -aao -sBv -fGp -fGp -fGp -fGp -qbp -fGp -fGp -aao -aao -aao -ucF -xnb -aao -aao -aao -aao -rNx -rNx -tFi -rOy -vBb -pOE -moB -qyO -anW -uqo -nsF -jHy -vom -xEf -jHy -jJa -sao -kLm -kLm -nVG -aqx -ikx -wfE -pft -gFt -wIc -wIc -gFt -gFt -siJ -atd -oLH -qjj -ucE -dvr -qjj -ucE -oLH -atb -nTt -bes -bes -bes -bes -bes -bes -bes -bes -bes -bes -bes -bes -bes -bes -aao -aao -aao -fui -fui -kVN -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -xzB -fui -fui -fui -dUf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -psY -wDv -lpf -wDv -wDv -aao -aao -aao -psY -lpf -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(159,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -rtx -fGp -aao -aao -aao -sBv -xFt -fGp -fGp -ePx -aao -aao -aao -aao -sBv -fGp -fSm -fGp -qbp -qbp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -uec -rOy -mxQ -iim -vBb -cWe -anW -anW -anW -aoc -aoc -anW -aoc -aoc -anW -aoc -aoc -anW -anW -ikx -fxB -pft -hBy -aKP -xas -kGl -gFt -siJ -atd -oLH -mNF -iYo -dvr -mNF -iYo -sPs -atb -nTt -bes -bes -bes -bes -bes -bes -uUT -bes -bes -wcx -bes -bes -bes -bes -aao -aao -aao -fui -fui -fui -gpg -fui -fui -gpg -gpg -fui -fui -kVN -fui -fui -fui -fui -kVN -fui -fui -fui -fui -fui -xzB -fui -fui -fui -jpM -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fKT -sHQ -wDv -wDv -jXo -wDv -wDv -aao -aao -aao -psY -lpf -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -"} -(160,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -sBv -fGp -fGp -fSm -aao -oNl -vkt -fNs -aao -sBv -fGp -fGp -vkt -vkt -fGp -rtx -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -aao -arD -foQ -cth -bWy -bWy -lVh -bWy -bWy -bWy -mfW -bWy -yhP -oJa -yhP -yhP -yhP -oJa -oJa -yhP -ikx -fxB -pft -hBy -aKP -imN -aKP -yjC -siJ -atb -oLH -qjj -ucE -dvr -qjj -ucE -oLH -atb -nTt -bes -bes -bes -bes -bes -bes -bes -bes -bes -bes -bes -bes -bes -aao -aao -aao -aao -aao -fui -fui -fui -sxz -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -kVN -fui -sxz -fui -fui -dUf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -psY -wDv -wDv -jXo -wDv -wDv -aao -aao -aao -aao -psY -lpf -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -aao -aao -aao -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -"} -(161,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -sBv -fGp -fGp -fGp -kPD -fGp -fGp -fGp -vkt -fGp -xyX -qbp -qbp -sne -fGp -fGp -fGp -fGp -fGp -oSF -fGp -fGp -fGp -vkt -fNs -aao -aao -aao -arD -arD -gnr -arD -arD -rKE -arD -arD -arD -arD -arD -aKP -aKP -aKP -aKP -aKP -aKP -xas -fTn -iOM -wfE -pft -gFt -nQV -aKP -orC -yjC -pLe -gRY -pml -vWP -hnM -qcU -mNF -iYo -oLH -atb -nTt -bes -bes -bes -aEX -bes -bes -bes -bes -bes -mQS -bes -bes -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -sxz -fui -fui -dUf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -psY -wDv -ees -wDv -aao -aao -aao -aao -aao -aao -psY -lpf -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(162,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -oNl -fGp -fGp -fGp -xFZ -oSF -fGp -rtx -qbp -qbp -fGp -fGp -qbp -qbp -fGp -fGp -xFZ -fGp -vkt -fGp -oSF -fGp -fGp -rtx -fGp -fGp -fNs -aao -aao -aao -aao -arD -arD -arD -arD -arD -arD -xNA -arD -arD -aKP -rAQ -aKP -aKP -aKP -aKP -fTn -gFt -xSw -wfE -wjo -eiF -xtk -guF -guF -guF -uJo -tmm -oLH -qjj -ucE -yeQ -qjj -ucE -oLH -atb -nTt -bes -bes -aEX -aEX -bes -bes -bes -bic -bes -bes -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -iqW -fui -fui -fui -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -mng -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -psY -lpf -wDv -wDv -aao -aao -aao -aao -aao -aao -psY -lpf -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(163,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -rtx -fGp -fGp -aao -aao -aao -aao -aao -sBv -fGp -fGp -fSm -aao -jrp -fGp -fGp -qbp -qbp -fGp -fGp -fGp -fGp -fGp -aXX -rtx -nfk -xFZ -xFZ -qtW -fGp -fGp -fGp -xFZ -xFZ -fGp -fGp -fNs -aao -aao -aao -arD -arD -gnr -uYX -aao -aao -aao -aao -aKP -aKP -aKP -fTn -drp -drp -gFt -gFt -ikx -vvB -omy -qTa -dTB -rbs -rbs -goS -dTB -dTB -oLH -mNF -iYo -dvr -mNF -iYo -pJh -atb -nTt -bes -aEX -aEX -aEX -bes -bes -bes -bes -bes -bes -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -gpg -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -cri -fui -fui -fui -dUf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fKT -wDv -lpf -wDv -wDv -aao -aao -aao -aao -wDv -wDv -wDv -oAn -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -lqQ -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(164,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -rtx -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -sBv -xyX -xFZ -aXX -aao -aao -nfk -xFZ -xFZ -xFZ -xFZ -xFZ -xFZ -xFZ -aXX -aao -fGp -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fNs -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -gFt -gFt -gFt -rBd -ikx -kJD -tQu -pft -rbs -uQB -uEP -pPj -hHC -dTB -oLH -gCa -iLg -dvr -gCa -iLg -oLH -atb -nTt -bes -aEX -aEX -bes -fSs -bes -bes -bes -bes -bes -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -kVN -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -sxz -fui -fui -kVN -fui -jpM -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -psY -wDv -lpf -wDv -fKT -sHQ -sHQ -sHQ -ozJ -wDv -wDv -wDv -jXo -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -lqQ -wDv -wDv -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(165,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -adZ -adZ -ntI -vvZ -czL -adZ -adZ -aao -aao -aao -aao -aao -adZ -ank -aev -aev -app -adZ -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -khg -fGp -fGp -fNs -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -dvz -sHJ -mDD -sga -oAK -dvz -wsT -xsX -xTk -cRE -dvz -oLH -dZN -uyb -pJH -dZN -uyb -oLH -atb -nTt -bes -aEX -bes -bes -bes -bes -bes -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -xzB -gpg -gpg -fui -dUf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -psY -sDv -wDv -sHQ -wDv -wDv -wDv -wDv -lpf -wDv -wDv -wDv -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(166,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -adZ -adZ -rLz -uGO -qDw -deo -xsI -adZ -adZ -aao -aao -aao -aao -adZ -anl -aev -aev -app -adZ -amk -amk -amk -amk -amk -amk -amk -amk -amk -amk -amk -fGp -fGp -nfk -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wBa -cjR -qsT -ldj -ctv -rbs -rgX -djp -cIC -lQy -dvz -dTB -tTU -tTU -oLH -tTU -tTU -nUL -atb -nTt -bes -bes -bes -bes -bes -bes -bes -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nFw -nFw -nFw -pOS -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -psY -wDv -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(167,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -adZ -fMc -nuT -rha -vxt -nuT -nuT -adZ -adZ -adZ -adZ -aao -gNH -adZ -anm -aeU -aev -apq -adZ -tmX -aGS -iEz -fZd -amk -ajm -sUQ -avM -lAF -aka -amk -fGp -fGp -fGp -nfk -fGp -fGp -fGp -fNs -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -lLi -qsT -ptR -rAD -dTB -cYM -eiq -cIC -hrg -bpt -dTB -atb -atb -atb -atb -atb -atb -atb -nTt -bes -bes -bes -bes -bes -bes -bes -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -psY -wDv -wDv -sHQ -dXt -aao -aao -aao -aao -aao -aao -aao -fKT -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -jXo -aao -aao -aao -aao -aao -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(168,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -adZ -fMc -nuT -sSD -oJi -gjv -nuT -jDb -aev -aev -adZ -aao -gNH -lUM -aev -aev -aoE -apr -adZ -lfn -ivw -ivw -bYS -amk -auj -auY -fnv -awz -aqc -amk -aao -fGp -fGp -fGp -sBv -fGp -fGp -fGp -vkt -vkt -kPD -vkt -vkt -vkt -vkt -vkt -fNs -aao -aao -aao -aao -dTB -rwe -qsT -ptR -eqk -juj -pWb -djp -cIC -pPj -sls -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -kVN -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -psY -wDv -wDv -lpf -aao -aao -aao -aao -aao -aao -aao -aao -psY -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -wDv -lpf -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(169,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -adZ -aYd -nuT -qmA -xad -nuT -cEa -adZ -aev -aev -adZ -aao -gNH -lUM -aev -anM -aqb -aps -adZ -kUK -ivw -vhR -ivw -uwo -aqc -auY -avN -ajO -axo -amk -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -xFZ -xFZ -kfk -fGp -xFZ -fGp -fGp -fGp -fSm -aao -aao -aao -aao -aao -lLi -qsT -ptR -vqJ -dTB -lWa -cIC -pWb -lNK -pOC -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -nFw -wDv -wDv -wDv -lqQ -psY -wDv -wDv -jXo -aao -aao -aao -aao -aao -aao -fKT -sHQ -wDv -lpf -wDv -wDv -wDv -wDv -gtX -gtX -wDv -wDv -wDv -wDv -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(170,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -rtx -fGp -aao -aao -aao -adZ -adZ -afd -afd -wfO -afd -afd -adZ -aev -ajU -adZ -adZ -adZ -adZ -hDh -adZ -afd -afd -adZ -qNG -ivw -ivw -tYp -amk -rUs -auY -fnv -awB -aqc -amk -aao -aao -fGp -fGp -dck -fGp -aXX -fGp -rtx -fGp -oSF -fGp -rtx -sBv -fGp -fGp -fGp -fNs -aao -aao -aao -kxt -lLi -hyR -ptR -ctv -rbs -tph -pAX -pPj -hXp -dTB -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fiT -fiT -gKr -aao -aao -aao -aao -aao -aao -aao -aao -fui -nFw -wDv -wDv -wDv -wDv -wDv -wDv -lpf -wDv -aao -aao -aao -aao -aao -aao -psY -wDv -wDv -jXo -wDv -wDv -wDv -aao -aao -aao -iaq -nFw -nFw -nFw -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(171,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -adZ -msW -msW -gMw -msW -msW -adZ -aeU -aev -aev -aev -alK -amH -aev -vyV -aev -aev -adZ -amk -lXN -yjo -vOh -amk -aqc -aqc -ass -aqc -aqc -amk -aao -aao -aao -fGp -sBv -fSm -fGp -fGp -fGp -fGp -oSF -fGp -fGp -fGp -xFZ -fGp -fGp -fSm -aao -aao -aao -dTB -gDk -nKo -ekL -bXd -dTB -jVy -qao -pPj -wDZ -xZL -aao -aao -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -aao -aao -aao -aao -aao -aao -fui -fui -fui -nFw -wDv -wDv -wDv -sHQ -wDv -wDv -lpf -wDv -aao -aao -aao -aao -aao -aao -epg -wDv -lhA -wDv -wDv -wDv -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(172,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -adZ -mOv -obX -obX -obX -nIp -adZ -aev -aev -iAw -aev -aev -amH -aev -aev -aev -aev -aev -adZ -adZ -adZ -adZ -adZ -xYa -amX -amk -amk -amk -amk -amk -amk -aao -aao -nfk -aXX -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -sBv -fGp -fGp -aao -aao -aao -aao -ykH -cMa -dfU -uTZ -rbs -xXv -lwq -pPj -mCI -dTB -aao -fui -lPE -lPE -jpM -aao -aao -aao -aao -aao -aao -cri -lPE -lPE -lPE -jpM -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -cri -fui -fui -fui -fui -aao -aao -aao -fui -fui -fui -fui -fui -nFw -wDv -wDv -gtX -wDv -wDv -wDv -lpf -wDv -aao -aao -aao -aao -aao -wDv -wDv -wDv -lpf -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(173,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -adZ -adZ -obX -obX -obX -adZ -adZ -aev -aev -aev -aev -aev -amH -aev -anN -aev -aev -aev -aev -hvQ -aev -aev -jDb -vkZ -vkZ -amX -awC -kIF -axp -ayA -amk -anI -anI -anI -anI -anI -anI -aao -aao -aao -aao -fGp -fGp -fGp -nfk -rtx -fGp -fGp -aao -aao -aao -fja -fVn -ofp -gIL -dTB -rbs -rbs -vMo -dTB -dTB -fui -fui -fui -fui -kVN -jpM -aao -aao -aao -aao -aao -sxz -fui -kVN -fui -fui -jpM -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -cri -lPE -lPE -lPE -fui -fui -fui -fui -fui -lPE -lPE -fui -fui -fui -fui -kVN -sxz -nFw -lpf -aao -aao -psY -lqQ -wDv -lpf -wDv -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -lqQ -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(174,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -aao -aao -adZ -adZ -adZ -adZ -adZ -jQB -gLw -adZ -aev -aev -aev -adZ -adZ -adZ -adZ -adZ -adZ -adZ -adZ -aev -aev -aeU -aev -aev -adZ -kdn -vkZ -wjC -auY -aqc -axT -wCs -amk -anI -aAM -aAO -aAO -aAO -anI -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -efD -bRb -uHs -dQD -oMa -cgm -tAi -tAi -sye -fui -fui -fui -fui -fui -fui -dUf -aao -aao -aao -aao -aao -xzB -gpg -fui -fui -fui -dUf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -lPE -fui -fui -cri -fui -nFw -jXo -aao -aao -psY -wDv -wDv -lpf -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -lpf -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(175,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -aao -aao -adZ -aev -aeU -aev -ojs -wnH -qjp -jDb -aev -aev -anM -adZ -adZ -bjv -wOX -adZ -wsI -nic -adZ -aqb -aqb -anl -anl -aev -adZ -nxR -vkZ -vGg -auY -aqc -aqc -orT -amk -anI -aAN -aAO -aCq -aDi -anI -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -vkt -vkt -vkt -vRj -fSm -jEU -uTZ -fGp -qbp -qbp -fui -fui -fui -fui -fui -fui -fui -fui -fui -dUf -aao -aao -aao -aao -aao -aao -aao -xzB -gpg -fui -dUf -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -cri -fui -gpg -gpg -gpg -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -lPE -fui -fui -opf -aao -aao -aao -psY -wDv -wDv -lpf -wDv -wDv -wDv -wDv -fKT -sHQ -wDv -lqQ -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(176,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -rtx -fGp -fGp -fGp -aao -aao -adZ -aew -aeV -aev -adZ -wnH -wvt -adZ -adZ -adZ -adZ -adZ -adZ -lBT -gbn -adZ -pEs -gbn -adZ -adZ -adZ -adZ -adZ -adZ -adZ -vkZ -vkZ -amX -awD -aEs -aEs -ayB -amk -anI -aAO -aAO -aAO -aAO -anI -anI -aao -aao -aao -aao -aao -aao -aao -aao -sBv -fGp -fGp -fGp -fGp -fSm -lGO -uTZ -fGp -fGp -oSF -fui -fui -fui -fui -fui -fui -gpg -gpg -fui -fui -lPE -lPE -jpM -aao -aao -aao -aao -aao -aao -fui -dUf -fui -fui -fui -fui -aao -aao -aao -aao -cri -lPE -fui -fui -fui -xba -fui -fui -fui -gpg -gpg -fui -fui -fui -fui -fui -fui -fui -fui -dUf -aao -aao -aao -aao -psY -wDv -wDv -lpf -wDv -wDv -wDv -fKT -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(177,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -aao -aao -adZ -bXe -aex -afA -adZ -cqE -oWn -adZ -aao -aao -aao -aao -adZ -jHP -vWd -adZ -dYG -gbn -adZ -sUQ -aqc -aqc -asp -aqc -amk -sSy -kBi -amk -amk -amk -amk -amk -amk -anI -anL -ikd -xWh -anL -anI -anI -anI -aao -aao -aao -aao -aao -aao -aao -nfk -fGp -fGp -fGp -fGp -fSm -dGa -hGN -fGp -fGp -mTm -fui -fui -fui -fui -nyn -dUf -fui -fui -fui -gpg -fui -fui -fui -lPE -lPE -lPE -lPE -lPE -lPE -fui -dUf -kVN -fui -fui -fui -fui -fiT -fui -fui -fui -fui -fui -fui -fui -kVN -fui -fui -fui -fui -fui -kVN -sxz -fui -fui -fui -fui -fui -fui -fui -pOS -aao -fKT -sHQ -wDv -wDv -wDv -lpf -lqQ -fKT -nNZ -wDv -gtX -gtX -gtX -jXo -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(178,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -aao -aao -adZ -adZ -adZ -afB -adZ -nLe -ryG -adZ -aao -aao -aao -adZ -adZ -goY -tld -adZ -bvJ -tld -adZ -adZ -aGh -ahv -ajd -aqc -amk -vkZ -xxt -qVI -ggP -amk -aao -anI -oOp -yjq -cHd -cHd -pFi -cHd -yfr -wvn -anI -aao -anI -anI -anI -anI -anI -anI -iUV -nfk -fGp -fGp -fGp -arK -rEh -jNr -fGp -fGp -qbp -fui -fui -fui -fui -fui -mng -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -lPE -lPE -lPE -lPE -lPE -fpY -lPE -fui -fui -dUf -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -sxz -fui -fui -nyn -fui -fui -fui -fui -nFw -sHQ -wDv -wDv -wDv -wDv -wDv -wDv -sHQ -wDv -wDv -lpf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(179,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -aao -aao -adZ -ujI -kfz -hjK -uMy -hxh -nKZ -adZ -aao -aao -adZ -adZ -wgb -otE -otE -sSN -lVl -lVl -lzy -adZ -adZ -auY -asr -aqc -amX -lLM -pAm -fdR -qVk -amk -aao -anI -sig -cRJ -afz -uJL -uJL -uJL -bOu -saV -anI -aao -anI -mNN -qyn -qyn -qyn -oym -oDU -jFl -jFl -nix -nix -mEA -cMa -uTZ -fGp -qbp -qbp -fui -fui -fui -fui -dUf -aao -aao -aao -aao -cri -fui -fui -fui -fui -fui -fui -fui -qaJ -fui -fui -fui -fui -fui -fui -nyn -fui -fiT -fui -fui -kVN -dUf -fui -fui -cri -fui -fui -fui -fui -fui -fui -fui -sxz -fui -fui -fui -fui -fui -fui -qaJ -nFw -wDv -wDv -wDv -lqQ -wDv -gtX -gtX -gtX -gtX -gtX -jXo -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(180,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -aao -adZ -sMc -cBj -hCE -uMy -iCd -qjp -adZ -aao -aao -adZ -jzN -mFl -rpk -wJz -wJz -wJz -rpk -kaG -oBR -adZ -arI -ass -aqc -tSP -vkZ -tVu -fdR -qVk -amk -aao -anI -qIU -qGJ -afz -jEM -ylK -clP -uJL -tWl -anI -aao -anI -xvo -gLV -ogH -ogH -ikd -ofp -rGt -rGt -qgZ -qgZ -dfU -gaf -hGN -fGp -fGp -oSF -fui -fui -fui -gpg -mng -aao -aao -aao -kDS -fui -fui -fui -sBB -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -kQc -gpg -fui -fui -dUf -fui -fui -fui -fui -fui -fui -fui -fui -dUf -fui -sxz -fui -fui -fui -fui -fui -fui -fui -nFw -wDv -wDv -wDv -wDv -lpf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(181,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -aao -adZ -sMc -lve -erb -imP -cPP -fdt -adZ -aao -aao -adZ -vOQ -wJz -wJz -cjh -wFk -wJz -wJz -wJz -vqj -adZ -amk -amk -amk -amk -vkZ -jCj -amk -amk -amk -aao -anI -pXd -vJm -qGJ -afz -afz -uJL -pGp -xVd -anI -aao -anI -xvo -opD -anI -anI -anI -chN -vkt -vkt -vkt -vkt -mpS -iuh -mnF -fGp -fGp -mTm -fui -fui -mng -aao -aao -aao -aao -aao -aao -xzB -gpg -gpg -gpg -fui -fui -fui -fui -gpg -gpg -gpg -gpg -gpg -gpg -gpg -gpg -mng -aao -aao -sxz -fui -dUf -fui -fui -fui -fui -fui -fui -fui -fui -dUf -fui -sxz -fui -fui -fui -fui -fui -fui -fui -nFw -wDv -wDv -wDv -wDv -jXo -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(182,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -rtx -fGp -aao -aao -adZ -onK -wGC -jPD -adZ -uYM -tUk -adZ -aao -aao -adZ -wEr -boJ -xwL -wJz -wJz -rpk -wJz -nAK -mOH -adZ -aao -azm -amk -amk -vGg -tXi -amk -amk -aao -aao -anI -anI -cVi -vJm -bwm -uJL -mZf -hcN -anI -anI -aao -anI -xvo -tss -anI -aao -aao -vkt -fGp -rtx -fGp -fGp -wSw -hkO -veC -fGp -fGp -qbp -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -sxz -dUf -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -sxz -dUf -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -gpg -gpg -gpg -gpg -gpg -gpg -fui -nFw -lqQ -wDv -wDv -jXo -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -sQA -sQA -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(183,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -aao -aao -adZ -adZ -eZU -qha -adZ -uYM -fdt -adZ -adZ -aao -adZ -iSv -wJz -tmh -rpk -wJz -lNR -cXx -wJz -lNX -adZ -aao -amk -amk -vQO -fdR -eed -vQO -amk -amk -aao -aao -anI -anI -hXI -lGM -uJL -tBc -anI -anI -aao -aao -anI -uWF -tss -anI -aao -aao -fGp -fGp -fGp -xFZ -xFZ -mCy -qTz -veC -fGp -fGp -qbp -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -xzB -fui -fui -fui -kVN -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -sxz -dUf -fui -fui -kVN -fui -fui -fui -sBB -fui -fui -fui -mng -aao -aao -aao -aao -aao -aao -jMq -nFw -wDv -wDv -lpf -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -sQA -sQA -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(184,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -aao -aao -aao -adZ -adZ -adZ -adZ -uYM -obX -hbB -adZ -adZ -adZ -qsS -aqE -uEo -fKU -gTh -fKU -wMd -gTh -eIA -adZ -amk -amk -hZZ -vkZ -cqW -kHM -vkZ -yaQ -amk -amk -aao -aao -anI -nkb -mkG -iHr -ksd -anI -aao -aao -aao -anI -xvo -tss -anI -aao -sBv -fGp -fGp -fSm -aao -aao -aao -mCy -dlJ -fGp -aao -aao -sIh -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -xzB -fui -fui -jpM -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -cri -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -psY -gtX -gtX -gtX -jXo -wDv -wDv -wDv -nFw -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -lqQ -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(185,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -adZ -adZ -xGP -obX -rDE -adZ -adZ -afd -afd -afd -gYM -adZ -gYM -afd -afd -afd -adZ -amk -qwE -iNQ -vkZ -tDY -gzo -vkZ -vkZ -hoS -amk -anI -gSz -anI -anL -ikd -qqR -anL -anI -anI -anI -anI -anI -ykJ -nSb -anI -aao -sBv -fGp -fGp -fGp -fNs -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -xzB -gpg -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -cri -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -jpM -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nFw -nFw -nFw -nFw -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(186,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -oNl -fNs -aao -aao -adZ -adZ -xGP -eeP -ldX -exs -tWD -jek -ccR -ccR -ccR -ccR -ccR -ccR -goB -hTw -kxe -fdR -mgd -iQk -rsJ -jhQ -bJI -sgk -fdR -vxy -fYW -qTy -kbE -qyn -ktH -iuX -diq -ncU -bSj -qyn -qyn -qyn -tPM -tss -anI -aao -nfk -fGp -xFZ -fGp -fSm -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -jpM -fui -fui -fui -aao -aao -aao -cri -fui -gpg -fui -fui -gpg -gpg -fui -fui -fui -fui -fui -fui -fui -fui -dUf -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -sQA -sQA -wDv -wDv -sQA -sQA -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(187,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -sBv -fGp -fNs -aao -aao -adZ -adZ -iiE -nUX -nDE -jAU -jAU -jAU -pmv -fdF -pmv -rpe -pnu -nmS -vbM -hVc -ocW -jeE -wQy -gVZ -peo -yeV -qdj -ocW -hVc -wIE -azl -aAo -uqT -qxU -tyG -tRS -tRS -dGb -val -gJF -cyE -rRt -dPG -anI -aao -aao -nPD -aao -sBv -xFZ -vkt -fNs -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -sxz -kAn -fui -fui -fui -lPE -fui -fui -fui -fui -fui -fui -dUf -aao -aao -sxz -fui -fui -fui -fui -fui -kVN -fui -mng -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -sQA -sQA -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -sQA -sQA -wDv -wDv -sQA -sQA -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(188,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -rtx -fGp -fGp -sBv -fGp -adZ -adZ -adZ -adZ -adZ -jQB -vhO -adZ -afd -afd -afd -ovP -adZ -ovP -afd -afd -afd -adZ -amk -kEe -izs -vkZ -bLR -ksX -vkZ -iTa -coU -amk -gSz -aEF -anI -anI -anI -anI -anI -anI -anI -anI -nzn -wIN -pFf -dQg -anI -aao -aao -aao -aao -aao -aao -aao -nPD -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -xzB -mng -aao -aao -xzB -fui -fui -fui -fui -fui -fui -mng -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -sQA -sQA -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(189,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fkU -fSm -afd -jbl -obX -nzc -obX -obX -obX -adZ -cFl -uRz -uRz -uRz -czd -uRz -uRz -uRz -lwr -adZ -amk -amk -igz -vkZ -xia -xia -thz -oOX -amk -amk -aao -aao -aao -aao -aao -aao -aao -aao -aao -anI -anI -nzn -wIN -dQg -anI -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -kVN -fui -fui -fui -kVN -fui -aao -aao -aao -aao -aao -xzB -gpg -gpg -gpg -gpg -mng -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(190,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -sBv -fSm -afd -rXM -vIk -adZ -elr -obX -kpc -adZ -qss -iHX -hSq -eUE -kIL -iHX -kIL -lYM -uIi -adZ -aao -amk -amk -xFu -fdR -fdR -xFu -amk -amk -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -anI -anI -dRh -vaB -anI -anI -anI -anI -anI -anI -anI -anI -anI -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -lqQ -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -sQA -sQA -wDv -lqQ -wDv -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(191,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -sBv -fSm -adZ -adZ -adZ -adZ -elr -obX -mJv -adZ -xTP -qSt -kIL -eUE -kIL -slD -kIL -iHX -ouN -adZ -aao -aao -amk -amk -vGg -xeG -amk -amk -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -anI -rVQ -dQg -anI -aMr -mTS -ePk -wcl -aMr -mTS -xKb -anI -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -sQA -sQA -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(192,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -sBv -fSm -afd -rXM -qDt -adZ -obX -obX -nbF -adZ -fmR -kcm -kIL -xvP -kIL -fil -kIL -iHX -jbi -adZ -aao -aao -aao -amk -vWR -dAp -amk -aao -aao -oNl -ikW -reL -aao -anI -anI -anI -anI -anI -anI -anI -aao -anI -ucG -dTV -anI -euV -qql -euV -gnj -rGv -fnm -euV -anI -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -kVN -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -wDv -sQA -sQA -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(193,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fSm -afH -obX -jbl -nzc -obX -obX -mJv -adZ -qya -fub -iHX -iHX -iHX -xvP -qRC -oLB -qgE -adZ -aao -aao -oNl -amY -dPa -gJT -amY -vkt -vkt -fSm -fGp -nPD -anI -anI -sCG -anL -csb -rAr -uMp -anI -anI -anI -uWF -sMx -anI -bQm -wno -bQm -rYH -lGB -jGG -bQm -anI -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -nFw -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -wDv -lqQ -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -wDv -wDv -sQA -sQA -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(194,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -rtx -fGp -fSm -adZ -adZ -adZ -adZ -wzR -obX -pjA -adZ -adZ -uhM -ofQ -btT -btT -btT -ofQ -uqh -adZ -adZ -vWF -vkt -iBA -amY -kTx -bWX -amY -sBv -fGp -sBv -vkt -fSm -anL -kMP -iBN -ncJ -uTn -pFf -fQB -xRH -anI -anI -xvo -dQg -anI -aMr -qMU -aMr -qIR -ePk -mTS -uUV -anI -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fiT -fiT -fiT -fiT -fiT -fiT -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -nFw -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -lqQ -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(195,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fSm -afd -weV -obX -nzc -obX -jbl -obX -adZ -adZ -adZ -adZ -adZ -adZ -adZ -adZ -adZ -adZ -aao -ack -fGp -fSm -amk -xks -bOw -amk -ack -vkt -eQC -fGp -fSm -anL -sCG -sCG -anL -uTn -wCE -pFf -uId -oTH -anL -nRd -ulZ -anI -anI -vGX -anI -anI -anI -anI -anI -anI -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -kVN -nFw -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(196,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fSm -afd -rXM -dqu -adZ -adZ -wat -adZ -adZ -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -sBv -asx -fSm -amY -kTx -xNS -amY -sBv -fGp -fGp -fGp -fSm -anI -anL -anL -anI -dZd -pFf -pFf -pFf -oeJ -anL -xvo -wYW -anI -klO -aLI -vDl -aHP -anI -cQZ -lLO -anI -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -kVN -fui -fui -fui -fui -fui -fui -nFw -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -sQA -sQA -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(197,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -sBv -fSm -adZ -adZ -adZ -adZ -dCo -fLx -fLx -adZ -aao -aao -aao -aao -aao -aao -aao -aao -oNl -vkt -fSm -fGp -fGp -amY -dPa -gJT -amY -nfk -xFZ -cMY -fGp -fSm -anL -npS -gNP -guZ -uTn -sPQ -pFf -pFf -oeJ -dGM -xvo -dQg -dGM -aLI -aMs -klO -edB -anL -kJG -iXc -anI -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -nFw -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -wDv -wDv -wDv -sQA -sQA -wDv -aao -aao -aao -aao -aao -aao -aao -tIx -tIx -tIx -wDv -wDv -wDv -sQA -sQA -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(198,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -sBv -fSm -vAs -hcO -hcO -hcO -gNY -ikv -fLx -adZ -aao -aao -aao -oNl -vkt -vkt -vkt -vkt -fGp -fGp -fUL -fGp -fGp -amk -fFs -xNS -anw -aao -aao -sBv -cMY -fSm -anL -pTw -kFE -eDu -gBp -pFf -xXp -pFf -oeJ -ikd -jKb -nIL -ikd -klO -aMt -aMs -aLI -ncJ -kIZ -qtp -anI -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -fui -fui -nFw -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -wDv -wDv -wDv -sQA -sQA -wDv -wDv -sQA -sQA -wDv -wDv -aao -aao -aao -aao -wDv -wDv -tIx -tIx -tIx -wDv -wDv -wDv -wDv -wDv -wDv -sQA -sQA -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(199,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -sBv -fSm -vAs -fLx -bMy -fLx -nYa -lls -wQc -adZ -aao -aao -aao -sBv -fGp -fGp -fGp -fGp -fGp -aXX -fGp -fGp -fGp -amk -amk -amk -amk -aao -aao -fGp -sBv -fSm -anI -anL -anL -anI -aWZ -pFf -pFf -pFf -oeJ -anL -xvo -iVr -anI -aLI -klO -klO -igf -anI -anI -anI -anI -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -kVN -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -kVN -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -nFw -wDv -lqQ -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -sQA -sQA -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -sQA -sQA -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(200,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fkU -fGp -adZ -adZ -adZ -adZ -adZ -adZ -adZ -adZ -aao -oNl -vkt -fGp -fGp -fGp -fGp -fGp -fSm -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -oNl -fGp -fSm -anL -thr -sCG -anL -uTn -pFf -pFf -rmO -rWp -anL -fIy -qkv -anI -anI -aMu -aMu -anI -anI -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -wDv -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(201,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -nfk -xFZ -fGp -fNs -aao -aao -aao -aao -aao -aao -aao -sBv -fGp -fGp -fGp -rtx -fGp -fGp -fSm -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -sBv -fGp -fSm -anL -iBN -sCG -ncJ -uTn -pFf -rmO -lsk -anI -aob -dPK -vzA -aob -aob -aob -anI -anI -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -sQA -sQA -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -fXS -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(202,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -vkt -vkt -jHw -vkt -vkt -vkt -vkt -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aXX -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -sBv -fGp -fSm -anI -anI -sCG -anL -fkN -vQN -lsk -anI -anI -aob -uDs -hSk -qXk -rjZ -aob -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -kVN -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -kVN -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nFw -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -vLj -sQA -wDv -wDv -wDv -sQA -sQA -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(203,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -nfk -xFZ -fGp -xFZ -xFZ -xFZ -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fSm -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -nfk -rtx -fGp -fNs -anI -anI -anI -anI -anI -anI -anI -aao -aob -rgg -jIU -nsq -mdm -aob -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -nFw -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -aao -aao -wDv -wDv -sQA -sQA -wDv -wDv -wDv -wDv -wDv -wDv -wDv -plR -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(204,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -rtx -fGp -fGp -fGp -fGp -aXX -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -aXX -aao -aao -aao -aao -aao -aao -aao -aao -aob -hCU -hQk -goz -nkS -aob -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -kVN -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -nFw -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(205,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -sBv -fGp -xFZ -aXX -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aob -aob -dPK -vzA -aob -aob -aob -aao -aao -aao -aao -aao -aob -aob -aob -aob -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -rYu -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -lqQ -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(206,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -rtx -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -eNx -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aob -aob -cIl -ghD -nfQ -bMA -aob -aob -aao -aao -aao -aao -aob -aob -mYJ -xaC -aob -aob -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -nFw -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -lqQ -wDv -wDv -sQA -sQA -wDv -lqQ -wDv -fuU -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(207,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -rtx -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aob -aob -uJm -mHz -nWu -nbn -wHb -oZx -aob -aob -aao -aao -aob -aob -dAs -aGf -rJM -nAV -aob -aob -aao -aao -aao -fui -fui -fui -fui -fui -fui -kVN -fui -fui -fui -fui -fui -fui -fui -aao -fui -fui -fui -fui -fui -fui -fui -fui -kVN -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -nFw -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -sQA -sQA -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(208,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aob -aob -wcf -mHz -mdP -tnj -vkI -xzJ -wHb -oEs -aob -aob -aob -aob -qZe -dFZ -stl -jBM -pfX -vQT -aob -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -kVN -fui -fui -fui -fui -fui -fui -fui -fui -fui -nFw -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(209,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aob -gsA -ccx -jjq -tnj -faS -hdN -hTk -xeI -xLJ -svg -thX -cta -svg -mmx -kAG -dKX -ryH -urX -wLg -aob -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -kVN -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -nFw -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -wDv -wDv -wDv -wDv -wDv -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(210,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -rtx -fGp -fGp -tpF -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -rtx -fGp -fGp -fGp -fGp -rtx -fGp -fGp -fGp -aao -aao -aao -aob -exR -cis -hPo -ima -vvP -xmJ -tXB -jgY -jPJ -hbK -vaO -oRr -hbK -rgJ -qlY -cHo -vvP -urX -hIj -aob -aao -aao -fui -fui -kVN -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -kVN -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(211,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aob -aob -qZH -lmW -mbW -eSl -nJx -jbe -nyw -cXu -aob -aob -aob -aob -cVj -wAw -wMi -fxE -dXk -rWc -aob -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(212,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -rtx -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aob -aob -iOk -lmW -uhp -bXR -nyw -iYH -aob -aob -aao -aao -aob -aob -wES -lKg -dCa -wMy -aob -aob -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(213,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aob -aob -nFg -mcX -oFX -dWB -aob -aob -aao -aao -aao -aao -aob -aob -nOX -vSl -aob -aob -aao -aao -fui -fui -fui -fui -fui -fui -fui -kVN -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(214,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aob -aob -aob -aob -aob -aob -aao -aao -aao -aao -aao -aao -aob -aob -oSF -oSF -fGp -fGp -fGp -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(215,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -rtx -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -rtx -fGp -fGp -fGp -fGp -fGp -fGp -fGp -rtx -fGp -fGp -fGp -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(216,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -rtx -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fui -fui -kVN -fui -fui -fui -fui -fui -fui -fui -fui -kVN -fui -fui -aao -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(217,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -rtx -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(218,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -fGp -fGp -rtx -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -rtx -fGp -fGp -fGp -fui -fui -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aab -aaa -aaa -aaa -cJd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(219,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -rtx -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -fui -fui -fui -aao -aao -aab -aaa -aaa -aaa -cJd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(220,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -fGp -fGp -fGp -fGp -fGp -fGp -fGp -aao -aao -fGp -fGp -aao -aao -aao -aao -aao -fui -fui -fui -kVN -fui -fui -fui -fui -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -cJd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(221,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fGp -fGp -fGp -aao -fGp -fGp -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -fui -fui -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -cJd -aaa -aaa -aaa -aaa -aaa -cJd -cJd -cJd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(222,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -fui -fui -fui -fui -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cJd -cJd -cJd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(223,1,1) = {" -aaa -aab -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(224,1,1) = {" -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(225,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} diff --git a/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm b/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm deleted file mode 100644 index 907f40733d2e..000000000000 --- a/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm +++ /dev/null @@ -1,1899 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"ab" = ( -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"ac" = ( -/obj/structure/surface/table, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"af" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"ah" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/marshal_office) -"ai" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"aj" = ( -/turf/open/mars, -/area/bigredv2/outside/n) -"ak" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"al" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/marshal_office) -"am" = ( -/obj/structure/sink{ - pixel_y = 32 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"ap" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"aq" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"ar" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"at" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/marshal_office) -"aw" = ( -/obj/structure/bed, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"ax" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"ay" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"az" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"aA" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"aB" = ( -/obj/structure/machinery/flasher/portable, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"aD" = ( -/obj/structure/closet/l3closet/security, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"aN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"aO" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"aP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"aQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"aR" = ( -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"aY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ba" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"bb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"bc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"bd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"bg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"bh" = ( -/obj/structure/machinery/light, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"bi" = ( -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"bj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"bk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"bl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/good_item, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"bn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"bp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - density = 0; - dir = 1; - icon_state = "door_open"; - name = "\improper Marshal Office Armory" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"br" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"bs" = ( -/obj/structure/closet/secure_closet/marshal, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"bx" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"by" = ( -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"bA" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"bB" = ( -/obj/structure/surface/table, -/obj/item/ore/diamond, -/obj/item/ore/uranium, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"bD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/red/north, -/area/bigredv2/outside/marshal_office) -"bE" = ( -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/marshal_office) -"bF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"bG" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"bL" = ( -/obj/structure/window_frame/solaris, -/obj/item/shard, -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"bM" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"bN" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"bO" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/n) -"bP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/marshal_office) -"bQ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westright, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"bR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"bV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"bW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - icon_state = "door_locked"; - name = "\improper Marshal Office Armory" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"bX" = ( -/obj/structure/surface/table, -/obj/item/ore/uranium, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"bY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/red/west, -/area/bigredv2/outside/marshal_office) -"bZ" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"ca" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/red/northwest, -/area/bigredv2/outside/marshal_office) -"cb" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/n) -"cg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"ch" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"ci" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"cj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/red, -/area/bigredv2/outside/marshal_office) -"ck" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/red/southeast, -/area/bigredv2/outside/marshal_office) -"cl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/prison_security, -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_casing/shell, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/marshal_office) -"cm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"cn" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/southright, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"co" = ( -/obj/structure/window_frame/solaris, -/obj/item/shard, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"cq" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"cr" = ( -/obj/item/ammo_casing/shell, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/marshal_office) -"cs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ct" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"cu" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"cy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"cz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/red/west, -/area/bigredv2/outside/marshal_office) -"cA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"cC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"cE" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"cF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"cL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"cM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/shoes/black, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"cN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Marshal Office" - }, -/turf/open/floor/red/west, -/area/bigredv2/outside/marshal_office) -"cO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"cP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/obj/item/tool/kitchen/knife, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"cR" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"cS" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"cT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"cU" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - density = 0; - dir = 1; - icon_state = "door_open"; - name = "\improper Marshal Office Holding Cell" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"cV" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - icon_state = "door_locked"; - name = "\improper Marshal Office Holding Cell" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"cW" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Checkpoint" - }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"cX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"cY" = ( -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"cZ" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"db" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"dc" = ( -/obj/structure/surface/table, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"dd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"de" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"df" = ( -/obj/structure/bed, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"dg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"dh" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/redfull/northwest, -/area/bigredv2/outside/marshal_office) -"di" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"dj" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/medical) -"dk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"dl" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"do" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/n) -"dt" = ( -/obj/structure/closet/l3closet/security, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"dG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/rack, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/outside/marshal_office) -"ea" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_y = -2 - }, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"es" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"fh" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Evidence Room" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"gu" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"gJ" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"gL" = ( -/obj/structure/machinery/light, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"gV" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"hc" = ( -/obj/item/trash/wy_chips_pepper{ - pixel_y = -13; - pixel_x = 24 - }, -/obj/item/stack/sheet/metal{ - pixel_x = 10; - pixel_y = -5 - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_y = 3; - pixel_x = -1 - }, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"hF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/item/weapon/gun/pistol/holdout{ - pixel_x = 9; - pixel_y = 18 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"if" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"ip" = ( -/obj/item/weapon/shield/riot, -/obj/item/frame/table/reinforced, -/obj/item/shard, -/obj/item/shard, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"ix" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"iH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/botany, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"jj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"jn" = ( -/obj/item/ammo_casing/bullet, -/obj/item/ammo_casing/bullet, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"jo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/weapon/baton/cattleprod{ - pixel_x = 11; - pixel_y = -7 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"jq" = ( -/obj/structure/machinery/camera/autoname, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1; - pixel_y = -1 - }, -/turf/open/floor/red/northeast, -/area/bigredv2/outside/marshal_office) -"jW" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"kG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"lU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"mz" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"mB" = ( -/obj/item/reagent_container/food/snacks/syndicake{ - pixel_x = -8; - pixel_y = -4 - }, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"np" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"nz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"nV" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/plating/platingdmg1, -/area/bigredv2/outside/marshal_office) -"ov" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/item/frame/table, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"pj" = ( -/obj/item/frame/table, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"pw" = ( -/obj/item/clothing/mask/gas{ - pixel_y = 7; - pixel_x = 7 - }, -/obj/item/stack/folding_barricade{ - pixel_y = -4; - pixel_x = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"pG" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"qm" = ( -/obj/structure/bed, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"qG" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb{ - pixel_y = -1; - pixel_x = -3 - }, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"qM" = ( -/obj/item/clothing/mask/gas{ - pixel_y = 9 - }, -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"qX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/weldingtool{ - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"rA" = ( -/obj/item/clothing/mask/gas, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"rC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5; - pixel_x = -1 - }, -/turf/open/floor/red/east, -/area/bigredv2/outside/marshal_office) -"rL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/red/southwest, -/area/bigredv2/outside/marshal_office) -"so" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"sy" = ( -/obj/item/ammo_casing/shell, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"sR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/botany, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"tu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/stack/sheet/metal{ - pixel_x = 1 - }, -/obj/item/frame/rack, -/turf/open/floor/plating/platingdmg1, -/area/bigredv2/outside/marshal_office) -"ug" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/clothing/suit/armor/riot{ - pixel_y = -9; - pixel_x = -12 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"ui" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"uo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ut" = ( -/obj/item/clothing/mask/gas{ - pixel_x = 10; - pixel_y = -12 - }, -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"uy" = ( -/obj/item/stack/sheet/metal{ - pixel_x = 3; - pixel_y = -11 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"uA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/botany, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"uX" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"vi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/armor/riot{ - pixel_y = 5; - pixel_x = 7 - }, -/obj/item/shard, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"wm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"wB" = ( -/obj/item/storage/toolbox{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/ammo_casing/bullet, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"wL" = ( -/obj/structure/machinery/light, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/marshal_office) -"xk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"xF" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_y = -9 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"yb" = ( -/obj/structure/window_frame/solaris, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"yx" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Marshal Office Prison Toilet" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"yY" = ( -/obj/item/ammo_casing/shell, -/obj/item/storage/box/MRE{ - pixel_x = -1; - pixel_y = -6 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"za" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"zv" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"zD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office Brig"; - density = 0; - icon_state = "door_open" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"AG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/revolver/small{ - pixel_x = -11; - pixel_y = 13 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"AI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/tool/screwdriver{ - pixel_x = -13; - pixel_y = 9 - }, -/obj/item/tool/crowbar/red{ - pixel_y = -14; - pixel_x = 2 - }, -/obj/item/stack/tile/plasteel{ - pixel_x = 16; - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"BS" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/marshal_office) -"DR" = ( -/obj/item/weapon/shield/riot{ - pixel_x = -3; - pixel_y = -7 - }, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"Ee" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - density = 0; - dir = 1; - icon_state = "door_open"; - name = "\improper Marshal Office Armory" - }, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/marshal_office) -"Ek" = ( -/obj/item/stack/folding_barricade{ - pixel_x = 1; - pixel_y = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"Fs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/revolver/cmb{ - pixel_y = -11; - pixel_x = 5 - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/item/trash/sosjerky{ - pixel_x = -12; - pixel_y = 17 - }, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_y = 1; - pixel_x = -7 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"FA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -8; - pixel_y = -5 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"FK" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"Gs" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"Hl" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_y = -9; - pixel_x = -7 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"Ho" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/obj/item/ammo_casing/bullet, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"HO" = ( -/obj/structure/surface/table, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_color = "red"; - phone_id = "Marshal Office" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"HS" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/black_vest, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"Io" = ( -/obj/structure/closet/l3closet/security, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"IR" = ( -/obj/structure/machinery/light, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/obj/item/shard, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/marshal_office) -"Kb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_y = 24 - }, -/obj/structure/machinery/camera/autoname, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"Ll" = ( -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"Lq" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"LM" = ( -/obj/item/frame/rack, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"Ml" = ( -/obj/item/ammo_casing/shell, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = 8; - pixel_y = 12 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"Mq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_y = -8; - pixel_x = -6 - }, -/obj/item/trash/semki{ - pixel_y = -14 - }, -/obj/item/stack/sheet/metal{ - pixel_x = 10; - pixel_y = -5 - }, -/turf/open/floor/plating/platingdmg1, -/area/bigredv2/outside/marshal_office) -"MH" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = 30 - }, -/obj/item/tool/soap/deluxe{ - pixel_y = -7; - pixel_x = -9 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"MM" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Marshal Offices"; - name = "\improper Marshal Offices Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"MS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"Nc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/armor/riot{ - pixel_y = -6; - pixel_x = -8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"No" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/red/west, -/area/bigredv2/outside/marshal_office) -"NQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) -"Ow" = ( -/obj/structure/surface/table, -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"Px" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Holding Cell" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"PL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"Qs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal{ - pixel_x = 1 - }, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/marshal_office) -"QW" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"Ro" = ( -/obj/item/ammo_casing/shell, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_x = -8 - }, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = -6; - pixel_y = -18 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"RJ" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"Sa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/rack, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"Sf" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"Sj" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/beret/sec/warden{ - pixel_y = 5 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"SF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/outside/marshal_office) -"ST" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison"; - icon_state = "door_open" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) -"UU" = ( -/obj/item/ammo_casing/shell, -/obj/item/storage/box/MRE{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"VC" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/platingdmg1, -/area/bigredv2/outside/marshal_office) -"VS" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"VX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/marshal_office) -"Wi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"Ww" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, -/obj/effect/decal/cleanable/blood/drip, -/obj/item/shard, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"YT" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_y = -7; - pixel_x = -7 - }, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) - -(1,1,1) = {" -aa -VS -ab -uy -ab -ab -ST -aO -aY -bh -ah -by -bM -by -by -at -cz -cN -ah -ah -ah -dj -"} -(2,1,1) = {" -ab -aa -aa -at -aw -ab -ah -aP -aY -bi -ah -by -cZ -cZ -cZ -at -cA -bi -bG -cZ -gJ -dj -"} -(3,1,1) = {" -ab -aa -aa -at -at -at -ah -aP -aY -bi -ah -bA -cZ -cZ -cZ -fh -cA -cO -cU -cZ -ci -dj -"} -(4,1,1) = {" -ac -aa -aa -at -kG -az -ah -PL -aZ -bi -ah -bB -bN -bX -wL -at -cA -cP -bG -cZ -df -dj -"} -(5,1,1) = {" -ab -ak -sR -jj -ap -ap -np -aQ -ba -bj -ah -at -at -at -at -at -Kb -bk -ah -ah -ah -dj -"} -(6,1,1) = {" -zv -ab -MS -at -ab -ab -ah -aR -iH -bk -ah -ca -No -bY -rL -cZ -cA -bk -bG -cZ -ix -dj -"} -(7,1,1) = {" -ac -ab -Wi -at -at -at -ah -aR -bb -bl -ah -bD -by -bZ -cj -cZ -cA -bk -cV -cZ -ci -dj -"} -(8,1,1) = {" -af -ab -aw -at -ax -az -ah -es -bc -bk -ah -bD -by -by -cj -cZ -cC -wm -bG -cZ -df -dj -"} -(9,1,1) = {" -aa -aa -uA -dl -ab -ab -Sf -aR -bc -Gs -ah -jq -rC -rC -ck -cZ -cC -bi -ah -ah -ah -dj -"} -(10,1,1) = {" -VX -al -al -at -aw -ab -ah -so -bb -gL -ah -cZ -cZ -cZ -cZ -cZ -cC -bi -bG -cZ -de -dj -"} -(11,1,1) = {" -ah -am -aq -at -at -at -ah -QW -bb -bk -zD -bE -bP -bP -cl -cr -bb -bi -Px -cZ -ci -dj -"} -(12,1,1) = {" -ah -MH -ar -yx -ay -aA -ah -QW -bd -bn -br -bF -bn -bn -cm -cs -cE -cR -bG -cZ -qm -dj -"} -(13,1,1) = {" -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -bG -bQ -bG -ah -ct -nz -cS -ah -ah -ah -dj -"} -(14,1,1) = {" -ai -ai -if -RJ -ah -aB -Ll -UU -mB -ah -bs -Lq -ut -qM -bG -aP -bc -FK -bG -cZ -de -dj -"} -(15,1,1) = {" -aj -aj -aj -cq -ah -Io -Ro -sy -yY -ah -Ow -pj -LM -uX -bG -cu -bc -bk -cV -cZ -ci -dj -"} -(16,1,1) = {" -aj -aj -aj -cq -ah -aD -mz -HS -Ml -ah -HO -rA -Nc -gV -cn -ui -AG -bk -bG -cZ -df -dj -"} -(17,1,1) = {" -aj -aj -bO -cq -ah -dt -Ww -Hl -xF -ah -pG -xk -bR -Ek -co -lU -uo -bk -ah -ah -ah -dj -"} -(18,1,1) = {" -aj -aj -do -ai -ah -hc -za -Qs -BS -ah -Sj -FA -vi -uX -yb -jn -cF -bk -cW -db -dg -MM -"} -(19,1,1) = {" -aj -bO -gu -ai -ah -ea -dG -tu -IR -ah -jo -aN -Sa -pw -bL -wB -hF -NQ -bG -dc -dh -MM -"} -(20,1,1) = {" -bO -gu -ai -ai -ah -qG -Fs -nV -SF -Ee -ug -bg -ov -cg -bp -AI -Ho -bk -ah -bG -bG -dj -"} -(21,1,1) = {" -cb -ai -ai -ai -ah -YT -DR -Mq -VC -ah -bx -jW -bV -ch -ah -aR -cL -cT -cX -dd -dd -dk -"} -(22,1,1) = {" -cq -ah -ah -ah -ah -ah -ah -ip -ah -ah -ah -bL -bW -bG -ah -cy -cM -qX -cY -cY -di -cY -"} diff --git a/maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm b/maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm deleted file mode 100644 index 8b49fafe5290..000000000000 --- a/maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm +++ /dev/null @@ -1,249 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"b" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/telecomm) -"c" = ( -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/telecomm) -"d" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"e" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"f" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"g" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/telecomm) -"h" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"j" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm) -"k" = ( -/obj/effect/decal/cleanable/blood/tracks, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/telecomm) -"l" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/telecomm) -"m" = ( -/obj/effect/decal/cleanable/blood/tracks, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/telecomm) -"n" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/telecomm) -"o" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/damaged3/west, -/area/bigredv2/outside/telecomm) -"p" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/telecomm) -"q" = ( -/turf/open/floor/damaged3/west, -/area/bigredv2/outside/telecomm) -"r" = ( -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/telecomm) -"s" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/telecomm) -"t" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/telecomm) -"u" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/telecomm) -"v" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/telecomm) -"w" = ( -/obj/structure/sign/safety/hazard, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/telecomm) -"x" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/telecomm) -"y" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz1_telecomm_cas) -"z" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz1_telecomm_cas) -"A" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_telecomm_cas) -"B" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz1_telecomm_cas) -"C" = ( -/turf/open/mars_cave, -/area/bigredv2/outside/lz1_telecomm_cas) -"D" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigred/ground/garage_workshop) -"E" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave, -/area/bigredv2/outside/lz1_telecomm_cas) -"F" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_telecomm_cas) -"G" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/outside/lz1_telecomm_cas) -"U" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz1_telecomm_cas) - -(1,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -"} -(2,1,1) = {" -b -b -b -b -t -b -z -B -A -A -A -"} -(3,1,1) = {" -j -j -j -n -q -w -y -A -A -B -G -"} -(4,1,1) = {" -d -e -g -s -o -x -y -A -A -A -U -"} -(5,1,1) = {" -e -c -m -k -p -u -y -A -A -A -A -"} -(6,1,1) = {" -e -f -h -l -q -b -y -A -A -A -A -"} -(7,1,1) = {" -e -e -j -e -r -b -a -A -C -C -C -"} -(8,1,1) = {" -e -e -j -e -v -w -a -a -E -F -F -"} -(9,1,1) = {" -b -b -b -b -b -b -a -a -D -D -D -"} diff --git a/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm b/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm deleted file mode 100644 index 897f76d0f656..000000000000 --- a/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm +++ /dev/null @@ -1,2042 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ai" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"ak" = ( -/obj/effect/spawner/random/tool, -/turf/template_noop, -/area/template_noop) -"al" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"am" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"an" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"ao" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"aq" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/engineering) -"as" = ( -/turf/open/mars, -/area/bigredv2/outside/s) -"au" = ( -/turf/template_noop, -/area/template_noop) -"aD" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"aE" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"aF" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"aT" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"aU" = ( -/obj/structure/surface/rack, -/obj/item/device/camera_film, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering) -"aV" = ( -/obj/structure/surface/rack, -/obj/item/device/analyzer, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"aW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"aY" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"aZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"ba" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/lightreplacer, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/engineering) -"be" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"bi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/mask/breath, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/sheet/metal, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"bl" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/machinery/door_control{ - id = "Engineering"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"bm" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bn" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/welding, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bp" = ( -/obj/item/folder/yellow, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"bq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engineering Workshop" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"br" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"bu" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engine Reactor Control" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/telecomm/engi) -"bv" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bw" = ( -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"bx" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"by" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bA" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"bB" = ( -/obj/item/stack/sheet/glass, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/firstaid/rad, -/turf/template_noop, -/area/template_noop) -"bD" = ( -/obj/structure/window_frame/solaris/reinforced, -/obj/effect/decal/cleanable/molten_item, -/turf/open/floor/plating, -/area/bigredv2/outside/telecomm/engi) -"bE" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/telecomm/engi) -"bF" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/telecomm/engi) -"bG" = ( -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/telecomm/engi) -"bH" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bJ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bK" = ( -/obj/item/folder/yellow, -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"bL" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bM" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) -"bN" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering) -"bO" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bP" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"bQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2, -/area/bigredv2/outside/engineering) -"bR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"bS" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm/engi) -"bT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/telecomm/engi) -"bU" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/telecomm/engi) -"bV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"bZ" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/pen, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"ca" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = -32 - }, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering) -"ce" = ( -/obj/item/tool/lighter/random, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"cf" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"cg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"ch" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"ck" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/radiation, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/outside/engineering) -"cl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/welding, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"cm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"cn" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 1; - name = "\improper Engine Reactor" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"co" = ( -/obj/structure/closet/radiation, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"cp" = ( -/obj/item/folder/yellow, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"cq" = ( -/obj/effect/decal/cleanable/ash, -/obj/structure/machinery/power/breakerbox, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/telecomm/engi) -"cr" = ( -/obj/effect/decal/cleanable/molten_item, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/telecomm/engi) -"cs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engine Reactor Control" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/telecomm/engi) -"ct" = ( -/obj/structure/machinery/door_control{ - desc = "A remote control-switch for opening the engines blast doors."; - id = "rad_door"; - name = "Reactor Radiation Shielding control"; - pixel_x = 30; - req_access_txt = "7" - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/telecomm/engi) -"cv" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engine Reactor Control" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/telecomm/engi) -"cw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"cx" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"cy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"cz" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"cA" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"cB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"cC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"cD" = ( -/obj/structure/machinery/computer/area_atmos, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering) -"cE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/high_rad{ - pixel_x = -32 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"cF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"cG" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Engineering"; - name = "\improper Engineering Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"cH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/effect/landmark/static_comms/net_two{ - broken_on_spawn = 1 - }, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/telecomm/engi) -"cI" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/extinguisher, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"cK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/molten_item, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm/engi) -"cM" = ( -/turf/open/mars, -/area/bigredv2/outside/lz2_south_cas) -"cN" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/lz2_south_cas) -"cO" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz2_south_cas) -"cP" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"cR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"cS" = ( -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"cT" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/lz2_south_cas) -"cX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Engineering Complex" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"cY" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/lz2_south_cas) -"da" = ( -/turf/closed/wall/mineral/uranium, -/area/bigredv2/outside/engineering) -"db" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/extinguisher, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"dc" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/lz2_south_cas) -"dd" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/lz2_south_cas) -"de" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/lz2_south_cas) -"df" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"di" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"dj" = ( -/obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"dk" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"dl" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz2_south_cas) -"dn" = ( -/turf/open/mars_cave, -/area/bigredv2/outside/lz2_south_cas) -"do" = ( -/obj/structure/machinery/compressor{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"dp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light_construct{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"dq" = ( -/obj/item/bananapeel, -/obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"dr" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "rad_door"; - name = "\improper Radiation Shielding" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"dt" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/s) -"dv" = ( -/obj/structure/machinery/power/turbine, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"dx" = ( -/obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"dy" = ( -/obj/structure/machinery/power/reactor/colony{ - name = "Reactor Turbine" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"dz" = ( -/obj/structure/machinery/light_construct, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"dA" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/s) -"dC" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/s) -"dE" = ( -/obj/structure/window_frame/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"dF" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/s) -"dG" = ( -/obj/structure/machinery/power/port_gen/pacman, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"dJ" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_south_cas) -"dK" = ( -/obj/structure/machinery/compressor{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"dO" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz2_south_cas) -"dR" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_south_cas) -"dS" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz2_south_cas) -"dT" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"dU" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/outside/lz2_south_cas) -"dV" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz2_south_cas) -"dW" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/outside/lz2_south_cas) -"dX" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"dY" = ( -/obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/engineering) -"dZ" = ( -/obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"eb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"ec" = ( -/obj/structure/catwalk/bigred, -/turf/open/gm/river/desert/shallow/covered, -/area/bigredv2/outside/engineering) -"ee" = ( -/obj/effect/decal/cleanable/molten_item, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"ef" = ( -/obj/structure/machinery/light_construct{ - dir = 4 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"eh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"ei" = ( -/obj/structure/machinery/compressor{ - dir = 1 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"ej" = ( -/obj/structure/machinery/light_construct{ - dir = 4 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"ek" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light_construct{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"el" = ( -/obj/structure/machinery/light_construct{ - dir = 8 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"em" = ( -/obj/structure/machinery/light_construct{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"en" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"eo" = ( -/obj/effect/decal/cleanable/dirt/greenglow, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz2_south_cas) -"ep" = ( -/obj/item/tool/extinguisher, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"eq" = ( -/obj/effect/decal/cleanable/molten_item, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"er" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/molten_item, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"et" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/telecomm/engi) -"ev" = ( -/obj/structure/machinery/light_construct, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"ew" = ( -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"ex" = ( -/obj/effect/decal/cleanable/molten_item, -/obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/engineering) -"ey" = ( -/obj/structure/machinery/light_construct{ - dir = 4 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"ez" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"eA" = ( -/obj/structure/machinery/light_construct{ - dir = 1 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering) -"eB" = ( -/obj/effect/decal/cleanable/dirt/greenglow, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave, -/area/bigredv2/outside/lz2_south_cas) -"eC" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/molten_item, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/telecomm/engi) -"eD" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/telecomm/engi) -"eE" = ( -/obj/structure/computerframe, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/telecomm/engi) -"eF" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/telecomm/engi) -"eG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/engineering) -"eH" = ( -/obj/effect/decal/cleanable/molten_item, -/turf/open/floor/panelscorched, -/area/bigredv2/outside/engineering) -"eI" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/telecomm/engi) -"eJ" = ( -/obj/effect/decal/cleanable/molten_item, -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/engineering) -"eK" = ( -/obj/effect/decal/cleanable/molten_item, -/obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"eL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/engineering) -"eM" = ( -/obj/effect/decal/cleanable/dirt/greenglow, -/obj/effect/decal/cleanable/molten_item, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"eN" = ( -/obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz2_south_cas) -"eO" = ( -/turf/closed/wall/mineral/uranium/leaking, -/area/bigredv2/outside/engineering) -"fI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"gT" = ( -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"im" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"iQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"jr" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/lz2_south_cas) -"kN" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave, -/area/bigredv2/outside/lz2_south_cas) -"ng" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"oE" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "rad_door"; - name = "\improper Radiation Shielding" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/telecomm/engi) -"oK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"sU" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/lz2_south_cas) -"to" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"vs" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/telecomm/engi) -"vu" = ( -/obj/structure/machinery/power/apc/fully_broken{ - dir = 4 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/telecomm/engi) -"xl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/outside/engineering) -"xz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm/engi) -"yH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/telecomm/engi) -"Ah" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars, -/area/bigredv2/outside/lz2_south_cas) -"Bo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/telecomm/engi) -"CA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/telecomm/engi) -"Dh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering) -"Dq" = ( -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) -"ET" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering) -"IE" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz2_south_cas) -"KJ" = ( -/obj/structure/window_frame/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/telecomm/engi) -"Lf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"LE" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/telecomm/engi) -"Nv" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/engineering) -"NT" = ( -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/telecomm/engi) -"NX" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/lz2_south_cas) -"Ph" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz2_south_cas) -"RN" = ( -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/telecomm/engi) -"Sz" = ( -/obj/item/stack/sheet/glass, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering) -"SC" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"Tv" = ( -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/telecomm/engi) -"Uo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/podhatchfloor, -/area/bigredv2/outside/telecomm/engi) -"WI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering) - -(1,1,1) = {" -au -au -au -au -au -bp -by -ai -bX -fI -cx -cG -Ah -cT -cM -dT -dc -dl -dT -dT -dT -dT -dR -dW -dR -dR -dR -dR -dT -dT -"} -(2,1,1) = {" -au -au -au -au -au -an -bz -Nv -bY -Nv -cy -cG -NX -cO -cN -cO -dc -dl -dR -dR -dR -dR -dJ -dR -dW -dR -dR -dR -dR -dT -"} -(3,1,1) = {" -au -au -au -au -au -an -Nv -bO -Nv -Nv -cz -aq -Ph -cO -cO -cY -dd -dl -dR -dR -dR -dR -dR -dR -dR -dO -dR -dR -dR -dR -"} -(4,1,1) = {" -au -au -au -au -au -an -bA -bP -bZ -WI -cA -aq -Ph -Ph -jr -sU -de -kN -kN -kN -eB -kN -kN -kN -kN -kN -dn -dR -dR -dR -"} -(5,1,1) = {" -au -au -au -au -au -bq -aF -aF -aF -aq -aq -aq -dX -dX -aq -aq -dk -aq -aq -ex -eG -dk -dk -aq -aq -dT -dT -dS -dW -dR -"} -(6,1,1) = {" -au -au -au -au -au -ng -bw -oK -ca -aq -co -aq -cP -cR -dp -cP -df -do -dv -eb -dZ -dG -dK -dv -aq -aq -dT -dS -dV -dR -"} -(7,1,1) = {" -au -au -au -aU -bw -br -bB -Nv -fI -cn -cB -cn -cP -ez -ez -cR -cR -cP -eh -eh -eh -ew -ew -ew -aq -aq -dT -dT -dS -dR -"} -(8,1,1) = {" -au -au -au -aV -Nv -ng -Nv -Nv -gT -aq -aq -aq -db -cR -cR -eH -ew -cR -eh -eh -ew -ez -ez -cP -aq -aq -aq -dT -dS -dR -"} -(9,1,1) = {" -au -au -au -aW -ai -bs -Nv -ew -Sz -co -co -dk -cS -dj -dj -cS -ec -dj -dj -dj -ec -cS -cS -cS -cP -aq -aq -dT -dS -dR -"} -(10,1,1) = {" -bC -au -au -an -bi -ez -ez -cf -ew -cp -ew -dr -dj -dj -eO -cS -ec -cS -eO -dj -ec -cS -da -cS -dz -aq -aq -dT -dS -dR -"} -(11,1,1) = {" -au -au -au -aY -bj -ai -ai -cg -cg -cw -ew -dE -dj -dj -dj -dj -ec -cS -dj -dj -eK -dj -dj -dj -cP -aq -aq -dT -dS -dR -"} -(12,1,1) = {" -au -au -au -aZ -bQ -WI -WI -bR -ez -cC -ew -dE -dj -dj -da -cS -ec -cS -da -dj -eK -dj -eO -dj -dZ -dZ -aq -dT -dS -dR -"} -(13,1,1) = {" -au -au -au -ba -iQ -vs -vs -vs -vs -cs -vs -vs -vs -cS -cS -cS -ec -cS -ef -cS -ec -cS -dj -dj -eh -dZ -aq -dU -dV -dR -"} -(14,1,1) = {" -au -au -au -an -gT -vs -bE -eI -LE -yH -RN -eC -KJ -cS -da -cS -ec -ev -aq -em -ec -cS -da -cS -eb -eb -dY -eo -eN -dR -"} -(15,1,1) = {" -au -au -au -aZ -iQ -vs -bF -bS -Bo -CA -et -eD -bD -cS -cS -cS -cP -ew -ek -eq -ez -cS -cS -cS -ez -cR -eL -eo -dR -dR -"} -(16,1,1) = {" -ak -au -au -bb -fI -bu -bG -bT -NT -xz -RN -eE -oE -cS -da -cS -ew -ee -dy -ez -er -cS -da -cS -ew -ee -en -IE -dR -dR -"} -(17,1,1) = {" -au -au -au -bc -bk -vs -Uo -cH -cr -cK -et -eF -oE -cS -cS -cS -ew -ew -ey -ez -ez -cS -cS -cS -cP -cP -aq -IE -dR -dR -"} -(18,1,1) = {" -au -au -au -bd -iQ -vs -Tv -bU -ct -RN -vu -cq -KJ -dj -da -cS -ec -dz -aq -eA -ec -cS -da -dj -cP -cR -dk -IE -dR -dR -"} -(19,1,1) = {" -au -au -au -ng -bl -vs -vs -vs -vs -cv -vs -vs -vs -dj -dj -cS -ec -cS -el -cS -eM -dj -dj -dj -dZ -ez -dX -dT -dT -dT -"} -(20,1,1) = {" -au -au -au -ng -ck -bw -bw -di -bw -fI -ew -dr -cS -dj -eO -dj -ec -cS -da -cS -ec -dj -eO -dj -ez -ez -aq -dT -dT -dT -"} -(21,1,1) = {" -au -au -au -be -bm -bv -bv -fI -Nv -ez -ew -dr -dj -dj -dj -dj -ec -cS -cS -cS -ec -cS -dj -dj -cP -aq -aq -dT -dT -dT -"} -(22,1,1) = {" -au -au -au -ng -bn -aE -bH -fI -ch -ew -ew -dE -cS -dj -eO -cS -ec -cS -da -cS -ec -cS -da -dj -cP -eq -eJ -dT -dT -dT -"} -(23,1,1) = {" -au -au -au -ng -aD -al -ce -Nv -ew -ew -cD -aq -cS -dj -dj -dj -ec -cS -cS -cS -ec -cS -cS -cS -ew -dX -aq -dT -dT -dT -"} -(24,1,1) = {" -au -au -au -bf -bo -bo -bJ -fI -iQ -aq -aq -aq -dq -dZ -dZ -dZ -dZ -dZ -ew -ez -ez -ew -cP -cP -ee -dX -aq -dT -dT -dT -"} -(25,1,1) = {" -au -au -au -bg -to -Dh -im -bV -fI -cn -cE -cn -dZ -eh -eh -cR -cR -eh -eb -ep -ez -cP -cP -cP -dk -aq -dT -dT -dT -dT -"} -(26,1,1) = {" -au -au -au -aq -aq -bx -bK -br -cI -aq -co -dX -dx -eb -ej -dZ -df -ei -dv -ew -cP -df -do -dv -aq -dT -dT -dT -dT -dT -"} -(27,1,1) = {" -au -au -au -au -aq -aq -bL -br -cl -aq -aq -dX -dY -aq -aq -dk -eJ -eJ -eJ -aq -dk -dX -dk -aq -aq -dT -dT -dT -dT -dT -"} -(28,1,1) = {" -au -au -au -au -au -aq -bM -ao -xl -ET -ET -ET -ET -am -aq -as -as -as -as -dC -dA -au -au -au -au -au -au -au -au -au -"} -(29,1,1) = {" -au -au -au -au -au -aq -bN -Dq -cm -bR -cF -aT -Nv -Lf -aq -as -as -as -dt -dA -dF -au -au -au -au -au -au -au -au -au -"} -(30,1,1) = {" -au -au -au -au -au -aq -aq -aq -aq -aq -aq -aq -SC -cX -aq -as -as -dt -dA -dA -dA -au -au -au -au -au -au -au -au -au -"} diff --git a/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm b/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm deleted file mode 100644 index ac01a7d1f4f7..000000000000 --- a/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm +++ /dev/null @@ -1,1342 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ao" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/outside/lz2_south_cas) -"au" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/shield/riot, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"az" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"bu" = ( -/obj/structure/closet/secure_closet/marshal, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"cj" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"cR" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"dx" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_research) -"fo" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/outside/lz2_south_cas) -"fK" = ( -/obj/structure/machinery/light/double{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz2_south_cas) -"fQ" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/lz2_south_cas) -"gQ" = ( -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/caves_sw) -"ie" = ( -/obj/item/prop/helmetgarb/spent_buckshot, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz2_south_cas) -"ii" = ( -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves_sw) -"ik" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/lz2_south_cas) -"io" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_research) -"iF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_y = 3 - }, -/obj/item/newspaper, -/obj/item/shard{ - pixel_x = -8; - pixel_y = 7 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"jj" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/lz2_south_cas) -"ki" = ( -/obj/structure/machinery/light/double{ - dir = 4 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/slug/baton{ - dir = 1; - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/explosive/grenade/slug/baton{ - dir = 4; - pixel_x = 9; - pixel_y = -4 - }, -/obj/item/explosive/grenade/high_explosive/airburst/hornet_shell{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/explosive/grenade/high_explosive/airburst{ - pixel_y = 8 - }, -/obj/item/storage/box/packet/baton_slug{ - pixel_x = -7; - pixel_y = -3 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"kS" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves_sw) -"lQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_sw) -"mT" = ( -/obj/item/clothing/head/helmet/riot, -/turf/open/floor/plating/burnt_platingdmg3/west, -/area/bigredv2/caves/mining) -"nx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/lz2_south_cas) -"pn" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/caves_sw) -"qm" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_south_cas) -"qW" = ( -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves_sw) -"sJ" = ( -/obj/item/clothing/suit/storage/CMB, -/obj/structure/closet/secure_closet/marshal, -/obj/structure/machinery/light/double, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"sV" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_sw) -"uJ" = ( -/obj/item/shard{ - pixel_x = 11; - pixel_y = 8 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"vX" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves_sw) -"wn" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/lz2_south_cas) -"wJ" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lz2_south_cas) -"wK" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"wW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/prop/helmetgarb/riot_shield{ - pixel_y = -15 - }, -/obj/item/weapon/gun/launcher/grenade/m81/m79{ - pixel_x = -3; - pixel_y = 12 - }, -/obj/item/explosive/grenade/high_explosive/airburst/starshell{ - pixel_x = -11; - pixel_y = 1 - }, -/obj/item/restraint/handcuffs{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"xS" = ( -/obj/item/trash/cigbutt, -/obj/item/shard{ - pixel_x = 9; - pixel_y = -5 - }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz2_south_cas) -"yw" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves) -"zB" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"zP" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/outside/lz2_south_cas) -"AD" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6"; - pixel_y = 20 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"Be" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Marshals Mining Security Post" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"Bm" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/caves_sw) -"Bz" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"BO" = ( -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz2_south_cas) -"BY" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_research) -"En" = ( -/obj/structure/window_frame/solaris/reinforced, -/obj/item/shard{ - pixel_x = -9; - pixel_y = 8 - }, -/obj/item/shard{ - pixel_x = 5; - pixel_y = -9 - }, -/obj/item/shard, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"Et" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_research) -"Fp" = ( -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/caves_sw) -"FB" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/clothing/under/marine/ua_riot, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"FW" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/outside/lz2_south_cas) -"Jm" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/lz2_south_cas) -"Jy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/revolver/cmb, -/obj/item/device/flashlight/lamp/on{ - pixel_x = -5; - pixel_y = 17 - }, -/obj/item/clothing/mask/cigarette/cigar/havana, -/obj/item/shard, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"JV" = ( -/turf/closed/wall/wood, -/area/bigredv2/outside/lz2_south_cas) -"JW" = ( -/obj/structure/machinery/light/double, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz2_south_cas) -"KI" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"Le" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_research) -"MN" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"Nu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"OV" = ( -/obj/structure/surface/rack, -/obj/item/restraint/handcuffs{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_y = 11 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"OY" = ( -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/lz2_south_cas) -"Qn" = ( -/obj/structure/window_frame/solaris/reinforced, -/obj/item/shard, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"QO" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_research) -"QS" = ( -/obj/structure/machinery/door/poddoor/two_tile{ - name = "\improper Eta Tunnel Lockdown" - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lz2_south_cas) -"QV" = ( -/turf/open/mars_cave/mars_cave_20, -/area/bigredv2/caves_sw) -"Rm" = ( -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/lz2_south_cas) -"Sy" = ( -/obj/item/weapon/broken_bottle, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"Tm" = ( -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"Ue" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bundle, -/obj/item/restraint/handcuffs{ - pixel_y = -3 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"Uh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_15, -/area/bigredv2/caves_sw) -"UG" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_sw) -"UX" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_sw) -"VR" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"Wy" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"WV" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves_sw) -"Xl" = ( -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/outside/lz2_south_cas) -"Xm" = ( -/turf/open/floor/plating/burnt_platingdmg3/west, -/area/bigredv2/caves/mining) -"XE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"XV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window{ - dir = 1 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) -"Yt" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/outside/lz2_south_cas) -"Zk" = ( -/turf/open/mars_cave/mars_cave_16, -/area/bigredv2/caves_sw) -"Zz" = ( -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) - -(1,1,1) = {" -cR -cR -cR -cR -cR -JV -fK -wn -ik -JW -VR -Ue -XE -MN -Tm -sJ -VR -cR -cR -cR -"} -(2,1,1) = {" -cR -cR -cR -cR -cR -qm -fo -jj -jj -ie -En -iF -wK -Bz -AD -bu -VR -cR -cR -cR -"} -(3,1,1) = {" -cR -Xl -zP -cR -yw -qm -fo -fQ -Xl -xS -Qn -Jy -uJ -Sy -mT -OV -VR -cR -cR -cR -"} -(4,1,1) = {" -ao -Xl -Xl -yw -yw -yw -OY -Xl -nx -Rm -XV -cj -KI -Zz -Xm -FB -VR -cR -cR -cR -"} -(5,1,1) = {" -fo -jj -jj -QS -wJ -QS -jj -fQ -Xl -BO -Wy -ki -Zz -kq -wW -au -VR -cR -cR -cR -"} -(6,1,1) = {" -fo -jj -jj -wJ -wJ -wJ -jj -jj -jj -BO -VR -VR -Be -VR -VR -VR -VR -cR -cR -cR -"} -(7,1,1) = {" -qm -Yt -Yt -yw -yw -yw -Zk -gQ -UX -pn -zB -zB -zB -cR -cR -cR -cR -cR -cR -cR -"} -(8,1,1) = {" -FW -Jm -Jm -cR -yw -cR -cR -zB -Zk -zB -zB -zB -zB -zB -cR -cR -cR -cR -cR -cR -"} -(9,1,1) = {" -BO -qm -cR -cR -cR -cR -cR -zB -zB -Nu -zB -zB -zB -zB -qW -cR -cR -cR -cR -cR -"} -(10,1,1) = {" -BO -qm -qm -cR -cR -cR -cR -cR -zB -sV -sV -sV -sV -ii -UX -cR -cR -cR -cR -cR -"} -(11,1,1) = {" -BO -qm -qm -Jm -Jm -cR -cR -cR -cR -sV -sV -sV -sV -Uh -UX -vX -cR -cR -cR -cR -"} -(12,1,1) = {" -qm -ik -ik -qm -Jm -qm -cR -cR -cR -cR -cR -sV -sV -ii -vX -vX -cR -cR -cR -cR -"} -(13,1,1) = {" -fo -jj -Xl -BO -ik -ik -cR -cR -cR -cR -cR -cR -zB -ii -vX -vX -cR -cR -cR -cR -"} -(14,1,1) = {" -cR -cR -cR -OY -jj -jj -BO -cR -cR -cR -cR -cR -zB -ii -UX -vX -cR -cR -cR -cR -"} -(15,1,1) = {" -cR -cR -cR -UX -kS -kS -pn -cR -cR -cR -cR -zB -zB -ii -kS -UX -cR -cR -cR -cR -"} -(16,1,1) = {" -cR -cR -cR -cR -UX -UX -pn -zB -cR -cR -cR -zB -zB -Uh -UX -kS -cR -cR -cR -cR -"} -(17,1,1) = {" -cR -cR -cR -cR -UX -Fp -zB -zB -zB -cR -cR -zB -zB -ii -UX -cR -cR -cR -cR -cR -"} -(18,1,1) = {" -zB -cR -cR -WV -UX -pn -zB -zB -cR -cR -cR -zB -zB -zB -Zk -cR -cR -cR -cR -cR -"} -(19,1,1) = {" -zB -cR -cR -cR -Fp -zB -zB -zB -cR -cR -cR -zB -zB -zB -zB -cR -cR -cR -cR -cR -"} -(20,1,1) = {" -zB -zB -zB -zB -zB -qW -qW -cR -cR -cR -zB -zB -Nu -zB -zB -cR -cR -cR -cR -cR -"} -(21,1,1) = {" -pn -zB -zB -qW -Bm -UX -UX -cR -cR -cR -zB -zB -zB -zB -zB -cR -cR -cR -cR -cR -"} -(22,1,1) = {" -pn -zB -ii -UX -UX -vX -vX -cR -cR -cR -UG -UG -UG -UG -UG -cR -cR -cR -cR -cR -"} -(23,1,1) = {" -QV -qW -Bm -UX -kS -UX -vX -cR -cR -cR -cR -zB -zB -zB -qW -cR -cR -cR -cR -cR -"} -(24,1,1) = {" -UX -UX -UX -kS -Fp -gQ -UX -UX -cR -cR -cR -zB -zB -ii -kS -cR -cR -cR -cR -cR -"} -(25,1,1) = {" -UX -UX -kS -UX -pn -ii -kS -UX -cR -cR -cR -zB -qW -qW -kS -kS -cR -cR -cR -cR -"} -(26,1,1) = {" -Fp -Zk -Zk -Zk -zB -cR -UX -UX -cR -cR -cR -cR -UX -lQ -kS -kS -cR -cR -cR -cR -"} -(27,1,1) = {" -pn -zB -zB -zB -cR -cR -cR -cR -cR -cR -cR -cR -UX -kS -kS -UX -cR -cR -cR -cR -"} -(28,1,1) = {" -pn -zB -zB -zB -cR -cR -cR -cR -cR -cR -cR -cR -gQ -UX -UX -Fp -zB -cR -cR -cR -"} -(29,1,1) = {" -zB -zB -zB -zB -zB -cR -cR -cR -cR -cR -cR -cR -zB -Zk -Zk -zB -zB -cR -cR -cR -"} -(30,1,1) = {" -zB -zB -zB -zB -zB -cR -cR -cR -cR -cR -cR -cR -cR -zB -Nu -zB -zB -cR -cR -cR -"} -(31,1,1) = {" -cR -zB -zB -zB -zB -cR -cR -cR -cR -cR -cR -cR -cR -zB -zB -zB -zB -zB -cR -cR -"} -(32,1,1) = {" -cR -cR -zB -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -zB -zB -zB -zB -zB -cR -cR -"} -(33,1,1) = {" -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -zB -zB -zB -zB -cR -cR -cR -"} -(34,1,1) = {" -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -zB -zB -zB -zB -cR -cR -cR -"} -(35,1,1) = {" -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -UG -UG -UG -cR -cR -cR -"} -(36,1,1) = {" -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -Le -Le -Le -Le -cR -cR -"} -(37,1,1) = {" -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -Le -Le -az -Le -Le -Le -Le -"} -(38,1,1) = {" -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -Le -Le -Le -Le -Le -Le -Le -Le -"} -(39,1,1) = {" -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -Le -Le -Le -Le -Le -Le -Le -az -"} -(40,1,1) = {" -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -Le -Le -Le -Le -Le -io -Le -dx -"} -(41,1,1) = {" -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -cR -Le -Le -Le -QO -Le -Le -Le -Le -Le -"} -(42,1,1) = {" -yw -yw -yw -yw -cR -cR -cR -cR -cR -cR -Le -Le -Le -Et -az -Le -Le -dx -BY -cR -"} diff --git a/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm b/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm deleted file mode 100644 index 7df1e7f87dbc..000000000000 --- a/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm +++ /dev/null @@ -1,994 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ac" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port) -"ad" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"ae" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"ah" = ( -/obj/structure/window_frame/solaris, -/obj/item/shard, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"ai" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Spaceport2"; - name = "\improper Spaceport Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port) -"aP" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Spaceport2"; - name = "\improper Spaceport Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"bh" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"bi" = ( -/turf/open/mars, -/area/bigredv2/outside/nw) -"by" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/nw) -"bT" = ( -/obj/structure/fence, -/turf/open/mars, -/area/bigredv2/outside/nw) -"bY" = ( -/turf/template_noop, -/area/template_noop) -"cB" = ( -/obj/structure/surface/table, -/turf/open/floor/darkgreen2/east, -/area/bigredv2/outside/space_port) -"cS" = ( -/obj/structure/fence, -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/nw) -"dq" = ( -/obj/item/stack/rods, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/nw) -"dx" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/nw) -"dL" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/nw) -"dW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"en" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"et" = ( -/obj/item/trash/popcorn{ - pixel_y = 9 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"fA" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"fT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/bigredv2/outside/space_port) -"gh" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"gi" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/nw) -"gp" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/outside/space_port) -"gD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/bigredv2/outside/space_port) -"ic" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"iM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"iV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"jv" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"lf" = ( -/turf/open/asphalt/cement/cement2, -/area/bigredv2/outside/space_port) -"lM" = ( -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"lW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/bigredv2/outside/space_port) -"mV" = ( -/obj/effect/decal/strata_decals/grime/grime2, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/bigredv2/outside/nw) -"na" = ( -/obj/structure/largecrate, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"ob" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"qi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"qA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"qL" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"qY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"sC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"sD" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"ta" = ( -/obj/effect/landmark/crap_item, -/turf/open/asphalt/cement/cement9, -/area/bigredv2/outside/space_port) -"tv" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/nw) -"uh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"uu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1/north, -/area/bigredv2/outside/space_port) -"uF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"ve" = ( -/obj/structure/lz_sign/solaris_sign, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"vv" = ( -/obj/item/trash/hotdog{ - pixel_x = -12; - pixel_y = -11 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"vN" = ( -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"vW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"wu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"wD" = ( -/obj/structure/surface/table, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"wP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/bigredv2/outside/space_port) -"wU" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/darkgreen2/north, -/area/bigredv2/outside/space_port) -"wV" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"xc" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"xn" = ( -/turf/open/floor/darkgreen2/west, -/area/bigredv2/outside/space_port) -"xy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/nw) -"xB" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/outside/space_port) -"yp" = ( -/obj/item/shard, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"yI" = ( -/turf/open/floor/darkgreen2/north, -/area/bigredv2/outside/space_port) -"zc" = ( -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -9 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/nw) -"zi" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"Ar" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"Az" = ( -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/darkgreen2/north, -/area/bigredv2/outside/space_port) -"AJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"Bc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/space_port) -"Bs" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"BC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"BT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"Ce" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement12, -/area/bigredv2/outside/space_port) -"CD" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"DD" = ( -/turf/open/asphalt/cement/cement15, -/area/bigredv2/outside/space_port) -"Fd" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"Fw" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/nw) -"FL" = ( -/obj/item/shard, -/turf/open/floor/darkgreen2/north, -/area/bigredv2/outside/space_port) -"FW" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"GQ" = ( -/obj/item/stack/sheet/metal, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/nw) -"GU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement, -/area/bigredv2/outside/space_port) -"Hu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement14, -/area/bigredv2/outside/space_port) -"Hz" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/outside/space_port) -"It" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"IL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"Je" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"Jt" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/nw) -"JE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/bigredv2/outside/space_port) -"JY" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"Kn" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"Ku" = ( -/obj/item/trash/cigbutt{ - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"KV" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/nw) -"Lq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"Mv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/nw) -"MD" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkgreen2/east, -/area/bigredv2/outside/space_port) -"MH" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"Nj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"Ox" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/nw) -"OM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Spaceport" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"OT" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/nw) -"OX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/bigredv2/outside/space_port) -"QI" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"Rq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"Rt" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/nw) -"Sg" = ( -/obj/structure/fence, -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/nw) -"St" = ( -/obj/item/trash/waffles{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"Sw" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/nw) -"TC" = ( -/obj/item/trash/cigbutt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"TD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"TP" = ( -/turf/open/asphalt/cement/cement12, -/area/bigredv2/outside/space_port) -"TW" = ( -/turf/open/asphalt/cement, -/area/bigredv2/outside/space_port) -"Uv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"Uw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"UY" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"Vh" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"Vi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"Wu" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"WW" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"WZ" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"Xi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/nw) -"XF" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"XL" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/nw) -"XU" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/door_control{ - id = "Spaceport2"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor/darkgreen2/east, -/area/bigredv2/outside/space_port) -"XX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate, -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/nw) -"Yf" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/bigredv2/outside/nw) -"Yw" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/nw) -"Yz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/bigredv2/outside/space_port) -"YG" = ( -/turf/open/asphalt/cement/cement1/north, -/area/bigredv2/outside/space_port) -"YX" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) -"Zq" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/outside/space_port) -"ZJ" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/nw) -"ZP" = ( -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/space_port) - -(1,1,1) = {" -YX -QI -QI -QI -QI -Uv -ac -bh -bh -by -by -by -bY -bY -bY -bY -bY -bY -bi -"} -(2,1,1) = {" -Wu -Wu -QI -uF -sC -Rq -ac -bi -Fw -Sw -Xi -Sw -Yf -Fd -bY -bY -Fd -ZJ -bi -"} -(3,1,1) = {" -ac -ac -lf -JE -Hu -ac -ac -Sw -Vi -jv -jv -jv -bT -bT -JY -Ar -bi -bi -bi -"} -(4,1,1) = {" -ac -QI -ZP -lW -fT -na -ac -Vi -Vi -jv -XX -Mv -KV -bT -uh -TD -bi -bi -bi -"} -(5,1,1) = {" -ad -QI -ZP -gD -TP -QI -ac -xc -xc -jv -FW -MH -CD -bT -uh -Ar -bi -bi -bi -"} -(6,1,1) = {" -ae -yp -Bc -gD -TP -na -ac -xc -Vi -jv -FW -WW -sD -bT -JY -Ar -by -bi -bi -"} -(7,1,1) = {" -ac -QI -Bc -lW -TP -QI -ac -xc -jv -jv -tv -gi -Rt -bT -JY -Ar -bi -bi -bi -"} -(8,1,1) = {" -ac -WZ -Bc -lW -TW -OX -Hu -zc -fA -IL -IL -gh -ob -gh -vN -vN -gh -vv -gh -"} -(9,1,1) = {" -ad -QI -ZP -wP -GU -Yz -Ce -qi -qA -qA -qA -wu -vN -XF -vN -vN -vN -XF -vW -"} -(10,1,1) = {" -ad -QI -ta -uu -YG -YG -DD -mV -Yw -Fd -vN -BT -vW -Fd -Fd -Fd -Fd -Fd -Fd -"} -(11,1,1) = {" -ac -WZ -QI -Uv -QI -QI -ac -ve -jv -jv -JY -BT -Vh -jv -xc -xc -xc -xc -xc -"} -(12,1,1) = {" -ac -ac -Bs -OM -aP -aP -ac -xc -xc -jv -uh -BT -Ar -jv -xc -xc -xc -xc -xc -"} -(13,1,1) = {" -ac -Hz -dW -iV -xn -xB -ac -xy -Jt -xc -JY -BT -vW -gh -gh -ic -Ox -gh -gh -"} -(14,1,1) = {" -ac -wU -Lq -iM -It -en -ac -OT -by -dL -JY -BT -vN -Kn -UY -vN -vN -vN -vN -"} -(15,1,1) = {" -ae -FL -zi -Bs -wV -qL -ai -by -by -dL -St -Nj -qY -AJ -AJ -AJ -AJ -AJ -AJ -"} -(16,1,1) = {" -ah -yI -Bs -iM -iM -lM -ai -GQ -bi -cS -et -vN -Ar -jv -jv -Jt -Jt -xc -xc -"} -(17,1,1) = {" -ai -yI -iM -Je -Bs -Uw -ai -by -by -cS -JY -Ku -TC -jv -dx -bi -bi -XL -Jt -"} -(18,1,1) = {" -ac -Az -Bs -iM -BC -wD -ac -dq -bi -cS -JY -vN -Ar -Sg -bi -bi -bi -bi -bi -"} -(19,1,1) = {" -aj -Zq -MD -XU -cB -gp -ac -by -bi -cS -JY -vN -Vh -Sg -bi -bi -bi -bi -bi -"} diff --git a/maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm b/maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm deleted file mode 100644 index 5285427c0079..000000000000 --- a/maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm +++ /dev/null @@ -1,244 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"b" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"c" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/obj/item/tool/pickaxe, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"d" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"e" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"f" = ( -/obj/structure/surface/table, -/obj/item/storage/toolbox, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"g" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"h" = ( -/obj/structure/surface/table, -/obj/item/tool/pickaxe, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"i" = ( -/obj/item/ore, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"j" = ( -/obj/effect/decal/remains/human, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"k" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"l" = ( -/obj/structure/surface/rack, -/obj/item/lightstick/red, -/obj/item/lightstick/red, -/obj/item/lightstick/red, -/obj/item/lightstick/red, -/obj/item/storage/box/lightstick/red, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"m" = ( -/obj/item/tool/shovel, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"n" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port) -"o" = ( -/obj/item/tool/pickaxe, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"p" = ( -/obj/item/tool/warning_cone, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"q" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/gas, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"r" = ( -/obj/structure/surface/table, -/obj/item/pizzabox, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"s" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"t" = ( -/obj/structure/ore_box, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"u" = ( -/obj/structure/sign/safety/hazard, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port) -"v" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Mining Operations" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"A" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"P" = ( -/obj/item/ore, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) - -(1,1,1) = {" -a -a -a -a -a -l -n -n -n -n -"} -(2,1,1) = {" -a -a -a -a -i -A -P -A -A -u -"} -(3,1,1) = {" -a -a -a -d -e -m -e -e -A -v -"} -(4,1,1) = {" -a -a -b -e -j -e -e -i -A -u -"} -(5,1,1) = {" -a -a -c -e -e -i -e -e -q -n -"} -(6,1,1) = {" -a -a -a -f -e -e -e -e -r -n -"} -(7,1,1) = {" -a -a -a -g -e -i -o -e -s -n -"} -(8,1,1) = {" -a -a -a -h -e -e -j -e -P -n -"} -(9,1,1) = {" -a -a -a -a -k -k -e -p -t -n -"} -(10,1,1) = {" -a -a -a -e -e -e -k -k -a -n -"} diff --git a/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm b/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm deleted file mode 100644 index 0b6af75969c2..000000000000 --- a/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm +++ /dev/null @@ -1,512 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ab" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/chapel) -"ac" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Chapel"; - name = "\improper Chapel Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/chapel) -"ad" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Chapel" - }, -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"ae" = ( -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"af" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"ag" = ( -/obj/item/tool/candle, -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"ah" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/chapel/north, -/area/bigredv2/outside/chapel) -"ai" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"ak" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"al" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/candle, -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"an" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/blood{ - layer = 3; - pixel_x = 24 - }, -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"ao" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Chapel"; - name = "\improper Chapel Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/chapel) -"ap" = ( -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"aq" = ( -/turf/open/floor/rampbottom/north, -/area/bigredv2/outside/chapel) -"as" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/chapel/west, -/area/bigredv2/outside/chapel) -"at" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/chapel/east, -/area/bigredv2/outside/chapel) -"au" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"av" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/chapel/east, -/area/bigredv2/outside/chapel) -"aw" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/chapel/north, -/area/bigredv2/outside/chapel) -"ax" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/chapel/north, -/area/bigredv2/outside/chapel) -"ay" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/chapel/north, -/area/bigredv2/outside/chapel) -"az" = ( -/obj/item/tool/candle, -/turf/open/floor/chapel/north, -/area/bigredv2/outside/chapel) -"aA" = ( -/turf/open/floor/chapel/east, -/area/bigredv2/outside/chapel) -"aB" = ( -/obj/structure/surface/table/woodentable, -/obj/item/tool/candle, -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"aC" = ( -/obj/item/tool/candle{ - icon_state = "candle2" - }, -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"aD" = ( -/obj/structure/surface/table/woodentable, -/obj/item/weapon/chainofcommand, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"aE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"aF" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/chapel, -/area/bigredv2/outside/chapel) -"aG" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/chapel/west, -/area/bigredv2/outside/chapel) -"aH" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/chapel/west, -/area/bigredv2/outside/chapel) -"aI" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/chapel, -/area/bigredv2/outside/chapel) -"aJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/chapel/west, -/area/bigredv2/outside/chapel) -"aK" = ( -/turf/open/floor/chapel/west, -/area/bigredv2/outside/chapel) -"aL" = ( -/turf/open/floor/chapel, -/area/bigredv2/outside/chapel) -"aN" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/blood, -/obj/item/clothing/head/cardborg, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"aO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/surface/table/woodentable, -/obj/item/storage/bible, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"aP" = ( -/obj/item/tool/candle{ - icon_state = "candle3"; - item_state = "candle3" - }, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"aR" = ( -/obj/item/organ/heart, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"aS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"aT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/candle{ - icon_state = "candle3" - }, -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"aU" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/item/tool/candle, -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"aW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"aX" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"aZ" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"ba" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/chapel/east, -/area/bigredv2/outside/chapel) -"bc" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3; - pixel_x = 24 - }, -/turf/open/floor/chapel/north, -/area/bigredv2/outside/chapel) -"be" = ( -/turf/open/floor/rampbottom, -/area/bigredv2/outside/chapel) -"bh" = ( -/obj/item/tool/candle, -/turf/open/floor/chapel/west, -/area/bigredv2/outside/chapel) -"bi" = ( -/obj/item/tool/candle, -/turf/open/floor/chapel, -/area/bigredv2/outside/chapel) -"bj" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"bk" = ( -/obj/structure/machinery/door_control{ - id = "Chapel"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) -"bl" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"bm" = ( -/obj/structure/machinery/power/apc/power/south, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"bp" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor/darkish, -/area/bigredv2/outside/chapel) -"bq" = ( -/obj/item/tool/candle{ - icon_state = "candle4" - }, -/turf/open/floor/cult, -/area/bigredv2/outside/chapel) - -(1,1,1) = {" -ab -ab -ao -ao -ao -ao -ao -ab -ab -"} -(2,1,1) = {" -ab -af -ap -aP -aR -bq -ap -bk -ab -"} -(3,1,1) = {" -ac -ae -aq -au -aN -au -be -ae -ab -"} -(4,1,1) = {" -ac -ae -aZ -aD -aO -aZ -aZ -ae -ab -"} -(5,1,1) = {" -ab -aC -ah -as -aE -ah -as -bl -ab -"} -(6,1,1) = {" -ac -ag -at -aF -aW -at -aF -ae -ab -"} -(7,1,1) = {" -ac -ae -ay -aG -aT -ay -aG -ae -ab -"} -(8,1,1) = {" -ab -ae -av -aF -aS -ba -aI -ae -ab -"} -(9,1,1) = {" -ac -ai -aw -aH -aW -ay -aH -ae -ab -"} -(10,1,1) = {" -ac -ae -av -aI -aW -at -aF -bm -ab -"} -(11,1,1) = {" -ab -ak -ax -aJ -aU -ay -aH -ae -ab -"} -(12,1,1) = {" -ac -al -av -aI -aS -av -aI -aC -ab -"} -(13,1,1) = {" -ac -al -ay -aH -aW -ay -aH -ag -ab -"} -(14,1,1) = {" -ab -aW -av -aI -aW -av -aI -bl -ab -"} -(15,1,1) = {" -ad -an -az -aK -aS -bc -bh -ae -ab -"} -(16,1,1) = {" -ae -ae -aA -aL -aX -aA -bi -ae -ab -"} -(17,1,1) = {" -ab -ae -aB -aB -ae -bj -bj -bp -ab -"} diff --git a/maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm b/maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm deleted file mode 100644 index 42c8551d2395..000000000000 --- a/maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm +++ /dev/null @@ -1,357 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"b" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/nw) -"c" = ( -/turf/open/floor/plating/warnplate/north, -/area/bigredv2/outside/nw) -"d" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/warnplate/north, -/area/bigredv2/outside/nw) -"e" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"f" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"g" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"h" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"i" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/telecomm/warehouse) -"j" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"k" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"l" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"m" = ( -/obj/item/shard, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"n" = ( -/turf/open/floor/plating/warnplate/west, -/area/bigredv2/outside/nw) -"p" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/west, -/area/bigredv2/outside/nw) -"q" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"r" = ( -/obj/effect/landmark/hunter_primary, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"s" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"u" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"v" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"w" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"x" = ( -/obj/structure/prop/dam/crane/damaged, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"y" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"z" = ( -/obj/structure/machinery/light, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"A" = ( -/obj/structure/surface/rack, -/obj/item/alienjar, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"B" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) -"D" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/bcircuit, -/area/bigredv2/outside/telecomm/warehouse) -"H" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/plating/warnplate/southwest, -/area/bigredv2/outside/telecomm/warehouse) -"K" = ( -/turf/open/floor/bcircuit, -/area/bigredv2/outside/telecomm/warehouse) -"O" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating/warnplate/west, -/area/bigredv2/outside/telecomm/warehouse) -"S" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5; - pixel_x = -1 - }, -/turf/open/floor/plating/warnplate/east, -/area/bigredv2/outside/telecomm/warehouse) -"T" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/plating/warnplate/southeast, -/area/bigredv2/outside/telecomm/warehouse) -"V" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/telecomm/warehouse) -"Z" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5; - pixel_x = -1 - }, -/turf/open/floor/plating/warnplate/east, -/area/bigredv2/outside/telecomm/warehouse) - -(1,1,1) = {" -b -b -b -n -p -n -b -b -b -b -"} -(2,1,1) = {" -i -O -O -H -q -j -u -j -j -b -"} -(3,1,1) = {" -i -K -D -V -q -j -v -w -y -b -"} -(4,1,1) = {" -i -K -K -V -q -j -j -j -j -b -"} -(5,1,1) = {" -i -S -Z -T -q -j -j -j -j -b -"} -(6,1,1) = {" -b -g -m -j -r -j -v -w -y -b -"} -(7,1,1) = {" -b -h -m -j -q -j -j -j -j -b -"} -(8,1,1) = {" -b -f -j -j -q -j -j -j -z -b -"} -(9,1,1) = {" -c -j -j -j -q -j -j -g -g -b -"} -(10,1,1) = {" -c -j -j -j -q -j -m -h -g -b -"} -(11,1,1) = {" -d -k -k -k -s -j -j -m -A -b -"} -(12,1,1) = {" -b -l -j -j -q -j -j -j -j -b -"} -(13,1,1) = {" -b -f -j -j -q -j -j -x -B -b -"} -(14,1,1) = {" -b -l -j -j -q -j -j -j -j -b -"} -(15,1,1) = {" -b -e -j -j -q -j -v -w -y -b -"} -(16,1,1) = {" -b -j -j -j -q -j -j -j -j -b -"} diff --git a/maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm b/maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm deleted file mode 100644 index 291b83899b4b..000000000000 --- a/maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm +++ /dev/null @@ -1,288 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"c" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"d" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port) -"e" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/lz1_north_cas) -"f" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"h" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"i" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/outside/lz1_north_cas) -"j" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz1_north_cas) -"F" = ( -/obj/structure/sign/safety/hazard, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port) - -(1,1,1) = {" -a -a -a -a -a -a -a -d -d -d -f -h -f -d -d -"} -(2,1,1) = {" -a -a -a -a -a -a -a -a -a -d -d -F -d -d -a -"} -(3,1,1) = {" -a -a -a -a -a -a -a -a -a -a -j -j -j -j -a -"} -(4,1,1) = {" -a -a -a -a -a -a -a -a -a -c -c -c -c -c -a -"} -(5,1,1) = {" -a -a -a -a -a -a -a -a -a -c -c -c -c -a -a -"} -(6,1,1) = {" -a -a -a -a -a -a -a -a -c -c -c -c -c -a -a -"} -(7,1,1) = {" -a -a -a -a -a -a -c -c -c -c -c -c -a -a -a -"} -(8,1,1) = {" -a -a -a -a -c -c -c -c -c -c -c -c -a -a -a -"} -(9,1,1) = {" -c -c -c -c -c -c -c -c -c -c -c -c -c -a -a -"} -(10,1,1) = {" -c -c -c -c -c -c -c -c -c -c -c -c -c -c -a -"} -(11,1,1) = {" -c -c -c -c -c -c -c -a -a -c -c -c -c -c -e -"} -(12,1,1) = {" -c -c -c -c -c -c -a -a -a -a -c -c -c -c -e -"} -(13,1,1) = {" -c -c -a -a -a -a -a -a -a -c -c -c -c -c -e -"} -(14,1,1) = {" -c -c -c -a -a -a -a -a -a -c -c -c -c -c -e -"} -(15,1,1) = {" -c -c -c -c -a -a -a -a -c -c -c -i -c -c -e -"} diff --git a/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm b/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm deleted file mode 100644 index 45d1945cdcf9..000000000000 --- a/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm +++ /dev/null @@ -1,732 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ab" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"ac" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"ad" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"af" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Spaceport" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"ah" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"ai" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"aj" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"al" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"am" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"an" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/space_port) -"ap" = ( -/obj/effect/decal/cleanable/blood/gibs/up, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"aq" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"ar" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/door_control{ - id = "Spaceport"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/obj/item/tool/pen, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"at" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"au" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"av" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"ax" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Spaceport"; - name = "\improper Spaceport Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"ay" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/landing/console) -"az" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"aA" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aB" = ( -/obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aC" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aD" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"aE" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"aF" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"aG" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aH" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/outside/space_port) -"aI" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"aJ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"aK" = ( -/obj/structure/machinery/computer/cameras, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"aL" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"aM" = ( -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"aN" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkgreen2/southeast, -/area/bigredv2/outside/space_port) -"aP" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Spaceport"; - name = "\improper Spaceport Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aQ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aU" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/asteroidplating, -/area/bigredv2/outside/space_port) -"aV" = ( -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) -"aW" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) -"aX" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) -"aY" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/plating/warnplate, -/area/bigredv2/outside/space_port) -"bd" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"be" = ( -/obj/item/shard, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"bf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) -"bg" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"bi" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"bj" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"bk" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"bl" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"bm" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"bn" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"bs" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/space_port) -"ch" = ( -/obj/structure/cargo_container/arious/rightmid, -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"dg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-in" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"fU" = ( -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/space_port) -"ii" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-in" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"kN" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/space_port) -"lo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-in" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"mx" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"oV" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"tf" = ( -/obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-in" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"tu" = ( -/obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"xP" = ( -/obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"yf" = ( -/obj/structure/cargo_container/watatsumi/rightmid, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-in" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"yg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"yZ" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"Aw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-in" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"DA" = ( -/obj/structure/cargo_container/arious/right, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-in" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"In" = ( -/obj/structure/cargo_container/arious/leftmid, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-in" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"KQ" = ( -/obj/structure/cargo_container/watatsumi/rightmid, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-in" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"NH" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/space_port) -"OZ" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-in" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"QA" = ( -/obj/structure/largecrate/random/barrel/true_random, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"Ta" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"Ww" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-in" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) - -(1,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -aU -ab -bf -ab -bf -bf -ab -ab -ab -"} -(2,1,1) = {" -ac -ac -ac -ac -ac -ac -ac -ac -aV -ac -ii -lo -fU -fU -ii -lo -QA -"} -(3,1,1) = {" -ac -ac -ac -ac -aA -ac -ac -ac -aV -ac -tu -Ta -fU -fU -yg -mx -ac -"} -(4,1,1) = {" -ac -ac -ac -ac -aB -ac -ac -ac -aV -ac -Aw -dg -fU -fU -Aw -KQ -bl -"} -(5,1,1) = {" -ac -ac -ac -ac -aC -ac -ac -ac -aW -ac -ac -ac -fU -fU -ac -aC -bm -"} -(6,1,1) = {" -ad -al -ac -ac -ac -ac -ac -ac -aX -ac -ii -lo -fU -fU -ii -lo -bn -"} -(7,1,1) = {" -ac -ac -ac -ac -ac -aG -ac -ac -aY -ac -yg -xP -fU -fU -yg -Ta -ac -"} -(8,1,1) = {" -ac -ac -ac -ac -ac -ac -ac -ac -aV -ac -Aw -dg -fU -kN -Aw -dg -ac -"} -(9,1,1) = {" -ac -am -ac -ac -ac -am -ac -ac -aV -ac -bg -ac -fU -NH -ac -ac -ac -"} -(10,1,1) = {" -af -an -an -ax -ax -an -an -ac -aV -ac -ii -lo -fU -bs -ii -lo -ac -"} -(11,1,1) = {" -ai -oV -at -ay -aD -aH -an -aT -aV -ac -yg -Ta -fU -fU -yg -Ta -ac -"} -(12,1,1) = {" -ah -ah -ah -ah -aE -aI -aP -ac -aV -ac -Aw -OZ -fU -fU -Aw -tf -ac -"} -(13,1,1) = {" -ai -ah -ai -ah -ah -aJ -aP -ac -aV -ac -ac -ac -fU -fU -ac -ac -bi -"} -(14,1,1) = {" -ai -ap -ai -ai -ah -aK -an -ac -aV -bd -ii -lo -fU -fU -Ww -In -bj -"} -(15,1,1) = {" -ah -ah -au -ah -ah -aL -aQ -ac -aV -be -yZ -Ta -fU -fU -yg -ch -bk -"} -(16,1,1) = {" -ah -aq -ah -ah -ai -aM -aR -ac -aV -ac -yf -dg -fU -fU -Aw -DA -ac -"} -(17,1,1) = {" -aj -ar -av -az -aF -aN -aP -ac -aV -ac -aC -ac -fU -fU -ac -ac -ac -"} diff --git a/maps/map_files/BigRed/sprinkles/25.vault_v2.dmm b/maps/map_files/BigRed/sprinkles/25.vault_v2.dmm deleted file mode 100644 index 5c1c05d3e258..000000000000 --- a/maps/map_files/BigRed/sprinkles/25.vault_v2.dmm +++ /dev/null @@ -1,546 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"ab" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 - }, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"ac" = ( -/obj/item/tool/pickaxe/drill, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"ad" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave, -/area/bigredv2/caves_lambda) -"ae" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_lambda) -"af" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_lambda) -"ag" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"ah" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_lambda) -"ai" = ( -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_lambda) -"aj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_lambda) -"ak" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"al" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"am" = ( -/obj/structure/machinery/door_control{ - id = "sci_br"; - name = "Observation Shutters"; - pixel_y = 28 - }, -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"an" = ( -/obj/effect/decal/cleanable/mucus, -/obj/structure/machinery/door_control{ - id = "sci_br"; - name = "Observation Shutters"; - pixel_y = 28 - }, -/obj/effect/landmark/corpsespawner/pmc, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"ao" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 - }, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"ap" = ( -/obj/structure/sign/safety/bulkhead_door, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/lambda/breakroom) -"aq" = ( -/turf/open/floor/almayer/w_y0/north, -/area/bigredv2/caves/lambda/breakroom) -"ar" = ( -/obj/structure/filingcabinet{ - density = 0; - layer = 3.1; - pixel_x = 8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/bigredv2/caves/lambda/breakroom) -"as" = ( -/obj/structure/filingcabinet{ - pixel_x = 7 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -7; - pixel_y = 19 - }, -/obj/structure/filingcabinet{ - pixel_x = -9 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/bigredv2/caves/lambda/breakroom) -"at" = ( -/turf/open/floor/plating/almayer, -/area/bigredv2/caves/lambda/breakroom) -"au" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/bigredv2/caves/lambda/breakroom) -"av" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/bigredv2/caves/lambda/breakroom) -"aw" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"ax" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"aA" = ( -/turf/template_noop, -/area/template_noop) -"aB" = ( -/turf/open/floor/almayer/w_y1/north, -/area/bigredv2/caves/lambda/breakroom) -"aC" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"aD" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"aE" = ( -/turf/open/floor/darkpurplecorners2/east, -/area/bigredv2/caves/lambda/breakroom) -"aF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/machinery/door/window/brigdoor/southright, -/obj/item/clothing/accessory/medal/gold{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/clothing/accessory/medal/bronze/science{ - pixel_x = -5 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/bigredv2/caves/lambda/breakroom) -"aG" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/almayer{ - id = "sci_br"; - name = "\improper Lambda Observation Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/breakroom) -"aH" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/turf/open/floor/darkpurplecorners2, -/area/bigredv2/caves/lambda/breakroom) -"aI" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/lambda/breakroom) -"aJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata/white_cyan1/east, -/area/bigredv2/caves/lambda/breakroom) -"aK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door_control{ - id = "vault"; - name = "Vault Lockdown" - }, -/turf/open/floor/strata/white_cyan1/east, -/area/bigredv2/caves/lambda/breakroom) -"aL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/turf/open/floor/strata/white_cyan1/east, -/area/bigredv2/caves/lambda/breakroom) -"aM" = ( -/turf/open/floor/almayer/w_y2/north, -/area/bigredv2/caves/lambda/breakroom) -"aN" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_lambda) -"aP" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_lambda) -"aQ" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_lambda) -"aR" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 19 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -9; - pixel_y = 20 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/bigredv2/caves/lambda/breakroom) -"aS" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"aT" = ( -/turf/open/mars_cave/mars_cave_4, -/area/bigredv2/caves_lambda) -"aV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"aW" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced/colony{ - icon_state = "door_locked" - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "vault"; - name = "Vault Lockdown" - }, -/turf/open/floor/delivery, -/area/bigredv2/caves/lambda/breakroom) -"aX" = ( -/turf/open/mars_cave/mars_cave_8, -/area/bigredv2/caves_lambda) -"aY" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_lambda) -"aZ" = ( -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_lambda) -"ba" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"vm" = ( -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_lambda) -"zP" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_lambda) -"EW" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "sci_br"; - name = "\improper Lambda Observation Shutters" - }, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/window_frame/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/breakroom) -"Gv" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "sci_br"; - name = "\improper Lambda Observation Shutters" - }, -/obj/item/shard, -/obj/structure/window_frame/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/breakroom) -"RW" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/mars_cave/mars_cave_6, -/area/bigredv2/caves_lambda) - -(1,1,1) = {" -aA -aA -aA -aA -aA -aI -am -al -aI -aA -aA -aY -aT -ak -"} -(2,1,1) = {" -aA -aA -aA -aA -zP -aG -aw -aD -aG -ai -ai -aZ -ba -aX -"} -(3,1,1) = {" -aA -aA -ah -ai -ai -aG -aH -aE -aG -aP -ba -aP -ai -aZ -"} -(4,1,1) = {" -aA -ae -aP -ba -aZ -aI -ax -aC -aI -ae -RW -ac -ba -aZ -"} -(5,1,1) = {" -ai -ai -aj -ad -aZ -aG -ao -ag -EW -af -ba -ba -ba -aZ -"} -(6,1,1) = {" -aY -ai -ai -ba -ba -aG -aa -aD -Gv -vm -aN -aS -ba -aZ -"} -(7,1,1) = {" -ba -ba -ak -ak -ak -aI -an -ab -ap -aA -aA -aP -aS -aZ -"} -(8,1,1) = {" -ba -ak -ak -aI -aI -aI -aI -aW -aI -aI -aA -ba -aP -aZ -"} -(9,1,1) = {" -aZ -ak -ak -aI -aR -as -au -au -aK -aI -aA -aY -ba -aZ -"} -(10,1,1) = {" -ak -aA -aA -aI -au -at -aq -at -au -aI -aA -aP -ba -aZ -"} -(11,1,1) = {" -ak -aA -aA -aI -aF -at -aB -at -aJ -aI -aA -aP -ba -aZ -"} -(12,1,1) = {" -aA -aA -aA -aI -au -at -aM -at -aL -aI -aA -aQ -aV -ba -"} -(13,1,1) = {" -aA -aA -aA -aI -ar -av -aL -aL -aL -aI -aA -ba -ba -ba -"} -(14,1,1) = {" -aA -aA -aA -aI -aI -aI -aI -aI -aI -aI -aA -ba -ba -ba -"} diff --git a/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm b/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm deleted file mode 100644 index 7cb6e167725d..000000000000 --- a/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm +++ /dev/null @@ -1,1051 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"ab" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"ad" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"ae" = ( -/obj/structure/largecrate, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"af" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"ag" = ( -/obj/structure/largecrate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"ah" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"ai" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/cargo) -"aj" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"ak" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"al" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"am" = ( -/obj/structure/largecrate/cow, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"an" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"ao" = ( -/obj/structure/largecrate/cow, -/turf/open/floor/loadingarea, -/area/bigredv2/outside/cargo) -"ap" = ( -/obj/structure/closet/emcloset, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aq" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"ar" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"as" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"at" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/lighter/random, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"au" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"av" = ( -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"ax" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"ay" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"az" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aA" = ( -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aC" = ( -/turf/open/floor/loadingarea, -/area/bigredv2/outside/cargo) -"aD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Cargo Offices" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"aE" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Cargonia"; - name = "\improper Cargo Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aF" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"aG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"aH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/cargo_container/arious/right, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"aI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aJ" = ( -/obj/structure/largecrate, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"aK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"aL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"aN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aO" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"aP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"aQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/good_item, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"aR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"aS" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"aT" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"aU" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"aV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Cargo Bay Security" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"aX" = ( -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"aY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/loadingarea, -/area/bigredv2/outside/cargo) -"aZ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"ba" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bd" = ( -/obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"be" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bf" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bg" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bh" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bj" = ( -/obj/structure/largecrate, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bk" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bm" = ( -/obj/item/device/flashlight, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bp" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"bs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"by" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Cargo Bay" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"bz" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bA" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/megaphone, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bG" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bH" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bI" = ( -/obj/item/reagent_container/spray/cleaner, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) -"bJ" = ( -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) -"bK" = ( -/turf/open/floor/loadingarea/east, -/area/bigredv2/outside/cargo) -"bM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bN" = ( -/turf/open/floor/loadingarea/west, -/area/bigredv2/outside/cargo) -"bO" = ( -/obj/structure/machinery/door_control{ - id = "Cargonia"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Cargo Bay Quartermaster" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"bS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/loadingarea/east, -/area/bigredv2/outside/cargo) -"bV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/bot/north, -/area/bigredv2/outside/cargo) -"bZ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cb" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cc" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cd" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"ce" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Cargo Bay Quartermaster" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/cargo) -"cf" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cg" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"ch" = ( -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"ci" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cj" = ( -/obj/structure/machinery/computer/ordercomp, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"ck" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cl" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - health = 25000 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - health = 25000 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cn" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"co" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cp" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cq" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cr" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cs" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"ct" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cu" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Cargonia"; - name = "\improper Cargo Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"cv" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/engineering) -"cw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Complex" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"cx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering) -"zL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) -"AS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) -"Gu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"KO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/cargo) - -(1,1,1) = {" -aa -aa -aa -ai -aE -aE -aE -ai -ai -ai -bq -by -ai -ai -ai -ai -ce -ai -ai -"} -(2,1,1) = {" -ab -al -ab -ai -av -av -av -ai -aZ -bA -ax -av -bH -aB -ai -aN -av -cg -ai -"} -(3,1,1) = {" -av -av -av -aY -aF -aO -av -ak -ba -bJ -zL -bJ -bJ -av -ai -av -cf -ch -cu -"} -(4,1,1) = {" -ad -ad -au -ad -aG -aP -av -ak -bh -bJ -aI -bb -bI -ad -bR -ad -ad -ci -cu -"} -(5,1,1) = {" -ae -av -av -aC -aH -aQ -av -ai -av -bJ -zL -bJ -AS -bP -ak -cb -af -cj -cu -"} -(6,1,1) = {" -af -an -av -am -aI -ad -ad -bR -ad -bQ -bp -bz -KO -Gu -ak -cb -av -av -cu -"} -(7,1,1) = {" -ag -av -av -aC -aJ -aR -aX -ai -ai -ai -bq -by -ai -ai -ai -cc -av -ck -ai -"} -(8,1,1) = {" -av -av -av -av -ar -af -av -af -av -av -ax -af -bA -ae -ai -ak -ce -ak -ai -"} -(9,1,1) = {" -av -av -av -aC -aK -aS -av -bc -aX -av -ax -bB -av -av -av -av -av -aA -cv -"} -(10,1,1) = {" -ap -av -aw -ad -aL -aT -av -bd -aO -av -aI -ad -ad -ad -bS -af -av -cl -cw -"} -(11,1,1) = {" -ap -av -ax -ao -aX -aU -av -be -bj -av -ax -av -av -av -aI -ad -ad -cm -cx -"} -(12,1,1) = {" -ah -av -ay -av -av -av -av -av -av -av -bs -bD -bK -av -bU -av -av -cn -cv -"} -(13,1,1) = {" -ai -ai -ai -ai -ak -ak -ak -ai -aN -av -bt -bD -aX -av -bV -af -av -co -cv -"} -(14,1,1) = {" -aj -aq -az -ai -av -av -av -ai -bk -av -af -bD -bf -av -bW -af -av -cp -cv -"} -(15,1,1) = {" -af -ar -aA -ai -af -af -av -ai -av -af -af -af -bg -av -bX -av -av -aj -cv -"} -(16,1,1) = {" -af -as -ad -aD -au -aV -ad -aD -ad -au -bv -au -bM -ad -bY -av -av -cq -cv -"} -(17,1,1) = {" -av -at -af -ab -af -ar -av -ab -av -af -bs -av -bN -av -bN -av -av -cr -cv -"} -(18,1,1) = {" -av -av -av -ai -aN -ax -av -ai -av -bm -ax -av -av -av -av -av -av -cs -cv -"} -(19,1,1) = {" -ak -ak -ai -ai -ak -aW -ak -ai -av -av -ax -bG -bO -av -bZ -cd -cd -ct -cv -"} diff --git a/maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm b/maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm deleted file mode 100644 index 8f710225f0c5..000000000000 --- a/maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm +++ /dev/null @@ -1,150 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/template_noop, -/area/template_noop) -"b" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/virology) -"c" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside) -"d" = ( -/turf/open/mars, -/area/bigredv2/outside/nw) -"e" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/nw) -"f" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/nw) -"g" = ( -/turf/open/mars, -/area/bigredv2/outside/w) -"h" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/w) -"i" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/nw) -"j" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/nw) -"k" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"l" = ( -/turf/open/mars/mars_dirt_5, -/area/bigredv2/outside/w) -"m" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/w) -"n" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/w) -"o" = ( -/turf/open/mars/mars_dirt_6, -/area/bigredv2/outside/w) -"U" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/w) - -(1,1,1) = {" -b -b -b -b -b -b -b -b -b -"} -(2,1,1) = {" -c -c -b -c -c -b -c -c -b -"} -(3,1,1) = {" -c -c -c -c -g -g -g -c -c -"} -(4,1,1) = {" -c -c -d -d -g -g -g -g -c -"} -(5,1,1) = {" -d -d -d -d -d -U -m -m -o -"} -(6,1,1) = {" -d -i -j -j -j -k -l -n -n -"} -(7,1,1) = {" -e -f -f -f -f -f -h -h -h -"} -(8,1,1) = {" -a -a -a -a -a -a -a -a -a -"} -(9,1,1) = {" -a -a -a -a -a -a -a -a -a -"} diff --git a/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm b/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm deleted file mode 100644 index 702980ac1f79..000000000000 --- a/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm +++ /dev/null @@ -1,1392 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/filtration_plant) -"ad" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/filtration_plant) -"ah" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"ai" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"aj" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"ay" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris, -/area/bigredv2/outside/filtration_plant) -"az" = ( -/turf/open/floor, -/area/bigredv2/outside/filtration_plant) -"aF" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"aY" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/filtration_plant) -"bf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/filtration_plant) -"bt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/outside/filtration_plant) -"bv" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bw" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/outside/filtration_plant) -"bA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bD" = ( -/obj/structure/window/framed/solaris/reinforced/hull, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bI" = ( -/obj/structure/window_frame/solaris/reinforced, -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bK" = ( -/turf/open/mars, -/area/bigredv2/outside/se) -"bX" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/filtration_plant) -"cd" = ( -/obj/structure/dispenser/oxygen, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"cg" = ( -/obj/structure/machinery/door_control{ - id = "FiltrationShutters"; - name = "Airlock Shutters"; - pixel_y = 25 - }, -/turf/open/floor, -/area/bigredv2/outside/filtration_plant) -"dk" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/filtration_plant) -"dP" = ( -/obj/structure/largecrate/random, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"dS" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/se) -"dV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"fp" = ( -/obj/structure/machinery/computer/general_air_control, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"gg" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/solar_tracker, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/filtration_plant) -"gJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/delivery, -/area/bigredv2/outside/filtration_plant) -"gO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"ib" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"iw" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/se) -"iZ" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/filtration_plant) -"jh" = ( -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigredv2/outside/filtration_plant) -"kg" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"kh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"kv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"la" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/bot/north, -/area/bigredv2/outside/filtration_plant) -"lC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"lO" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"nk" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/solaris, -/area/bigredv2/outside/filtration_plant) -"no" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"np" = ( -/obj/item/tank/air, -/turf/open/floor, -/area/bigredv2/outside/filtration_plant) -"nu" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/firecloset/full, -/turf/open/floor/bot/north, -/area/bigredv2/outside/filtration_plant) -"nF" = ( -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/filtration_plant) -"oQ" = ( -/obj/structure/machinery/light, -/obj/structure/largecrate/random, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/filtration_plant) -"pd" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"pF" = ( -/obj/structure/surface/rack, -/obj/item/tank/air, -/obj/item/tool/pickaxe, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"qm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Filtration Facility" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"qH" = ( -/obj/structure/machinery/computer3/server/rack, -/obj/effect/decal/warning_stripes{ - icon_state = "U-N" - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"qL" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"rq" = ( -/obj/item/tank/air, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"rA" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/bot/north, -/area/bigredv2/outside/filtration_plant) -"rQ" = ( -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"rS" = ( -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"sf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"sv" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"sF" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"tc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "U-N" - }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"tx" = ( -/obj/structure/machinery/door_control{ - id = "FiltrationShutters"; - name = "Airlock Shutters"; - pixel_x = -32 - }, -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"tE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"tT" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"um" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"us" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/filtration_plant) -"uu" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/floor/bot/north, -/area/bigredv2/outside/filtration_plant) -"uE" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/se) -"uT" = ( -/obj/structure/cryofeed/right{ - name = "\improper coolant feed" - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/outside/filtration_plant) -"vz" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"vF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/filtration_cave_cas) -"wo" = ( -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/se) -"wL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/frame/table, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"wQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"wZ" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"xY" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"yR" = ( -/obj/item/weapon/twohanded/fireaxe, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/filtration_plant) -"yU" = ( -/obj/item/tool/warning_cone, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/se) -"zD" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"zJ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/filtration_plant) -"zL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"Ai" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"Aw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"Bd" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/se) -"Bt" = ( -/obj/structure/cryofeed, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/outside/filtration_plant) -"Bx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"BF" = ( -/obj/item/tool/warning_cone, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"BZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/filtration_plant) -"Ce" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/se) -"Cy" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/filtration_plant) -"CK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"De" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Filtration Facility" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"DI" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"DT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_plant) -"EP" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"Fe" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Filtration Facility" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"FD" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"FG" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/filtration_plant) -"Ga" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/filtration_cave_cas) -"Gd" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Filtration Facility" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"Gm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"GL" = ( -/obj/item/tank/air, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"IX" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/se) -"Jc" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"Ji" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"Jo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/bot/north, -/area/bigredv2/outside/filtration_plant) -"Jp" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor/bot/north, -/area/bigredv2/outside/filtration_plant) -"Jq" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"KF" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"KG" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/floor/bot/north, -/area/bigredv2/outside/filtration_plant) -"KP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"Li" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_plant) -"LU" = ( -/turf/open/mars/mars_dirt_6, -/area/bigredv2/outside/se) -"Mf" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"MH" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"Nn" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/filtration_plant) -"Oi" = ( -/obj/structure/surface/table, -/obj/effect/landmark/good_item, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"On" = ( -/obj/item/tool/pickaxe, -/turf/open/floor/bot/north, -/area/bigredv2/outside/filtration_plant) -"Oq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/filtration_plant) -"OG" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/se) -"OX" = ( -/obj/structure/machinery/computer3/server/rack, -/obj/effect/decal/warning_stripes{ - icon_state = "U-S" - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"Pt" = ( -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"Qw" = ( -/obj/structure/machinery/computer/area_atmos/area{ - dir = 8 - }, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"QM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"Rf" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"Rn" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"RX" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"Sw" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "FiltrationShutters"; - name = "\improper Airlock Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"SA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/headset, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"SL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"SR" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/filtration_plant) -"Tn" = ( -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/filtration_plant) -"TW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"Uq" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"UB" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/se) -"UD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"Vh" = ( -/turf/open/floor/bot/north, -/area/bigredv2/outside/filtration_plant) -"Vm" = ( -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/filtration_plant) -"Vr" = ( -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"Vz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"VB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "U-S" - }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"Wg" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"WF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/filtration_plant) -"WR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"Xj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"Xl" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"Xz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"XD" = ( -/obj/item/frame/table, -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"XZ" = ( -/turf/open/floor/darkyellowcorners2/west, -/area/bigredv2/outside/filtration_plant) -"Yx" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/filtration_plant) -"YC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Atmospherics Condenser Storage" - }, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"Zz" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/filtration_plant) -"ZG" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) - -(1,1,1) = {" -aa -YC -aa -aa -aa -aa -aa -aa -aa -ah -ah -bI -bw -bw -RX -SR -SR -SR -SR -SR -SR -SR -SR -SR -aa -"} -(2,1,1) = {" -wZ -UD -Ai -aa -lO -Vr -lO -lO -aa -Tn -rQ -yR -bw -bw -bw -bw -RX -RX -RX -RX -RX -RX -RX -Yx -bw -"} -(3,1,1) = {" -wZ -UD -Mf -aa -no -kh -kh -kh -De -Jq -qL -Pt -bw -bw -bw -bw -iZ -iZ -iZ -iZ -gJ -iZ -iZ -iZ -aY -"} -(4,1,1) = {" -wZ -UD -Pt -aa -sv -xY -sv -Vr -aa -rS -UD -XZ -tE -FD -Zz -aY -cg -az -az -ad -az -ad -az -az -aY -"} -(5,1,1) = {" -aa -YC -aa -aa -aa -aa -aa -aa -aa -wQ -MH -Jq -Jq -Jq -tx -aY -bf -ad -la -la -az -Vh -Vh -jh -aY -"} -(6,1,1) = {" -zD -Vz -BZ -aa -Tn -OX -qH -nF -aa -rS -UD -Jq -Jq -Jq -Jq -Sw -az -ad -la -Vh -az -Vh -uu -az -bw -"} -(7,1,1) = {" -CK -um -kv -Gm -Jq -Jq -Jq -Jq -qm -Jq -UD -Jq -Jq -Jq -Jq -Sw -az -az -az -az -az -Vh -KG -az -bw -"} -(8,1,1) = {" -WR -tT -zL -ah -rS -VB -tc -sf -ah -SL -UD -Jq -Jq -Jq -Jq -Sw -az -az -Vh -Vh -az -Vh -Jp -az -bw -"} -(9,1,1) = {" -Xj -Xj -TW -Xl -Bx -Bx -kv -Pt -ah -rS -UD -Jq -Jq -Jq -Jq -Sw -az -az -Vh -Vh -np -Jo -Vh -jh -aY -"} -(10,1,1) = {" -CK -SA -Rn -aa -wQ -Jq -Vz -vz -aa -Oq -UD -Vm -EP -dP -oQ -aY -bf -az -Vh -On -az -Vh -Vh -az -aY -"} -(11,1,1) = {" -DI -Qw -FG -aa -Jc -Wg -kg -Xz -aa -aa -Gd -aa -bw -bD -bD -bw -az -az -az -az -az -az -az -az -aY -"} -(12,1,1) = {" -ah -ah -ah -aa -Jc -Jq -UD -Pt -aa -Tn -UD -zJ -bw -uT -uT -bw -iZ -iZ -iZ -iZ -iZ -iZ -iZ -iZ -aY -"} -(13,1,1) = {" -ai -aF -ai -aa -fp -Rf -Aw -Bx -Fe -Bx -kg -ib -bt -Bt -Bt -bw -RX -RX -RX -RX -RX -RX -RX -Yx -aY -"} -(14,1,1) = {" -ai -ai -ai -aa -pd -Jq -Jq -Mf -ay -wQ -UD -Ji -bw -uT -uT -bw -Li -Li -Li -Li -DT -Li -Li -Li -nk -"} -(15,1,1) = {" -ai -aF -ai -aa -Nn -KF -Oi -gg -aa -rS -UD -ib -bw -Bt -Bt -bw -sF -Uq -BF -Uq -Uq -BF -Uq -Uq -Uq -"} -(16,1,1) = {" -aa -aa -aa -aa -aa -aa -ay -aa -aa -rS -UD -Pt -bw -bD -bD -bw -sF -cd -rq -Uq -Uq -Uq -Uq -Uq -Uq -"} -(17,1,1) = {" -OG -Bd -Bd -Bd -UB -aY -QM -pF -pF -Cy -UD -XD -aa -sF -sF -sF -sF -BF -Uq -Uq -Uq -Uq -Uq -Uq -Uq -"} -(18,1,1) = {" -yU -wo -wo -wo -iw -Vr -Jq -Jq -Jq -Jq -wL -CK -gO -sF -Uq -Uq -Uq -Uq -Uq -Uq -Uq -Uq -Uq -Uq -Uq -"} -(19,1,1) = {" -IX -wo -wo -wo -iw -Vr -Jq -Jq -Rf -Wg -KP -Jq -Vr -sF -Uq -Uq -Uq -Uq -Uq -Uq -Uq -Uq -Uq -Uq -Uq -"} -(20,1,1) = {" -IX -wo -wo -wo -iw -Vr -Vm -Vm -WF -GL -Jq -dV -Vr -sF -Uq -Uq -Uq -Uq -Uq -Uq -ZG -Uq -Uq -Uq -Uq -"} -(21,1,1) = {" -IX -wo -wo -Ce -dS -aY -nu -rA -us -Vm -Vm -dk -bX -sF -Uq -Uq -Uq -BF -Uq -Uq -Uq -Uq -Uq -Uq -Uq -"} -(22,1,1) = {" -wo -wo -iw -LU -uE -aY -aY -aY -aY -ah -bA -ah -aY -sF -Uq -Uq -Uq -Uq -Uq -Uq -Uq -Ga -Uq -Uq -Uq -"} -(23,1,1) = {" -wo -wo -iw -uE -bK -bK -bK -bK -aY -bv -bv -bv -aY -aj -Uq -Uq -aj -aj -Uq -Uq -Uq -Ga -Uq -Uq -Uq -"} -(24,1,1) = {" -wo -wo -iw -uE -bK -bK -bK -bK -aY -aY -aY -aY -aY -aj -aj -aj -aj -aj -aj -lC -lC -vF -lC -lC -lC -"} diff --git a/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm b/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm deleted file mode 100644 index 8eefcb16466a..000000000000 --- a/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm +++ /dev/null @@ -1,668 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ab" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/admin_building) -"ad" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"ae" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/admin_building) -"ak" = ( -/obj/structure/window_frame/solaris, -/obj/item/shard, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"ap" = ( -/obj/structure/flora/jungle/plantbot1{ - pixel_y = 10 - }, -/turf/open/jungle, -/area/bigredv2/outside/admin_building) -"aB" = ( -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aC" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aD" = ( -/obj/effect/acid_hole, -/turf/closed/wall/solaris, -/area/bigredv2/outside/admin_building) -"aJ" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aK" = ( -/obj/structure/surface/table, -/obj/item/device/radio/marine, -/obj/effect/landmark/objective_landmark/medium, -/obj/item/weapon/gun/pistol/m4a3/training{ - name = "dented M4A3 service pistol" - }, -/obj/item/ammo_magazine/pistol/rubber, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aL" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aQ" = ( -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aS" = ( -/obj/item/ammo_magazine/rifle/rubber{ - current_rounds = 3; - pixel_x = -3; - pixel_y = -6 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aV" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/rifle/rubber, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aW" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/tool/weldingtool, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"ba" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/item/clothing/head/helmet/marine/veteran/pmc/leader, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"bc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"bp" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bs" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Operations"; - name = "\improper Operations Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"bY" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"cD" = ( -/obj/item/shard, -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"dC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"ed" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"ee" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"eg" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"gb" = ( -/obj/item/ammo_box/magazine{ - num_of_magazines = 2 - }, -/obj/item/ammo_magazine/rifle{ - current_rounds = 0; - pixel_x = -8; - pixel_y = 13 - }, -/obj/item/ammo_magazine/rifle{ - current_rounds = 0; - pixel_x = 14; - pixel_y = 17 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"gR" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/barricade/metal/wired{ - dir = 1; - icon_state = "metal_2" - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"he" = ( -/obj/structure/platform, -/obj/structure/flora/jungle/planttop1{ - pixel_y = 10 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"hf" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/darkred2/southeast, -/area/bigredv2/outside/admin_building) -"hz" = ( -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"hC" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"hM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"hN" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"jh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/outside/admin_building) -"jm" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"jq" = ( -/obj/item/weapon/gun/rifle/m41a/corporate{ - current_mag = /obj/item/ammo_magazine/rifle/rubber; - desc = "A Weyland-Yutani creation, this M41A MK2 comes equipped in corporate white. Uses 10x24mm caseless ammunition. It seems to be pretty battered and broken up."; - name = "battered M41A pulse rifle MK2"; - pixel_x = 4 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"jY" = ( -/obj/item/ammo_magazine/rifle/rubber{ - current_rounds = 0; - pixel_x = -6; - pixel_y = -4 - }, -/obj/item/stack/sheet/metal{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"kr" = ( -/obj/item/stack/sheet/metal{ - pixel_x = 3; - pixel_y = -11 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"la" = ( -/obj/item/ammo_magazine/pistol/rubber{ - current_rounds = 0 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"lv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"mi" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/platform_decoration, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"mr" = ( -/obj/structure/barricade/metal/wired{ - dir = 4; - icon_state = "metal_2" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"nd" = ( -/obj/item/ammo_magazine/rifle{ - current_rounds = 0; - pixel_x = -8; - pixel_y = 9 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"oI" = ( -/obj/item/shard, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"oZ" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/darkred2/southwest, -/area/bigredv2/outside/admin_building) -"pZ" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations Meeting Room"; - density = 0; - icon_state = "door_open" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) -"qR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations Office" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"re" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"sX" = ( -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"ts" = ( -/obj/item/storage/secure/briefcase, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"tz" = ( -/obj/effect/landmark/survivor_spawner, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"uH" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/wygoon, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"xe" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"xQ" = ( -/obj/effect/acid_hole{ - dir = 4 - }, -/turf/closed/wall/solaris, -/area/bigredv2/outside/admin_building) -"yd" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"za" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations Meeting Room" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"AF" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"Br" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/regular/empty, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"Cj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"Cw" = ( -/obj/effect/landmark/corpsespawner/wygoon/lead, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"CO" = ( -/obj/item/ammo_magazine/rifle{ - current_rounds = 0; - pixel_x = -9; - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"EO" = ( -/obj/item/ammo_magazine/pistol/rubber{ - current_rounds = 0 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"ER" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"Gc" = ( -/obj/item/ammo_box/magazine/ext{ - num_of_magazines = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"Mu" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"Nb" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/obj/item/ammo_magazine/pistol/rubber{ - current_rounds = 0 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"Nc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/darkredcorners2, -/area/bigredv2/outside/admin_building) -"Nl" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"NS" = ( -/obj/item/ammo_magazine/rifle/rubber{ - current_rounds = 0; - pixel_y = 11 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"Op" = ( -/obj/structure/barricade/sandbags/wired, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"PU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"PX" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"Sz" = ( -/obj/item/ammo_magazine/rifle/rubber{ - current_rounds = 0; - pixel_x = 5; - pixel_y = -5 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"TJ" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"Ua" = ( -/obj/item/stack/sheet/metal{ - amount = 3 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"Ux" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/storage/toolbox/syndicate, -/turf/open/floor/darkred2/east, -/area/bigredv2/outside/admin_building) -"WY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"Yb" = ( -/obj/item/ammo_magazine/rifle{ - current_rounds = 0 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"YI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/sandbags/wired, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"Zg" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/darkred2, -/area/bigredv2/outside/admin_building) -"ZN" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/ammo_magazine/rifle{ - current_rounds = 0; - pixel_x = -2; - pixel_y = -10 - }, -/obj/item/ammo_box/magazine/m4a3{ - num_of_magazines = 2 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"ZO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) - -(1,1,1) = {" -yd -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(2,1,1) = {" -Zg -aD -lv -Mu -NS -Cw -Yb -ZN -Gc -ab -"} -(3,1,1) = {" -cD -yd -jY -la -Ua -ts -aJ -aQ -gb -bp -"} -(4,1,1) = {" -hz -ak -gR -aB -aK -Br -aV -ba -sX -CO -"} -(5,1,1) = {" -hz -ae -jq -aC -aQ -kr -Sz -uH -sX -sX -"} -(6,1,1) = {" -TJ -pZ -Nl -aW -aL -aS -ed -bc -sX -EO -"} -(7,1,1) = {" -hz -ae -PX -mr -bY -Nb -bY -nd -sX -sX -"} -(8,1,1) = {" -hz -ae -ae -ak -ad -ad -ae -za -xQ -ae -"} -(9,1,1) = {" -jh -ZO -re -WY -YI -re -PU -hC -oZ -ak -"} -(10,1,1) = {" -mi -jm -eg -Cj -oI -hN -TJ -Cj -TJ -ak -"} -(11,1,1) = {" -he -ap -ER -Nc -Op -Ux -ee -dC -hf -bs -"} -(12,1,1) = {" -tz -AF -xe -hM -ae -ae -ae -qR -ae -ae -"} diff --git a/maps/map_files/BigRed/sprinkles/40.dorms_party.dmm b/maps/map_files/BigRed/sprinkles/40.dorms_party.dmm deleted file mode 100644 index 38b92227e1f1..000000000000 --- a/maps/map_files/BigRed/sprinkles/40.dorms_party.dmm +++ /dev/null @@ -1,578 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ab" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/plate, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ac" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ad" = ( -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ae" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"af" = ( -/obj/structure/machinery/power/apc/power/north{ - name = "Fitness APC" - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ag" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ah" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ai" = ( -/obj/item/reagent_container/food/drinks/bottle/absinthe, -/obj/effect/landmark/corpsespawner/colonist/random, -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aj" = ( -/obj/structure/bed/chair, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"al" = ( -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"an" = ( -/obj/item/trash/chunk, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"ao" = ( -/obj/item/trash/chunk{ - pixel_x = 3; - pixel_y = -4 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"ap" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"aq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ar" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"as" = ( -/obj/structure/surface/table, -/obj/item/toy/deck, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"at" = ( -/obj/structure/surface/table, -/obj/item/ashtray/bronze, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"au" = ( -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"av" = ( -/obj/structure/surface/table, -/obj/item/storage/donut_box/empty, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aw" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ax" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ay" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/good_item, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"az" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"aA" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"aB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/trash/chunk{ - pixel_y = 5 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"aC" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aD" = ( -/obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aF" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aG" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/obj/item/reagent_container/food/snacks/meatpizzaslice, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aH" = ( -/obj/structure/surface/table, -/obj/item/poster, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aI" = ( -/obj/structure/surface/table, -/obj/item/pizzabox/margherita, -/obj/item/pizzabox/meat{ - pixel_x = -5; - pixel_y = 12 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"aK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"aL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/chunk{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/item/reagent_container/food/drinks/bottle/rum, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"aM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/trash/chunk, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"aN" = ( -/obj/item/trash/chunk, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aO" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aP" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aR" = ( -/obj/item/reagent_container/food/drinks/bottle/rum, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aS" = ( -/obj/item/device/megaphone, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"aT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/item/reagent_container/food/drinks/bottle/rum, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"aU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"aV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"aW" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aX" = ( -/obj/effect/landmark/good_item, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ba" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"bb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"bc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"bd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"bf" = ( -/obj/structure/machinery/vending/snack{ - icon_state = "snack-broken"; - stat = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"bg" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"bh" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"bi" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"bj" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"bk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "Dormitories"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"bl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"bm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"bn" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"bo" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"dl" = ( -/obj/item/reagent_container/food/drinks/bottle/rum, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"do" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/colonist/random, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"el" = ( -/obj/effect/landmark/corpsespawner/colonist/random, -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"iE" = ( -/obj/effect/landmark/corpsespawner/colonist/random, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/camera/autoname, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"lN" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/grimy, -/area/bigredv2/outside/dorms) -"zO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/colonist/random, -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"XP" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/dorms) - -(1,1,1) = {" -aY -aY -aY -aC -aY -aY -bb -"} -(2,1,1) = {" -ab -ah -ad -ah -aN -ah -bc -"} -(3,1,1) = {" -ac -ai -ad -ad -ad -aX -bd -"} -(4,1,1) = {" -ad -XP -ad -ah -ad -ah -aq -"} -(5,1,1) = {" -ad -ad -ad -ad -aD -ad -bf -"} -(6,1,1) = {" -ae -ad -ar -aE -ad -ad -bg -"} -(7,1,1) = {" -ad -aj -as -au -aO -ad -bh -"} -(8,1,1) = {" -ad -aj -at -aF -aP -aY -bi -"} -(9,1,1) = {" -el -aj -au -aG -aO -XP -zO -"} -(10,1,1) = {" -ad -aj -au -aH -aO -XP -bj -"} -(11,1,1) = {" -af -aj -av -aI -aO -ad -bk -"} -(12,1,1) = {" -ad -ad -aw -aw -ad -ad -bl -"} -(13,1,1) = {" -ad -ad -ax -ax -aR -ah -aq -"} -(14,1,1) = {" -ad -dl -ay -aJ -aJ -do -bm -"} -(15,1,1) = {" -ag -al -lN -al -aS -aJ -aq -"} -(16,1,1) = {" -ad -an -az -aD -aT -aK -bn -"} -(17,1,1) = {" -ad -ao -aA -aL -aU -aJ -bo -"} -(18,1,1) = {" -iE -ap -aB -aM -aV -ba -aq -"} -(19,1,1) = {" -ad -aq -ad -ad -aW -ad -aq -"} diff --git a/maps/map_files/BigRed/sprinkles/40.viro_open.dmm b/maps/map_files/BigRed/sprinkles/40.viro_open.dmm deleted file mode 100644 index e1be44cacdfe..000000000000 --- a/maps/map_files/BigRed/sprinkles/40.viro_open.dmm +++ /dev/null @@ -1,650 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"ai" = ( -/turf/open/mars, -/area/bigredv2/outside/virology) -"aU" = ( -/turf/open/mars, -/area/bigredv2/outside/nw) -"aV" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars, -/area/bigredv2/outside/nw) -"bc" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside) -"bd" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/virology) -"br" = ( -/obj/structure/inflatable/popped, -/turf/open/mars, -/area/bigredv2/outside/virology) -"bJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; - name = "\improper Virology Lab Decontamination" - }, -/turf/open/floor/warnwhite/north, -/area/bigredv2/outside/virology) -"bX" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/virology) -"da" = ( -/obj/structure/inflatable, -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/virology) -"df" = ( -/obj/effect/landmark/crap_item, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"dk" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/virology) -"gD" = ( -/obj/structure/inflatable, -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/virology) -"gH" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"ia" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"jg" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/virology) -"jQ" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/virology) -"kt" = ( -/obj/structure/bed/roller, -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/virology) -"lY" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/virology) -"mu" = ( -/obj/structure/sign/safety/biohazard, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/virology) -"nR" = ( -/obj/structure/bed/roller, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/virology) -"oe" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/virology) -"ou" = ( -/obj/structure/surface/table/almayer, -/obj/item/restraint/handcuffs, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/virology) -"oM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"oS" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/virology) -"pG" = ( -/obj/structure/machinery/light, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/virology) -"qc" = ( -/obj/structure/inflatable/door, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/virology) -"qW" = ( -/obj/structure/inflatable/door, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"re" = ( -/obj/item/weapon/gun/flamer, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/virology) -"rh" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass, -/obj/item/storage/syringe_case/regular{ - pixel_y = 10 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/virology) -"ru" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/inflatable, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/virology) -"rM" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/nw) -"rP" = ( -/obj/structure/inflatable, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/virology) -"sm" = ( -/obj/structure/inflatable/door, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/virology) -"uC" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/virology) -"uO" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/virology) -"vY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/nw) -"xm" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/virology) -"xU" = ( -/obj/structure/closet/bodybag{ - icon_state = "bodybag_open" - }, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/virology) -"yk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"As" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/virology) -"AF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/virology) -"Bq" = ( -/obj/structure/inflatable/popped, -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/virology) -"CQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/inflatable/door, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"Dt" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/surgery/scalpel, -/obj/item/device/autopsy_scanner, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/virology) -"Ee" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/virology) -"Et" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/nw) -"ED" = ( -/obj/structure/inflatable/popped, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"EF" = ( -/obj/structure/inflatable/door, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/virology) -"Fb" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/virology) -"FA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/bigredv2/outside/virology) -"FX" = ( -/obj/structure/closet/bodybag{ - icon_state = "bodybag_open" - }, -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/virology) -"GA" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/virology) -"GF" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"GP" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/virology) -"GX" = ( -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"HZ" = ( -/obj/structure/inflatable/popped, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/virology) -"Ie" = ( -/obj/structure/inflatable, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/virology) -"IZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/virology) -"KY" = ( -/obj/structure/inflatable/door, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"LF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/inflatable, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/virology) -"LZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/virology) -"MQ" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/virology) -"Nt" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/virology) -"OX" = ( -/obj/structure/inflatable, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/virology) -"Pb" = ( -/obj/structure/inflatable, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/virology) -"PU" = ( -/obj/structure/inflatable, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/bigredv2/outside/nw) -"QV" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/virology) -"RE" = ( -/obj/structure/inflatable, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/bigredv2/outside/nw) -"RN" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"Sh" = ( -/obj/structure/inflatable/popped/door, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"TE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/inflatable/popped/door, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"UE" = ( -/obj/structure/inflatable, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"Vw" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/bigredv2/outside/virology) -"Wm" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/virology) -"Xm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/virology) -"XA" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/nw) -"XR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/inflatable, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, -/area/bigredv2/outside/virology) -"Yn" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/virology) -"Yy" = ( -/obj/structure/closet/bodybag{ - icon_state = "bodybag_open" - }, -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/virology) -"ZB" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/virology) -"ZY" = ( -/obj/structure/closet/bodybag{ - icon_state = "bodybag_open" - }, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/virology) - -(1,1,1) = {" -aa -aa -bX -MQ -Nt -Nt -aa -aa -aa -aa -"} -(2,1,1) = {" -aa -aa -oS -Yn -jg -ZB -aa -aa -aa -aa -"} -(3,1,1) = {" -aa -aa -xm -dk -re -lY -lY -Dt -OX -bd -"} -(4,1,1) = {" -aa -Ie -xU -ZY -FX -ai -ai -kt -da -bd -"} -(5,1,1) = {" -aa -OX -Ie -EF -EF -gD -gD -OX -LF -bd -"} -(6,1,1) = {" -aa -ZY -ZY -uC -LZ -As -As -As -AF -bJ -"} -(7,1,1) = {" -bd -Yy -ZY -oe -yk -GX -GX -GX -Wm -mu -"} -(8,1,1) = {" -bd -br -Bq -oe -yk -GX -GF -GX -IZ -bd -"} -(9,1,1) = {" -bd -GP -uO -GX -yk -GX -GX -GX -pG -bd -"} -(10,1,1) = {" -bd -HZ -UE -GX -yk -GX -Ee -Ee -Fb -bd -"} -(11,1,1) = {" -bd -nR -qW -GX -yk -Wm -GA -GA -GA -bd -"} -(12,1,1) = {" -bd -HZ -ED -GX -yk -Wm -GA -lY -GA -bd -"} -(13,1,1) = {" -bd -nR -qW -GX -yk -Wm -GA -ai -QV -bd -"} -(14,1,1) = {" -bd -Pb -Pb -GX -yk -GX -rP -qc -sm -bd -"} -(15,1,1) = {" -bd -GA -GA -oe -yk -GX -UE -GX -Wm -bd -"} -(16,1,1) = {" -bd -GA -GA -oe -yk -GX -UE -GX -Wm -bd -"} -(17,1,1) = {" -bd -GA -XR -qW -TE -qW -ru -ia -rh -bd -"} -(18,1,1) = {" -bd -GA -bd -Vw -RN -jQ -bd -FA -ou -bd -"} -(19,1,1) = {" -bd -bd -bd -oe -yk -Wm -bd -bd -bd -bd -"} -(20,1,1) = {" -vY -gH -bd -Vw -Xm -jQ -bd -aU -bd -bc -"} -(21,1,1) = {" -oM -gH -RE -KY -CQ -Sh -PU -aU -bc -bc -"} -(22,1,1) = {" -df -gH -gH -rM -XA -Et -gH -aV -aU -bc -"} diff --git a/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm b/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm deleted file mode 100644 index 51e1ab45af22..000000000000 --- a/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm +++ /dev/null @@ -1,388 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"b" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/eta/xenobiology) -"c" = ( -/turf/closed/wall/solaris, -/area/bigredv2/caves/eta/xenobiology) -"d" = ( -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"e" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"f" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"g" = ( -/turf/open/mars, -/area/bigredv2/caves/eta/xenobiology) -"h" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/mars, -/area/bigredv2/caves/eta/xenobiology) -"i" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/xenobiology) -"j" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/darkred2/west, -/area/bigredv2/caves/eta/xenobiology) -"k" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"l" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"m" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/xenobiology) -"n" = ( -/obj/item/toy/beach_ball, -/turf/open/ice, -/area/bigredv2/caves/eta/xenobiology) -"o" = ( -/turf/open/ice, -/area/bigredv2/caves/eta/xenobiology) -"p" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/mars, -/area/bigredv2/caves/eta/xenobiology) -"q" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Cell" - }, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"r" = ( -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"s" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/dark, -/area/bigredv2/caves/eta/xenobiology) -"t" = ( -/mob/living/simple_animal/hostile/carp{ - faction = "neutral"; - name = "strange fish" - }, -/turf/open/ice, -/area/bigredv2/caves/eta/xenobiology) -"u" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/ice, -/area/bigredv2/caves/eta/xenobiology) -"v" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) -"w" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars, -/area/bigredv2/caves/eta/xenobiology) -"x" = ( -/obj/item/toy/plush/farwa, -/turf/open/ice, -/area/bigredv2/caves/eta/xenobiology) -"y" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"z" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/caves/eta/xenobiology) -"A" = ( -/turf/open/floor/darkredcorners2, -/area/bigredv2/caves/eta/xenobiology) -"B" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/mars_cave/mars_dirt_7, -/area/bigredv2/caves/eta/xenobiology) -"C" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars/mars_dirt_10, -/area/bigredv2/caves/eta/xenobiology) -"D" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/caves/eta/xenobiology) -"E" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves/eta/xenobiology) -"F" = ( -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves/eta/xenobiology) -"G" = ( -/turf/open/mars_cave/mars_cave_22, -/area/bigredv2/caves/eta/xenobiology) -"H" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves/eta/xenobiology) -"O" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/xenobiology) -"P" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/caves/eta/xenobiology) -"X" = ( -/turf/open/floor/plating, -/area/bigredv2/caves/eta/xenobiology) - -(1,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(2,1,1) = {" -b -g -p -h -b -h -p -g -b -z -B -P -b -"} -(3,1,1) = {" -b -h -g -g -b -w -g -g -b -g -C -E -G -"} -(4,1,1) = {" -b -g -g -h -b -g -g -h -b -g -D -F -O -"} -(5,1,1) = {" -b -i -q -i -b -i -q -i -b -i -q -X -O -"} -(6,1,1) = {" -c -j -r -j -c -j -r -j -c -j -r -O -H -"} -(7,1,1) = {" -d -d -s -d -v -d -s -d -d -d -k -d -H -"} -(8,1,1) = {" -e -k -k -k -r -k -k -k -r -k -r -r -O -"} -(9,1,1) = {" -f -l -a -l -l -l -k -l -y -A -r -l -X -"} -(10,1,1) = {" -c -m -r -m -c -m -r -m -c -m -r -m -b -"} -(11,1,1) = {" -b -i -q -i -b -i -q -i -b -i -q -i -b -"} -(12,1,1) = {" -b -n -o -t -b -o -o -o -b -t -o -o -b -"} -(13,1,1) = {" -b -o -t -o -b -o -t -o -b -t -o -t -b -"} -(14,1,1) = {" -b -o -u -o -b -t -u -x -b -o -u -o -b -"} -(15,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -"} diff --git a/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm b/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm deleted file mode 100644 index c60a4e6854af..000000000000 --- a/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm +++ /dev/null @@ -1,530 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/bigredv2/outside/filtration_cave_cas) -"aM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement2, -/area/bigredv2/outside/filtration_cave_cas) -"aN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor, -/area/bigred/ground/security) -"bp" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - icon_state = "door_locked"; - name = "\improper Checkpoint Office" - }, -/turf/open/floor, -/area/bigred/ground/security) -"bx" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/motiondetector, -/turf/open/floor, -/area/bigred/ground/security) -"el" = ( -/obj/structure/surface/table/almayer, -/obj/item/restraint/handcuffs, -/turf/open/floor, -/area/bigred/ground/security) -"ge" = ( -/obj/structure/closet/secure_closet/marshal, -/turf/open/floor/greengrid, -/area/bigred/ground/security) -"gr" = ( -/obj/effect/decal/strata_decals/grime/grime2, -/turf/open/asphalt/cement/cement3, -/area/bigredv2/outside/filtration_cave_cas) -"hz" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Checkpoint Office" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/delivery, -/area/bigred/ground/security) -"ie" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"kd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_color = "red"; - phone_id = "Filtration Checkpoint" - }, -/turf/open/floor/greengrid, -/area/bigred/ground/security) -"kX" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigred/ground/security) -"nY" = ( -/turf/open/asphalt/cement/cement3, -/area/bigredv2/outside/filtration_cave_cas) -"oT" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/filtration_cave_cas) -"pI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/asphalt/cement/cement2, -/area/bigredv2/outside/filtration_cave_cas) -"pV" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigred/ground/security) -"qy" = ( -/obj/item/device/radio, -/obj/structure/surface/table/almayer, -/turf/open/floor, -/area/bigred/ground/security) -"qS" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/se) -"rD" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor, -/area/bigred/ground/security) -"rF" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/greengrid, -/area/bigred/ground/security) -"sd" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor, -/area/bigred/ground/security) -"tV" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/filtration_cave_cas) -"uk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigred/ground/security) -"uF" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/greengrid, -/area/bigred/ground/security) -"ve" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Checkpoint Office" - }, -/turf/open/floor/delivery, -/area/bigred/ground/security) -"vH" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigred/ground/security) -"vO" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/small_stack, -/turf/open/floor, -/area/bigred/ground/security) -"xa" = ( -/turf/open/floor/greengrid, -/area/bigred/ground/security) -"xj" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigred/ground/security) -"xr" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/obj/item/device/flashlight, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigred/ground/security) -"xw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/bigredv2/outside/filtration_cave_cas) -"An" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement/cement1/north, -/area/bigredv2/outside/filtration_cave_cas) -"AY" = ( -/turf/open/floor, -/area/bigred/ground/security) -"DT" = ( -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/filtration_cave_cas) -"Es" = ( -/turf/open/asphalt/cement/cement14, -/area/bigredv2/outside/filtration_cave_cas) -"Fv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/filtration_cave_cas) -"Gi" = ( -/turf/open/asphalt/cement/cement9, -/area/bigredv2/outside/filtration_cave_cas) -"HM" = ( -/obj/item/tool/warning_cone, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/bigredv2/outside/se) -"IS" = ( -/obj/structure/filingcabinet, -/turf/open/floor/greengrid, -/area/bigred/ground/security) -"KD" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1/north, -/area/bigredv2/outside/filtration_cave_cas) -"KO" = ( -/obj/item/trash/sosjerky, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigred/ground/security) -"Lw" = ( -/obj/effect/landmark/hunter_primary, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement/cement9, -/area/bigredv2/outside/filtration_cave_cas) -"LX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigred/ground/security) -"Mo" = ( -/turf/open/asphalt/cement/cement12, -/area/bigredv2/outside/filtration_cave_cas) -"Mq" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/greengrid, -/area/bigred/ground/security) -"Nv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement/cement15, -/area/bigredv2/outside/filtration_cave_cas) -"NQ" = ( -/obj/structure/largecrate, -/turf/open/floor/greengrid, -/area/bigred/ground/security) -"NU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/vending/security, -/turf/open/floor, -/area/bigred/ground/security) -"On" = ( -/turf/open/asphalt/cement, -/area/bigredv2/outside/filtration_cave_cas) -"Ot" = ( -/turf/open/asphalt/cement/cement15, -/area/bigredv2/outside/filtration_cave_cas) -"Pf" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor, -/area/bigred/ground/security) -"Pg" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/se) -"PS" = ( -/turf/open/mars, -/area/bigredv2/outside/se) -"Qf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/filtration_cave_cas) -"Qo" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/solaris/reinforced, -/area/bigred/ground/security) -"Rv" = ( -/obj/item/tool/warning_cone, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/filtration_cave_cas) -"RA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/filtration_cave_cas) -"Sr" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor, -/area/bigred/ground/security) -"SF" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigred/ground/security) -"Tw" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement3, -/area/bigredv2/outside/filtration_cave_cas) -"Vn" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/greengrid, -/area/bigred/ground/security) -"VI" = ( -/obj/structure/largecrate, -/turf/open/floor, -/area/bigred/ground/security) -"XS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/bigredv2/outside/filtration_cave_cas) -"XX" = ( -/obj/effect/landmark/crap_item, -/turf/open/asphalt/cement/cement1/north, -/area/bigredv2/outside/filtration_cave_cas) -"Ya" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/asphalt/cement/cement4, -/area/bigredv2/outside/filtration_cave_cas) -"Yo" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid, -/turf/open/floor, -/area/bigred/ground/security) -"YZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv{ - dir = 8 - }, -/turf/open/floor/greengrid, -/area/bigred/ground/security) -"Zn" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/bigredv2/outside/filtration_cave_cas) -"ZK" = ( -/obj/effect/landmark/crap_item, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigred/ground/security) - -(1,1,1) = {" -PS -HM -qS -qS -Pg -kX -kX -kX -kX -kX -kX -kX -kX -Qo -"} -(2,1,1) = {" -oT -tV -tV -tV -tV -kX -IS -LX -qy -bx -el -NU -rF -Qo -"} -(3,1,1) = {" -oT -pI -xw -nY -Es -SF -kd -AY -KO -uk -uk -AY -rF -Qo -"} -(4,1,1) = {" -oT -Gi -KD -XX -Ot -SF -Vn -xj -uk -AY -uk -uk -AY -hz -"} -(5,1,1) = {" -oT -tV -tV -Qf -Qf -kX -YZ -aN -rD -AY -uk -AY -ge -Qo -"} -(6,1,1) = {" -oT -aM -Tw -gr -Es -kX -kX -kX -kX -bp -kX -kX -kX -Qo -"} -(7,1,1) = {" -oT -Ya -On -On -Mo -kX -VI -VI -AY -uk -AY -pV -Mq -Qo -"} -(8,1,1) = {" -oT -DT -XS -On -Mo -kX -sd -AY -uk -uk -AY -AY -uF -Qo -"} -(9,1,1) = {" -oT -Fv -XS -XS -Mo -ve -uk -uk -AY -AY -uk -AY -xa -Qo -"} -(10,1,1) = {" -oT -RA -On -Zn -Mo -kX -AY -Pf -vH -AY -uk -uk -xa -Qo -"} -(11,1,1) = {" -oT -Rv -On -XS -aH -kX -vH -ZK -Sr -Yo -vO -xr -NQ -Qo -"} -(12,1,1) = {" -ie -Lw -An -An -Nv -Qo -Qo -Qo -Qo -Qo -Qo -Qo -Qo -Qo -"} diff --git a/maps/map_files/BigRed/standalone/crashlanding-eva.dmm b/maps/map_files/BigRed/standalone/crashlanding-eva.dmm deleted file mode 100644 index cce52624863f..000000000000 --- a/maps/map_files/BigRed/standalone/crashlanding-eva.dmm +++ /dev/null @@ -1,1843 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ab" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"an" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/caves_north) -"at" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, -/area/bigredv2/caves_north) -"au" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars, -/area/bigredv2/caves_north) -"aw" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy20" - }, -/area/bigredv2/caves_north) -"ax" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy27" - }, -/area/bigredv2/caves_north) -"ay" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy25" - }, -/area/bigredv2/caves_north) -"aB" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/general_offices) -"aD" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy22" - }, -/area/bigredv2/outside/general_offices) -"aF" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy23" - }, -/area/bigredv2/outside/general_offices) -"aG" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy21" - }, -/area/bigredv2/outside/general_offices) -"aH" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy25" - }, -/area/bigredv2/outside/general_offices) -"aI" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/general_offices) -"aK" = ( -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"aP" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy18" - }, -/area/bigredv2/outside/general_offices) -"aQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars, -/area/bigredv2/caves_north) -"aR" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, -/area/bigredv2/outside/general_offices) -"aS" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, -/area/bigredv2/outside/general_offices) -"aT" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, -/area/bigredv2/outside/general_offices) -"aV" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy19" - }, -/area/bigredv2/outside/general_offices) -"aZ" = ( -/obj/structure/window_frame/solaris, -/obj/item/shard, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"bf" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"bg" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/shuttle/dropship/can_surgery, -/area/bigredv2/outside/general_offices) -"bi" = ( -/obj/item/paper/crumpled/bloody, -/obj/effect/decal/cleanable/blood{ - icon_state = "u_psycopath_l" - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) -"bk" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) -"bp" = ( -/obj/structure/surface/table, -/obj/structure/bedsheetbin, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"br" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy16" - }, -/area/bigredv2/outside/general_offices) -"bt" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) -"bw" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy17" - }, -/area/bigredv2/outside/general_offices) -"bA" = ( -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"bE" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy14" - }, -/area/bigredv2/outside/general_offices) -"bF" = ( -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) -"bG" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy15" - }, -/area/bigredv2/outside/general_offices) -"bJ" = ( -/obj/structure/bed/chair/dropship/passenger, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) -"bM" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy12" - }, -/area/bigredv2/outside/general_offices) -"bN" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy13" - }, -/area/bigredv2/outside/general_offices) -"ca" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy4" - }, -/area/bigredv2/outside/general_offices) -"cc" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, -/area/bigredv2/outside/general_offices) -"cd" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, -/area/bigredv2/outside/general_offices) -"cf" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy5" - }, -/area/bigredv2/outside/general_offices) -"cj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"cm" = ( -/obj/effect/spawner/gibspawner/human, -/obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, -/area/bigredv2/outside/general_offices) -"cn" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy_leftengine" - }, -/area/bigredv2/outside/general_offices) -"co" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy8" - }, -/area/bigredv2/outside/general_offices) -"cp" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy9" - }, -/area/bigredv2/outside/general_offices) -"cq" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy_rightengine" - }, -/area/bigredv2/outside/general_offices) -"cs" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_3"; - opacity = 0 - }, -/area/bigredv2/outside/general_offices) -"cv" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_3"; - opacity = 0 - }, -/area/bigredv2/outside/general_offices) -"cA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories Tool Storage" - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"cC" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_2"; - opacity = 0 - }, -/area/bigredv2/outside/general_offices) -"cD" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_2"; - opacity = 0 - }, -/area/bigredv2/outside/general_offices) -"cE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"cF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"cG" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_1"; - opacity = 0 - }, -/area/bigredv2/outside/general_offices) -"cH" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy1" - }, -/area/bigredv2/outside/general_offices) -"cI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/gibspawner/human, -/turf/open/mars, -/area/bigredv2/caves_north) -"cJ" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy2" - }, -/area/bigredv2/outside/general_offices) -"cK" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy3" - }, -/area/bigredv2/outside/general_offices) -"cL" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_1"; - opacity = 0 - }, -/area/bigredv2/outside/general_offices) -"cO" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Dormitories"; - name = "\improper Dormitories Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"cP" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"cV" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/bigredv2/caves_north) -"di" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"dx" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/bar) -"dQ" = ( -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/ne) -"dR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"dX" = ( -/obj/item/stack/rods, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"eF" = ( -/turf/template_noop, -/area/template_noop) -"eL" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/shuttle/dropship/can_surgery, -/area/bigredv2/outside/general_offices) -"fm" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"fw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/hydroponics) -"fB" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"fY" = ( -/obj/item/clothing/under/darkred, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"ge" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/chef, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"gp" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"gP" = ( -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/general_offices) -"hf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/wood, -/area/bigredv2/outside/general_offices) -"hs" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"id" = ( -/obj/structure/surface/rack, -/obj/item/xeno_restraints, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) -"ig" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) -"iq" = ( -/obj/structure/surface/table, -/turf/open/floor/plating/wood, -/area/bigredv2/outside/general_offices) -"iM" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/general_offices) -"jr" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"jQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/ne) -"kL" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"kV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/hydroponics) -"lv" = ( -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/general_offices) -"mr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/ne) -"mt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"mC" = ( -/turf/open/floor/plating/wood, -/area/bigredv2/outside/general_offices) -"mL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/wood_broken3, -/area/bigredv2/outside/general_offices) -"nD" = ( -/obj/structure/girder, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"nN" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/general_offices) -"nR" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"nW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"og" = ( -/obj/item/stack/sheet/plasteel, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"oi" = ( -/obj/structure/surface/rack, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"oD" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"oW" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/general_offices) -"ph" = ( -/obj/structure/surface/rack, -/obj/item/device/mass_spectrometer/adv, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"pn" = ( -/obj/structure/surface/rack, -/obj/item/map/big_red_map, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) -"pt" = ( -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/general_offices) -"pM" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) -"qb" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"qo" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/remains, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) -"rg" = ( -/obj/structure/machinery/light, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"rk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/uranium{ - amount = 50 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"rv" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Bedroom" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"rw" = ( -/obj/structure/surface/table, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"rK" = ( -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/hydroponics) -"sm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"ta" = ( -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/hydroponics) -"tI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/ne) -"tQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"uj" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"uw" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"vi" = ( -/turf/open/floor/plating/wood_broken5, -/area/bigredv2/outside/general_offices) -"vU" = ( -/turf/open/floor/plating/wood_broken6, -/area/bigredv2/outside/general_offices) -"wM" = ( -/obj/structure/girder, -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/general_offices) -"xs" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/hydroponics) -"xt" = ( -/obj/item/clothing/under/darkred{ - pixel_y = 7; - pixel_x = 10 - }, -/obj/structure/surface/rack, -/obj/item/clothing/under/darkred, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"xU" = ( -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/hydroponics) -"xW" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/general_offices) -"yy" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"zM" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Dormitories EVA" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"AA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"AX" = ( -/obj/structure/surface/rack, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) -"Bb" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars/mars_dirt_11, -/area/bigredv2/caves_north) -"Bv" = ( -/obj/structure/computerframe, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) -"BC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/tool, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"BJ" = ( -/obj/structure/surface/table, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_y = -7; - pixel_x = 8 - }, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_y = 3; - pixel_x = -1 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"BP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/hydroponics) -"CA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"CU" = ( -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/ne) -"Dg" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/general_offices) -"Dh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/hydroponics) -"Dk" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"EO" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy20" - }, -/area/bigredv2/outside/general_offices) -"Fw" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) -"FF" = ( -/obj/structure/bed, -/turf/open/floor/plating/wood, -/area/bigredv2/outside/general_offices) -"Gn" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"Gz" = ( -/obj/structure/machinery/camera/autoname, -/obj/item/stack/sheet/plasteel, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"GM" = ( -/obj/structure/surface/table, -/obj/item/clothing/under/brown{ - pixel_y = 7; - pixel_x = 12 - }, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 8 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"Hj" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/caves_north) -"Hk" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/hydroponics) -"Hq" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) -"Hw" = ( -/obj/structure/bed/chair/dropship/passenger, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) -"HG" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/general_offices) -"HN" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Dormitories Lavatory" - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"HS" = ( -/obj/structure/surface/table, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"Id" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/uranium{ - amount = 50 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"Ie" = ( -/turf/open/floor/plating/wood_broken4, -/area/bigredv2/outside/general_offices) -"Jl" = ( -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/hydroponics) -"Js" = ( -/turf/open/floor/plating/wood_broken3, -/area/bigredv2/outside/general_offices) -"Jv" = ( -/obj/structure/bed/bedroll, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"JI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"JW" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"Lw" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"Mc" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/hydroponics) -"Ml" = ( -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/general_offices) -"Od" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/ne) -"Oh" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"OI" = ( -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/general_offices) -"Pb" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/general_offices) -"Pg" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"Ph" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"PE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"PI" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"PN" = ( -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/general_offices) -"PO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"Rk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/hydroponics) -"Ro" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"RI" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/lightbrown{ - pixel_x = 10; - pixel_y = -5 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"Tz" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"TX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"Ul" = ( -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) -"UZ" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/ne) -"VB" = ( -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/ne) -"VQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"WR" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/prop/helmetgarb/spent_buckshot{ - pixel_x = 9; - pixel_y = -10 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"Xl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/wood_broken2, -/area/bigredv2/outside/general_offices) -"XK" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_north) -"Yg" = ( -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"Yt" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/general_offices) -"YB" = ( -/obj/structure/bed, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"YL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/silver, -/obj/item/stack/sheet/mineral/silver{ - amount = 20 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"YQ" = ( -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/ne) -"YV" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves_north) -"ZD" = ( -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) - -(1,1,1) = {" -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -"} -(2,1,1) = {" -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -"} -(3,1,1) = {" -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -"} -(4,1,1) = {" -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -"} -(5,1,1) = {" -eF -eF -eF -eF -eF -eF -eF -aB -aB -aB -HN -aB -aB -aB -aB -aB -aB -aB -cE -aK -aK -di -bA -dx -eF -eF -eF -eF -eF -"} -(6,1,1) = {" -eF -eF -eF -eF -eF -eF -eF -aB -xt -PI -AA -PI -WR -aB -oi -oi -oi -aB -aK -aK -aK -aB -aB -dx -dx -eF -eF -eF -eF -"} -(7,1,1) = {" -eF -eF -eF -eF -eF -eF -eF -aB -RI -CA -dR -PI -BJ -aB -nW -PO -jr -aB -cF -aK -aK -rv -mC -hf -aB -eF -eF -eF -eF -"} -(8,1,1) = {" -eF -eF -eF -eF -eF -eF -eF -aB -PI -sm -dR -CA -GM -aB -Dk -PO -Yg -aB -PO -bf -bf -aB -iq -FF -aB -eF -eF -eF -eF -"} -(9,1,1) = {" -eF -eF -eF -eF -eF -eF -eF -aB -gp -fY -Jv -PI -bf -nD -uw -BC -Yg -wM -TX -Yg -Pb -aB -aB -aB -aB -eF -eF -eF -eF -"} -(10,1,1) = {" -eF -eF -eF -eF -eF -eF -eF -aB -oD -bf -bp -Yg -Yg -wM -PE -Yg -Yg -cA -Yg -Yg -PN -rv -vi -Xl -aB -eF -eF -eF -eF -"} -(11,1,1) = {" -eF -eF -eF -eF -eF -eF -eF -aB -Yg -OI -bf -PN -Yg -pt -Yg -PO -PO -aK -ge -qb -PN -aB -rw -YB -aB -eF -eF -eF -eF -"} -(12,1,1) = {" -eF -eF -eF -eF -eF -eF -eF -aB -Yg -Yg -PN -HG -Yg -Yg -Yg -PO -Yg -pt -OI -dX -Yg -aB -aB -aB -aB -eF -eF -eF -eF -"} -(13,1,1) = {" -eF -eF -eF -eF -eF -ab -ab -aB -aB -aB -aB -pt -dX -pt -dX -Yg -tQ -oW -PO -OI -PO -rv -vU -mL -wM -tI -UZ -eF -eF -"} -(14,1,1) = {" -eF -eF -eF -eF -eF -aQ -cV -EO -aP -bg -br -bE -bM -bg -ca -cn -cs -cC -cG -Yg -gP -pt -Js -Ie -JW -tI -rK -Jl -Jl -"} -(15,1,1) = {" -eF -eF -eF -eF -eF -aQ -cI -aG -AX -Ul -Hq -Hq -Hq -pM -id -co -ca -ca -cH -ZD -Ml -Ml -JI -Yt -pt -jQ -ta -ta -Dh -"} -(16,1,1) = {" -eF -eF -eF -eF -eF -at -aw -aD -aR -bi -bt -bF -bF -bF -cc -Ul -Ul -Ul -eL -gP -Gn -Yg -PN -PN -PN -mr -kV -Rk -BP -"} -(17,1,1) = {" -eF -eF -eF -eF -eF -aQ -ax -Bv -cm -bJ -bJ -bJ -Hw -bJ -aS -bk -bk -bk -cJ -OI -Yg -Yg -YQ -YQ -Od -dQ -ta -Mc -fw -"} -(18,1,1) = {" -eF -eF -eF -eF -eF -au -ay -aF -aT -bk -bk -bk -bk -bk -cd -Ul -qo -Ul -eL -Ml -Ro -lv -CU -VB -CU -eF -xU -xs -ta -"} -(19,1,1) = {" -eF -eF -eF -eF -eF -aQ -an -aG -pn -Fw -ig -ig -ig -Ul -AX -cp -cf -cf -cK -PO -PO -nN -eF -eF -eF -eF -Hk -ta -fw -"} -(20,1,1) = {" -eF -eF -eF -eF -eF -Bb -an -aH -aV -bg -bw -bG -bN -bg -cf -cq -cv -cD -cL -OI -Yg -mt -eF -eF -eF -eF -Jl -ta -eF -"} -(21,1,1) = {" -eF -eF -eF -eF -eF -XK -an -Dg -OI -PO -PO -OI -Yg -pt -Yg -Yg -Yg -pt -PO -fB -OI -OI -eF -eF -eF -eF -eF -eF -eF -"} -(22,1,1) = {" -eF -eF -eF -eF -eF -YV -ab -aB -PN -PO -xW -Yg -fB -dX -kL -Yg -Yg -JW -PO -OI -Yg -wM -eF -eF -eF -eF -eF -eF -eF -"} -(23,1,1) = {" -eF -eF -eF -eF -eF -Hj -ab -aB -Pg -Yg -Yg -fm -HS -wM -Oh -Oh -Oh -wM -iM -iM -rg -aB -eF -eF -eF -eF -eF -eF -eF -"} -(24,1,1) = {" -eF -eF -eF -eF -eF -Hj -ab -aI -aZ -zM -aZ -aZ -aI -aI -aI -aI -aI -aI -cj -aK -cP -aB -eF -eF -eF -eF -eF -eF -eF -"} -(25,1,1) = {" -eF -eF -eF -eF -eF -ab -ab -aI -yy -uj -Tz -VQ -rk -VQ -Lw -uj -nR -aI -cO -cO -cO -aB -eF -eF -eF -eF -eF -eF -eF -"} -(26,1,1) = {" -eF -eF -eF -eF -eF -eF -eF -aI -uj -uj -uj -VQ -VQ -VQ -uj -VQ -uj -aI -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -"} -(27,1,1) = {" -eF -eF -eF -eF -eF -eF -eF -aI -uj -uj -uj -uj -og -uj -hs -uj -Gz -aI -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -"} -(28,1,1) = {" -eF -eF -eF -eF -eF -eF -eF -aI -ph -uj -Id -uj -YL -uj -Ph -uj -Ph -aI -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -"} -(29,1,1) = {" -eF -eF -eF -eF -eF -eF -eF -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -"} diff --git a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm deleted file mode 100644 index 6fd3ae9aad83..000000000000 --- a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm +++ /dev/null @@ -1,1917 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ai" = ( -/turf/open/mars, -/area/bigredv2/outside/e) -"ap" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/office_complex) -"as" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Office Complex 1"; - name = "\improper Office Complex Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/office_complex) -"ax" = ( -/obj/structure/window_frame/solaris, -/obj/item/shard, -/turf/open/floor/plating, -/area/bigredv2/outside/office_complex) -"aC" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy20" - }, -/area/bigredv2/outside/office_complex) -"aD" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy27" - }, -/area/bigredv2/outside/office_complex) -"aE" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy25" - }, -/area/bigredv2/outside/office_complex) -"aL" = ( -/obj/effect/decal/mecha_wreckage/ripley/firefighter, -/turf/open/floor/mech_bay_recharge_floor, -/area/bigredv2/outside/office_complex) -"aN" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy21" - }, -/area/bigredv2/outside/office_complex) -"aO" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy22" - }, -/area/bigredv2/outside/office_complex) -"aQ" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy23" - }, -/area/bigredv2/outside/office_complex) -"aT" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy18" - }, -/area/bigredv2/outside/office_complex) -"aW" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"aX" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy19" - }, -/area/bigredv2/outside/office_complex) -"aY" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Office Complex 1"; - name = "\improper Office Complex Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/office_complex) -"ba" = ( -/obj/structure/window_frame/solaris, -/obj/item/shard, -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/bigredv2/outside/office_complex) -"bc" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"be" = ( -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bf" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bj" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy16" - }, -/area/bigredv2/outside/office_complex) -"bl" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, -/area/bigredv2/outside/office_complex) -"bm" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, -/area/bigredv2/outside/office_complex) -"bn" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_middle, -/area/bigredv2/outside/office_complex) -"bo" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, -/area/bigredv2/outside/office_complex) -"bq" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy17" - }, -/area/bigredv2/outside/office_complex) -"bs" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/paper, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bz" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy14" - }, -/area/bigredv2/outside/office_complex) -"bA" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy15" - }, -/area/bigredv2/outside/office_complex) -"bF" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy12" - }, -/area/bigredv2/outside/office_complex) -"bG" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy13" - }, -/area/bigredv2/outside/office_complex) -"bH" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Private Office" - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/plating, -/area/bigredv2/outside/office_complex) -"bK" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bN" = ( -/obj/structure/window_frame/solaris, -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/bigredv2/outside/office_complex) -"bQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bU" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"cx" = ( -/obj/effect/spawner/gibspawner/human, -/obj/item/limb/arm/l_arm, -/obj/item/limb/leg/l_leg, -/obj/item/limb/hand/r_hand, -/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, -/area/bigredv2/outside/office_complex) -"cD" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy_leftengine" - }, -/area/bigredv2/outside/office_complex) -"cE" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy8" - }, -/area/bigredv2/outside/office_complex) -"cF" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy9" - }, -/area/bigredv2/outside/office_complex) -"cG" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy_rightengine" - }, -/area/bigredv2/outside/office_complex) -"cL" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_3"; - opacity = 0 - }, -/area/bigredv2/outside/office_complex) -"cM" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy4" - }, -/area/bigredv2/outside/office_complex) -"cN" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy5" - }, -/area/bigredv2/outside/office_complex) -"cO" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_3"; - opacity = 0 - }, -/area/bigredv2/outside/office_complex) -"cR" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/office_complex) -"cT" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_2"; - opacity = 0 - }, -/area/bigredv2/outside/office_complex) -"cU" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_2"; - opacity = 0 - }, -/area/bigredv2/outside/office_complex) -"da" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris, -/area/bigredv2/outside/office_complex) -"dc" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_1"; - opacity = 0 - }, -/area/bigredv2/outside/office_complex) -"dd" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_1"; - opacity = 0 - }, -/area/bigredv2/outside/office_complex) -"dg" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy1" - }, -/area/bigredv2/outside/office_complex) -"dh" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy2" - }, -/area/bigredv2/outside/office_complex) -"di" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy3" - }, -/area/bigredv2/outside/office_complex) -"dk" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex Janitor Room" - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"dm" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy1" - }, -/area/bigredv2/outside/se) -"dn" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/se) -"do" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy3" - }, -/area/bigredv2/outside/se) -"ds" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/se) -"dz" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"dB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"dE" = ( -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"dF" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, -/area/bigredv2/outside/office_complex) -"dH" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, -/area/bigredv2/outside/office_complex) -"dJ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"eY" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/c) -"fp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/mass_spectrometer/adv, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"gu" = ( -/obj/structure/surface/table, -/obj/item/trash/semki, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"gV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"hl" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"hv" = ( -/turf/open/floor/warnwhite, -/area/bigredv2/outside/office_complex) -"hA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/folder/black, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"hU" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"ie" = ( -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"ip" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"jl" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/se) -"jo" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/se) -"jr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/se) -"jx" = ( -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, -/obj/item/limb/leg/l_leg, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"jz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"jE" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"ka" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/e) -"kP" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"lH" = ( -/obj/structure/surface/table, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"lN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"lX" = ( -/obj/item/device/analyzer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"mu" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"mx" = ( -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"mP" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/se) -"nn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"ny" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/e) -"nC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/se) -"oc" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"of" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"oE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"pt" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"pu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"pW" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/item/clothing/under/marine/veteran/pmc, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"qf" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/e) -"qk" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"ql" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"qw" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/item/device/radio/headset/distress/pmc/hvh, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"qY" = ( -/obj/structure/girder, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/office_complex) -"si" = ( -/obj/item/clothing/head/helmet/marine/veteran/pmc, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"sR" = ( -/obj/item/storage/firstaid, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"sX" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"tz" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/c) -"tF" = ( -/obj/item/frame/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"tG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/office_complex) -"ua" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"ue" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/nsg23, -/obj/item/ammo_magazine/rifle/nsg23/extended, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"ut" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/bigredv2/outside/e) -"uw" = ( -/obj/structure/girder, -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/office_complex) -"uC" = ( -/obj/effect/spawner/gibspawner/human, -/obj/item/weapon/gun/rifle/m41a/corporate/no_lock{ - desc = "A Weyland-Yutani creation, this M41A MK2 comes equipped in corporate white. Uses 10x24mm caseless ammunition. The IFF electronics appear to be non-functional."; - name = "battered M41A pulse rifle Mk2" - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"uL" = ( -/obj/item/weapon/gun/rifle/nsg23/no_lock, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"va" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"ve" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_top, -/area/bigredv2/outside/office_complex) -"vl" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/e) -"vw" = ( -/obj/item/limb/arm/l_arm, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, -/area/bigredv2/outside/office_complex) -"vH" = ( -/obj/structure/janitorialcart, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"wm" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/item/limb/hand/l_hand, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"wn" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"ws" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"wO" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"wZ" = ( -/obj/item/device/multitool, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"xp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"xr" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/c) -"xx" = ( -/obj/structure/surface/rack, -/obj/item/map/big_red_map, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"xU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"yI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/office_complex) -"zf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"zh" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/pmc, -/obj/item/weapon/gun/rifle/nsg23/no_lock, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"zl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"zq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex Janitor Room" - }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"zv" = ( -/obj/structure/janitorialcart, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"zH" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"zX" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"Ak" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"Al" = ( -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"Au" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"Av" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"AF" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"AK" = ( -/obj/item/shard, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"Be" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/e) -"Bj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"Bu" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/obj/item/limb/arm/l_arm, -/obj/item/limb/leg/l_leg, -/obj/item/limb/hand/r_hand, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"Bz" = ( -/obj/item/clothing/head/welding, -/turf/open/floor/warnwhite, -/area/bigredv2/outside/office_complex) -"BX" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/bigredv2/outside/e) -"Ct" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/se) -"Cy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"Cz" = ( -/obj/item/clothing/shoes/galoshes, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"CB" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"CD" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"Db" = ( -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"Dn" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"DN" = ( -/obj/structure/machinery/mech_bay_recharge_port, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"DP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"Eo" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/item/device/radio/headset/distress/pmc/hvh, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"Eq" = ( -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"Fc" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"Fi" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"Fp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"FH" = ( -/obj/item/trash/raisins, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"FV" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"FZ" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"Gr" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/e) -"Gx" = ( -/obj/item/weapon/gun/rifle/nsg23/no_lock/stripped{ - desc = "A rare sight, this rifle is seen most commonly in the hands of Weyland-Yutani PMCs. Compared to the M41A MK2, it has noticeably improved handling and vastly improved performance at long and medium range, but compares similarly up close. This one seems to have been heavily damaged from impact, you can still see some debris that resembles a scope and underbarrel attachment point on it."; - name = "smashed NSG 23 assault rifle" - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey_bottom, -/area/bigredv2/outside/office_complex) -"GG" = ( -/obj/item/weapon/gun/rifle/m41a/corporate/no_lock{ - desc = "A Weyland-Yutani creation, this M41A MK2 comes equipped in corporate white. Uses 10x24mm caseless ammunition. The IFF electronics appear to be non-functional."; - name = "battered M41A pulse rifle Mk2" - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"GI" = ( -/obj/structure/machinery/mecha_part_fabricator, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"GK" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_top, -/area/bigredv2/outside/office_complex) -"Hq" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"Hr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"HE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/office_complex) -"HG" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"HP" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/e) -"Ic" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/bigredv2/outside/c) -"Ik" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/e) -"Iq" = ( -/obj/item/shard, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"Is" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/se) -"Iz" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/bigredv2/outside/e) -"IZ" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"JH" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"Ko" = ( -/obj/structure/computerframe, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"Kp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/office_complex) -"Kq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"KK" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"Lq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"Lx" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"LN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"LQ" = ( -/obj/structure/surface/rack, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"Mb" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/item/limb/leg/r_leg, -/obj/item/weapon/gun/pistol/m4a3/training{ - name = "dented M4A3 service pistol" - }, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"Ml" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"MJ" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/office_complex) -"Na" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/se) -"Nc" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/ammo_magazine/pistol/rubber, -/obj/item/ammo_magazine/pistol/rubber, -/obj/item/ammo_magazine/pistol/rubber, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"NQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Office Complex Storage" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"NZ" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/obj/item/clothing/head/helmet/marine/veteran/pmc, -/obj/item/clothing/under/marine/veteran/pmc, -/obj/item/clothing/head/helmet/marine/veteran/pmc, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"Oi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"OH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/paper, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"ON" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"OU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"OX" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"Pp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) -"Pv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/lighter/random, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"PH" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner/bigred_crashed_cl, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"Qh" = ( -/obj/item/stack/rods, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"Qr" = ( -/obj/structure/surface/rack, -/obj/item/device/binoculars, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"QD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"Rd" = ( -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/office_complex) -"Sf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"Sm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"Sy" = ( -/obj/structure/surface/rack, -/obj/item/xeno_restraints, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"SD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/syndi_cakes, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"SK" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"Tb" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/office_complex) -"Tk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/se) -"Ts" = ( -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"TC" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/cigarette, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/device/healthanalyzer, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"TH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/taperecorder, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"TU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"UB" = ( -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"UR" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/rubber, -/obj/item/ammo_magazine/rifle/rubber, -/obj/item/ammo_magazine/rifle/rubber, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"Vg" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, -/area/bigredv2/outside/office_complex) -"Vi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"Vk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/office_complex) -"Vy" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/c) -"VG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/office_complex) -"Wb" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"Wd" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"Wn" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/e) -"Wt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/se) -"Wv" = ( -/obj/structure/machinery/robotic_fabricator, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"WA" = ( -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/office_complex) -"WB" = ( -/obj/structure/girder, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"WG" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"WU" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"WV" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc_engineer, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"WZ" = ( -/obj/item/stack/rods, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"Xg" = ( -/obj/effect/spawner/random/tech_supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"Xm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex" - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"XS" = ( -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/bigredv2/outside/c) -"Yd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"Yj" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"Ym" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/office_complex) -"YI" = ( -/obj/item/frame/table, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"YP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/hotdog, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"Zl" = ( -/obj/item/frame/table, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"ZG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"ZR" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc_medic, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) - -(1,1,1) = {" -Hq -xr -tz -Lx -Lx -Lx -Lx -Iq -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Iq -Lx -Qh -Lx -SK -SK -SK -SK -SK -SK -"} -(2,1,1) = {" -Hq -xr -FV -ap -ap -ap -aY -bN -aY -ap -ap -ap -ap -ap -ap -ap -bN -ax -aY -ap -ap -SK -SK -SK -ap -"} -(3,1,1) = {" -Hq -xr -FV -ap -Wv -hv -Ts -sX -sX -Sf -ap -mu -mu -WG -ap -Dn -YI -Yj -lH -gu -ap -SK -SK -SK -ap -"} -(4,1,1) = {" -Hq -xr -kP -as -Ts -hv -xp -YP -Ts -Bj -fp -Cy -Zl -Xg -ap -UB -FH -OU -SD -TC -as -SK -SK -SK -ap -"} -(5,1,1) = {" -Hq -xr -FV -as -DN -Bz -xp -Ml -UB -Cy -OU -pt -TH -FZ -ap -ip -ZG -IZ -Vi -zf -cR -zX -SK -SK -ap -"} -(6,1,1) = {" -Hq -xr -FV -as -aL -hv -Cy -hA -Cy -WU -ap -QD -xp -UB -WZ -CD -gV -wZ -UB -YI -as -SK -SK -SK -ap -"} -(7,1,1) = {" -Hq -xr -FV -ap -Ts -hv -lX -UB -HG -Kp -WB -Cy -UB -tF -UB -DP -Ak -UB -xU -xU -ap -lN -SK -Av -ap -"} -(8,1,1) = {" -Hq -xr -FV -ap -GI -UB -WA -UB -Cy -Cy -ap -WB -WB -ap -UB -NQ -ap -ap -WB -WB -ap -da -ap -ap -ap -"} -(9,1,1) = {" -Hq -xr -FV -ap -ap -ap -AF -QD -LN -oE -tG -jz -Cy -uw -jz -ON -TU -Vi -Vi -TU -Sm -VG -HE -Vk -Pp -"} -(10,1,1) = {" -Hq -Vy -FV -SK -SK -ap -aC -bj -bz -bF -bJ -bj -bz -bF -bJ -bj -bz -bF -cD -cL -cT -dc -Eq -Tb -Eq -"} -(11,1,1) = {" -Ic -tz -SK -SK -SK -WB -aN -WV -Mb -hl -Al -KK -Nc -OX -Al -ws -hl -hl -cE -cM -cM -cM -dg -tG -tG -"} -(12,1,1) = {" -XS -ap -ap -ap -aC -aT -aO -bl -dz -bc -bc -dB -bc -bc -bc -bc -Bu -dF -pW -zH -ws -hl -cE -dm -Is -"} -(13,1,1) = {" -XS -ap -qk -Eq -aN -Sy -KK -bm -wO -ql -oc -oc -oc -oc -PH -oc -ql -GK -si -GG -bc -dz -bc -dn -Wt -"} -(14,1,1) = {" -va -Xm -yI -aC -aO -Al -Al -Vg -hl -qw -ws -hl -zH -hl -hl -hl -hl -dH -KK -KK -KK -Wd -cF -do -ds -"} -(15,1,1) = {" -eY -Eq -zl -aD -Ko -aW -uL -bn -NZ -jx -dE -dE -bc -bc -bc -bc -bc -Gx -bc -bc -bc -bc -dh -jr -nC -"} -(16,1,1) = {" -ny -ba -Hr -aE -aQ -Al -Al -vw -wm -wO -oc -oc -oc -oc -CB -oc -oc -bm -xx -ue -Fc -UR -cE -dm -Ct -"} -(17,1,1) = {" -ka -ap -MJ -Tb -aN -KK -Qr -bm -hl -hl -hl -zH -ZR -hl -hl -hl -pW -ve -dz -dJ -dJ -dJ -dJ -dn -mP -"} -(18,1,1) = {" -ka -ap -ap -ap -aE -aX -aQ -bo -bc -bc -uC -bc -sR -bc -bc -bc -bc -cx -wO -Eo -ql -oc -cF -do -jl -"} -(19,1,1) = {" -Wn -Ik -of -of -of -Ym -aN -ql -Fi -oc -Al -LQ -KK -KK -Al -ql -wO -oc -cF -cN -cN -cN -di -Tk -jl -"} -(20,1,1) = {" -ai -Be -ka -Au -Au -qY -aE -bq -bA -bG -bJ -bq -bA -bG -bJ -bq -bA -bG -cG -cO -cU -dd -Rd -Tk -Na -"} -(21,1,1) = {" -Gr -vl -ka -of -Au -qY -Kq -Lq -Wb -QD -WA -Eq -jE -uw -Cy -Eq -uw -AF -Cy -JH -Cy -UB -Rd -Tk -Na -"} -(22,1,1) = {" -BX -HP -ka -of -Au -ap -WB -ap -UB -ap -Cy -nn -Oi -WB -QD -Cy -ap -zv -UB -Kp -QD -UB -WB -Tk -Na -"} -(23,1,1) = {" -Iz -ut -ka -of -of -ap -bQ -UB -bQ -bH -WA -bQ -bU -ap -Kp -ua -ap -vH -UB -Fp -Kp -Cy -dk -Tk -jl -"} -(24,1,1) = {" -qf -vl -ka -of -of -bN -bf -bs -wn -ap -WB -UB -UB -ap -Yd -ie -zq -pu -Cy -Cz -Pv -pu -be -Tk -jl -"} -(25,1,1) = {" -ai -Be -ka -of -AK -ap -ap -ap -ap -ap -bK -UB -be -ap -mx -UB -Db -UB -zh -pu -OH -hU -ap -Na -jo -"} diff --git a/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm b/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm deleted file mode 100644 index d191e7b68068..000000000000 --- a/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm +++ /dev/null @@ -1,297 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/mars_cave/mars_cave_18, -/area/bigredv2/caves_lambda) -"b" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"c" = ( -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_lambda) -"d" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/platingdmg2/west, -/area/bigredv2/caves/lambda/virology) -"e" = ( -/turf/open/floor/bluegrid/damaged3, -/area/bigredv2/caves/lambda/virology) -"f" = ( -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/caves/lambda/virology) -"g" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/darkgreencorners2/north, -/area/bigredv2/caves/lambda/virology) -"h" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_lambda) -"i" = ( -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"j" = ( -/turf/open/floor/bluegrid/damaged5, -/area/bigredv2/caves/lambda/virology) -"k" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/darkgreencorners2/west, -/area/bigredv2/caves/lambda/virology) -"l" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_lambda) -"m" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_11, -/area/bigredv2/caves_lambda) -"n" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/lambda/virology) -"o" = ( -/obj/structure/curtain/medical, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"p" = ( -/turf/open/floor/darkgreen2/southwest, -/area/bigredv2/caves/lambda/virology) -"q" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, -/obj/structure/machinery/light, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/caves/lambda/virology) -"r" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/caves_lambda) -"w" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_lambda) -"F" = ( -/turf/open/mars_cave/mars_cave_8, -/area/bigredv2/caves_lambda) -"H" = ( -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/caves_lambda) -"I" = ( -/turf/open/mars_cave/mars_cave_12, -/area/bigredv2/caves_lambda) -"K" = ( -/turf/open/mars_cave/mars_cave_10, -/area/bigredv2/caves_lambda) -"O" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/caves_lambda) -"P" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"X" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_8, -/area/bigredv2/caves_lambda) - -(1,1,1) = {" -a -h -H -c -b -b -"} -(2,1,1) = {" -b -b -l -l -b -b -"} -(3,1,1) = {" -b -b -c -r -I -b -"} -(4,1,1) = {" -b -b -r -O -H -h -"} -(5,1,1) = {" -h -F -I -X -h -c -"} -(6,1,1) = {" -b -O -I -I -c -b -"} -(7,1,1) = {" -b -b -c -K -c -b -"} -(8,1,1) = {" -b -b -K -F -I -O -"} -(9,1,1) = {" -b -h -c -K -I -c -"} -(10,1,1) = {" -h -H -m -c -O -I -"} -(11,1,1) = {" -I -h -H -H -O -O -"} -(12,1,1) = {" -b -c -O -K -I -c -"} -(13,1,1) = {" -b -b -c -c -w -O -"} -(14,1,1) = {" -b -b -c -O -c -c -"} -(15,1,1) = {" -b -b -c -O -c -b -"} -(16,1,1) = {" -b -I -K -P -b -b -"} -(17,1,1) = {" -b -c -h -O -b -b -"} -(18,1,1) = {" -b -c -m -c -b -b -"} -(19,1,1) = {" -c -K -K -c -b -b -"} -(20,1,1) = {" -H -O -K -b -b -b -"} -(21,1,1) = {" -h -c -b -b -b -b -"} -(22,1,1) = {" -d -d -n -b -b -b -"} -(23,1,1) = {" -e -i -n -n -b -b -"} -(24,1,1) = {" -f -j -o -n -n -b -"} -(25,1,1) = {" -g -k -p -q -n -b -"} diff --git a/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm b/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm deleted file mode 100644 index 8bf2e282de1f..000000000000 --- a/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm +++ /dev/null @@ -1,271 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"b" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"c" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) -"g" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/caves_lambda) - -(1,1,1) = {" -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -"} -(2,1,1) = {" -b -a -g -a -b -b -b -b -b -b -b -b -b -b -b -"} -(3,1,1) = {" -b -a -a -a -a -b -b -b -b -b -b -b -b -b -a -"} -(4,1,1) = {" -b -a -a -a -c -a -a -a -b -b -b -b -b -a -a -"} -(5,1,1) = {" -b -b -a -a -a -a -a -a -a -b -b -b -b -a -a -"} -(6,1,1) = {" -b -b -b -a -a -a -g -a -c -a -b -b -a -a -a -"} -(7,1,1) = {" -b -b -b -b -a -a -a -a -a -a -a -b -a -g -a -"} -(8,1,1) = {" -b -b -b -b -b -a -a -a -a -g -a -a -a -a -a -"} -(9,1,1) = {" -b -b -c -c -b -a -c -a -a -c -a -a -a -a -a -"} -(10,1,1) = {" -b -c -a -a -c -a -a -b -b -b -b -b -a -a -a -"} -(11,1,1) = {" -b -c -a -a -a -g -a -b -b -b -b -b -b -a -a -"} -(12,1,1) = {" -b -c -a -c -a -c -a -c -b -b -b -b -b -b -a -"} -(13,1,1) = {" -b -b -c -c -c -a -c -a -b -b -b -b -b -b -b -"} -(14,1,1) = {" -b -b -b -b -c -c -b -b -b -b -b -b -b -b -b -"} -(15,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} diff --git a/maps/map_files/BigRed/standalone/lambda-graveyard.dmm b/maps/map_files/BigRed/standalone/lambda-graveyard.dmm deleted file mode 100644 index 47964ff5ea79..000000000000 --- a/maps/map_files/BigRed/standalone/lambda-graveyard.dmm +++ /dev/null @@ -1,292 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/mars, -/area/bigredv2/outside/se) -"e" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/se) -"f" = ( -/obj/item/stool, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/se) -"g" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/se) -"h" = ( -/obj/structure/flora/bush/ausbushes{ - cut_level = 1 - }, -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/se) -"i" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/se) -"j" = ( -/obj/item/trash/cigbutt{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/trash/cigbutt, -/turf/open/mars, -/area/bigredv2/outside/se) -"k" = ( -/obj/item/reagent_container/food/drinks/bottle/rum{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/weapon/gun/revolver/small, -/obj/item/reagent_container/food/drinks/bottle/rum, -/obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/mars, -/area/bigredv2/outside/se) -"l" = ( -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/se) -"m" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/se) -"n" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/se) -"o" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside/se) -"p" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/mars, -/area/bigredv2/outside/se) -"q" = ( -/obj/structure/prop/dam/gravestone, -/turf/open/mars, -/area/bigredv2/outside/se) -"r" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/mars, -/area/bigredv2/outside/se) -"s" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"t" = ( -/obj/structure/fence, -/turf/open/mars, -/area/bigredv2/outside/se) -"D" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves) - -(1,1,1) = {" -e -a -a -a -a -a -a -a -a -D -"} -(2,1,1) = {" -e -a -a -a -a -a -a -a -a -s -"} -(3,1,1) = {" -e -a -a -a -a -a -a -a -a -a -"} -(4,1,1) = {" -e -a -a -a -a -a -a -a -a -a -"} -(5,1,1) = {" -e -a -a -o -o -o -o -a -a -a -"} -(6,1,1) = {" -e -a -a -o -o -o -o -o -o -a -"} -(7,1,1) = {" -e -a -a -a -o -o -o -o -o -o -"} -(8,1,1) = {" -e -g -l -a -a -a -q -a -a -t -"} -(9,1,1) = {" -e -h -m -a -a -a -a -a -a -t -"} -(10,1,1) = {" -e -i -n -a -a -a -a -q -a -t -"} -(11,1,1) = {" -e -a -a -a -a -a -a -a -a -t -"} -(12,1,1) = {" -e -a -a -a -o -q -a -a -a -t -"} -(13,1,1) = {" -e -a -a -o -o -q -a -a -r -t -"} -(14,1,1) = {" -e -a -o -o -o -a -a -a -a -t -"} -(15,1,1) = {" -e -j -o -o -q -a -a -a -a -t -"} -(16,1,1) = {" -f -k -o -q -a -a -a -a -s -s -"} -(17,1,1) = {" -e -a -p -a -a -a -q -a -s -s -"} -(18,1,1) = {" -e -a -a -a -a -a -a -a -s -s -"} diff --git a/maps/map_files/BigRed/standalone/medbay-passage.dmm b/maps/map_files/BigRed/standalone/medbay-passage.dmm deleted file mode 100644 index 9dc1327ab65c..000000000000 --- a/maps/map_files/BigRed/standalone/medbay-passage.dmm +++ /dev/null @@ -1,130 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/template_noop, -/area/template_noop) -"c" = ( -/obj/structure/sign/safety/medical{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"d" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"e" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"f" = ( -/obj/structure/sign/safety/medical{ - pixel_y = 32 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"h" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"i" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"l" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"m" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"n" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"w" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"R" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/admin_building) -"S" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Operations" - }, -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"T" = ( -/turf/open/floor/white, -/area/bigredv2/outside/admin_building) -"X" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) - -(1,1,1) = {" -a -a -l -l -l -R -"} -(2,1,1) = {" -a -a -c -h -n -R -"} -(3,1,1) = {" -a -a -d -i -w -S -"} -(4,1,1) = {" -a -a -e -l -X -T -"} -(5,1,1) = {" -a -a -f -l -m -R -"} -(6,1,1) = {" -a -a -l -l -l -R -"} diff --git a/maps/map_files/BigRed/standalone/medbay-v3.dmm b/maps/map_files/BigRed/standalone/medbay-v3.dmm deleted file mode 100644 index 924485050ce9..000000000000 --- a/maps/map_files/BigRed/standalone/medbay-v3.dmm +++ /dev/null @@ -1,2231 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/medical) -"ac" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"af" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/medical) -"aj" = ( -/obj/structure/window_frame/solaris, -/obj/item/shard, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"am" = ( -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ap" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"bV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"co" = ( -/obj/structure/window_frame/solaris, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"de" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"di" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"eq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"fu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/ammo_casing/bullet, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"fx" = ( -/obj/structure/surface/table, -/obj/item/device/autopsy_scanner, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"fF" = ( -/obj/structure/bed, -/turf/open/floor/damaged2/west, -/area/bigredv2/outside/medical) -"gg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"gj" = ( -/obj/structure/window_frame/solaris, -/obj/item/stack/sheet/metal, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) -"gs" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/medical) -"gx" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"hm" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"hr" = ( -/obj/structure/bed/chair, -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) -"hs" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"hv" = ( -/obj/item/stack/rods, -/obj/item/shard, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"hE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"hQ" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) -"hZ" = ( -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) -"id" = ( -/obj/structure/bed/chair, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"io" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"iv" = ( -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/wygoon, -/obj/item/reagent_container/food/snacks/margheritaslice, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"iB" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"iJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"iX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"jg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic"; - icon_state = "door_open"; - density = 0 - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"ji" = ( -/obj/item/clothing/glasses/meson, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"jr" = ( -/obj/structure/surface/table, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"jB" = ( -/obj/structure/machinery/chem_master, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) -"jG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/extinguisher, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"jQ" = ( -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"jT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"kb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control{ - id = "Medical"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"ku" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"kV" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"li" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"ly" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/obj/item/ammo_casing/bullet, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"lz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"lA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_id = "Clinic Reception" - }, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"lP" = ( -/obj/structure/sink{ - dir = 8; - icon_state = "sink"; - pixel_x = -12; - pixel_y = 2 - }, -/obj/item/tool/surgery/scalpel/manager, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"lW" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Storage" - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"lX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/item/stack/sheet/metal, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"lZ" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"mv" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"mF" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"mM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"mU" = ( -/obj/item/stack/sheet/metal, -/obj/item/ammo_casing/bullet, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"ne" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor/damaged3/west, -/area/bigredv2/outside/medical) -"ny" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"og" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) -"oE" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"oG" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"oK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/obj/item/ammo_casing/shell, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"oU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"pr" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"pC" = ( -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) -"pV" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"pZ" = ( -/obj/item/shard, -/obj/item/frame/table, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"qb" = ( -/obj/structure/curtain/medical, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"qf" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"qF" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"qG" = ( -/obj/item/ammo_casing/shell, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"ra" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - name = "\improper Medical Clinic Morgue"; - locked = 1 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"re" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged3/west, -/area/bigredv2/outside/medical) -"rf" = ( -/obj/item/stack/rods, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"rh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"rm" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"rx" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"rB" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"rC" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/whitegreencorner/north, -/area/bigredv2/outside/medical) -"rD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/medical) -"rG" = ( -/obj/item/device/healthanalyzer, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"rO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"rU" = ( -/obj/structure/girder, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"rV" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"sj" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"sn" = ( -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/outside/medical) -"sr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/medical) -"st" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"sA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor/damaged2/west, -/area/bigredv2/outside/medical) -"sH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"sL" = ( -/obj/item/device/defibrillator, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ta" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"tj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"tu" = ( -/obj/structure/transmitter/colony_net{ - phone_category = "Solaris Ridge"; - phone_color = "green"; - phone_id = "Clinic Labs"; - pixel_y = 24 - }, -/turf/open/floor/damaged2/west, -/area/bigredv2/outside/medical) -"tC" = ( -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"tT" = ( -/obj/item/ammo_casing/shell, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/medical) -"tX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged3/west, -/area/bigredv2/outside/medical) -"tZ" = ( -/obj/structure/window/framed/solaris, -/obj/structure/curtain, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"ug" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"uo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"uz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/surgery/bonesetter, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"uE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"uG" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/medical) -"uM" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"uX" = ( -/obj/structure/bed/chair, -/obj/item/shard, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) -"vv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"vy" = ( -/obj/item/stack/rods, -/turf/open/floor/damaged3/west, -/area/bigredv2/outside/medical) -"vF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"vN" = ( -/obj/item/shard, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"vT" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/medical) -"wh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) -"wq" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"wH" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"wJ" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"xm" = ( -/obj/item/ammo_casing/shell, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"xq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/surface/table, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"xv" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/damaged3/west, -/area/bigredv2/outside/medical) -"xD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) -"xP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Medical Clinic" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"xT" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"yb" = ( -/obj/item/shard, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"yM" = ( -/obj/item/reagent_container/pill/happy, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"yS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) -"yY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"zb" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"zn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"zH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"zO" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"zR" = ( -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/medical) -"Ab" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"Ad" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged2/west, -/area/bigredv2/outside/medical) -"Al" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Bd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Bh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"Bs" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) -"Bw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/outside/medical) -"BF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/item/ammo_casing/bullet, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"BH" = ( -/obj/item/shard, -/obj/structure/bed/roller, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"BV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/latex, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Cm" = ( -/obj/structure/surface/table, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/storage/box/beakers, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"Cw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"CP" = ( -/obj/structure/machinery/light, -/obj/item/tool/surgery/cautery, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"CV" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"CZ" = ( -/obj/structure/bed, -/turf/open/floor/whitegreencorner/north, -/area/bigredv2/outside/medical) -"Db" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/medical) -"Dj" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"Dk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Dy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) -"DA" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"DR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/item/shard, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"Ei" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"Ej" = ( -/obj/item/shard, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"Em" = ( -/obj/item/frame/table, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Eq" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/reagent_container/food/snacks/margheritaslice, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"Et" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/damaged2/west, -/area/bigredv2/outside/medical) -"Eu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/turf/open/floor/damaged3/west, -/area/bigredv2/outside/medical) -"EH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"EI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"ER" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"EY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Medical Clinic CMO's Office" - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Fh" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) -"Fi" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"FH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/outside/medical) -"FJ" = ( -/obj/item/reagent_container/pill/happy, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Gh" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Gn" = ( -/obj/structure/surface/table, -/obj/item/trash/burger, -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"GD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"He" = ( -/obj/item/stack/sheet/metal, -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"Hi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"HI" = ( -/obj/item/clothing/mask/breath/medical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"HJ" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/tramadol, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"HQ" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"Ia" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/shard, -/turf/open/floor/damaged2/west, -/area/bigredv2/outside/medical) -"IH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"IL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"IU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged2/west, -/area/bigredv2/outside/medical) -"IY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"IZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"Ja" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor/damaged3/west, -/area/bigredv2/outside/medical) -"Jd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Jg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Storage" - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Jl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"Jp" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/medical) -"Jy" = ( -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"JF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"JH" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/surgery/blue, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"JX" = ( -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"KI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"KS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"KT" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"KV" = ( -/obj/structure/bed/chair, -/obj/item/ammo_casing/shell, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Lf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" - }, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"LB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Operating Theatre" - }, -/turf/open/floor/damaged2/west, -/area/bigredv2/outside/medical) -"LF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"LR" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"LS" = ( -/obj/item/clothing/gloves/latex, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Mb" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/damaged2/west, -/area/bigredv2/outside/medical) -"Ml" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"MH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"MS" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/item/device/healthanalyzer, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"MY" = ( -/turf/open/floor/damaged3/west, -/area/bigredv2/outside/medical) -"MZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/crap_item, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Ng" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"Nt" = ( -/obj/structure/bed/chair, -/turf/open/floor/damaged2/west, -/area/bigredv2/outside/medical) -"NA" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"NK" = ( -/obj/structure/machinery/sleep_console, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"Od" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Ok" = ( -/obj/structure/surface/table, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) -"Ov" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/medical) -"OG" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"OK" = ( -/obj/effect/acid_hole{ - dir = 4 - }, -/turf/closed/wall/solaris, -/area/bigredv2/outside/medical) -"OM" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/medical) -"ON" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Pd" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) -"Pp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"Pr" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = -32 - }, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/medical) -"PB" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/bed/roller, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"PC" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"PT" = ( -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"PW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/medical) -"Qk" = ( -/obj/structure/bed, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Qn" = ( -/obj/item/shard, -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) -"Qu" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"Qy" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/item/stack/sheet/metal, -/turf/open/floor/damaged2/west, -/area/bigredv2/outside/medical) -"QF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"QO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"Rg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"Rm" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"Ro" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Rw" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/item/trash/kepler, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) -"Rz" = ( -/obj/structure/girder, -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/medical) -"RE" = ( -/obj/structure/bed/roller, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/medical) -"RN" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"RY" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) -"Sg" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"Sk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"Sz" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/damaged3/west, -/area/bigredv2/outside/medical) -"SF" = ( -/obj/item/device/healthanalyzer, -/obj/structure/pipes/vents/pump, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"SI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"SJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged2/west, -/area/bigredv2/outside/medical) -"SL" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"SZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Tc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Tt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) -"TJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"TO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"UK" = ( -/obj/structure/surface/table, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"UP" = ( -/obj/structure/surface/table/reinforced, -/obj/item/trash/buritto, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"Vg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"Vj" = ( -/obj/structure/machinery/body_scanconsole, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/outside/medical) -"Vn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/turf/open/floor/damaged3/west, -/area/bigredv2/outside/medical) -"VR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"VS" = ( -/obj/structure/machinery/camera/autoname{ - network = list("interrogation") - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) -"VX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"WG" = ( -/obj/structure/machinery/medical_pod/sleeper, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"WH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/medical) -"WQ" = ( -/turf/open/floor/damaged2/west, -/area/bigredv2/outside/medical) -"WV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/damaged3/west, -/area/bigredv2/outside/medical) -"WY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/medical) -"Xc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/trash/chips, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreencorner/west, -/area/bigredv2/outside/medical) -"Xl" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"Xr" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Xs" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = 32 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/damaged3/west, -/area/bigredv2/outside/medical) -"Xt" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) -"XF" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"XQ" = ( -/obj/structure/window_frame/solaris, -/obj/item/shard, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"Yl" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"Yv" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"YE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged2/west, -/area/bigredv2/outside/medical) -"YF" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"YQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/outside/medical) -"YY" = ( -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/medical) -"Zh" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"Zo" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"Zp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/explosive/grenade/custom/large, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"ZC" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"ZH" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/frame/table, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/medical) -"ZQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/obj/item/ammo_casing/bullet, -/turf/open/floor/damaged3/west, -/area/bigredv2/outside/medical) - -(1,1,1) = {" -aa -aa -aa -aa -Rz -vy -MY -aa -aa -OK -aa -zO -TJ -aa -Ml -Rz -aa -aa -aa -aa -aa -aa -aa -aa -aa -rm -"} -(2,1,1) = {" -aa -Xl -Qy -Cm -Ab -Jy -Jy -Jy -aa -Gn -HJ -MY -Dk -Jy -Al -aa -og -hr -ap -fx -SL -lP -PT -pr -aa -rm -"} -(3,1,1) = {" -aa -tu -jQ -MY -Jy -vT -WY -Tc -Jy -MY -KI -Sg -oK -JX -VS -aa -og -og -ap -UK -uz -TO -Eq -PT -aa -rm -"} -(4,1,1) = {" -aa -sA -sr -Zp -JF -tj -WH -tj -co -DR -IU -rO -BF -qG -YY -jQ -hZ -Qn -ac -Fh -TO -iv -tC -CP -aa -rm -"} -(5,1,1) = {" -Rz -jB -re -hs -SI -SI -rO -rO -SZ -li -yS -JX -YY -Xr -RE -rf -id -Nt -aj -Ok -pC -ER -HI -PT -aa -rm -"} -(6,1,1) = {" -Rz -Bs -OG -XF -yb -kV -Ml -jr -aa -rh -jQ -DA -BH -HQ -Jy -Rz -rx -Nt -aj -pC -Ia -hE -hQ -wq -aa -rm -"} -(7,1,1) = {" -Jy -aa -ON -aj -Jy -Ml -rf -aa -aa -rD -iX -aa -aa -Ml -wH -Rz -aa -aa -pC -yb -aa -LB -aa -aa -aa -rm -"} -(8,1,1) = {" -Jy -pC -YY -uG -Jy -yb -bV -tT -Jy -Ja -tj -XQ -Ml -YY -YY -Xr -sj -Jy -Jy -Sg -Jy -Jd -Tc -Ro -aa -rm -"} -(9,1,1) = {" -ac -CV -Jy -zH -Tc -Jy -sj -mM -NA -ny -FH -rO -rO -IZ -Jl -Tc -rO -rO -KS -rO -MZ -GD -IL -zn -aa -rm -"} -(10,1,1) = {" -aj -fF -MY -zH -BV -wH -XQ -zn -Sz -YQ -Bw -TO -TO -Tc -Cw -Ng -sj -Od -TJ -JH -oU -PW -qf -JX -Jy -ku -"} -(11,1,1) = {" -aj -CZ -Mb -QF -gx -ly -xP -Rg -rO -LR -Lf -aj -Xs -JX -yY -Vj -aa -aj -Jg -aa -aa -Rz -Ml -Dj -JX -rm -"} -(12,1,1) = {" -Rm -IY -jQ -Jd -tT -Sg -ac -Xr -Jp -SJ -iX -aa -aa -pC -Jd -aa -aa -Em -Jd -Jy -Jy -Jy -XF -Jy -rf -rm -"} -(13,1,1) = {" -Tt -Xc -rO -PC -Xr -rV -Jy -wH -Jy -wh -zn -di -Jy -vN -yY -WG -aa -hm -ji -jG -Jy -Jp -Tc -Jy -aa -rm -"} -(14,1,1) = {" -af -ZH -Qu -PB -JX -Jy -Jy -YY -Gh -Bh -zH -Ej -yb -Xr -sH -NK -aa -Jy -Jd -JX -YY -yM -zH -Em -aa -rm -"} -(15,1,1) = {" -af -ac -gj -aj -YY -rf -Ov -YY -JX -vF -yb -Ml -XF -pC -Jd -jQ -Rz -SF -FJ -wH -Et -YY -oU -jr -aa -rm -"} -(16,1,1) = {" -af -MS -pZ -lZ -JX -Jy -sj -yb -jQ -Jd -YY -hv -pC -yb -RN -Sk -re -JX -Jy -re -uo -zH -Jp -Jy -aa -rm -"} -(17,1,1) = {" -af -sL -pV -WQ -xv -EI -EY -JX -xD -iJ -Jy -rU -YY -Jp -yY -pC -re -jQ -MY -Xt -Jy -zb -Jy -Jy -rf -rm -"} -(18,1,1) = {" -af -Zo -Yv -mF -oE -Jy -XQ -JX -Pd -ne -YY -aa -aa -rf -vF -jQ -Jy -ac -lW -aa -aa -aa -Xr -Ml -HQ -OM -"} -(19,1,1) = {" -af -aa -aa -aa -aa -Rz -aa -YY -Jy -VX -jQ -Xr -Pr -Sg -Jy -mU -JX -Jy -WQ -Jy -fF -Jy -Jy -xm -Rz -Db -"} -(20,1,1) = {" -af -LF -de -de -de -xq -zR -Jy -lZ -ZQ -Ad -Jy -Xr -lX -TJ -Tc -YY -iB -st -TO -jQ -He -He -xm -aa -Db -"} -(21,1,1) = {" -af -Yl -ug -ug -ug -IH -xT -fu -Hi -Fi -uE -Jp -Sg -Bd -Vn -TO -YE -vv -rG -qb -fF -ta -uM -Qk -aa -Db -"} -(22,1,1) = {" -af -Yl -ug -ug -ug -wJ -oG -YY -JX -Dk -YY -re -Eu -YE -gg -LS -Tc -aa -JX -aa -aa -aa -aa -aa -aa -aa -"} -(23,1,1) = {" -af -Yl -ug -ug -ug -wJ -ac -rf -YE -jT -Ei -tX -eq -eq -PC -YY -kb -Rz -io -tT -Jy -jQ -Rw -rB -rB -aa -"} -(24,1,1) = {" -af -Yl -ug -ug -ug -wJ -ac -pC -KI -MH -jQ -JF -oU -TO -TJ -KT -pC -gs -KV -EH -Pp -lz -qF -lz -lz -jg -"} -(25,1,1) = {" -af -Yl -ug -ug -ug -wJ -ac -sn -ZC -RY -hv -vv -Dy -KI -mv -xm -Dj -sj -uX -WV -yY -TO -am -vv -vv -oG -"} -(26,1,1) = {" -af -Yl -ug -ug -ug -YF -aa -aa -tZ -ra -aj -aa -aa -QO -VR -Jy -iX -XQ -rC -Zh -Vg -UP -lA -ap -ap -aa -"} diff --git a/maps/map_files/CORSAT/Corsat.dmm b/maps/map_files/CORSAT/Corsat.dmm deleted file mode 100644 index 5ddf50c1aed4..000000000000 --- a/maps/map_files/CORSAT/Corsat.dmm +++ /dev/null @@ -1,108968 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "dome-sigma" - }, -/turf/closed/wall/r_wall/biodome, -/area/corsat/theta/airlock/control) -"aab" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/hangar/arrivals) -"aac" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/omega/airlocknorth) -"aad" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/hangar/monorail/control) -"aae" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/office) -"aaf" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aaj" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/residential/east) -"aak" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/hangar/monorail) -"aal" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/gamma/residential/east) -"aan" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/hangar) -"aao" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/binoculars, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aap" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/hangar/flightcontrol) -"aaq" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aar" = ( -/obj/structure/window/framed/corsat/hull/research, -/turf/open/floor/plating, -/area/corsat/gamma/sigmaremote) -"aax" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/sigmaremote) -"aaz" = ( -/obj/structure/window/framed/corsat/research, -/turf/open/floor/plating, -/area/corsat/gamma/sigmaremote) -"aaB" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/bronze, -/obj/item/trash/cigbutt/cigarbutt, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aaE" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/flightcontrol) -"aaG" = ( -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"aaI" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"aaJ" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"aaR" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"aaX" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/icefloor, -/area/corsat/gamma/hangar) -"aaZ" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"aba" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/fancy/cigar, -/obj/item/tool/lighter/zippo, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"abb" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"abc" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"abd" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"abe" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/gamma/cargo) -"abf" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/sigmaremote) -"abg" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/hangar/office) -"abh" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"abi" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/hangar/flightcontrol) -"abr" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"abs" = ( -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"abt" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"abu" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"abv" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"abx" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat, -/area/corsat/omega/control) -"abA" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/hangar/security) -"abD" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/residential/east) -"abE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"abF" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/sigmaremote) -"abG" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/gamma/residential/researcher) -"abH" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"abI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"abJ" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"abL" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"abM" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"abN" = ( -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"abO" = ( -/obj/structure/bed{ - icon_state = "psychbed" - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"abP" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/residential/researcher) -"abS" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/residential/researcher) -"abT" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Quarters"; - req_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"acc" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"acd" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/window/reinforced{ - layer = 3.8 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/gamma/foyer) -"ach" = ( -/obj/structure/bed, -/obj/structure/machinery/light, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"acn" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"aco" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"acr" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"acu" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"acv" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Researcher Quarters"; - req_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"acz" = ( -/obj/structure/coatrack, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"acA" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/window/reinforced{ - layer = 3.8 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/gamma/foyer) -"acF" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/hangar) -"acH" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"acI" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"acL" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/arrivals) -"acM" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/residential) -"acN" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/residential/lounge) -"acV" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/residential/lounge) -"acY" = ( -/obj/structure/surface/rack, -/obj/item/tool/wrench, -/obj/item/device/camera/oldcamera, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"adb" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/hangar/checkpoint) -"add" = ( -/turf/closed/wall/biodome, -/area/corsat/sigma/cafe) -"adi" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp/green, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"adj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/lounge) -"adm" = ( -/obj/structure/bed/chair/wood/normal, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"adn" = ( -/turf/open/floor/wood, -/area/corsat/gamma/residential/lounge) -"adq" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/monorail/control) -"adr" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/checkpoint) -"ads" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"adt" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/sigma/cafe) -"adv" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"adx" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/deck, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"adD" = ( -/obj/structure/coatrack, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"adE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"adF" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/residential/east) -"adG" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/item/folder/blue, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"adI" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/hangar/cargo) -"adJ" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/residential/west) -"adL" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/office) -"adM" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/gamma/residential/lounge) -"adN" = ( -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"adQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Researcher's Lounge" - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/lounge) -"adR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"adV" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/residential/researcher) -"adX" = ( -/obj/structure/fence, -/turf/open/auto_turf/snow/layer1, -/area/corsat/gamma/biodome) -"adY" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/deck, -/obj/item/spacecash/c10, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aeb" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/hangar/cargo) -"aed" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aee" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aef" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aeh" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/white/southeast, -/area/corsat/sigma/dorms) -"aei" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aek" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/gamma/residential) -"ael" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "GammaHangarCargoC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/cargo) -"aen" = ( -/turf/open/mars, -/area/corsat/sigma/biodome) -"aeo" = ( -/turf/open/auto_turf/snow/layer2, -/area/corsat/gamma/biodome) -"aer" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/residential/lounge) -"aet" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/cargo) -"aev" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/window/reinforced{ - layer = 3.8 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/gamma/foyer) -"aex" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/arrivals) -"aeM" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar/office) -"aeN" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/icefloor, -/area/corsat/sigma/hangar) -"aeU" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar) -"aeX" = ( -/obj/structure/surface/table/woodentable, -/obj/item/spacecash/c10, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"afa" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/cargo/disposal) -"afd" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/south) -"afe" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/office) -"afi" = ( -/turf/open/floor/plating, -/area/corsat/sigma/hangar) -"afk" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/plating, -/area/corsat/sigma/hangar) -"afl" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/plating, -/area/corsat/sigma/hangar) -"afq" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/plating, -/area/corsat/sigma/hangar) -"afv" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar) -"afy" = ( -/obj/structure/surface/table/woodentable, -/obj/item/folder/white, -/obj/item/spacecash/c10, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"afB" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar) -"afC" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar) -"afD" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar) -"afJ" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar/arrivals) -"afL" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar) -"afM" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar) -"afS" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar) -"afT" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar) -"aga" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/airlock/north/id) -"agb" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar/security) -"agg" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/security) -"agj" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar/id) -"agk" = ( -/obj/structure/bed, -/obj/item/spacecash/c10, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"agx" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/checkpoint) -"agD" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/sigma/south) -"agI" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/residential/laundry) -"agK" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/cargo) -"agL" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/cargo) -"agU" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/engineering/core) -"agZ" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/checkpoint) -"ahn" = ( -/turf/closed/wall/biodome, -/area/corsat/omega/cargo) -"ahs" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/residential/lavatory) -"aht" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/engineering/atmos) -"ahv" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - layer = 3.8 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/gamma/foyer) -"ahw" = ( -/turf/closed/wall/biodome, -/area/corsat/sigma/laundry) -"ahy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/window/reinforced{ - layer = 3.8 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/gamma/hallwaysouth) -"ahz" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/residential/maint) -"ahA" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/omega/offices) -"ahB" = ( -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"ahE" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/hangar/monorail/control) -"ahQ" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/security) -"ahS" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/omega/cargo) -"ahW" = ( -/turf/open/floor/plating, -/area/prison/hangar_storage/research/shuttle) -"ahX" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/bronze, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aia" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy22" - }, -/area/prison/hangar_storage/research/shuttle) -"aie" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy4" - }, -/area/prison/hangar_storage/research/shuttle) -"aih" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aii" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy23" - }, -/area/prison/hangar_storage/research/shuttle) -"aiq" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy5" - }, -/area/prison/hangar_storage/research/shuttle) -"aiv" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy_leftengine" - }, -/area/prison/hangar_storage/research/shuttle) -"aiw" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy8" - }, -/area/prison/hangar_storage/research/shuttle) -"aiz" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_3"; - opacity = 0 - }, -/area/prison/hangar_storage/research/shuttle) -"aiA" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy9" - }, -/area/prison/hangar_storage/research/shuttle) -"aiB" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/hangar/security) -"aiD" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/plating, -/area/corsat/omega/hangar) -"aiE" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy_rightengine" - }, -/area/prison/hangar_storage/research/shuttle) -"aiG" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_3"; - opacity = 0 - }, -/area/prison/hangar_storage/research/shuttle) -"aiH" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_2"; - opacity = 0 - }, -/area/prison/hangar_storage/research/shuttle) -"aiI" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_2"; - opacity = 0 - }, -/area/prison/hangar_storage/research/shuttle) -"aiJ" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/checkpoint) -"aiL" = ( -/turf/closed/wall/biodome, -/area/corsat/omega/offices) -"aiO" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/airlock/south) -"aiQ" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/omega/offices) -"aiU" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/biodome) -"aiV" = ( -/obj/structure/machinery/meter, -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"aja" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/airlock/south/id) -"ajf" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/omega/security) -"ajj" = ( -/turf/closed/wall/biodome, -/area/corsat/sigma/north) -"ajk" = ( -/turf/closed/wall/biodome, -/area/corsat/sigma/cargo) -"ajm" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/south) -"ajo" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/sigma/cargo) -"ajq" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/biodome) -"ajr" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/sigma/laundry) -"ajy" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/sigma/laundry) -"ajB" = ( -/turf/closed/wall/biodome, -/area/corsat/sigma/lavatory) -"ajD" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/hangar/monorail/control) -"ajL" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaCheckpointC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/checkpoint) -"ajT" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar) -"ajU" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar) -"ajX" = ( -/turf/closed/wall/biodome, -/area/corsat/sigma/south/complex) -"ajZ" = ( -/obj/structure/foamed_metal, -/turf/open/floor/corsat, -/area/corsat/gamma/hangar) -"akc" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar) -"akd" = ( -/obj/structure/window/framed/corsat/research, -/turf/open/floor/plating, -/area/corsat/sigma/south/complex) -"aki" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/sigma/dorms) -"akj" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/hangar/monorail) -"akl" = ( -/turf/closed/wall/biodome, -/area/corsat/sigma/dorms) -"akm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"akq" = ( -/turf/closed/wall/biodome, -/area/corsat/sigma/airlock/south) -"akt" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/rnr/library) -"akv" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/south/complex) -"aky" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/omega/hallways) -"akz" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/hangar) -"akB" = ( -/turf/closed/wall/biodome, -/area/corsat/theta/airlock/east) -"akS" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"akX" = ( -/obj/structure/surface/table/woodentable, -/obj/item/folder/blue, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"ala" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/plastic, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"alb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"ald" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/residential) -"ale" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/camera/oldcamera, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"alo" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/red/southwest, -/area/corsat/theta/airlock/control) -"alr" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"alw" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/dorms) -"alx" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/hangar/arrivals) -"aly" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/wood, -/area/corsat/gamma/residential/lounge) -"alH" = ( -/obj/structure/surface/rack, -/obj/item/tool/screwdriver, -/obj/item/device/assembly/igniter, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"alI" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/rnr/bar) -"alK" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/rnr/bar) -"alN" = ( -/obj/structure/surface/table/woodentable, -/obj/item/spacecash/c10, -/obj/item/toy/deck, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"alR" = ( -/obj/structure/bed, -/obj/item/folder/yellow, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"alU" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/item/device/camera, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"alV" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "GammaSecC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/security) -"ame" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/glass, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"amk" = ( -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aml" = ( -/obj/item/trash/raisins, -/obj/item/trash/popcorn, -/obj/item/trash/chips, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"amn" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"amo" = ( -/obj/item/trash/chips, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"amq" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"amr" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"ams" = ( -/obj/structure/surface/table/woodentable, -/obj/item/folder/blue, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"amt" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/deck, -/obj/item/spacecash/c10, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"amu" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"amv" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/airlock/south/id) -"amw" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"amA" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer/emails, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"amB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"amC" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"amD" = ( -/obj/structure/surface/table/woodentable, -/obj/item/newspaper, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"amE" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"amF" = ( -/obj/item/trash/chips, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"amH" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"amI" = ( -/obj/structure/surface/rack, -/obj/item/device/assembly/igniter, -/obj/item/tool/screwdriver, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"amJ" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/bronze, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"amL" = ( -/obj/structure/surface/table/woodentable, -/obj/item/pizzabox/margherita, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"amM" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/item/folder/yellow, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"amN" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/checkpoint) -"amP" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"anf" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"ang" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/cargo/disposal) -"ank" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"ann" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/cargo/lobby) -"ans" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/camera, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"anw" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/hallwaysouth) -"anz" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/item/folder/red, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"anB" = ( -/obj/structure/surface/table/woodentable, -/obj/item/folder/yellow, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"anD" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/theta/airlock/east) -"anE" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/south/security) -"anL" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/alien/weeds/node, -/turf/open/floor/almayer/research/containment/floor2, -/area/corsat/inaccessible) -"anP" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/almayer/research/containment/floor2, -/area/corsat/inaccessible) -"anR" = ( -/turf/open/floor/almayer/research/containment/corner1, -/area/corsat/inaccessible) -"anS" = ( -/turf/open/floor/almayer/research/containment/corner4, -/area/corsat/inaccessible) -"anT" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/airlocknorth/id) -"aoa" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/omega/airlocknorth/id) -"aoc" = ( -/turf/closed/wall/biodome, -/area/corsat/omega/complex) -"aoe" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/theta/airlock/west/id) -"aog" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/hangar/checkpoint) -"aon" = ( -/obj/structure/shuttle/diagonal{ - dir = 9; - icon_state = "wall"; - layer = 3 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/monorail/railcart) -"aos" = ( -/turf/open/floor/almayer/research/containment/corner2, -/area/corsat/inaccessible) -"aot" = ( -/turf/open/floor/almayer/research/containment/corner3, -/area/corsat/inaccessible) -"aoA" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/airlocknorth) -"aoE" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/complex) -"aoH" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/theta/airlock/west/id) -"aoJ" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/theta/airlock/west) -"aoN" = ( -/obj/structure/window/framed/corsat/research, -/turf/open/floor/plating, -/area/corsat/omega/complex) -"aoR" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/plating, -/area/corsat/theta/airlock/west) -"aoW" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/airlock/control) -"aoX" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/airlock/control) -"aoY" = ( -/turf/closed/wall/biodome, -/area/corsat/omega/maint) -"ape" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/omega/complex) -"apg" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/hangar) -"aph" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/airlock/east) -"apj" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_1"; - opacity = 0 - }, -/area/prison/hangar_storage/research/shuttle) -"apk" = ( -/turf/open/floor/plating, -/area/corsat/omega/hangar) -"apl" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/laundry) -"apm" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy1" - }, -/area/prison/hangar_storage/research/shuttle) -"apo" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Researcher Quarters"; - req_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"app" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/cargo) -"apu" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/airlock/north/id) -"apF" = ( -/obj/structure/machinery/computer3/laptop/secure_data, -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"apI" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/engineering/core) -"apJ" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/north) -"apQ" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/residential/maint) -"apR" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/residential/maint) -"apT" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/airlock/north) -"apV" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/dorms) -"aqb" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aqi" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/engineering) -"aqk" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/north) -"aqo" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/theta/airlock/control) -"aqr" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/hallways) -"aqs" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/checkpoint) -"aqt" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/engineering/atmos) -"aqw" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/gamma/residential/maint) -"aqy" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/engineering/lobby) -"aqK" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/gamma/hallwaysouth) -"aqL" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/theta/biodome) -"aqN" = ( -/turf/closed/wall/almayer/white, -/area/corsat/gamma/medbay/morgue) -"aqO" = ( -/turf/closed/wall/almayer/white, -/area/corsat/gamma/medbay) -"aqY" = ( -/turf/closed/wall/almayer/white, -/area/corsat/gamma/medbay/lobby) -"arc" = ( -/turf/closed/shuttle, -/area/corsat/gamma/hangar/monorail/railcart) -"arf" = ( -/turf/closed/wall/almayer/white, -/area/corsat/gamma/medbay/surgery) -"arh" = ( -/turf/closed/wall/almayer/white, -/area/corsat/gamma/medbay/chemistry) -"arp" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/administration) -"arr" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/administration) -"arx" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/freezer) -"ary" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/hydroponics) -"arz" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/airlock/north) -"arA" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/cargo) -"arB" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/sigma/north) -"arC" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/sigma/north) -"arE" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/sigma/north) -"arG" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/north) -"arJ" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/south) -"arL" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/rnr/arcade) -"arM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/sigma/north) -"arN" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/residential/laundry) -"arT" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/flora/bush/ausbushes/var3/leafybush, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/sigma/north) -"arV" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/offices) -"arW" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/residential/lavatory) -"arZ" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/sigma/north) -"asc" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/kitchen) -"asf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"ash" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/flora/bush/ausbushes/var3/leafybush, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/sigma/north) -"asi" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/sigma/north) -"ask" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat, -/area/corsat/sigma/southeast/generator) -"asm" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/residential/showers) -"asn" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/sigma/north) -"asp" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/rnr/library) -"asq" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/rnr/library) -"ass" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/gamma/rnr) -"ast" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/airlock/south) -"asu" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"asw" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat, -/area/corsat/sigma/southeast/generator) -"asy" = ( -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"asz" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/security) -"asA" = ( -/obj/structure/shuttle/window, -/turf/open/shuttle/plating, -/area/corsat/gamma/hangar/monorail/railcart) -"asC" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/canteen) -"asD" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/airlock/south) -"asH" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/airlock/south/id) -"asI" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/window/reinforced{ - layer = 3.8 - }, -/obj/structure/flora/bush/ausbushes/var3/leafybush, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/sigma/north) -"asJ" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/southeast) -"asK" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/southeast/dataoffice) -"asL" = ( -/obj/structure/window/reinforced{ - layer = 3.8 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/sigma/north) -"asM" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - layer = 3.8 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/flora/bush/ausbushes/var3/leafybush, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/sigma/north) -"asN" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/camera/oldcamera, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"asQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"asS" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/popcorn, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"asT" = ( -/obj/item/trash/candy, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"asU" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"asV" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/assembly/signaller, -/obj/item/tool/screwdriver, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"asW" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/donut_box, -/obj/item/tool/lighter, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"asX" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat, -/area/corsat/sigma/southeast/generator) -"atb" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"atd" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/sigma/southeast) -"atg" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/sigma/southeast/dataoffice) -"ati" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/southeast/generator) -"atk" = ( -/turf/closed/wall/biodome, -/area/corsat/sigma/southeast/dataoffice) -"atl" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/southeast/generator) -"ato" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/southeast/telecomm) -"atp" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/sigma/southeast/dataoffice) -"att" = ( -/turf/closed/wall/biodome, -/area/corsat/sigma/southeast/datalab) -"atv" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/sigma/southeast/datalab) -"atw" = ( -/turf/open/floor/corsat, -/area/corsat/sigma/dorms) -"atz" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/southeast/telecomm) -"atA" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/theta/airlock/east) -"atB" = ( -/turf/closed/wall/biodome, -/area/corsat/sigma/southeast/datamaint) -"atC" = ( -/obj/structure/closet/cabinet, -/obj/effect/spawner/random/tool, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"atD" = ( -/turf/open/floor/corsat, -/area/corsat/sigma/southeast/generator) -"atF" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/containment) -"atG" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/southeast/datamaint) -"atH" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/theta/airlock/west) -"atI" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/east) -"atJ" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/airlock/east/id) -"atO" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/corsat, -/area/corsat/sigma/southeast/generator) -"atP" = ( -/obj/structure/foamed_metal, -/turf/open/floor/corsat, -/area/corsat/sigma/hangar/id) -"atT" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHCargoC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/id) -"aub" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"auc" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "GammaDSC2"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/north/id) -"aud" = ( -/turf/closed/wall/biodome, -/area/corsat/sigma/airlock/east) -"auh" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/theta/airlock/east) -"aui" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/theta/airlock/east) -"auj" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/theta/airlock/east/id) -"auo" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/corsat, -/area/corsat/sigma/southeast/generator) -"auq" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/security) -"auz" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/southeast/datalab) -"auB" = ( -/turf/closed/wall/biodome, -/area/corsat/sigma/south/offices) -"auE" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/sigma/south/offices) -"auG" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/complex) -"auH" = ( -/turf/closed/wall/biodome, -/area/corsat/sigma/south/engineering) -"auI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"auJ" = ( -/turf/closed/wall/biodome, -/area/corsat/sigma/south/robotics) -"auK" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/sigma/south/robotics) -"auL" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/airlocknorth) -"auQ" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/sigma/south/engineering) -"auR" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/sigma/south/robotics) -"auS" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/sigma/south/engineering) -"auU" = ( -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/corsat, -/area/corsat/sigma/southeast/generator) -"auW" = ( -/obj/structure/machinery/power/smes, -/turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"avf" = ( -/obj/item/cell/crap, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/corsat/sigma/southeast/generator) -"avj" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar/checkpoint) -"avm" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/south/offices) -"avs" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/corsat/sigma/hangar/checkpoint) -"avD" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper, -/obj/item/tool/pen, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"avQ" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/maint) -"avT" = ( -/obj/structure/window/framed/corsat/cell/research, -/turf/open/floor/plating, -/area/corsat/inaccessible) -"awb" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/airlock/north) -"awr" = ( -/obj/structure/shuttle/diagonal{ - dir = 5; - icon_state = "wall"; - layer = 3 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/monorail/railcart) -"awx" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaDSC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/north/id) -"awy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"awA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/stool, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"awQ" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/residential/lavatory) -"awY" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/biodome) -"axH" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"axU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/greenwhitecorner/east, -/area/corsat/gamma/medbay) -"axV" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"ayc" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "SigmaEastID2"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/east/id) -"azV" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaIDSC2"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/south/id) -"azX" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/biodome) -"aAo" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 8; - name = "Harmful Gas Ejector" - }, -/turf/open/space, -/area/space) -"aBI" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"aCa" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"aCu" = ( -/turf/open/floor/corsat, -/area/corsat/sigma/airlock/south) -"aCK" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/corsat/sigma/airlock/south) -"aCO" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/corsat/theta/airlock/east) -"aCX" = ( -/turf/open/floor/corsat, -/area/corsat/theta/airlock/east) -"aDy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Cafe" - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"aDY" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy20" - }, -/area/corsat/omega/hangar) -"aEc" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy27" - }, -/area/corsat/omega/hangar) -"aEd" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy25" - }, -/area/corsat/omega/hangar) -"aEe" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy21" - }, -/area/corsat/omega/hangar) -"aEf" = ( -/obj/structure/window/framed/corsat/hull, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/omega/hallways) -"aEq" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/cargo) -"aEr" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/cargo/lobby) -"aEw" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/south/engineering) -"aEx" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/south/robotics) -"aEy" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/hangar) -"aEO" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"aEP" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/ice, -/area/corsat/gamma/biodome) -"aER" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/alien/weeds/node, -/turf/open/ice, -/area/corsat/gamma/biodome) -"aEX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/ice, -/area/corsat/gamma/biodome) -"aEZ" = ( -/obj/effect/alien/weeds/node, -/turf/open/ice, -/area/corsat/gamma/biodome) -"aFd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/alien/weeds/node, -/turf/open/ice, -/area/corsat/gamma/biodome) -"aFg" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aFh" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/corsat/gamma/biodome) -"aFl" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aFn" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aFo" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer3/laptop/secure_data, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aFq" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aFt" = ( -/obj/structure/closet/cabinet, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aFv" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer/emails, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aFx" = ( -/obj/structure/surface/table/woodentable, -/obj/item/pizzabox/margherita, -/obj/item/trash/chips, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aFC" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/donut_box, -/obj/item/tool/lighter, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aFE" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"aFI" = ( -/obj/structure/bed{ - icon_state = "psychbed" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aFM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aFR" = ( -/obj/structure/bed, -/obj/item/pizzabox/margherita, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aFU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aFX" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aGb" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper, -/obj/item/tool/pen, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aGf" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/control) -"aGj" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aGx" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaAdmin"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/gamma/administration) -"aGH" = ( -/turf/open/floor/corsat/browncorner/east, -/area/corsat/omega/hallways) -"aHg" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Quarters"; - req_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aHL" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/hangar/security) -"aIj" = ( -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aIk" = ( -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"aIl" = ( -/obj/structure/fence, -/turf/open/auto_turf/snow/layer2, -/area/corsat/gamma/biodome) -"aIm" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/biodome/virology) -"aIn" = ( -/obj/structure/window/framed/corsat/research, -/turf/open/floor/plating, -/area/corsat/gamma/biodome/virology) -"aIt" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/biodome/complex) -"aIv" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/hangar/office) -"aIx" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/airlock/control) -"aIA" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/airlock/control) -"aII" = ( -/obj/structure/window/framed/corsat/research, -/turf/open/floor/plating, -/area/corsat/gamma/biodome/complex) -"aIK" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/control) -"aIO" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/biodome) -"aIX" = ( -/turf/open/floor/wood, -/area/corsat/gamma/biodome/complex) -"aIY" = ( -/obj/structure/window/framed/corsat/research, -/turf/open/floor/plating, -/area/corsat/gamma/biodome/toxins) -"aJa" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/biodome/toxins) -"aJc" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/control) -"aJl" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/control) -"aJm" = ( -/turf/closed/wall/r_wall, -/area/corsat/sigma/biodome/gunrange) -"aJO" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/control) -"aJW" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/theta/airlock/control) -"aJZ" = ( -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"aKa" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/theta/airlock/control) -"aKg" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/theta/airlock/control) -"aKh" = ( -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"aKi" = ( -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"aKj" = ( -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"aKk" = ( -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"aKl" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"aKm" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/corsat/theta/biodome) -"aKn" = ( -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"aKo" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"aKp" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/corsat/theta/biodome) -"aKq" = ( -/turf/closed/wall/biodome, -/area/corsat/theta/biodome) -"aKs" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/theta/biodome/hydrowest) -"aKt" = ( -/turf/closed/wall/biodome, -/area/corsat/theta/biodome/complex) -"aKu" = ( -/obj/structure/window/framed/corsat/research, -/turf/open/floor/plating, -/area/corsat/theta/biodome/complex) -"aKy" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/theta/biodome/hydroeast) -"aKK" = ( -/turf/closed/wall/biodome, -/area/corsat/theta/biodome/hydrowest) -"aKL" = ( -/turf/closed/wall/biodome, -/area/corsat/theta/biodome/hydroeast) -"aLh" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/control) -"aLo" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "GammaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/control) -"aLr" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"aLU" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "ThetaIDEC2"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/theta/airlock/east/id) -"aLV" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/theta/airlock/east/id) -"aLY" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "ThetaIDEC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/theta/airlock/east/id) -"aMP" = ( -/obj/structure/bed{ - icon_state = "psychbed" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aNk" = ( -/obj/structure/machinery/computer/cameras{ - network = list("omega"); - pixel_y = 22 - }, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"aNq" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/south/offices) -"aNw" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/plating, -/area/corsat/theta/airlock/east/id) -"aNH" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "SigmaResC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/sigma/checkpoint) -"aNK" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/security/armory) -"aNP" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/security/cells) -"aOC" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/corsat/sigma/biodome) -"aOQ" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/inaccessible) -"aOT" = ( -/turf/closed/wall/biodome, -/area/corsat/emergency_access) -"aPb" = ( -/obj/structure/computerframe, -/obj/effect/decal/cleanable/cobweb{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"aPy" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"aPG" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"aPJ" = ( -/obj/structure/flora/jungle/alienplant1, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/corsat/theta/biodome) -"aPL" = ( -/obj/structure/shuttle/diagonal{ - dir = 5; - layer = 3 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/monorail/railcart) -"aPN" = ( -/obj/effect/landmark/yautja_teleport, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"aPO" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/gamma/security/cells) -"aPP" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/gamma/security) -"aPT" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/engineering) -"aPW" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/engineering/lobby) -"aQe" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy2" - }, -/area/prison/hangar_storage/research/shuttle) -"aQf" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy3" - }, -/area/prison/hangar_storage/research/shuttle) -"aQg" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_1"; - opacity = 0 - }, -/area/prison/hangar_storage/research/shuttle) -"aQi" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/plating, -/area/corsat/omega/hangar/security) -"aQj" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/plating, -/area/corsat/omega/hangar/office) -"aQm" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/hangar/office) -"aQo" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/omega/hangar/security) -"aQz" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/emergency_access) -"aQC" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/emergency_access) -"aQG" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aQJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"aQO" = ( -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"aQV" = ( -/obj/structure/computerframe, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"aQW" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"aRb" = ( -/obj/structure/computerframe, -/obj/effect/decal/cleanable/cobweb{ - dir = 1 - }, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"aRl" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aRn" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/kitchen) -"aRp" = ( -/turf/open/floor/plating, -/area/corsat/sigma/hangar/monorail/railcart) -"aRt" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/sigmaremote) -"aRv" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/canteen) -"aSa" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space) -"aSm" = ( -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/corsat/gamma/medbay) -"aSn" = ( -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/corsat/gamma/medbay/lobby) -"aSp" = ( -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/corsat/gamma/medbay/surgery) -"aSq" = ( -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/corsat/gamma/medbay/chemistry) -"aSI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"aSV" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 4; - id_tag = "waste_corsat_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"aSW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"aTj" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/drinkingglass, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"aTv" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 4; - id_tag = "mixed_corsat_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"aTG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"aTH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"aTL" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/hangar/arrivals) -"aUn" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/hangar) -"aUo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"aUr" = ( -/obj/item/storage/fancy/cigar, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"aUs" = ( -/obj/item/weapon/pole/fancy_cane, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"aUt" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"aUu" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"aUy" = ( -/obj/item/disk/botany, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"aUC" = ( -/obj/item/toy/prize/ripley{ - pixel_y = 15 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"aUD" = ( -/obj/structure/surface/table/woodentable, -/obj/item/newspaper, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aUE" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aUF" = ( -/obj/structure/closet/cabinet, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aUG" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/biodome/toxins) -"aUH" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/biodome/virology) -"aUI" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/biodome/complex) -"aUJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aUL" = ( -/obj/structure/surface/table/woodentable, -/obj/item/newspaper, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aUN" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 4; - id_tag = "nit_corsat_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"aUR" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"aVd" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aVe" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/deck, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aVf" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aVg" = ( -/obj/structure/closet/cabinet, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aVj" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aVo" = ( -/obj/structure/shuttle/diagonal{ - dir = 6; - icon_state = "wall"; - layer = 3 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/monorail/railcart) -"aVR" = ( -/obj/structure/bed/nest, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"aWm" = ( -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"aWK" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"aXa" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"aXw" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/sigma/southeast/datalab) -"aXU" = ( -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"aYw" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/corsat/theta/biodome/complex) -"aYR" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/theta/biodome) -"aZa" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/plating, -/area/corsat/omega/checkpoint) -"aZe" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/rnr/library) -"aZm" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"aZq" = ( -/obj/structure/bed/chair/wood/normal, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aZr" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/deck, -/obj/item/spacecash/c10, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aZw" = ( -/obj/structure/bed/chair/wood/normal, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aZx" = ( -/obj/structure/bed/chair/wood/normal, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aZy" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/bronze, -/obj/item/trash/cigbutt/cigarbutt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aZB" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"baz" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"baJ" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/hangar/checkpoint) -"baU" = ( -/obj/structure/window/framed/corsat/hull, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/omega/airlocknorth) -"baV" = ( -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/morgue) -"bba" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "OmegaCSC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/omega/control) -"bbB" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Viro"; - name = "Virology Lockdown" - }, -/turf/open/floor/plating, -/area/corsat/gamma/biodome/virology) -"bbJ" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "GammaLab"; - name = "Privacy Shutters" - }, -/turf/open/floor/plating, -/area/corsat/gamma/biodome/complex) -"bbM" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Toxins"; - name = "Toxins Lockdown" - }, -/turf/open/floor/plating, -/area/corsat/gamma/biodome/toxins) -"bbQ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "GammaLab"; - name = "Privacy Shutters" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Director's Room"; - req_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/biodome/complex) -"bcf" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Viro"; - name = "Virology Lockdown" - }, -/turf/open/floor/plating, -/area/corsat/gamma/biodome/virology) -"bcg" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Toxins"; - name = "Toxins Lockdown" - }, -/turf/open/floor/plating, -/area/corsat/gamma/biodome/toxins) -"bci" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "GammaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/control) -"bcj" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/control) -"bck" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "OmegaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/omega/control) -"bcl" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/omega/control) -"bcm" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/control) -"bcn" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/control) -"bco" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/control) -"bcp" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "ThetaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/theta/airlock/control) -"bcq" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "ThetaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/theta/airlock/control) -"bcr" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "ThetaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/theta/airlock/control) -"bcx" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 1 - }, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"bcD" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, -/area/corsat/theta/biodome) -"bcE" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"bcF" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"bcG" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/corsat/theta/biodome) -"bcH" = ( -/obj/structure/flora/jungle/planttop1, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"bcI" = ( -/obj/structure/flora/jungle/plantbot1, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"bcJ" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"bcK" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"bcL" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/corsat/theta/biodome) -"bcM" = ( -/obj/structure/fence, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"bcN" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/flora/jungle/planttop1, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bcP" = ( -/obj/structure/sign/safety/storage, -/turf/closed/wall/biodome, -/area/corsat/gamma/cargo) -"bcR" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/coast/beachcorner/north_west, -/area/corsat/theta/biodome) -"bcS" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"bcT" = ( -/turf/open/gm/coast/beachcorner2/south_west, -/area/corsat/theta/biodome) -"bcU" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"bcV" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/corsat/theta/biodome) -"bcW" = ( -/obj/structure/fence, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"bcX" = ( -/obj/structure/machinery/colony_floodlight{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/corsat/theta/biodome) -"bcY" = ( -/obj/structure/machinery/colony_floodlight{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"bcZ" = ( -/obj/structure/machinery/colony_floodlight{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"bda" = ( -/obj/structure/machinery/colony_floodlight{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"bdb" = ( -/obj/structure/machinery/colony_floodlight{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"bdx" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, -/area/corsat/theta/biodome) -"bdy" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/corsat/theta/biodome) -"bdz" = ( -/turf/open/gm/coast/beachcorner/north_west, -/area/corsat/theta/biodome) -"bdA" = ( -/turf/open/gm/coast/north, -/area/corsat/theta/biodome) -"bdB" = ( -/turf/open/gm/coast/beachcorner/north_east, -/area/corsat/theta/biodome) -"bdC" = ( -/turf/open/gm/coast/beachcorner2/north_west, -/area/corsat/theta/biodome) -"bdD" = ( -/turf/open/gm/river, -/area/corsat/theta/biodome) -"bdE" = ( -/turf/open/gm/coast/beachcorner2/north_east, -/area/corsat/theta/biodome) -"bdF" = ( -/turf/open/gm/coast/west, -/area/corsat/theta/biodome) -"bdG" = ( -/turf/open/gm/coast/east, -/area/corsat/theta/biodome) -"bdI" = ( -/turf/open/gm/coast/beachcorner/south_east, -/area/corsat/theta/biodome) -"bdJ" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/corsat/theta/biodome) -"bdK" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"bdL" = ( -/turf/open/gm/coast/south, -/area/corsat/theta/biodome) -"bdM" = ( -/turf/open/gm/coast/beachcorner/south_west, -/area/corsat/theta/biodome) -"bdO" = ( -/turf/open/gm/coast/beachcorner2/south_east, -/area/corsat/theta/biodome) -"bdP" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bdQ" = ( -/turf/closed/gm/dense, -/area/corsat/theta/biodome) -"bdR" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bdS" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bdT" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, -/area/corsat/theta/biodome) -"bdU" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"bdV" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"bdW" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"bdX" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"bdY" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/corsat/theta/biodome) -"bdZ" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bea" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"beb" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"bec" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/corsat/theta/biodome) -"bed" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"bee" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"beg" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"beh" = ( -/obj/structure/flora/jungle/planttop1, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bei" = ( -/obj/structure/flora/jungle/plantbot1, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bel" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"bem" = ( -/obj/structure/flora/jungle/alienplant1, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"ben" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/corsat/theta/biodome) -"beo" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bep" = ( -/obj/structure/flora/jungle/planttop1, -/turf/closed/gm/dense, -/area/corsat/theta/biodome) -"ber" = ( -/obj/structure/flora/jungle/alienplant1, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"bes" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"bev" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, -/area/corsat/theta/biodome) -"bew" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"bex" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/coast/north, -/area/corsat/theta/biodome) -"bey" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river, -/area/corsat/theta/biodome) -"bez" = ( -/obj/structure/flora/jungle/planttop1, -/turf/open/gm/river, -/area/corsat/theta/biodome) -"beA" = ( -/obj/structure/flora/jungle/plantbot1, -/turf/open/gm/river, -/area/corsat/theta/biodome) -"beB" = ( -/obj/structure/flora/jungle/alienplant1, -/turf/open/gm/river, -/area/corsat/theta/biodome) -"beD" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"beE" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"beF" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"beG" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/corsat/theta/biodome) -"beH" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"beI" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"beJ" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/corsat/theta/biodome) -"beO" = ( -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"beP" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 6; - icon_state = "full_corners" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"beQ" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"beR" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/corsat/theta/biodome) -"beS" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"beT" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"beX" = ( -/turf/open/auto_turf/snow/layer1, -/area/corsat/gamma/biodome) -"beY" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/corsat/theta/biodome) -"beZ" = ( -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfa" = ( -/turf/closed/ice/end, -/area/corsat/gamma/biodome) -"bfb" = ( -/turf/closed/ice/end{ - dir = 8 - }, -/area/corsat/gamma/biodome) -"bfc" = ( -/turf/open/ice, -/area/corsat/gamma/biodome) -"bfd" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 8; - icon_state = "single_ends" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfe" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 4; - icon_state = "single_ends" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bff" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 9; - icon_state = "full_corners" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfg" = ( -/obj/structure/ice/thin/single, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bfh" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 10; - icon_state = "full_corners" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfi" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 5; - icon_state = "full_corners" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfj" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 6; - icon_state = "single_ends" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfk" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1; - icon_state = "single_ends" - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bfl" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - icon_state = "north_wall" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfm" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1; - icon_state = "south_wall" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfn" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - icon_state = "single" - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bfo" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1 - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfp" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1; - icon_state = "full_corners" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfq" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 4 - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfr" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 6; - icon_state = "east_wall" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfs" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1; - icon_state = "full_corners" - }, -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 8 - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bft" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 6 - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfu" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 6; - icon_state = "single" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfv" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - icon_state = "west_wall" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfx" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - icon_state = "east_wall" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfy" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 6; - icon_state = "south_wall" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfz" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 8 - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfA" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 4 - }, -/obj/structure/ice/ice_rock/cornerOverlay, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfB" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1; - icon_state = "single_part" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfC" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 8; - icon_state = "single_part" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfD" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 10; - icon_state = "single_part" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfE" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 4; - icon_state = "single_tshape" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfF" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 6; - icon_state = "single_part" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfG" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 9; - icon_state = "single_part" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfH" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 4 - }, -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 8 - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfI" = ( -/obj/structure/ice/ice_rock/cornerOverlay, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfJ" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 8 - }, -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 4 - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfK" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1; - icon_state = "west_wall" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfL" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 5; - icon_state = "single_part" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfM" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1; - icon_state = "full_corners" - }, -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1 - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfN" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1; - icon_state = "full_corners" - }, -/obj/structure/ice/ice_rock/cornerOverlay, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfQ" = ( -/turf/closed/ice, -/area/corsat/gamma/biodome) -"bfR" = ( -/turf/closed/ice/end{ - dir = 4 - }, -/area/corsat/gamma/biodome) -"bfS" = ( -/turf/closed/ice/end{ - dir = 1 - }, -/area/corsat/gamma/biodome) -"bfT" = ( -/turf/closed/ice/corner, -/area/corsat/gamma/biodome) -"bfU" = ( -/turf/closed/ice/corner{ - dir = 1 - }, -/area/corsat/gamma/biodome) -"bfV" = ( -/turf/closed/ice/straight{ - dir = 4 - }, -/area/corsat/gamma/biodome) -"bfW" = ( -/turf/closed/ice/straight, -/area/corsat/gamma/biodome) -"bfX" = ( -/turf/closed/ice/corner{ - dir = 4 - }, -/area/corsat/gamma/biodome) -"bfY" = ( -/turf/closed/ice/corner{ - dir = 8 - }, -/area/corsat/gamma/biodome) -"bfZ" = ( -/obj/structure/ice/thin/end{ - dir = 1 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bga" = ( -/obj/structure/ice/thin/corner, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bgb" = ( -/obj/structure/ice/thin/corner{ - dir = 1 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bgc" = ( -/obj/structure/ice/thin/end{ - dir = 4 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bgd" = ( -/obj/structure/ice/thin/straight, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bge" = ( -/obj/structure/ice/thin/end, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bgf" = ( -/obj/structure/ice/thin/end{ - dir = 8 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bgg" = ( -/obj/structure/ice/thin/straight{ - dir = 4 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bgh" = ( -/obj/structure/ice/thin/corner{ - dir = 4 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bgi" = ( -/obj/structure/ice/thin/corner{ - dir = 8 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bgk" = ( -/turf/closed/ice_rock/singleEnd, -/area/corsat/gamma/biodome) -"bgr" = ( -/turf/closed/wall, -/area/corsat/sigma/biodome/gunrange) -"bgx" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/obj/effect/decal/cleanable/cobweb{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"bgB" = ( -/turf/closed/wall, -/area/corsat/sigma/biodome/scrapyard) -"bgZ" = ( -/turf/closed/wall/r_wall, -/area/corsat/sigma/biodome/testgrounds) -"bhg" = ( -/turf/open/floor/plating, -/area/corsat/sigma/biodome/testgrounds) -"bhl" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/corsat/sigma/biodome/testgrounds) -"bhn" = ( -/turf/closed/mineral{ - color = "#c48664" - }, -/area/corsat/sigma/biodome) -"bhx" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"biD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/north) -"biN" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Hangar Security"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"bjm" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"bjq" = ( -/obj/structure/bed, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"bjD" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"bjF" = ( -/turf/open/floor/corsat/purple/east, -/area/corsat/omega/complex) -"bkf" = ( -/obj/structure/pipes/standard/simple/hidden/universal, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"bky" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/monorail) -"bkE" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "SigmaIDSC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/south/id) -"bkJ" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaSecC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/sigma/south/security) -"bkM" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "GammaHOS"; - name = "Privacy Shutters" - }, -/turf/open/floor/plating, -/area/corsat/gamma/security) -"bkP" = ( -/obj/structure/window/framed/corsat/cell/security, -/turf/open/floor/plating, -/area/corsat/gamma/security/cells) -"ble" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"blB" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/hangar/arrivals) -"blK" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/hangar/arrivals) -"blM" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/hangar/office) -"blN" = ( -/obj/structure/foamed_metal, -/turf/open/floor/corsat, -/area/corsat/gamma/hangar/cargo) -"blU" = ( -/obj/structure/monorail, -/turf/open/space, -/area/space) -"blW" = ( -/obj/structure/monorail{ - dir = 5 - }, -/turf/open/space, -/area/space) -"blX" = ( -/obj/structure/monorail{ - dir = 10 - }, -/turf/open/space, -/area/space) -"blY" = ( -/obj/structure/monorail{ - dir = 8 - }, -/turf/open/space, -/area/space) -"bmj" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/monorail) -"bmm" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/monorail/control) -"bmv" = ( -/obj/structure/monorail, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"bmB" = ( -/obj/structure/monorail{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"bmC" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/monorail) -"bmD" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/monorail/control) -"bmF" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar/monorail) -"bmG" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar/monorail/control) -"bmS" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/arrivals) -"bmZ" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/cargo) -"bnf" = ( -/obj/structure/sign/safety/fridge, -/turf/closed/wall/biodome, -/area/corsat/gamma/freezer) -"bnl" = ( -/obj/structure/sign/safety/high_voltage, -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/engineering/core) -"bno" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 - }, -/obj/effect/landmark/nightmare{ - insert_tag = "lockdown-gamma-north" - }, -/turf/open/auto_turf/snow/layer1, -/area/corsat/gamma/biodome) -"bnr" = ( -/obj/structure/sign/safety/galley, -/turf/closed/wall/biodome, -/area/corsat/gamma/canteen) -"bnw" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar/monorail) -"bnH" = ( -/obj/structure/sign/safety/biohazard, -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/biodome/virology) -"bnJ" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer/white, -/area/corsat/gamma/medbay) -"bnK" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer/white, -/area/corsat/gamma/medbay/lobby) -"bnL" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar) -"bnM" = ( -/obj/structure/sign/safety/medical, -/turf/closed/wall/almayer/white, -/area/corsat/gamma/medbay) -"bnO" = ( -/obj/structure/sign/safety/medical, -/turf/closed/wall/almayer/white, -/area/corsat/gamma/medbay/lobby) -"bnP" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/biodome) -"bnU" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar/security) -"bnY" = ( -/obj/structure/safe, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"bnZ" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar/id) -"boe" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/biodome) -"bof" = ( -/obj/structure/sign/safety/storage, -/turf/closed/wall/biodome, -/area/corsat/sigma/cargo) -"bon" = ( -/obj/structure/fence, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/auto_turf/snow/layer2, -/area/corsat/gamma/biodome) -"boq" = ( -/obj/structure/sign/safety/storage, -/turf/closed/wall/biodome, -/area/corsat/omega/cargo) -"bor" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/theta/biodome) -"bou" = ( -/obj/structure/sign/safety/high_voltage, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/southeast/generator) -"bow" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/south/complex) -"box" = ( -/obj/structure/sign/safety/radio_rad, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/southeast/telecomm) -"boy" = ( -/obj/structure/sign/safety/terminal, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/southeast/telecomm) -"boz" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = -32 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"boB" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 32 - }, -/obj/effect/landmark/nightmare{ - insert_tag = "lockdown-theta-east" - }, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"boC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"boJ" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/hangar) -"bpU" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"bqc" = ( -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/gamma/residential/east) -"bqo" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 4; - id_tag = "oxy_corsat_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bqp" = ( -/obj/structure/pipes/unary/outlet_injector{ - name = "Waste Air Injector" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bqr" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "GammaLab"; - name = "Privacy Shutters" - }, -/turf/open/floor/wood, -/area/corsat/gamma/biodome/complex) -"bqt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/virology) -"bra" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/biodome/complex) -"brb" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) -"bro" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"brt" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"brv" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar) -"brV" = ( -/turf/open/floor/corsat/purplecorner/east, -/area/corsat/gamma/residential) -"bsF" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"bsL" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"btc" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"btk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"btI" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"btN" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/flightcontrol) -"bun" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"buo" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"bup" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"buq" = ( -/obj/structure/bed/chair/wood/wings, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"bur" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"bus" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"but" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/wood/wings{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"buv" = ( -/turf/open/floor/corsat/greenwhitecorner/west, -/area/corsat/gamma/medbay) -"buB" = ( -/obj/structure/sign/safety/distribution_pipes{ - desc = "A sign that denotes the proximity of a life support system." - }, -/turf/closed/wall/biodome, -/area/corsat/gamma/engineering/atmos) -"buU" = ( -/obj/structure/window/framed/corsat/hull, -/obj/structure/pipes/standard/simple/visible, -/turf/open/floor/plating, -/area/corsat/inaccessible) -"buY" = ( -/obj/structure/prop/mech/drill, -/turf/open/floor/corsat, -/area/corsat/sigma/south/robotics) -"buZ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Robotics"; - req_one_access_txt = "102" - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/corsat/sigma/south/robotics) -"bva" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"bvd" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/airlock/north) -"bvj" = ( -/turf/open/floor/mech_bay_recharge_floor, -/area/corsat/sigma/south/robotics) -"bvk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/corsat/sigma/south/robotics) -"bvx" = ( -/obj/structure/bed, -/obj/effect/landmark/survivor_spawner, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"bvH" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/control) -"bvJ" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"bvQ" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"bvR" = ( -/obj/structure/bed, -/obj/structure/machinery/light, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"bvS" = ( -/obj/structure/bed, -/obj/item/tool/lighter/zippo, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"bvT" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"bwd" = ( -/obj/item/implant/neurostim, -/obj/item/implant/neurostim, -/obj/item/implant/adrenalin, -/obj/item/implant/adrenalin, -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"bwM" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) -"bwP" = ( -/turf/open/floor/corsat, -/area/corsat/sigma/south/robotics) -"bwS" = ( -/obj/structure/machinery/light, -/turf/closed/wall/biodome, -/area/corsat/sigma/south/engineering) -"bxB" = ( -/obj/structure/girder/displaced, -/turf/open/floor/corsat, -/area/corsat/sigma/south/robotics) -"bxE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/hallways) -"bye" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Gamma Director's Office"; - req_access_txt = "106" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"byn" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Omega Director's Office"; - req_access_txt = "106" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"byo" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Theta Director's Office"; - req_access_txt = "106" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"byp" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Sigma Director's Office"; - req_access_txt = "106" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"byu" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/drinkingglass, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"byK" = ( -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/gamma/hangar/flightcontrol) -"byM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/closed/wall/biodome, -/area/corsat/omega/complex) -"bzm" = ( -/obj/structure/window/framed/corsat/hull/research, -/turf/open/floor/plating, -/area/corsat/inaccessible) -"bzO" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"bBa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bBO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/corsat/omega/complex) -"bBP" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/corsat, -/area/corsat/omega/complex) -"bBS" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/airlock/control) -"bBZ" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"bCb" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"bCe" = ( -/obj/structure/bookcase/manuals/medical, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"bCf" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"bCg" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"bCk" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"bCm" = ( -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"bCo" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"bCp" = ( -/obj/structure/surface/table/woodentable, -/obj/item/book/manual/engineering_hacking, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"bCs" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential) -"bCA" = ( -/turf/open/mars_cave/mars_cave_14, -/area/corsat/sigma/biodome/gunrange) -"bCC" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south) -"bCI" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaSecC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/gamma/security) -"bCP" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/carpet13_5/west, -/area/corsat/omega/offices) -"bCS" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "OmegaAccessC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/omega/checkpoint) -"bCV" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "OmegaAccessC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/omega/checkpoint) -"bCX" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "GammaSouthAirlockC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/south) -"bDc" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/airlocknorth) -"bDm" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/gamma/hangar) -"bDn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/checkpoint) -"bDp" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "OmegaSecC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/omega/security) -"bDH" = ( -/obj/structure/window/framed/corsat/cell/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHolding2"; - name = "Holding Cell 2" - }, -/turf/open/floor/plating, -/area/corsat/sigma/south/security) -"bDM" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 8; - id_tag = "mix_sigma_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bDV" = ( -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/virology) -"bEd" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/sigma/south/complex) -"bEz" = ( -/obj/structure/machinery/door_control{ - id = "OmegaCargoN"; - name = "Cargo Door"; - pixel_x = 24; - use_power = 0 - }, -/turf/open/floor/corsat/browncorner/east, -/area/corsat/omega/cargo) -"bEA" = ( -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"bEF" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"bEG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"bEH" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"bET" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"bEZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/medical_pod/sleeper{ - flags_atom = 18 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"bFc" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"bFe" = ( -/turf/open/floor/carpet6_2/west, -/area/corsat/gamma/biodome/complex) -"bFJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"bGl" = ( -/turf/open/floor/corsat/theta, -/area/corsat/theta/airlock/west) -"bGm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south) -"bGx" = ( -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth) -"bGK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/bluecorner, -/area/corsat/omega/control) -"bHI" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"bHO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"bHR" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"bIl" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"bIq" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/checkpoint) -"bIE" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"bIJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"bIM" = ( -/obj/structure/machinery/chem_dispenser{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"bIO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"bIW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/hallwaysouth) -"bIZ" = ( -/obj/structure/window/reinforced, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/crap_item, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/foyer) -"bJo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/scrapyard) -"bLo" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/west/id) -"bLH" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/freezer) -"bLX" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "GammaBioAtmos"; - name = "Access Shutter" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"bMg" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/south) -"bMJ" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/maint) -"bOk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/rnr) -"bOv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/airlock/north) -"bOM" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/almayer/plating_striped, -/area/corsat/gamma/sigmaremote) -"bPN" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"bQt" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bQu" = ( -/turf/open/shuttle/escapepod/floor1, -/area/corsat/theta/biodome/complex) -"bQv" = ( -/obj/structure/window/framed/corsat/hull, -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/inaccessible) -"bQy" = ( -/turf/open/floor/corsat, -/area/corsat/gamma/hallwaysouth) -"bQH" = ( -/obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bQN" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/inaccessible) -"bQV" = ( -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bRg" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "OmegaWarden"; - name = "Privacy Shutters" - }, -/turf/open/floor/plating, -/area/corsat/omega/security) -"bRi" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/residential) -"bRu" = ( -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/south/offices) -"bRA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"bRF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hangar) -"bRT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"bSc" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/security) -"bSk" = ( -/obj/structure/window/framed/corsat/cell/security, -/turf/open/floor/plating, -/area/corsat/omega/checkpoint) -"bSv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/residential) -"bSL" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"bSS" = ( -/obj/structure/surface/table/reinforced, -/obj/item/explosive/grenade/empgrenade, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"bSV" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"bSY" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"bTg" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Theta Dome Control"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/theta/airlock/control) -"bTk" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/theta/airlock/west/id) -"bTI" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/corsat/white/north, -/area/corsat/sigma/south) -"bTY" = ( -/obj/structure/pipes/standard/simple/visible, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow/west, -/area/corsat/theta/airlock/control) -"bUj" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"bUm" = ( -/obj/structure/machinery/power/smes, -/turf/open/floor/corsat, -/area/corsat/sigma/south/complex) -"bUn" = ( -/turf/open/floor/corsat, -/area/corsat/omega/complex) -"bUp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"bUC" = ( -/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bUJ" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/obj/structure/flora/jungle/planttop1, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bUK" = ( -/obj/structure/flora/jungle/plantbot1, -/turf/closed/gm/dense, -/area/corsat/theta/biodome) -"bUW" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 8; - name = "Mixed Air Injector" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bVo" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("omega") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/airlocknorth) -"bVp" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/security/cells) -"bVu" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/security) -"bVE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bVH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bVN" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 1; - id_tag = "car_sigma_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bVO" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bVP" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "7" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"bVT" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 1; - name = "Mixed Air Injector" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bVX" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bWP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"bYd" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - id_tag = "nit_gamma_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bYm" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 4; - name = "Mixed Air Injector" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bYw" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 4; - id_tag = "mix_gamma_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bYB" = ( -/turf/open/floor/corsat/blue/northwest, -/area/corsat/sigma/southeast) -"bYI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bYN" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 1; - name = "Waste Air Injector" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bYP" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bYQ" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 8; - name = "Waste Air Injector" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bYS" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 4; - id_tag = "car_theta_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bYT" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 1; - id_tag = "mix_theta_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bZn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/checkpoint) -"bZt" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/effect/spawner/random/tool, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"bZC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"bZL" = ( -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/residential) -"bZR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/flightcontrol) -"bZU" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"caK" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"cbu" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"cbz" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/theta/airlock/west/id) -"cbA" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/office) -"cbQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"cbW" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"ccn" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Reception Desk"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/lobby) -"ccq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"ccO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"ccS" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"ccZ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) -"cdd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/security/cells) -"cdp" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/monorail/control) -"cdv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/virology) -"cdE" = ( -/turf/open/floor/corsat/purplecorner/north, -/area/corsat/gamma/biodome/complex) -"cdN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/airlock/north) -"ceg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/east) -"cel" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"ceu" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"ceI" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Class Room"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"ceO" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/white/southwest, -/area/corsat/gamma/residential/east) -"ceR" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"ceU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"cfx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"cfJ" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hallways) -"cfM" = ( -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"cfQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"cfV" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"cga" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/hangar/cargo) -"cgb" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/corsat/white/northeast, -/area/corsat/gamma/hallwaysouth) -"cgc" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/hangar/security) -"cgg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"cgi" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/hangar/checkpoint) -"cgL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/checkpoint) -"cha" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"chj" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"chp" = ( -/obj/structure/bed/sofa/vert/white/bot, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"chs" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"chu" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat/blue/southwest, -/area/corsat/sigma/airlock/control) -"chA" = ( -/turf/open/floor/asteroidwarning/east, -/area/corsat/sigma/biodome) -"chC" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"chM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/north, -/area/corsat/sigma/biodome) -"chT" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/south/engineering) -"chY" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/maint) -"cif" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Teachers' Office"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"cip" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/white/north, -/area/corsat/sigma/dorms) -"ciq" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/checkpoint) -"ciu" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Medical Bay"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"ciA" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydroeast) -"cjn" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/office) -"cjs" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/hallwaysouth) -"cjt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/security) -"cjz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/theta/biodome/complex) -"cjH" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"cjP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/corsat/sigma/south/complex) -"ckm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay) -"ckr" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/security/cells) -"ckB" = ( -/turf/open/floor/corsat/greencorner, -/area/corsat/gamma/hallwaysouth) -"ckC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"ckI" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Teleporter Power Room"; - req_access_txt = "103"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) -"ckL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"ckU" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/gamma/rnr) -"clj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"clk" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, -/obj/item/tool/stamp/cmo, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"cll" = ( -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/hydrowest) -"clw" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"clD" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/south/security) -"clE" = ( -/obj/structure/machinery/door_control{ - id = "SigmaWestW"; - name = "Airlock Control"; - pixel_x = -5; - use_power = 0 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaWestE"; - name = "Airlock Control"; - pixel_x = 5; - use_power = 0 - }, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"clG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/mech/tesla_energy_relay, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"clU" = ( -/turf/open/floor/carpet5_1/west, -/area/corsat/gamma/biodome/complex) -"cmv" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/airlock/south/id) -"cmw" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/control) -"cmH" = ( -/obj/structure/closet/bombcloset, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"cmQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Arrivals" - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"cmV" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"cna" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"cnc" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"cne" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"cni" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"cnl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/visible, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Oxygen Supply Console" - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"cnm" = ( -/turf/open/mars_cave/mars_cave_4, -/area/corsat/sigma/biodome/gunrange) -"cnn" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/gamma/hangar/arrivals) -"cnu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/residential/researcher) -"cnI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"cnY" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"cos" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"cot" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"cou" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/airlock/control) -"coT" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_15, -/area/corsat/sigma/biodome/gunrange) -"cph" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"cps" = ( -/turf/open/mars_cave/mars_cave_20, -/area/corsat/sigma/biodome/gunrange) -"cpt" = ( -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/omega/containment) -"cpv" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/tritium{ - amount = 10 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/engineering) -"cpP" = ( -/obj/structure/prop/dam/crane/cargo, -/turf/open/floor/almayer/plating_striped/north, -/area/corsat/gamma/sigmaremote) -"cpV" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/omega/control) -"cqA" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/botanydisk, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/theta/biodome/complex) -"cqY" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/blue, -/area/corsat/gamma/airlock/control) -"crt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/hangar) -"crz" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/airlock/south) -"crV" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/southeast) -"csa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/southeast/generator) -"csl" = ( -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/gamma/residential/west) -"csm" = ( -/obj/structure/bed/chair, -/obj/structure/platform{ - dir = 8; - layer = 2.8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"csp" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"css" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/hangar/office) -"csz" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/retractor, -/obj/item/tool/surgery/bonesetter, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay/surgery) -"csH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"csN" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - dir = 1; - name = "Cargo Bay"; - req_one_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"csS" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/southeast/generator) -"ctp" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar) -"ctr" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/corsat/inaccessible) -"ctD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/sigma/south) -"cua" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar/security) -"cuc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/purple/north, -/area/corsat/omega/hallways) -"cug" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydroeast) -"cuw" = ( -/obj/structure/machinery/autolathe, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"cuC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"cuJ" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"cva" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"cve" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"cvi" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"cvo" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"cvs" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"cvw" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/rnr) -"cvy" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"cvz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/dorms) -"cvI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/virology) -"cvO" = ( -/obj/structure/flora/jungle/plantbot1, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"cvS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/checkpoint) -"cwh" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Atmospherics"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"cwq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/whitecorner, -/area/corsat/gamma/residential/east) -"cwu" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"cwv" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 4; - id_tag = "oxy_corsat_out" - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"cwz" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/white/northwest, -/area/corsat/gamma/residential) -"cwF" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/mars, -/area/corsat/sigma/biodome) -"cwJ" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/airlock/control) -"cwO" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("omega") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hallways) -"cwR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/administration) -"cxc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHangarC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/checkpoint) -"cxo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"cxr" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/gamma/rnr) -"cxw" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 32 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"cxx" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "19" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"cxy" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"cxA" = ( -/obj/effect/landmark/corpsespawner/chef, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"cxB" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"cxD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/hallwaysouth) -"cxI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"cxZ" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/hangar/cargo) -"cyb" = ( -/obj/structure/bed/stool{ - pixel_y = 15 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"cyk" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/airlock/east) -"cyv" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/theta, -/area/corsat/theta/biodome/complex) -"cyB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"cyD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/sigmaremote) -"cyN" = ( -/obj/structure/machinery/power/apc/upgraded/power/north, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/security/armory) -"cyO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/biodome/complex) -"czb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/airlock/control) -"czd" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/security) -"czt" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"czv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"czy" = ( -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"czA" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"czN" = ( -/obj/structure/machinery/door/window/westleft, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/datalab) -"czX" = ( -/obj/structure/machinery/light, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"cAj" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"cAn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/checkpoint) -"cAs" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "2" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"cAv" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"cAx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/white/southwest, -/area/corsat/gamma/hallwaysouth) -"cAz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/mars/mars_dirt_3, -/area/corsat/sigma/biodome) -"cAI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/complex) -"cAO" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/monkeycubes/farwacubes, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"cAQ" = ( -/obj/effect/landmark/corpsespawner/pmc, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"cAU" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/residential) -"cAZ" = ( -/turf/open/floor/corsat/plate, -/area/corsat/inaccessible) -"cBd" = ( -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"cBe" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar) -"cBj" = ( -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/control) -"cBl" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"cBo" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"cBr" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "23" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"cBA" = ( -/turf/open/floor/corsat/red, -/area/corsat/sigma/dorms) -"cBD" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/airlocknorth) -"cBH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"cBJ" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/hangar/monorail/control) -"cBN" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/sigma/south) -"cCa" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/toxins) -"cCl" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/gloves, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) -"cCs" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/east) -"cCw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/autolathe, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/sigma/south/complex) -"cCy" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/southeast/dataoffice) -"cCz" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purple, -/area/corsat/sigma/south) -"cCA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/hangar/monorail) -"cCH" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/greenwhitecorner/west, -/area/corsat/gamma/medbay/surgery) -"cCN" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/theta/airlock/control) -"cCR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar) -"cDj" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"cDm" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/sigma/south/offices) -"cDn" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"cDo" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "7" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"cDq" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"cDw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"cDy" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"cDJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/green/west, -/area/corsat/gamma/hallwaysouth) -"cEM" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) -"cER" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"cEW" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/control) -"cFv" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/hangar/security) -"cFy" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"cFN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Observation Chamber"; - req_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"cFR" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"cFW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"cGe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"cGk" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/residential) -"cGl" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/hallways) -"cGu" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/checkpoint) -"cGw" = ( -/obj/structure/machinery/computer3, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"cGy" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/security) -"cGF" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar/arrivals) -"cGH" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"cGP" = ( -/obj/structure/sign/safety/biolab{ - pixel_y = 32 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/hydrowest) -"cGT" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"cGU" = ( -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/southeast/generator) -"cHr" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/north) -"cHx" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/sigma/dorms) -"cHN" = ( -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/cargo) -"cHP" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/theta/airlock/control) -"cHR" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/omega, -/area/corsat/omega/control) -"cHS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"cIz" = ( -/obj/item/folder/black_random, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/airlock/control) -"cII" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/north) -"cIL" = ( -/obj/structure/machinery/juicer, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"cIO" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/dorms) -"cIP" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellow/north, -/area/corsat/omega/maint) -"cJe" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/hangar/checkpoint) -"cJp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/omega/offices) -"cJz" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/omega/complex) -"cJA" = ( -/obj/structure/window/reinforced, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"cJO" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"cKb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetancorner, -/area/corsat/sigma/dorms) -"cKf" = ( -/turf/open/mars_cave/mars_cave_17, -/area/corsat/sigma/biodome/scrapyard) -"cKg" = ( -/turf/open/floor/corsat/browncorner, -/area/corsat/sigma/north) -"cKh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security/cells) -"cKi" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"cKm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Hangar Office" - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"cKy" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/airlocknorth) -"cKP" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"cLn" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/omega/complex) -"cLA" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"cLQ" = ( -/obj/structure/prop/almayer/particle_cannon/corsat, -/turf/open/floor/corsat/plate, -/area/corsat/inaccessible) -"cLS" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/containment) -"cLU" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"cLV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/sigma/dorms) -"cMa" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"cMk" = ( -/turf/open/floor/carpet6_2/west, -/area/corsat/gamma/administration) -"cMS" = ( -/obj/structure/prop/almayer/cannon_cables{ - color = "#55BBFF"; - name = "\improper Cables" - }, -/turf/open/floor/corsat/plate, -/area/corsat/inaccessible) -"cNd" = ( -/obj/structure/surface/table/reinforced, -/obj/item/explosive/grenade/flashbang/cluster, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/sigma/south/complex) -"cNj" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar) -"cNo" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/sigmaremote) -"cNr" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/FixOVein, -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay/surgery) -"cNA" = ( -/turf/open/floor/corsat/brown/northwest, -/area/corsat/gamma/cargo) -"cNE" = ( -/turf/open/floor/corsat/browncorner/east, -/area/corsat/sigma/north) -"cNH" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar) -"cNO" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"cNP" = ( -/obj/structure/surface/table, -/obj/item/toy/deck/uno, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) -"cNU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"cNZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"cOb" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/purple/southwest, -/area/corsat/sigma/south) -"cOd" = ( -/turf/open/floor/corsat/arrow_west, -/area/corsat/sigma/cargo) -"cOl" = ( -/obj/structure/surface/rack, -/obj/item/cell/potato{ - charge = 1000; - maxcharge = 3000; - name = "overpowered potato" - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/engineering) -"cOm" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/gamma/hangar) -"cOF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/engineering) -"cOM" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"cPa" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo/lobby) -"cPc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/gamma/residential/researcher) -"cPi" = ( -/obj/structure/monorail{ - dir = 8 - }, -/turf/open/space/transit/east/shuttlespace_ew10, -/area/space) -"cPn" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"cPx" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) -"cPy" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/hangar/office) -"cPD" = ( -/obj/structure/bed, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"cPF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/hangar/office) -"cPQ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Atmospherics"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"cPU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar) -"cQe" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/omega/hallways) -"cQf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"cQi" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/gamma/residential) -"cQq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"cQt" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/hangar/security) -"cQC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"cQM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/southeast/dataoffice) -"cQP" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"cRh" = ( -/obj/structure/machinery/computer/teleporter_console/corsat{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"cRl" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"cRq" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"cRu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/cargo) -"cRx" = ( -/obj/item/cell/crap, -/turf/open/floor/corsat, -/area/corsat/gamma/cargo/disposal) -"cRI" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/sigma/south/complex) -"cSd" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Surgery Room"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/surgery) -"cSl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"cSp" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/omega/offices) -"cSq" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/gamma/hangar/flightcontrol) -"cSt" = ( -/obj/structure/stairs, -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/hallwaysouth) -"cSx" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"cSC" = ( -/obj/structure/sign/safety/biohazard, -/obj/structure/machinery/space_heater, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/virology) -"cSE" = ( -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"cSF" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"cSH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/robotics) -"cSJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth) -"cSO" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"cSX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/east) -"cTh" = ( -/obj/structure/stairs, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"cTi" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/hangar/id) -"cTx" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"cTF" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/yellow, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"cTG" = ( -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/hangar/arrivals) -"cTM" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"cTO" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bottle/random, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/virology) -"cTP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"cTQ" = ( -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/gamma/residential) -"cTW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/hallways) -"cUc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/mars, -/area/corsat/sigma/biodome) -"cUr" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/south/robotics) -"cUW" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/hangar) -"cVk" = ( -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/biodome/complex) -"cVl" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"cVp" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 4 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/security) -"cVu" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/airlock/control) -"cVL" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dressing room" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"cVN" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/airlock/south) -"cVR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"cVU" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"cVY" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/foyer) -"cWb" = ( -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/gamma/hangar/flightcontrol) -"cWj" = ( -/obj/structure/closet/wardrobe/virology_white, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"cWA" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Mixed Air Control" - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/airlock/control) -"cWB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/communications, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"cWJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south) -"cWL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Research Complex Theta"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"cWM" = ( -/obj/structure/disposaloutlet, -/turf/open/floor/corsat/brown/northeast, -/area/corsat/gamma/cargo/disposal) -"cXb" = ( -/obj/structure/surface/rack, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/hangar/monorail/control) -"cXf" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/hangar/monorail/control) -"cXg" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet11_12/west, -/area/corsat/gamma/administration) -"cXk" = ( -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/sigma/southeast/datalab) -"cXl" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/south) -"cXx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar) -"cXF" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"cXH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"cXM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/sigma/dorms) -"cXS" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/plating/warnplate/east, -/area/corsat/gamma/hangar) -"cYi" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"cYp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/theta/airlock/control) -"cYE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/omega/complex) -"cYK" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/core) -"cYM" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/robot_module/janitor, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/south/robotics) -"cYQ" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/checkpoint) -"cYV" = ( -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/gamma/administration) -"cZc" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"cZd" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/south/offices) -"cZh" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"cZi" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential) -"cZl" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"cZu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars, -/area/corsat/sigma/biodome) -"cZB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/hangar/checkpoint) -"cZM" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar) -"cZT" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/security) -"cZU" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/purple, -/area/corsat/omega/hallways) -"cZX" = ( -/obj/structure/machinery/computer/area_atmos/area, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/engineering/atmos) -"dah" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/whitecorner, -/area/corsat/sigma/dorms) -"dal" = ( -/turf/open/mars_cave/mars_cave_12, -/area/corsat/sigma/biodome/gunrange) -"daq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"daz" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/trash/plate, -/obj/item/reagent_container/glass/rag{ - pixel_y = 10 - }, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"daF" = ( -/obj/structure/sign/safety/biolab{ - pixel_y = -32 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/hydrowest) -"daJ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Autopsy"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/morgue) -"daM" = ( -/obj/structure/computer3frame/server{ - icon_state = "4" - }, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/sigmaremote) -"daZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"dba" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"dbc" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/flasher{ - pixel_y = 24 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/south/security) -"dbi" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"dbk" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"dbm" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("theta") - }, -/turf/open/floor/corsat/blue/northwest, -/area/corsat/theta/airlock/control) -"dbt" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Implantation Chamber"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"dbC" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/red, -/area/corsat/omega/control) -"dbD" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"dbR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/engineering) -"dbU" = ( -/obj/structure/closet/secure_closet/security_empty{ - name = "Warden's Locker" - }, -/obj/item/clothing/head/beret/sec/warden, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/south/security) -"dch" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"dcn" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/airlock/control) -"dct" = ( -/turf/open/floor/corsat, -/area/corsat/gamma/airlock/south/id) -"dcD" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"dcE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/researcher) -"dcI" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar) -"dcO" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar) -"dcP" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/gamma/canteen) -"dcU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"ddg" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/red, -/area/corsat/theta/airlock/west/id) -"ddv" = ( -/turf/open/floor/corsat/green/northeast, -/area/corsat/gamma/hallwaysouth) -"ddT" = ( -/obj/structure/surface/table, -/obj/item/folder/yellow, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"ddY" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"dei" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/toxins) -"dem" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"den" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/gamma/foyer) -"deo" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/south/robotics) -"deS" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/biodome/virology) -"deZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"dfg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"dfr" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "GammaSecC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/security) -"dfO" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"dgo" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/hangar/arrivals) -"dgA" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"dgC" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"dgP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"dhx" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"dhz" = ( -/obj/structure/machinery/lapvend, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"dhA" = ( -/obj/item/explosive/mine/pmc, -/obj/item/explosive/mine/pmc, -/obj/item/explosive/mine/pmc, -/obj/item/explosive/mine/pmc, -/obj/structure/closet/secure_closet/guncabinet{ - name = "explosives cabinet"; - req_access_txt = "100" - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"dhI" = ( -/obj/structure/machinery/smartfridge/chemistry/virology{ - req_access_txt = "103"; - req_one_access = null - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/virology) -"dhQ" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "2" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"dhW" = ( -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar) -"dii" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/hangar/security) -"dil" = ( -/turf/open/floor/corsat/red, -/area/corsat/sigma/south) -"dim" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat/white/southeast, -/area/corsat/sigma/south) -"diq" = ( -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/gunrange) -"dis" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"diA" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/residential) -"diD" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"diO" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail/control) -"diX" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Remote Complex"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"djb" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "CORSAT Library"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"djf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/checkpoint) -"djp" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"djz" = ( -/obj/structure/surface/table, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"djB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/prop/almayer/computers/mapping_computer, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"djF" = ( -/turf/open/floor/corsat, -/area/corsat/gamma/residential/researcher) -"dkc" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"dkh" = ( -/obj/structure/janitorialcart, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"dkj" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"dkz" = ( -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/airlock/north/id) -"dkL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security) -"dkX" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Engineering"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"dkZ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/airlock/south) -"dli" = ( -/obj/structure/computer3frame/server{ - icon_state = "4" - }, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/gamma/sigmaremote) -"dlo" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"dls" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/airlocknorth/id) -"dlv" = ( -/obj/item/folder/black, -/obj/item/tool/stamp/rd, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet7_3/west, -/area/corsat/gamma/administration) -"dlx" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"dly" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"dlD" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"dlQ" = ( -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock/master, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"dlV" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/id) -"dlX" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/silver{ - amount = 10 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"dmf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/sigma/dorms) -"dmm" = ( -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/airlock/south) -"dmu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/id) -"dmF" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/gamma/hallwaysouth) -"dmV" = ( -/obj/structure/surface/table/reinforced, -/obj/item/prop/gripper, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"dna" = ( -/turf/open/mars_cave/mars_cave_12, -/area/corsat/sigma/biodome) -"dnb" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/blue/southwest, -/area/corsat/gamma/airlock/control) -"dnh" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/south/security) -"dnt" = ( -/turf/open/floor/corsat/greenwhite/northwest, -/area/corsat/gamma/medbay/morgue) -"dnx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/wardrobe/virology_white, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"dnB" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"dnO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"dnQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"dnU" = ( -/turf/open/mars_cave/mars_cave_19, -/area/corsat/sigma/biodome/scrapyard) -"dob" = ( -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/sigma/hangar/arrivals) -"doo" = ( -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"dop" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering) -"doq" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"doD" = ( -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/omega/offices) -"doF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"doG" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"dpa" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "OmegaHangarN"; - name = "Landing Bay Omega" - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/hangar/security) -"dpb" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/administration) -"dph" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Head of Security Office"; - req_access_txt = "101" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "GammaHOS"; - name = "Privacy Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"dpt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"dpv" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/containment) -"dpA" = ( -/obj/structure/sign/safety/laser{ - pixel_x = 32 - }, -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"dpC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaHangarN"; - name = "Checkpoint Control"; - use_power = 0 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"dpQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/office) -"dqb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/rnr) -"dqr" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/hangar) -"dqG" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) -"dqM" = ( -/obj/structure/pipes/vents/pump, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome) -"dqN" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/theta, -/area/corsat/theta/biodome/complex) -"dqS" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/warnplate/east, -/area/corsat/gamma/hangar) -"drj" = ( -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/weapon/gun/smg/mp5, -/obj/structure/surface/rack, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/security/armory) -"drl" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"drp" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "LZ1: Gamma Landing Zone" - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"drO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south) -"drX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/foyer) -"drZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/security) -"dsa" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"dsk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/biodome/complex) -"dsl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/arrow_west, -/area/corsat/gamma/cargo) -"dsm" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/airlock/control) -"dsu" = ( -/obj/structure/closet/wardrobe/white, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/black, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/airlock/south/id) -"dsH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/corsat/gamma/sigmaremote) -"dth" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"dtk" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/blue, -/area/corsat/omega/control) -"dtt" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"dtu" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"dtv" = ( -/turf/open/floor/asteroidwarning, -/area/corsat/sigma/biodome) -"dtw" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/checkpoint) -"dty" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "OmegaCargoN"; - name = "Omega Cargo Room"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/cargo) -"dtG" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/toxins) -"dtT" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/id) -"dtY" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south/security) -"dtZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"duo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/south/offices) -"dur" = ( -/obj/vehicle/train/cargo/trolley, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/cargo) -"duw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"duI" = ( -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/theta/biodome/hydroeast) -"dvo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/sigma/dorms) -"dvu" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"dwi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/white, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"dwv" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/omega/maint) -"dwE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"dwN" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/corsat/white/northwest, -/area/corsat/gamma/hallwaysouth) -"dwP" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = -32 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"dwW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/corsat/gamma/biodome) -"dwZ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) -"dxW" = ( -/obj/structure/coatrack, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"dyi" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Mixed Air Control" - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/theta/airlock/control) -"dyA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"dyK" = ( -/obj/structure/pipes/vents/pump, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"dyP" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/residential) -"dza" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "OmegaCargo"; - name = "Omega Cargo Bay"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/cargo) -"dzg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Baths" - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"dzj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"dzo" = ( -/obj/structure/bed/chair/comfy/lime{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/security) -"dzA" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"dzG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/biodome/complex) -"dzH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"dzU" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/sigma/south/offices) -"dzV" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"dAi" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/foyer) -"dAn" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"dAp" = ( -/turf/open/floor/corsat/red, -/area/corsat/gamma/hangar) -"dAA" = ( -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) -"dAG" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"dAN" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"dAX" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"dBa" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"dBf" = ( -/obj/structure/machinery/light, -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/gamma/hangar/monorail) -"dBk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"dBH" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/corsat/greenwhite/northeast, -/area/corsat/gamma/medbay) -"dBM" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/complex) -"dBQ" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/drinkingglass, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"dCi" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Access Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"dCx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"dCE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/browncorner/north, -/area/corsat/gamma/cargo) -"dCI" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/north) -"dCJ" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"dCR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"dCZ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/corsat/omega/control) -"dDg" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/chemistry) -"dDm" = ( -/turf/open/floor/corsat/bluecorner, -/area/corsat/sigma/southeast) -"dDw" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/south/security) -"dDB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/white/southwest, -/area/corsat/gamma/residential) -"dDK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"dDM" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/security/cells) -"dEq" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/obj/item/organ/kidneys, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"dEz" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"dED" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/obj/item/organ/liver, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"dEJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner/west, -/area/corsat/omega/cargo) -"dER" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"dES" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/sigma/south/robotics) -"dFd" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"dFi" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"dFk" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"dFm" = ( -/obj/structure/closet/crate/medical, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"dFv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/theta/airlock/control) -"dFL" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/theta/biodome/complex) -"dFU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"dFV" = ( -/obj/structure/surface/table/gamblingtable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"dGo" = ( -/turf/open/mars_cave/mars_cave_15, -/area/corsat/sigma/biodome/scrapyard) -"dGs" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"dGu" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/south/engineering) -"dGy" = ( -/turf/open/mars_cave/mars_cave_6, -/area/corsat/sigma/biodome/gunrange) -"dGC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/airlock/south) -"dGE" = ( -/obj/structure/machinery/botany/editor, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"dGN" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/airlocknorth) -"dGZ" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"dHv" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - autoclose = 0; - density = 0; - icon_state = "door_open"; - id = "CORSAT Containment 4"; - name = "Containment Cell 1"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/inaccessible) -"dHH" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/checkpoint) -"dHP" = ( -/turf/open/mars_cave/mars_cave_7, -/area/corsat/sigma/biodome/gunrange) -"dHV" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/hangar/checkpoint) -"dHX" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaHangarE"; - name = "Checkpoint Control"; - pixel_x = 7; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "OmegaHangarW"; - name = "Checkpoint Control"; - pixel_x = -7; - use_power = 0 - }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/hangar/security) -"dIi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/hangar) -"dIk" = ( -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/core) -"dIw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"dJr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"dJE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/east) -"dJV" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy16" - }, -/area/prison/hangar_storage/research/shuttle) -"dKa" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"dKn" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"dKo" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/southeast) -"dKp" = ( -/obj/structure/powerloader_wreckage, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"dKt" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/sigma/south/complex) -"dKu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"dKB" = ( -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/morgue) -"dKE" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/monorail) -"dKL" = ( -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/hangar) -"dKU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/box/gloves, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"dKV" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/west, -/area/corsat/sigma/hangar) -"dLc" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"dLo" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"dLs" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"dLx" = ( -/turf/open/shuttle/dropship/light_grey_top_right, -/area/prison/hangar_storage/research/shuttle) -"dLy" = ( -/obj/structure/closet/crate/science, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/cargo) -"dLI" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/rnr) -"dLJ" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/chemimp, -/obj/item/storage/box/trackimp, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/sigmaremote) -"dLQ" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 1 - }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/theta/airlock/control) -"dLW" = ( -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/sigma/south/offices) -"dMb" = ( -/turf/open/floor/corsat/white, -/area/corsat/gamma/hallwaysouth) -"dMe" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaGrounds"; - name = "Testing Grounds" - }, -/turf/open/floor/plating/warnplate, -/area/corsat/sigma/biodome/testgrounds) -"dMs" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/hangar/monorail) -"dMt" = ( -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/sigma/south) -"dMB" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"dMF" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "ThetaIDEC2"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/red/northwest, -/area/corsat/theta/airlock/east/id) -"dMT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/white/bot, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"dMX" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"dNi" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"dNj" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"dNl" = ( -/obj/structure/largecrate/supply/medicine/blood, -/turf/open/floor/corsat/greenwhite/southwest, -/area/corsat/gamma/medbay) -"dNp" = ( -/obj/structure/machinery/door_control{ - id = "SigmaSecC"; - name = "Security Shutters"; - pixel_x = -24; - use_power = 0 - }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/south/security) -"dNy" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydroeast) -"dNN" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/southeast/datalab) -"dNW" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/phone, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/southeast/datalab) -"dOe" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/checkpoint) -"dOg" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/biodome/complex) -"dOi" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/green/north, -/area/corsat/gamma/hallwaysouth) -"dOo" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"dOv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"dOH" = ( -/obj/structure/tunnel{ - id = "hole0" - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"dOI" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" - }, -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"dOY" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"dPe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/hangar/flightcontrol) -"dPp" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/turf/open/floor/corsat/greenwhite/southwest, -/area/corsat/gamma/medbay/lobby) -"dPq" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/security) -"dPG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/airlock/control) -"dPL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"dPQ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"dPS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"dQi" = ( -/obj/structure/largecrate/cow, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"dQm" = ( -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/west) -"dQo" = ( -/obj/item/storage/box/masks, -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"dQq" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/checkpoint) -"dQB" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"dQF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"dQG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/sigma/south/complex) -"dQK" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/theta/airlock/east) -"dQQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/lounge) -"dQR" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/theta/airlock/west) -"dQX" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/warnplate, -/area/corsat/sigma/hangar) -"dQY" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("theta") - }, -/turf/open/floor/corsat/blue, -/area/corsat/theta/airlock/control) -"dRa" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/engineering/atmos) -"dRe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/purple/east, -/area/corsat/omega/hallways) -"dRl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/airlock/control) -"dRq" = ( -/obj/structure/prop/dam/crane, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"dRA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"dRJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"dSf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"dSj" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"dSx" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/biodome/toxins) -"dSN" = ( -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"dSR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"dSV" = ( -/turf/open/floor/corsat/purplecorner/north, -/area/corsat/gamma/residential) -"dTa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/bluecorner, -/area/corsat/sigma/airlock/control) -"dTI" = ( -/obj/structure/machinery/smartfridge/chemistry{ - req_access_txt = "100"; - req_one_access = null - }, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) -"dUj" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - name = "LZ2: Sigma Landing Zone" - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar) -"dUE" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/sigma/southeast/datalab) -"dUP" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/sigma/south/complex) -"dUU" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/theta/airlock/west/id) -"dVa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/checkpoint) -"dVs" = ( -/obj/item/tool/pen, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"dVR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"dVS" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"dVU" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"dVY" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"dWa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security/armory) -"dWm" = ( -/turf/open/floor/corsat/purple/west, -/area/corsat/sigma/south) -"dWu" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydrowest) -"dWv" = ( -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/researcher) -"dWG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/airlock/north) -"dWO" = ( -/obj/structure/surface/table/almayer, -/obj/item/phone, -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/sigma/southeast/datalab) -"dWP" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"dWQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"dXd" = ( -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"dXg" = ( -/obj/structure/surface/table, -/obj/item/folder/black, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"dXn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"dXv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/north) -"dXH" = ( -/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering/atmos) -"dYc" = ( -/obj/structure/largecrate/supply/ammo/pistol/half, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"dYe" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/hangar/monorail/control) -"dYq" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"dYx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"dYy" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/stamp/rd, -/turf/open/floor/carpet15_15/west, -/area/corsat/omega/offices) -"dYA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/arrow_east, -/area/corsat/sigma/southeast/datalab) -"dYG" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"dYP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"dYR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"dYS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/microwave, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"dYX" = ( -/turf/open/floor/corsat/greenwhitecorner/east, -/area/corsat/gamma/medbay/chemistry) -"dZb" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"dZi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/east/id) -"dZj" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Cafe"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"dZl" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"dZm" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/gamma/hangar/flightcontrol) -"dZt" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/hangar/security) -"dZI" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"dZW" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"eah" = ( -/turf/open/floor/asteroidwarning/west, -/area/corsat/sigma/biodome/gunrange) -"eao" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "CORSAT Armory"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security/armory) -"eas" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar/cargo) -"eax" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Research Hallway"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"eaB" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/sigma/hangar/office) -"eaE" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/maint) -"eaN" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"eaQ" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaHCargoN"; - name = "Gamma Cargo Checkpoint"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar/cargo) -"eaW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"ebc" = ( -/obj/structure/pipes/standard/simple/hidden/universal, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"ebf" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"ebj" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/biodome/virology) -"ebz" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/core) -"ebI" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/fire, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"ebP" = ( -/obj/structure/machinery/light, -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar) -"ebQ" = ( -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/omega/hallways) -"ebR" = ( -/turf/open/floor/corsat/browncorner/west, -/area/corsat/gamma/cargo/lobby) -"ebV" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"ece" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"eck" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/hangar/arrivals) -"ecn" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Atmospherics"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"ecB" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/monorail) -"ecQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Sigma Remote Complex"; - req_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"ecX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"edm" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"edn" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"edu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"edx" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/hangar/id) -"edE" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/surgery) -"edM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/security) -"edQ" = ( -/turf/open/floor/corsat/blue/southeast, -/area/corsat/sigma/airlock/control) -"edU" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/brown/west, -/area/corsat/sigma/cargo) -"edY" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/theta/airlock/west/id) -"eec" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 - }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/airlock/control) -"eeh" = ( -/obj/structure/showcase{ - icon_state = "broadcast receiver"; - name = "Subspace Receiver" - }, -/turf/open/floor/corsat/plate, -/area/corsat/inaccessible) -"eem" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/brown/west, -/area/corsat/gamma/cargo) -"een" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"eep" = ( -/obj/structure/surface/table/almayer, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"eew" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"eeD" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"eeV" = ( -/turf/open/floor/corsat/browncorner/west, -/area/corsat/gamma/cargo) -"efg" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "ThetaEastE"; - name = "Theta East Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/east) -"efq" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/zippo, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"efA" = ( -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/sigmaremote) -"efW" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/gamma/hallwaysouth) -"egd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"egt" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/south) -"egw" = ( -/turf/open/floor/corsat/greenwhitecorner/north, -/area/corsat/gamma/medbay/morgue) -"egz" = ( -/obj/structure/stairs, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"egI" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Teleporter Power Room"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) -"egK" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"egN" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"egW" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail) -"ehg" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/vents/pump, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"ehp" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"ehw" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"ehA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"ehD" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/gamma/residential/east) -"eii" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, -/area/corsat/theta/biodome) -"eip" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"eix" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Office"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"eiz" = ( -/turf/open/floor/corsat/purple/northwest, -/area/corsat/omega/hallways) -"eiF" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"eiG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"eiV" = ( -/obj/structure/closet/coffin, -/turf/open/floor/corsat/green/northwest, -/area/corsat/gamma/medbay/morgue) -"ejl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/mars, -/area/corsat/sigma/biodome) -"ejn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"ejB" = ( -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/complex) -"ejJ" = ( -/obj/structure/machinery/power/reactor/colony{ - desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; - name = "\improper G-17 Thermoelectric Generator" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "0-8"; - layer = 2.1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"ejX" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/south) -"ejY" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/engineering/core) -"eke" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"ekL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"ekN" = ( -/turf/open/floor/corsat/purplecorner, -/area/corsat/omega/hallways) -"ekV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/morgue) -"ell" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"elo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"elH" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"elL" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"elN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"elO" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/engineering/atmos) -"elR" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"elU" = ( -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/airlock/control) -"emh" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("omega") - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/control) -"emi" = ( -/obj/structure/pipes/standard/simple/visible, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow/east, -/area/corsat/theta/airlock/control) -"emn" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"emr" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"emO" = ( -/turf/open/floor/corsat/blue/southwest, -/area/corsat/sigma/southeast/datalab) -"emV" = ( -/turf/open/floor/plating/warnplate/west, -/area/corsat/gamma/hangar) -"enr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"env" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/platinum{ - amount = 10 - }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/south/engineering) -"enx" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/engineering) -"enP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential) -"enX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Gamma Dome Control" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"eoc" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/south/engineering) -"eod" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/cargo/disposal) -"eoj" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/plating/warnplate, -/area/corsat/sigma/hangar) -"eop" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner/east, -/area/corsat/gamma/foyer) -"eoq" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail) -"eou" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/researcher) -"eoz" = ( -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"eoG" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"eoJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/surgery) -"eoK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) -"eoL" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"eoO" = ( -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"epj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"epl" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Holding Cell"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"epn" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay/surgery) -"epq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"epC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - pixel_y = 3 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"epI" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/airlock/south/id) -"epO" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar) -"epP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"eqc" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/white/northwest, -/area/corsat/sigma/dorms) -"eqk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"eql" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"eqq" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Xenobiology Reception Desk"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"eqz" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/engineering/atmos) -"eqS" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"eqV" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/dorms) -"eqY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "Genetics Lab"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"erc" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"erM" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/foyer) -"esa" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/engineering/atmos) -"esd" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/hangar/cargo) -"esh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"eso" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/security) -"esu" = ( -/obj/structure/stairs{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"esG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"esN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/canteen) -"esU" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/airlock/east) -"etd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/sigma/hangar/office) -"etP" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"etR" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/door_control{ - id = "OmegaOffice"; - name = "Privacy Shutters"; - pixel_y = 1; - use_power = 0 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/omega/offices) -"eue" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/item/tool/mop, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"euj" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"euo" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"euv" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ - id = "delta_gamma"; - name = "Gamma Emergency Access"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"euA" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Gamma Dome Control"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"euM" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/condiment/sugar, -/obj/item/reagent_container/food/condiment/sugar, -/obj/item/reagent_container/food/condiment/sugar, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"euO" = ( -/turf/open/floor/corsat/bluecorner, -/area/corsat/theta/airlock/control) -"euZ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/theta/biodome/complex) -"eva" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/gamma/hangar/flightcontrol) -"eve" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"evf" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/south/engineering) -"evq" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"evr" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"evw" = ( -/obj/structure/surface/table, -/obj/item/folder, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"evL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"evO" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"evV" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/omega/complex) -"ewd" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/theta/biodome/complex) -"ewk" = ( -/turf/open/floor/corsat/white, -/area/corsat/gamma/residential) -"ewn" = ( -/obj/structure/coatrack, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/omega/offices) -"ewW" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/offices) -"ewX" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/light_bulb/tube/large, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/south/engineering) -"exa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome) -"exb" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"exh" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 2; - name = "Secure Racks"; - req_access_txt = "103" - }, -/obj/item/tool/weedkiller/triclopyr, -/obj/item/tool/weedkiller/lindane, -/obj/item/tool/weedkiller/D24, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"exs" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHCargoS"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/id) -"ext" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/morgue) -"exR" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/sigma/south/complex) -"exU" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"exX" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential) -"eyq" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"eyA" = ( -/obj/structure/bed{ - icon_state = "psychbed" - }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"eyD" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo) -"eyJ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"eyK" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat, -/area/corsat/gamma/freezer) -"eyM" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"eyP" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/security) -"eyW" = ( -/turf/open/floor/carpet10_8/west, -/area/corsat/gamma/administration) -"eza" = ( -/obj/item/clothing/gloves/latex, -/obj/structure/surface/table/reinforced, -/obj/item/clothing/gloves/latex, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/security) -"ezl" = ( -/obj/structure/closet/wardrobe/science_white, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"ezu" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights, -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydroeast) -"ezR" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"eAi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"eAz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Toilet Unit" - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"eAD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/coast/south, -/area/corsat/theta/biodome) -"eAM" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/monorail/control) -"eAP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/sigma/hangar/monorail) -"eAU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/omega/control) -"eBb" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/chemistry) -"eBg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/theta/airlock/control) -"eBD" = ( -/obj/structure/stairs{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"eBT" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/sigmaremote) -"eBV" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/theta/airlock/east) -"eCf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"eCi" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ - id = "delta_omega"; - name = "Omega Checkpoint"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"eCl" = ( -/obj/structure/surface/rack, -/obj/item/frame/firstaid_arm_assembly, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/south/robotics) -"eCn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/cargo, -/area/corsat/omega/cargo) -"eCs" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/checkpoint) -"eCw" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"eCH" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"eCJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"eCN" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"eDk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"eDm" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security) -"eDC" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown/east, -/area/corsat/sigma/cargo) -"eDE" = ( -/turf/open/floor/corsat/brown/northeast, -/area/corsat/sigma/cargo) -"eDM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"eDT" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/airlock/control) -"eDW" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"eEh" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/security) -"eEi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/control) -"eEk" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"eEl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/office) -"eEo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/mars_cave/mars_cave_12, -/area/corsat/sigma/biodome) -"eEp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"eEs" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "GammaNorthS"; - name = "Gamma North Airlock" - }, -/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ - id = "map_lockdown"; - name = "Gamma Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/north) -"eEv" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"eEL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/whitecorner, -/area/corsat/gamma/residential/east) -"eFf" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bottle/capsaicin, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/biodome/toxins) -"eFn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"eFr" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"eFs" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/gamma/residential) -"eFE" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "SigmaIDSC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/south/id) -"eFZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/dataoffice) -"eGa" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/north) -"eGp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/airlocknorth/id) -"eGz" = ( -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"eGG" = ( -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/structure/pipes/vents/pump, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/administration) -"eGR" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"eHw" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/airlock/control) -"eHI" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo) -"eHX" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Virology Lab"; - req_one_access_txt = "103" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Viro"; - name = "Virology Lockdown" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"eIe" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"eIo" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering) -"eIq" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/corsat/sigma/cargo) -"eIr" = ( -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"eIx" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) -"eIC" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"eIL" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/corsat/theta/biodome) -"eIQ" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/hallwaysouth) -"eIS" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay) -"eIW" = ( -/turf/open/floor/corsat/purplecorner/east, -/area/corsat/omega/airlocknorth) -"eIY" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"eJb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/hangar/security) -"eJc" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 1 - }, -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"eJk" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"eJo" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"eJp" = ( -/obj/structure/surface/rack, -/obj/item/storage/wallet, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"eJr" = ( -/obj/item/weapon/gun/flamer, -/obj/item/explosive/grenade/incendiary, -/obj/structure/closet/secure_closet/guncabinet{ - name = "specimen control cabinet"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth) -"eJT" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/blue/southeast, -/area/corsat/omega/control) -"eKh" = ( -/obj/structure/bed/stool{ - pixel_y = 15 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"eKl" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "riot cabinet"; - req_access_txt = "100" - }, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/checkpoint) -"eKM" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/chemistry) -"eKR" = ( -/obj/structure/pipes/trinary/mixer{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/sigma/airlock/control) -"eKS" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/dorms) -"eKW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/sigma/south/complex) -"eLg" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/rnr) -"eLm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"eLq" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"eLw" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"eLG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"eLJ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("theta") - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/hydroeast) -"eLK" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) -"eLL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/southeast/datalab) -"eLW" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - damage_cap = 4000; - name = "\improper Emergency Access"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"eMg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"eMj" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/airlock/north) -"eMk" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"eMo" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar) -"eMz" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/south/security) -"eMB" = ( -/obj/structure/flora/jungle/planttop1, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"eMI" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" - }, -/turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"eMR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/airlock/control) -"eNg" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"eNs" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"eNy" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/biodome/toxins) -"eNM" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"eNS" = ( -/obj/vehicle/powerloader, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"eNX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydrowest) -"eOe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/corsat/gamma/biodome) -"eOj" = ( -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"eOk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/south/engineering) -"eOx" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/sigma/south) -"eOy" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"eOD" = ( -/obj/structure/pipes/trinary/mixer{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/airlock/control) -"eOH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/centrifuge, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/biodome/virology) -"eOR" = ( -/obj/structure/fence, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/checkpoint) -"eOZ" = ( -/obj/structure/flora/bush/ausbushes/var3/leafybush, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"ePf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat/blue/southwest, -/area/corsat/sigma/southeast/datalab) -"ePs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"ePw" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"ePF" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"eQa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"eQb" = ( -/turf/open/floor/corsat/blue, -/area/corsat/gamma/airlock/control) -"eQd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/residential) -"eQf" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/gamma/residential/west) -"eQg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Hydroponics Lab"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"eQz" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/corsat/omega/hangar) -"eQB" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"eQK" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Warden's Office"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"eQY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"eRj" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"eRv" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Hangar Security"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"eRF" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/engineering) -"eRO" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/hangar/security) -"eSz" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/id) -"eSE" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"eSJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"eTe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/donut_box, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"eTj" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"eTk" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/green/west, -/area/corsat/gamma/hallwaysouth) -"eTD" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"eTG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/beakers, -/obj/item/storage/box/beakers, -/obj/item/tool/hand_labeler, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/chemistry) -"eTO" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"eUg" = ( -/turf/open/floor/corsat/brown/southeast, -/area/corsat/omega/cargo) -"eUz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/greenwhitecorner/west, -/area/corsat/gamma/medbay) -"eUI" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"eVj" = ( -/obj/structure/surface/table/almayer, -/obj/item/stock_parts/matter_bin/super, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"eVl" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/security) -"eVm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"eVn" = ( -/turf/open/floor/corsat/purplecorner/west, -/area/corsat/omega/hallways) -"eVE" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"eVM" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"eVS" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/omega/control) -"eVT" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"eVW" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/plating/warnplate, -/area/corsat/gamma/hangar) -"eVY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"eWm" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/carpet14_10/west, -/area/corsat/gamma/administration) -"eWB" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/corsat/greenwhitecorner/west, -/area/corsat/gamma/medbay) -"eWL" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") - }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/airlock/south) -"eWQ" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"eWS" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail) -"eXa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"eXw" = ( -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"eXA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/phoron/small_stack, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/complex) -"eXC" = ( -/obj/structure/machinery/disease2/diseaseanalyser, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/virology) -"eXH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth/id) -"eXY" = ( -/obj/structure/surface/rack, -/obj/structure/prop/mech/hydralic_clamp, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/south/robotics) -"eYg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"eYi" = ( -/obj/structure/surface/table, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"eYm" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential/researcher) -"eYs" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Mech Assembly"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"eYK" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/yellow/north, -/area/corsat/omega/maint) -"eYL" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/gamma/administration) -"eYM" = ( -/obj/structure/powerloader_wreckage, -/turf/open/mars_cave/mars_cave_22, -/area/corsat/sigma/biodome/scrapyard) -"eYO" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"eYY" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/carpet13_5/west, -/area/corsat/gamma/administration) -"eZs" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/corsat/theta/airlock/west/id) -"eZw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/green/east, -/area/corsat/gamma/medbay/morgue) -"eZB" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/residential/maint) -"eZH" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"eZL" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/complex) -"eZQ" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"eZR" = ( -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"eZS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/airlocknorth/id) -"fak" = ( -/turf/open/floor/plating/warnplate, -/area/corsat/gamma/hangar) -"fal" = ( -/obj/structure/surface/table/almayer, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"fat" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/id) -"faU" = ( -/obj/structure/closet/wardrobe/white, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/black, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/control) -"faY" = ( -/turf/open/floor/corsat/purple, -/area/corsat/omega/hallways) -"fbd" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"fbi" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"fbo" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/foyer) -"fbq" = ( -/obj/item/implant/death_alarm, -/obj/item/implant/death_alarm, -/obj/item/implant/tracking, -/obj/item/implant/tracking, -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"fbA" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/plating/warnplate/east, -/area/corsat/sigma/hangar) -"fcb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/machinery/door/window/southright, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"fcv" = ( -/obj/structure/machinery/door/window/brigdoor/southleft{ - id = "CORSAT Sec 2"; - name = "Cell 2" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security/cells) -"fcL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"fdb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"fdc" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/corsat, -/area/corsat/gamma/residential/researcher) -"fde" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"fdh" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/biodome/complex) -"fdj" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/security) -"fdx" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"fdO" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"fei" = ( -/obj/item/tool/minihoe, -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"fek" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth/id) -"fes" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast) -"fex" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 1 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/omega/control) -"feC" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"feH" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"feI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"feT" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "SigmaSouthN"; - name = "Sigma South Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/south) -"ffm" = ( -/obj/structure/surface/table/reinforced, -/obj/item/ashtray/plastic, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"ffv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red, -/area/corsat/gamma/airlock/south/id) -"ffx" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/gamma/hallwaysouth) -"ffF" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"ffS" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "OmegaCSC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/control) -"ffT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/hemostat{ - name = "Acid Resistant Hemostat"; - unacidable = 1 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"ffV" = ( -/turf/open/floor/corsat/purplecorner/west, -/area/corsat/gamma/biodome/complex) -"ffX" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"fgf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"fgm" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"fgC" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/toxins) -"fhp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"fhs" = ( -/obj/item/paper/crumpled, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"fhu" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "OmegaCargo"; - name = "Omega Cargo Bay"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/omega/cargo) -"fhy" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hallways) -"fhL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/office) -"fhP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/east/id) -"fhW" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/control) -"fip" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"fir" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/engineering) -"fis" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/purple/west, -/area/corsat/sigma/south) -"fiv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"fiy" = ( -/turf/open/floor/plating/warnplate/east, -/area/corsat/sigma/hangar) -"fiC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"fiF" = ( -/obj/structure/closet/secure_closet/security_empty{ - name = "Warden's Locker" - }, -/obj/item/clothing/head/beret/sec/warden, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/office) -"fiI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"fiZ" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"fjs" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"fjQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHCargoN"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/id) -"fjT" = ( -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/administration) -"fki" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/checkpoint) -"fkx" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"fkJ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/southeast/datalab) -"fld" = ( -/obj/structure/cargo_container/hd/right/alt, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"flo" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/gamma/foyer) -"fly" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"flB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"flM" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/cargo) -"flO" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Administration"; - req_access_txt = "106" - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"flS" = ( -/obj/item/weapon/gun/flamer, -/obj/item/explosive/grenade/incendiary, -/obj/structure/closet/secure_closet/guncabinet{ - name = "specimen control cabinet"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/control) -"flU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/id) -"flY" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/hangar/monorail/control) -"fma" = ( -/turf/open/floor/corsat/green, -/area/corsat/gamma/medbay/morgue) -"fmq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"fmu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) -"fmy" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"fmX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/obj/item/clothing/glasses/meson, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"fnn" = ( -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/virology) -"fnq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/complex) -"fnM" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/dataoffice) -"fnO" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Sigma RnD"; - req_one_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"fnP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"fnR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"fol" = ( -/obj/structure/computerframe, -/obj/effect/decal/cleanable/cobweb{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"foz" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"foL" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/arrivals) -"foO" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"foQ" = ( -/obj/structure/tunnel{ - id = "hole2" - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"foU" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "delta_omega"; - name = "Checkpoint Omega"; - pixel_x = -5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "delta_theta"; - name = "Theta Emergency Access"; - pixel_x = 5; - use_power = 0 - }, -/turf/open/floor/corsat/red, -/area/corsat/omega/checkpoint) -"foY" = ( -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/sigma/south) -"fpm" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"fpr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/south/security) -"fpy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"fpE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"fpI" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"fqc" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"fql" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"fqm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/southeast/generator) -"fqp" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"fqt" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/corsat/theta/biodome/complex) -"fqx" = ( -/turf/open/floor/almayer/research/containment/floor2/north, -/area/corsat/inaccessible) -"fqA" = ( -/obj/structure/machinery/computer/general_air_control, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"fqL" = ( -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/sigma/hangar/arrivals) -"fqY" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"frs" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/engineering_guide, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"frE" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/east/id) -"frQ" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/airlock/east/id) -"fsx" = ( -/turf/open/auto_turf/snow/layer4, -/area/corsat/gamma/biodome) -"fsC" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/gamma/hangar/flightcontrol) -"fsL" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"fsN" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "4" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"ftf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/landing/console) -"fts" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Omega Dome Control" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/blue, -/area/corsat/omega/control) -"ftw" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"ftI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SigmaHangarC-E"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar/security) -"ftK" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"ftO" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/hangar/security) -"fue" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/closed/gm/dense, -/area/corsat/theta/biodome) -"fuj" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"fur" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"fut" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"fux" = ( -/obj/structure/machinery/m56d_hmg{ - dir = 1 - }, -/obj/structure/machinery/door/window/northright{ - name = "Firing Lane" - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/asteroidwarning, -/area/corsat/sigma/biodome/gunrange) -"fuB" = ( -/turf/open/mars_cave/mars_cave_20, -/area/corsat/sigma/biodome/scrapyard) -"fuM" = ( -/turf/open/mars_cave/mars_cave_13, -/area/corsat/sigma/biodome/gunrange) -"fuS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"fuX" = ( -/turf/open/floor/corsat/brown, -/area/corsat/gamma/foyer) -"fvg" = ( -/obj/structure/pipes/trinary/mixer{ - dir = 4; - name = "Gas mixer N2/O2" - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"fvk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/hangar/monorail) -"fvn" = ( -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"fvG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"fvH" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/warnplate, -/area/corsat/gamma/hangar) -"fvJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/sigma/south/complex) -"fvO" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/white/northeast, -/area/corsat/gamma/residential/east) -"fvS" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/hallways) -"fwb" = ( -/obj/structure/prop/mech/parts/durand_head, -/turf/open/floor/corsat/arrow_north, -/area/corsat/sigma/south/robotics) -"fwg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/dataoffice) -"fwi" = ( -/obj/structure/closet/crate, -/obj/item/robot_parts/robot_component/actuator, -/obj/item/robot_parts/robot_component/armour, -/obj/item/robot_parts/robot_component/camera, -/obj/item/robot_parts/robot_component/diagnosis_unit, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"fwo" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar/security) -"fwq" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"fws" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaIDSC"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/airlock/south/id) -"fwt" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/hallwaysouth) -"fwF" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "20" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"fwJ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/sigma/dorms) -"fwK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydrowest) -"fwR" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/dorms) -"fwU" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/hangar/security) -"fwX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/south/id) -"fwY" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"fxf" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/residential/east) -"fxk" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Waste Tank Control" - }, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering/atmos) -"fxl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"fxo" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"fxs" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"fxv" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"fxQ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar/security) -"fxV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"fyc" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "Omega Dome Control"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/control) -"fyd" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/plating/warnplate/west, -/area/corsat/sigma/hangar) -"fyF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/hallwaysouth) -"fyQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"fyY" = ( -/obj/structure/surface/table/reinforced, -/obj/item/xeno_restraints, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth/id) -"fyZ" = ( -/turf/open/floor/corsat/purple/east, -/area/corsat/omega/airlocknorth) -"fzd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"fzn" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"fzr" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/control) -"fzt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast) -"fzB" = ( -/obj/structure/surface/table, -/obj/item/book, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"fzF" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/bar) -"fzT" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"fAi" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"fAm" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/control) -"fAo" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"fAD" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/hangar/checkpoint) -"fBm" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"fBA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetancorner, -/area/corsat/gamma/residential/researcher) -"fBB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/south/robotics) -"fBS" = ( -/obj/structure/surface/table/almayer, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"fBY" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south) -"fCe" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"fCs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/control) -"fCv" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/hangar/monorail/control) -"fCD" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"fCI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/meson, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"fCK" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"fCW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) -"fDd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/communications, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/administration) -"fDs" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/turf/open/shuttle/escapepod/floor2, -/area/corsat/theta/biodome/complex) -"fDF" = ( -/turf/open/floor/corsat/red, -/area/corsat/sigma/checkpoint) -"fDH" = ( -/turf/open/floor/corsat/brown/east, -/area/corsat/sigma/north) -"fEb" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/south/engineering) -"fEv" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/engineering/lobby) -"fEy" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/plating/warnplate/east, -/area/corsat/sigma/hangar) -"fEA" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/rnr) -"fEY" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/checkpoint) -"fFa" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"fFc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"fFg" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/theta/airlock/control) -"fFt" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/north/id) -"fFP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"fFR" = ( -/turf/open/floor/corsat/purplecorner/east, -/area/corsat/gamma/biodome/complex) -"fGu" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/gamma/canteen) -"fGF" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/bedsheet, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"fGH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/southeast/dataoffice) -"fGN" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaHangarC-N"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"fGR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/gamma/airlock/control) -"fGW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"fHf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Sigma Dome Control" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"fHv" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/pistol/mod88, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"fHB" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"fHE" = ( -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/gamma/residential) -"fHN" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/security) -"fHO" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat, -/area/corsat/sigma/hangar) -"fId" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat/brown, -/area/corsat/omega/cargo) -"fIz" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/sigma/southeast/dataoffice) -"fID" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Holding Cell 1"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"fIE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/hangar/id) -"fIV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/corsat/sigma/south/complex) -"fJc" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"fJe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar) -"fJl" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/theta/airlock/east) -"fJm" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat, -/area/corsat/gamma/cargo/disposal) -"fJs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"fJt" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"fJM" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"fJP" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/omega/hallways) -"fJS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"fKa" = ( -/obj/item/tool/wet_sign, -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/residential/maint) -"fKi" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "SigmaCargo"; - name = "Sigma Cargo Bay"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/cargo) -"fKk" = ( -/obj/structure/surface/rack, -/obj/item/storage/briefcase, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/hangar/security) -"fKn" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Gamma Dome Control"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"fKr" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"fKw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"fKY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"fLg" = ( -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/sigma/hangar/office) -"fLl" = ( -/turf/open/floor/corsat/white/west, -/area/corsat/sigma/dorms) -"fLA" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/checkpoint) -"fLJ" = ( -/obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/hydrowest) -"fLO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/purplecorner/north, -/area/corsat/gamma/residential) -"fLS" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/medical_supply_link, -/turf/open/floor/corsat/greenwhite/northeast, -/area/corsat/gamma/medbay) -"fLT" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"fLX" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/tramadol, -/obj/item/storage/pill_bottle/bicaridine{ - pixel_x = 5 - }, -/obj/item/storage/pill_bottle/kelotane{ - pixel_x = -7 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay/chemistry) -"fMl" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/south/security) -"fMx" = ( -/turf/open/floor/corsat/browncorner/east, -/area/corsat/omega/cargo) -"fMC" = ( -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/hallwaysouth) -"fMM" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"fMP" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"fMR" = ( -/turf/open/floor/plating/warnplate/northeast, -/area/corsat/gamma/hangar) -"fMZ" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/flightcontrol) -"fNe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/sigma/dorms) -"fNp" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/hangar/arrivals) -"fNK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"fNL" = ( -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydroeast) -"fNU" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/airlocknorth) -"fOa" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"fOd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"fOj" = ( -/obj/item/folder/blue, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet7_3/west, -/area/corsat/gamma/administration) -"fOm" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"fOr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/southeast/dataoffice) -"fOA" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/bot/cleanbot, -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydrowest) -"fOG" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"fOX" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar) -"fPe" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/virology) -"fPl" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"fPm" = ( -/turf/open/floor/corsat/arrow_east, -/area/corsat/omega/cargo) -"fPY" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/carpet13_5/west, -/area/corsat/gamma/administration) -"fQb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"fQe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/administration) -"fQf" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/hangar/office) -"fQo" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/engineering) -"fQt" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "East Hydroponics Wing"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"fQA" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - name = "Cargo Bay"; - req_one_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"fQE" = ( -/obj/structure/stairs, -/turf/open/floor/corsat/white/north, -/area/corsat/sigma/dorms) -"fRd" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "23" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"fRi" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/virology) -"fRp" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"fRq" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "SigmaSouthS"; - name = "Sigma South Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/south) -"fRC" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south) -"fSg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "Dehydration Chamber"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"fSo" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"fSu" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/checkpoint) -"fSA" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"fSG" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/hangar) -"fSN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"fSX" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/plating, -/area/prison/hangar_storage/research/shuttle) -"fTd" = ( -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/dataoffice) -"fTe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"fTh" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/security) -"fTn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"fTr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/sigmaremote) -"fTF" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential/showers) -"fTO" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/hangar/checkpoint) -"fUu" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/hangar/checkpoint) -"fUI" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/foyer) -"fUL" = ( -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay) -"fUM" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "OmegaAccessC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"fUO" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Morgue"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/morgue) -"fUZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"fVa" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/id) -"fVe" = ( -/turf/open/floor/corsat/greenwhitecorner/north, -/area/corsat/gamma/medbay) -"fVk" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/hangar/security) -"fVl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"fVv" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar/checkpoint) -"fVQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/hangar/monorail) -"fVS" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("theta") - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/theta/airlock/east) -"fVU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"fWc" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Administration"; - req_access_txt = "106" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"fWh" = ( -/obj/item/phone, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/biodome/complex) -"fWx" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"fWM" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"fWO" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/corsat/arrow_east, -/area/corsat/gamma/cargo) -"fWV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/whitecorner/west, -/area/corsat/gamma/residential/east) -"fXb" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/platform{ - dir = 4; - layer = 2.8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"fXh" = ( -/obj/structure/machinery/light, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/cargo) -"fXm" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"fXp" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"fXz" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/south/engineering) -"fXM" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/control) -"fXQ" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo/disposal) -"fXR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"fXZ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"fYe" = ( -/obj/item/tool/weldingtool/experimental, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"fYl" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/south/offices) -"fYn" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"fYv" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/blue/southeast, -/area/corsat/sigma/southeast/datalab) -"fYy" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"fYI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"fYJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"fYL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"fYN" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"fYQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/gamma/residential/west) -"fYS" = ( -/obj/structure/machinery/door/airlock/dropship_hatch/monorail{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"fYW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/omega, -/area/corsat/omega/airlocknorth) -"fZg" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"fZt" = ( -/obj/structure/surface/table, -/obj/item/paper, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"fZx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"fZB" = ( -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/hangar/monorail) -"fZL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"gaj" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) -"gat" = ( -/obj/structure/machinery/door_control{ - id = "SigmaCargo"; - name = "Cargo Door"; - pixel_x = -24; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"gaC" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/foyer) -"gba" = ( -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/sigma/airlock/control) -"gbg" = ( -/obj/structure/closet/l3closet/general, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"gbk" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/airlock/control) -"gbq" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/arrivals) -"gbD" = ( -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/gamma/airlock/north) -"gbR" = ( -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/biodome/complex) -"gcc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaCheckpointC"; - name = "Security Shutters"; - pixel_x = 7; - use_power = 0 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"gci" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tech_supply, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"gcv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/omega/offices) -"gcJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/goat, -/turf/open/floor/almayer/plating/northeast, -/area/corsat/gamma/sigmaremote) -"gcK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"gcN" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/virology) -"gdg" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/theta/biodome/complex) -"gdi" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/east, -/area/corsat/sigma/hangar) -"gdE" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/rnr) -"gdK" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"gdP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"gdV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"gea" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"gek" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/sigma/south/complex) -"ges" = ( -/obj/item/storage/box/masks, -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"geu" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/corsat/white/north, -/area/corsat/sigma/south) -"geB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"geN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/corsat/theta/biodome) -"gfg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/white, -/area/corsat/gamma/residential) -"gfo" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/hangar/arrivals) -"gfp" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Computer Room"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"gfF" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/residential) -"gfL" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("theta") - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"gfO" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"gfQ" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/security) -"ggd" = ( -/turf/open/floor/corsat/tcomms/southwest, -/area/corsat/sigma/south/complex) -"gge" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"ggs" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"ggJ" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"ggK" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/dataoffice) -"ggV" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"ghf" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering/atmos) -"ghh" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"ghl" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"ghr" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaAccessC"; - name = "Security Shutters"; - pixel_y = 5; - use_power = 0 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"ghQ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"ghU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/rnr) -"ghX" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/checkpoint) -"gic" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/engineering) -"gir" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering) -"giv" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/omega/complex) -"gix" = ( -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/residential/east) -"giJ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/checkpoint) -"giL" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential) -"gjc" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "17" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"gjk" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/hangar/office) -"gjr" = ( -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/gamma/rnr) -"gjt" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/plating, -/area/prison/hangar_storage/research/shuttle) -"gjv" = ( -/turf/open/floor/corsat/plate, -/area/corsat/omega/cargo) -"gjG" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/carpet14_10/west, -/area/corsat/gamma/biodome/complex) -"gjJ" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"gjV" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/east) -"gjX" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/checkpoint) -"gkg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"gkx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"gky" = ( -/turf/open/floor/carpet5_1/west, -/area/corsat/gamma/administration) -"gkI" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/brown/northeast, -/area/corsat/sigma/cargo) -"gkR" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"gkT" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Airlock Control"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/west) -"gkU" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "GammaSouthAirlockC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/south/id) -"gkX" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/carpet13_5/west, -/area/corsat/gamma/administration) -"gla" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/dataoffice) -"glb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/researcher) -"glf" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/gamma/residential) -"glr" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"glu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"glI" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/raisins, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"glS" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential) -"gme" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/engineering) -"gmk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"gmq" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/security) -"gmu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"gmy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/researcher) -"gmE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"gmI" = ( -/obj/item/trash/chips, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"gmO" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/turf/open/shuttle/escapepod/floor12, -/area/corsat/theta/biodome/complex) -"gmW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"gnf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"gnp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"gnr" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/id) -"gns" = ( -/turf/open/mars_cave/mars_cave_9, -/area/corsat/sigma/biodome/gunrange) -"gnu" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/hangar/office) -"gnR" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"gnX" = ( -/turf/open/floor/corsat/blue/northwest, -/area/corsat/gamma/hangar) -"goi" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"got" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/airlock/control) -"goA" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"goY" = ( -/turf/open/floor/carpet6_2/west, -/area/corsat/omega/offices) -"gpc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"gpj" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/asteroidwarning/north, -/area/corsat/sigma/biodome) -"gpt" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"gpL" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"gpN" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"gpO" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"gpP" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"gpQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"gpU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/corsat/gamma/foyer) -"gqh" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"gqk" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/southeast/datalab) -"gqp" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"gqs" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/blue/southwest, -/area/corsat/theta/airlock/control) -"gqu" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/omega/offices) -"gqG" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/hangar/office) -"gqJ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"gqL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/west/id) -"gqO" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/cable_coil, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/sigmaremote) -"gqT" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/vents/pump, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"gqV" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"gre" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/river, -/area/corsat/theta/biodome) -"grm" = ( -/turf/open/floor/plating/warnplate/southeast, -/area/corsat/gamma/hangar) -"grD" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"grF" = ( -/obj/structure/surface/table, -/obj/item/book, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"grH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/hallways) -"gsd" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"gsi" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"gsK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security/cells) -"gsV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"gsW" = ( -/obj/structure/machinery/computer/telecomms/traffic{ - req_one_access_txt = "19;106;102" - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"gtc" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"gtj" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"gto" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"gtC" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/south/security) -"gtW" = ( -/mob/living/simple_animal/hostile/carp{ - color = "orange"; - faction = "neutral"; - harm_intent_damage = 0; - melee_damage_lower = 0; - melee_damage_upper = 0 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"gtX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"gua" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/airlock/north) -"gue" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) -"gui" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"guk" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"guv" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/westleft{ - name = "Medical Desk" - }, -/obj/structure/machinery/door/window/eastright{ - name = "Medical Desk" - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/lobby) -"guI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"guJ" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - autoclose = 0; - density = 0; - icon_state = "door_open"; - id = "CORSAT Containment 4"; - name = "Containment Cell 3"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/inaccessible) -"guO" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/cargo) -"guU" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/engineering) -"guY" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"guZ" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential) -"gvo" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/theta/biodome/complex) -"gvs" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/wood, -/area/corsat/theta/biodome/complex) -"gvy" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/complex) -"gvD" = ( -/turf/open/floor/plating/warnplate/northwest, -/area/corsat/omega/hangar) -"gvO" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/hallwaysouth) -"gvQ" = ( -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/biodome/virology) -"gwk" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/security) -"gwm" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/purplecorner/east, -/area/corsat/theta/biodome/complex) -"gwR" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"gwS" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"gwY" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"gxe" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/wirecutters, -/obj/item/tool/screwdriver, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/residential/maint) -"gxf" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Nitrogen Control Console" - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/airlock/control) -"gxB" = ( -/turf/open/mars_cave/mars_cave_11, -/area/corsat/sigma/biodome) -"gxS" = ( -/turf/open/floor/corsat/purplecorner/east, -/area/corsat/sigma/south) -"gyB" = ( -/obj/structure/platform{ - density = 0; - dir = 1; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"gyC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"gyE" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security/cells) -"gzf" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat, -/area/corsat/sigma/cargo) -"gzT" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"gAC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("omega") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/checkpoint) -"gBd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"gBh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"gBm" = ( -/obj/structure/surface/table/almayer, -/obj/item/restraint/handcuffs, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/checkpoint) -"gBs" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"gBx" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"gBy" = ( -/obj/structure/bed/sofa, -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/hangar/arrivals) -"gBA" = ( -/obj/structure/machinery/door_control{ - id = "Toxins"; - name = "Toxins Lockdown"; - pixel_y = -5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "Viro"; - name = "Virology Lockdown"; - pixel_y = 8; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "GammaLab"; - name = "Privacy Shutters"; - pixel_y = 1; - use_power = 0 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet9_4/west, -/area/corsat/gamma/biodome/complex) -"gBR" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"gBS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"gBW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"gBX" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/engineering) -"gCb" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "13" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"gCx" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/north/id) -"gCB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"gCG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/checkpoint) -"gCK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"gCS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/omega/security) -"gCY" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"gCZ" = ( -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/sigma/hangar) -"gDg" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Engineering"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"gDi" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - name = "Cargo Bay"; - req_one_access_txt = "100" - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"gDx" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"gDy" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/gamma/residential/west) -"gDA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"gDI" = ( -/obj/structure/closet/crate/internals, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"gDO" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"gDS" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/control) -"gDT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/sigma/dorms) -"gDZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"gEd" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"gEq" = ( -/obj/structure/surface/table/reinforced, -/obj/item/implantcase, -/obj/item/implantcase, -/obj/item/implantcase, -/obj/item/implantpad, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"gEv" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"gEy" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"gEQ" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/residential/maint) -"gEU" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"gFg" = ( -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/sigma/hangar/office) -"gFh" = ( -/obj/structure/flora/jungle/alienplant1, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"gFm" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/dorms) -"gFv" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/east/id) -"gFx" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/yellow, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"gFA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"gFF" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/sigma/south/complex) -"gFN" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/warnplate, -/area/corsat/sigma/hangar) -"gFO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/id) -"gFP" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/south/offices) -"gFY" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/hangar/monorail/control) -"gGf" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/exosuit/peripherals/work_loader, -/obj/item/circuitboard/exosuit/peripherals/work_loader, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"gGk" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/south/robotics) -"gGn" = ( -/obj/structure/surface/table, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"gGD" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/hangar/security) -"gGL" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/residential/maint) -"gGP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"gHm" = ( -/obj/structure/surface/table, -/obj/item/folder, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"gHs" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"gHA" = ( -/turf/open/floor/corsat/whitecorner, -/area/corsat/gamma/residential/east) -"gHL" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 12; - pixel_y = 2 - }, -/obj/item/tool/surgery/bonegel, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/surgery) -"gHN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/south) -"gHT" = ( -/turf/open/floor/corsat/brown/northeast, -/area/corsat/gamma/cargo) -"gHU" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"gIf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/gamma/residential/west) -"gIi" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/white, -/area/corsat/gamma/residential/researcher) -"gIF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay/lobby) -"gIG" = ( -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, -/area/prison/hangar_storage/research/shuttle) -"gIW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan/southeast, -/area/corsat/sigma/dorms) -"gIZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"gJa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/cargo) -"gJj" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"gJz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"gJP" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/datalab) -"gJR" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"gJT" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/engineering) -"gJX" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/biodome, -/area/corsat/theta/airlock/west/id) -"gKc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"gKy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/sigma/hangar/office) -"gKL" = ( -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar) -"gKM" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"gKO" = ( -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/corsat/inaccessible) -"gKW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Arcade" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"gLn" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/omega/containment) -"gLo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/residential/researcher) -"gLs" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/inaccessible) -"gLM" = ( -/obj/structure/fence, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"gLR" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Armory"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"gMd" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/north) -"gMt" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"gMS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"gNm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"gNq" = ( -/turf/open/floor/corsat/blue, -/area/corsat/sigma/southeast) -"gNr" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/omega/offices) -"gNs" = ( -/obj/structure/surface/rack, -/obj/item/storage/photo_album, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"gNA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"gNE" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/plating/warnplate/west, -/area/corsat/gamma/hangar) -"gNI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/sigma/airlock/south) -"gNQ" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/checkpoint) -"gNV" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/south) -"gOc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"gOd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"gOk" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"gOz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/west) -"gPg" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/south/engineering) -"gPB" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"gPO" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"gPS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/theta, -/area/corsat/sigma/south) -"gPW" = ( -/turf/open/floor/corsat/theta, -/area/corsat/gamma/hallwaysouth) -"gQb" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"gQh" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"gQj" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/corsat/gamma/airlock/south/id) -"gQz" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/security) -"gQD" = ( -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/engineering) -"gQT" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/hangar/security) -"gRh" = ( -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"gRl" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/corsat/greenwhite/northeast, -/area/corsat/gamma/medbay) -"gRq" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/checkpoint) -"gRU" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"gRX" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) -"gRZ" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/gamma/administration) -"gSl" = ( -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/cargo) -"gSt" = ( -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/hangar/office) -"gSC" = ( -/obj/structure/largecrate/random/barrel, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/corsat/gamma/cargo/disposal) -"gTg" = ( -/obj/structure/stairs{ - dir = 8 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/hallwaysouth) -"gTj" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/southeast/datalab) -"gTm" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 32 - }, -/turf/open/floor/asteroidwarning, -/area/corsat/sigma/biodome) -"gTD" = ( -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/biodome/toxins) -"gTJ" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/hangar) -"gTM" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"gTQ" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"gTR" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/theta/biodome/hydrowest) -"gTS" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"gTU" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Administration"; - req_access_txt = "106" - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"gTV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south/security) -"gTZ" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/canteen) -"gUg" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat/red, -/area/corsat/theta/airlock/east/id) -"gUo" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"gUr" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail) -"gUv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"gUz" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/hangar/security) -"gUC" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "riot cabinet"; - req_access_txt = "100" - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"gUI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/complex) -"gUJ" = ( -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/west/id) -"gUN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/researcher) -"gUU" = ( -/obj/structure/pipes/binary/pump/high_power/on{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"gVr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"gVu" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/airlock/control) -"gVx" = ( -/turf/open/floor/corsat/marked, -/area/corsat/omega/airlocknorth) -"gVz" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/omega/control) -"gVA" = ( -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"gVD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"gVK" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/surface/rack, -/obj/item/powerloader_clamp, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"gWc" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/carpet13_5/west, -/area/corsat/gamma/biodome/complex) -"gWe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydroeast) -"gWf" = ( -/turf/open/floor/corsat/greenwhitecorner/east, -/area/corsat/gamma/medbay) -"gWo" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/airlock/control) -"gWw" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/whitetancorner/east, -/area/corsat/gamma/residential/west) -"gWy" = ( -/obj/structure/machinery/computer/shuttle_control/monorail{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/monorail/control) -"gWG" = ( -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/control) -"gXq" = ( -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"gXD" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/crap_item, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/foyer) -"gXJ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Senior Engineer's Office"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"gXN" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"gXS" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/airlock/east) -"gXW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/omega/complex) -"gYh" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo) -"gYi" = ( -/turf/open/floor/corsat/brown, -/area/corsat/sigma/north) -"gYt" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/checkpoint) -"gYv" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/white, -/area/corsat/gamma/residential/researcher) -"gYy" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"gYX" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "CO2 Control" - }, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/theta/airlock/control) -"gZe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/omega, -/area/corsat/omega/hallways) -"gZk" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Monorail Control"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/monorail/control) -"gZm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"gZv" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/airlock/control) -"gZF" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"gZJ" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"gZR" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Airlock Control" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/airlock/north) -"gZZ" = ( -/obj/structure/pipes/unary/freezer, -/turf/open/shuttle/escapepod/floor0, -/area/corsat/theta/biodome/complex) -"haA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"hbp" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/hangar/arrivals) -"hbt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars/mars_dirt_9, -/area/corsat/sigma/biodome) -"hbx" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"hbN" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"hbP" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering/atmos) -"hcc" = ( -/turf/open/floor/corsat/whitetancorner, -/area/corsat/gamma/canteen) -"hce" = ( -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"hck" = ( -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/sigma/south/complex) -"hcm" = ( -/turf/open/shuttle/dropship/light_grey_bottom_left, -/area/prison/hangar_storage/research/shuttle) -"hcr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/sigma/dorms) -"hcv" = ( -/obj/structure/machinery/door/window/southleft{ - dir = 1; - layer = 2.8 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/item/tool/soap, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"hcy" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "ThetaWestE"; - name = "Theta West Airlock" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/west) -"hcG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"hcJ" = ( -/obj/structure/sign/safety/biohazard, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/biodome/virology) -"hcR" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/theta/airlock/east) -"hdv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"hdy" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/hangar/office) -"hdz" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"hdB" = ( -/obj/structure/flora/jungle/plantbot1, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"hdK" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"hdN" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/theta/airlock/control) -"hed" = ( -/obj/structure/sign/safety/storage, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/cargo) -"hes" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"hew" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/corsat/plate, -/area/corsat/omega/maint) -"heD" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/gamma/hangar/monorail) -"heG" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat/blue/north, -/area/corsat/omega/control) -"heL" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"hfh" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"hfA" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/purple, -/area/corsat/omega/hallways) -"hfW" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/hangar/office) -"hfX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/omega/offices) -"hfY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"hgi" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/checkpoint) -"hgt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/gamma/administration) -"hgE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/south) -"hgH" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security) -"hhc" = ( -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) -"hhk" = ( -/obj/structure/bookcase, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"hhn" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"hhp" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"hhF" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/hangar/monorail) -"hhK" = ( -/turf/open/floor/corsat/brown/southeast, -/area/corsat/gamma/cargo) -"hhQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"hhR" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar) -"hib" = ( -/turf/open/mars_cave/mars_cave_13, -/area/corsat/sigma/biodome/scrapyard) -"hio" = ( -/obj/structure/closet/crate/science, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/cargo, -/area/corsat/omega/cargo) -"hiw" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/theta/biodome/complex) -"hiz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_cave_18, -/area/corsat/sigma/biodome) -"hiR" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"hiW" = ( -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/gamma/residential/east) -"hjc" = ( -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar/id) -"hjr" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay/chemistry) -"hjv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"hjI" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"hjO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"hjQ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail) -"hjS" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHangarC-N"; - name = "Security Shutters" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/security) -"hkc" = ( -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/sigmaremote) -"hkf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/residential/researcher) -"hkk" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/theta/airlock/west/id) -"hkl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"hkn" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/theta/biodome/complex) -"hkp" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"hks" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = -32 - }, -/turf/open/floor/corsat/theta, -/area/corsat/theta/airlock/control) -"hkt" = ( -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"hkw" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"hkx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/sigmaremote) -"hkC" = ( -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"hkJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Auditorium" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"hkU" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"hkX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/brown/northeast, -/area/corsat/gamma/cargo) -"hla" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"hlm" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/theta/biodome/complex) -"hlr" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/control) -"hls" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/corsat, -/area/corsat/omega/complex) -"hlH" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"hlQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"hlS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/sigma/hangar) -"hlU" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/southeast/datalab) -"hmh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"hmm" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/hallways) -"hmC" = ( -/turf/open/floor/corsat/arrow_east, -/area/corsat/sigma/south/robotics) -"hmD" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/monorail) -"hmP" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar) -"hmR" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) -"hmS" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/north) -"hmT" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/whitetan, -/area/corsat/sigma/dorms) -"hnv" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/engineering) -"hnC" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/carpet5_1/west, -/area/corsat/gamma/residential/lounge) -"hnG" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/datalab) -"hnH" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"hnI" = ( -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydrowest) -"hnM" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"hnO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/south/offices) -"hnR" = ( -/obj/structure/flora/jungle/plantbot1, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"hom" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/blue/northeast, -/area/corsat/omega/control) -"hon" = ( -/turf/open/mars_cave/mars_cave_11, -/area/corsat/sigma/biodome/scrapyard) -"hop" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) -"hoE" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"hoF" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/browncorner, -/area/corsat/gamma/cargo) -"hoG" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/hangar/checkpoint) -"hpc" = ( -/turf/open/shuttle/dropship/light_grey_top, -/area/prison/hangar_storage/research/shuttle) -"hpr" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/south/robotics) -"hpx" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/clipboard, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/lobby) -"hpF" = ( -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/omega/control) -"hpS" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/theta/airlock/east) -"hpU" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) -"hpV" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/south) -"hpX" = ( -/turf/open/floor/corsat/arrow_east, -/area/corsat/gamma/engineering/core) -"hqj" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"hqp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/southeast/datalab) -"hqU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/corsat/theta/biodome) -"hqX" = ( -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"hrb" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/mp27, -/obj/item/weapon/gun/smg/mp27, -/obj/item/ammo_magazine/smg/mp27, -/obj/item/ammo_magazine/smg/mp27, -/obj/item/ammo_magazine/smg/mp27, -/obj/item/ammo_magazine/smg/mp27, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/south/security) -"hrg" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/hangar/monorail) -"hrr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/west) -"hrw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "GammaEastD"; - name = "Entrance Airlock Control"; - pixel_x = 5; - use_power = 0 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"hrK" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"hrL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"hrP" = ( -/obj/structure/surface/rack, -/obj/item/clothing/shoes/sandal, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"hrQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/corsat/gamma/sigmaremote) -"hrT" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Hypersleep Chamber"; - req_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"hrY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/biodome/complex) -"hsf" = ( -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/sigmaremote) -"hsi" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail/control) -"hsj" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/north) -"hsp" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/airlock/south) -"hsH" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/security) -"htm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"htA" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/sigma/hangar) -"htE" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/omega, -/area/corsat/omega/control) -"htF" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/theta/airlock/west) -"htO" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) -"huf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"hus" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/hangar) -"huu" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/ice, -/area/corsat/gamma/biodome) -"huw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"huA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"huF" = ( -/obj/structure/machinery/power/apc/upgraded/power/north, -/turf/open/floor/corsat/red/northwest, -/area/corsat/theta/airlock/west) -"huQ" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"huZ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("omega") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/airlocknorth/id) -"hvb" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"hvy" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"hvK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"hvO" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "24" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"hvS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"hvV" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"hvY" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/security) -"hvZ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"hwC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/jcloset, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail/control) -"hwK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"hwR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome) -"hxb" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("theta") - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/theta/airlock/control) -"hxd" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/gamma/residential/west) -"hxn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/airlock/south) -"hxw" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/residential) -"hxy" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"hxH" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/gamma/residential/researcher) -"hxQ" = ( -/obj/structure/machinery/shower, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"hxZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "GammaSouthID"; - name = "Security Shutters" - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south/id) -"hyd" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/sigma/south/offices) -"hyk" = ( -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"hym" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydroeast) -"hyn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/checkpoint) -"hyC" = ( -/obj/structure/stairs{ - dir = 8 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/sigma/south) -"hyK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/gamma/foyer) -"hyO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"hyU" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"hze" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/ice, -/area/corsat/gamma/biodome) -"hzm" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"hzn" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/omega/offices) -"hzC" = ( -/turf/open/floor/corsat/greenwhitecorner, -/area/corsat/gamma/medbay/morgue) -"hzH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"hAc" = ( -/obj/structure/surface/table/almayer, -/obj/item/stock_parts/matter_bin/super, -/obj/item/stock_parts/capacitor/super, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/engineering) -"hAo" = ( -/turf/open/mars_cave/mars_cave_19, -/area/corsat/sigma/biodome/gunrange) -"hAp" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"hAv" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 1 - }, -/turf/open/shuttle/escapepod/floor5, -/area/corsat/theta/biodome/complex) -"hAX" = ( -/obj/structure/closet/wardrobe/white, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/black, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/airlock/north/id) -"hBg" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/hallwaysouth) -"hBk" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/cargo) -"hBl" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/checkpoint) -"hBr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Control Room"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"hBs" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/hangar) -"hBu" = ( -/obj/structure/pipes/unary/freezer{ - icon_state = "freezer_1" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"hBv" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/retractor, -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat/greenwhitecorner/east, -/area/corsat/gamma/medbay/morgue) -"hBG" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/hallways) -"hBM" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"hBV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/toxins) -"hBX" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"hCk" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"hCl" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/hangar/monorail/control) -"hCw" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/shuttle_control/monorail{ - dir = 4 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/monorail/control) -"hCy" = ( -/obj/structure/machinery/microwave, -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"hCL" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay) -"hCM" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"hCW" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"hCY" = ( -/obj/structure/safe, -/obj/item/stack/sheet/mineral/diamond{ - amount = 5 - }, -/obj/item/stack/sheet/mineral/uranium{ - amount = 5 - }, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"hDa" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"hDq" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/north) -"hDB" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "ThetaIDEC"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/theta/airlock/east/id) -"hDF" = ( -/turf/open/floor/corsat, -/area/corsat/gamma/cargo/disposal) -"hDH" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/residential) -"hDO" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, -/area/corsat/theta/biodome) -"hEb" = ( -/obj/structure/closet/cabinet, -/obj/item/device/camera, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"hEc" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/datalab) -"hEe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_cave_15, -/area/corsat/sigma/biodome) -"hEf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast) -"hEj" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"hEz" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/cargo) -"hEB" = ( -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/gamma/residential) -"hEL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"hEQ" = ( -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/omega/offices) -"hES" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"hEZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"hFh" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "OmegaSecC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/omega/security) -"hFl" = ( -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"hFm" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"hFz" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetancorner, -/area/corsat/sigma/dorms) -"hFJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/southeast/datamaint) -"hFN" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/south/offices) -"hFU" = ( -/obj/structure/closet/secure_closet/security_empty{ - icon_broken = "hossecurebroken"; - icon_closed = "hossecure"; - icon_locked = "hossecure1"; - icon_off = "hossecureoff"; - icon_opened = "hossecureopen"; - icon_state = "hossecure1"; - name = "Head of Security's Locker" - }, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/device/binoculars, -/obj/item/device/flashlight, -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/security) -"hGc" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay) -"hGf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/corsat/theta/biodome) -"hGi" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/south/security) -"hGt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/paper, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"hGu" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"hGy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"hGL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Administration"; - req_access_txt = "106" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaAdmin"; - name = "Security Shutters" - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"hHe" = ( -/obj/structure/sign/safety/biolab{ - pixel_y = -32 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/hydroeast) -"hHi" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/hangar/security) -"hHy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/ice, -/area/corsat/gamma/biodome) -"hHJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/syringes, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/biodome/complex) -"hHV" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"hIa" = ( -/obj/structure/bed, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"hIb" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"hIt" = ( -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"hIv" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/monorail) -"hIw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/south/robotics) -"hIO" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/corsat/white/northeast, -/area/corsat/sigma/south) -"hJl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"hJm" = ( -/obj/structure/surface/table/almayer, -/obj/item/light_bulb/tube/large, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering) -"hJo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"hJw" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"hJA" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/checkpoint) -"hJE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/checkpoint) -"hJM" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"hJW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/purple/northeast, -/area/corsat/gamma/biodome/complex) -"hKa" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/canteen) -"hKl" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/green/east, -/area/corsat/gamma/medbay/morgue) -"hKt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"hKu" = ( -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet6_2/west, -/area/corsat/gamma/administration) -"hKy" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/hangar/monorail) -"hKA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"hKF" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/south/robotics) -"hKH" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"hLg" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner, -/area/corsat/gamma/hallwaysouth) -"hLr" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"hLC" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/blue/northeast, -/area/corsat/sigma/airlock/control) -"hLD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/hangar/security) -"hLQ" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"hLV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/control) -"hMi" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/gamma/residential/west) -"hMG" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/item/tank/air, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"hMJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"hMM" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/checkpoint) -"hMO" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"hMZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"hNc" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Reactor Core"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"hNm" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydrowest) -"hNw" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/sigma/south/complex) -"hNI" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/tunnel{ - id = "hole3" - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"hNQ" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/sigma/hangar) -"hOb" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/airlock/south) -"hOe" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/bar) -"hOg" = ( -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/hallwaysouth) -"hOn" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) -"hOx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/morgue) -"hOG" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"hPa" = ( -/obj/item/storage/box/gloves, -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"hPj" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"hPp" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Construction Yard"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"hPz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"hPV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"hQk" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/southeast/datalab) -"hQn" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/airlocknorth/id) -"hQo" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/maint) -"hQB" = ( -/obj/structure/machinery/computer/telecomms/server{ - req_one_access_txt = "19;106;102" - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"hQN" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/southeast/generator) -"hRc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"hRx" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"hRD" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"hRG" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"hRW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"hSk" = ( -/obj/structure/prop/mech/parts/durand_torso, -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/south/robotics) -"hSp" = ( -/obj/structure/closet/wardrobe/virology_white, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/biodome/virology) -"hSx" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"hSy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - pixel_x = 5; - pixel_y = 2; - use_power = 0 - }, -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/sigma/hangar/office) -"hSS" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - autoclose = 0; - density = 0; - dir = 1; - icon_state = "door_open"; - name = "Containment Cell 5"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/inaccessible) -"hSW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydrowest) -"hSX" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"hTF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/chemistry) -"hTN" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/wirecutters, -/obj/item/stack/cable_coil, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/south/robotics) -"hUe" = ( -/obj/structure/machinery/computer3, -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/airlock/control) -"hUh" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"hUv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/administration) -"hUB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/east/id) -"hUH" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/theta, -/area/corsat/theta/airlock/control) -"hUI" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/airlock/control) -"hVd" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/shuttle/escapepod/floor5, -/area/corsat/theta/biodome/complex) -"hVe" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "ThetaEastE"; - name = "Airlock Control"; - pixel_x = 5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "ThetaEastW"; - name = "Airlock Control"; - pixel_x = -5; - use_power = 0 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/theta/airlock/east) -"hVr" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"hVB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"hVZ" = ( -/obj/structure/bed/chair, -/obj/item/bananapeel, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"hWj" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/gamma/hangar/flightcontrol) -"hWm" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/plating/warnplate/east, -/area/corsat/gamma/hangar) -"hWo" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/cargo, -/area/corsat/omega/cargo) -"hWr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/hangar/security) -"hWx" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"hWH" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"hXg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay/lobby) -"hXA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydroeast) -"hXD" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/security) -"hXO" = ( -/obj/structure/surface/table/almayer, -/obj/item/stock_parts/smes_coil, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"hYd" = ( -/turf/open/floor/corsat/browncorner, -/area/corsat/gamma/hallwaysouth) -"hYq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"hYt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"hYB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/security) -"hZc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/theta/airlock/control) -"hZg" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/hangar) -"hZm" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"hZr" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar) -"hZD" = ( -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/security) -"hZH" = ( -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"hZQ" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"hZY" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/researcher) -"iag" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"iam" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Secondary Generators"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"iaO" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/carpet13_5/west, -/area/corsat/gamma/residential/lounge) -"ibj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/sigma/dorms) -"ibz" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"ibK" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"icc" = ( -/obj/structure/machinery/door_control{ - id = "ThetaBioAtmos"; - name = "Access Shutters"; - pixel_x = 24 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"ich" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/warnplate/west, -/area/corsat/sigma/hangar) -"icj" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"icV" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/security) -"idc" = ( -/turf/open/floor/plating/warnplate/north, -/area/corsat/sigma/hangar) -"idi" = ( -/turf/open/floor/corsat/white, -/area/corsat/sigma/dorms) -"idx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"idA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"idB" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass{ - dir = 1 - }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/hangar/cargo) -"idG" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/airlock/south/id) -"idU" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"idV" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/south) -"idX" = ( -/turf/open/floor/corsat/browncorner, -/area/corsat/sigma/cargo) -"iem" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"ieq" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" - }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"iez" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/airlock/south/id) -"ieB" = ( -/obj/structure/machinery/light, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail) -"ieE" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"ieG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/residential/maint) -"ieP" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"ieQ" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo/disposal) -"ieR" = ( -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/monorail) -"ifc" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/researcher) -"ifi" = ( -/turf/open/floor/corsat/white/southwest, -/area/corsat/gamma/residential) -"ifr" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/omega/security) -"ift" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Containment Unit"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"ifu" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 - }, -/turf/open/floor/corsat/theta, -/area/corsat/sigma/south) -"ifv" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/white/northeast, -/area/corsat/gamma/residential) -"ifB" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"ifN" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/machine/clonescanner, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"ifR" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaO"; - name = "Dome Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/red, -/area/corsat/omega/control) -"ifV" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/south/robotics) -"ifX" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/airlock/south/id) -"ifZ" = ( -/turf/open/floor/corsat/purplecorner/west, -/area/corsat/sigma/south) -"ige" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHCargoC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/id) -"igh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/knife, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"igr" = ( -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/datalab) -"igA" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"igC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"igJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/residential) -"igR" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"igS" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/southeast/datalab) -"ihg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/gamma/airlock/south/id) -"ihh" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"ihk" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/sigma/south/complex) -"ihq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"ihC" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar) -"ihP" = ( -/turf/open/floor/almayer/plating_striped/north, -/area/corsat/gamma/sigmaremote) -"ihR" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"iic" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) -"iiq" = ( -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/item/tool/stamp/hos, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"iis" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/obj/structure/closet/jcloset, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/hangar/monorail/control) -"iiv" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"iiH" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/office) -"iiI" = ( -/obj/structure/flora/jungle/plantbot1, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/corsat/theta/biodome) -"iiK" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaE"; - name = "Airlock Control"; - pixel_x = 8; - pixel_y = 3; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "OmegaN"; - name = "Airlock Control"; - pixel_x = -2; - pixel_y = 8; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "OmegaS"; - name = "Airlock Control"; - pixel_x = -2; - use_power = 0 - }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/airlocknorth) -"ije" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/hallways) -"ijf" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/engineering) -"ijh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"ijA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"ijI" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"ijT" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"ikd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"iki" = ( -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/sigma/dorms) -"ikn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"iko" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Arrivals" - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/checkpoint) -"ikH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"ikL" = ( -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/theta/biodome/complex) -"ikQ" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"ikW" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/south/id) -"ili" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"ilD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"ilE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"ilN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"ilX" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"imc" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"imh" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/residential/maint) -"imm" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Teleporter Power Room"; - req_access_txt = "103"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"imo" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/theta/airlock/east) -"ims" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/ice, -/area/corsat/gamma/biodome) -"imu" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/security) -"imz" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"imR" = ( -/obj/effect/landmark/corpsespawner/wysec, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"inf" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo) -"inh" = ( -/obj/structure/surface/table, -/obj/item/device/megaphone, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"inj" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/gamma/hangar/monorail) -"inr" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"inB" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south) -"inM" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"inP" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering Storage"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"iow" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/residential) -"ioz" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydrowest) -"ioE" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"ioL" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"ioM" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"ipi" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "CORSAT Academy"; - req_one_access = null - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"ipk" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"ipB" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"ipJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential) -"ipL" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox/meat{ - pixel_y = 8 - }, -/turf/open/floor/corsat/brown/east, -/area/corsat/sigma/cargo) -"ipM" = ( -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"ipS" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/toxins) -"iqb" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/engineering/atmos) -"iqC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/hangar/office) -"iqG" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tank/air, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"iqN" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/south) -"ira" = ( -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/hallways) -"irf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo) -"iri" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/sigma/hangar/monorail) -"irl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Hypersleep Chamber"; - req_access_txt = "100" - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"irq" = ( -/turf/open/floor/corsat/brown/east, -/area/corsat/gamma/foyer) -"irt" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"irz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"irD" = ( -/turf/open/floor/corsat/white/north, -/area/corsat/sigma/south) -"irN" = ( -/obj/structure/lamarr, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"irR" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/monkeycubes, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/toxins) -"ism" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "13" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"isv" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"itk" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Monorail Control"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"itB" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Teleportation Lab"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"itJ" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - autoclose = 0; - density = 0; - icon_state = "door_open"; - id = "CORSAT Containment 2"; - name = "Containment Cell 4"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/inaccessible) -"itN" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"iuf" = ( -/turf/open/floor/corsat/bluecorner, -/area/corsat/gamma/residential) -"iug" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"iuj" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) -"iuo" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"ius" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"iuy" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"iuA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/omega/offices) -"iuI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"iuK" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/south/security) -"iuQ" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/airlock/south) -"ivd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/canteen) -"ivw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"ivA" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo/lobby) -"ivI" = ( -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay/lobby) -"ivP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"iwk" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"iwl" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"iwM" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/containment) -"ixe" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"ixl" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/southeast/datamaint) -"ixw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datamaint) -"ixz" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"ixE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"ixJ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"ixQ" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/airlock/control) -"ixU" = ( -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"ixW" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"ixY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/hangar/security) -"iya" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/morgue) -"iyi" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydroeast) -"iyH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"iyK" = ( -/obj/structure/closet/crate, -/obj/item/organ/brain/prosthetic, -/obj/item/organ/eyes/prosthetic, -/obj/item/organ/heart/prosthetic, -/obj/item/organ/kidneys/prosthetic, -/obj/item/organ/liver/prosthetic, -/obj/item/organ/lungs/prosthetic, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"iyV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/carpet13_5/west, -/area/corsat/gamma/biodome/complex) -"izp" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/morgue) -"izu" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Waste Tank Control" - }, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/airlock/control) -"izR" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/theta/airlock/west/id) -"iAc" = ( -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/hangar/office) -"iAk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"iAn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/southeast/datalab) -"iAu" = ( -/obj/structure/machinery/conveyor, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"iAz" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"iAA" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/incendiary, -/obj/item/explosive/grenade/incendiary, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"iAR" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"iAY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/complex) -"iBf" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/hangar/security) -"iBg" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"iBs" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"iBw" = ( -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/airlock/east/id) -"iBx" = ( -/obj/structure/closet/crate/science, -/obj/item/cell/hyper/empty, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/sigma/south/complex) -"iBI" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool, -/obj/item/tool/screwdriver, -/obj/item/tool/wrench, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/south/robotics) -"iBN" = ( -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/omega/complex) -"iBY" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"iCa" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - req_access_txt = "201" - }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/airlock/control) -"iCh" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/gamma/hangar/arrivals) -"iCi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/arrow_south, -/area/corsat/gamma/hangar) -"iCs" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"iCx" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/gamma/administration) -"iCy" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/gm/river/desert/shallow/pool, -/area/corsat/gamma/residential/showers) -"iCM" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"iDg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"iDs" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaIDSC2"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/south/id) -"iDv" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/control) -"iDF" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/gamma/hangar) -"iDN" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/east) -"iDO" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/airlock/control) -"iDT" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"iDY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"iEa" = ( -/obj/structure/surface/table, -/obj/item/book, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"iEk" = ( -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/airlock/north) -"iEl" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/red, -/area/corsat/sigma/south/security) -"iEo" = ( -/turf/open/floor/corsat/blue, -/area/corsat/sigma/southeast/datalab) -"iEx" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/carpet10_8/west, -/area/corsat/gamma/residential/lounge) -"iED" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Omega Dome Control" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"iEH" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"iET" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown/southeast, -/area/corsat/sigma/cargo) -"iFg" = ( -/obj/item/tool/wet_sign, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/southeast/datamaint) -"iFk" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"iFv" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"iFH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHangarC-S"; - name = "Security Shutters" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/security) -"iFQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar) -"iFS" = ( -/turf/open/floor/corsat/darkgreen/northwest, -/area/corsat/gamma/rnr/bar) -"iGk" = ( -/obj/structure/machinery/door_control{ - id = "OmegaAccessC2"; - name = "Security Shutters"; - pixel_x = -24; - use_power = 0 - }, -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" - }, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/checkpoint) -"iGq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"iGH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/residential) -"iGK" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"iGS" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/north) -"iHa" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/security) -"iHl" = ( -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"iHm" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"iHo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"iHs" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"iHv" = ( -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/gamma/administration) -"iHA" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar) -"iHI" = ( -/obj/structure/machinery/door_control{ - id = "Viro"; - name = "Lab Lockdown"; - pixel_x = 24; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/virology) -"iHX" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/security) -"iId" = ( -/obj/structure/machinery/computer3, -/turf/open/floor/corsat/blue/west, -/area/corsat/theta/airlock/control) -"iIm" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"iIq" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"iIE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security/armory) -"iIM" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"iIQ" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"iIY" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/core) -"iIZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/south) -"iJb" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaSouthN"; - name = "Airlock Control"; - pixel_x = -5; - pixel_y = 6; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "GammaSouthS"; - name = "Airlock Control"; - pixel_x = -5; - pixel_y = -3; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "GammaSouthAirlockC"; - name = "Security Shutters"; - pixel_x = 5; - pixel_y = 2; - use_power = 0 - }, -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/airlock/south) -"iJt" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"iJy" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"iJE" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering/lobby) -"iJH" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat/yellow/north, -/area/corsat/theta/airlock/control) -"iJJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"iJL" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/airlock/north) -"iJM" = ( -/turf/open/floor/corsat/brown/east, -/area/corsat/gamma/cargo) -"iJQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"iKc" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/brown/northwest, -/area/corsat/gamma/cargo) -"iKl" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Containment Cell"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"iKC" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"iKE" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/sigma/south/complex) -"iKF" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"iKQ" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/security) -"iKY" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/airlock/north) -"iLc" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"iLe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/omega/offices) -"iLm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/hangar/arrivals) -"iLn" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/hangar/monorail/control) -"iLr" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/taperecorder, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/security) -"iLB" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey, -/area/corsat/omega/offices) -"iLW" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/omega/offices) -"iMe" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential/researcher) -"iMr" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"iMy" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/administration) -"iMA" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south/security) -"iMR" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"iNd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/foyer) -"iNh" = ( -/obj/structure/window/reinforced, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"iNk" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"iNl" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/corsat, -/area/corsat/gamma/cargo/disposal) -"iNv" = ( -/obj/structure/safe{ - spawnkey = 0 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"iNN" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/corsat/omega/hallways) -"iNS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"iNU" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/engineering) -"iNV" = ( -/turf/open/floor/corsat/browncorner/north, -/area/corsat/gamma/cargo) -"iNX" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/gamma/hallwaysouth) -"iOa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"iOb" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - req_one_access_txt = "201;104" - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/security) -"iOk" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/gamma/hangar/flightcontrol) -"iOo" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/east, -/area/corsat/sigma/hangar) -"iOr" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/checkpoint) -"iOw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/gamma/residential/west) -"iOE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"iOK" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/checkpoint) -"iOM" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast) -"iOU" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "14" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"iPc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/sigmaremote) -"iPo" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/corsat, -/area/corsat/sigma/south/robotics) -"iPp" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Administration"; - req_access_txt = "106" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"iPC" = ( -/obj/structure/machinery/door_control{ - id = "GammaCargo"; - name = "Cargo Door"; - pixel_x = 24; - use_power = 0 - }, -/turf/open/floor/corsat/arrow_north, -/area/corsat/gamma/cargo) -"iPJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/ashtray/plastic{ - pixel_x = 4 - }, -/obj/item/phone{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/southeast/datalab) -"iPO" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "GammaNorthN"; - name = "Gamma North Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/north) -"iQh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"iQp" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"iQq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"iQr" = ( -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/residential/researcher) -"iQu" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/security) -"iQH" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"iRa" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"iRj" = ( -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/security) -"iRY" = ( -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/airlock/north) -"iSh" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/virology) -"iSq" = ( -/turf/open/mars_cave/mars_cave_23, -/area/corsat/sigma/biodome/scrapyard) -"iSw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/gamma/airlock/south) -"iSB" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/arrivals) -"iSJ" = ( -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/sigma/south/offices) -"iSK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"iSO" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering/lobby) -"iTh" = ( -/obj/structure/closet, -/turf/open/floor/corsat/greenwhite/northeast, -/area/corsat/gamma/medbay/morgue) -"iTk" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay) -"iTE" = ( -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/sigma/hangar/monorail) -"iTH" = ( -/obj/structure/machinery/recycler, -/turf/open/floor/corsat/brown/southeast, -/area/corsat/gamma/cargo/disposal) -"iTK" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"iTO" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"iTW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/corsat/theta/biodome) -"iTY" = ( -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/sigma/north) -"iUc" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"iUe" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"iUn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"iUs" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/glasses/meson, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"iUz" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/south/offices) -"iUE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"iUH" = ( -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"iUS" = ( -/turf/open/floor/carpet9_4/west, -/area/corsat/omega/offices) -"iUT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SigmaWestD"; - name = "Entrance Airlock Control"; - pixel_x = -5; - use_power = 0 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"iVd" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"iVf" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/gamma/hallwaysouth) -"iVh" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Toxins Lab"; - req_one_access_txt = "103" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Toxins"; - name = "Toxins Lockdown" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"iVk" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "RemoteGate"; - name = "Gate Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/sigmaremote) -"iVn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar) -"iVO" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/omega/offices) -"iVQ" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat/yellow/north, -/area/corsat/omega/maint) -"iVR" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "25" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"iWk" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/south) -"iWu" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/omega/maint) -"iWv" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"iWA" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper, -/obj/item/tool/pen, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"iWU" = ( -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo) -"iWY" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/bar) -"iXk" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/omega/hallways) -"iXq" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/southeast) -"iXw" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Airlock Control"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south) -"iXx" = ( -/obj/structure/closet/crate/trashcart, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/brown/west, -/area/corsat/gamma/cargo/disposal) -"iXD" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/plating/warnplate, -/area/corsat/sigma/hangar) -"iXJ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"iXK" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/south/id) -"iYn" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/airlock/east) -"iYu" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"iYA" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/southeast/generator) -"iYF" = ( -/obj/vehicle/train/cargo/trolley, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"iYI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"iYL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/blue, -/area/corsat/gamma/airlock/control) -"iZf" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"iZh" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"iZo" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/flashbang, -/obj/item/explosive/grenade/flashbang, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"iZs" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/theta/airlock/control) -"iZz" = ( -/obj/structure/closet/cabinet, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"iZP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr/bar) -"iZQ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Living Room"; - req_one_access = null - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"iZX" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/security) -"iZY" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"jay" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"jaB" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/sigma/dorms) -"jaD" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"jaQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"jba" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"jbh" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo) -"jbF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"jbK" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/machine/clonepod, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"jbN" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/checkpoint) -"jbQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat/plate, -/area/corsat/omega/control) -"jbX" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"jcc" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"jcH" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/security) -"jcQ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"jcT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"jcV" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"jdk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/snow/layer2, -/area/corsat/gamma/biodome) -"jds" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/obj/item/organ/brain, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"jdt" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/deck/uno, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"jdw" = ( -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/gamma/residential/researcher) -"jdx" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/north) -"jdD" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south/id) -"jdH" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/assembly/igniter, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"jdK" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"jdL" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/id) -"jdO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/corsat/gamma/sigmaremote) -"jdP" = ( -/obj/structure/surface/rack, -/obj/item/restraint/handcuffs, -/obj/item/restraint/handcuffs, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/checkpoint) -"jdX" = ( -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/theta/biodome/complex) -"jet" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/monorail/control) -"jeu" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"jeB" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"jeC" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/white/southeast, -/area/corsat/gamma/residential/east) -"jeQ" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/airlock/south) -"jff" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/brown/northeast, -/area/corsat/sigma/cargo) -"jfg" = ( -/turf/open/floor/corsat/arrow_west, -/area/corsat/sigma/south/robotics) -"jfl" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering/core) -"jfr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/yellow/north, -/area/corsat/theta/airlock/control) -"jfC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/corsat/sigma/cargo) -"jfJ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/autopsy_scanner, -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/hemostat, -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/complex) -"jfL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"jfO" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/white/northwest, -/area/corsat/gamma/residential/east) -"jfP" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/rnr) -"jfT" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/security) -"jgd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"jgm" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"jgp" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "ThetaNorthS"; - name = "Airlock Control"; - pixel_y = -2; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "ThetaNorthN"; - name = "Airlock Control"; - pixel_y = 5; - use_power = 0 - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/theta/airlock/control) -"jgt" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "10" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"jgE" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"jgV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"jgW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo/lobby) -"jhr" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/office) -"jhu" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"jhx" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"jhE" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome) -"jhG" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/containment) -"jhS" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"jhX" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/hangar/arrivals) -"jil" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/airlock/south/id) -"jiG" = ( -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo) -"jiR" = ( -/obj/item/storage/toolbox/mechanical, -/obj/structure/surface/rack, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security) -"jiU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar) -"jjc" = ( -/obj/structure/closet/wardrobe, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"jjj" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/sigma/dorms) -"jjn" = ( -/obj/structure/machinery/chem_dispenser{ - req_access_txt = "100" - }, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"jjo" = ( -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/sigma/hangar/monorail) -"jjF" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/corsat/red, -/area/corsat/omega/control) -"jjL" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"jjT" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_17, -/area/corsat/sigma/biodome/gunrange) -"jki" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/hangar/checkpoint) -"jkr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/gamma/administration) -"jks" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south) -"jku" = ( -/turf/open/floor/plating/warnplate/southeast, -/area/corsat/omega/hangar) -"jky" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/sigmaremote) -"jkz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"jkB" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "3" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"jkH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/toxins) -"jkI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"jkU" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/south/security) -"jlm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/south) -"jlA" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/omega/hallways) -"jlD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome) -"jlF" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/mmi/radio_enabled, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/sigma/south/robotics) -"jlL" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"jlU" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("theta") - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"jlW" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/sigma/hangar) -"jmm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential) -"jmo" = ( -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering/core) -"jmC" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"jmH" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/office) -"jmR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"jmU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"jna" = ( -/obj/structure/machinery/optable, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/surgery) -"jnf" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/freezer) -"jnk" = ( -/obj/structure/machinery/door_control{ - id = "GammaSecC"; - name = "Security Shutters"; - pixel_x = -24; - use_power = 0 - }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/security) -"jnq" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert{ - dir = 1 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/theta/airlock/west) -"jnu" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/airlocknorth) -"jny" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Gamma Dome Control"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"jnA" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"jnC" = ( -/obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) -"jnF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/south/offices) -"jnI" = ( -/obj/structure/xenoautopsy/tank, -/turf/open/floor/corsat, -/area/corsat/omega/complex) -"jow" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Arcade" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"joK" = ( -/turf/open/floor/corsat/purple, -/area/corsat/omega/complex) -"joL" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south/security) -"joP" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 1 - }, -/turf/open/shuttle/escapepod/floor1, -/area/corsat/theta/biodome/complex) -"joU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"joW" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/structure/stairs, -/turf/open/floor/corsat/white/northeast, -/area/corsat/gamma/residential/east) -"jpb" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"jpd" = ( -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"jpf" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/hangar/monorail) -"jpi" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/hallwaysouth) -"jpk" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"jpR" = ( -/turf/open/floor/corsat/blue, -/area/corsat/omega/hallways) -"jqi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"jqo" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/biodome, -/area/corsat/theta/airlock/west) -"jqq" = ( -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/theta/biodome/complex) -"jqz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"jqT" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hallways) -"jqY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/hangar/security) -"jrx" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/east/id) -"jrG" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/sigma/hangar/monorail) -"jsa" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "5" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"jsg" = ( -/turf/open/floor/almayer/research/containment/floor2/west, -/area/corsat/inaccessible) -"jsp" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"jsC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"jsN" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/virology) -"jsV" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("sigma") - }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/hangar/monorail/control) -"jts" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/pillbottles, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"jtt" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"jtK" = ( -/obj/structure/bed, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/security/cells) -"jtN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/optable, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"jtV" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"juc" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/gamma/administration) -"juf" = ( -/obj/structure/closet/cabinet, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"jui" = ( -/obj/structure/machinery/faxmachine{ - density = 0; - req_one_access_txt = "106" - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/administration) -"jun" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/gamma/airlock/north/id) -"jur" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"juD" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/lobby) -"juJ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/southeast/generator) -"juK" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/sigma/south) -"jvh" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"jvl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/corsat/sigma/south/complex) -"jvu" = ( -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"jvA" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"jvF" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"jvJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"jvU" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/toxins) -"jvZ" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan, -/area/corsat/sigma/dorms) -"jwe" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"jwh" = ( -/obj/structure/sign/safety/high_voltage, -/obj/structure/platform{ - dir = 8 - }, -/obj/item/stack/sheet/metal{ - pixel_x = 1 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"jwr" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/engineering) -"jws" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"jwA" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/head/helmet/augment, -/obj/item/tool/pen/paralysis, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"jwK" = ( -/turf/open/floor/almayer/research/containment/entrance/west, -/area/corsat/inaccessible) -"jwQ" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/engineering) -"jwU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/obj/item/xeno_restraints, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/control) -"jwW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydrowest) -"jwX" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/security) -"jxg" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/checkpoint) -"jxk" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/airlock/east/id) -"jxo" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"jxt" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/arrivals) -"jxH" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/residential/maint) -"jxJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 1; - name = "Administration Office" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "OmegaOffice"; - name = "Privacy Shutters" - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"jxR" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"jxT" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"jxU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/mech/armor_booster, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/robotics) -"jxX" = ( -/obj/structure/machinery/conveyor_switch, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"jyl" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/science, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"jyt" = ( -/obj/structure/machinery/computer/rdconsole, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"jyS" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"jze" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay) -"jzw" = ( -/obj/structure/computer3frame/server{ - icon_state = "4" - }, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/sigmaremote) -"jzy" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"jzA" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Reception Desk"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"jzB" = ( -/turf/open/floor/corsat/purple/east, -/area/corsat/omega/hallways) -"jzH" = ( -/obj/structure/surface/rack, -/obj/item/evidencebag, -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/red/southwest, -/area/corsat/theta/airlock/east/id) -"jAg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/hangar/arrivals) -"jAh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"jAn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"jAx" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"jAA" = ( -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"jAD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitecorner, -/area/corsat/gamma/residential/east) -"jAO" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/corsat/sigma/hangar) -"jAY" = ( -/obj/structure/window/reinforced, -/obj/structure/platform, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"jBr" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/south/robotics) -"jBu" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"jBy" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"jBC" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/wood, -/area/corsat/theta/biodome/complex) -"jBD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"jBI" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/hangar/office) -"jBM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"jBT" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"jCh" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"jCk" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/foyer) -"jCt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth) -"jCx" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth/id) -"jCD" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/south/offices) -"jCG" = ( -/obj/structure/pipes/standard/simple/hidden/universal, -/turf/open/floor/corsat/yellow/west, -/area/corsat/theta/airlock/control) -"jCO" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"jDj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"jDl" = ( -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/sigma/south/complex) -"jDn" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"jDt" = ( -/turf/open/mars_cave/mars_cave_6, -/area/corsat/sigma/biodome/scrapyard) -"jDP" = ( -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/sigma/south/complex) -"jDT" = ( -/obj/effect/decal/mecha_wreckage/hoverpod, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"jDU" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/omega/control) -"jDX" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"jDZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"jEa" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/almayer/plating/northeast, -/area/corsat/gamma/sigmaremote) -"jEd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/biodome/complex) -"jEi" = ( -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/researcher) -"jEx" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/hangar/monorail/control) -"jEW" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"jFi" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/theta/airlock/control) -"jFn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo) -"jFL" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaHangarC-S"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"jFN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"jFP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"jFU" = ( -/turf/open/mars_cave/mars_cave_8, -/area/corsat/sigma/biodome/gunrange) -"jGb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/north/id) -"jGh" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") - }, -/turf/open/floor/corsat/blue/northeast, -/area/corsat/gamma/airlock/control) -"jGB" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave/mars_cave_6, -/area/corsat/sigma/biodome/scrapyard) -"jGJ" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"jGN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/corsat/gamma/sigmaremote) -"jGO" = ( -/obj/structure/machinery/light, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar) -"jHb" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential/east) -"jHc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/id) -"jHk" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/flightcontrol) -"jHt" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/checkpoint) -"jHD" = ( -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"jHP" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "GammaHCargoW"; - name = "Gamma Cargo Checkpoint"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar/cargo) -"jHX" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"jHZ" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"jIm" = ( -/obj/structure/flora/bush/ausbushes/var3/leafybush, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"jIt" = ( -/turf/open/mars/mars_dirt_8, -/area/corsat/sigma/biodome) -"jIu" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"jIx" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/checkpoint) -"jIz" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"jIA" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/south/offices) -"jIG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"jIS" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/light_bulb/tube/large, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"jJb" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"jJw" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/chem_master/condimaster, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"jJI" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/airlock/control) -"jJT" = ( -/turf/open/mars/mars_dirt_10, -/area/corsat/sigma/biodome) -"jJW" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/arrivals) -"jKj" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/engineering) -"jKC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"jKG" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/security/cells) -"jKQ" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/airlocknorth) -"jKY" = ( -/obj/structure/closet/crate/science, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/sigma/south/complex) -"jLa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/auto_turf/snow/layer2, -/area/corsat/gamma/biodome) -"jLl" = ( -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/omega/complex) -"jLA" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"jLC" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"jLH" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/mars_cave/mars_cave_17, -/area/corsat/sigma/biodome/scrapyard) -"jLN" = ( -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/west/id) -"jLU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"jMi" = ( -/turf/open/gm/river/desert/shallow/pool, -/area/corsat/gamma/residential/showers) -"jMj" = ( -/obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"jMz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/virology) -"jMF" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"jMI" = ( -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydroeast) -"jMW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) -"jMZ" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/security) -"jNj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar/checkpoint) -"jNl" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/hemostat, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/sigmaremote) -"jNx" = ( -/turf/open/floor/corsat/red, -/area/corsat/omega/hallways) -"jNy" = ( -/obj/item/clothing/mask/gas, -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"jNM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/donut_box, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"jNP" = ( -/turf/open/floor/corsat/browncorner/west, -/area/corsat/sigma/north) -"jNV" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"jNY" = ( -/turf/open/floor/corsat/purple/east, -/area/corsat/sigma/south) -"jOd" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/camera, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"jOf" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"jOh" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/airlock/south) -"jOm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"jOr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/south) -"jOt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"jOu" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"jOQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/skills, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/gamma/administration) -"jOW" = ( -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/office) -"jPj" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/security) -"jPl" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "ThetaWestE"; - name = "Airlock Control"; - pixel_x = 5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "ThetaWestW"; - name = "Airlock Control"; - pixel_x = -5; - use_power = 0 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/west) -"jPn" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/engineering) -"jPy" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 2; - name = "Secure Racks"; - req_access_txt = "103" - }, -/obj/item/oldresearch/Blood, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"jPB" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/security) -"jPH" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"jPN" = ( -/obj/structure/sign/safety/biolab, -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/gamma/hallwaysouth) -"jPO" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/brown/north, -/area/corsat/sigma/cargo) -"jQh" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/lobby) -"jQk" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"jQn" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"jQv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"jQD" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/southeast/dataoffice) -"jQF" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/meson, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/omega/maint) -"jQK" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"jQM" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/cargo) -"jQR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitetancorner, -/area/corsat/gamma/residential/west) -"jRc" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/east, -/area/corsat/gamma/hangar) -"jRd" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/omega/complex) -"jRi" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/north) -"jRl" = ( -/obj/structure/pipes/vents/pump, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"jRn" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/binoculars, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"jRw" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/corsat/theta/biodome/complex) -"jRD" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"jRI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/foyer) -"jRL" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/hallways) -"jSg" = ( -/turf/open/floor/carpet7_3/west, -/area/corsat/omega/offices) -"jSp" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/west) -"jSr" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"jSJ" = ( -/obj/effect/decal/mecha_wreckage/ripley/firefighter, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"jSM" = ( -/turf/open/floor/carpet14_10/west, -/area/corsat/gamma/administration) -"jTd" = ( -/turf/open/floor/plating/warnplate/north, -/area/corsat/gamma/hangar) -"jTu" = ( -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/hangar/monorail) -"jTQ" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/carpet9_4/west, -/area/corsat/gamma/administration) -"jUb" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"jUd" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/yellow, -/area/corsat/omega/control) -"jUe" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"jUh" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"jUj" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"jUy" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/robotics) -"jUG" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"jUW" = ( -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/toxins) -"jVa" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/airlock/control) -"jVG" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/complex) -"jVJ" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal{ - amount = 25; - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/south/engineering) -"jVM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"jVV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/skills{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/administration) -"jWd" = ( -/obj/structure/machinery/smartfridge/secure/virology{ - req_access_txt = "103" - }, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/biodome/virology) -"jWx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/southeast/generator) -"jWJ" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/sigma/southeast) -"jWL" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Firing Range"; - req_access_txt = "106"; - use_power = 0 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"jWR" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydroeast) -"jWW" = ( -/obj/structure/machinery/door/window/southleft{ - dir = 1; - layer = 2.8 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"jXb" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/cargo) -"jXh" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/corsat/gamma/hangar) -"jXp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/skills{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/biodome/complex) -"jXr" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/security) -"jXz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"jXN" = ( -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"jXX" = ( -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/sigma/airlock/south) -"jYr" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/canteen) -"jYH" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 - }, -/turf/open/floor/corsat/purple/north, -/area/corsat/omega/hallways) -"jYM" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/airlock/south) -"jYO" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/scalpel, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 12; - pixel_y = 2 - }, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/surgery) -"jYP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/residential) -"jYZ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"jZg" = ( -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/south/offices) -"jZk" = ( -/obj/structure/fence, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer1, -/area/corsat/gamma/biodome) -"jZB" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/security) -"jZC" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/southeast/datalab) -"jZH" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/control) -"jZO" = ( -/turf/open/floor/corsat/greenwhitecorner/east, -/area/corsat/gamma/medbay/morgue) -"jZT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security/cells) -"kaB" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/arrivals) -"kaI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/south) -"kaZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"kbn" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Laundry Unit" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) -"kbw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"kbC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"kbL" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/blue, -/area/corsat/omega/control) -"kbQ" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey, -/area/corsat/omega/offices) -"kcl" = ( -/turf/open/floor/corsat/marked, -/area/corsat/omega/hangar/security) -"kcy" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/hangar/office) -"kcz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/toxins) -"kcC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/core) -"kcD" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/south/engineering) -"kcI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"kcL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/theta/biodome/complex) -"kcR" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/omega/offices) -"kdo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"kdp" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"kdE" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth) -"kdP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"kea" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"kef" = ( -/obj/structure/machinery/r_n_d/bioprinter, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/theta/biodome/complex) -"keh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"keo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast/datamaint) -"keB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars/mars_dirt_8, -/area/corsat/sigma/biodome) -"keC" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/residential) -"keE" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"keX" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"kfg" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/checkpoint) -"kfv" = ( -/obj/structure/surface/table, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"kfx" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"kfN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"kfP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"kfU" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/south/security) -"kgc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/south/id) -"kgf" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/hangar/security) -"kgK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"kgT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/researcher) -"khg" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/corsat/white/northwest, -/area/corsat/sigma/south) -"khn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/red, -/area/corsat/omega/checkpoint) -"khq" = ( -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/sigma/south/complex) -"khs" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/security) -"kht" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"khy" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/sigma/south/complex) -"khY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/gamma/biodome/complex) -"kih" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/engineering) -"kio" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/administration) -"kiI" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/engineering) -"kiV" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"kjp" = ( -/obj/structure/target/syndicate, -/obj/structure/target/syndicate, -/obj/structure/target/syndicate, -/obj/structure/target/syndicate, -/obj/structure/target/syndicate, -/obj/structure/closet/crate{ - desc = "A rectangular steel crate containing firing targets."; - name = "target crate" - }, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"kjt" = ( -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"kjB" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/morgue) -"kjF" = ( -/obj/structure/machinery/shower, -/obj/structure/machinery/door/window/southleft{ - opacity = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"kjK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"kjQ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/engineering) -"kkh" = ( -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/hangar/office) -"kkj" = ( -/obj/structure/pipes/binary/pump/high_power/on{ - dir = 1 - }, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/theta/airlock/control) -"kkk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/residential) -"kkl" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown/northeast, -/area/corsat/gamma/cargo) -"kkv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "GammaA"; - name = "Airlock Control"; - pixel_x = -5; - pixel_y = 6; - use_power = 0 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = 8; - pixel_y = 3 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) -"klj" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/hallwaysouth) -"kly" = ( -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"klz" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/sigmaremote) -"klL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/airlock/south) -"klN" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "GammaHCargoW"; - name = "Gamma Cargo Checkpoint"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar/cargo) -"kme" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"kmU" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail) -"knm" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/robotics) -"knt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"kny" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"knB" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/theta/airlock/west) -"knU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar) -"knW" = ( -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"knX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat/blue, -/area/corsat/gamma/airlock/control) -"kom" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/omega/airlocknorth) -"kor" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/sigma/hangar) -"kow" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"koH" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/hangar/security) -"kpn" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/gamma/residential/west) -"kpu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/airlocknorth) -"kpG" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/security) -"kpH" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"kpQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"kpU" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/gamma/airlock/control) -"kpX" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaHangarNE"; - name = "Checkpoint Control"; - use_power = 0 - }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/hangar/security) -"kqg" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/hangar/checkpoint) -"kqt" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "15" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"kqN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/checkpoint) -"kqQ" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/id) -"kqT" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/airlock/south) -"kqU" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Engineering Storage"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"krb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"krd" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "GammaSouthS"; - name = "Gamma South Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/south) -"kre" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/administration) -"krk" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/hallways) -"krQ" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/control) -"krS" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"krY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/white/southwest, -/area/corsat/sigma/dorms) -"ksb" = ( -/turf/open/floor/corsat/browncorner/west, -/area/corsat/sigma/cargo) -"ksg" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/freezer) -"kso" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"kst" = ( -/turf/open/floor/asteroidwarning/north, -/area/corsat/sigma/biodome/gunrange) -"ksH" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lockdown-highsec" - }, -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/checkpoint) -"kta" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/theta/biodome/complex) -"ktp" = ( -/turf/open/floor/corsat/red, -/area/corsat/omega/airlocknorth) -"ktt" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"ktK" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/control) -"ktR" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/south/id) -"ktV" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/security) -"ktW" = ( -/turf/open/floor/corsat/omega, -/area/corsat/omega/control) -"kui" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/arrow_west, -/area/corsat/omega/hangar) -"kuj" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/foyer) -"kuk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/brown/north, -/area/corsat/omega/cargo) -"kul" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"kuC" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"kuF" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Airlock Control"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/control) -"kuR" = ( -/obj/item/tool/extinguisher, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/theta/biodome/complex) -"kvg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/virology) -"kvn" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Telecommunications"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/generator) -"kvv" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/mars_cave/mars_cave_12, -/area/corsat/sigma/biodome) -"kvw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/checkpoint) -"kvx" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/gamma/hangar/flightcontrol) -"kvE" = ( -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/toxins) -"kvI" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/southeast, -/area/corsat/theta/airlock/east/id) -"kvM" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"kwb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/residential/west) -"kwg" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"kwp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/control) -"kws" = ( -/obj/vehicle/powerloader, -/turf/open/floor/corsat/cargo, -/area/corsat/omega/cargo) -"kwB" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/engineering) -"kwN" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/sigma/dorms) -"kwX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/whitecorner/west, -/area/corsat/gamma/residential/east) -"kxl" = ( -/turf/open/floor/corsat/brown/east, -/area/corsat/sigma/cargo) -"kxq" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/warnplate, -/area/corsat/gamma/hangar) -"kxw" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purple, -/area/corsat/omega/hallways) -"kxz" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/sigma/dorms) -"kxD" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"kxQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/id) -"kxW" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "3" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"kyf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"kym" = ( -/obj/structure/pipes/standard/simple/visible, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"kyq" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/sigma/airlock/east) -"kyt" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) -"kyw" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"kyx" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"kyA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/north) -"kyG" = ( -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"kyP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/yellow/north, -/area/corsat/theta/airlock/control) -"kyQ" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/maint) -"kzf" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/airlock/control) -"kzh" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"kzi" = ( -/obj/item/device/binoculars, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "GammaControl"; - name = "Observation Shutters"; - pixel_y = 5; - use_power = 0 - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/airlock/control) -"kzk" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/control) -"kzr" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/hangar/checkpoint) -"kzx" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/dorms) -"kzA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"kzU" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"kAb" = ( -/obj/structure/closet/secure_closet/cargotech, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/cargo) -"kAt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"kAI" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/security) -"kAL" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"kAQ" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/east) -"kAU" = ( -/obj/item/paper, -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"kAX" = ( -/obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"kBs" = ( -/obj/structure/machinery/chem_dispenser{ - req_access_txt = "100" - }, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay/chemistry) -"kBy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"kBY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"kCd" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/office) -"kCe" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar) -"kCi" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/arrivals) -"kCm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"kCt" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/east) -"kCJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south) -"kCO" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/south/security) -"kCX" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/hangar/cargo) -"kDd" = ( -/obj/structure/closet/crate/science, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"kDh" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"kDt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/corsat/theta/biodome) -"kDw" = ( -/turf/open/floor/corsat/bluecorner, -/area/corsat/gamma/hallwaysouth) -"kDF" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/sigma/hangar/monorail) -"kDL" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"kDT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/theta/airlock/west) -"kDU" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/south/engineering) -"kDV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"kDY" = ( -/obj/item/device/flashlight/lamp/green, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet7_3/west, -/area/corsat/gamma/biodome/complex) -"kEo" = ( -/obj/structure/surface/table/almayer, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/greenwhite/northwest, -/area/corsat/gamma/medbay) -"kEr" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"kEt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"kEx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/item/paper_bin, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"kEy" = ( -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"kEL" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Engineering Workshop"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"kEV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) -"kEY" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"kFc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome) -"kFk" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/gamma/administration) -"kFn" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"kFo" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp/green, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"kFr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"kFI" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/cargo) -"kFW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/whitetan/southeast, -/area/corsat/gamma/residential/west) -"kFZ" = ( -/obj/structure/flora/jungle/plantbot1, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"kGq" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/south/id) -"kGx" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/wrench, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/gamma/sigmaremote) -"kGz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/engineering) -"kGB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; - pixel_y = 30 - }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"kGE" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"kGG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"kGI" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"kHe" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/corsat/gamma/residential/lounge) -"kHi" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/monorail/control) -"kHn" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/carpet15_15/west, -/area/corsat/omega/offices) -"kHt" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/carpet9_4/west, -/area/corsat/gamma/residential/lounge) -"kHC" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/hallwaysouth) -"kHM" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/gamma/hangar) -"kHP" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/corsat/theta/biodome) -"kHX" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth/id) -"kHY" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/radiation, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"kId" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/hangar/cargo) -"kIe" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/west, -/area/corsat/gamma/hangar) -"kIo" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/east) -"kIy" = ( -/obj/structure/machinery/door/window/southleft, -/obj/structure/machinery/door/window/northleft, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"kIJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"kIK" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) -"kIQ" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"kIS" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"kIW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"kJa" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"kJn" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"kJy" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile{ - id = "ThetaNorthN"; - name = "Theta North Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/control) -"kJD" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/hangar) -"kJL" = ( -/obj/structure/machinery/conveyor_switch, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/cargo) -"kJY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"kKh" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/analyzer, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"kKi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/corsat/gamma/hallwaysouth) -"kKk" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/brown/north, -/area/corsat/sigma/cargo) -"kKm" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/assembly/igniter, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/sigma/south/complex) -"kKt" = ( -/obj/structure/fence, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"kKv" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Containment"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"kKx" = ( -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/corsat/inaccessible) -"kKI" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth) -"kKN" = ( -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat/yellow/north, -/area/corsat/omega/control) -"kKQ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/sigma/hangar/monorail) -"kKX" = ( -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/hallwaysouth) -"kKZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/hangar/office) -"kLc" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Mixed Air Control" - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/airlock/control) -"kLo" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/checkpoint) -"kLp" = ( -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/omega/offices) -"kLv" = ( -/obj/structure/surface/rack, -/obj/item/storage/donut_box, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"kLA" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"kLB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"kLD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/airlock/south) -"kLF" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"kLG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"kLN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/sigma/hangar/office) -"kMb" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"kMc" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"kMe" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/checkpoint) -"kMk" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/bodybags, -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/complex) -"kMn" = ( -/turf/open/floor/corsat/arrow_south, -/area/corsat/gamma/cargo) -"kME" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/hallways) -"kMI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/rnr) -"kMJ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"kMT" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"kNh" = ( -/obj/item/device/binoculars, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SigmaControl"; - name = "Observation Shutters"; - pixel_y = 5; - use_power = 0 - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/airlock/control) -"kNl" = ( -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"kNC" = ( -/obj/item/folder/black_random, -/obj/item/clothing/mask/cigarette/cigar/havana, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/security) -"kNE" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"kNF" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/north) -"kNT" = ( -/obj/structure/machinery/door_control{ - id = "Toxins"; - name = "Lab Lockdown"; - pixel_y = 24; - use_power = 0 - }, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/biodome/toxins) -"kOe" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"kOf" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/checkpoint) -"kOh" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Robotics"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"kOl" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/exosuit/main/max, -/obj/item/circuitboard/exosuit/peripherals/max/targeting, -/obj/item/circuitboard/exosuit/peripherals/max, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"kOp" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Access Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"kOs" = ( -/obj/structure/closet/wardrobe/toxins_white, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) -"kPk" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/phoron, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"kPq" = ( -/turf/open/floor/corsat/brown/west, -/area/corsat/sigma/cargo) -"kPv" = ( -/turf/open/floor/corsat/arrow_west, -/area/corsat/gamma/engineering/core) -"kPB" = ( -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/security) -"kPD" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"kPL" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "21" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"kPX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"kPY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/checkpoint) -"kQb" = ( -/obj/structure/fence, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"kQf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/theta/biodome/complex) -"kQg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"kQp" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"kQs" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/checkpoint) -"kQG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/atmos) -"kQK" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"kQM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"kQR" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/greenwhitecorner/north, -/area/corsat/gamma/medbay/chemistry) -"kRj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"kRk" = ( -/obj/structure/machinery/r_n_d/organic_analyzer, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"kRy" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"kRM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Research Complex Gamma"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"kRW" = ( -/turf/open/floor/corsat/green/southeast, -/area/corsat/gamma/medbay/morgue) -"kSd" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"kSp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/white, -/area/corsat/gamma/residential/east) -"kSC" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/residential/east) -"kTm" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/hallways) -"kTy" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/assembly/timer, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering) -"kTA" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"kTI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"kTQ" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"kTV" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/southeast/dataoffice) -"kTW" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/plating/warnplate/west, -/area/corsat/gamma/hangar) -"kUh" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar/cargo) -"kUi" = ( -/obj/structure/surface/table/almayer, -/obj/item/evidencebag, -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar/security) -"kUG" = ( -/obj/structure/surface/table/almayer, -/obj/item/restraint/handcuffs, -/obj/item/restraint/handcuffs, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"kUK" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/gamma/residential/west) -"kUP" = ( -/obj/structure/curtain, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"kVd" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/engineering/core) -"kVM" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/obj/structure/stairs, -/turf/open/floor/corsat/white/northwest, -/area/corsat/gamma/residential/east) -"kVQ" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/west, -/area/corsat/sigma/hangar) -"kVS" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/asteroidwarning/east, -/area/corsat/sigma/biodome/scrapyard) -"kVW" = ( -/obj/structure/surface/rack, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/console_screen, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/south/engineering) -"kVX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/north) -"kWb" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"kWi" = ( -/obj/structure/machinery/mech_bay_recharge_port, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"kWv" = ( -/obj/structure/sign/safety/biohazard, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/virology) -"kWy" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"kWA" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"kWC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/cargo) -"kWE" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/airlock/north) -"kWT" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"kXf" = ( -/turf/open/floor/corsat/brown/west, -/area/corsat/gamma/cargo) -"kXj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"kXl" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"kXn" = ( -/turf/open/floor/corsat/whitecorner/west, -/area/corsat/sigma/dorms) -"kXo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"kXr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/checkpoint) -"kXw" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/theta/biodome/hydroeast) -"kXy" = ( -/obj/structure/machinery/processor, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"kXC" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"kXH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"kXP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/theta/airlock/east/id) -"kXT" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Theta Dome Control"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/theta/airlock/control) -"kXU" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar) -"kXW" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/white/northeast, -/area/corsat/sigma/dorms) -"kYi" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"kYl" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - dir = 1; - name = "Cargo Bay"; - req_one_access_txt = "100" - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"kYw" = ( -/turf/open/floor/corsat/browncorner/east, -/area/corsat/gamma/cargo) -"kYx" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/south, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail) -"kYB" = ( -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/south) -"kYS" = ( -/obj/structure/machinery/computer/pandemic, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"kYT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/airlock/south) -"kZa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"kZn" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/chem_dispenser/soda/beer{ - dir = 8 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"kZq" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/airlock/north) -"kZr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/sigma/north) -"kZu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"kZG" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/theta/airlock/control) -"kZM" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail/control) -"kZQ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"lac" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/theta/airlock/west) -"lag" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south) -"lak" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"lal" = ( -/obj/structure/prop/almayer/computers/mapping_computer, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"lan" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "ThetaNorthD"; - name = "Theta Dome Airlock" - }, -/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ - id = "map_lockdown"; - name = "Theta Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/control) -"lau" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"lay" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/omega/maint) -"laE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"laO" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"laR" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"laU" = ( -/obj/structure/machinery/atm{ - pixel_x = -30 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"laZ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/cell/hyper/empty, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"lbr" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/airlock/control) -"lbs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"lbK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/checkpoint) -"lbN" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/spiralplate, -/area/corsat/theta/airlock/east) -"lbU" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/lobby) -"lcd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/security) -"lcr" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "16" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"lct" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"lcv" = ( -/turf/open/mars_cave/mars_cave_4, -/area/corsat/sigma/biodome/scrapyard) -"lcQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"lcT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"lcZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/airlocknorth) -"ldf" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/gamma/hangar/office) -"ldC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"ldM" = ( -/obj/structure/closet/crate/freezer, -/obj/item/organ/heart, -/obj/item/organ/kidneys, -/obj/item/organ/kidneys, -/obj/item/organ/liver, -/obj/item/organ/lungs, -/obj/item/organ/brain, -/obj/item/organ/eyes, -/turf/open/floor/corsat/greenwhite/northwest, -/area/corsat/gamma/medbay) -"leo" = ( -/turf/open/floor/corsat/greencorner/north, -/area/corsat/gamma/hallwaysouth) -"ler" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/biodome/virology) -"leu" = ( -/obj/structure/showcase{ - icon_state = "comm_server"; - name = "Communications Server" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"ley" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/west) -"leK" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"leU" = ( -/turf/open/floor/corsat/green/east, -/area/corsat/gamma/hallwaysouth) -"lfa" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/airlock/control) -"lfg" = ( -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/gamma/foyer) -"lfk" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/foyer) -"lfl" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"lfO" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/greenwhite/northeast, -/area/corsat/gamma/medbay/morgue) -"lfT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar) -"lgs" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/gamma/residential/east) -"lgK" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/south/id) -"lgM" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"lgN" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow/pool, -/area/corsat/gamma/residential/showers) -"lgO" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/medbay/morgue) -"lgU" = ( -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/southeast) -"lhf" = ( -/turf/open/floor/corsat/whitetancorner/east, -/area/corsat/gamma/canteen) -"lhu" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/hangar/arrivals) -"lhv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/gamma/biodome/virology) -"lhy" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/southeast/dataoffice) -"lhA" = ( -/obj/structure/machinery/door_control{ - id = "GammaCargo"; - name = "Cargo Door"; - pixel_x = -24; - use_power = 0 - }, -/turf/open/floor/corsat/arrow_north, -/area/corsat/gamma/cargo) -"lhC" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/arrivals) -"lhN" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/checkpoint) -"lhQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"liC" = ( -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/south) -"liJ" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/omega/complex) -"liP" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south) -"lja" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"ljd" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) -"ljg" = ( -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/omega/control) -"ljk" = ( -/obj/structure/surface/rack, -/obj/item/evidencebag, -/obj/item/evidencebag, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/security) -"ljy" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"ljT" = ( -/obj/structure/computer3frame/server{ - icon_state = "4" - }, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/sigma/south/complex) -"lkd" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"lkg" = ( -/obj/structure/machinery/light, -/obj/structure/bed, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"lkl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/corsat/sigma/south/complex) -"lkm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"lkn" = ( -/obj/structure/dispenser/phoron, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/atmos) -"lkq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"lkx" = ( -/obj/structure/machinery/optable, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"lkz" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/sigma/south) -"lkD" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"lkI" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"lkK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/south/offices) -"lkW" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/hangar/office) -"lkY" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"lld" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south/id) -"llr" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/lounge) -"llF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential) -"llH" = ( -/obj/structure/target/syndicate, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/gunrange) -"llI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/south/offices) -"llL" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"llN" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/rnr) -"llW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "Medical Lobby"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"lmJ" = ( -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/hangar/flightcontrol) -"lmM" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/residential/maint) -"lmP" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"lmS" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/masks, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/complex) -"lne" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"lnm" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering/atmos) -"lno" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/gamma/hangar/office) -"lnw" = ( -/obj/structure/surface/rack, -/obj/item/tool/soap/deluxe, -/obj/item/tool/soap/deluxe, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/residential/maint) -"lnF" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/core) -"lnQ" = ( -/obj/structure/window_frame/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/biodome/complex) -"loa" = ( -/turf/open/floor/corsat/blue/northwest, -/area/corsat/gamma/airlock/control) -"loj" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential/researcher) -"lol" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"lox" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/administration) -"loB" = ( -/obj/item/tool/soap, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"loK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"lpd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar) -"lpk" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/sigma/south/complex) -"lpq" = ( -/obj/item/folder/yellow, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/administration) -"lpt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/southeast/generator) -"lpW" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"lqi" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"lqw" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/red, -/area/corsat/omega/airlocknorth) -"lqC" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/south) -"lqJ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/red, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/office) -"lqP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Auditorium" - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"lqU" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/north) -"lqY" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Hangar Security"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"lse" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box, -/obj/item/storage/box{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/corsat/brown/west, -/area/corsat/sigma/cargo) -"lsn" = ( -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/omega/complex) -"lso" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/sigma/south/complex) -"lss" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"lsu" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat, -/area/corsat/gamma/freezer) -"lsB" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"lsH" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"lsQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/omega/complex) -"ltg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"lti" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/adv, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"ltj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/security) -"ltp" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "SigmaCargo"; - name = "Sigma Cargo Bay"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/cargo) -"ltL" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth) -"ltR" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Center"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"ltW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/cargo) -"lui" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential) -"lum" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"luq" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"luv" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/cargo/disposal) -"luH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/purple/northeast, -/area/corsat/sigma/south) -"luN" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/security/armory) -"luT" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/foyer) -"luX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential/east) -"lvn" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "22" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"lvE" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"lvY" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/security) -"lwb" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 - }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow/east, -/area/corsat/theta/airlock/control) -"lwe" = ( -/turf/open/floor/corsat/green/west, -/area/corsat/gamma/hallwaysouth) -"lwo" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail) -"lwu" = ( -/turf/open/floor/corsat, -/area/corsat/sigma/hangar) -"lwC" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"lwH" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/hangar/checkpoint) -"lwI" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/engineering) -"lwM" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/monkeycubes, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"lwS" = ( -/obj/structure/machinery/optable, -/obj/item/robot_parts/robot_suit, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"lwZ" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/foyer) -"lxq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/sigmaremote) -"lxy" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/hangar/monorail) -"lxA" = ( -/turf/open/mars_cave/mars_cave_11, -/area/corsat/sigma/biodome/gunrange) -"lxW" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/south) -"lya" = ( -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/gamma/airlock/north) -"lyj" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner, -/area/corsat/sigma/south) -"lyH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"lzo" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail) -"lzM" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/freezer) -"lAa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"lBb" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"lBu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/medbay/morgue) -"lBC" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/omega/complex) -"lBT" = ( -/obj/structure/platform{ - density = 0; - dir = 1; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"lBW" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/gamma/foyer) -"lBX" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/device/radio, -/obj/item/device/radio, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/residential/maint) -"lCs" = ( -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/residential) -"lCF" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"lCV" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/airlock/control) -"lCW" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth/id) -"lCY" = ( -/obj/structure/closet/secure_closet/brig{ - id = "CORSAT Sec 2" - }, -/obj/structure/machinery/brig_cell{ - id = "CORSAT Sec 2"; - name = "Cell 2"; - pixel_x = 32 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security/cells) -"lDn" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/south) -"lDD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth/id) -"lDO" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"lDV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hangar/security) -"lDZ" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/theta/airlock/control) -"lEa" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"lEe" = ( -/obj/structure/window/reinforced, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/foyer) -"lEk" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"lEn" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"lEu" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/dataoffice) -"lEC" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"lED" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellow/north, -/area/corsat/theta/airlock/control) -"lET" = ( -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/omega/complex) -"lFj" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/hangar/monorail) -"lFn" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo/lobby) -"lFA" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"lFH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/north) -"lFV" = ( -/obj/structure/machinery/smartfridge/chemistry{ - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/chemistry) -"lGc" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"lGx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"lGE" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/hangar/monorail/control) -"lGG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"lGK" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/obj/item/organ/lungs, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"lGM" = ( -/obj/effect/landmark/corpsespawner/wysec, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"lGP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"lHb" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/gamma/hangar) -"lHi" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/dataoffice) -"lHv" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/corsat/purple/north, -/area/corsat/omega/hallways) -"lHM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"lHQ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/northwest, -/area/corsat/theta/airlock/control) -"lHV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/airlocknorth/id) -"lIj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/platform{ - dir = 8; - layer = 2.8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"lIo" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/chemistry) -"lIM" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"lIO" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/item/tool/mop, -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydroeast) -"lIR" = ( -/obj/structure/sign/safety/storage{ - pixel_y = 32 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) -"lIT" = ( -/obj/structure/surface/table/almayer, -/obj/item/restraint/handcuffs, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"lJg" = ( -/obj/structure/machinery/door/window/brigdoor/southleft{ - id = "CORSAT Sec 1"; - name = "Cell 1" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security/cells) -"lJp" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"lJv" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"lJD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/recharge_station, -/turf/open/floor/corsat/darkgreen/northwest, -/area/corsat/sigma/hangar) -"lJE" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"lJM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/south/offices) -"lJX" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/residential/maint) -"lJY" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/brown/northwest, -/area/corsat/sigma/cargo) -"lKc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("omega") - }, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/security) -"lKl" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/sigma/southeast/datalab) -"lKp" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"lKu" = ( -/turf/open/floor/corsat/squareswood/north, -/area/corsat/omega/offices) -"lKv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"lKw" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"lKy" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"lKA" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/brown/southeast, -/area/corsat/gamma/cargo) -"lKO" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "SigmaEastID"; - name = "Security Shutters" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/east/id) -"lKR" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Research Complex"; - req_one_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydroeast) -"lKW" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/residential/maint) -"lKZ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"lLh" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"lLl" = ( -/obj/structure/machinery/r_n_d/server, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"lLx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"lLI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/theta/airlock/west) -"lLR" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/obj/structure/machinery/light, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"lMd" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datamaint) -"lMe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/south/security) -"lMn" = ( -/obj/structure/machinery/light, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/biodome/toxins) -"lMr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/purplecorner/east, -/area/corsat/sigma/south) -"lMs" = ( -/turf/open/floor/corsat/blue/southwest, -/area/corsat/omega/hallways) -"lMu" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/blue/southeast, -/area/corsat/theta/airlock/control) -"lMI" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/checkpoint) -"lMP" = ( -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/explosive/grenade/high_explosive/pmc, -/obj/structure/closet/secure_closet/guncabinet{ - name = "explosives cabinet"; - req_access_txt = "100" - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"lMX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Laboratory"; - req_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"lNd" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"lNl" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat/purple, -/area/corsat/omega/hallways) -"lNo" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/east) -"lNp" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/cargo) -"lNz" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Administration Desk"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"lNB" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/hangar/security) -"lNC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"lNJ" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"lNZ" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"lOi" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/southeast/dataoffice) -"lOp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/core) -"lOv" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering Head Office"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"lOK" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential) -"lOY" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/monorail) -"lPf" = ( -/obj/structure/window/reinforced, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"lPg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/whitecorner/west, -/area/corsat/gamma/residential/east) -"lPh" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/control) -"lPk" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"lPp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"lPt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/theta/airlock/east) -"lPu" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/residential) -"lPJ" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/white/northeast, -/area/corsat/gamma/residential/east) -"lQc" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "GammaCargo"; - name = "Gamma Cargo Bay"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/cargo) -"lQd" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Testing Grounds"; - req_access_txt = "106"; - use_power = 0 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"lQf" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/security/armory) -"lQm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential) -"lQo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"lQu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"lQx" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Administration Desk"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"lQT" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/dorms) -"lRa" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/sigma/dorms) -"lRf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"lRl" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "CO2 Control" - }, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/airlock/control) -"lRm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"lRt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"lRu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/datalab) -"lRN" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/south/security) -"lRR" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Teleport Control"; - req_one_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"lRZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/id) -"lSb" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/monorail/control) -"lSm" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"lSp" = ( -/obj/structure/machinery/computer/rdservercontrol, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"lSr" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/sigma/hangar/office) -"lSt" = ( -/obj/structure/computerframe, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"lSB" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"lSL" = ( -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/omega/containment) -"lSO" = ( -/obj/structure/machinery/light, -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) -"lSQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/item/storage/donut_box, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/south/offices) -"lTb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/airlock/control) -"lTm" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/east, -/area/corsat/gamma/hangar) -"lTz" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/high_explosive/training, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"lTN" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"lTO" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Hangar Office" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"lTT" = ( -/obj/structure/morgue, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/medbay/morgue) -"lUU" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering/atmos) -"lVj" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydrowest) -"lVr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering/atmos) -"lVF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"lVJ" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"lVL" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/chips, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"lWd" = ( -/obj/structure/sign/safety/biohazard, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/virology) -"lWe" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome/scrapyard) -"lWg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/whitetan/southeast, -/area/corsat/gamma/residential/west) -"lWk" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"lWz" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/blue, -/area/corsat/theta/airlock/control) -"lWC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/theta/biodome/complex) -"lWE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"lWF" = ( -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/south) -"lWL" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"lWT" = ( -/obj/structure/stairs, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"lXe" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"lXm" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/gamma/hangar/flightcontrol) -"lXt" = ( -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/sigma/south/offices) -"lXx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/corsat/gamma/sigmaremote) -"lXI" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth/id) -"lXK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/hallwaysouth) -"lYc" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/corsat/theta/biodome) -"lYg" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/blue/southeast, -/area/corsat/sigma/airlock/control) -"lYu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/security) -"lYw" = ( -/turf/open/mars_cave/mars_cave_16, -/area/corsat/sigma/biodome/scrapyard) -"lYT" = ( -/obj/structure/pipes/standard/simple/hidden/universal, -/turf/open/floor/corsat/yellow/east, -/area/corsat/theta/airlock/control) -"lYU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"lYW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"lYX" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - icon_state = "single" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"lZg" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/browncorner/north, -/area/corsat/gamma/cargo) -"lZi" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("theta") - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"lZk" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"lZm" = ( -/turf/open/floor/wood, -/area/corsat/omega/offices) -"lZn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"lZp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Researcher's Lounge" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/lounge) -"lZG" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/hangar/arrivals) -"lZU" = ( -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/canteen) -"mag" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"mai" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"map" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"may" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"maz" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south/id) -"maB" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/airlock/south) -"maG" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Administration"; - req_access_txt = "106" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"maJ" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"maL" = ( -/obj/vehicle/powerloader, -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/cargo) -"maO" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/omega/control) -"maQ" = ( -/obj/item/tool/stamp/rd, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"maT" = ( -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/hangar/arrivals) -"maZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/researcher) -"mbg" = ( -/turf/open/floor/corsat/whitecorner, -/area/corsat/gamma/hallwaysouth) -"mbH" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/security) -"mbW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/hangar) -"mcj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"mco" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Electronics"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"mcL" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/omega/offices) -"mcN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/gamma/hangar/monorail) -"mcW" = ( -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/gamma/residential) -"mda" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"mdh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/gamma/residential) -"mdo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/theta/airlock/control) -"mdI" = ( -/obj/structure/closet/crate/trashcart, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/corsat/gamma/cargo/disposal) -"mdJ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/residential/west) -"mdM" = ( -/turf/open/floor/plating/warnplate/southeast, -/area/corsat/sigma/hangar) -"mdP" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/keycard_auth/lockdown/corsat, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/administration) -"mdR" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/omega/hallways) -"mdT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"mea" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"med" = ( -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"mek" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"meF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/south/robotics) -"meG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"meN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Hangar Security"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"meP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/morgue) -"mfa" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south) -"mff" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/sigmaremote) -"mfh" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"mfs" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/theta/biodome/complex) -"mfD" = ( -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/engineering/core) -"mfJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/omega/complex) -"mfN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"mfX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"mga" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/hallways) -"mgs" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/security) -"mgI" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"mgK" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"mgT" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/omega/offices) -"mgV" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Engineering"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"mhd" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"mhk" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - id = "OmegaA"; - name = "Xenobiology"; - req_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"mho" = ( -/obj/structure/stairs, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"mhG" = ( -/obj/structure/surface/rack, -/obj/item/frame/bucket_sensor, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"mhL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/omega/control) -"mhY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"min" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"mip" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"mit" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/machine/circuit_imprinter, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"miy" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"miH" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/bar) -"miS" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security) -"mjd" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"mjm" = ( -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"mjy" = ( -/obj/item/alien_embryo{ - color = "#00ff80"; - name = "corrupted alien embryo" - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/corsat/inaccessible) -"mjF" = ( -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/gamma/foyer) -"mjK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential/east) -"mjR" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/omega/complex) -"mki" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"mkw" = ( -/turf/open/floor/corsat/squares, -/area/corsat/theta/biodome/complex) -"mkF" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"mkO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"mkX" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/security) -"mlr" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"mlv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/gamma/residential/researcher) -"mly" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"mlA" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"mmd" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/bed/nest, -/turf/open/floor/almayer/research/containment/entrance/west, -/area/corsat/inaccessible) -"mmg" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"mmn" = ( -/obj/structure/surface/rack{ - name = "Acid Resistant Rack"; - unacidable = 1 - }, -/obj/item/xenos_claw, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/omega/complex) -"mmq" = ( -/obj/item/implant/loyalty, -/obj/item/implant/loyalty, -/obj/item/implant/compressed, -/obj/item/implant/compressed, -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"mmv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"mmC" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"mmJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"mmN" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/sigmaremote) -"mmS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"mmY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/omega/security) -"mnt" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Teleportation Chamber"; - req_one_access_txt = "101;103" - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"mnu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"mnC" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/toxins) -"mnK" = ( -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"mnW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/south/security) -"mnY" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/sigma/north) -"moe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet/medical2{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"mog" = ( -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/cargo) -"mou" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/virology) -"moA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/east) -"moB" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security) -"moE" = ( -/turf/open/floor/corsat/red, -/area/corsat/sigma/south/security) -"moI" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/cargo/lobby) -"moN" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/sigmaremote) -"moP" = ( -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/theta/biodome/hydrowest) -"mpl" = ( -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/sigma/southeast) -"mpt" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"mpu" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/paper, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/lobby) -"mpG" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"mpH" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydroeast) -"mpP" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/yellow, -/area/corsat/omega/maint) -"mpZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"mqa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"mqe" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Secondary Generators"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"mqn" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"mqy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/monorail/control) -"mqG" = ( -/obj/structure/curtain/shower, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"mqM" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"mqP" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Research Desk" - }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"mqT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/cargo/disposal) -"mqU" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"mqV" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/maint) -"mra" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/smartfridge/chemistry{ - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/biodome/toxins) -"mrb" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"mrj" = ( -/turf/open/floor/corsat/purple/north, -/area/corsat/sigma/south) -"mrt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"mrv" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"mrK" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/south) -"mrP" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"mrQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/biodome/complex) -"mrZ" = ( -/turf/open/floor/corsat/darkgreen/northwest, -/area/corsat/sigma/hangar/monorail) -"msd" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"msB" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat, -/area/corsat/gamma/cargo/disposal) -"msI" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/latex, -/obj/item/clothing/suit/chef/classic, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"msP" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"msX" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/airlock/north/id) -"mti" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"mtj" = ( -/obj/structure/prop/mech/parts/durand_right_arm, -/turf/open/floor/corsat/arrow_west, -/area/corsat/sigma/south/robotics) -"mto" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"mtw" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/biodome/complex) -"mtD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"mtG" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/river, -/area/corsat/theta/biodome) -"mtS" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/hangar/checkpoint) -"mtW" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"mtY" = ( -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/airlock/south/id) -"muc" = ( -/turf/open/mars/mars_dirt_13, -/area/corsat/sigma/biodome) -"mux" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/greenwhitecorner/east, -/area/corsat/gamma/medbay) -"muD" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"muF" = ( -/obj/structure/machinery/door_control{ - id = "GammaAdmin"; - name = "Security Shutters"; - pixel_x = 24; - use_power = 0 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/administration) -"muP" = ( -/turf/open/floor/corsat/white, -/area/corsat/gamma/residential/researcher) -"muW" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "SigmaWestD"; - name = "Sigma Dome Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/control) -"mvb" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south/id) -"mve" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"mvk" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"mvw" = ( -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/gamma/administration) -"mvC" = ( -/turf/open/floor/carpet10_8/west, -/area/corsat/gamma/biodome/complex) -"mvL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/mars, -/area/corsat/sigma/biodome) -"mvR" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/mars_cave/mars_cave_7, -/area/corsat/sigma/biodome/scrapyard) -"mvW" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/airlock/south) -"mwu" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/south) -"mwz" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth) -"mwA" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"mwC" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/biodome, -/area/corsat/emergency_access) -"mwE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) -"mwN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"mwP" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/hangar/monorail) -"mxv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Research Complex Theta" - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/biodome/complex) -"mxF" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/south) -"mxH" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"mxN" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"mxQ" = ( -/obj/structure/surface/table, -/obj/item/folder/yellow, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"myV" = ( -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"mzg" = ( -/obj/structure/machinery/computer/teleporter_console/corsat{ - dir = 1 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"mzt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"mzu" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/control) -"mzH" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/security) -"mAm" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/high_explosive, -/obj/item/explosive/grenade/high_explosive, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"mAo" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"mAp" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar) -"mAx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"mAP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/browncorner/west, -/area/corsat/gamma/cargo) -"mAT" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"mBc" = ( -/turf/open/floor/corsat/arrow_east, -/area/corsat/gamma/cargo) -"mBg" = ( -/obj/structure/bed, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/security/cells) -"mBt" = ( -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/bar) -"mBR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitecorner/west, -/area/corsat/gamma/residential/east) -"mBT" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth/id) -"mCc" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/sigma/south/complex) -"mCg" = ( -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"mCh" = ( -/obj/item/clothing/head/beret/sec/warden, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"mCk" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"mCB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"mCW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/hangar/office) -"mDa" = ( -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/sigma/dorms) -"mDf" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"mDl" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/blue/southeast, -/area/corsat/theta/airlock/control) -"mDA" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"mDO" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/hallwaysouth) -"mDY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"mEb" = ( -/turf/open/mars_cave/mars_cave_9, -/area/corsat/sigma/biodome) -"mEr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"mEw" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/gamma/hangar) -"mEx" = ( -/obj/item/device/assembly/voice, -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"mEI" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "Sigma Dome Control"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/airlock/control) -"mEN" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "OmegaO"; - name = "Omega Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/biodome) -"mEX" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"mFf" = ( -/turf/open/floor/corsat/green/east, -/area/corsat/gamma/medbay/morgue) -"mFo" = ( -/obj/effect/alien/weeds/node, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"mFr" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"mFO" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast) -"mFW" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"mFY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"mGg" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"mGD" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth/id) -"mGS" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"mGX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/theta/airlock/control) -"mHe" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"mHD" = ( -/obj/structure/window/reinforced, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/airlock/south) -"mHH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/theta/airlock/control) -"mHJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"mHX" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"mIB" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"mIG" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/south/robotics) -"mIO" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/id) -"mIY" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"mJc" = ( -/obj/structure/machinery/door_control{ - id = "ThetaIDEC"; - name = "Privacy Shutters"; - pixel_y = -24; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "GammaSecC"; - name = "Security Shutters"; - pixel_x = 10; - pixel_y = -24; - use_power = 0 - }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"mJg" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/crate/science, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"mJn" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/south/engineering) -"mJx" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"mJX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/researcher) -"mKl" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/purple/east, -/area/corsat/gamma/biodome/complex) -"mKs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"mKB" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/scalpel/laser{ - pixel_y = 10 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"mKR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/north) -"mKU" = ( -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"mKY" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/administration) -"mLf" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/carpet13_5/west, -/area/corsat/gamma/administration) -"mLo" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/north) -"mLw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/hangar) -"mLG" = ( -/obj/structure/stairs, -/turf/open/floor/corsat/white/north, -/area/corsat/sigma/south) -"mLV" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"mLY" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaGrounds"; - name = "Testing Grounds" - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/sigma/biodome/testgrounds) -"mMc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/residential/researcher) -"mMg" = ( -/obj/structure/surface/table/reinforced, -/obj/item/newspaper, -/turf/open/floor/corsat/red, -/area/corsat/sigma/checkpoint) -"mMn" = ( -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"mMo" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/sigma/south/offices) -"mMz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"mNb" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"mNc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"mNz" = ( -/obj/structure/surface/table/reinforced, -/obj/item/phone, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"mNE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"mNF" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/gamma/administration) -"mNY" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering/lobby) -"mOa" = ( -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay/morgue) -"mOb" = ( -/turf/open/floor/corsat/browncorner/west, -/area/corsat/omega/hallways) -"mOg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"mOi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/toxins) -"mOl" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/security) -"mOz" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/syringes, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/virology) -"mOC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"mOK" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/checkpoint) -"mOL" = ( -/obj/structure/surface/rack, -/obj/item/cell, -/obj/item/cell, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"mOW" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/airlocknorth/id) -"mPy" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"mPK" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/morgue) -"mPP" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/checkpoint) -"mPQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"mPX" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/corsat/white/northeast, -/area/corsat/gamma/hallwaysouth) -"mQa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"mQd" = ( -/obj/structure/machinery/light, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/hangar/arrivals) -"mQh" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/dorms) -"mQw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/omega/complex) -"mQA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"mQI" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"mQL" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/white/southeast, -/area/corsat/sigma/dorms) -"mQX" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaGrounds"; - name = "Testing Grounds" - }, -/turf/open/floor/plating/warnplate/west, -/area/corsat/sigma/biodome/testgrounds) -"mQZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/airlock/east) -"mRi" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/hangar/checkpoint) -"mRw" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/freezer) -"mRC" = ( -/obj/effect/alien/weeds/node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/corsat/omega/biodome) -"mRV" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"mSf" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 - }, -/turf/open/floor/corsat/theta, -/area/corsat/theta/airlock/west) -"mSk" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"mSl" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/exosuit/peripherals/alice, -/obj/item/circuitboard/exosuit/main/alice, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"mSo" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/corsat/theta/biodome) -"mSq" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" - }, -/turf/open/floor/corsat/plate, -/area/corsat/inaccessible) -"mSw" = ( -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"mSK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Canteen" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"mSP" = ( -/turf/open/floor/corsat/greenwhitecorner, -/area/corsat/gamma/medbay) -"mTa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars, -/area/corsat/sigma/biodome) -"mTk" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"mTo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/cargo) -"mTs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"mTy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/north) -"mTB" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/omega/maint) -"mTN" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/biodome/virology) -"mTZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "OmegaAccessC"; - name = "Security Shutters" - }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"mUa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/datalab) -"mUm" = ( -/turf/open/mars_cave/mars_cave_22, -/area/corsat/sigma/biodome) -"mUp" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"mUB" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "18" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"mUD" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Robotics"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"mUG" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"mUU" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/south) -"mUV" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - damage_cap = 4000; - dir = 1; - name = "\improper Emergency Access"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"mUY" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"mVn" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"mVq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"mVR" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/hallwaysouth) -"mVY" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/omega/complex) -"mWd" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"mWq" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"mWu" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"mWx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/gamma/residential) -"mWK" = ( -/obj/structure/computer3frame/server{ - icon_state = "4" - }, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/sigma/south/complex) -"mWL" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"mWQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"mWW" = ( -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering/atmos) -"mXd" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/gamma/hangar/flightcontrol) -"mXx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/clothing/head/welding, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/control) -"mXD" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"mXN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/theta/biodome/complex) -"mXQ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"mXX" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/id) -"mYc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"mYg" = ( -/obj/structure/machinery/computer3, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"mYl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitecorner, -/area/corsat/gamma/residential/east) -"mYp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"mYs" = ( -/obj/structure/surface/table, -/obj/item/corncob, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"mYA" = ( -/turf/open/shuttle/dropship/light_grey_bottom_right, -/area/prison/hangar_storage/research/shuttle) -"mYC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"mZe" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"mZi" = ( -/obj/structure/surface/table, -/obj/item/book, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"mZp" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"mZz" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/hangar/office) -"mZF" = ( -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/rnr) -"mZK" = ( -/turf/open/mars_cave/mars_cave_18, -/area/corsat/sigma/biodome) -"mZN" = ( -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/hangar/monorail/control) -"mZT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/control) -"mZY" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"nah" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/shuttle/escapepod/floor5, -/area/corsat/theta/biodome/complex) -"nai" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars/mars_dirt_12, -/area/corsat/sigma/biodome) -"nap" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/south) -"naw" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/southeast/datamaint) -"naW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/computer/station_alert{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/administration) -"nba" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/dorms) -"nbf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars/mars_dirt_13, -/area/corsat/sigma/biodome) -"nbl" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy18" - }, -/area/prison/hangar_storage/research/shuttle) -"nbD" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/checkpoint) -"nbN" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat, -/area/corsat/sigma/hangar) -"nbP" = ( -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter/random, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"nbS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/mars, -/area/corsat/sigma/biodome) -"nbT" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/river, -/area/corsat/theta/biodome) -"ncd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/omega/security) -"nch" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/airlock/south/id) -"nck" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"ncn" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"ncw" = ( -/obj/structure/machinery/light, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/sigma/south/complex) -"ncA" = ( -/obj/structure/surface/rack, -/obj/item/implanter/neurostim, -/obj/item/implanter/neurostim, -/obj/item/implanter/adrenalin, -/obj/item/implanter/adrenalin, -/obj/item/implanter/loyalty, -/obj/item/implanter/loyalty, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"ncB" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/checkpoint) -"ncM" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar) -"ncT" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/black, -/area/corsat/gamma/hangar/monorail/railcart) -"ncY" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Office"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"nda" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"ndq" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"ndz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars/mars_dirt_11, -/area/corsat/sigma/biodome) -"ndD" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering) -"neb" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"nek" = ( -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/structure/closet/crate/freezer, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"nel" = ( -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/administration) -"net" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"neE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/browncorner/east, -/area/corsat/gamma/cargo) -"neY" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy19" - }, -/area/prison/hangar_storage/research/shuttle) -"nfd" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"nfl" = ( -/turf/open/floor/plating/warnplate/northwest, -/area/corsat/gamma/hangar) -"nfn" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"nfr" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/hallwaysouth) -"nfs" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"nfu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"nfz" = ( -/turf/closed/wall/resin/membrane, -/area/corsat/gamma/biodome) -"nfD" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/hangar) -"nfM" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/hangar/id) -"nga" = ( -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/rnr) -"ngb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/lobby) -"ngl" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"ngt" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/residential) -"ngw" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"ngA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/theta/airlock/control) -"ngB" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/floor/plating, -/area/corsat/sigma/biodome/testgrounds) -"ngD" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red, -/area/corsat/sigma/checkpoint) -"ngH" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"nhj" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/sigma/south/offices) -"nhL" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/virology) -"nhX" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"nif" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"nih" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" - }, -/turf/open/shuttle/escapepod/floor5, -/area/corsat/theta/biodome/complex) -"nis" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/south/security) -"niF" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/engineering/atmos) -"niN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential/researcher) -"niO" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south/id) -"njp" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"njx" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/sigma/southeast) -"njR" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"nka" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"nko" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purple/west, -/area/corsat/sigma/south) -"nkq" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/engineering) -"nkG" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/gamma/residential/researcher) -"nkY" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/blue/northwest, -/area/corsat/sigma/airlock/control) -"nkZ" = ( -/obj/item/device/binoculars, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "ThetaControl"; - name = "Observation Shutters"; - pixel_y = 5; - use_power = 0 - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/theta/airlock/control) -"nlm" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"nln" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"nlw" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/carpet14_10/west, -/area/corsat/omega/offices) -"nlx" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"nlH" = ( -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/gamma/administration) -"nma" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"nnr" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"nny" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"nnC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/ice, -/area/corsat/gamma/biodome) -"nnK" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/engineering/atmos) -"nnN" = ( -/obj/structure/machinery/meter, -/obj/structure/pipes/standard/simple/visible{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"nof" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"non" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/machinery/door/window/southleft{ - dir = 1; - layer = 2.8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"not" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"noT" = ( -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/foyer) -"npg" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"npi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"npm" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "RemoteGate"; - name = "Gate Shutters"; - use_power = 0 - }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/hangar/monorail) -"npq" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"npw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/administration) -"npx" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"npy" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"npC" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/south) -"npN" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"npO" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"npR" = ( -/obj/structure/machinery/lapvend, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"npS" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "15" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"npZ" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south) -"nqg" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/white, -/area/corsat/sigma/dorms) -"nqp" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/south) -"nqL" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/hallwaysouth) -"nqV" = ( -/obj/item/storage/box/masks, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/omega/complex) -"nqY" = ( -/turf/open/floor/corsat/red, -/area/corsat/theta/airlock/east/id) -"nqZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"nrh" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/dorms) -"nri" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"nsc" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"nsi" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/syringe/antiviral, -/obj/item/reagent_container/syringe/antiviral, -/obj/item/reagent_container/glass/beaker/vial, -/obj/item/reagent_container/glass/beaker/vial, -/obj/item/reagent_container/glass/beaker/vial, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"nsj" = ( -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/hallways) -"nsq" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "OmegaN"; - name = "Omega Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/airlocknorth) -"nsu" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/control) -"nsv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"nsC" = ( -/obj/structure/machinery/door/airlock/almayer/research{ - name = "\improper Containment Chambers"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"nsI" = ( -/turf/open/floor/corsat/blue/southwest, -/area/corsat/theta/airlock/control) -"nsK" = ( -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/airlock/south) -"nsY" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - damage_cap = 4000; - name = "\improper Emergency Access"; - req_access_txt = "100"; - req_one_access = null - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"ntc" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/red, -/area/corsat/omega/security) -"nti" = ( -/turf/open/mars_cave/mars_cave_22, -/area/corsat/sigma/biodome/gunrange) -"ntj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "OmegaAccessC"; - name = "Security Shutters"; - pixel_y = 5; - use_power = 0 - }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/checkpoint) -"ntn" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy13" - }, -/area/prison/hangar_storage/research/shuttle) -"ntt" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"ntu" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"ntv" = ( -/obj/structure/largecrate/supply/ammo/m39/half, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"ntH" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Flight Control" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"ntK" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datamaint) -"ntS" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"ntY" = ( -/turf/open/floor/corsat/browncorner/north, -/area/corsat/omega/hallways) -"nuz" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/brown/east, -/area/corsat/sigma/north) -"nuA" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/east/id) -"nuJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"nuM" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"nuS" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"nuV" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential/researcher) -"nvc" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/hangar/monorail) -"nvl" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/airlock/control) -"nvm" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"nvu" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay/surgery) -"nvv" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/omega/complex) -"nvw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"nvX" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/omega/offices) -"nwf" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/south) -"nwj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"nwM" = ( -/turf/open/floor/corsat/blue/southwest, -/area/corsat/sigma/south) -"nwP" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar) -"nxr" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"nxB" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/rnr) -"nxH" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"nxM" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"nyb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"nyS" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"nyT" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/south/offices) -"nyZ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"nzc" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/shuttle/black, -/area/corsat/gamma/hangar/monorail/railcart) -"nze" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/monorail/control) -"nzf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"nzN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"nzY" = ( -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/theta/airlock/east) -"nzZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"nAd" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/brown/northwest, -/area/corsat/gamma/cargo/disposal) -"nAl" = ( -/turf/open/floor/corsat, -/area/corsat/gamma/freezer) -"nAp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay) -"nAA" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/security) -"nAB" = ( -/obj/structure/bed, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security/cells) -"nAF" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"nAG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"nAK" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/cargo, -/area/corsat/omega/cargo) -"nBH" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/airlock/control) -"nBL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/control) -"nBS" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/hangar/security) -"nCk" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/omega/complex) -"nCn" = ( -/turf/open/mars_cave/mars_cave_14, -/area/corsat/sigma/biodome/scrapyard) -"nCq" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/greenwhite/northeast, -/area/corsat/gamma/medbay/lobby) -"nCu" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/residential) -"nCv" = ( -/obj/structure/machinery/door_control{ - id = "RemoteGateO"; - name = "Gate Shutters"; - pixel_y = 24; - use_power = 0 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"nCM" = ( -/turf/open/floor/plating/warnplate/east, -/area/corsat/gamma/hangar) -"nCR" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaO"; - name = "Dome Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/airlocknorth) -"nCW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"nCZ" = ( -/obj/item/cell/crap, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"nDg" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/binoculars, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"nDj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/robotic_fabricator, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"nDp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/corsat/gamma/cargo) -"nDL" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/colony_floodlight_switch{ - desc = "This switch controls the floodlights around the biodome. It only functions when there is power." - }, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/theta/airlock/control) -"nDU" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Teleportation Chamber"; - req_one_access_txt = "103" - }, -/turf/open/floor/almayer/plating/northeast, -/area/corsat/gamma/sigmaremote) -"nEb" = ( -/turf/open/floor/corsat/bluecorner, -/area/corsat/gamma/hangar/arrivals) -"nEd" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/sigma/southeast/datalab) -"nEm" = ( -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"nEp" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/south/engineering) -"nEu" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/virology) -"nEA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/sigma/dorms) -"nED" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars/mars_dirt_8, -/area/corsat/sigma/biodome) -"nEM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hallways) -"nES" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "riot cabinet"; - req_access_txt = "100" - }, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/south/security) -"nFc" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"nFr" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/hallwaysouth) -"nFC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datamaint) -"nFE" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay/surgery) -"nFI" = ( -/turf/open/floor/corsat/blue, -/area/corsat/gamma/hallwaysouth) -"nFR" = ( -/obj/structure/machinery/light, -/obj/item/clothing/mask/gas, -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"nGh" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"nGk" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"nGl" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"nGo" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"nGz" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"nGH" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Weapons Development"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"nGK" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"nGO" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat/brown/east, -/area/corsat/gamma/cargo/disposal) -"nGS" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"nHa" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/east) -"nHe" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Hangar Security"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/security) -"nHh" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/airlocknorth/id) -"nHu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"nHw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/airlock/control) -"nHB" = ( -/turf/open/mars_cave/mars_cave_13, -/area/corsat/sigma/biodome) -"nHK" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/theta/airlock/east) -"nHM" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/sigma/south/engineering) -"nHU" = ( -/obj/structure/surface/rack, -/obj/item/stock_parts/smes_coil, -/turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"nHX" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"nIj" = ( -/obj/structure/closet/l3closet/janitor, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/omega/maint) -"nIu" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/residential/maint) -"nIy" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"nIz" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/security) -"nIU" = ( -/obj/effect/alien/weeds/node, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"nJd" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/folder/black_random, -/turf/open/floor/carpet15_15/west, -/area/corsat/omega/offices) -"nJe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) -"nJf" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/hangar) -"nJr" = ( -/turf/open/floor/almayer/research/containment/corner/east, -/area/corsat/inaccessible) -"nJB" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/airlock/control) -"nJJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"nJL" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat/browncorner, -/area/corsat/omega/cargo) -"nJO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"nJU" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/airlock/south) -"nJW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/southeast) -"nKb" = ( -/turf/open/floor/asteroidwarning/west, -/area/corsat/sigma/biodome) -"nKe" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/purple/west, -/area/corsat/sigma/south) -"nKj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Baths" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential/showers) -"nKm" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) -"nKu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"nKF" = ( -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/rnr) -"nKU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"nLa" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/dorms) -"nLo" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"nLu" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/biodome/toxins) -"nLv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth/id) -"nLw" = ( -/obj/item/ashtray/bronze, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/administration) -"nLy" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/foyer) -"nLM" = ( -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/south) -"nLN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"nLZ" = ( -/obj/structure/machinery/biogenerator, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/theta/biodome/complex) -"nMk" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"nMq" = ( -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/gamma/rnr) -"nMt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"nMv" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/south/security) -"nMJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/brown/southwest, -/area/corsat/gamma/cargo/lobby) -"nMY" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaEastID"; - name = "Security Shutters"; - use_power = 0 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/airlock/east/id) -"nMZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/assembly/mousetrap, -/obj/item/device/assembly/mousetrap, -/obj/item/clothing/glasses/welding, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/engineering) -"nNf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south/id) -"nNm" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/sigma/south/complex) -"nNP" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hallways) -"nNT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"nNX" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plating/northeast, -/area/corsat/gamma/sigmaremote) -"nOq" = ( -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/sigma/airlock/south) -"nOA" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "8" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"nON" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"nOW" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/hangar) -"nOZ" = ( -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/virology) -"nPm" = ( -/turf/open/floor/corsat/whitetancorner/east, -/area/corsat/gamma/residential/researcher) -"nPx" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/greenwhite/northeast, -/area/corsat/gamma/medbay) -"nPZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/monorail/control) -"nQp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/arrow_south, -/area/corsat/sigma/hangar) -"nQK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/south/security) -"nQL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"nQR" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar) -"nQU" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/red, -/area/corsat/theta/airlock/control) -"nRB" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "CMO Office"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"nRI" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/sigmaremote) -"nRM" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/carpet6_2/west, -/area/corsat/gamma/residential/lounge) -"nSc" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"nSy" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/sigmaremote) -"nSN" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"nTd" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/virology) -"nTf" = ( -/turf/open/floor/corsat/purple, -/area/corsat/sigma/south) -"nTn" = ( -/turf/open/floor/corsat/blue/east, -/area/corsat/omega/control) -"nTx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/theta/biodome/complex) -"nTI" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) -"nUc" = ( -/obj/item/bananapeel, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"nUe" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/red, -/area/corsat/sigma/airlock/south/id) -"nUh" = ( -/turf/open/floor/almayer/tcomms, -/area/corsat/gamma/sigmaremote) -"nUl" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"nUq" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/south/security) -"nUw" = ( -/obj/structure/closet/l3closet/general, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"nUS" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"nUW" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "8" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"nVb" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/atmos) -"nVg" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/datalab) -"nVu" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/latex, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/gamma/biodome/complex) -"nVv" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/sigma/south/robotics) -"nVG" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"nVR" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"nVS" = ( -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"nVY" = ( -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/omega/offices) -"nWh" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/snack_bowl, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"nWx" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"nWW" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/omega/maint) -"nXk" = ( -/turf/open/floor/corsat/bluegrey, -/area/corsat/theta/airlock/east) -"nXZ" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/omega/complex) -"nYf" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/hangar/security) -"nYl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"nYs" = ( -/turf/open/floor/plating/warnplate, -/area/corsat/sigma/hangar) -"nYw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"nYL" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/security) -"nYR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/hangar/security) -"nYY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHCargoS"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/id) -"nZk" = ( -/obj/structure/bedsheetbin, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"nZz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/checkpoint) -"nZO" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"nZR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"nZV" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/white/north, -/area/corsat/sigma/dorms) -"oaj" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"oao" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering) -"oaz" = ( -/turf/open/floor/corsat/brown, -/area/corsat/omega/cargo) -"oaA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"obe" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"obn" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/item/clothing/glasses/welding, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"obq" = ( -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"obs" = ( -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/omega/containment) -"obv" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/gamma/airlock/control) -"oby" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"obH" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/airlock/control) -"obM" = ( -/turf/open/floor/corsat/theta, -/area/corsat/theta/airlock/east) -"obY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/hallways) -"och" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"ock" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/theta/airlock/control) -"ocq" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/sigma/south/complex) -"ocH" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"ocM" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"ocS" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/omega/checkpoint) -"odg" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/airlock/control) -"odj" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"odA" = ( -/turf/open/floor/corsat/blue/northwest, -/area/corsat/gamma/hallwaysouth) -"odI" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/hallways) -"odU" = ( -/obj/structure/stairs{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"oef" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"oeo" = ( -/obj/structure/machinery/atm{ - pixel_y = -30 - }, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/foyer) -"oep" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"oer" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/gamma/hangar/arrivals) -"oex" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering) -"oez" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/rnr) -"oeJ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "OmegaOffice"; - name = "Privacy Shutters" - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"oeP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"oeS" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"oeX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"ofb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar) -"ofm" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/morgue) -"ofu" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/hallwaysouth) -"ofx" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/security) -"oge" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"ogr" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/sigma/south/complex) -"ogD" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/datamaint) -"ogF" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/theta/airlock/west) -"ogG" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/hangar/checkpoint) -"ogN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"ogY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars/mars_dirt_11, -/area/corsat/sigma/biodome) -"ohg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security) -"ohJ" = ( -/obj/structure/surface/rack, -/obj/item/xeno_restraints, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"ohR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"ohX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"ohZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/landmark/railgun_camera_pos, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"oiu" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/corsat, -/area/corsat/sigma/south/engineering) -"oiQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"oiV" = ( -/obj/structure/surface/rack, -/obj/item/device/toner, -/obj/item/device/toner, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/residential/maint) -"oju" = ( -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/cargo) -"ojH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"ojY" = ( -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/theta/biodome/complex) -"ojZ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"okk" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/sigma/dorms) -"okB" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" - }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/checkpoint) -"okK" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/material, -/obj/structure/machinery/door/window/eastright{ - name = "Prototype Racks"; - req_access_txt = "103" - }, -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"okO" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/pillbottles, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/toxins) -"okQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"okT" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"okX" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/airlock/east/id) -"olb" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Holding Cell 1"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/office) -"old" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/sigma/airlock/control) -"olg" = ( -/obj/structure/bed/nest, -/turf/open/mars_cave/mars_cave_11, -/area/corsat/sigma/biodome) -"olk" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/stack/sheet/metal{ - pixel_x = 3 - }, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/theta/biodome/complex) -"olp" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/hallwaysouth) -"olY" = ( -/obj/effect/alien/weeds/node, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/almayer/research/containment/floor2, -/area/corsat/inaccessible) -"omq" = ( -/obj/structure/largecrate/supply/ammo/m41a/half, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"omB" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow/west, -/area/corsat/theta/airlock/control) -"omU" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/checkpoint) -"omW" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/omega/offices) -"ong" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"onh" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/southeast/dataoffice) -"onl" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"onn" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/airlock/north) -"onq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/south/offices) -"onu" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/surgicaldrill, -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/sigmaremote) -"onw" = ( -/obj/structure/machinery/door_control{ - id = "GammaBioAtmos"; - name = "Access Shutters"; - pixel_y = -24 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"onB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"onS" = ( -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/researcher) -"onT" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/brown/north, -/area/corsat/omega/cargo) -"ooi" = ( -/obj/item/folder/black_random, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"ooz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/corsat/gamma/sigmaremote) -"ooA" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"ooF" = ( -/obj/structure/bed/stool, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay/chemistry) -"ooN" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"ooQ" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar) -"ooR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"ooX" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"opc" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/south/security) -"opv" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/administration) -"opy" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/darkgreen/southeast, -/area/corsat/gamma/residential) -"opG" = ( -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/omega/offices) -"opK" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_y = 24 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/biodome/complex) -"opP" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/administration) -"opU" = ( -/obj/structure/target, -/obj/item/clothing/suit/storage/militia, -/turf/open/mars_cave/mars_cave_13, -/area/corsat/sigma/biodome/gunrange) -"opW" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars, -/area/corsat/sigma/biodome) -"oqd" = ( -/obj/structure/window/reinforced, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"oqf" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/security) -"oqj" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"oqo" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 32 - }, -/turf/open/floor/corsat/purplecorner, -/area/corsat/omega/airlocknorth) -"oqx" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/containment) -"oqG" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/rnr) -"oqH" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/biodome/complex) -"oqJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"oqK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"oqU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/office) -"orp" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"orI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer1, -/area/corsat/gamma/biodome) -"orN" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/east) -"orR" = ( -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/theta/biodome/complex) -"osd" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/theta/biodome/complex) -"osh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"osu" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/sigma/south/security) -"osC" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Engineering Storage"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"osK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"osY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"ote" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/omega/hallways) -"otf" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/security/armory) -"ots" = ( -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/gamma/canteen) -"otv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/white/northwest, -/area/corsat/gamma/residential) -"oty" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "GammaCargo"; - name = "Gamma Cargo Bay"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/cargo) -"oug" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/corsat/red, -/area/corsat/omega/airlocknorth) -"oun" = ( -/obj/structure/surface/rack, -/obj/item/xeno_restraints, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"our" = ( -/obj/item/cell/crap, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential/researcher) -"ouJ" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purple/southwest, -/area/corsat/omega/complex) -"ouK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/south/security) -"ouN" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/gamma/hangar) -"ouT" = ( -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"ovb" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"ovf" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/security) -"ovk" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/canteen) -"ovl" = ( -/obj/structure/stairs, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"ovo" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/hangar/office) -"ovu" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"own" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat/whitetancorner, -/area/corsat/gamma/residential/west) -"owt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"owA" = ( -/obj/structure/closet/secure_closet/cargotech, -/turf/open/floor/corsat/brown/southeast, -/area/corsat/sigma/cargo) -"owJ" = ( -/obj/structure/surface/rack, -/obj/item/tank/air, -/obj/item/tank/air, -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"owK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/south/offices) -"owM" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"owN" = ( -/obj/item/cell/super/empty, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"owW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"oxg" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/sigma/south) -"oxh" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/north) -"oxl" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"oxv" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"oxz" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/sigma/hangar) -"oxK" = ( -/turf/open/floor/corsat/greencorner/west, -/area/corsat/gamma/hallwaysouth) -"oxR" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/obj/item/tool/stamp, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo/lobby) -"oye" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/browncorner/west, -/area/corsat/sigma/cargo) -"oyf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"oyr" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaNorthN"; - name = "Airlock Control"; - pixel_x = -5; - pixel_y = 6; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "GammaNorthS"; - name = "Airlock Control"; - pixel_x = -5; - pixel_y = -3; - use_power = 0 - }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/airlock/north) -"oyw" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"oyD" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/omega/hallways) -"oyL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/airlock/control) -"oyP" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/west/id) -"oyU" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering) -"oyY" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/ashtray/bronze, -/turf/open/floor/carpet15_15/west, -/area/corsat/omega/offices) -"ozb" = ( -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/southeast/datalab) -"ozd" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay) -"ozx" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"ozD" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"ozR" = ( -/turf/open/space/transit/east/shuttlespace_ew10, -/area/corsat/sigma/hangar/monorail/railcart_transit) -"oAb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"oAh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_11, -/area/corsat/sigma/biodome) -"oAj" = ( -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/omega/complex) -"oAl" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/southeast/generator) -"oAA" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"oAI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/cargo) -"oAK" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"oAQ" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydrowest) -"oAV" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/south/offices) -"oBk" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/sigma/south) -"oBt" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Cables" - }, -/obj/structure/cryofeed/right{ - color = "silver"; - desc = "A bewildering tangle of machinery and pipes."; - name = "\improper coolant feed" - }, -/turf/open/shuttle/escapepod/floor5, -/area/corsat/theta/biodome/complex) -"oBu" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"oBS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/flightcontrol) -"oCf" = ( -/turf/open/floor/corsat/purple/north, -/area/corsat/omega/airlocknorth) -"oCu" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"oCS" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"oCV" = ( -/obj/structure/machinery/cm_vending/sorted/tech/science, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/biodome/toxins) -"oDb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Research Complex Sigma"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"oDk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/security) -"oDs" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "6" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"oDL" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/white/northwest, -/area/corsat/gamma/residential/east) -"oDV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"oDY" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hangar/security) -"oEj" = ( -/obj/effect/landmark/corpsespawner/wysec, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"oEk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"oEq" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"oEH" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/checkpoint) -"oEK" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/residential/lounge) -"oER" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/checkpoint) -"oEW" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/plating/warnplate/west, -/area/corsat/sigma/hangar) -"oEX" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/security) -"oFa" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydroeast) -"oFc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar) -"oFj" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/omega/airlocknorth/id) -"oFu" = ( -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/theta/biodome/hydrowest) -"oFv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"oFG" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"oFI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Chemistry"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"oFJ" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/sigma/south/complex) -"oFP" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/brown/west, -/area/corsat/sigma/cargo) -"oFU" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat, -/area/corsat/sigma/cargo) -"oGb" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red, -/area/corsat/omega/security) -"oGx" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/spiralplate, -/area/corsat/theta/airlock/east) -"oGz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"oGI" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/corsat, -/area/corsat/sigma/south/robotics) -"oGY" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"oGZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hallways) -"oHd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/cargo) -"oHs" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/cargo) -"oHA" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 - }, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/airlock/control) -"oHD" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Office"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"oHG" = ( -/obj/structure/closet/secure_closet/guncabinet/riot_control, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"oHY" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"oIb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/complex) -"oIc" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/blue, -/area/corsat/gamma/airlock/control) -"oIo" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaHCargoN"; - name = "Gamma Cargo Checkpoint"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar/cargo) -"oIw" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/administration) -"oIH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/rnr) -"oIL" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/hallways) -"oIM" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/sigma/south) -"oIS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"oIT" = ( -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/airlock/control) -"oIU" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/residential/researcher) -"oIW" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/hangar/monorail) -"oJn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"oJF" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"oJI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/space_heater, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) -"oJJ" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/south/id) -"oJX" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential) -"oKi" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat/yellow/north, -/area/corsat/omega/maint) -"oKt" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/cargo) -"oKz" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"oKN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"oLe" = ( -/obj/structure/flora/jungle/alienplant1, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"oLg" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/almayer/research/containment/floor2, -/area/corsat/inaccessible) -"oLp" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"oLu" = ( -/obj/structure/machinery/light, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) -"oLG" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Gamma Dome Control"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"oLI" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/mars, -/area/corsat/sigma/biodome) -"oLW" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/arrivals) -"oLZ" = ( -/obj/structure/surface/rack, -/obj/item/cell/hyper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"oMk" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"oMr" = ( -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"oMt" = ( -/turf/open/floor/corsat/whitecorner/west, -/area/corsat/gamma/residential/east) -"oMK" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/omega, -/area/corsat/omega/control) -"oMT" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/thermal, -/obj/structure/machinery/door/window/eastright{ - name = "Prototype Racks"; - req_access_txt = "103" - }, -/obj/structure/window/reinforced/toughened, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"oMV" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"oMY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"oNh" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/administration) -"oOa" = ( -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/gamma/hangar/office) -"oOc" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/researcher) -"oOw" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Telecommunications"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/telecomm) -"oOx" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/corsat/white/north, -/area/corsat/sigma/south) -"oOy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/airlock/control) -"oOI" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/airlock/control) -"oOR" = ( -/obj/structure/surface/table, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"oOT" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/theta/airlock/west) -"oPl" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/administration) -"oPq" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat, -/area/corsat/sigma/dorms) -"oPr" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/welding/superior, -/obj/structure/machinery/door/window/eastright{ - name = "Prototype Racks"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"oPx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential/east) -"oPK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"oPN" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/security) -"oPP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/corsat/gamma/sigmaremote) -"oQa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/gm/river/desert/shallow/pool, -/area/corsat/gamma/residential/showers) -"oQc" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/flightcontrol) -"oQh" = ( -/obj/item/stack/sheet/metal, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"oQF" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"oQM" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"oQZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/north) -"oRa" = ( -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/control) -"oRf" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/theta/airlock/east) -"oRr" = ( -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/sigma/airlock/south) -"oRu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_cave_9, -/area/corsat/sigma/biodome) -"oSh" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/sigmaremote) -"oSl" = ( -/obj/structure/machinery/bioprinter{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"oSv" = ( -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/theta/biodome/complex) -"oSQ" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"oSS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"oSX" = ( -/turf/open/floor/corsat/red, -/area/corsat/omega/checkpoint) -"oTP" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Engineering Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Engineering Desk"; - req_access_txt = "13" - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering/lobby) -"oTZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential) -"oUb" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/red, -/area/corsat/omega/hallways) -"oUc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/arrow_west, -/area/corsat/sigma/hangar) -"oUr" = ( -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/gamma/hallwaysouth) -"oUx" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/obj/item/tool/stamp, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/lobby) -"oUJ" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"oUN" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/checkpoint) -"oVq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"oVF" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"oWa" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/biodome/virology) -"oWh" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/dorms) -"oWv" = ( -/turf/open/floor/corsat/purple/west, -/area/corsat/gamma/biodome/complex) -"oWB" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/sigma/dorms) -"oWP" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"oWW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"oXa" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"oXt" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/whitetan/southeast, -/area/corsat/gamma/canteen) -"oXz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/control) -"oXG" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/white/southwest, -/area/corsat/gamma/residential) -"oXU" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat/purple, -/area/corsat/sigma/south) -"oXX" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/tcomms/southwest, -/area/corsat/sigma/south/complex) -"oYc" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/hangar/security) -"oYq" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/plating/warnplate, -/area/corsat/sigma/hangar) -"oYu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/explosive/grenade/custom/metal_foam, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"oYx" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"oYR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/control) -"oYW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"oZf" = ( -/obj/structure/window/reinforced, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Forensics" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/security) -"oZk" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"oZn" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaEastID2"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/airlock/east/id) -"oZy" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"oZA" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/restraint/handcuffs/zip, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/security) -"oZB" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"oZE" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/airlock/control) -"oZO" = ( -/obj/structure/machinery/door_control{ - id = "GammaEastW"; - name = "Airlock Control"; - pixel_x = -5; - use_power = 0 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaEastE"; - name = "Airlock Control"; - pixel_x = 5; - use_power = 0 - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/airlock/control) -"oZW" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"paa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"pab" = ( -/obj/structure/machinery/optable, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"pac" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"paA" = ( -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/residential/researcher) -"paC" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/sigma/southeast/dataoffice) -"paE" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/hangar/monorail) -"paF" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/security) -"paH" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"paZ" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/monorail) -"pbf" = ( -/obj/structure/showcase{ - icon_state = "bus" - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"pbi" = ( -/obj/structure/machinery/message_server, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"pbn" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"pbE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"pbP" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/canteen) -"pbT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"pbV" = ( -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"pbZ" = ( -/turf/open/floor/corsat/greencorner, -/area/corsat/gamma/medbay/morgue) -"pcc" = ( -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/gamma/hangar/office) -"pch" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat/squares, -/area/corsat/theta/biodome/complex) -"pcl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Airlock Control"; - req_access_txt = "102" - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/east) -"pcm" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay) -"pct" = ( -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential) -"pcv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/purplecorner/west, -/area/corsat/sigma/south) -"pcw" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "GammaBioAtmos"; - name = "Access Shutter" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"pcO" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/sigma/hangar) -"pcP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"pcT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/engineering/lobby) -"pdg" = ( -/turf/open/space/transit/east/shuttlespace_ew10, -/area/space) -"pdm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/greenwhite/southwest, -/area/corsat/gamma/medbay) -"pdq" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/airlock/control) -"pdy" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"pdE" = ( -/turf/open/floor/corsat/green, -/area/corsat/gamma/hallwaysouth) -"pdJ" = ( -/obj/structure/sign/safety/high_rad{ - pixel_x = 32 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"pdQ" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo) -"peo" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"peq" = ( -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/airlock/control) -"pet" = ( -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/north) -"pey" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8; - layer = 2.8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"pez" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/airlock/east/id) -"peB" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/arrivals) -"peF" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "riot cabinet"; - req_access_txt = "100" - }, -/obj/item/restraint/handcuffs, -/obj/item/restraint/handcuffs, -/turf/open/floor/corsat/red, -/area/corsat/omega/checkpoint) -"peI" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/gamma/residential) -"peU" = ( -/obj/structure/showcase{ - icon_state = "hub"; - name = "Telecommunication Hub" - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"pff" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"pfh" = ( -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/residential/researcher) -"pfC" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"pfD" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering) -"pgb" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/security) -"pgj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"pgo" = ( -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/theta/airlock/east) -"pgq" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/dataoffice) -"pgO" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"pgQ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"pgR" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"phe" = ( -/obj/structure/target/syndicate, -/turf/open/mars_cave/mars_cave_17, -/area/corsat/sigma/biodome/gunrange) -"phi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar) -"phu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"phH" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) -"phJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; - pixel_x = 30 - }, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay) -"phU" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"pib" = ( -/obj/structure/stairs{ - dir = 4 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/hallwaysouth) -"pig" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/sigma/south/complex) -"pio" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/foyer) -"piO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 1 - }, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/omega/control) -"piZ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat, -/area/corsat/gamma/residential/researcher) -"pjk" = ( -/obj/structure/surface/table, -/obj/item/folder, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"pjB" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/id) -"pjC" = ( -/obj/structure/machinery/light, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/cargo) -"pjJ" = ( -/obj/structure/computerframe, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"pjN" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/north/id) -"pjO" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/south/engineering) -"pjS" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - name = "Cargo Bay"; - req_one_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"pkc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"pkg" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/north) -"pkM" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"pkN" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/blue/northeast, -/area/corsat/sigma/airlock/control) -"pkR" = ( -/obj/item/tool/stamp/hop, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/administration) -"pli" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/computer/cameras{ - network = list("theta") - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/control) -"plu" = ( -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/gamma/hallwaysouth) -"plz" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail) -"plA" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"plH" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydroeast) -"plI" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/north) -"plK" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"plV" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"pmL" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/effect/landmark/corpsespawner/wysec, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/security) -"pmO" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/corsat/white/north, -/area/corsat/sigma/dorms) -"pmS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"pmT" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/cargo) -"pmV" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"pmX" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/dataoffice) -"pmZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan, -/area/corsat/sigma/dorms) -"pni" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"pno" = ( -/obj/structure/surface/table/reinforced, -/obj/item/bananapeel{ - name = "tactical banana peel" - }, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/sigma/south/complex) -"pnt" = ( -/obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/corsat, -/area/corsat/omega/complex) -"pny" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"pnC" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"pnI" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/airlock/east/id) -"pnL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"pnQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/corsat/theta/biodome) -"pow" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/maint) -"poy" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/gamma/airlock/north) -"poI" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"poK" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/east) -"poL" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "SigmaGate"; - name = "Gate Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/south/complex) -"poM" = ( -/turf/open/floor/plating/warnplate/northeast, -/area/corsat/omega/hangar) -"poN" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"poT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/evidencebag, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/security) -"ppk" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/sigma/south/complex) -"ppn" = ( -/turf/open/floor/corsat/bluecorner, -/area/corsat/sigma/south) -"ppq" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"pps" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/southeast/datalab) -"ppt" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"ppA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"ppI" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/assembly/infra, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/engineering) -"ppM" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"ppN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/southeast) -"ppP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/corsat/gamma/biodome) -"pqm" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/theta/biodome/complex) -"pqo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"pqw" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/airlock/south) -"pra" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/control) -"pre" = ( -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/gamma/hangar/flightcontrol) -"prh" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"prp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"prI" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"prQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/maint) -"psi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"psl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"pso" = ( -/obj/effect/landmark/corpsespawner/pmc, -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth) -"psr" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/southeast/generator) -"psV" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"psW" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/trash/popcorn, -/turf/open/floor/corsat/brown, -/area/corsat/omega/cargo) -"pth" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/tcomms/southwest, -/area/corsat/gamma/sigmaremote) -"pto" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"ptv" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/browncorner/north, -/area/corsat/gamma/cargo/disposal) -"ptw" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/meson, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"ptQ" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Virology Lab"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"puf" = ( -/obj/structure/tunnel{ - id = "hole4" - }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"puz" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/engineering) -"puG" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"puO" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/airlock/control) -"puQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"puT" = ( -/obj/item/device/taperecorder, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/security) -"puX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"pvA" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"pvC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/shuttle/escapepod/floor1, -/area/corsat/theta/biodome/complex) -"pvD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"pvG" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"pvK" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/complex) -"pvO" = ( -/obj/structure/stairs{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"pvZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave/mars_cave_12, -/area/corsat/sigma/biodome) -"pwp" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1; - icon_state = "single_ends" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"pwr" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/sigma/dorms) -"pww" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/omega/airlocknorth/id) -"pwx" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"pwM" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) -"pwT" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/sigma/southeast/datalab) -"pxa" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/southeast/dataoffice) -"pxc" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/robotics) -"pxo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/biodome/complex) -"pxz" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"pxD" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/sigma/south/complex) -"pxT" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"pya" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"pyh" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/obj/item/organ/heart, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"pyl" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"pyo" = ( -/obj/structure/machinery/computer/skills{ - dir = 4 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"pyp" = ( -/obj/structure/surface/rack, -/obj/item/tank/air, -/obj/item/tank/air, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/airlock/control) -"pyC" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/south/offices) -"pyG" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/hangar/monorail/control) -"pyI" = ( -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/hangar/arrivals) -"pyV" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/airlocknorth/id) -"pyW" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/obj/structure/closet/wardrobe/toxins_white, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) -"pzb" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/officesquares, -/area/corsat/theta/airlock/east) -"pze" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"pzl" = ( -/turf/open/floor/corsat/purple/northwest, -/area/corsat/gamma/biodome/complex) -"pzo" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/security) -"pzq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"pzC" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/sigma/dorms) -"pzM" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/residential/maint) -"pzN" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo) -"pzS" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"pAj" = ( -/turf/open/floor/corsat/blue, -/area/corsat/sigma/south) -"pAr" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/residential/maint) -"pAv" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security/cells) -"pAS" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"pAZ" = ( -/turf/open/floor/corsat/blue, -/area/corsat/sigma/north) -"pBi" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/maint) -"pBC" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"pBD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/assembly/signaller, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"pBE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar) -"pBS" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/morgue) -"pBZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/juicer, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"pCc" = ( -/obj/structure/surface/table, -/obj/item/storage/donut_box, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"pCp" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/airlocknorth) -"pCA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"pCB" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaDSC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/north/id) -"pCQ" = ( -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) -"pCV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering) -"pDa" = ( -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/hallways) -"pDj" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering) -"pDl" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/omega/control) -"pDs" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"pDy" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/radiation, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/sigma/south/complex) -"pDz" = ( -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/hangar/arrivals) -"pDA" = ( -/obj/structure/surface/table/almayer, -/obj/item/restraint/handcuffs, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"pDE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"pDM" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast) -"pDN" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth) -"pDR" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/biodome) -"pDW" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/sigma/southeast/dataoffice) -"pDY" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/omega/maint) -"pEq" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"pEw" = ( -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"pEA" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - id = "OmegaHangarW"; - name = "Landing Bay Omega" - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/hangar/security) -"pES" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/sigma/dorms) -"pFg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/security) -"pFj" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"pFs" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar) -"pFv" = ( -/turf/open/floor/corsat/arrow_west, -/area/corsat/omega/hangar) -"pFG" = ( -/obj/structure/morgue/crematorium{ - id = "CORSAT Crema" - }, -/obj/structure/machinery/crema_switch{ - id = "CORSAT Crema"; - pixel_x = 28; - pixel_y = 28; - req_one_access_txt = "2;8;19" - }, -/turf/open/floor/corsat/green/north, -/area/corsat/gamma/medbay/morgue) -"pFO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"pFY" = ( -/turf/open/floor/corsat/arrow_north, -/area/corsat/sigma/cargo) -"pFZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"pGh" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"pGq" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) -"pGB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Bar Rear" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/bar) -"pGJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"pGS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/corsat/sigma/south/complex) -"pHD" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert{ - dir = 1 - }, -/turf/open/floor/corsat/blue/southeast, -/area/corsat/gamma/airlock/control) -"pHE" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"pHR" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "11" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"pIg" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"pIj" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"pIo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/residential/lounge) -"pIC" = ( -/obj/structure/surface/table/reinforced, -/obj/item/form_printer, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"pII" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/airlock/control) -"pJd" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/omega/control) -"pJf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat/brown/southeast, -/area/corsat/sigma/cargo) -"pJj" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"pJk" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/researcher) -"pJA" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/arrivals) -"pJB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"pJP" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"pJW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/blue/east, -/area/corsat/theta/airlock/control) -"pKu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/white/top, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"pKB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"pKG" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"pKW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"pKY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/southeast/generator) -"pLb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/tcomms/southwest, -/area/corsat/sigma/south/complex) -"pLe" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/researcher) -"pLj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"pLO" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHangarC-S"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/security) -"pLY" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - dir = 1; - name = "Quartermaster's Office"; - req_one_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"pMa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/theta/biodome/complex) -"pMb" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"pMm" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"pMo" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar) -"pMp" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south) -"pMr" = ( -/obj/structure/surface/rack, -/obj/item/stock_parts/capacitor/super, -/turf/open/floor/corsat/yellow/north, -/area/corsat/omega/maint) -"pMG" = ( -/obj/structure/surface/table/almayer, -/obj/item/phone, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/southeast/datalab) -"pMJ" = ( -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/theta/biodome/hydroeast) -"pMK" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"pNf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"pNm" = ( -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/sigma/southeast/dataoffice) -"pNL" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"pNM" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"pNP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Data Office"; - req_access_txt = "102;103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/dataoffice) -"pNT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"pNV" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"pOg" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/west/id) -"pOs" = ( -/obj/structure/machinery/colony_floodlight{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"pOD" = ( -/obj/structure/machinery/botany/extractor, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"pOX" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/freezer) -"pPc" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"pPn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"pPu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/gamma/residential/east) -"pPA" = ( -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/red, -/area/corsat/sigma/south/security) -"pPJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars/mars_dirt_3, -/area/corsat/sigma/biodome) -"pPN" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"pPO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"pPS" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"pPZ" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/obj/item/organ/eyes, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"pQb" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"pQh" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/powercell, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"pQk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"pQm" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/southeast/dataoffice) -"pQE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/cargo) -"pRa" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/brown/north, -/area/corsat/sigma/cargo) -"pRj" = ( -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/hallwaysouth) -"pRl" = ( -/turf/open/floor/corsat, -/area/corsat/omega/maint) -"pRH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"pRQ" = ( -/obj/structure/machinery/door/window/northleft, -/obj/structure/machinery/door/window/southleft, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"pRU" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"pRV" = ( -/turf/open/floor/corsat/purplecorner/west, -/area/corsat/gamma/residential) -"pRY" = ( -/obj/structure/safe, -/obj/item/device/locator, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/sigmaremote) -"pSm" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/foyer) -"pSo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer2, -/area/corsat/gamma/biodome) -"pSx" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Custodial Closet"; - req_one_access = null - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"pSz" = ( -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/west) -"pSF" = ( -/obj/structure/machinery/computer/pandemic, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/biodome/virology) -"pSH" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/airlock/control) -"pSQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/residential/maint) -"pSZ" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"pTh" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/foyer) -"pTp" = ( -/turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"pTv" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/hangar/monorail/control) -"pTP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/omega, -/area/corsat/omega/hallways) -"pTQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/ripley_build_and_repair, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"pUD" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"pUO" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) -"pVh" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/theta/airlock/west/id) -"pVi" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"pVq" = ( -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"pVx" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security) -"pVE" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/residential/maint) -"pVV" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/white/northwest, -/area/corsat/gamma/residential) -"pVY" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"pWo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair, -/turf/open/floor/corsat/brown/north, -/area/corsat/sigma/cargo) -"pWR" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/corsat/theta/biodome) -"pXf" = ( -/turf/open/floor/corsat/browncorner/north, -/area/corsat/omega/cargo) -"pXp" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"pXx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"pXA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"pXX" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/id) -"pYc" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/hangar/monorail/control) -"pYm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast) -"pYn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/security) -"pYD" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/residential/maint) -"pYE" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"pYJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"pYY" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/airlock/control) -"pZd" = ( -/obj/structure/surface/rack, -/obj/item/evidencebag, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/security) -"pZh" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/foyer) -"pZx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"pZJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/security) -"pZP" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/north) -"pZY" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/hallways) -"qal" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/gamma/hangar) -"qaq" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/west) -"qaK" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Hydroponics"; - req_one_access = null - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"qaN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"qaX" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 1 - }, -/obj/structure/machinery/door/window/westright{ - name = "Weapon Rack" - }, -/obj/item/weapon/gun/smg/mp5, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"qbh" = ( -/obj/structure/machinery/power/reactor/colony{ - desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; - name = "\improper G-17 Thermoelectric Generator" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"qbi" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar/security) -"qbj" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/south/robotics) -"qbn" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"qbo" = ( -/obj/structure/surface/rack, -/obj/item/tank/air, -/obj/item/tank/air, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat/yellow/west, -/area/corsat/theta/airlock/control) -"qbv" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/glass, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"qbx" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"qbz" = ( -/obj/structure/surface/table, -/obj/item/book, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"qbL" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"qbR" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/hangar/security) -"qbV" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHangarC-E"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/security) -"qcd" = ( -/obj/structure/machinery/chem_dispenser{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"qch" = ( -/obj/item/paper/crumpled, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"qck" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/security) -"qcn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"qcu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/gamma/foyer) -"qcx" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"qcC" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"qcD" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"qcE" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential) -"qcJ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay/lobby) -"qcW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential) -"qdb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"qdk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/purple/west, -/area/corsat/sigma/south) -"qdn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/theta/airlock/control) -"qdt" = ( -/obj/item/reagent_container/spray/cleaner, -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"qdB" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/syringe_case/regular, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/omega/complex) -"qdN" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/checkpoint) -"qdV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/monorail/control) -"qdX" = ( -/turf/open/floor/corsat/brown/north, -/area/corsat/gamma/hallwaysouth) -"qey" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/white, -/area/corsat/sigma/dorms) -"qfe" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Toxins"; - name = "Toxins Lockdown" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "Toxins Lab"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) -"qfk" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/brown/east, -/area/corsat/sigma/cargo) -"qfm" = ( -/turf/open/floor/corsat/yellow/north, -/area/corsat/omega/control) -"qfp" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "OmegaOffice"; - name = "Privacy Shutters" - }, -/turf/open/floor/plating, -/area/corsat/omega/offices) -"qfq" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/engineering) -"qfE" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/airlock/control) -"qfH" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"qfX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/virology) -"qfY" = ( -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"qfZ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/hangar/office) -"qga" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/sigma/dorms) -"qgi" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/theta/biodome/complex) -"qgz" = ( -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"qgG" = ( -/turf/open/floor/corsat/brown/northeast, -/area/corsat/omega/cargo) -"qgV" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/hallwaysouth) -"qgX" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/south/robotics) -"qgZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "GammaHangarH"; - name = "Hangar Lockdown"; - pixel_x = 5; - pixel_y = 2; - use_power = 0 - }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/hangar/office) -"qhc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/lobby) -"qhj" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"qhx" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, -/area/corsat/gamma/hangar/monorail/railcart) -"qhB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/darkgreen/northwest, -/area/corsat/gamma/hangar/arrivals) -"qhF" = ( -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/researcher) -"qhK" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"qhX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Bar" - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr/bar) -"qhZ" = ( -/obj/structure/showcase{ - icon_state = "broadcaster_send" - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"qie" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan/southeast, -/area/corsat/gamma/residential/west) -"qig" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"qiN" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"qiO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/residential/west) -"qji" = ( -/obj/structure/machinery/shower, -/obj/structure/machinery/door/window/southleft{ - opacity = 1 - }, -/obj/item/tool/soap, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"qjk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) -"qjn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/beakers, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"qjt" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/checkpoint) -"qjN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) -"qjU" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/checkpoint) -"qko" = ( -/turf/open/floor/corsat/arrow_west, -/area/corsat/gamma/hangar) -"qkt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"qkT" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/corsat/greenwhite/northwest, -/area/corsat/gamma/medbay/morgue) -"qlk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/sigma/hangar/arrivals) -"qln" = ( -/turf/open/floor/plating/warnplate, -/area/prison/hangar_storage/research/shuttle) -"qlx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"qlB" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"qlJ" = ( -/obj/structure/pipes/unary/freezer, -/turf/open/shuttle/escapepod/floor4, -/area/corsat/theta/biodome/complex) -"qlN" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/security/cells) -"qmq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/engineering) -"qmu" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/omega/maint) -"qmy" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"qmH" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "RemoteGateO"; - name = "Gate Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/sigmaremote) -"qmK" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"qmS" = ( -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/gamma/hangar/arrivals) -"qnc" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/hangar/office) -"qnk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"qnq" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/southeast/generator) -"qnu" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/theta/biodome/complex) -"qny" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/foyer) -"qnI" = ( -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/sigma/dorms) -"qnS" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/theta/biodome/complex) -"qnU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"qob" = ( -/turf/open/floor/corsat/blue/northeast, -/area/corsat/sigma/southeast/datalab) -"qof" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"qoh" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"qoq" = ( -/obj/structure/coatrack, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"qoz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/theta/biodome/complex) -"qoL" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/warnplate/west, -/area/corsat/gamma/hangar) -"qoR" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar) -"qoX" = ( -/obj/structure/fence, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"qpj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"qpl" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/airlock/south/id) -"qpp" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/cargo, -/area/corsat/omega/hangar) -"qpr" = ( -/turf/open/mars/mars_dirt_11, -/area/corsat/sigma/biodome) -"qpu" = ( -/turf/open/floor/corsat/brown, -/area/corsat/sigma/cargo) -"qpS" = ( -/turf/open/floor/corsat/greenwhitecorner/west, -/area/corsat/gamma/medbay/morgue) -"qpV" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"qpX" = ( -/obj/structure/sink, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"qqi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/flightcontrol) -"qqm" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/greenwhite/northwest, -/area/corsat/gamma/medbay/lobby) -"qqK" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/omega/airlocknorth) -"qqQ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("omega") - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"qqU" = ( -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/administration) -"qra" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"qrf" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"qrl" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full, -/obj/item/device/multitool, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/southeast/datamaint) -"qrp" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/flightcontrol) -"qrs" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/biodome/complex) -"qry" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"qrL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/core) -"qrV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/bar) -"qsk" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"qsv" = ( -/obj/structure/coatrack, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"qsD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar/monorail/control) -"qtd" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/checkpoint) -"qtf" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"qtg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"qtu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/atmos) -"qtG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/pen/red, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/administration) -"qtW" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/east/id) -"qub" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/plating/warnplate, -/area/corsat/sigma/hangar) -"quc" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/monorail) -"quo" = ( -/obj/structure/machinery/door/airlock/dropship_hatch/monorail{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"quA" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/canteen) -"quC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/hangar/security) -"quF" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/engineering) -"quG" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"quR" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"quV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"qve" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/security) -"qvv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"qvE" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail) -"qvF" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Reactor Core"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"qvO" = ( -/turf/open/floor/corsat/green/north, -/area/corsat/gamma/hallwaysouth) -"qvV" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/south/security) -"qvZ" = ( -/turf/open/floor/corsat/purple/west, -/area/corsat/gamma/residential) -"qwb" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"qwh" = ( -/obj/structure/window/reinforced, -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"qwo" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/sigma/south/robotics) -"qwu" = ( -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/surgery) -"qwz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"qwA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/hangar/office) -"qwC" = ( -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/south/offices) -"qwF" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/airlock/control) -"qwY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"qxe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"qxg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluecorner, -/area/corsat/theta/airlock/control) -"qxm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/theta/airlock/east) -"qxI" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/robot_module/butler, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/robotics) -"qxW" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/id) -"qyk" = ( -/turf/open/floor/corsat/omega, -/area/corsat/omega/hangar) -"qyw" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Hangar Security"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"qyL" = ( -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"qyU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/southeast/generator) -"qzr" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/obj/structure/platform, -/turf/open/floor/corsat/white/southwest, -/area/corsat/gamma/hallwaysouth) -"qzB" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/control) -"qzM" = ( -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/sigma/hangar/arrivals) -"qzN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"qzX" = ( -/turf/open/floor/corsat/cargo, -/area/corsat/omega/cargo) -"qAl" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/biodome) -"qAy" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome/gunrange) -"qAE" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/datamaint) -"qAF" = ( -/obj/structure/window/framed/corsat/research, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"qAK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/researcher) -"qAV" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"qAY" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) -"qBm" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"qBY" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/sigma/hangar/arrivals) -"qCe" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/beakers, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"qCf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/chemistry) -"qCu" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Research Desk" - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/complex) -"qCG" = ( -/obj/structure/surface/rack, -/obj/item/tank/air, -/obj/item/tank/air, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/airlock/control) -"qCX" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"qDb" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"qDj" = ( -/obj/structure/machinery/door/window/eastright, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"qDs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_14, -/area/corsat/sigma/biodome) -"qDt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"qDu" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/hallwaysouth) -"qDx" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"qDy" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" - }, -/turf/open/floor/corsat/plate, -/area/corsat/inaccessible) -"qDz" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"qDF" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/checkpoint) -"qDS" = ( -/turf/open/mars_cave/mars_cave_8, -/area/corsat/sigma/biodome/scrapyard) -"qDV" = ( -/obj/structure/closet/secure_closet/medical2{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"qDW" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/omega/security) -"qEc" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/checkpoint) -"qEd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"qEC" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/gamma/residential) -"qEG" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("theta") - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"qEQ" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"qER" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/corsat/sigma/biodome) -"qFh" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"qFl" = ( -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/sigma/dorms) -"qFq" = ( -/obj/structure/surface/table/woodentable, -/obj/item/newspaper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"qFy" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/hangar/office) -"qFD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"qFF" = ( -/obj/structure/surface/rack, -/obj/item/cell/high, -/obj/item/cell/high, -/obj/item/cell/high, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/residential/maint) -"qFY" = ( -/turf/open/floor/corsat/arrow_south, -/area/corsat/sigma/hangar) -"qGg" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "specimen control cabinet"; - req_access_txt = "103" - }, -/obj/item/weapon/gun/flamer, -/obj/item/explosive/grenade/incendiary, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/hangar/security) -"qGw" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/south/offices) -"qGz" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, -/area/corsat/theta/biodome) -"qGI" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "GammaSouthN"; - name = "Gamma South Airlock" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/south) -"qGP" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/handcuffs, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/security/armory) -"qHe" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/rnr) -"qHp" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/omega/maint) -"qHt" = ( -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"qHw" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/theta/airlock/east/id) -"qHV" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/hangar/monorail) -"qHX" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/airlock/control) -"qIc" = ( -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/gamma/sigmaremote) -"qIf" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"qIk" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/research/containment/entrance/west, -/area/corsat/inaccessible) -"qIs" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("sigma") - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/airlock/east) -"qIy" = ( -/obj/structure/machinery/meter, -/obj/structure/pipes/standard/simple/visible{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"qIz" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"qIC" = ( -/obj/structure/surface/rack, -/obj/item/tool/soap, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"qIU" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/inaccessible) -"qJc" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"qJe" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"qJl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"qJr" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/hangar/security) -"qJu" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/sigmaremote) -"qJC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/residential/researcher) -"qJF" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"qJH" = ( -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/core) -"qJX" = ( -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/sigma/hangar/monorail) -"qJZ" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/floor/corsat, -/area/corsat/omega/complex) -"qKc" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"qKo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/hangar/id) -"qKq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"qKv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/hangar) -"qKA" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/robot_module/surgeon, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"qKI" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"qKU" = ( -/turf/open/floor/asteroidwarning/west, -/area/corsat/sigma/biodome/scrapyard) -"qLe" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/hallways) -"qLj" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering/atmos) -"qLp" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, -/area/corsat/gamma/hangar/monorail/railcart) -"qLu" = ( -/obj/item/reagent_container/glass/bucket, -/obj/item/reagent_container/glass/bucket, -/obj/structure/surface/table/almayer, -/obj/item/tool/minihoe, -/obj/item/tool/hatchet, -/obj/item/tool/shovel/spade, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/theta/biodome/complex) -"qLz" = ( -/obj/structure/prop/mech/tesla_energy_relay, -/turf/open/floor/corsat, -/area/corsat/sigma/south/robotics) -"qLF" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/administration) -"qLR" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar) -"qMe" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"qMf" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/marked, -/area/corsat/omega/airlocknorth) -"qMq" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/theta/airlock/control) -"qMP" = ( -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"qMW" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"qNh" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/sigmaremote) -"qNm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"qNq" = ( -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/lobby) -"qNr" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/security) -"qNv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south/id) -"qNw" = ( -/obj/item/trash/burger, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"qNx" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/sigma/north) -"qNM" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"qOb" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile{ - id = "GammaCheckpointS"; - name = "Gamma Checkpoint"; - unacidable = 1 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar/checkpoint) -"qOc" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/beakers, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"qOf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"qOm" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"qOn" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/security) -"qOv" = ( -/obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"qOC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/complex) -"qOL" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"qON" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"qOR" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"qOV" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/head/welding, -/obj/item/tool/weldingtool, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/south/robotics) -"qPc" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/airlocknorth/id) -"qPl" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"qPr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"qPA" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/airlock/control) -"qPI" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"qPO" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/north) -"qPQ" = ( -/turf/open/mars/mars_dirt_9, -/area/corsat/sigma/biodome) -"qPR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/engineering) -"qPW" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/south/security) -"qQa" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"qQg" = ( -/turf/open/floor/wood, -/area/corsat/theta/biodome/complex) -"qQi" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/north/id) -"qQs" = ( -/obj/structure/machinery/pipedispenser, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"qQv" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south/security) -"qQw" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/sigmaremote) -"qQN" = ( -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"qQV" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"qRA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/structure/machinery/door/window/brigdoor/eastleft, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"qRI" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"qRV" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/south) -"qSc" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/bluegrey, -/area/corsat/omega/offices) -"qSf" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaGrounds"; - name = "Testing Grounds" - }, -/turf/open/floor/plating/warnplate/east, -/area/corsat/sigma/biodome/testgrounds) -"qSi" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/airlock/east/id) -"qSo" = ( -/obj/item/trash/candy, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"qSq" = ( -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"qSC" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"qSN" = ( -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/administration) -"qTh" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/cable_coil, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/south/engineering) -"qTo" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"qTp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/foyer) -"qTt" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/phoron, -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 8; - id_tag = "mix_sigma_out" - }, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/biodome/toxins) -"qTw" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/whitetancorner, -/area/corsat/gamma/residential/west) -"qTH" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/south/id) -"qUi" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/omega/offices) -"qUn" = ( -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"qUr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/arrow_north, -/area/corsat/gamma/cargo) -"qUB" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/airlock/control) -"qUJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/omega/control) -"qUL" = ( -/turf/open/mars_cave/mars_cave_16, -/area/corsat/sigma/biodome/gunrange) -"qUM" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"qUN" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"qVa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/airlock/control) -"qVh" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"qVj" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"qVp" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/hangar/id) -"qVs" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("theta") - }, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"qVx" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"qVD" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/toy/deck/uno, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"qVH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) -"qWb" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/theta/airlock/control) -"qWg" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"qWn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"qWp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/tcomms/southwest, -/area/corsat/gamma/sigmaremote) -"qWr" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/residential) -"qWs" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"qWt" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/engineering) -"qXg" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/airlock/control) -"qXj" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintenance Closet"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) -"qXq" = ( -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/gamma/residential/west) -"qXv" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigar, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"qXz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/brown/southwest, -/area/corsat/omega/cargo) -"qXA" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hangar/security) -"qXM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/residential) -"qXN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"qYe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"qYg" = ( -/turf/open/mars_cave/mars_cave_23, -/area/corsat/sigma/biodome/gunrange) -"qYh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/omega/control) -"qYC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/containment) -"qYF" = ( -/obj/structure/target, -/obj/structure/target, -/obj/structure/target, -/obj/structure/target, -/obj/structure/target, -/obj/structure/target, -/obj/structure/closet/crate{ - desc = "A rectangular steel crate containing firing targets."; - name = "target crate" - }, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"qYN" = ( -/turf/open/floor/asteroidwarning/east, -/area/corsat/sigma/biodome/gunrange) -"qYO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"qYP" = ( -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/south/robotics) -"qZf" = ( -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/theta/biodome/complex) -"qZn" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Theta Dome Control" - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/theta/airlock/control) -"qZI" = ( -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydrowest) -"qZZ" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering) -"raf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") - }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/security) -"ran" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"raz" = ( -/obj/structure/machinery/door_control{ - id = "SigmaEastW"; - name = "Airlock Control"; - pixel_x = -5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "SigmaEastE"; - name = "Airlock Control"; - pixel_x = 5; - use_power = 0 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/sigma/airlock/east) -"raI" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"raJ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering) -"raN" = ( -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/gamma/hangar/arrivals) -"rbf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"rbh" = ( -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"rbt" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/monorail/control) -"rbA" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/hangar/flightcontrol) -"rbJ" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHCargoN"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/hangar/id) -"rcd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_6, -/area/corsat/sigma/biodome) -"rcg" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"rcm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/airlock/south/id) -"rct" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/airlocknorth) -"rcY" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/chemistry) -"rdj" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/control) -"rds" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/airlock/control) -"rdz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar) -"rdX" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/hangar/cargo) -"rea" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/control) -"rek" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"reo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/airlock/control) -"req" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"reN" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Lounge"; - req_one_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/theta/biodome/complex) -"rfe" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/offices) -"rfB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/brown/west, -/area/corsat/sigma/cargo) -"rfR" = ( -/obj/structure/machinery/door/airlock/almayer/research{ - name = "\improper Xeno Autopsy"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"rfW" = ( -/turf/open/floor/corsat/purple/southeast, -/area/corsat/omega/complex) -"rgr" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/west/id) -"rgG" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"rgJ" = ( -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/omega/complex) -"rhe" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "1" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"rhz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"rhK" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"rhM" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "24" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"rhO" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"rhT" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"rir" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"riG" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/residential/maint) -"riL" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/hangar/monorail) -"rjt" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"rjC" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/theta/airlock/east) -"rjF" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/hangar/security) -"rjT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"rjZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/cell/secborg, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"rka" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) -"rkb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"rkp" = ( -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"rks" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/engineering) -"rky" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/residential/west) -"rkV" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"rkX" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"rkZ" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/virology) -"rlr" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"rlB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"rlI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"rlM" = ( -/obj/structure/surface/rack, -/obj/item/device/transfer_valve, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"rlW" = ( -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"rmf" = ( -/obj/item/weapon/gun/pistol/mod88, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/weapon/gun/pistol/mod88, -/obj/structure/surface/rack, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/south/security) -"rmp" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"rmr" = ( -/obj/effect/landmark/yautja_teleport, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"rmy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"rmB" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"rmK" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/carpet14_10/west, -/area/corsat/gamma/biodome/complex) -"rmW" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/hangar/arrivals) -"rne" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/blue, -/area/corsat/theta/airlock/control) -"rnf" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/sigma/airlock/east) -"rnh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/checkpoint) -"rnj" = ( -/obj/item/storage/fancy/cigar, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"rnr" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo/lobby) -"rnI" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"rnQ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/structure/machinery/door/window/brigdoor/eastleft, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"rnT" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay) -"rob" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/south/engineering) -"roc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"roz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"roS" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/engineering/lobby) -"rpf" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/sigma/hangar) -"rpv" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/omega/control) -"rpE" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/east) -"rpG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"rpJ" = ( -/obj/structure/bed, -/obj/structure/machinery/light, -/obj/item/bedsheet, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"rpN" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/chem_dispenser/soda/beer{ - dir = 8; - pixel_x = 15 - }, -/obj/item/reagent_container/food/drinks/drinkingglass, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/bar) -"rpO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"rpZ" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"rqf" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/dorms) -"rqg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"rqi" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/green/north, -/area/corsat/gamma/hallwaysouth) -"rqp" = ( -/turf/open/floor/corsat/darkgreen/northeast, -/area/corsat/gamma/hangar/monorail) -"rqz" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"rrb" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/corsat/inaccessible) -"rrt" = ( -/turf/open/floor/corsat/plate, -/area/corsat/omega/maint) -"rrH" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"rrN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"rsb" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Data Maintainence"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datamaint) -"rsc" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/east) -"rsn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetancorner/east, -/area/corsat/sigma/dorms) -"rsN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) -"rsR" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/blue/east, -/area/corsat/theta/airlock/control) -"rsS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"rta" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/obj/structure/surface/table/almayer, -/obj/item/evidencebag, -/obj/item/evidencebag, -/obj/item/evidencebag, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/security/cells) -"rtj" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Firing Range"; - req_one_access_txt = "106;102;103"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"rtw" = ( -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"rtH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars/mars_dirt_3, -/area/corsat/sigma/biodome) -"rtR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Administration Office" - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"rua" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars/mars_dirt_12, -/area/corsat/sigma/biodome) -"ruc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"ruz" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"ruE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"ruG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"ruV" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/hallwaysouth) -"rvd" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/south/security) -"rvl" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/browncorner/east, -/area/corsat/sigma/cargo) -"rvs" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay) -"rvv" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/brown/west, -/area/corsat/sigma/cargo) -"rvO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/cargo) -"rwc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"rwf" = ( -/obj/structure/machinery/botany/editor, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"rwo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"rww" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/obj/structure/closet/wardrobe/medic_white, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"rwM" = ( -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hallways) -"rxf" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"rxj" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigar, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/omega/offices) -"rxp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"rxx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"rxI" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/hangar/office) -"rxN" = ( -/obj/structure/surface/table/almayer, -/obj/item/form_printer, -/obj/item/tool/pen, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/omega/complex) -"rxO" = ( -/turf/open/floor/corsat/omega, -/area/corsat/omega/airlocknorth) -"rxQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/sigma/dorms) -"rxS" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/plating/warnplate, -/area/corsat/gamma/hangar) -"rye" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "delta_gamma"; - name = "Gamma Emergency Access"; - pixel_x = -5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "delta_gamma2"; - name = "Checkpoint Gamma"; - pixel_x = 5; - use_power = 0 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"ryi" = ( -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/hangar/monorail) -"ryq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"ryH" = ( -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/hallwaysouth) -"ryS" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/airlock/south) -"rzf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar) -"rzh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security/cells) -"rzm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/control) -"rzr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"rzy" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"rzG" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"rzL" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/gamma/rnr) -"rzR" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"rzY" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/checkpoint) -"rAh" = ( -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/residential/lounge) -"rAP" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"rAV" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"rAY" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"rBu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/form_printer, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/omega/complex) -"rBR" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/southeast/dataoffice) -"rBS" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/airlock/east) -"rCf" = ( -/obj/item/paper, -/obj/item/tool/pen/red, -/obj/item/tool/stamp/rd, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet7_3/west, -/area/corsat/gamma/administration) -"rCg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/hangar) -"rCm" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass{ - reason = "Visitor" - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"rCn" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"rCC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"rCG" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/cargo) -"rCR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/hangar) -"rDb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/gamma/administration) -"rDi" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/brown/southwest, -/area/corsat/sigma/cargo) -"rDm" = ( -/obj/structure/machinery/bot/cleanbot, -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydrowest) -"rDq" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/control) -"rDs" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/corsat/greenwhitecorner/north, -/area/corsat/gamma/medbay) -"rDv" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/south/id) -"rDw" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/hangar/monorail) -"rDx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/theta/airlock/control) -"rDA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"rDC" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/blue/northeast, -/area/corsat/sigma/hangar) -"rDD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars/mars_dirt_9, -/area/corsat/sigma/biodome) -"rDM" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"rDS" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/theta/biodome/hydroeast) -"rDT" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/explosive/grenade/custom/antiweed, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"rDU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/hallways) -"rDX" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"rEg" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/east/id) -"rEi" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"rEj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"rEO" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"rEP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"rES" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/southeast/datamaint) -"rFg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"rFn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"rFu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluecorner, -/area/corsat/sigma/southeast/datalab) -"rFE" = ( -/obj/structure/surface/rack, -/obj/item/cell/high, -/obj/item/cell/high, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/southeast/datamaint) -"rFF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/arrivals) -"rFN" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"rGe" = ( -/turf/open/floor/corsat/browncorner/east, -/area/corsat/gamma/hallwaysouth) -"rGh" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/gunrange) -"rGo" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/hangar/security) -"rGz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/security_empty{ - name = "Warden's Locker" - }, -/obj/item/clothing/head/beret/sec/warden, -/obj/item/clothing/mask/fakemoustache, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/security) -"rGB" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"rGR" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"rHq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"rHK" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/hallwaysouth) -"rIe" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/obj/structure/machinery/door/window/southleft{ - dir = 4; - layer = 2.8 - }, -/obj/item/tool/soap, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"rIf" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 8 - }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/airlock/control) -"rIo" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/hangar/monorail) -"rIx" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"rIz" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/security) -"rID" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/chocolatebar, -/obj/item/reagent_container/food/snacks/chocolatebar, -/obj/item/reagent_container/food/snacks/chocolatebar, -/obj/item/reagent_container/food/snacks/chocolatebar, -/obj/item/reagent_container/food/snacks/chocolatebar, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"rIG" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Toilet Unit"; - req_access_txt = "100"; - req_one_access_txt = "0" - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/biodome/complex) -"rJa" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"rJc" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/syringes, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/toxins) -"rJo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"rJF" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/chem_dispenser/soda{ - dir = 8; - pixel_x = 15 - }, -/obj/item/reagent_container/food/drinks/shaker, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/bar) -"rJP" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/security) -"rJS" = ( -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/hydrowest) -"rKb" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"rKO" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"rKS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"rKW" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/south) -"rLm" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hydroponics) -"rLo" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south) -"rLt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/omega/control) -"rLK" = ( -/obj/structure/machinery/door_control{ - id = "SigmaGate"; - name = "Gate Shutters"; - pixel_y = 24; - use_power = 0 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"rLM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/theta/biodome/complex) -"rLU" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Waste Tank Control" - }, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/airlock/control) -"rMq" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/ice, -/area/corsat/gamma/biodome) -"rMz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"rMB" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/north) -"rMP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"rMT" = ( -/turf/open/floor/corsat/greenwhitecorner/east, -/area/corsat/gamma/medbay/lobby) -"rMU" = ( -/obj/structure/foamed_metal, -/turf/open/floor/corsat, -/area/corsat/sigma/dorms) -"rNh" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"rNi" = ( -/obj/structure/machinery/door_control{ - id = "GammaSecC"; - name = "Security Shutters"; - pixel_x = 25; - use_power = 0 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/security) -"rNq" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"rNz" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"rNQ" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/corsat/sigma/hangar) -"rNT" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"rNW" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/airlock/control) -"rOa" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/security) -"rOb" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"rOf" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/sigma/airlock/south) -"rOo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"rOp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"rOu" = ( -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/residential) -"rOA" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/security) -"rOJ" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/security/armory) -"rOR" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"rOT" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/toxins) -"rOZ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/complex) -"rPp" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/administration) -"rPB" = ( -/obj/item/paper/crumpled, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/sigma/south/complex) -"rPE" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/rnr) -"rPL" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"rQr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/airlock/south/id) -"rQu" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/south/offices) -"rQy" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"rQI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"rQO" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"rQV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"rRj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "CORSAT Library" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"rRA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/gamma/residential/east) -"rRH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/theta/airlock/control) -"rRJ" = ( -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/residential) -"rRP" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/omega/offices) -"rRR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/corsat/theta/biodome) -"rRZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/airlock/control) -"rSl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"rSn" = ( -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/theta/airlock/east) -"rSr" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/sigmaremote) -"rSG" = ( -/obj/structure/machinery/computer/cameras{ - network = list("gamma"); - pixel_y = 22 - }, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"rSW" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/sigmaremote) -"rTj" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"rTs" = ( -/obj/item/weapon/gun/flamer, -/obj/item/explosive/grenade/incendiary, -/obj/structure/closet/secure_closet/guncabinet{ - name = "specimen control cabinet"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"rTD" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/residential/showers) -"rTK" = ( -/turf/open/floor/corsat/bluecorner, -/area/corsat/sigma/hangar/monorail) -"rTW" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"rUi" = ( -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/sigma/hangar/office) -"rUk" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/checkpoint) -"rUo" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/sigma/southeast/datalab) -"rUp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"rUq" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"rUt" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay) -"rUC" = ( -/turf/open/floor/plating/warnplate/west, -/area/corsat/sigma/hangar) -"rUH" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"rVw" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"rVJ" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/residential/maint) -"rVY" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/airlock/south/id) -"rWe" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/sigmaremote) -"rWg" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/gamma/hangar/monorail) -"rWH" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/sigma/southeast/datamaint) -"rWL" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential/researcher) -"rWS" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/southeast) -"rWU" = ( -/obj/structure/janitorialcart, -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydroeast) -"rWX" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/toxins) -"rXh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"rXR" = ( -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/residential) -"rXU" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/office) -"rYi" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay/lobby) -"rYl" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/theta/airlock/control) -"rYo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/residential) -"rYv" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/control) -"rYw" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/cargo) -"rYJ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/sigma/south/security) -"rYK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Laboratory"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"rYR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/north) -"rYY" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/southeast) -"rZb" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"rZf" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"rZl" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"rZm" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"rZs" = ( -/turf/open/floor/plating/warnplate/west, -/area/corsat/omega/hangar) -"rZv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"rZw" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"rZE" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/robot_module/engineering, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/south/robotics) -"rZN" = ( -/turf/open/floor/plating/warnplate/east, -/area/corsat/omega/hangar) -"rZY" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"sao" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"sap" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat, -/area/corsat/sigma/southeast/generator) -"saW" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Holding Cell 2"; - req_access_txt = "101" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHolding2"; - name = "Holding Cell 2" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"saX" = ( -/turf/open/mars_cave/mars_cave_23, -/area/corsat/sigma/biodome) -"saZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/security) -"sbc" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/gamma/hallwaysouth) -"sbd" = ( -/turf/open/floor/carpet9_4/west, -/area/corsat/gamma/administration) -"sbg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay) -"sbk" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/containment) -"sbl" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"sbq" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"sbE" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"sbH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"sbK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"sbO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/bluecorner, -/area/corsat/gamma/airlock/control) -"scf" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"scl" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"scG" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/hallways) -"scU" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/hydroeast) -"scW" = ( -/turf/open/floor/corsat/brown/southwest, -/area/corsat/gamma/cargo) -"sdj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydrowest) -"sdr" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/rnr) -"sdu" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"sdD" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/cargo) -"sdE" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/airlock/north) -"sdK" = ( -/obj/structure/bed/chair/comfy, -/turf/open/shuttle/black, -/area/corsat/gamma/hangar/monorail/railcart) -"sdO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"sdT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/airlock/control) -"sdZ" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/north/id) -"sef" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/foyer) -"sem" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"seT" = ( -/turf/open/floor/corsat/brown/northwest, -/area/corsat/omega/cargo) -"sfk" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/virology) -"sfp" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"sfx" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"sfz" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay) -"sfS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome) -"sfY" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) -"sgc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/airlock/control) -"sge" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/sigma/dorms) -"sgo" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/east/id) -"sgw" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/containment) -"sgy" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaSouthS"; - name = "Airlock Control"; - pixel_x = 5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "SigmaSouthN"; - name = "Airlock Control"; - pixel_x = -5; - use_power = 0 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"sgR" = ( -/turf/open/mars_cave/mars_cave_22, -/area/corsat/sigma/biodome/scrapyard) -"sgT" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"sgZ" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/engineering) -"shh" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ - id = "delta_theta"; - name = "Theta Emergency Access"; - use_power = 0 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"shi" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/theta/biodome/complex) -"shO" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"sil" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/southeast/datamaint) -"sim" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/tcomms/southwest, -/area/corsat/sigma/south/complex) -"sis" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"sit" = ( -/obj/structure/surface/rack, -/obj/item/device/binoculars, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"siu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/coast/east, -/area/corsat/theta/biodome) -"siA" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/theta/airlock/control) -"siL" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Toxins"; - name = "Toxins Lockdown" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/toxins) -"siO" = ( -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/residential/west) -"siQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/sigmaremote) -"siS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"siX" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"sjb" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering/core) -"sjc" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"sje" = ( -/turf/open/floor/corsat/white/east, -/area/corsat/sigma/dorms) -"sjj" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/night, -/obj/structure/machinery/door/window/eastright{ - name = "Prototype Racks"; - req_access_txt = "103" - }, -/obj/structure/window/reinforced/toughened, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"sjp" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - dir = 1; - name = "Cargo Bay"; - req_one_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"sjq" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/security/armory) -"sjr" = ( -/obj/structure/fence, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"sjC" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"sjQ" = ( -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/airlock/control) -"sjT" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"sjU" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" - }, -/obj/structure/prop/almayer/missile_tube{ - color = "grey"; - desc = "An linear accelerator used in experimental genetic treatments. It hums ominously."; - icon_state = "missiletubesouth"; - name = "\improper genetic LINAC system"; - pixel_x = -15 - }, -/turf/open/shuttle/escapepod/floor1, -/area/corsat/theta/biodome/complex) -"skt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"skS" = ( -/obj/item/toy/spinningtoy{ - desc = "It echoed loudly within him because he was hollow at the core." - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"skT" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"slb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"slg" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor/carpet14_10/west, -/area/corsat/gamma/administration) -"slk" = ( -/turf/open/mars/mars_dirt_14, -/area/corsat/sigma/biodome) -"slo" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Teleportation Lab"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"slx" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"slB" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/core) -"slC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/complex) -"slF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"slN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) -"slQ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"smb" = ( -/turf/open/floor/corsat/cargo, -/area/corsat/omega/hangar) -"smj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagent_analyzer, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"smC" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/theta/airlock/east) -"smP" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"sng" = ( -/obj/effect/alien/weeds/node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"sni" = ( -/obj/structure/machinery/processor, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/theta/biodome/complex) -"sno" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/hangar/checkpoint) -"sny" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/rnr) -"snS" = ( -/mob/living/carbon/human/yiren, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"sok" = ( -/obj/structure/machinery/processor, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"son" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/security) -"soC" = ( -/obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/hydroeast) -"soF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail/control) -"soT" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"soY" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/sigma/south/complex) -"spa" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/monorail/control) -"spt" = ( -/turf/open/floor/corsat/whitetancorner, -/area/corsat/gamma/residential/researcher) -"spJ" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"spU" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"spW" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/biodome/toxins) -"sqc" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/gamma/residential/maint) -"sqd" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/sigma/hangar/arrivals) -"sqf" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/hangar/id) -"sqh" = ( -/obj/structure/window/reinforced, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/administration) -"sqj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar/security) -"sqn" = ( -/obj/structure/machinery/colony_floodlight{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"sqp" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/theta/biodome/hydroeast) -"sqr" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"squ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"sqV" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/gamma/hangar/arrivals) -"sqX" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/airlocknorth/id) -"srb" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "19" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"srk" = ( -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/hallwaysouth) -"srv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"ssl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydrowest) -"sst" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"ssu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"ssw" = ( -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"ssF" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"ssQ" = ( -/obj/structure/bed/nest, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"std" = ( -/turf/open/floor/corsat/red, -/area/corsat/sigma/airlock/east/id) -"ste" = ( -/turf/open/floor/plating/platingdmg3/west, -/area/corsat/sigma/biodome/testgrounds) -"stw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Hangar Office"; - req_access_txt = "106" - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/office) -"stx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/sigma/hangar/monorail) -"stN" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/sigma/southeast) -"stV" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/cargo) -"stX" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"sub" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"suf" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"sul" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"sus" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"suA" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"suD" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"suN" = ( -/turf/open/floor/corsat/whitetancorner, -/area/corsat/gamma/residential/west) -"svg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"svh" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/sigma/airlock/south) -"svJ" = ( -/turf/open/floor/corsat/whitecorner, -/area/corsat/gamma/residential) -"svK" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/west/id) -"svZ" = ( -/turf/open/floor/corsat/browncorner/west, -/area/corsat/omega/cargo) -"swa" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"swk" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/camera, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"swu" = ( -/obj/structure/machinery/door/airlock/dropship_hatch/monorail{ - dir = 1 - }, -/turf/open/shuttle/black, -/area/corsat/gamma/hangar/monorail/railcart) -"swO" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/foyer) -"swP" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/dataoffice) -"swS" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/cargotech, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/cargo) -"swU" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Custorial Closet"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/maint) -"swZ" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/security) -"sxh" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/sigma/south/offices) -"sxl" = ( -/obj/structure/safe, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"sxy" = ( -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay) -"sxF" = ( -/obj/structure/machinery/door_control{ - id = "GammaSecC"; - name = "Security Shutters"; - pixel_y = -25; - use_power = 0 - }, -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/hangar/security) -"sxV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"sxZ" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"syg" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/biodome/toxins) -"syj" = ( -/turf/open/mars_cave/mars_cave_17, -/area/corsat/sigma/biodome/gunrange) -"syo" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"syp" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/sigma/airlock/control) -"syr" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/airlock/control) -"syF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/theta/biodome/complex) -"syI" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/inaprovaline{ - pixel_x = 7 - }, -/obj/item/storage/pill_bottle/dexalin, -/obj/item/storage/pill_bottle/antitox{ - pixel_x = -5 - }, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay/chemistry) -"syN" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/hangar) -"syX" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/airlock/east) -"szi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"szk" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/hangar/checkpoint) -"szu" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/red/northwest, -/area/corsat/theta/airlock/control) -"szK" = ( -/obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"szV" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/researcher) -"sAc" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"sAj" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"sAp" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/gamma/airlock/north) -"sAq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Hub"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"sAw" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("theta") - }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/theta/airlock/west) -"sAC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Laboratory"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"sAR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/sigma/south/complex) -"sAZ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"sBg" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/theta/airlock/control) -"sBi" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/theta/airlock/east) -"sBC" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/omega/checkpoint) -"sBO" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") - }, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/monorail/control) -"sBT" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"sCh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/wardrobe/toxins_white, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) -"sCs" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"sCv" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "GammaSouthID"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/south/id) -"sCG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/residential) -"sDg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"sDi" = ( -/obj/structure/pipes/vents/pump, -/turf/open/mars, -/area/corsat/sigma/biodome) -"sDk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_15, -/area/corsat/sigma/biodome) -"sDM" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/hangar/checkpoint) -"sDN" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"sDQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/chef_recipes, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"sEf" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Data Laboratory"; - req_access_txt = "106;102;103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/datalab) -"sEn" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Flight Control" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"sEv" = ( -/obj/item/broken_device, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"sED" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"sEU" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/hallwaysouth) -"sEV" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/sigma/south) -"sFf" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Pool" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"sFh" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/office) -"sFl" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave/mars_cave_23, -/area/corsat/sigma/biodome/scrapyard) -"sFr" = ( -/obj/structure/closet, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/morgue) -"sFy" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar) -"sFz" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/theta/airlock/east) -"sFF" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/ice, -/area/corsat/gamma/biodome) -"sFL" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/gamma/foyer) -"sFR" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"sFS" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"sGi" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/hangar/cargo) -"sGp" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"sGu" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/security) -"sGB" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"sGH" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "ThetaEastW"; - name = "Theta East Airlock" - }, -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ - id = "map_lockdown"; - name = "Theta Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/east) -"sGQ" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"sHd" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"sHe" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"sHf" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/maint) -"sHg" = ( -/obj/structure/surface/rack, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"sHh" = ( -/turf/open/floor/corsat/theta, -/area/corsat/omega/checkpoint) -"sHw" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/gamma/hallwaysouth) -"sHJ" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"sHK" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/omega/complex) -"sHT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"sHU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"sIc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/biodome/complex) -"sIh" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - name = "Reception Desk"; - req_one_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo/lobby) -"sIv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast) -"sIB" = ( -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/theta/biodome/hydrowest) -"sJg" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy17" - }, -/area/prison/hangar_storage/research/shuttle) -"sJl" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/south/robotics) -"sJx" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/virology) -"sJJ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Hub"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"sJT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"sJU" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"sKb" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/omega/maint) -"sKi" = ( -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/sigma/south/offices) -"sKj" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/lobby) -"sKq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"sKt" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/theta/airlock/west/id) -"sKv" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"sKD" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/hangar/cargo) -"sKS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"sKU" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"sLK" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/dorms) -"sLN" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south/security) -"sLP" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hangar) -"sLV" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/engineering/core) -"sLX" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/office) -"sMc" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "6" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"sMh" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/foyer) -"sMp" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/gamma/airlock/north) -"sMw" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"sMA" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/biodome/toxins) -"sMD" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/administration) -"sME" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/sigma/south/complex) -"sMG" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("theta") - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/hydrowest) -"sMT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Mixed Air Control" - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"sNj" = ( -/obj/structure/fence, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/checkpoint) -"sNk" = ( -/obj/structure/surface/table/almayer, -/obj/item/robot_parts/robot_component/radio, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/south/robotics) -"sNB" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"sOd" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/hallwaysouth) -"sOo" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/engineering) -"sOA" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"sOG" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"sOL" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"sPd" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"sPf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast) -"sPj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/core) -"sPn" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/sigma/north) -"sPp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/south/offices) -"sPq" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Research Complex"; - req_one_access_txt = "101" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"sPt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/dataoffice) -"sQk" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/airlock/north) -"sQn" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/theta/airlock/east/id) -"sQo" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/freezer) -"sQq" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"sQF" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/omega/airlocknorth) -"sQX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"sRc" = ( -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydroeast) -"sRh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"sRk" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/security/cells) -"sRn" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/south/offices) -"sRs" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purple/west, -/area/corsat/gamma/residential) -"sRv" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"sRH" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/south) -"sRX" = ( -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"sRY" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth) -"sSb" = ( -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/sigma/south/complex) -"sSm" = ( -/obj/structure/pipes/binary/pump/high_power/on{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/airlock/control) -"sSs" = ( -/turf/open/floor/corsat/greencorner/east, -/area/corsat/gamma/hallwaysouth) -"sSu" = ( -/turf/open/floor/corsat/plate, -/area/corsat/omega/security) -"sSv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"sSw" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"sSA" = ( -/obj/item/paper, -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/carpet11_12/west, -/area/corsat/gamma/residential/lounge) -"sSD" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"sSF" = ( -/turf/open/floor/plating/warnplate/northwest, -/area/corsat/sigma/hangar) -"sSI" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"sTq" = ( -/obj/structure/flora/jungle/planttop1, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"sTB" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/north/id) -"sTD" = ( -/obj/structure/surface/table/woodentable, -/obj/item/folder/blue, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"sUa" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/north) -"sUj" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/corsat/white/northwest, -/area/corsat/gamma/hallwaysouth) -"sUp" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/administration) -"sUw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"sUH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/greenwhitecorner/west, -/area/corsat/gamma/medbay) -"sUW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"sUX" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - id = "GammaEastW"; - name = "Gamma East Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/control) -"sVk" = ( -/turf/open/floor/corsat, -/area/corsat/sigma/south/engineering) -"sVo" = ( -/obj/structure/machinery/mech_bay_recharge_port, -/turf/open/floor/corsat, -/area/corsat/sigma/south/robotics) -"sVC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/theta/airlock/control) -"sVF" = ( -/turf/open/floor/corsat/bluegrey, -/area/corsat/omega/offices) -"sVK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"sWA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/corsat/sigma/south/complex) -"sWP" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/corsat/omega/biodome) -"sXf" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/security) -"sXl" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/airlocknorth/id) -"sXm" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) -"sXp" = ( -/obj/structure/closet/wardrobe/robotics_black, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"sXE" = ( -/turf/open/floor/corsat/browncorner/east, -/area/corsat/sigma/cargo) -"sXJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/theta/biodome/complex) -"sXP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/cargo, -/area/corsat/omega/cargo) -"sYn" = ( -/obj/structure/pipes/trinary/mixer, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/theta/airlock/control) -"sYA" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) -"sYK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"sYO" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"sYU" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"sYW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"sZg" = ( -/obj/structure/flora/bush/ausbushes/var3/leafybush, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"sZh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/theta/airlock/east) -"sZs" = ( -/obj/structure/tunnel{ - id = "hole1" - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/biodome) -"sZB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/engineering) -"sZJ" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/east) -"sZU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/toxins) -"sZZ" = ( -/obj/structure/sign/safety/biohazard, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/virology) -"taa" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/morgue) -"tak" = ( -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"tan" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Hangar Office"; - req_access_txt = "106" - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/office) -"tas" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"tat" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"tbC" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/cargo) -"tbQ" = ( -/turf/open/floor/corsat/red, -/area/corsat/omega/security) -"tbS" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/maint) -"tcd" = ( -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"tcy" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"tcL" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"tda" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"tdd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail/control) -"tdh" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plating/northeast, -/area/corsat/gamma/sigmaremote) -"tee" = ( -/turf/open/floor/almayer/plating/northeast, -/area/corsat/gamma/sigmaremote) -"tei" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "25" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"teo" = ( -/turf/open/floor/carpet10_8/west, -/area/corsat/omega/offices) -"tep" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/robotics) -"teC" = ( -/obj/structure/machinery/conveyor_switch, -/turf/open/floor/corsat/browncorner, -/area/corsat/gamma/cargo/disposal) -"teV" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"teW" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"tfh" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/airlock/control) -"tfm" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/sigmaremote) -"tfo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"tfu" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"tfw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"tfx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat/brown/southwest, -/area/corsat/gamma/cargo/lobby) -"tfE" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/maint) -"tfL" = ( -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential) -"tfO" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"tfS" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/security) -"tfX" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"tgj" = ( -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/sigma/southeast/datalab) -"tgl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"tgm" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/security) -"tgx" = ( -/obj/structure/window/reinforced, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"tgN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/corsat/gamma/sigmaremote) -"tgW" = ( -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/airlock/east) -"thg" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/airlock/control) -"thj" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/south) -"thx" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 32 - }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/security) -"thy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/hallwaysouth) -"thE" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"thJ" = ( -/obj/structure/machinery/door/airlock/almayer/research{ - dir = 1; - locked = 1; - name = "\improper Decontamination Chamber"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"til" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/south/engineering) -"tir" = ( -/obj/structure/surface/rack, -/obj/structure/prop/mech/drill, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"tiA" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"tiC" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"tiS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"tiV" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"tju" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/north, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/engineering/atmos) -"tjA" = ( -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/sigma/south/engineering) -"tjH" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"tjO" = ( -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/datalab) -"tjR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purple/west, -/area/corsat/gamma/biodome/complex) -"tjS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/hangar) -"tkc" = ( -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/sigma/south/complex) -"tkt" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering/atmos) -"tkv" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/carpet14_10/west, -/area/corsat/gamma/residential/lounge) -"tkx" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/keycard_auth/lockdown/corsat, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/administration) -"tkI" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/security) -"tkO" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"tkR" = ( -/turf/open/floor/corsat/bluecorner, -/area/corsat/sigma/north) -"tkW" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/security) -"tkY" = ( -/turf/open/floor/carpet7_3/west, -/area/corsat/gamma/administration) -"tlo" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"tlp" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar) -"tlr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/corsat/sigma/south/complex) -"tls" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Armory"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"tlx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"tly" = ( -/turf/open/mars_cave/mars_cave_15, -/area/corsat/sigma/biodome/gunrange) -"tlC" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/sigmaremote) -"tlI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/checkpoint) -"tlS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"tlY" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/chemistry) -"tlZ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/phone, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/security) -"tme" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"tmt" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/airlock/control) -"tmy" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"tmB" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_y = 24 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/biodome/complex) -"tmM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"tmV" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "14" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"tnd" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lights, -/obj/item/device/lightreplacer, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/north) -"tne" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering/atmos) -"tnj" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"tnk" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("omega") - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"tnn" = ( -/obj/structure/closet/wardrobe/genetics_white, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/theta/biodome/complex) -"tnz" = ( -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/gamma/residential/west) -"tnB" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"tnG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/residential/east) -"tnP" = ( -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/greenwhite/northwest, -/area/corsat/gamma/medbay/chemistry) -"tnV" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"tom" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"tor" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"tos" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/hangar/checkpoint) -"tot" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/slime, -/obj/item/device/flashlight/slime{ - pixel_y = 8 - }, -/obj/item/device/flashlight/slime{ - pixel_x = -10 - }, -/obj/item/device/flashlight/slime{ - pixel_x = 10 - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"toA" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/southeast) -"toH" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail/control) -"toQ" = ( -/obj/item/stool, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"tpa" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/foyer) -"tpc" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"tpd" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/hangar/cargo) -"tpp" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/rnr) -"tpv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"tpF" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"tpZ" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/plating/warnplate, -/area/corsat/gamma/hangar) -"tqb" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat, -/area/corsat/sigma/hangar/monorail) -"tqu" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/chemistry) -"tqw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"tqy" = ( -/obj/item/storage/box/monkeycubes, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/containment) -"tqE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/mars_cave/mars_cave_6, -/area/corsat/sigma/biodome) -"tqL" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"tqW" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/east, -/area/corsat/gamma/residential) -"trk" = ( -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering) -"trr" = ( -/turf/open/floor/corsat/purple/southwest, -/area/corsat/omega/hallways) -"trs" = ( -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"trw" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"trA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"trJ" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/engineering) -"trK" = ( -/turf/open/mars_cave/mars_cave_12, -/area/corsat/sigma/biodome/scrapyard) -"trM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/checkpoint) -"trR" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/hangar/security) -"trS" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/airlock/control) -"tsj" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"tsu" = ( -/turf/open/floor/corsat/whitecorner/west, -/area/corsat/gamma/hallwaysouth) -"tsB" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay) -"tsD" = ( -/obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"tsE" = ( -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"tsH" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/checkpoint) -"tsJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/toxins) -"tsW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/hangar/office) -"tte" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"ttm" = ( -/obj/structure/machinery/door/window/eastright, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"ttz" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/south) -"ttH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"ttM" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Robotics Storage"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"tuB" = ( -/obj/structure/surface/rack, -/obj/item/folder/red, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"tuL" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Viro"; - name = "Virology Lockdown" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Virology Wing"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"tuO" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"tuU" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"tuV" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "16" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"tuW" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"tuY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"tvf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"tvh" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"tvE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Administration"; - req_access = null; - req_one_access_txt = "106;104" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"twb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"twh" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south/security) -"twk" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/south/robotics) -"twE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"twI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/theta/airlock/west) -"twQ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/retractor, -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay/surgery) -"twS" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/pipes/vents/pump/on, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"twW" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/hydroponics) -"twX" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"twZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south) -"txn" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Chief Engineer's Office"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"txq" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/hydrowest) -"txs" = ( -/obj/structure/machinery/chem_dispenser{ - req_access_txt = "100" - }, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/complex) -"txv" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"txw" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"txz" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/biodome/virology) -"txA" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Hub"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"txC" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/blue/west, -/area/corsat/theta/airlock/control) -"txR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Research Complex Gamma" - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/biodome/complex) -"tyc" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/dataoffice) -"tyi" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/checkpoint) -"typ" = ( -/turf/open/floor/corsat/blue, -/area/corsat/theta/airlock/control) -"tyy" = ( -/turf/open/floor/corsat/blue/northwest, -/area/corsat/sigma/hangar) -"tyI" = ( -/obj/effect/landmark/hunter_primary, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/researcher) -"tyS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/west, -/area/corsat/sigma/biodome) -"tyW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/gamma/hangar/monorail) -"tzd" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/office) -"tzq" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/rnr) -"tzr" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"tzs" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/sigma/hangar) -"tzv" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/id) -"tzD" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"tzK" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"tzL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/omega/complex) -"tzN" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"tzY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"tAf" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"tAp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"tAq" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"tAu" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/red/northwest, -/area/corsat/theta/airlock/control) -"tAD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("omega") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"tAF" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"tAH" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"tAK" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/north) -"tAT" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/north) -"tAY" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/obj/item/stack/cable_coil, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/robotics) -"tBa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"tBi" = ( -/obj/structure/surface/table/almayer, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"tBm" = ( -/obj/structure/cargo_container/hd/mid/alt, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"tBP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner, -/area/corsat/omega/cargo) -"tBS" = ( -/turf/open/shuttle/dropship/light_grey_top_left, -/area/prison/hangar_storage/research/shuttle) -"tCh" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"tCt" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/engineering) -"tCu" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy15" - }, -/area/prison/hangar_storage/research/shuttle) -"tCz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/whitetancorner/east, -/area/corsat/gamma/residential/west) -"tCB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/analyzer, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/south/engineering) -"tCG" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Disposals"; - req_one_access_txt = "102;101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo/disposal) -"tCV" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/foyer) -"tDh" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 1 - }, -/obj/structure/machinery/door/window/eastright{ - name = "Weapon Rack" - }, -/obj/item/weapon/gun/revolver/m44, -/obj/item/weapon/gun/revolver/m44, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"tDC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/tool/wet_sign, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"tDD" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/hangar/office) -"tDK" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/corsat/theta/biodome) -"tEj" = ( -/obj/structure/platform{ - density = 0; - dir = 1; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/whitecorner/west, -/area/corsat/gamma/hallwaysouth) -"tEq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"tEQ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/red, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"tET" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/checkpoint) -"tEW" = ( -/obj/structure/surface/table, -/obj/item/folder/blue, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"tFd" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/monorail/control) -"tFh" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/arrivals) -"tFx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - network = list("sigma") - }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/hangar/security) -"tFF" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/omega/checkpoint) -"tFG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/corsat/theta/biodome) -"tFO" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/theta/airlock/east/id) -"tFR" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"tFU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"tFV" = ( -/obj/structure/prop/mech/parts/durand_left_leg, -/turf/open/floor/corsat/arrow_east, -/area/corsat/sigma/south/robotics) -"tGn" = ( -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/researcher) -"tGo" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/administration) -"tGq" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/corsat, -/area/corsat/omega/maint) -"tGv" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"tGC" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"tGR" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"tGU" = ( -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydrowest) -"tGV" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"tGY" = ( -/turf/open/floor/plating/warnplate/north, -/area/corsat/omega/hangar) -"tHc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"tHx" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"tHy" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"tHG" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"tHT" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/bluegrey, -/area/corsat/omega/offices) -"tHY" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"tIk" = ( -/turf/closed/wall/resin/membrane, -/area/corsat/sigma/biodome) -"tIl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"tIv" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"tIB" = ( -/turf/open/floor/corsat/whitetancorner/east, -/area/corsat/sigma/dorms) -"tIX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/hangar/office) -"tJf" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"tJg" = ( -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/sigma/south) -"tJh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"tJi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo/disposal) -"tJp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security/cells) -"tJz" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/theta/airlock/west/id) -"tJA" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"tJC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar) -"tJW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/corsat/gamma/sigmaremote) -"tKp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay/surgery) -"tKB" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"tKG" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"tKR" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/hangar/arrivals) -"tKX" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/dice, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"tLb" = ( -/turf/open/floor/corsat/white/northeast, -/area/corsat/gamma/residential) -"tLd" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/hangar) -"tLe" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/airlock/south) -"tLv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Administration"; - req_access_txt = "106" - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"tLE" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"tLQ" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"tMh" = ( -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/sigma/south) -"tMl" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/theta/airlock/control) -"tMw" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red, -/area/corsat/theta/airlock/control) -"tME" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/airlock/control) -"tMR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"tMV" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/tool/crowbar, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/hangar/cargo) -"tNp" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/vents/pump, -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"tNr" = ( -/obj/item/paper, -/obj/item/tool/pen/red, -/obj/item/tool/stamp/rd, -/obj/structure/pipes/vents/pump, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/administration) -"tNs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"tNF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/control) -"tNN" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"tNO" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"tOs" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/sigma/south/complex) -"tOt" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Cybernetics Lab"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"tOB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/dorms) -"tOH" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/pistachios, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"tOM" = ( -/turf/open/floor/corsat/brown/north, -/area/corsat/omega/hallways) -"tOQ" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/control) -"tOZ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential) -"tPd" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/theta/biodome/hydrowest) -"tPn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/maint) -"tPr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Nitrogen Control Console" - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"tPK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar) -"tPV" = ( -/turf/closed/wall/biodome, -/area/corsat/sigma/hangar/security) -"tPY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"tQa" = ( -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/sigma/south/complex) -"tQd" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"tQf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/sigma/airlock/south) -"tQj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/hangar/cargo) -"tQk" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"tQm" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"tQq" = ( -/obj/structure/machinery/computer/cameras{ - network = list("omega") - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/airlocknorth) -"tQr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/hangar) -"tQM" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/hangar/office) -"tQR" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/security) -"tQU" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Medical Bay"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"tRk" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"tRr" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"tRs" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Data Laboratory"; - req_access_txt = "106;102;103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"tRB" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/greenwhitecorner, -/area/corsat/gamma/medbay) -"tRG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/hallways) -"tRJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Administration"; - req_access_txt = "106" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaAdmin"; - name = "Security Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"tRX" = ( -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/morgue) -"tSa" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/dataoffice) -"tSk" = ( -/obj/structure/surface/rack, -/obj/item/toy/plush/farwa, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/hangar/security) -"tSp" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "CORSAT Academy"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"tSJ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/toxins) -"tSR" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"tTd" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"tTj" = ( -/obj/structure/closet/secure_closet/brig{ - id = "CORSAT Sec 1" - }, -/obj/structure/machinery/brig_cell{ - id = "CORSAT Sec 1"; - name = "Cell 1"; - pixel_x = -32 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security/cells) -"tTl" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"tTp" = ( -/obj/structure/surface/table/almayer, -/obj/item/form_printer, -/obj/item/tool/pen, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"tTt" = ( -/turf/open/floor/corsat/purplecorner/east, -/area/corsat/omega/hallways) -"tTy" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/hydroeast) -"tTP" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/east) -"tTW" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/east, -/area/corsat/theta/airlock/west) -"tUc" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - name = "Cargo Bay"; - req_one_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"tUz" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"tUC" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"tUE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"tUI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"tVj" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat/blue/southwest, -/area/corsat/omega/control) -"tVm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"tVq" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/southeast/generator) -"tVz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential) -"tVC" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"tVM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/sigmaremote) -"tVR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/virology) -"tVT" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar/checkpoint) -"tWb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/phoron/small_stack, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"tWg" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar) -"tWh" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/pillbottles, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) -"tWn" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"tWp" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/blue/southwest, -/area/corsat/omega/control) -"tWx" = ( -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/complex) -"tWy" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"tWE" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/rnr/bar) -"tWF" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/theta/biodome/complex) -"tWJ" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/engineering/lobby) -"tWK" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/north) -"tWR" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat/squares, -/area/corsat/theta/biodome/complex) -"tWU" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/security) -"tWZ" = ( -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/engineering/atmos) -"tXc" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/yellow/north, -/area/corsat/omega/maint) -"tXj" = ( -/turf/open/mars_cave/mars_cave_9, -/area/corsat/sigma/biodome/scrapyard) -"tXK" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/airlock/control) -"tXQ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) -"tYc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/south/security) -"tYf" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"tYv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"tYB" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"tYD" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "9" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"tYF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"tYK" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "West Hydroponics Wing"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"tYL" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"tYM" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"tYT" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"tYU" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - autoclose = 0; - density = 0; - icon_state = "door_open"; - id = "CORSAT Containment 4"; - name = "Containment Cell 4"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/inaccessible) -"tZc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/airlock/south) -"tZB" = ( -/obj/structure/closet/coffin, -/turf/open/floor/corsat/green/west, -/area/corsat/gamma/medbay/morgue) -"tZI" = ( -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/sigmaremote) -"tZR" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/dorms) -"uaf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/south/id) -"uak" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Cargo Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Cargo Desk"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/cargo/lobby) -"uay" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth) -"uaI" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"uaL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/biodome/complex) -"uaP" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/airlock/control) -"ubf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/sigma/dorms) -"ubk" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/warnplate/east, -/area/corsat/sigma/hangar) -"ubz" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/robot_module/medic, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"ubO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"ubS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"ubX" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"ucn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south) -"ucr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"ucs" = ( -/turf/open/floor/corsat/brown/east, -/area/corsat/gamma/hallwaysouth) -"ucA" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat/red, -/area/corsat/sigma/south/security) -"udd" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 1 - }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/airlock/south) -"udi" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/adv, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/omega/complex) -"udn" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/obj/structure/platform{ - density = 0; - dir = 1; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/complex) -"udo" = ( -/turf/open/floor/corsat/browncorner/north, -/area/corsat/sigma/cargo) -"udp" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/hangar/checkpoint) -"uds" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/browncorner/east, -/area/corsat/gamma/cargo) -"udE" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/hangar/arrivals) -"uea" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering) -"uex" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/deck, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"ueH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Hangar Security"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"ufc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"ufj" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 2; - name = "Secure Racks"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"ufq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/arrow_east, -/area/corsat/sigma/southeast/datalab) -"ufr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"ufs" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/green, -/area/corsat/gamma/hallwaysouth) -"ufx" = ( -/obj/structure/machinery/computer/WYresearch, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/theta/biodome/complex) -"ufD" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/office) -"ufO" = ( -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/north) -"ufS" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "SigmaWestE"; - name = "Sigma West Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/control) -"ufU" = ( -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"ufW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/purplecorner, -/area/corsat/gamma/biodome/complex) -"ugc" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Viro"; - name = "Virology Lockdown" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"ugo" = ( -/turf/open/floor/corsat/bluecorner, -/area/corsat/sigma/airlock/control) -"ugs" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "22" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"ugu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/researcher) -"ugB" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy12" - }, -/area/prison/hangar_storage/research/shuttle) -"uhh" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - name = "\improper Mentor's Guide Bookcase" - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"uht" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"uhG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/arrow_west, -/area/corsat/gamma/hangar) -"uhH" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "Omega Dome Control"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/control) -"uhP" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/hallways) -"uhS" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "12" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"uig" = ( -/turf/open/floor/corsat/browncorner, -/area/corsat/gamma/foyer) -"uin" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/southwest, -/area/corsat/gamma/residential/west) -"uiw" = ( -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) -"uiH" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south) -"uiK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Laundry" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"uiU" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "4" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"ujb" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/CM_uniform, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/security) -"ujr" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail/control) -"ujt" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/whitetan, -/area/corsat/gamma/residential/west) -"ujC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"ujN" = ( -/turf/open/floor/corsat/whitecorner/north, -/area/corsat/gamma/hallwaysouth) -"ujR" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/greenwhite/northeast, -/area/corsat/gamma/medbay/chemistry) -"ujY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/machinery/door/window/southright, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"ukb" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"ukh" = ( -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/east) -"ukk" = ( -/obj/vehicle/train/cargo/engine{ - dir = 2 - }, -/turf/open/floor/corsat/arrow_west, -/area/corsat/sigma/cargo) -"ukw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"ukJ" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail) -"ukR" = ( -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/gamma/sigmaremote) -"ukV" = ( -/obj/structure/window_frame/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/biodome/toxins) -"uli" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"ulu" = ( -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/virology) -"ulE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/theta/airlock/east) -"ulP" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"ulS" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"ulW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/toxins) -"ulY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/biodome/complex) -"umh" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Warden's Office"; - req_access_txt = "101" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "OmegaWarden"; - name = "Privacy Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"ums" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"umA" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/crap_item, -/obj/structure/platform{ - dir = 8; - layer = 2.8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"umC" = ( -/turf/open/floor/corsat/omega, -/area/corsat/omega/checkpoint) -"umH" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"umS" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/administration) -"unc" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"uno" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/hemostat, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay/surgery) -"unu" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"unA" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"unD" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/airlock/east) -"unJ" = ( -/obj/item/paper, -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/residential/lounge) -"unO" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"unX" = ( -/turf/open/floor/plating/warnplate/southwest, -/area/corsat/sigma/hangar) -"uof" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/hangar/id) -"uov" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"uoz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/southeast/dataoffice) -"uoK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/checkpoint) -"uoW" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/gamma/hangar/arrivals) -"upe" = ( -/obj/structure/machinery/computer/cameras{ - network = list("sigma"); - pixel_y = 22 - }, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"upg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"upq" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/rnr) -"upr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"upD" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/hangar/checkpoint) -"upM" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/office) -"upR" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/hangar) -"upY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"uqa" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("theta") - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"uqd" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/carpet14_10/west, -/area/corsat/gamma/residential/lounge) -"uqg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"uqh" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"uql" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"uqq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/sigma/southeast/dataoffice) -"uqA" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/gamma/hangar/checkpoint) -"uqP" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"ura" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"url" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"urC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "OmegaA"; - name = "Airlock Control"; - pixel_x = -5; - pixel_y = 6; - use_power = 0 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"urG" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/southwest, -/area/corsat/theta/airlock/west) -"urI" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/southeast/datalab) -"urM" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/hangar/arrivals) -"usj" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/hallwaysouth) -"usl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/checkpoint) -"usp" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan/southeast, -/area/corsat/gamma/residential/west) -"usF" = ( -/obj/structure/computer3frame/server{ - icon_state = "4" - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"usK" = ( -/obj/structure/flora/jungle/alienplant1, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"usO" = ( -/obj/structure/target, -/obj/item/clothing/suit/storage/militia, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/gunrange) -"usS" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"utz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/maint) -"utD" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/monorail/control) -"utG" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/omega/complex) -"uue" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purple, -/area/corsat/gamma/biodome/complex) -"uui" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_15, -/area/corsat/sigma/biodome) -"uuw" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/airlock/north) -"uuy" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/brown/east, -/area/corsat/gamma/foyer) -"uuD" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"uuI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/hangar) -"uuN" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"uuX" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/security) -"uvx" = ( -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/south/robotics) -"uvD" = ( -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/omega/offices) -"uvN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/landing/console2) -"uvU" = ( -/obj/item/storage/belt/gun/m4a3/vp78{ - desc = "The M276 is the standard load-bearing equipment of the TGMC. It consists of a modular belt with various clips. This version has a holster assembly that allows one to carry the VP78 comfortably secure. It also contains side pouches that can store XX magazines."; - name = "M276 pattern VP78 holster rig" - }, -/obj/structure/closet/secure_closet/detective{ - name = "Head of Security's Cabinet" - }, -/obj/item/device/flash, -/obj/item/device/hailer, -/obj/item/device/megaphone, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security) -"uvZ" = ( -/obj/structure/fence, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/checkpoint) -"uwb" = ( -/turf/open/floor/corsat/white/north, -/area/corsat/sigma/dorms) -"uwd" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"uwe" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"uwk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetancorner/east, -/area/corsat/gamma/residential/west) -"uwp" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/hallwaysouth) -"uws" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"uwD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/southeast/datalab) -"uwR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/southeast/datamaint) -"uxc" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"uxk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"uxt" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"uxz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Kitchen" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"uxI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "RemoteGateO"; - name = "Outer Gate Shutters"; - pixel_x = 5; - pixel_y = 24; - use_power = 0 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "RemoteGate"; - name = "Gate Shutters"; - pixel_x = -5; - pixel_y = 24; - use_power = 0 - }, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/sigmaremote) -"uxJ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"uxT" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/blue/southwest, -/area/corsat/gamma/airlock/control) -"uxX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"uyk" = ( -/turf/open/mars/mars_dirt_3, -/area/corsat/sigma/biodome) -"uyl" = ( -/obj/effect/landmark/corpsespawner/pmc, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"uyz" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"uyH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/id) -"uyR" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"uyU" = ( -/turf/open/floor/corsat/bluegreycorner/east, -/area/corsat/sigma/airlock/east) -"uze" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/sigma/south/complex) -"uzg" = ( -/turf/open/floor/corsat/brown, -/area/corsat/gamma/hallwaysouth) -"uzv" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/biodome/hydrowest) -"uzx" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaDSC2"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/airlock/north/id) -"uzA" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/sigma/dorms) -"uzE" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintenance Closet"; - req_one_access = null - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/sigmaremote) -"uzO" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"uzP" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/theta/biodome/complex) -"uAd" = ( -/turf/open/mars_cave/mars_cave_7, -/area/corsat/sigma/biodome/scrapyard) -"uAe" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south/id) -"uAm" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/corsat/sigma/biodome/gunrange) -"uAu" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow, -/area/corsat/omega/maint) -"uAH" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"uBb" = ( -/obj/structure/machinery/computer/emails, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"uBj" = ( -/obj/structure/window/framed/corsat/hull/research, -/turf/open/floor/plating, -/area/corsat/omega/hallways) -"uBz" = ( -/obj/structure/machinery/computer/telecomms/monitor{ - req_one_access_txt = "19;106;104" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"uBA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "GammaHangarCargoC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/cargo) -"uBH" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/corsat/theta/biodome) -"uBJ" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/southeast/datalab) -"uBL" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red, -/area/corsat/theta/airlock/control) -"uBO" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"uBZ" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/theta/biodome/hydrowest) -"uCc" = ( -/obj/item/trash/buritto, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"uCf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"uCi" = ( -/turf/open/mars_cave/mars_cave_15, -/area/corsat/sigma/biodome) -"uCn" = ( -/obj/structure/fence, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer2, -/area/corsat/gamma/biodome) -"uCZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Interrogation" - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"uDe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sink{ - pixel_y = 25 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"uDk" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"uDy" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/airlocknorth) -"uDG" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/south/robotics) -"uDK" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/monorail/control) -"uDW" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"uEB" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/south/security) -"uEC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"uED" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/security) -"uEE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/checkpoint) -"uEG" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/checkpoint) -"uEU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/hangar/security) -"uEX" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"uEY" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"uFv" = ( -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/sigmaremote) -"uFG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"uFZ" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"uGa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"uGf" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"uGp" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"uGs" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"uGF" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - id = "SigmaEastW"; - name = "Sigma East Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/east) -"uGG" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Omega Research Storage"; - req_access_txt = "103"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"uGO" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/datalab) -"uGX" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/airlock/north) -"uHj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/sigma/south/complex) -"uHm" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy14" - }, -/area/prison/hangar_storage/research/shuttle) -"uHr" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/south/engineering) -"uHv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/hangar/security) -"uHE" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) -"uHP" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"uHQ" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/toy/dice/d20, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"uHW" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/gamma/hangar/office) -"uIh" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/corsat/theta/biodome) -"uIk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/southeast/dataoffice) -"uIr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"uIs" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/sigmaremote) -"uID" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"uIF" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/sigmaremote) -"uIG" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat/yellow, -/area/corsat/omega/maint) -"uIJ" = ( -/obj/structure/fence, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"uIL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/phone, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/hangar/office) -"uIU" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/security) -"uIV" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/omega/complex) -"uJm" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/phone, -/turf/open/floor/carpet15_15/west, -/area/corsat/omega/offices) -"uJv" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/theta/biodome/complex) -"uJx" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"uJz" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"uJZ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/hangar/security) -"uKr" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"uKs" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/security) -"uKJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"uLe" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet11_12/west, -/area/corsat/gamma/biodome/complex) -"uLj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/theta/airlock/control) -"uLl" = ( -/obj/structure/closet/secure_closet/engineering_chief{ - req_access_txt = "101" - }, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering) -"uLs" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/hallwaysouth) -"uLz" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/engineering) -"uLB" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/binoculars, -/turf/open/floor/corsat/blue/west, -/area/corsat/omega/control) -"uLR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"uLU" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/rnr) -"uMh" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/white, -/area/corsat/gamma/residential/east) -"uMH" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering/atmos) -"uMW" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"uNc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydrowest) -"uNq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"uNr" = ( -/obj/structure/curtain/open/medical, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"uNz" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/plating/warnplate, -/area/corsat/gamma/hangar) -"uNK" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "OmegaHangarNE"; - name = "Landing Bay Omega" - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/hangar/security) -"uNO" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/datalab) -"uNZ" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay) -"uOg" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/canteen) -"uOk" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "SigmaBioAtmos"; - name = "Access Shutter" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"uOu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay) -"uOB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"uOC" = ( -/obj/structure/cargo_container/trijent/right, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"uOG" = ( -/obj/structure/cargo_container/trijent/left, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"uOM" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/security) -"uON" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/gamma/airlock/control) -"uOO" = ( -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/omega/offices) -"uOS" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/arrivals) -"uPb" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/sigma/hangar/monorail) -"uPc" = ( -/obj/effect/landmark/corpsespawner/wysec, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/security) -"uPy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"uPD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"uPO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/cargo, -/area/corsat/omega/cargo) -"uQe" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/complex) -"uQj" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"uQn" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow/pool, -/area/corsat/gamma/residential/showers) -"uQq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Research Complex Gamma"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"uQu" = ( -/turf/open/floor/corsat/purplecorner/north, -/area/corsat/omega/hallways) -"uQv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"uQx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/hallwaysouth) -"uQG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"uQO" = ( -/obj/structure/pipes/binary/pump/high_power/on{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/airlock/control) -"uRa" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/foyer) -"uRf" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/north) -"uRx" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"uRA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/corsat/theta/biodome) -"uRH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/device/flashlight, -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/control) -"uRK" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/omega/checkpoint) -"uRP" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "ThetaWestW"; - name = "Theta West Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/west) -"uRW" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"uSa" = ( -/turf/open/floor/corsat/brown/north, -/area/corsat/omega/cargo) -"uSk" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHangarC-N"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/security) -"uSp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"uSw" = ( -/obj/structure/showcase{ - icon_state = "broadcast receiver"; - name = "Subspace Receiver" - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"uSE" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/hangar) -"uSG" = ( -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/sigma/southeast/datalab) -"uST" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"uSX" = ( -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/south) -"uTb" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/checkpoint) -"uTf" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/corsat/theta/biodome) -"uTk" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "SigmaWestW"; - name = "Sigma West Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/control) -"uTn" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"uTC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"uTI" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Robotics Workshop"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"uTT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/assembly/timer, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"uTU" = ( -/obj/structure/closet/crate/trashcart, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"uUc" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering) -"uUg" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/airlock/south) -"uUk" = ( -/obj/structure/cryofeed{ - color = "silver"; - desc = "A bewildering tangle of machinery and pipes."; - layer = 2; - name = "coolant feed" - }, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat, -/area/corsat/gamma/sigmaremote) -"uUw" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "12" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"uUL" = ( -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"uUS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/engineering) -"uVf" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/greencorner/east, -/area/corsat/gamma/medbay/morgue) -"uVh" = ( -/obj/structure/sign/safety/chem_lab{ - pixel_y = -30 - }, -/turf/open/floor/corsat/greenwhitecorner, -/area/corsat/gamma/medbay) -"uVn" = ( -/obj/structure/surface/rack, -/obj/item/device/assembly/signaller, -/obj/item/device/assembly/signaller, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/prox_sensor, -/obj/item/device/assembly/prox_sensor, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"uVp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast) -"uVs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"uVP" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/cargo) -"uVW" = ( -/obj/structure/showcase, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"uWr" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/engineering_construction, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"uWu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/checkpoint) -"uWy" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"uWC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"uWD" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south) -"uWF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south/id) -"uWG" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/hangar/office) -"uWJ" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/rnr/arcade) -"uWQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"uWR" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"uWW" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/door/window/westright{ - name = "Weapon Rack" - }, -/obj/structure/window/reinforced/toughened{ - dir = 1 - }, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"uWZ" = ( -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"uXk" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"uXn" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Chemistry"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/chemistry) -"uXr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"uXv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"uXB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/residential/east) -"uXG" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/brown/northwest, -/area/corsat/gamma/cargo/lobby) -"uXJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) -"uXK" = ( -/turf/open/floor/corsat/arrow_west, -/area/corsat/sigma/hangar) -"uXM" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"uXO" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"uXU" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"uXV" = ( -/obj/structure/surface/rack, -/obj/item/clothing/shoes/sandal, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"uYa" = ( -/turf/open/floor/corsat/red, -/area/corsat/theta/airlock/control) -"uYd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"uYh" = ( -/obj/vehicle/train/cargo/engine{ - dir = 2 - }, -/turf/open/floor/almayer/plating_striped, -/area/corsat/gamma/sigmaremote) -"uYk" = ( -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"uYo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/omega/airlocknorth/id) -"uYx" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential) -"uYy" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "11" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"uYH" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Armory"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"uZe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"uZH" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"uZJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"uZX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/gamma/hangar) -"vac" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("theta") - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"vap" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/monorail) -"var" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"vaz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Airlock Control Office"; - req_access_txt = "102" - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/theta/airlock/east) -"vaA" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Cells"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security/cells) -"vaD" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Forensics" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/security) -"vaE" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"vaH" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"vaI" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"vbd" = ( -/turf/open/floor/almayer/research/containment/corner/north, -/area/corsat/inaccessible) -"vbj" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/hallwaysouth) -"vbH" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"vct" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"vcx" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/vents/pump, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"vcy" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"vcz" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/hangar) -"vda" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/residential/west) -"vdb" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/southeast/dataoffice) -"vdw" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"vdx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"vdA" = ( -/obj/structure/surface/rack, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"vdL" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal{ - amount = 25; - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"vel" = ( -/obj/structure/surface/rack, -/obj/item/device/chameleon, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/sigma/south/complex) -"ven" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"vet" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/airlock/south) -"vfl" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/assembly/infra, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/gamma/engineering) -"vft" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Administration"; - req_access_txt = "106" - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"vfH" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"vfR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/ice, -/area/corsat/gamma/biodome) -"vgc" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Hydroponics"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"vgk" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"vgF" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/sigma/dorms) -"vgH" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"vgU" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat/white/southeast, -/area/corsat/gamma/hallwaysouth) -"vhd" = ( -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/theta/biodome/hydroeast) -"vhs" = ( -/turf/open/floor/asteroidwarning/north, -/area/corsat/sigma/biodome) -"vhG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/rnr) -"vhI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"vhL" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"vhZ" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/corsat/theta/biodome) -"vig" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"vih" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Hazardous Materials Lab"; - req_one_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"vim" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/corsat/omega/maint) -"vit" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"viu" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/southeast/datamaint) -"vix" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"viA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/corsat/blue/northeast, -/area/corsat/theta/airlock/control) -"viI" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/south/security) -"viR" = ( -/turf/open/floor/corsat/blue/east, -/area/corsat/theta/airlock/control) -"viV" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"vjl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"vjw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/checkpoint) -"vjy" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Morgue"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/medbay/morgue) -"vjz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars/mars_dirt_14, -/area/corsat/sigma/biodome) -"vjD" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/mars_cave/mars_cave_6, -/area/corsat/sigma/biodome) -"vjE" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/omega/control) -"vjK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/complex) -"vjT" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/security) -"vjX" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/engineering) -"vki" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/plating/platingdmg3/west, -/area/corsat/sigma/biodome/testgrounds) -"vkD" = ( -/obj/structure/surface/table, -/obj/item/book, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"vkE" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"vkM" = ( -/obj/structure/stairs, -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/residential/east) -"vkR" = ( -/turf/open/floor/plating/icefloor/warnplate, -/area/corsat/gamma/hangar) -"vkU" = ( -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/theta/airlock/control) -"vlx" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"vlK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/south/robotics) -"vmi" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/stamp/ce, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"vmk" = ( -/obj/structure/sink{ - pixel_y = 25 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"vmq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"vmW" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"vnc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/coast/beachcorner/south_west, -/area/corsat/theta/biodome) -"vnJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"vnK" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"vnN" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/airlock/control) -"vod" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/monorail) -"voe" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"vol" = ( -/obj/structure/platform{ - density = 0; - dir = 1; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/hallwaysouth) -"vop" = ( -/turf/open/floor/corsat/darkgreen/northwest, -/area/corsat/gamma/hangar/arrivals) -"vov" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/monorail/control) -"voy" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/virology) -"voP" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"vpc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"vpd" = ( -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/sigma/southeast/datalab) -"vpo" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/cargo) -"vpq" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south) -"vpv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/airlock/south) -"vpx" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydroeast) -"vpD" = ( -/obj/structure/closet/l3closet/general, -/turf/open/floor/corsat/yellow, -/area/corsat/omega/control) -"vpG" = ( -/obj/structure/closet/crate/science, -/obj/item/ore/diamond, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/sigma/south/complex) -"vpH" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Research Complex"; - req_one_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"vpL" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/chips, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"vpN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"vpX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "Medbay"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"vpZ" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 32 - }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/south) -"vqm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner, -/area/corsat/omega/cargo) -"vqn" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1; - name = "Secure Racks"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"vqw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/purplecorner/east, -/area/corsat/omega/hallways) -"vqz" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold{ - amount = 10 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"vqN" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/east) -"vqQ" = ( -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/structure/closet/crate/freezer, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"vre" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/hydrowest) -"vrf" = ( -/obj/item/folder/white, -/obj/item/tool/stamp/rd, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet7_3/west, -/area/corsat/gamma/administration) -"vrj" = ( -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/gamma/hallwaysouth) -"vrz" = ( -/obj/item/paper/crumpled, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"vrN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"vrU" = ( -/turf/open/floor/plating/warnplate/northeast, -/area/corsat/sigma/hangar) -"vrX" = ( -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar) -"vrY" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/brown/southeast, -/area/corsat/omega/cargo) -"vso" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"vsq" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/omega/offices) -"vst" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"vsv" = ( -/turf/open/floor/corsat/whitetancorner, -/area/corsat/sigma/dorms) -"vsR" = ( -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/east) -"vsU" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Research Desk" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"vtv" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Research Complex"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"vty" = ( -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/west) -"vtA" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/hangar/arrivals) -"vtC" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/blue/northwest, -/area/corsat/gamma/airlock/control) -"vtJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/arrivals) -"vtM" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/security) -"vtS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/hydroeast) -"vtY" = ( -/turf/open/floor/corsat/marked, -/area/corsat/gamma/hangar/checkpoint) -"vuj" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security/cells) -"vuq" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"vuB" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth/id) -"vvg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"vvi" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/maint) -"vvm" = ( -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/sigma/north) -"vvn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"vvs" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "ThetaIDEC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/east/id) -"vvC" = ( -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"vwb" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"vwe" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth) -"vwf" = ( -/obj/item/paper_bin, -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/carpet7_3/west, -/area/corsat/gamma/residential/lounge) -"vwn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/southeast/dataoffice) -"vwp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/virology) -"vwC" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/airlock/south) -"vwP" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"vwT" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Holding Cell 1"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/office) -"vwV" = ( -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/southeast/datalab) -"vwY" = ( -/obj/structure/surface/table/almayer, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/greenwhitecorner/north, -/area/corsat/gamma/medbay) -"vxf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/sigma/dorms) -"vxw" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/hangar) -"vya" = ( -/obj/structure/surface/table/reinforced, -/obj/item/phone, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"vye" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet11_12/west, -/area/corsat/gamma/administration) -"vyl" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"vyy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/east) -"vyz" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"vyB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/mars, -/area/corsat/sigma/biodome) -"vyC" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay/surgery) -"vyL" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"vyS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/security) -"vyX" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar) -"vza" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/pipes/vents/pump, -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"vzm" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/brown/west, -/area/corsat/sigma/cargo) -"vzo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/omega/offices) -"vzB" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"vzK" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"vzO" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"vzS" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/biodome/complex) -"vAg" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/hallwaysouth) -"vAu" = ( -/obj/item/explosive/plastic, -/obj/item/explosive/plastic, -/obj/item/explosive/plastic, -/obj/item/explosive/plastic, -/obj/structure/closet/secure_closet/guncabinet{ - name = "explosives cabinet"; - req_access_txt = "100" - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"vAC" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"vAG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/sigma/south/complex) -"vAJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/biodome/complex) -"vAP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"vAW" = ( -/obj/structure/machinery/power/reactor/colony{ - desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; - name = "\improper G-17 Thermoelectric Generator" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "0-8"; - layer = 2.1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering/core) -"vBd" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat/browncorner/west, -/area/corsat/gamma/cargo/disposal) -"vBA" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Administration Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Administration Desk"; - req_access_txt = "104" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaAdmin"; - name = "Security Shutters" - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/administration) -"vBB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/corsat/sigma/north) -"vBC" = ( -/turf/open/floor/corsat/darkgreen/southwest, -/area/corsat/gamma/rnr) -"vBV" = ( -/turf/open/floor/corsat/arrow_north, -/area/corsat/sigma/southeast/generator) -"vCx" = ( -/turf/closed/wall/resin/membrane, -/area/corsat/omega/biodome) -"vCD" = ( -/obj/structure/surface/table/almayer, -/obj/item/form_printer, -/obj/item/tool/pen, -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/containment) -"vDr" = ( -/turf/open/floor/corsat/browncorner, -/area/corsat/gamma/cargo) -"vDE" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"vDI" = ( -/turf/open/floor/plating/warnplate, -/area/corsat/omega/hangar) -"vEc" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"vEg" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south/id) -"vEh" = ( -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/gamma/biodome/toxins) -"vEt" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/north) -"vEu" = ( -/obj/structure/safe, -/obj/item/device/yautja_teleporter, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/sigmaremote) -"vEA" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome) -"vEC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 1 - }, -/turf/open/floor/corsat/blue, -/area/corsat/gamma/airlock/control) -"vEK" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"vEL" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"vEQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"vER" = ( -/turf/open/floor/corsat/blue/north, -/area/corsat/omega/control) -"vFJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/mars, -/area/corsat/sigma/biodome) -"vFY" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Research Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Research Desk" - }, -/obj/structure/machinery/bot/medbot, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"vGf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"vGo" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "18" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"vGy" = ( -/obj/structure/machinery/medical_pod/sleeper{ - flags_atom = 18 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential/east) -"vGB" = ( -/obj/structure/bedsheetbin, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"vHb" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/morgue) -"vHr" = ( -/turf/open/floor/corsat/marked, -/area/corsat/omega/biodome) -"vHu" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/omega/complex) -"vHw" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/security) -"vHz" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/arcade) -"vHH" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"vHI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Research Complex Omega"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"vHN" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plating_striped/north, -/area/corsat/gamma/sigmaremote) -"vIh" = ( -/turf/open/floor/corsat/greenwhitecorner, -/area/corsat/gamma/medbay/lobby) -"vIF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome) -"vIW" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"vJo" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar/security) -"vJI" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar/security) -"vJJ" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/monorail/control) -"vJP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/south/id) -"vJR" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"vKp" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/sparker, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/sigma/south/complex) -"vKy" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 25; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/omega/maint) -"vKz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/blue/northeast, -/area/corsat/sigma/hangar) -"vKC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"vKE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/airlock/east) -"vKH" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, -/area/corsat/theta/biodome) -"vKK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"vLh" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purple/north, -/area/corsat/gamma/biodome/complex) -"vLi" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/airlock/north/id) -"vLn" = ( -/turf/open/floor/corsat/white, -/area/corsat/gamma/residential/east) -"vLt" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay/surgery) -"vLu" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"vLD" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat/brown/southwest, -/area/corsat/sigma/cargo) -"vLE" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/toxins) -"vLF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"vLU" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/greenwhite/southwest, -/area/corsat/gamma/medbay/surgery) -"vMu" = ( -/obj/structure/stairs{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"vNa" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "riot cabinet"; - req_access_txt = "100" - }, -/obj/item/xeno_restraints, -/obj/item/xeno_restraints, -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/security) -"vNf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"vNh" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/t_scanner, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"vNm" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/control) -"vNH" = ( -/obj/structure/surface/rack, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering/atmos) -"vNL" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "20" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"vNR" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/engineering) -"vOq" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/north) -"vOD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"vOF" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"vOP" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/south/security) -"vOT" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/corsat/cargo, -/area/corsat/sigma/cargo) -"vOY" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"vPf" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/south/robotics) -"vPi" = ( -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"vPl" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering) -"vPt" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 - }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/airlock/control) -"vPH" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/white/northeast, -/area/corsat/sigma/dorms) -"vPP" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/sigma/south/complex) -"vPS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome) -"vQf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast) -"vQg" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"vQp" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/sigma/airlock/east) -"vQw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/greenwhite/northwest, -/area/corsat/gamma/medbay) -"vQz" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/suit/armor/laserproof, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"vQY" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/office) -"vRf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"vRi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/communications{ - dir = 8 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"vRk" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/south/security) -"vRl" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/clothing/glasses/welding, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/residential/maint) -"vRB" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/hangar/id) -"vRS" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"vSg" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"vSr" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"vSC" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/cargo) -"vSO" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/biodome/complex) -"vSP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"vST" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/robotanalyzer, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"vSU" = ( -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/gamma/biodome/complex) -"vSV" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/complex) -"vSX" = ( -/turf/open/floor/corsat/red, -/area/corsat/gamma/residential) -"vTg" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/prison/hangar_storage/research/shuttle) -"vTq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/omega/hangar) -"vTt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/southeast/datalab) -"vTx" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegreycorner, -/area/corsat/sigma/south/offices) -"vTy" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat/yellow/east, -/area/corsat/omega/maint) -"vTT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"vUh" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "SigmaIDSC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/omega/complex) -"vUm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"vUo" = ( -/obj/structure/target/syndicate, -/turf/open/mars_cave/mars_cave_16, -/area/corsat/sigma/biodome/gunrange) -"vUv" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/administration) -"vUx" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - id = "SigmaEastE"; - name = "Sigma East Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/east) -"vUz" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "21" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) -"vUA" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/east, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"vUL" = ( -/turf/open/shuttle/black, -/area/corsat/gamma/hangar/monorail/railcart) -"vUM" = ( -/obj/structure/machinery/lapvend, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/administration) -"vUO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"vUS" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) -"vUY" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/airlock/east) -"vUZ" = ( -/obj/structure/surface/rack, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"vVh" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat/brown/northwest, -/area/corsat/sigma/cargo) -"vVn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"vVC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"vVH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"vVZ" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"vWa" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/theta/airlock/control) -"vWn" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/hangar) -"vWp" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/omega/complex) -"vWr" = ( -/turf/open/floor/corsat/greenwhitecorner/north, -/area/corsat/gamma/medbay/lobby) -"vWx" = ( -/obj/structure/machinery/door/window/southleft{ - dir = 8; - layer = 2.8 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"vWF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/morgue) -"vWV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security) -"vXF" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"vXJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Laboratory"; - req_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"vYe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"vYo" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"vYs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"vYH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaDSC"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/airlock/north/id) -"vZk" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/southeast/generator) -"vZt" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"vZu" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Cables" - }, -/obj/structure/cryofeed{ - color = "silver"; - desc = "A bewildering tangle of machinery and pipes."; - name = "coolant feed" - }, -/turf/open/shuttle/escapepod/floor1, -/area/corsat/theta/biodome/complex) -"vZJ" = ( -/obj/effect/alien/weeds/node, -/turf/closed/wall/resin/membrane, -/area/corsat/omega/biodome) -"vZK" = ( -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/hallwaysouth) -"vZP" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/security) -"vZV" = ( -/obj/structure/machinery/door_control{ - id = "SigmaGrounds"; - name = "Testing Grounds"; - pixel_x = 24 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/testgrounds) -"wan" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/red, -/area/corsat/sigma/airlock/east/id) -"waI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"waK" = ( -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/hangar) -"waV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"wbb" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/theta/biodome/hydroeast) -"wbf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/coast/beachcorner/south_east, -/area/corsat/theta/biodome) -"wbh" = ( -/obj/structure/closet/coffin, -/turf/open/floor/corsat/green/southwest, -/area/corsat/gamma/medbay/morgue) -"wbn" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/hangar) -"wbw" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"wbA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/sigma/southeast/datalab) -"wbP" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 1 - }, -/obj/structure/machinery/door/window/westright{ - name = "Weapon Rack" - }, -/obj/item/weapon/gun/smg/m39, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"wbY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/theta/airlock/east) -"wcr" = ( -/obj/structure/pipes/standard/simple/visible, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/atmos) -"wcw" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"wcD" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"wdh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"wdm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/foyer) -"wds" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"wdE" = ( -/turf/open/floor/corsat/purplewhite, -/area/corsat/theta/biodome/hydroeast) -"wdZ" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"wep" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"wes" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"weu" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"wey" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/gamma/hangar) -"weC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"weF" = ( -/obj/item/alien_embryo, -/obj/item/alien_embryo, -/obj/item/alien_embryo, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"weI" = ( -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/east) -"weM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_18, -/area/corsat/sigma/biodome) -"weO" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"weW" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/hangar) -"wfa" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"wfd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/sigmaremote) -"wfi" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat/whitetan/southeast, -/area/corsat/gamma/residential/west) -"wfk" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaSouthID"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/airlock/south/id) -"wfo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner/north, -/area/corsat/omega/hallways) -"wfr" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 1 - }, -/turf/open/floor/corsat/red, -/area/corsat/theta/airlock/west) -"wfv" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/airlock/control) -"wfB" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/blue/north, -/area/corsat/gamma/airlock/control) -"wfU" = ( -/turf/open/shuttle/dropship/light_grey_middle, -/area/prison/hangar_storage/research/shuttle) -"wgd" = ( -/obj/item/reagent_container/food/snacks/meat/monkey, -/obj/item/reagent_container/food/snacks/meat/monkey, -/obj/item/reagent_container/food/snacks/meat/monkey, -/obj/item/reagent_container/food/snacks/meat/monkey, -/obj/item/reagent_container/food/snacks/meat/monkey, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/structure/closet/crate/freezer, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"wgf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaHCargoS"; - name = "Checkpoint Control"; - pixel_y = 7; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "SigmaHCargoN"; - name = "Checkpoint Control"; - pixel_x = -5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "SigmaHCargoC"; - name = "Security Shutters"; - pixel_x = 5; - use_power = 0 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar/id) -"wgr" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/northwest, -/area/corsat/gamma/security) -"wgy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/corsat/sigma/biodome) -"wgG" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/southeast) -"wgK" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering/atmos) -"wgO" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen, -/obj/item/tool/stamp{ - name = "Quartermaster's stamp" - }, -/turf/open/floor/corsat/brown/north, -/area/corsat/sigma/cargo) -"wgX" = ( -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"wgY" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "RemoteGate"; - name = "Gate Shutters"; - use_power = 0 - }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/hangar/monorail) -"whf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/white/southeast, -/area/corsat/gamma/residential) -"whi" = ( -/obj/item/paper, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"whq" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/sigma/south/complex) -"whH" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security/cells) -"whY" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"win" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/cargo) -"wis" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"wit" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/checkpoint) -"wiF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/ice, -/area/corsat/gamma/biodome) -"wiJ" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"wje" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar) -"wjm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"wjt" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"wjE" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/control) -"wjS" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/white/northwest, -/area/corsat/sigma/dorms) -"wjW" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/dataoffice) -"wkc" = ( -/turf/open/floor/corsat/whitecorner, -/area/corsat/sigma/dorms) -"wkl" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaResC"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/checkpoint) -"wkm" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"wkp" = ( -/turf/open/mars_cave/mars_cave_18, -/area/corsat/sigma/biodome/scrapyard) -"wkq" = ( -/obj/structure/machinery/mecha_part_fabricator, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/robotics) -"wkB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"wkD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/redcorner, -/area/corsat/gamma/airlock/north/id) -"wkP" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/checkpoint) -"wlb" = ( -/turf/open/floor/corsat/blue/northeast, -/area/corsat/gamma/hallwaysouth) -"wlg" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hallways) -"wlh" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/south/security) -"wlz" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"wlO" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/engineering) -"wlR" = ( -/obj/structure/surface/rack, -/obj/item/oldresearch/Chitin, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1; - name = "Secure Racks"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"wlW" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/foyer) -"wlY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"wmd" = ( -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"wmf" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"wmi" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat, -/area/corsat/sigma/hangar) -"wmB" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/asteroidwarning/west, -/area/corsat/sigma/biodome) -"wmI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/obj/effect/landmark/nightmare{ - insert_tag = "lockdown-gamma-control" - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/airlock/control) -"wmJ" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, -/area/prison/hangar_storage/research/shuttle) -"wmS" = ( -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/scrapyard) -"wmT" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/south/security) -"wnc" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/residential/east) -"wnd" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/whitetan/southeast, -/area/corsat/gamma/residential/west) -"wne" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/south) -"wno" = ( -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/hallwaysouth) -"wnx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/southeast/datalab) -"wny" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/monorail) -"wnD" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/lobby) -"wnO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"wnV" = ( -/turf/open/floor/corsat/whitetan/southeast, -/area/corsat/gamma/residential/west) -"wnY" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south) -"woa" = ( -/turf/open/floor/corsat/blue/west, -/area/corsat/gamma/hangar) -"wod" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security/cells) -"won" = ( -/obj/structure/machinery/vending/shared_vending, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"wos" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"wow" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/hangar/monorail/control) -"woH" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydroeast) -"woO" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/hallways) -"wpa" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"wpn" = ( -/turf/open/floor/corsat/purplecorner, -/area/corsat/sigma/south) -"wpo" = ( -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/hangar/monorail) -"wpq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/researcher) -"wpt" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"wpy" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/hangar/checkpoint) -"wpB" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper, -/turf/open/floor/carpet15_15/west, -/area/corsat/omega/offices) -"wpE" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"wpS" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/hangar/security) -"wpV" = ( -/obj/structure/flora/jungle/planttop1, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"wqD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"wqT" = ( -/obj/structure/surface/rack, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"wqV" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"wrb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"wrs" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/airlocknorth) -"wrC" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"wrG" = ( -/obj/structure/largecrate/lisa, -/turf/open/floor/corsat/cargo, -/area/corsat/omega/cargo) -"wrJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/gamma, -/area/corsat/gamma/hangar/cargo) -"wrS" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/camera, -/turf/open/floor/corsat/blue/northwest, -/area/corsat/omega/control) -"wrT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/assembly/infra, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"wsk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"wsr" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"wsJ" = ( -/turf/open/floor/corsat, -/area/corsat/sigma/hangar/checkpoint) -"wsM" = ( -/turf/open/floor/corsat/arrow_south, -/area/corsat/gamma/hangar) -"wsU" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/darkgreen/southeast, -/area/corsat/gamma/rnr) -"wtg" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/datalab) -"wtp" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("sigma") - }, -/turf/open/floor/corsat/red/north, -/area/corsat/sigma/airlock/south/id) -"wtv" = ( -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/control) -"wtC" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/hangar/id) -"wtG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags, -/turf/open/floor/corsat/green/northeast, -/area/corsat/gamma/medbay/morgue) -"wtM" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"wtR" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Hangar Security"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/security) -"wtU" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"wtZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"wuq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar) -"wus" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/carpet5_1/west, -/area/corsat/gamma/administration) -"wux" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red, -/area/corsat/omega/hangar/security) -"wuF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/south) -"wuR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/hangar/flightcontrol) -"wuS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"wuT" = ( -/turf/open/floor/corsat/greenwhite/southwest, -/area/corsat/gamma/medbay/morgue) -"wvo" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/gamma/airlock/control) -"wvs" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/control) -"wvu" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"wvG" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat, -/area/corsat/sigma/south/robotics) -"wvJ" = ( -/obj/structure/reagent_dispensers/virusfood{ - pixel_y = -30 - }, -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bottle/random, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/virology) -"wvK" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"wvP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"wvR" = ( -/obj/structure/stairs, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"wvX" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"wvZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"wwd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/airlocknorth/id) -"wwo" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/hangar/monorail/control) -"wwx" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"wwH" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/laundry) -"wwS" = ( -/obj/structure/machinery/smartfridge/chemistry{ - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"wwT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"wwZ" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/complex) -"wxi" = ( -/mob/living/carbon/human/yiren, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"wxH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning, -/area/corsat/sigma/biodome) -"wxV" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south) -"wxY" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security/cells) -"wyh" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Autopsy Storage"; - req_access_txt = "103"; - req_one_access = null - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"wyl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"wyu" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/sigma/south/offices) -"wyv" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 32 - }, -/turf/open/floor/corsat/omega, -/area/corsat/omega/hallways) -"wyN" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/hangar/arrivals) -"wyU" = ( -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/airlock/control) -"wza" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/southeast/datalab) -"wzb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetancorner/east, -/area/corsat/gamma/residential/researcher) -"wzs" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/cargo) -"wzV" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/datalab) -"wAb" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/fire, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"wAd" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hangar) -"wAm" = ( -/obj/structure/window/reinforced, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/southeast/datalab) -"wAG" = ( -/obj/structure/machinery/autolathe, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/maint) -"wAH" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security) -"wAK" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/cargo) -"wAU" = ( -/turf/open/floor/corsat/brown/southeast, -/area/corsat/sigma/cargo) -"wAZ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/hangar/office) -"wBh" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/control) -"wBq" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"wBr" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/security) -"wBA" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"wBG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/checkpoint) -"wBH" = ( -/turf/open/floor/corsat/darkgreen, -/area/corsat/gamma/hangar/monorail) -"wBO" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/red, -/area/corsat/theta/airlock/east/id) -"wBR" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "SigmaBioAtmos"; - name = "Access Shutter" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"wCl" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" - }, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"wCo" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/sigmaremote) -"wCy" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/bluegrey/northwest, -/area/corsat/gamma/hangar/flightcontrol) -"wCB" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"wCI" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"wDb" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "riot cabinet"; - req_access_txt = "100" - }, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/turf/open/floor/corsat/red/southwest, -/area/corsat/gamma/security/armory) -"wDq" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"wDB" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/cargo) -"wDQ" = ( -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/south/engineering) -"wEs" = ( -/obj/structure/bed/sofa/vert/white/top, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"wEv" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"wEO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner/north, -/area/corsat/theta/airlock/control) -"wFk" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - id = "OmegaHangarE"; - name = "Landing Bay Omega" - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/hangar/security) -"wFz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/omega/hangar/security) -"wFF" = ( -/obj/structure/largecrate/chick, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/freezer) -"wFH" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/plating/warnplate/west, -/area/corsat/gamma/hangar) -"wFK" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/omega/hangar) -"wFO" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 5; - icon_state = "single_part" - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"wGg" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/gamma/administration) -"wGl" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/darkgreencorner, -/area/corsat/sigma/north) -"wGo" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/browncorner/north, -/area/corsat/sigma/cargo) -"wGs" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"wGz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"wGN" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/sigma/hangar/arrivals) -"wGX" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Research Complex"; - req_one_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/hydrowest) -"wHb" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"wHo" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/sigma/dorms) -"wHr" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/maint) -"wHs" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"wHu" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/omega/containment) -"wHA" = ( -/obj/structure/surface/rack{ - name = "Acid Resistant Rack"; - unacidable = 1 - }, -/obj/item/weed_extract, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/omega/complex) -"wHB" = ( -/turf/open/floor/corsat/purple/east, -/area/corsat/theta/biodome/complex) -"wHF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/cargo) -"wHM" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/theta/biodome/complex) -"wHO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"wHR" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering/atmos) -"wHW" = ( -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/sigma/south/robotics) -"wIb" = ( -/turf/open/floor/corsat/whitecorner/west, -/area/corsat/gamma/residential) -"wIh" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/lobby) -"wIi" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"wIj" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/sigma/airlock/control) -"wIB" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"wIM" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/sigma/north) -"wIO" = ( -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/sigma/hangar/monorail) -"wJc" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"wJe" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"wJl" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/theta/airlock/control) -"wJo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"wJt" = ( -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/hangar) -"wJC" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/gamma/engineering) -"wJG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"wJS" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/gamma/hangar/checkpoint) -"wKj" = ( -/obj/item/device/camera, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/biodome/complex) -"wKs" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/obj/effect/landmark/nightmare{ - insert_tag = "lockdown-theta-control" - }, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/control) -"wKt" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/syringes, -/turf/open/floor/corsat/greenwhite/southwest, -/area/corsat/gamma/medbay/chemistry) -"wKv" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/sigma/hangar/checkpoint) -"wKz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/brown/north, -/area/corsat/omega/hallways) -"wKB" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/gamma/hangar/cargo) -"wKP" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/gamma/foyer) -"wLd" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/hangar/security) -"wLf" = ( -/obj/item/weapon/gun/flamer, -/obj/item/explosive/grenade/incendiary, -/obj/structure/closet/secure_closet/guncabinet{ - name = "specimen control cabinet"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"wLl" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/carpet15_15/west, -/area/corsat/gamma/residential/lounge) -"wLn" = ( -/obj/effect/alien/weeds/node, -/turf/open/mars_cave/mars_cave_18, -/area/corsat/sigma/biodome) -"wLN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/hangar/monorail) -"wLV" = ( -/obj/structure/closet/secure_closet/guncabinet/riot_control, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"wMd" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"wMo" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/south/id) -"wMu" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/sigma/dorms) -"wMK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security) -"wMS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/obj/item/tool/crowbar, -/obj/item/tool/screwdriver, -/obj/item/tool/wrench, -/obj/item/stack/nanopaste, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/robotics) -"wMX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/south) -"wNb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"wNB" = ( -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/north) -"wNN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/east, -/area/corsat/omega/offices) -"wOe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/sigma/south/complex) -"wOg" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/south/id) -"wOs" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"wOu" = ( -/turf/open/floor/almayer/plating_striped, -/area/corsat/gamma/sigmaremote) -"wOI" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Xenobiology"; - req_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"wOJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"wOQ" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/fancy/cigarettes/arcturian_ace, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"wOR" = ( -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/sigma/north) -"wPe" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/hangar/cargo) -"wPk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "ThetaNorthD"; - name = "Entrance Airlock Control"; - pixel_y = 5; - use_power = 0 - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/control) -"wPo" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"wPD" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"wQh" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"wQm" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/sigma/south/offices) -"wQq" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"wQv" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/bluegrey, -/area/corsat/omega/offices) -"wQD" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"wQW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"wQY" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/hangar/monorail) -"wRg" = ( -/turf/open/floor/carpet5_1/west, -/area/corsat/omega/offices) -"wRh" = ( -/turf/open/floor/corsat/darkgreencorner/east, -/area/corsat/sigma/hangar) -"wRk" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/officesquares, -/area/corsat/omega/offices) -"wRx" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/sigma/dorms) -"wRP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"wRX" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/biodome/complex) -"wRY" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/residential/researcher) -"wSb" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"wSg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/coast/west, -/area/corsat/theta/biodome) -"wSG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"wSN" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/sigma/dorms) -"wTb" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Hangar Security"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/security) -"wTl" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/medbay/morgue) -"wTm" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/voice, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"wTu" = ( -/turf/open/floor/corsat/purple/north, -/area/corsat/omega/hallways) -"wTH" = ( -/obj/structure/machinery/pipedispenser, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/engineering) -"wTL" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/complex) -"wTR" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/airlock/control) -"wUf" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "10" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"wUi" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/theta/airlock/control) -"wUl" = ( -/turf/open/floor/corsat/arrow_north, -/area/corsat/gamma/cargo) -"wUo" = ( -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay/morgue) -"wUG" = ( -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/lobby) -"wUT" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"wUV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hallways) -"wVa" = ( -/turf/open/shuttle/dropship/dark_grey_bottom, -/area/prison/hangar_storage/research/shuttle) -"wVh" = ( -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"wVj" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"wVl" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/dorms) -"wVp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"wVz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer2, -/area/corsat/gamma/biodome) -"wVE" = ( -/obj/structure/surface/table/reinforced, -/obj/item/explosive/grenade/custom/large, -/turf/open/floor/corsat/lightplate, -/area/corsat/sigma/south/complex) -"wVV" = ( -/obj/structure/surface/rack, -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/hangar/security) -"wWD" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"wWG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"wWR" = ( -/turf/open/floor/corsat/darkgreen/northeast, -/area/corsat/gamma/hangar/arrivals) -"wWU" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/darkgreen/west, -/area/corsat/gamma/rnr) -"wXj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"wXt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"wXE" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/corsat/sigma/dorms) -"wXH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door/window/northright{ - name = "Firing Lane" - }, -/turf/open/floor/asteroidwarning, -/area/corsat/sigma/biodome/gunrange) -"wXM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/south) -"wXZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"wYs" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/corsat/inaccessible) -"wYM" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"wZd" = ( -/obj/structure/closet/wardrobe, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"wZg" = ( -/obj/structure/cryofeed/right{ - name = "\improper coolant feed" - }, -/turf/open/floor/corsat, -/area/corsat/sigma/south/complex) -"wZh" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"wZj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/hallwaysouth) -"wZn" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"wZq" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/sigma/south/complex) -"wZu" = ( -/obj/structure/pipes/vents/pump, -/turf/open/ice, -/area/corsat/gamma/biodome) -"wZz" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/sigma/south/complex) -"wZI" = ( -/turf/open/floor/carpet11_12/west, -/area/corsat/omega/offices) -"wZP" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"xaf" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/security) -"xai" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/hangar/cargo) -"xaq" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/residential/maint) -"xav" = ( -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet10_8/west, -/area/corsat/gamma/administration) -"xaL" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaHCargoN"; - name = "Checkpoint Control"; - pixel_x = -5; - pixel_y = 6; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "GammaHCargoW"; - name = "Checkpoint Control"; - pixel_x = -5; - pixel_y = -3; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "GammaHangarCargoC"; - name = "Security Shutters"; - pixel_x = 5; - pixel_y = 2; - use_power = 0 - }, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/cargo) -"xaZ" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/omega/airlocknorth) -"xbj" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("omega") - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"xbp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1 - }, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay) -"xbq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hallwaysouth) -"xbB" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/east/id) -"xbF" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey, -/area/corsat/sigma/south/offices) -"xbN" = ( -/obj/item/toy/deck, -/obj/structure/machinery/light, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/white, -/area/corsat/sigma/dorms) -"xbU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/bluegrey/southeast, -/area/corsat/theta/airlock/east) -"xbV" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/darkgreencorner/west, -/area/corsat/gamma/hangar/monorail) -"xbW" = ( -/obj/structure/safe, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"xcc" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/hangar/monorail/control) -"xcf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"xcm" = ( -/obj/structure/surface/rack, -/obj/item/oldresearch/Resin, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1; - name = "Secure Racks"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/purplewhite/southeast, -/area/corsat/omega/complex) -"xcs" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal{ - amount = 25; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/rods{ - amount = 25 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/residential/maint) -"xcD" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/control) -"xcQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/bluegrey/northeast, -/area/corsat/omega/offices) -"xcW" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/biodome/virology) -"xcZ" = ( -/turf/open/floor/corsat/purplecorner, -/area/corsat/theta/biodome/complex) -"xdi" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"xdk" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/door/window/eastright{ - name = "Weapon Rack" - }, -/obj/structure/window/reinforced/toughened{ - dir = 1 - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"xdn" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/toxins) -"xdr" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"xdt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"xdy" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/carpet13_5/west, -/area/corsat/gamma/residential/lounge) -"xdE" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Gamma Dome Control"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"xdF" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/sigmaremote) -"xek" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/security) -"xep" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar/security) -"xer" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/hangar/office) -"xey" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/hangar/office) -"xez" = ( -/obj/structure/closet/wardrobe/chemistry_white, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/chemistry) -"xeN" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/south/security) -"xeS" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "Sigma Dome Control"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/airlock/control) -"xfd" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/south/offices) -"xft" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/airlock/control) -"xfw" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/theta/airlock/east) -"xfy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"xfC" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"xfF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/omega/complex) -"xfI" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south) -"xfJ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/gamma/residential/west) -"xfL" = ( -/obj/structure/machinery/door/window/southleft{ - dir = 8; - layer = 2.8 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/item/tool/soap, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"xgf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"xgp" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/dorms) -"xgt" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/researcher) -"xgv" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"xgy" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering/atmos) -"xgN" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"xgP" = ( -/turf/open/mars/mars_dirt_12, -/area/corsat/sigma/biodome) -"xgV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/brown/southwest, -/area/corsat/gamma/cargo) -"xha" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/ice, -/area/corsat/gamma/biodome) -"xhg" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_access_txt = "102" - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/omega/maint) -"xhh" = ( -/turf/open/floor/corsat/yellow/west, -/area/corsat/gamma/engineering) -"xhu" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"xhE" = ( -/turf/open/floor/corsat/red, -/area/corsat/gamma/hangar/cargo) -"xhS" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/airlock/control) -"xhV" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/south) -"xiv" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/corsat/red, -/area/corsat/sigma/airlock/control) -"xiw" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"xiF" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "9" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"xjd" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Airlock Security"; - req_access_txt = "101" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth) -"xjl" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/residential/lounge) -"xju" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/gamma/engineering) -"xjz" = ( -/obj/structure/showcase, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/obj/structure/window/reinforced/toughened, -/obj/structure/window/reinforced/toughened{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/south) -"xjC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"xjF" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/west) -"xjJ" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo/disposal) -"xjL" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/hangar/security) -"xjM" = ( -/obj/structure/machinery/bot/medbot/mysterious, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"xjN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/sigma/south/complex) -"xjQ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/purplewhitecorner/north, -/area/corsat/gamma/sigmaremote) -"xkT" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) -"xlh" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, -/area/corsat/gamma/hangar/monorail/railcart) -"xlp" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/freezer) -"xls" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"xlD" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"xlF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/cryofeed/right{ - name = "\improper coolant feed" - }, -/turf/open/floor/corsat, -/area/corsat/sigma/south/complex) -"xlQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential) -"xlX" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"xmh" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"xmm" = ( -/turf/open/floor/corsat/brown/north, -/area/corsat/sigma/cargo) -"xmq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/airlocknorth/id) -"xmG" = ( -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/toxins) -"xmI" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/sigma/north) -"xmP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat/whitetan, -/area/corsat/sigma/dorms) -"xmZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"xnd" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"xnl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/arrivals) -"xnS" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Hall Maintainence"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/north) -"xnX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Hub"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/security) -"xod" = ( -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/foyer) -"xof" = ( -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/gamma/engineering/core) -"xoj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/mars, -/area/corsat/sigma/biodome) -"xok" = ( -/obj/structure/machinery/door_control{ - id = "OmegaCargo"; - name = "Cargo Door"; - pixel_x = -24; - use_power = 0 - }, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/cargo) -"xov" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/complex) -"xoy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"xoL" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/gamma/foyer) -"xpc" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"xpf" = ( -/obj/item/device/analyzer/plant_analyzer, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/theta/biodome/complex) -"xpg" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/biodome/complex) -"xps" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/hangar/security) -"xpC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/foyer) -"xqd" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - id = "GammaEastE"; - name = "Gamma East Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/control) -"xqe" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south) -"xqv" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/residential) -"xqE" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/complex) -"xqY" = ( -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"xqZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"xrf" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat/spiralwoodalt, -/area/corsat/gamma/residential/lounge) -"xrr" = ( -/turf/open/floor/corsat/purplecorner/north, -/area/corsat/sigma/south) -"xrG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"xrX" = ( -/turf/open/floor/corsat/omega, -/area/corsat/omega/hallways) -"xsf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/theta/biodome/complex) -"xsq" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/gloves/latex, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/security) -"xsx" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/chem_dispenser/soda{ - dir = 8 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/sigma/cafe) -"xsy" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/west/id) -"xsA" = ( -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/gamma/biodome/virology) -"xsJ" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"xsU" = ( -/obj/structure/flora/bush/ausbushes/var3/leafybush, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"xsV" = ( -/obj/structure/showcase{ - icon_state = "relay"; - name = "Telecommunication Relay" - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"xsX" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/hangar/office) -"xsZ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat, -/area/corsat/sigma/southeast/generator) -"xta" = ( -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/omega/complex) -"xtc" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/purple, -/area/corsat/gamma/biodome/complex) -"xtn" = ( -/obj/structure/surface/table/almayer, -/obj/item/form_printer, -/obj/item/tool/pen, -/turf/open/floor/corsat/purplewhite, -/area/corsat/omega/complex) -"xtx" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/greenwhite/east, -/area/corsat/gamma/medbay) -"xtz" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/shuttle/escapepod/floor1, -/area/corsat/theta/biodome/complex) -"xtF" = ( -/obj/structure/machinery/camera/autoname{ - network = list("theta") - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"xtK" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Food Storage"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"xug" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/theta/biodome/hydrowest) -"xux" = ( -/obj/structure/safe, -/obj/item/xeno_egg, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/omega/offices) -"xuD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/hallwaysouth) -"xuJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/communications, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"xuK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/white/southeast, -/area/corsat/gamma/hallwaysouth) -"xuS" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"xuV" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/gamma/residential/maint) -"xuZ" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "OmegaS"; - name = "Omega Airlock" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat/marked, -/area/corsat/omega/airlocknorth) -"xvd" = ( -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/gamma/hallwaysouth) -"xvp" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/lavatory) -"xvq" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/gamma/biodome/virology) -"xvs" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar/checkpoint) -"xvC" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay) -"xvL" = ( -/obj/structure/machinery/power/reactor/colony{ - desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; - name = "\improper G-17 Thermoelectric Generator" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/engineering/core) -"xvQ" = ( -/turf/open/floor/carpet11_12/west, -/area/corsat/gamma/administration) -"xvZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"xwc" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/retractor, -/obj/item/tool/surgery/bonegel, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/sigmaremote) -"xwr" = ( -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/hydroeast) -"xwH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave, -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/security) -"xwL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay/morgue) -"xwQ" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/closet/wardrobe/virology_white, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"xxa" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Hangar Office"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/office) -"xxn" = ( -/obj/structure/surface/rack, -/obj/item/tool/soap/deluxe, -/obj/item/tool/soap/deluxe, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/residential) -"xxo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hallways) -"xxr" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Office"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/id) -"xxy" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/robotics) -"xxH" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat/red/east, -/area/corsat/theta/airlock/west/id) -"xxL" = ( -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/sigmaremote) -"xxO" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"xxU" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat/bluegrey, -/area/corsat/gamma/airlock/north) -"xxW" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/brown, -/area/corsat/sigma/cargo) -"xya" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar) -"xye" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/omega/complex) -"xyy" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/hangar/office) -"xyz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"xyD" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/south/security) -"xyU" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaControl"; - name = "Observation Shutters"; - pixel_y = 5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "OmegaO"; - name = "Dome Lockdown"; - req_one_access_txt = "106;103"; - use_power = 0 - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/omega/control) -"xzd" = ( -/turf/open/floor/corsat/red, -/area/corsat/sigma/hangar/security) -"xzf" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"xzj" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/mech_bay_recharge_port{ - pixel_x = 8 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"xzm" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"xzF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hangar/monorail) -"xzL" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/purplewhite/northwest, -/area/corsat/gamma/sigmaremote) -"xzN" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"xzW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/mars, -/area/corsat/sigma/biodome) -"xzY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/purplecorner/east, -/area/corsat/omega/airlocknorth) -"xAa" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"xAj" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/medbay/morgue) -"xAp" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/obj/item/pamphlet/skill/powerloader, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo) -"xAw" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/sigmaremote) -"xAA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/residential/east) -"xAE" = ( -/turf/open/floor/corsat/greenwhitecorner/west, -/area/corsat/gamma/medbay/lobby) -"xAG" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/northwest, -/area/corsat/sigma/south/security) -"xAU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Hangar Office" - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/hangar/office) -"xBc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars/mars_dirt_10, -/area/corsat/sigma/biodome) -"xBK" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"xBO" = ( -/obj/structure/bed/chair, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"xBP" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/platform, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/north) -"xCn" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"xCq" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/checkpoint) -"xCy" = ( -/obj/structure/bed/nest, -/turf/open/ice, -/area/corsat/gamma/biodome) -"xCK" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/cargo) -"xCL" = ( -/turf/open/mars_cave/mars_cave_6, -/area/corsat/sigma/biodome) -"xCR" = ( -/turf/open/floor/corsat/tcomms/southwest, -/area/corsat/gamma/sigmaremote) -"xCZ" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/south) -"xDm" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat/tan/north, -/area/corsat/sigma/dorms) -"xDw" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/hangar/security) -"xDC" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "SigmaEastID"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/east/id) -"xDE" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/hallwaysouth) -"xDF" = ( -/turf/open/floor/corsat/whitetancorner/north, -/area/corsat/gamma/canteen) -"xDG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar/security) -"xDI" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/gloves, -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/complex) -"xDL" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"xDO" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"xDQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/biodome/complex) -"xDU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/airlocknorth/id) -"xEh" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown, -/area/corsat/gamma/cargo) -"xEj" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/corsat/squareswood/north, -/area/corsat/gamma/rnr/library) -"xEv" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Waste Tank Control" - }, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/theta/airlock/control) -"xEz" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"xEO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/security) -"xEY" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar) -"xFa" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/control) -"xFo" = ( -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/medbay/lobby) -"xFu" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/obj/structure/machinery/door/window/southleft{ - dir = 4; - layer = 2.8 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"xFy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/theta/biodome/complex) -"xFF" = ( -/turf/open/floor/corsat/purplewhite/west, -/area/corsat/gamma/sigmaremote) -"xFK" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/corsat/theta/biodome/complex) -"xFN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/mars, -/area/corsat/sigma/biodome) -"xFP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"xGh" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Food Storage"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"xGl" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"xGn" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"xGp" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/white/northeast, -/area/corsat/sigma/dorms) -"xGw" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/virology) -"xGx" = ( -/turf/open/floor/corsat/whitetan/west, -/area/corsat/gamma/residential/west) -"xGA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/east/id) -"xGD" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/bluegrey, -/area/corsat/theta/airlock/east) -"xGH" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"xGS" = ( -/turf/open/floor/corsat/whitetancorner/east, -/area/corsat/gamma/residential/west) -"xGU" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/spiralplate, -/area/corsat/gamma/hangar/flightcontrol) -"xGZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/bluegreycorner/west, -/area/corsat/sigma/southeast/dataoffice) -"xHa" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"xHj" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/hallways) -"xHs" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/rnr) -"xHx" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/omega/complex) -"xHD" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"xHQ" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 1 - }, -/obj/structure/machinery/door/window/eastright{ - name = "Weapon Rack" - }, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"xIa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/omega/complex) -"xIx" = ( -/obj/structure/cargo_container/trijent/mid, -/turf/open/floor/corsat/cargo, -/area/corsat/gamma/cargo) -"xIA" = ( -/obj/structure/target, -/obj/item/clothing/suit/storage/militia, -/turf/open/mars_cave/mars_cave_17, -/area/corsat/sigma/biodome/gunrange) -"xIF" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/robotics) -"xIN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/hangar) -"xIO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Airlock Control Office"; - req_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/airlock/south) -"xJf" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"xJg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"xJj" = ( -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/canteen) -"xJl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/rnr) -"xJo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"xJp" = ( -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"xJv" = ( -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/south/engineering) -"xJw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/generator) -"xJA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat/red, -/area/corsat/gamma/security) -"xJC" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/cargo) -"xJM" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/purplewhite, -/area/corsat/sigma/south/complex) -"xJP" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/complex) -"xKc" = ( -/turf/open/floor/corsat/darkgreen/north, -/area/corsat/sigma/hangar/arrivals) -"xKi" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/corsat/sigma/biodome/gunrange) -"xKj" = ( -/turf/open/floor/corsat/blue, -/area/corsat/gamma/residential) -"xKo" = ( -/turf/open/floor/corsat/whitetan/northeast, -/area/corsat/gamma/canteen) -"xKq" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/airlock/control) -"xKu" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/airlock/east) -"xKx" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/north/id) -"xKA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/gamma/hallwaysouth) -"xKB" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/hangar/flightcontrol) -"xKK" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/greenwhite/north, -/area/corsat/gamma/medbay) -"xKU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/gamma/hangar/flightcontrol) -"xLl" = ( -/obj/structure/machinery/door_control{ - id = "RemoteGateO"; - name = "Gate Shutters"; - pixel_x = 24; - use_power = 0 - }, -/obj/structure/closet/crate/science, -/turf/open/floor/almayer/plating/northeast, -/area/corsat/gamma/sigmaremote) -"xLn" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ - id = "delta_gamma2"; - name = "Gamma Checkpoint"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"xLE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/freezer) -"xLH" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/hangar) -"xLS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/corsat/sigma/south/complex) -"xLT" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/canteen) -"xMf" = ( -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/gamma/airlock/north) -"xMq" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/northeast, -/area/corsat/theta/airlock/control) -"xMD" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/gamma/rnr) -"xMJ" = ( -/turf/closed/wall/biodome, -/area/corsat/omega/hallways) -"xMS" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/obj/effect/decal/cleanable/cobweb{ - dir = 1 - }, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"xMZ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaAdmin"; - name = "Security Shutters" - }, -/turf/open/floor/corsat/officesquares, -/area/corsat/gamma/administration) -"xNa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"xNf" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/mars_cave/mars_cave_2, -/area/corsat/sigma/biodome/scrapyard) -"xNn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetancorner, -/area/corsat/gamma/residential/west) -"xNt" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile{ - id = "ThetaNorthS"; - name = "Theta North Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/control) -"xNv" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/sterileplate, -/area/corsat/gamma/kitchen) -"xNC" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/surface/table/reinforced, -/obj/item/device/assembly/voice, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"xNI" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/southeast/datamaint) -"xNJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Food Storage"; - req_one_access = null - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hydroponics) -"xNK" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/red/east, -/area/corsat/omega/security) -"xNM" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "GammaWestD"; - name = "Gamma Dome Airlock" - }, -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ - id = "map_lockdown"; - name = "Gamma Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/control) -"xNQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"xNS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/sigma/dorms) -"xNV" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"xOe" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security/armory) -"xOn" = ( -/obj/structure/morgue, -/turf/open/floor/corsat/green/west, -/area/corsat/gamma/medbay/morgue) -"xOw" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) -"xOC" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet6_2/west, -/area/corsat/gamma/administration) -"xOT" = ( -/turf/open/floor/corsat/officesquares, -/area/corsat/sigma/hangar/office) -"xOZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/south/security) -"xPb" = ( -/turf/open/floor/corsat/whitetancorner/west, -/area/corsat/gamma/canteen) -"xPn" = ( -/obj/structure/surface/rack, -/obj/item/holder/drone, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/south/robotics) -"xPu" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/south/engineering) -"xPv" = ( -/obj/structure/machinery/door_control{ - id = "SigmaBioAtmos"; - name = "Access Shutters"; - pixel_y = 24 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"xPB" = ( -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"xPE" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/engineering) -"xPG" = ( -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat/brown/west, -/area/corsat/gamma/cargo) -"xPO" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/south/offices) -"xQg" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/sigmaremote) -"xQk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/lounge) -"xQr" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/turf/open/floor/corsat/bluegrey/north, -/area/corsat/omega/offices) -"xQw" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering/core) -"xQF" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/corsat/omega/control) -"xRg" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/south/engineering) -"xRh" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Decontamination Chamber"; - req_one_access_txt = "103" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Viro"; - name = "Virology Lockdown" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/biodome/virology) -"xRp" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/airlock/control) -"xRq" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/corsat/theta/biodome) -"xRv" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/brown/west, -/area/corsat/omega/cargo) -"xRN" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/brown/west, -/area/corsat/gamma/cargo) -"xRU" = ( -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("omega") - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red, -/area/corsat/omega/checkpoint) -"xSc" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/theta, -/area/corsat/theta/airlock/control) -"xSf" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/southeast) -"xSj" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/plating, -/area/corsat/omega/security) -"xSl" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/red, -/area/corsat/omega/security) -"xSM" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/airlocknorth) -"xSP" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/yellow, -/area/corsat/gamma/engineering) -"xSY" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "5" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"xTa" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/foyer) -"xTb" = ( -/turf/open/floor/corsat/brown/southwest, -/area/corsat/sigma/cargo) -"xTc" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper/Toxin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/lightplate, -/area/corsat/gamma/biodome/toxins) -"xTk" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/greenwhite, -/area/corsat/gamma/medbay) -"xTr" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Airlock Control"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/red, -/area/corsat/theta/airlock/control) -"xTB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"xTC" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/south) -"xTK" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow/north, -/area/corsat/gamma/airlock/control) -"xTR" = ( -/obj/item/bodybag, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar) -"xTT" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/blue/northwest, -/area/corsat/omega/control) -"xUe" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/sigma/south/complex) -"xUz" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/control) -"xUN" = ( -/turf/open/floor/corsat/darkgreen, -/area/corsat/sigma/north) -"xUV" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Research Complex"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"xUY" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/purple/east, -/area/corsat/gamma/biodome/complex) -"xVb" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/southeast/datalab) -"xVd" = ( -/turf/open/floor/corsat/green/north, -/area/corsat/gamma/medbay/morgue) -"xVi" = ( -/obj/item/xeno_egg, -/obj/item/xeno_egg, -/obj/item/xeno_egg, -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"xVj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/rack, -/obj/item/device/reagent_scanner, -/turf/open/floor/corsat/purplewhite/southwest, -/area/corsat/gamma/biodome/complex) -"xVm" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/security/armory) -"xVo" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/south/security) -"xVw" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/white, -/area/corsat/gamma/residential/east) -"xVO" = ( -/turf/open/floor/corsat/darkgreen/east, -/area/corsat/sigma/hangar/monorail) -"xVS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"xVY" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security) -"xWo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/canteen) -"xWp" = ( -/obj/structure/machinery/autodispenser{ - dir = 4 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"xWu" = ( -/obj/structure/bed, -/turf/open/floor/corsat/red/west, -/area/corsat/gamma/security/cells) -"xWG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/fire, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat/purplewhitecorner/west, -/area/corsat/omega/complex) -"xWI" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/complex) -"xWS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"xXc" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat/purplewhitecorner, -/area/corsat/gamma/biodome/complex) -"xXd" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/sigma/hangar) -"xXf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/east, -/area/corsat/theta/airlock/control) -"xXk" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/bluegreycorner/north, -/area/corsat/sigma/south/offices) -"xXl" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Showers" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/gamma/residential/showers) -"xXy" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"xXA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/omega/cargo) -"xXW" = ( -/turf/open/floor/corsat/whitetan/southeast, -/area/corsat/gamma/canteen) -"xYb" = ( -/obj/structure/machinery/door_control{ - id = "OmegaAccessC"; - name = "Security Shutters"; - pixel_y = 5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "OmegaWarden"; - name = "Privacy Shutters"; - pixel_y = -3; - use_power = 0 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat/red/west, -/area/corsat/omega/security) -"xYg" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/corsat/omega/airlocknorth) -"xYk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/gamma/security/cells) -"xYs" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"xYH" = ( -/obj/structure/surface/rack, -/obj/item/alienjar, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 2; - name = "Secure Racks"; - req_access_txt = "103" - }, -/turf/open/floor/corsat/purplewhite/northeast, -/area/corsat/omega/complex) -"xYS" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/virology) -"xZB" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/south/complex) -"xZH" = ( -/turf/open/floor/corsat/theta, -/area/corsat/theta/airlock/control) -"xZN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/darkgreencorner/north, -/area/corsat/gamma/hangar) -"xZO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/engineering/atmos) -"xZQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"xZZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/southeast) -"yal" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"yau" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"yaw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/hangar/security) -"yaP" = ( -/turf/open/mars_cave/mars_cave_18, -/area/corsat/sigma/biodome/gunrange) -"ybf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 4 - }, -/turf/open/floor/corsat/bluegrey/southwest, -/area/corsat/gamma/airlock/north) -"ybg" = ( -/turf/open/floor/corsat/blue/north, -/area/corsat/omega/hallways) -"ybA" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/south/robotics) -"ybT" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/laundry) -"ycf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"ycv" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hangar/arrivals) -"ycB" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Hazardous Materials Storage"; - req_access_txt = "103"; - req_one_access = null - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/complex) -"ycH" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/blue, -/area/corsat/gamma/hallwaysouth) -"ycN" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"ydi" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/gamma/biodome/toxins) -"ydo" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/corsat/white/north, -/area/corsat/gamma/residential) -"ydx" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/purplewhite/east, -/area/corsat/gamma/sigmaremote) -"ydy" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"ydJ" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/complex) -"yeJ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("theta") - }, -/turf/open/floor/corsat/purplecorner/west, -/area/corsat/theta/biodome/complex) -"yeN" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "1" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/sigma/south/complex/teleporter) -"yfa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitetancorner/east, -/area/corsat/sigma/dorms) -"yfh" = ( -/turf/open/floor/corsat, -/area/corsat/sigma/cargo) -"yfj" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/whitetan/north, -/area/corsat/gamma/residential/west) -"yfr" = ( -/obj/structure/machinery/optable, -/turf/open/floor/corsat/purple/west, -/area/corsat/omega/complex) -"yfw" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("omega") - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/hangar) -"yfy" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"yfH" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"yfO" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"yfT" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/whitebluefull/southwest, -/area/corsat/sigma/lavatory) -"ygp" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat/greenwhite/southeast, -/area/corsat/gamma/medbay/surgery) -"ygq" = ( -/turf/open/floor/corsat/purplewhitecorner/east, -/area/corsat/gamma/biodome/toxins) -"ygv" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/asteroidwarning/east, -/area/corsat/sigma/biodome) -"ygF" = ( -/obj/structure/machinery/computer/cameras{ - network = list("theta"); - pixel_y = 22 - }, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"ygK" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/turf/open/floor/corsat/whitetan/east, -/area/corsat/gamma/residential/west) -"ygP" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/theta/airlock/control) -"yhd" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"yhi" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/spiralplate, -/area/corsat/omega/offices) -"yhR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/engineering) -"yif" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/plating/warnplate/north, -/area/corsat/sigma/hangar) -"yim" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/residential/east) -"yit" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/retrosquares, -/area/corsat/sigma/north) -"yiu" = ( -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"yiz" = ( -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"yiF" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/card, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/corsat/red/northeast, -/area/corsat/gamma/hangar/security) -"yiG" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/theta/biodome/complex) -"yiV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) -"yiY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/south/robotics) -"yiZ" = ( -/obj/structure/sign/safety/biohazard, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/phoron/small_stack, -/turf/open/floor/corsat/purplewhite, -/area/corsat/gamma/biodome/virology) -"yjb" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/redcorner/east, -/area/corsat/theta/airlock/east/id) -"yjg" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Subject den"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquareslight, -/area/corsat/gamma/biodome/toxins) -"yjv" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat/whitetan/northwest, -/area/corsat/gamma/residential/west) -"yjw" = ( -/obj/structure/fence, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"yjy" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"yjA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/brown/east, -/area/corsat/omega/cargo) -"yjE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat/lightplate, -/area/corsat/theta/biodome/complex) -"yjO" = ( -/obj/structure/sign/safety/biolab{ - pixel_y = 32 - }, -/turf/open/floor/corsat/purplewhite/north, -/area/corsat/theta/biodome/hydroeast) -"yjQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/engineering) -"yjT" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/gamma/security) -"ykk" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/airlock/south) -"ykt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/bluegrey/west, -/area/corsat/gamma/hangar/office) -"ykL" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/south) -"yle" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"ylg" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/spiralplate, -/area/corsat/sigma/southeast/dataoffice) -"yli" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/cargo) -"ylo" = ( -/turf/open/space, -/area/space) -"yls" = ( -/turf/open/shuttle/escapepod/floor5, -/area/corsat/theta/biodome/complex) -"ylt" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/security) -"ylz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/almayer/tcomms, -/area/corsat/sigma/southeast/telecomm) -"ylB" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/omega/hangar) -"ylD" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/omega/airlocknorth/id) -"ylG" = ( -/turf/open/floor/corsat/greenwhite/west, -/area/corsat/gamma/medbay/lobby) -"ylY" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "17" - }, -/turf/open/floor/corsat/corsat_teleporter_static/southwest, -/area/corsat/gamma/sigmaremote/teleporter) - -(1,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aer -aer -adM -adM -aer -adM -adM -aer -aer -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aiU -aiU -aiU -aiU -aiU -aiU -aiU -aiU -aiU -aiU -aiU -aiU -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(2,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aer -chs -mkO -mkO -rlr -mkO -mkO -chs -aer -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aiU -aiU -aiU -aiU -aiU -aiU -bfF -bfB -bgk -bfS -bfa -bfZ -bgd -bge -bfQ -bfe -aiU -aiU -aiU -aiU -aiU -aiU -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(3,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aer -aer -aer -xrf -adn -adn -adn -adn -adn -rkV -aer -aer -aer -abG -abG -adV -ylo -ylo -ylo -ylo -adV -abG -abG -adV -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aiU -aiU -aiU -aiU -bfS -bfW -bfa -pwp -bfB -bfG -bfc -bfc -bfc -bfc -bfc -bfc -bfc -pwp -bfG -bfg -nfz -xCy -ims -nfz -aiU -aiU -aiU -aiU -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(4,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aer -qmy -kAU -rkV -adn -nRM -vwf -hnC -adn -rkV -kEy -qmy -acN -anf -anf -adV -adV -adV -adV -adV -adV -apF -abJ -adV -adV -adV -adV -adV -ylo -ylo -adV -adV -adV -adV -adV -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aiU -aiU -aiU -bfS -bfW -bfa -bfZ -bge -bfc -bfc -bfc -bfc -bfc -bfc -bfc -aEZ -tWy -bfc -bfc -bfc -bfc -bfc -bfc -aEZ -bfc -wFO -wFO -bfc -bfc -aiU -aiU -aiU -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(5,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -adV -abG -abG -abG -adV -adV -adV -adV -abG -abG -abG -aer -uBb -adj -adn -adn -uqd -rAh -xdy -adn -adn -aly -nZO -acN -aFM -abN -abJ -abH -abP -odj -abP -eTj -abN -ank -abP -wpE -mrv -jWW -adV -ylo -ylo -adV -wpE -mrv -jWW -adV -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aiU -aiU -aiU -bfc -nZR -wiF -wiF -wiF -wiF -wiF -wiF -wiF -wiF -wiF -wiF -wiF -wiF -wiF -fWM -wiF -wiF -nnC -huu -bfc -bfc -bfc -bfc -wFO -bfc -bfc -bfc -bfc -bfc -aiU -aiU -aiU -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ahA -ahA -ahA -ahA -ahA -ahA -ahA -ylo -ylo -ylo -ahA -ahA -ahA -ahA -ahA -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -azX -azX -azX -azX -azX -azX -azX -azX -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(6,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -adV -adV -abL -abN -eTj -adV -wpE -mrv -gIZ -abN -acH -exb -acN -dVs -adn -llr -adn -tkv -unJ -xdy -adn -llr -adn -qmy -acN -acu -lsH -abN -ank -abP -qpX -gIZ -abN -lsH -asQ -abP -abP -lct -abP -adV -abG -abG -adV -abP -lct -abP -adV -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aiU -aiU -aiU -bfF -bgk -bfc -oJn -bfc -bfc -bfc -bfc -bfc -aEZ -bfc -bfc -bfc -bfS -bfa -bfc -bfc -bfc -bfc -bfc -hHy -huu -bfc -foQ -bfc -bfc -bfc -bfc -bfc -aEZ -bfc -bgf -bfb -bfu -aiU -aiU -aiU -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ahA -cDw -rpO -jSr -rpO -fwY -ahA -ylo -ylo -ylo -ahA -qJF -rpO -wcD -ahA -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -azX -azX -azX -azX -azX -sWP -sWP -sWP -sWP -sWP -sWP -azX -azX -azX -azX -azX -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(7,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abG -abH -abM -abN -eTj -abP -xfL -abP -abP -adE -abN -abJ -acN -qmy -adj -dQQ -kHe -tkv -wLl -iaO -adn -dQQ -aly -hyk -acN -abL -oGz -abN -abO -abP -vWx -abP -acz -oGz -abO -abP -acc -abN -acz -abP -qhF -pLe -abP -acz -abN -lQu -adV -adV -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aiU -aiU -aiU -bfF -bfB -bfG -bfc -bfc -oJn -aEZ -aIt -aIt -aIt -aIt -aIt -aII -aII -aIt -aIt -aIt -lnQ -aII -aIt -aIt -bfc -oJn -bfc -bfc -bfc -bfc -bfc -sFF -bfc -bfc -sFF -bfc -bgc -bfU -bfT -pwp -bgk -aiU -aiU -aiU -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ahA -ahA -arV -ycN -xls -eIr -xls -uBO -arV -arV -arV -arV -arV -vNf -xls -bIJ -arV -ahA -ahA -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -azX -azX -azX -sWP -sWP -sWP -sWP -sWP -dSN -dSN -dSN -dSN -sWP -sWP -sWP -sWP -sWP -azX -azX -azX -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(8,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abG -abJ -abN -lsH -asQ -abP -abP -abP -abL -fFa -lsH -aFn -acN -whi -adn -dQQ -adn -iEx -sSA -kHt -adn -dQQ -adn -kAU -acN -eTj -oGz -abP -abP -abP -abP -abP -abP -acv -abP -abP -aqb -rcg -pkc -apo -hlQ -kRj -apo -pkc -aIj -acH -acI -abG -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aiU -aiU -bfF -bfB -bfG -bfc -aEZ -bfc -bfc -oJn -bfc -aIt -cVU -wpa -aIt -pxo -pvK -txs -dBM -iAY -dBM -txs -pvK -xVj -aIt -bfc -aER -bfc -bfc -bfc -hze -bfc -bfc -bfc -bfc -tWy -bfc -bfc -bfg -bfU -bfW -bfT -pwp -bgk -aiU -aiU -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ahA -dtu -nON -hEQ -pEw -pEw -pEw -pEw -pEw -iVO -aiL -kcR -pEw -pEw -pEw -pEw -pEw -iVO -ahA -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -azX -azX -sWP -sWP -sWP -dSN -npg -dSN -dSN -dSN -dSN -npg -dSN -dSN -dSN -dSN -dSN -sWP -sWP -sWP -azX -azX -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(9,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -abF -aar -aar -aar -aar -aar -abF -abF -ylo -abF -aar -aar -aar -abF -abF -abF -abF -abF -abF -adE -oGz -abN -gIZ -mrv -abP -abP -adE -qJl -acc -acN -uBb -adj -xQk -pIo -pIo -pIo -pIo -pIo -oEK -aly -nZO -acN -juf -oGz -abP -odj -hcv -abP -onS -paA -daq -tGn -abP -uST -aGb -abO -abP -wzb -spt -abP -abL -aMP -eTj -abJ -abG -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aiU -aiU -aiU -pwp -bfG -bfc -bfc -bfc -bfc -bfc -bfc -oJn -aIt -aIt -uwe -uwe -aIt -jts -qCX -kXC -qCX -qCX -qCX -kXC -qCX -tWh -aIt -aIt -oJn -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -hHy -huu -bfc -bfc -bfZ -bge -bfU -bfW -bfT -bfu -aiU -aiU -aiU -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ahA -xuJ -yhi -cvo -dOY -jQk -dOY -dOY -dOY -sVF -aiQ -cvo -dOY -dOY -dOY -dOY -dOY -sVF -ahA -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -azX -azX -azX -sWP -sWP -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -npg -sWP -sWP -azX -azX -azX -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(10,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -abF -tfm -xFF -xFF -xFF -xFF -xFF -cyD -abF -abF -abF -uIs -qNh -jky -abf -xwc -onu -jNl -xdF -aax -abO -oGz -iZz -abP -xgt -non -abP -abO -oGz -acz -acN -ghl -dlQ -dQQ -adn -gJR -xjl -jhu -adn -dQQ -qmy -qmy -acN -acz -oGz -gIZ -ftK -abP -abP -maZ -mSw -daq -tGn -abP -abP -abP -abP -abP -eou -tGn -abP -abP -abP -abP -adV -adV -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aiU -aiU -bfc -bfc -bfc -bfc -aEZ -bfc -bfc -bfc -bfc -bfc -oJn -aIt -hRD -hjI -mPy -aIt -xWp -qCX -xJP -fOG -uID -vJR -xJP -qCX -dAA -rOZ -aIt -oJn -bfc -aEZ -bfc -bfc -bfc -bfc -bfc -bfc -hHy -huu -bfc -bfc -aEZ -bfc -bfZ -bge -bfU -bfT -bfh -bfi -aiU -aiU -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ahA -sYW -hVB -cvo -dOY -vrN -dOY -dOY -dOY -sVF -aiQ -cvo -dOY -uws -vgk -mFr -dOY -kbQ -ahA -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -azX -azX -sWP -sWP -sWP -dSN -dSN -dSN -dSN -dSN -dSN -dSN -llL -llL -llL -llL -dSN -dSN -npg -dSN -dSN -dSN -dSN -sWP -sWP -sWP -azX -azX -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(11,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -daM -hkc -qJu -qJu -qJu -qJu -qJu -qIc -jzw -abf -nRI -hkc -lJv -phU -abf -pab -pze -pze -xxL -aax -abP -acv -abP -abP -abP -abP -abP -abP -acv -abP -acN -acV -acV -dQQ -adQ -acV -acV -acV -adn -lZp -acV -acV -acN -abP -acv -abP -abP -abP -onS -paA -mSw -daq -jdw -pLe -qhF -qAK -qhF -pLe -hkf -oOc -abP -wpE -mrv -jWW -adV -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aiU -aiU -nZR -wiF -wiF -wiF -wiF -wiF -wiF -wiF -wiF -qkt -wiF -xNa -aIt -dkh -fnR -uEX -aIt -wwS -qCX -fFc -xJg -tEq -qCX -qCX -qCX -dAA -uQe -aIt -nri -wiF -vfR -vfR -vfR -wiF -aFd -wiF -wiF -fWM -wiF -wiF -wiF -wiF -wiF -tlx -bfc -bfc -bfU -bfT -bfh -bfi -aiU -aiU -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ahA -jqi -rDA -cvo -vlx -jIz -qJF -qra -dOY -tHT -aiL -iHs -dOY -wcD -eIr -yfy -dOY -kbQ -ahA -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -azX -azX -sWP -sWP -ssQ -dSN -dSN -dSN -npg -dSN -dSN -sWP -vCx -vCx -iuy -iuy -vCx -vCx -sWP -dSN -dSN -dSN -dSN -dSN -npg -ssQ -sWP -sWP -azX -azX -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(12,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -abF -usF -pze -pze -pze -pze -pze -pze -pze -dli -abf -rWe -pze -pze -xgN -abf -gEq -pze -eeD -bwd -aax -hZY -hkl -mlv -glb -glb -gUN -glb -gLo -nLN -cPc -glb -gmy -gLo -lqi -kRj -mlv -glb -gLo -kRj -lqi -mlv -glb -glb -cnu -nLN -mlv -glb -gUN -gLo -tyI -kRj -mXD -mSw -mSw -mSw -mSw -mSw -mSw -daq -tGn -abP -abP -lct -abP -adV -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aiU -aiU -bfc -oJn -aEZ -bfc -bfc -bfc -bfc -bfc -bfc -aEZ -uXU -bfc -xCy -aIt -eue -fnR -fYN -aIt -eZH -qCX -fiv -ejB -loK -ezl -voe -qOc -hHJ -eXA -aIt -bfe -bfc -bfc -huu -bfc -bfc -bfc -bfc -bfc -bfc -pwp -bfL -bfQ -bfc -bfc -oJn -bfc -bfc -bfc -bfU -bfW -bfa -bfi -aiU -aiU -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ahA -vdx -yhi -cvo -vlx -xgv -cDw -qra -dOY -uvD -rtR -opG -dOY -eIr -eIr -eIr -dOY -sVF -ahA -ylo -ylo -ylo -ylo -ylo -ylo -ylo -sXl -sXl -sXl -sXl -sXl -sXl -auL -auL -auL -auL -auL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -azX -azX -sWP -sWP -quR -dSN -dSN -dSN -dSN -dSN -dSN -dSN -vCx -rEi -ssQ -dSN -dSN -oZB -ssQ -vCx -dSN -dSN -dSN -dSN -dSN -dSN -dSN -ssQ -sWP -sWP -azX -azX -ylo -ylo -ylo -ylo -ylo -ylo -"} -(13,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aar -vEu -gXq -pze -bIE -uZH -eeD -bPN -sJU -pze -pze -hBr -pze -pze -eeD -pny -abf -ncA -pze -cSl -mmq -aax -szV -daq -spt -jEi -nPm -daq -spt -wpq -nPm -daq -spt -wpq -nPm -daq -spt -nPm -mSw -spt -nPm -fBA -spt -wpq -nPm -fBA -spt -wpq -nPm -daq -spt -nPm -mSw -hkl -kRj -kRj -pKu -dwi -dMT -kRj -mXD -hxH -abP -acc -abN -eTj -adV -adV -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aiU -aiU -bfc -bfc -oJn -bfc -aIm -bcf -bcf -bcf -aIm -bfc -bfc -bfc -xCy -bfg -aIt -aIt -xov -aIt -aIt -aII -qCX -oFI -aII -aIt -aIt -aIt -aIt -aIt -aIt -aIt -bfD -bfL -bfc -bfc -bfc -bfc -aUG -bcg -ukV -bcg -aUG -bfD -bfL -bfQ -bfc -oJn -bfc -bfc -bfc -bfc -bfZ -bga -bfh -bfi -aiU -aiU -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ahA -sYW -eIr -cvo -vlx -ijT -irz -ibK -jkI -cJp -hfX -gcv -jkI -lRm -lRm -lRm -lGx -sVF -ahA -ylo -ylo -ylo -ylo -ylo -ylo -ylo -sXl -vuB -vuB -vuB -vuB -anT -sRY -sRY -eJr -eJr -auL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -azX -sWP -sWP -ssQ -dSN -dSN -dSN -npg -dSN -dSN -dSN -llL -vCx -ssQ -sBT -llL -llL -llL -ssQ -vCx -llL -dSN -dSN -dSN -dSN -dSN -dSN -dSN -oZB -sWP -sWP -azX -ylo -ylo -ylo -ylo -ylo -ylo -"} -(14,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aar -pRY -gXq -pze -swk -lJv -vjl -upY -wfd -qYO -qYO -qYO -qYO -qYO -jUh -hEL -abf -dLJ -iPc -cSl -fbq -aax -dWv -daq -tGn -abP -abP -acv -abP -abP -abP -acv -abP -abP -abP -acv -abP -abP -eYm -abP -abP -acv -abP -abP -abP -acv -abP -abP -abP -acv -abP -nkG -nPm -iDY -mSw -mSw -mSw -mSw -mSw -mSw -hkl -kRj -apo -pkc -uDW -aqb -uEC -abG -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aiU -aiU -bfc -bfc -bfc -oJn -aIm -aIm -oWa -qfX -txz -aIm -aIm -pwp -bgk -bfg -aIt -aIt -xWI -qIz -nVu -fnq -gbR -qCX -fiv -xqE -aIt -qsv -dFi -dFi -sDg -pyo -aIt -aIt -bfd -bfc -aEZ -bfc -aUG -aUG -ipS -tsJ -rJc -aUG -aUG -bfD -bfL -bfc -oJn -bfe -bfc -bfc -bfc -bfc -bgb -bge -bfh -bfi -aiU -aiU -ylo -ylo -ylo -ylo -ylo -ylo -ylo -arV -pLj -yhi -cvo -vlx -tCh -mFr -qra -dOY -tHT -aiL -iHs -dOY -qJF -eIr -cnc -vrN -tHT -arV -ylo -ylo -ylo -ylo -ylo -sXl -sXl -sXl -nHh -pww -pww -sqX -anT -rct -sQF -sQF -bDc -auL -auL -auL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -azX -azX -sWP -ssQ -dSN -npg -dSN -dSN -dSN -dSN -dSN -dSN -llL -iuy -dSN -llL -llL -llL -llL -dSN -iuy -llL -dSN -dSN -dSN -dSN -dSN -iuy -iuy -npg -ssQ -sWP -azX -azX -ylo -ylo -ylo -ylo -ylo -"} -(15,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -abF -lal -pze -pze -pze -pze -pze -pze -pze -efA -abf -mff -pze -cSl -pIC -abf -abf -abf -dbt -abf -aax -dWv -daq -tGn -abP -eTj -oGz -acz -abP -abL -oGz -acc -abP -adE -oGz -eTj -abP -nuV -abP -abJ -oGz -eTj -abP -acz -oGz -adE -abP -abO -oGz -abP -abP -dWv -iDY -spt -mJX -jEi -ugu -jEi -mJX -wzb -spt -abP -abO -aQG -abH -iWA -abG -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aiU -aiU -nZR -wiF -aFd -wiF -xNa -aIm -hSp -gvQ -lss -bDV -nGl -aIm -aIm -aIm -aIt -aIt -dzG -gbR -fiv -qCX -qCX -qCX -qCX -fiv -dAA -bbJ -aIX -aIX -aIX -aIX -aIX -sxl -aIt -aIt -bfc -bfc -aUG -aUG -mra -hhc -tSJ -hhc -lMn -aUG -aUG -bfd -bfc -oJn -bfC -bfQ -bfe -bfc -bfc -bfc -bfc -bfQ -bfh -bfi -aiU -aiU -ylo -ylo -ylo -ylo -ylo -ylo -arV -qJF -eIr -cvo -dOY -vrN -dOY -dOY -dOY -sVF -aiQ -cvo -dOY -ycN -uws -cDw -vrN -vsq -arV -ylo -ylo -ylo -ylo -ylo -sXl -qPc -pww -hQn -kHX -kHX -pyV -huZ -dGN -uay -uay -pCp -sQF -cKy -auL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -azX -azX -sWP -sWP -dSN -dSN -dSN -dSN -dSN -dSN -lCF -dSN -dSN -nIU -iuy -dSN -llL -oxv -llL -llL -dSN -iuy -nIU -dSN -dSN -npg -iuy -dSN -iuy -iuy -dSN -dSN -sWP -sWP -azX -azX -ylo -ylo -ylo -ylo -"} -(16,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -rSr -mff -mmN -tZI -mmN -tZI -mmN -efA -nSy -abf -oSh -mff -cSl -qIc -abf -qQw -fTr -cSl -ggs -aax -dWv -hkl -pJk -abP -avD -mqn -lQu -abP -aFo -fqp -abJ -abP -aFt -erc -acI -abP -nuV -abP -aFv -fqp -uEC -abP -aFI -erc -acI -abP -avD -mqn -lQu -abP -ifc -mXD -tGn -abP -abP -abP -abP -abP -eou -tGn -abP -abP -abP -abP -adV -adV -ylo -ylo -ylo -ylo -ylo -ylo -aiU -aiU -bfc -oJn -bfc -bfc -bfc -bfe -aIm -dnx -mmC -mmC -xsA -ulu -bqt -rkZ -bbB -vAJ -cAI -gbR -qCX -fiv -ejB -vSP -jVG -qCX -fiv -vSU -bbJ -aIX -bFe -kDY -clU -aIX -aIX -irN -aIt -bfc -bfc -aUG -jUW -ydi -jBT -jBT -tgx -nhX -jUW -aUG -bfg -bfc -oJn -bfD -bfE -bfG -bfc -bfc -bfc -bfc -bfc -bfQ -bfh -bff -aiU -aiU -aQz -aQz -aQz -aQz -aQz -aQz -cha -yhi -gVA -dOY -vrN -dOY -dOY -dOY -sVF -aiQ -cvo -dOY -dOY -dOY -dOY -vrN -sVF -arV -aqr -aky -aky -aqr -aqr -sXl -lHV -eGp -dls -eZS -wwd -eZS -eZS -lcZ -jCt -jCt -cSJ -uay -ktp -auL -auL -auL -ylo -ylo -ylo -ylo -ylo -azX -sWP -sWP -dSN -dSN -dSN -iuy -iuy -dSN -npg -dSN -dSN -dSN -llL -vCx -ssQ -llL -llL -llL -sBT -quR -vCx -llL -dSN -dSN -iuy -iuy -dSN -dSN -dSN -dSN -dSN -dSN -sWP -sWP -azX -ylo -ylo -ylo -ylo -"} -(17,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -abF -abF -uxI -url -vya -cRh -jRn -ixJ -hkx -abF -abF -abF -gXq -vjl -qYO -diX -qYO -rkb -vRf -ggs -aax -dWv -daq -tGn -abP -abH -abM -abO -abP -eyA -abN -eTj -abP -abO -abN -abJ -abP -fdc -abP -acu -abN -abO -abP -alU -abN -eTj -abP -abH -abM -eTj -abP -dWv -daq -tGn -abP -wpE -fzT -hcv -abP -kgT -oOc -abP -wpE -mrv -jWW -adV -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aiU -nZR -wiF -xNa -bfc -bfc -bfc -bfd -aIm -cWj -rhO -mgI -fGW -mmC -mmC -mmC -tuL -qCX -qCX -qCX -qCX -fiv -uXJ -aIt -vit -qCX -dpt -xJg -bbQ -mrQ -rmK -fWh -iyV -fdh -aIX -maQ -bbJ -bfc -bfc -aUG -rWX -oqd -jBT -hbN -tgx -nEm -rWX -aUG -bfc -aEZ -oJn -bfc -bfd -bfc -bfc -huu -huu -aEZ -bfc -bfc -bfc -bfc -bfu -awY -aQC -oWP -yiu -aQO -xMS -aQC -uws -xgf -cvo -dOY -wMd -dOY -dOY -uOO -omW -aiL -mgT -doD -doD -doD -kLp -vrN -iLB -aiL -kTm -fhy -fhy -ije -jRL -mOW -uYo -pyV -anT -anT -anT -anT -anT -kom -uay -uay -pDN -kdE -jnu -cKy -vwe -auL -aSa -aSa -aSa -aSa -azX -azX -sWP -dSN -dSN -dSN -dSN -iuy -iuy -dSN -dSN -dSN -dSN -dSN -dSN -vCx -ssQ -quR -dSN -dSN -cDy -ssQ -vCx -dSN -dSN -dSN -dSN -dSN -dSN -npg -dSN -dSN -dSN -dSN -dSN -sWP -azX -azX -ylo -ylo -ylo -"} -(18,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -abF -abF -aax -aaz -aaz -aaz -aaz -aaz -aax -abF -abF -abF -tVM -vaH -ydx -abf -mff -cSl -pze -xxL -aax -dWv -daq -tGn -abP -abP -lct -abP -abP -abP -lct -abP -abP -abP -lct -abP -abP -djF -abP -abP -lct -abP -abP -abP -lct -abP -abP -abP -lct -abP -abP -dWv -daq -tGn -abP -abP -lct -abP -abP -eou -tGn -abP -abP -lct -abP -adV -ylo -ylo -ylo -ylo -ylo -ylo -aiU -aiU -oJn -bfc -aUH -aUH -bcf -bcf -aUH -aUH -xwQ -nfu -kiV -hPj -rrN -rrN -rrN -ugc -xJg -xJg -xJg -xJg -qIz -eIx -aIt -rJa -qCX -fiv -qCX -bqr -aIX -gjG -qrs -gWc -aIX -aIX -rbh -lnQ -bfc -bfc -aUG -jUW -mqP -jBT -jBD -vsU -nEm -jUW -aUG -bfc -bfc -oJn -bfc -bfc -bfc -bfc -huu -huu -bfc -bfc -bfc -bfc -bfc -bfc -bfc -mUV -yiu -yiu -aQO -aQO -aQC -aQC -aiL -cvo -dOY -dOY -dOY -dOY -sVF -aiL -aiL -aiL -aiQ -aiQ -aiL -cvo -vrN -sVF -aiL -wUV -ccZ -ccZ -iXk -jRL -xmq -lDD -nLv -lCW -nLv -xDU -fyY -anT -tQq -kKI -uay -uay -pso -uay -ktp -xYg -auL -aSa -aSa -aSa -aSa -azX -sWP -sWP -dSN -dSN -npg -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -npg -sWP -vCx -vCx -iuy -iuy -vCx -vCx -sWP -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -npg -dSN -npg -sWP -sWP -azX -ylo -ylo -ylo -"} -(19,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -abF -abF -xCR -xCR -xCR -xCR -xCR -xCR -xCR -abF -abF -abF -abf -abf -abf -abf -sFR -cSl -tpv -xxL -aax -abS -eax -abS -abP -wpE -ftK -jWW -abP -wpE -ftK -hcv -abP -wpE -ftK -jWW -abP -wRY -abP -wpE -ftK -jWW -abP -wpE -ftK -hcv -abP -wpE -ftK -jWW -abP -abS -eax -abS -abP -acz -abN -abO -abP -eou -jdw -abP -acz -abN -abL -adV -adV -ylo -ylo -ylo -ylo -aiU -aiU -bfc -oJn -aEZ -aUH -xcW -tVR -cdv -deS -bbB -qKI -mmC -rxx -fnn -nOZ -jMz -fRi -bbB -vLF -vSP -jVG -qCX -rFn -khY -oIb -jEd -xJg -qIz -ejB -bbJ -aIX -mvC -uLe -gBA -aIX -aIX -tqL -aIt -aEZ -bfc -aUG -jUW -iGK -jBT -jBD -tgx -mip -jUW -aUG -bfe -bfc -bYI -wiF -wiF -wiF -wiF -wiF -wiF -wiF -tlx -bfc -bfc -bfc -bfc -bfc -aQC -aQC -aQO -aQW -yiu -yiu -mUV -eIr -cvo -dOY -dOY -dOY -dOY -qSc -aiL -cSp -fde -mWd -uVs -lfl -opG -vrN -sVF -aiQ -jqT -cNP -cEM -jNx -jRL -oFj -eXH -ylD -anT -fek -jCx -mGD -anT -iiK -jKQ -uay -kpu -xaZ -jKQ -ktp -mwz -auL -ylo -ylo -ylo -ylo -azX -sWP -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -gqJ -iuy -npg -dSN -dSN -dSN -dSN -llL -nIU -llL -llL -dSN -dSN -dSN -dSN -npg -iuy -iuy -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -sWP -azX -ylo -ylo -ylo -"} -(20,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -xCR -tJW -tgN -tgN -tgN -tgN -tgN -hrQ -xCR -aax -auW -auW -asf -ntt -abf -xQg -jfL -mVn -pVi -aax -qJC -niN -gIi -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -nuV -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -oIU -niN -gIi -abP -abH -mfX -pkc -apo -dcE -kRj -apo -pkc -kJa -abN -eTj -abG -ylo -ylo -ylo -ylo -aiU -nZR -wiF -xNa -bfc -aUH -mmg -uwd -vOF -bDV -bbB -ebj -fPe -rxx -bDV -nGl -aIm -aIm -aIm -aIt -aIt -bra -jVG -qCX -qCX -qCX -qCX -vwb -fiv -dAA -bbJ -aIX -aIX -aIX -aIX -aIX -rzG -aIt -aIt -bfc -bfc -aUG -aUG -syg -fgC -jBD -kvE -eFf -aUG -aUG -bfd -bfc -oJn -bfc -bfe -bfc -bfc -bfc -aEZ -bfc -oJn -bfc -aEZ -bfc -bfc -bfc -bfc -aQC -aPb -aQO -yiu -iVd -aQC -mZY -nVY -kLp -dOY -dOY -uOO -omW -aiL -swa -xls -eIr -xls -dtu -dOY -vrN -sVF -aiQ -jqT -xxo -xxo -jNx -jRL -anT -mBT -anT -anT -aoa -lXI -aoa -aoA -aac -aac -xjd -aoA -aoA -xSM -oug -bGx -auL -ylo -ylo -ylo -ylo -azX -sWP -dSN -dSN -dSN -dSN -dSN -dSN -npg -dSN -iuy -iuy -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -npg -dSN -dSN -dSN -dSN -iuy -iuy -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -sWP -azX -ylo -ylo -ylo -"} -(21,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -qWp -dsH -rhe -oDs -uYy -tuV -vUz -lXx -pth -aax -pTp -pGq -uHE -pTp -abf -hkc -cSl -bIE -sJT -aax -mMc -niN -muP -rWL -nuV -nuV -loj -djF -djF -djF -nuV -iMe -piZ -djF -djF -nuV -loj -nuV -djF -djF -djF -our -nuV -djF -piZ -djF -loj -iMe -iMe -rWL -pfh -niN -gYv -abP -iWA -aGj -abN -abP -nkG -mJX -abP -abO -aRl -abJ -anf -abG -ylo -ylo -ylo -aiU -aiU -oJn -bfc -aUH -aUH -aUH -xGw -unu -eMk -kWv -aUH -aUH -lZk -rxx -nhL -aIm -aIm -aeo -beO -beO -aIt -aIt -xpg -dXd -ruz -xDQ -jVG -not -fiv -oLu -aIt -wKj -rnj -kyf -wHO -vzB -aIt -aIt -xCy -bfc -bfc -xCy -aUG -aUG -aJa -yjg -aJa -aUG -aUG -bfu -bfQ -bfc -oJn -aEZ -beP -bfv -bfi -nfz -aEP -nfz -bYI -fVl -rMq -bfc -bfc -bfc -bfc -aQC -aQz -aQz -aQz -aQz -aQz -arV -aiL -qfp -oeJ -jxJ -qfp -aiL -aiL -kEx -dOY -dOY -dOY -dOY -dOY -vrN -sVF -aiQ -jqT -uiw -uiw -fvS -cwO -hBG -lLx -fvS -fhy -fhy -hBG -xrX -nsq -rxO -uay -cBD -lqw -aoA -wrs -nCR -ltL -auL -ylo -ylo -ylo -azX -azX -sWP -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dtt -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -npg -dSN -dSN -dSN -dSN -dSN -dSN -dSN -sWP -azX -azX -ylo -ylo -"} -(22,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -xCR -dsH -dhQ -cDo -uhS -ylY -ugs -lXx -xCR -aax -pTp -rsN -qVH -fKw -egI -qYO -jUh -pze -xxL -aaz -iQr -niN -muP -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -eYm -abP -abP -abP -abP -abP -abP -abP -abP -abP -abP -eYm -abP -abP -abP -abP -abP -pfh -niN -muP -apR -apR -apR -apR -apR -apR -apR -apR -apQ -adV -adV -adV -adV -aSa -aSa -aSa -aiU -bfc -aER -bfc -aUH -mTN -iSh -gvQ -xlX -mmC -xsA -ler -aUH -bnH -xRh -bnH -aUH -aeo -aeo -bfg -beO -aeo -aIt -aIt -aIt -aIt -aIt -tlo -qCX -ehA -cPx -aUI -aUI -aUI -aUI -aUI -aUI -aUI -xCy -nfz -aEP -aEP -nfz -xCy -aUG -vVC -jBD -lVJ -aUG -bfc -bfc -bfc -bfc -oJn -bfc -bfh -bfq -bfi -ims -xCy -aEP -oJn -bfc -bfc -bfc -bfc -bfc -bfc -bfc -aiU -ylo -ylo -ylo -ylo -arV -gNr -lKu -lKu -lKu -lKu -etR -aiL -eve -dOY -oLp -jkI -jkI -jkI -wRk -sVF -aiQ -ybg -ioE -pQb -ioE -ioE -ioE -lLx -ioE -ioE -iIM -ioE -ioE -gVx -cBD -cBD -cBD -ktp -aoA -aac -qqK -aoA -auL -baU -baU -baU -azX -sWP -sWP -dSN -npg -dSN -dSN -dSN -dSN -dSN -dSN -dSN -npg -dSN -sWP -vCx -quR -quR -oZB -dSN -dSN -rEi -oZB -cDy -vCx -sWP -dSN -dSN -dSN -dSN -dSN -dSN -npg -dSN -dSN -dSN -dSN -sWP -sWP -azX -ylo -ylo -"} -(23,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -xCR -dsH -kxW -nUW -ism -mUB -cBr -lXx -xCR -ckI -pTp -uIF -pGq -nHU -abf -mff -cSl -pze -qIc -aaz -fLO -bWP -wIb -dDB -adJ -adJ -mZi -eTD -rKO -sAZ -kfv -iKF -iKF -xGx -iEa -eQf -adJ -adJ -pbV -mho -xGx -wvR -xGx -mho -xGx -hMi -adJ -adJ -qcW -pVV -mcW -bWP -ngt -apR -eZB -pYD -apR -sqc -rVJ -rVJ -gGL -ahz -ylo -ylo -ylo -aSa -ylo -ylo -aiU -aiU -bfc -oJn -aUH -aUH -dYx -mmC -mmC -xYS -wBA -mmC -xsA -aIm -qdt -oFv -ilX -aUH -aeo -bgf -bfb -bgf -aeo -aII -dzG -cAI -tWx -aII -gbR -qCX -fiv -vSU -bbM -kOs -sCh -pyW -hhc -sMA -aUG -bfc -bfc -bfc -bfc -bfc -bfc -bbM -pDs -jBD -vLE -ukV -bfc -bfc -aEZ -wZu -fWM -wiF -tlx -bfl -bfo -bfi -xCy -nfz -oJn -bfc -bfc -bfc -aEZ -bfc -bfc -bfc -aiU -aiU -ylo -ylo -ylo -arV -xux -lZm -lZm -lZm -lZm -ewn -aiL -xQr -dsa -eIr -dsa -wqV -dOY -vrN -sVF -aiL -ybg -ioE -pni -dYP -dYP -dYP -dyA -ioE -pQb -ioE -ioE -ioE -gVx -cBD -cBD -cBD -pCp -bVo -sQF -dGN -fYW -xuZ -bGx -rxO -bGx -mEN -iuy -iuy -dSN -dSN -dSN -dSN -dSN -npg -dSN -sWP -sWP -dSN -dSN -sWP -sWP -sWP -sWP -sWP -iuy -iuy -sWP -sWP -sWP -sWP -sWP -dSN -dSN -sWP -sWP -dSN -dSN -dSN -iuy -iuy -dSN -dSN -dSN -sWP -azX -ylo -ylo -"} -(24,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -xCR -dsH -uiU -tYD -tmV -srb -rhM -lXx -xCR -aax -hkU -pGq -pGq -nHU -abf -nma -esh -qYO -qYO -ecQ -nYw -xlQ -knt -ewk -adJ -wHb -siO -qFh -wmd -wmd -wmd -qFh -wmd -wmd -mUG -eTO -adJ -pbV -siO -ggV -hvV -xYs -hvV -xYs -hvV -qXq -hMi -adJ -giL -rOu -rQI -xlQ -nYw -swU -vvi -fKa -apR -oiV -sHf -sHf -nIu -aqw -ylo -ylo -ylo -aSa -ylo -ylo -aiU -nZR -wiF -xNa -aUH -nGl -qMP -sdO -iHI -cvI -wos -rrN -sVK -eHX -luq -elH -gbg -aUH -beO -bgg -bfV -bgg -aeo -aII -mCg -fFc -xJg -vpH -xJg -osh -rXh -xJg -iVh -xdt -xdt -xdt -wJo -eyq -aUG -aEZ -bfc -bfc -bfc -bfc -aEZ -ukV -qMW -jBD -vLE -bbM -bfc -bfc -bfc -bfc -bfc -bfc -oJn -bfh -bfq -bfo -bfi -bgk -oJn -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -aiU -ylo -ylo -ylo -arV -lKu -goY -jSg -jSg -wRg -lKu -aiL -xcQ -iuA -qUi -wNN -iLW -kLp -vrN -sVF -aiL -ybg -ioE -lLx -ekN -jzB -jzB -dRe -jzB -jzB -jzB -vqw -wyv -gVx -rxO -cBD -cBD -cBD -cBD -cBD -cBD -cBD -qMf -cBD -cBD -cBD -vHr -iuy -iuy -dSN -dSN -dSN -gqJ -iuy -dSN -dSN -dSN -sWP -iuy -iuy -sWP -sWP -vCx -ssQ -vZJ -dSN -dSN -vCx -ssQ -vCx -sWP -sWP -iuy -iuy -sWP -dSN -npg -dSN -dSN -iuy -iuy -dSN -npg -dSN -sWP -azX -ylo -ylo -"} -(25,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -qWp -dsH -jsa -jgt -npS -fwF -iVR -lXx -pth -aax -cvi -pGq -pGq -pTp -abf -mJg -cSl -pze -pze -pze -tAH -tAH -bWP -ewk -adJ -ixU -umH -umH -wmd -wmd -scl -hmh -glu -glu -rzr -ovb -adJ -ixU -mUG -guY -egN -guY -egN -guY -wes -wmd -pwx -adJ -uYx -rOu -bWP -tAH -nCu -apR -lJX -lnw -apR -gxe -sHf -sHf -qFF -aqw -ylo -ylo -ylo -aSa -ylo -aiU -aiU -oJn -bfc -aUH -aUH -aIn -aIn -ptQ -aIm -xvq -kvg -jsN -rxx -aIm -sRv -lXe -nUw -aUH -beO -bgc -bfR -bgc -beO -aII -mCg -fiv -lmS -aII -gUI -fiv -qCX -xXc -bbM -xmG -xmG -ygq -jBD -nFR -aUG -bfc -aUG -bcg -bcg -aUG -bfc -aUG -iUe -jBD -nEm -aUG -bfu -bfQ -bfc -bfc -bfc -bfc -oJn -bgf -bfl -bfp -bfm -bfb -oJn -bfc -bfc -bfc -bfb -bfe -bfc -bfc -bfc -aiU -aiU -ylo -ylo -ahA -lKu -nlw -oyY -nJd -bCP -lKu -aiL -aiL -aiL -aiQ -aiQ -aiL -cvo -vrN -uvD -aiQ -mdR -ioE -lLx -faY -qIU -qIU -qIU -qIU -qIU -qIU -qIU -qIU -qIU -xzY -cBD -cBD -cBD -uDy -cBD -fNU -cBD -qMf -cBD -cBD -cBD -vHr -iuy -sng -dSN -dSN -dSN -iuy -iuy -dSN -sZs -dSN -sWP -dSN -dSN -dSN -mRC -vCx -iuy -vCx -dSN -dSN -vCx -iuy -vCx -sWP -dSN -dSN -dSN -sWP -dSN -dOH -dSN -dSN -dSN -dSN -dSN -dSN -dSN -sWP -azX -ylo -ylo -"} -(26,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -xCR -jGN -ooz -ooz -ooz -ooz -ooz -jdO -xCR -aax -eMI -eMI -pJP -eMI -abf -vUZ -cSl -pze -klz -aaz -brV -tAH -bWP -ewk -adJ -hRx -tiC -guY -wmd -wmd -cAj -wmd -wmd -umH -ckC -dxW -adJ -ixU -mUG -guY -egN -eoL -egN -guY -wes -wmd -jHD -adJ -bCs -rOu -bWP -tAH -xqv -apR -apR -apR -apR -vRl -prQ -sHf -lBX -ahz -aSa -aSa -aSa -aSa -aSa -aiU -bfc -aER -bfc -aUH -eOH -mOz -gvQ -rxx -aIm -aIm -aIm -aIm -ift -aIm -aIm -aIm -aIm -aUH -aeo -aeo -bfg -beO -beO -aIt -iuI -gwR -cCl -aIt -aIt -fiv -uQq -aIt -aUG -cCa -jUW -gDO -tGR -jNy -aUG -aUG -aUG -xTc -tsJ -aUG -aUG -aUG -iUe -jBD -nEm -aUG -aUG -pwp -bfB -bgk -bfc -aEZ -oJn -bgg -bfl -beZ -bfm -bfR -oJn -bfc -bfc -bfg -bfR -bfC -bfc -bfc -bfc -bfc -aiU -ylo -ylo -ahA -lKu -nlw -mcL -uJm -bCP -lKu -aiL -nvX -vzo -qcn -nnr -neb -opG -vYo -jkI -iPp -dYP -dYP -xHj -faY -qIU -kKx -mmd -nJr -qIU -kKx -qIk -nJr -qIU -oCf -fNU -cBD -oqo -fyZ -fyZ -eIW -rxO -qMf -bGx -rxO -bGx -vHr -iuy -iuy -dSN -npg -dSN -dSN -dSN -npg -dSN -dSN -sWP -dSN -dSN -npg -dSN -dSN -dSN -dSN -npg -dSN -dSN -dSN -dSN -npg -dSN -dSN -npg -sWP -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -sWP -azX -ylo -ylo -"} -(27,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -abF -abF -xCR -xCR -xCR -xCR -xCR -xCR -xCR -abF -abF -abF -abf -abf -abf -abf -vUZ -cSl -efA -rSW -aax -igJ -tAH -bWP -ewk -adJ -fvn -mUG -dgC -wmd -mUG -own -gjJ -lkq -gWw -ckC -dxW -adJ -qOm -mUG -fzB -egN -guY -egN -evw -wes -fzB -jHD -adJ -tOZ -rOu -bWP -tAH -cAU -apR -xcs -lmM -rVJ -xuV -pow -sHf -pVE -aqw -ylo -ylo -ylo -aSa -aiU -aiU -bfc -oJn -aUH -aUH -qjn -mmC -sdO -sfk -aIm -rxp -ipk -aIn -rxx -lhv -cSC -aIm -rxp -aUH -aUH -aeo -aeo -beO -aIt -aIt -dNj -qCX -kkv -aII -hrY -uaL -vzS -xtc -aUG -jvU -sZU -trs -jBD -vEh -qfe -hhc -jMW -hhc -tSJ -bwM -dTI -oJI -spW -jBD -vEh -dSx -aUG -aUG -aUG -aUG -bfc -bfc -oJn -bgc -bfl -bft -bff -bfc -oJn -bfc -bfc -beP -bfv -bfi -bfg -bfc -aEZ -bfc -aiU -aiU -ylo -ahA -lKu -nlw -kHn -wpB -bCP -lKu -aiL -kea -dOY -dOY -dOY -dOY -dOY -vrN -uOO -aiQ -ebQ -ioE -lLx -kxw -qIU -mjy -oLg -fqx -qIU -fqx -anL -fqx -qIU -aoE -hRG -kKv -aoE -aoE -aoN -ape -aoE -auG -baU -baU -baU -azX -sWP -sWP -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -sWP -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -sWP -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -sWP -sWP -azX -ylo -ylo -"} -(28,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -abF -abF -abF -iVk -iVk -iVk -iVk -iVk -iVk -iVk -abF -abF -abF -uUk -uUk -uUk -abf -abf -itB -abf -abf -aax -lCs -tAH -bWP -ewk -adJ -gIf -ygK -uEY -ivP -msd -wnd -adJ -adJ -adJ -cif -adJ -adJ -htm -mUG -guY -vyl -guY -egN -guY -wes -inh -plA -adJ -qcW -rOu -bWP -tAH -ngt -apR -sHf -sHf -sHf -sHf -pow -sHf -riG -aqw -ylo -ylo -ylo -aSa -aiU -bfe -bfc -oJn -aUH -jcc -qMP -mmC -rxx -yiZ -aIm -mOC -rrN -iKl -wos -sVK -rrN -iKl -rrN -iZY -aUH -beO -aeo -beX -aIt -uQe -qAV -qCX -sXm -qCu -cVk -uaL -vzS -uue -aUI -aUI -aUI -gTD -hBV -ulW -siL -mOi -xdt -xdt -xdt -xdt -xdt -gNA -xdt -rMz -jBT -rNz -aUG -qhK -qhK -aUG -aUG -bfc -oJn -bfc -bfh -bff -bfb -bfc -aER -bfc -bgf -bfl -bfp -bfM -bfi -bfc -bfc -bfc -bfc -aiU -ylo -ahA -lKu -nlw -mcL -dYy -bCP -lKu -aiL -oqj -dOY -oLp -jkI -jkI -jkI -fiC -wQv -aiQ -ybg -ioE -lLx -faY -qIU -gKO -jsg -anR -qIU -gKO -jsg -aos -qIU -rTs -ums -ums -aoN -uIV -kNl -kNl -tzL -auG -ylo -ylo -ylo -azX -azX -sWP -dSN -dSN -dSN -dSN -dSN -dSN -dSN -dSN -sWP -dSN -dSN -dSN -dSN -vCx -vCx -vCx -vCx -vCx -vCx -vCx -vCx -dSN -dSN -dSN -dSN -sWP -dSN -dSN -npg -dSN -dSN -dSN -dSN -dSN -sWP -azX -azX -ylo -ylo -"} -(29,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -abF -abF -abF -wOu -tee -nUh -tee -nUh -tee -ihP -abF -abF -abF -hsf -xFF -xFF -siQ -hkc -cSl -qIc -xAw -aax -lCs -tAH -bWP -ewk -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -oaA -ckC -qXq -vda -siO -mUG -evw -kZu -guY -egN -dXg -wes -eoL -rOR -adJ -giL -rOu -qPr -nYw -nYw -mqV -utz -utz -utz -utz -pSQ -xaq -jxH -ahz -ylo -ylo -ylo -aSa -aiU -bfd -aEP -aEX -bbB -jjn -uMW -wPo -ura -nEu -aIm -cPD -aIm -aIm -lWd -rxx -sJx -aIn -ipk -hIa -aUH -beX -aIk -aeo -aIt -gvy -sIc -rmB -jXp -aII -cVk -uaL -vzS -ffV -aIt -tmB -aUI -aUG -aJa -aJa -aJa -hOG -jBT -smj -mve -jBT -jBT -fOm -jBT -jBT -jBT -kQK -aIY -qhK -xdn -qhK -aUG -bfc -oJn -bfc -bfc -bfC -bfV -bfc -oJn -bfc -bgc -bfh -bfp -bfp -bfm -bfc -bfc -bfc -bfc -aiU -ylo -arV -lKu -teo -wZI -wZI -iUS -lKu -aiL -lKp -iXJ -gqh -iBY -iXJ -dOY -dOY -uvD -aiQ -mdR -ioE -lLx -faY -qIU -avT -dHv -avT -qIU -avT -itJ -avT -qIU -ohJ -ums -ums -aoN -tTp -ums -sYO -eAi -auG -ylo -ylo -ylo -ylo -azX -sWP -dSN -dSN -dSN -dSN -dSN -iuy -iuy -dSN -iuy -dSN -npg -dSN -dSN -vCx -bcl -bcl -bcl -bcl -bcl -bcl -vCx -dSN -dSN -dSN -dSN -iuy -dSN -dSN -iuy -iuy -dSN -dSN -dSN -npg -sWP -azX -ylo -ylo -ylo -"} -(30,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -tJA -aax -tdh -wOu -tee -nUh -tee -nUh -tee -ihP -tdh -aax -xzL -hkc -pze -pze -pze -pze -cSl -pze -ggs -aax -lCs -tAH -bWP -ewk -adJ -aEO -iKF -cPn -pjk -xGx -xGx -csl -adJ -fvn -dQF -wmd -lqP -umH -mUG -guY -kZu -fzB -egN -guY -wes -wmd -jHD -adJ -bCs -rOu -bWP -tnj -nCu -apR -sHf -sHf -sHf -sHf -gEQ -apR -apR -ahz -aqk -aqk -awb -aiU -aiU -nZR -wiF -xNa -bbB -pUD -qMP -tVC -mmC -wvJ -aIm -aIm -aIm -voy -qMP -kdP -gcN -aIm -aIm -aIm -aUH -aIk -tQd -aIk -aIt -aIt -aII -aII -aII -aIt -vLh -uaL -vzS -vzS -rIG -wRX -mtw -aUG -ipB -qCe -aJa -kNT -jBT -tWb -gBR -jBT -jBT -jBT -jBT -jBT -jBT -vEh -aIY -qhK -cwv -hBX -aUG -bfe -oJn -bfc -bfc -bfC -bfb -bfc -oJn -bfc -bfX -bfa -bfp -bfN -bff -bgf -bfc -bfc -bfb -aiU -aiU -arV -gqu -lZm -lZm -lZm -lZm -hzn -aiL -ruG -iXJ -gqh -oJF -iXJ -dOY -dOY -dOY -vft -ioE -ioE -lLx -faY -atF -iwM -dpv -cpt -wHu -lSL -dpv -cpt -wHu -lET -ums -ums -aoN -nxr -ums -gBW -pMb -auG -ylo -ylo -ylo -ylo -azX -sWP -dSN -dSN -dSN -dSN -dSN -iuy -iuy -npg -iuy -dSN -dSN -dSN -dSN -vCx -bck -wrS -xyU -uLB -tWp -bck -vCx -dSN -dSN -npg -dSN -iuy -dSN -dSN -iuy -gqJ -npg -dSN -dSN -dSN -sWP -azX -ylo -ylo -ylo -"} -(31,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -uTU -aax -oPP -uYh -tee -nUh -tee -nUh -tee -ihP -nNX -aax -xjQ -pze -hsf -xFF -xFF -xFF -lxq -pze -pny -aax -lPu -tAH -bWP -ewk -vda -dLs -guY -mUG -guY -wmd -fzB -plA -vda -fvn -yiV -glu -glu -glu -trA -egK -vVn -guY -egN -guY -kWy -wmd -pwx -adJ -enP -rOu -bWP -tAH -cAU -apR -pAr -lKW -ieG -imh -pzM -apT -poy -iRY -iRY -kWE -ybf -awY -bfg -oJn -bfc -bfc -aUH -nsi -qMP -vIW -mmC -cTO -aIm -ipk -aIm -aIm -hcJ -rxx -xsA -aIn -wdZ -ipk -aUH -aeo -iQh -aIk -aIt -doG -pzl -oWv -oWv -tjR -cdE -dsk -ulY -wyl -aIt -aIt -aIt -aUG -mda -qhK -iAR -jBT -jBT -jBT -jBT -jBT -rOT -jkH -dtG -jBT -jBT -rZv -oXa -kGG -hGy -qhK -aUG -bfC -aEX -aEP -aEP -bfd -aFh -aEP -aEX -bfS -bfY -beP -bfp -bff -bfb -bgg -aEP -aEP -bfU -bfT -awY -ewW -gqu -lKu -rxj -rxj -lKu -hzn -aiL -rRP -iLe -doD -doD -doD -doD -iLe -omW -aiQ -ebQ -pQb -cNU -cZU -atF -sgw -dpv -dpv -sbk -dpv -cLS -cLS -dpv -ums -fbd -ums -aoN -nxr -fbd -gBW -pMb -auG -aSa -aSa -aSa -aSa -azX -sWP -sWP -npg -dSN -dSN -dSN -dSN -dSN -dSN -sWP -dSN -dSN -dSN -vCx -vCx -bck -heG -uxJ -uxJ -dtk -bck -vCx -vCx -dSN -dSN -dSN -sWP -dSN -dSN -dSN -dSN -dSN -dSN -dSN -sWP -sWP -azX -ylo -ylo -ylo -"} -(32,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -hOn -aax -tee -bOM -tee -nUh -tee -nUh -tee -ihP -tee -nDU -mff -pze -gXq -tlC -iUs -eBT -wXj -pze -iqG -aax -eQd -tAH -bWP -ewk -vda -dLs -djz -hCM -guY -wmd -hSx -jHD -vda -fvn -sSv -suN -vda -qUn -xGS -kLF -hxy -kLF -hCW -kLF -hCW -suN -lWg -adJ -tOZ -rOu -bWP -tAH -cAU -apR -apR -apR -apR -apR -apR -apT -dWG -eMj -eMj -onn -bvd -awY -bfc -oJn -bfc -bfe -aUH -aUH -mmg -mmC -mmC -nTd -aIm -mOC -rrN -iKl -rrN -wos -rrN -iKl -rrN -lkg -aUH -aeo -iQh -beO -aIt -uHP -cVk -uwe -oqH -uwe -vzS -uaL -vzS -vzS -rIG -dOg -mtw -aUG -kPk -jJb -aJa -irR -kcz -ygq -jBT -itN -bIM -aJa -qcd -rxf -jBT -dei -aUG -qhK -qhK -aUG -aUG -bfd -oJn -bfc -bfc -bfc -bfc -bfc -oJn -bfc -pwp -bfH -bfI -bff -bfR -bgc -bfc -bfc -bfc -bfR -awY -hOb -aiO -aiO -aiO -aiO -aiO -aiO -aiL -aiL -aiL -aiL -aiL -aiL -aiL -aiL -aiL -aiL -ybg -ioE -lLx -faY -atF -vCD -dpv -dpv -dpv -oqx -dpv -dpv -cLS -ums -hlH -ums -aoN -nxr -ums -gBW -bEA -auG -aSa -aSa -aSa -aSa -azX -azX -sWP -dSN -dSN -dSN -npg -dSN -dSN -dSN -sWP -dSN -dSN -dSN -vCx -aLh -aLh -qUJ -dbk -dbk -kbL -aLh -aLh -vCx -dSN -dSN -dSN -sWP -npg -dSN -dSN -dSN -dSN -dSN -dSN -sWP -azX -azX -ylo -ylo -ylo -"} -(33,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -pGq -uzE -tee -bOM -tee -nUh -jEa -nUh -tee -ihP -tee -aax -hdv -pze -gXq -kKh -abf -xNC -enr -pze -hMG -aax -lCs -tAH -bWP -ewk -vda -dLs -guY -vEL -fzB -wmd -suN -wnV -adJ -ixU -ckC -pwx -adJ -adJ -tnz -ovl -qUn -egz -qUn -ovl -qUn -lWg -adJ -adJ -qcW -rOu -bWP -tAH -ngt -cGk -cGk -cGk -iow -rka -eFs -apT -xMf -sdE -eMj -gbD -sMp -awY -bfc -oJn -bfc -bfD -bfL -aUH -pSF -eXC -dhI -jWd -aIm -hIa -iQp -aIn -mou -vwp -sZZ -aIm -iQp -aUH -aUH -beX -jFP -beX -aIt -aIt -hJW -mKl -mKl -xUY -fFR -uaL -vzS -ufW -aIt -opK -aIt -aUG -aUG -aUG -aUG -aUG -aUG -oCV -okO -mnC -nLu -aJa -eNy -mnC -okO -qTt -aUG -aUG -aUG -aUG -aeo -bfc -bYI -wiF -wiF -wiF -wiF -wiF -fWM -tlx -bfc -bfh -bff -bfZ -bge -bfc -aIk -aIk -bfc -bgc -awY -hOb -dGC -nwf -mxF -mxF -kYT -aiO -kTm -fhy -fhy -hBG -ljd -fJP -jlA -jlA -lMs -xMJ -ybg -ioE -lLx -faY -atF -jhG -dpv -obs -qYC -gLn -dpv -obs -tqy -utG -ums -ums -aoN -nxr -ums -gBW -lol -auG -ylo -ylo -ylo -ylo -ylo -azX -sWP -sWP -dSN -dSN -dSN -dSN -dSN -dSN -sWP -dSN -npg -dSN -vCx -bck -xTT -pDl -dnB -dnQ -maO -tVj -bck -vCx -dSN -dSN -dSN -sWP -dSN -dSN -dSN -dSN -dSN -dSN -sWP -sWP -azX -ylo -ylo -ylo -ylo -"} -(34,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -dwZ -aax -tee -wOu -tee -nUh -tee -nUh -tee -ihP -tee -aaz -toQ -pze -gXq -kGx -cNo -gqO -xxL -pze -iqG -aax -lCs -tAH -bWP -ewk -vda -dLs -ddT -vEL -guY -wmd -ujt -adJ -adJ -fvn -ckC -jHD -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -rOu -qPr -nYw -nYw -nYw -nYw -nYw -nYw -oYW -nYw -gZR -cdN -cdN -uGX -iEk -arz -awY -bfQ -oJn -bfc -bfc -bfd -aUH -aUH -bcf -bcf -aUH -aUH -aUH -aUH -aUH -aUH -aUH -aUH -aUH -aUH -aUH -beO -beO -jFP -beO -beO -aIt -aII -aII -aIt -aIt -aII -uaL -txR -aII -aIt -aIt -aIt -beO -beX -aIk -beO -beO -aUG -aUG -bcg -bcg -aUG -aUG -aUG -bcg -bcg -aUG -aUG -aeo -aeo -aeo -aeo -aeo -oJn -bfc -bfc -bfc -bfc -bfc -bfc -oJn -aeo -aeo -beX -beX -aIk -aIk -aIk -aIk -aIk -aIk -awY -hOb -tLe -rLo -pMp -inB -udd -aiO -jqT -pni -dYP -dYP -cFW -dYP -dYP -squ -jpR -xMJ -ybg -ioE -lLx -faY -qIU -avT -tYU -avT -qIU -avT -guJ -avT -qIU -auG -nsC -auG -auG -aoE -ums -cFN -aoE -auG -auG -auG -auG -auG -auG -azX -azX -sWP -sWP -dSN -dSN -dSN -dSN -dSN -sWP -dSN -dSN -dSN -vCx -bck -hom -nTn -hpF -bGK -nTn -eJT -bck -vCx -dSN -dSN -npg -sWP -dSN -dSN -dSN -dSN -dSN -sWP -sWP -azX -azX -ylo -ylo -ylo -ylo -"} -(35,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -ikQ -aax -tee -wOu -tee -nUh -tee -nUh -tee -cpP -tee -aaz -toQ -pze -uFv -hkt -hkt -hkt -ukR -pze -bva -aax -lCs -tAH -bWP -ewk -adJ -fvn -wmd -ckC -wmd -wmd -qXq -adJ -sAZ -siO -ckC -qXq -xGx -sAZ -adJ -xGx -sxV -xGx -xGx -mrP -qmK -unA -xGx -csl -adJ -rOu -bWP -tAH -svJ -hEB -qXM -svJ -hEB -bWP -iuf -apT -lya -eMj -eMj -uuw -arz -awY -bfe -oJn -aIk -aIk -aIk -beO -beO -aIk -aIk -aIk -aIk -aIk -aIk -aeo -aeo -aeo -aeo -aeo -beO -beO -beO -beO -oJn -bfc -beX -beO -beO -beO -beO -aIO -aIk -iQh -aIk -aIk -aIO -beO -beO -aeo -aIk -tQd -aIk -beX -beO -beX -beO -beO -beO -beO -beO -aeo -aeo -aeo -beO -aIk -aIk -aIk -beO -aeo -eOe -bfZ -bga -bfc -bfF -beZ -bfg -jFP -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -awY -hOb -ryS -npZ -wuF -bGm -iSw -aiO -jqT -gmE -ekN -tTt -gZe -ekN -tTt -lLx -fJP -jlA -mdR -ioE -gmE -faY -qIU -kKx -jwK -anS -qIU -kKx -jwK -aot -qIU -hxQ -ums -oAj -auG -mfJ -ums -gBW -oAj -udi -byM -mVY -kYS -tVm -qdB -auG -sWP -sWP -sWP -dSN -dSN -dSN -dSN -dSN -sWP -sWP -sWP -sWP -sWP -aLh -aLh -aLh -vER -fts -aLh -aLh -aLh -sWP -sWP -sWP -sWP -sWP -dSN -dSN -dSN -dSN -dSN -sWP -azX -azX -ylo -ylo -ylo -ylo -ylo -"} -(36,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -pTp -aax -gcJ -wOu -tee -nUh -tee -nUh -tee -ihP -nNX -aax -gXq -pze -pze -pze -pze -pze -pze -dLc -chC -aax -lCs -tAH -bWP -ewk -adJ -gIf -xGS -fxV -glu -glu -glu -ceI -glu -glu -pKW -glu -glu -ven -ceI -glu -hmh -cZc -egK -btc -guY -tiC -wmd -jHD -adJ -rOu -bWP -tAH -ewk -acM -acM -acM -rOu -bWP -xKj -apT -dWG -eMj -iJL -xxU -arz -bfF -bfG -iQh -aIk -aIk -aIk -beX -aeo -beX -aIk -aIk -tQd -aIk -beX -beO -beO -beO -fsx -beO -beO -beO -fsx -aeo -oJn -bfb -bfc -bfc -beO -beO -beO -bcW -aIk -gkx -kIW -kIW -sjr -oiQ -pSo -kIW -kIW -egd -kIW -kIW -kIW -kIW -orI -oiQ -oiQ -pSo -pSo -pSo -oiQ -kIW -nny -kIW -kIW -kIW -oiQ -oiQ -lGP -bfe -bgc -bfF -bfG -beO -beO -jFP -aIk -aIk -aIk -aIk -ble -aIk -aIk -aIk -aIk -fsx -beO -hOb -iJb -pMp -uSX -pMp -vpv -aiO -jqT -lLx -faY -aqr -aqr -aqr -wTu -cNU -dYP -dYP -dYP -dYP -xHj -kxw -qIU -fqx -anP -ctr -qIU -fqx -anL -fqx -qIU -uDe -fbd -ums -thJ -ums -ums -gmu -vYs -xWG -aoc -nqV -vPi -pAS -rDT -auG -npg -dSN -iuy -dSN -dSN -dSN -dSN -dSN -sWP -aLh -aLh -aLh -aLh -aLh -krQ -mhL -eVS -rLt -mhL -ljg -aLh -aLh -aLh -aLh -xQF -sWP -dSN -dSN -npg -dSN -sWP -sWP -azX -ylo -ylo -ylo -ylo -ylo -ylo -"} -(37,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -pGq -aax -xLl -wOu -tee -nUh -tee -nUh -tee -vHN -tee -aax -wCo -uuD -uuD -tiA -kHY -tiA -sHd -url -moN -aax -lCs -tAH -bWP -ewk -adJ -adJ -kpn -gjJ -spJ -vkD -eEv -adJ -ivP -dch -qUn -xGS -wmd -xNn -adJ -adJ -xGS -mUG -guY -nVG -tEW -wmd -fzB -plA -adJ -rOu -bWP -tAH -ewk -acM -ylo -acM -rOu -bWP -xKj -apT -sAp -sQk -oyr -sMp -arz -bfd -beX -iQh -aIk -aIk -beX -beO -aeo -aeo -aeo -aIk -gkx -kIW -oiQ -pSo -pSo -oiQ -oiQ -pSo -oiQ -oiQ -pSo -pSo -xha -bfU -bfW -bfT -bfc -beO -beO -bcW -aIk -iQh -aIk -aIk -bcW -beO -sao -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -beO -bfZ -bgd -bge -beO -beO -beO -iQh -aIk -aIk -aIk -beX -beX -pwp -beP -bfi -bfd -beO -beO -beX -ppP -beO -beX -aIk -beO -aIk -beX -aIk -aIk -beX -beO -beO -hOb -eWL -nap -xTC -mvW -twZ -aiO -jqT -lLx -faY -aqr -ylo -aqr -wTu -lLx -ioE -ioE -ioE -ioE -lLx -faY -qIU -rrb -wYs -vbd -qIU -gKO -wYs -vbd -qIU -vmk -ums -cLn -auG -giv -ums -qOR -gmu -uYd -lMX -uYd -vYs -xta -nvv -auG -dSN -dSN -iuy -dSN -dSN -dSN -npg -dSN -sWP -aLh -mZT -jwU -iDv -aLh -cBj -ktW -dbk -uOB -ktW -cpV -aLh -pJd -uRH -ljg -abx -dSN -dSN -dSN -dSN -sWP -sWP -azX -azX -ylo -ylo -ylo -ylo -ylo -ylo -"} -(38,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -abF -sYA -aax -aax -qmH -qmH -qmH -qmH -qmH -qmH -qmH -aRt -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -aax -igJ -tAH -bWP -ewk -qcW -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -xNV -wmd -iOw -csl -adJ -eIY -mUG -djz -mUG -guY -wmd -hSx -jHD -adJ -rOu -bWP -tAH -ewk -aek -ylo -aek -rOu -bWP -eFs -apT -awb -plI -plI -plI -awb -bno -aIk -kQb -adX -aIl -beX -beO -adX -adX -adX -aIk -iQh -bcW -aIl -aIl -aeo -aeo -aeo -aeo -beO -beO -aeo -aeo -oJn -bfZ -bga -bfV -bgh -bge -beO -bcW -aIk -iQh -aIk -aIk -bcW -beO -beX -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aeo -bgf -bfS -bfW -bfa -bgf -aeo -aeo -iQh -aIk -aIk -uIJ -uIJ -aeo -aeo -bfh -bff -aeo -beX -beX -adX -yjw -aIl -beX -beX -adX -adX -adX -aIk -aIk -bcW -aIl -aIl -ast -bCX -bCX -aiO -bCX -iXw -aiO -jqT -lLx -faY -uBj -ylo -uBj -wTu -gmE -ekN -dRe -tTt -ioE -lLx -lNl -qIU -qIU -qIU -qIU -qIU -qIU -qIU -qIU -qIU -hxQ -ums -uRW -auG -oGY -ums -ums -gBW -ums -ums -ums -xfF -oAj -aoE -auG -iuy -iuy -sWP -sWP -sWP -sWP -dSN -dSN -sWP -aLh -emh -wBh -ifR -bba -gVz -dnB -gpc -iiv -dCZ -cpV -aLh -qfm -dbk -cpV -abx -dSN -dSN -dSN -sWP -sWP -azX -azX -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(39,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -acM -acM -rka -pUO -qWr -nCv -tAH -tAH -tAH -tAH -tAH -tAH -pRV -sRs -qvZ -qvZ -qvZ -qvZ -qvZ -sRs -qvZ -qvZ -qvZ -qvZ -dSV -tAH -bWP -wIb -pct -oTZ -pct -pct -pct -pct -pct -pct -pct -ifi -adJ -kUK -qUn -uwk -pwx -adJ -kpn -vRS -eEv -vRS -vkD -qUn -qUn -lWg -adJ -rOu -bWP -tAH -ewk -aek -ylo -aek -rOu -bWP -rka -diA -iPO -rMB -kZq -vOq -eEs -aIk -aIk -iQh -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -iQh -aIk -beX -aIl -aeo -fsx -beO -beO -beO -beO -beO -aeo -eOe -bfc -bgc -bfR -bgg -bfc -beO -beX -aIk -iQh -aIk -aIk -beX -beO -aeo -aeo -aIk -aIk -beX -aeo -aIk -aIk -bfZ -bgi -beP -bfv -bfi -bgb -bge -aeo -jFP -aIk -aIk -uIJ -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -iQh -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -qGI -pqw -pMp -krd -cQe -lLx -fvS -hBG -lLx -faY -uBj -ylo -uBj -wTu -lLx -faY -xMJ -wTu -ioE -lLx -faY -qIU -kKx -jwK -nJr -avT -vPi -ffT -mKB -auG -auG -rfR -auG -auG -epC -lSm -fbd -gBW -nXZ -aoc -rxN -gBW -ums -sAC -ums -ums -ums -aoE -pDR -pDR -sWP -sWP -sWP -sWP -aLh -flS -dbk -dbC -ffS -gVz -dbk -dbk -iOa -jbQ -rpv -aLh -kKN -vZt -cpV -xQF -sWP -sWP -sWP -sWP -azX -azX -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(40,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -acM -pwM -rka -lSO -qWr -tAH -tAH -tAH -tAH -tAH -tAH -tAH -min -mEX -tAH -rQI -nYw -nYw -nYw -nYw -nYw -nYw -nYw -nYw -nYw -oYW -xlQ -nYw -nYw -nYw -nYw -nYw -nYw -nYw -nYw -nYw -knt -ewk -adJ -adJ -adJ -ufc -jHD -adJ -adJ -vda -vda -vda -vda -vda -adJ -adJ -adJ -rOu -qPr -nYw -gfg -acM -ylo -acM -rOu -qPr -nYw -nYw -kyA -gua -iKY -iKY -pet -aIk -aIk -iQh -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -iQh -aIk -beX -adX -aeo -beO -beO -fsx -aeo -aeo -snS -aeo -eOe -bfc -bfc -bfZ -bgi -bfc -beO -beX -beX -iQh -aIk -aIk -beX -aeo -aeo -aeo -aeo -beO -beO -aeo -aIk -bfc -bfc -bfc -bfg -bfh -bfx -bff -bgk -beO -mAx -oiQ -orI -kIW -kIW -kIW -nny -kIW -kIW -kIW -kIW -kIW -kIW -egd -kIW -kIW -kIW -kIW -kIW -kIW -nny -kIW -kIW -kIW -kIW -xCZ -maB -cVN -nLM -ioE -lLx -ioE -ioE -lLx -faY -aqr -ylo -aqr -wTu -lLx -faY -xMJ -wTu -pQb -lLx -faY -qIU -fqx -olY -fqx -hSS -vPi -iBN -kNl -kNl -lET -ums -jOd -aoN -uQj -ums -ums -gBW -fYI -aoN -fJs -kMb -ums -ums -ums -fbd -ixW -mkF -aoE -pDR -pDR -azX -sWP -sWP -aLh -flS -lEn -jjF -aLh -nBL -ktW -dbk -iOa -cHR -jUd -aLh -qfm -lEn -vpD -aLh -sWP -sWP -azX -azX -azX -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(41,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -acM -xxn -glS -eoK -qXj -nYw -nYw -nYw -nYw -nYw -nYw -nYw -nYw -lGG -lGG -uXO -tAH -tAH -tAH -tAH -tAH -tAH -tAH -tAH -tAH -bWP -tAH -tAH -tAH -tAH -tAH -tAH -tAH -tAH -tAH -tAH -bWP -ewk -lQm -vda -wEv -qiO -qXq -xGx -xGx -xGx -xGx -xGx -xGx -xGx -uin -vda -lQm -rOu -bWP -tAH -ewk -acM -ylo -acM -iGH -bWP -tAH -tAH -pet -iKY -iKY -bOv -kyA -kIW -kIW -egd -kIW -nny -kIW -kIW -kIW -kIW -kIW -kIW -egd -wuS -aIk -beX -aeo -aeo -aeo -bfg -bfb -beO -aeo -beO -jFP -aeo -aeo -bfc -bfc -beO -beO -adX -beX -iQh -aIk -aIk -adX -aeo -aeo -beP -bfv -bfi -bfQ -bfg -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfd -bfg -beO -jFP -beO -beX -beO -aIk -aIk -iQh -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -iQh -aIk -aIk -aIk -aIk -gNV -cVN -uUg -iIZ -dYP -ooN -pFO -dYP -xHj -faY -aqr -ylo -aqr -wTu -lLx -faY -xMJ -jYH -ioE -lLx -faY -qIU -gKO -wYs -vbd -avT -vPi -wgX -lkx -fbd -ums -ixW -gqp -aoN -wgX -ums -ums -gBW -xtn -aoN -qlB -qOR -mjR -aoE -lBC -ums -ums -cSO -aoE -aoE -aoE -azX -azX -sWP -aLh -fzr -iOa -cEW -qzB -fhW -dbk -vZt -eJo -gpc -qYh -fyc -eAU -oWW -fex -aLh -sWP -azX -azX -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(42,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -acM -nTI -eLK -brb -qWr -tfL -tfL -tfL -llF -tfL -tfL -tfL -tfL -hEB -mEX -bWP -svJ -tfL -tfL -tfL -tfL -jmm -hEB -diA -svJ -exX -hEB -diA -svJ -jmm -tfL -tfL -tfL -tfL -hEB -tAH -bWP -ewk -diA -vda -jcQ -ckC -wmd -wEs -chp -wmd -wmd -wEs -chp -wmd -ovb -vda -diA -rOu -bWP -tAH -ewk -aek -ylo -aek -rOu -bWP -rka -diA -pet -vOq -kZq -hmS -pet -aIk -aIk -aIk -aIk -iQh -aIk -aIk -aIk -aIk -aIk -aIk -aIk -iQh -aIk -beO -beO -beO -bfg -lYX -bfR -bgf -aeo -beO -eOe -aeo -beO -aeo -aeo -beO -beO -adX -aIk -iQh -aIk -aIk -adX -aeo -beP -bfz -beZ -bfm -bfF -bgk -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -aeo -beX -jFP -aIk -beX -bcW -aIk -aIk -iQh -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -beX -beX -aIk -aIk -iQh -aIk -aIk -aIk -aIk -gNV -pqw -pMp -nLM -cQe -lLx -krk -oIL -lLx -faY -uBj -ylo -uBj -wTu -lLx -faY -xMJ -wTu -ioE -lLx -faY -qIU -qIU -qIU -qIU -qIU -aoE -wgX -ums -ums -ums -xta -rBu -aoN -nCk -cYE -ums -gBW -pbn -aoc -jyl -ums -iuo -aoE -wgX -ums -ums -ums -tnk -ums -ebV -auG -azX -azX -aGf -nsu -oXz -fCs -jZH -oYR -gpc -gpc -iiv -dbk -vjE -uhH -fAm -mXx -piO -aGf -azX -azX -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(43,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaj -aal -aal -aal -aaj -qWr -qWr -qWr -qWr -qWr -qWr -qWr -qWr -qWr -qWr -qWr -qWr -rOu -mEX -lYW -ewk -acM -aek -aek -aek -acM -ifv -qcE -whf -ald -ifv -lui -whf -acM -aek -aek -aek -acM -rOu -tAH -bWP -ewk -qcW -vda -xfJ -uwk -wmd -wmd -wmd -wmd -wmd -wmd -wmd -suN -usp -vda -qcW -rOu -bWP -tAH -ewk -aek -ylo -aek -rOu -bWP -hxw -apu -aga -auc -auc -auc -aga -hWx -beX -adX -adX -kQb -aIk -aIk -adX -bcW -bcW -aIk -aIk -iQh -aIk -bcW -beO -bfb -beP -bfi -lYX -bgc -bfc -aeo -jdk -pSo -oiQ -kIW -kIW -epq -beX -adX -aIk -iQh -aIk -aIk -adX -beP -bfz -beZ -beZ -bfm -bfd -bfZ -bgd -bge -beP -bfv -bfi -bfc -bfc -aeo -aeo -dyK -yau -aIk -aIk -uIJ -aIk -aIk -iQh -aIk -bcW -bcW -beX -beO -bcW -bcW -bcW -beO -aeo -adX -adX -adX -iQh -aIk -adX -adX -bon -ifX -sCv -hxZ -aja -gkU -uAe -ifX -jqT -lLx -faY -uBj -ylo -uBj -wTu -gmE -eVn -grH -uQu -ioE -lLx -eVn -ira -ira -ira -ira -trr -aoE -wHA -mmn -ums -gXW -liJ -aoE -aoE -aoc -aoc -ums -mhk -aoc -aoc -exh -ums -vqn -aoE -jRd -ttm -ieE -ieE -ieE -qDj -ieE -auG -ylo -ylo -aGf -aGf -aGf -aGf -aGf -rYv -oMK -dbk -iOa -htE -jDU -aGf -aGf -aGf -aGf -aGf -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(44,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaj -evq -abs -abE -abD -abD -abD -tuB -abD -abD -abD -abb -abD -vGy -tLQ -vGy -abD -gix -jHb -oPx -uMh -aaj -ylo -ylo -ylo -acM -aek -aek -aek -acM -aek -aek -aek -acM -ylo -ylo -ylo -acM -iGH -tAH -bWP -wIb -pct -adJ -adJ -kwb -glu -jQR -wvP -qUn -qUn -xGS -wmd -hxd -adJ -adJ -pct -mcW -lYW -tAH -ewk -acM -ylo -acM -rOu -bWP -vSX -awx -dkz -vYH -pjN -msX -apu -beO -beO -aIk -aIk -iQh -aIk -aIk -beO -beO -bcW -aIk -aIk -iQh -aIk -bcW -bfc -bfR -bfh -bff -bfg -bfc -bfc -bfc -aeo -aeo -aIk -aIk -aIk -iQh -aIk -aIk -aIk -iQh -aIk -aIk -beO -bfh -bfq -beZ -beZ -bfm -bfc -bfc -bfc -bfc -bfQ -bfl -bfo -bfi -bgf -aeo -aIk -aIk -iQh -wxi -aIk -uIJ -aIk -aIk -iQh -aIk -aIl -beO -beO -beO -beO -bfc -bfc -bfc -beO -beO -aIk -aIk -iQh -aIk -beX -beO -okT -epI -wfk -qTH -uaf -iez -nNf -aja -jqT -lLx -faY -aqr -ylo -aqr -wTu -lLx -ioE -ioE -ioE -ioE -lLx -ioE -ioE -ioE -ioE -ioE -faY -aoE -aoE -aoE -wyh -aoE -aoE -aoE -ges -ums -eqq -ums -gBW -pMb -aoc -jPy -ums -vqn -aoE -bBO -bUn -bBO -bBO -bBO -bUn -bBO -auG -ylo -ylo -aSa -ylo -ylo -ylo -aGf -aGf -lPh -cos -iED -lPh -aGf -aGf -ylo -ylo -aSa -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(45,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaj -aaj -dem -pXp -abb -abD -abs -abs -ads -abD -ads -abs -abv -abD -vGy -lne -vGy -abD -gix -jHb -oPx -vLn -aal -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aek -rOu -tAH -bWP -tAH -tAH -tAH -ipi -wmd -wmd -jHD -ckC -wmd -wmd -fvn -wmd -wmd -ipi -tAH -tAH -mEX -lYW -tAH -ewk -acM -acM -acM -rOu -bWP -vSX -pCB -qQi -sTB -sTB -uzx -apu -beO -beX -aIk -aIk -wcw -aIk -beX -sao -beO -bcW -aIk -aIk -iQh -aIk -bcW -beO -bfc -bfZ -bge -bfc -bfc -bfc -bfe -bfc -beO -aeo -aIk -dyK -egd -kIW -kIW -kIW -yau -aIk -aIk -beO -beX -bfh -bfq -bfI -bff -bfc -bfc -beO -beO -beX -bfh -bfq -bfm -bgg -beO -aIk -aIk -iQh -aIk -aIk -aIk -aIk -aIk -iQh -aIk -beO -beO -sao -beO -bfc -bfQ -bfc -bfg -bfc -beO -aeo -beX -iQh -aIk -aIk -beO -beO -epI -dsu -niO -qNv -niO -rcm -aja -jqT -lLx -faY -aqr -aqr -aqr -wTu -cNU -dYP -dYP -dYP -dYP -iGq -dYP -dYP -dYP -dYP -iAk -kxw -aoE -dED -sRX -sRX -sRX -dED -aoE -dKU -ums -aoc -nyb -rDX -pMb -aoc -ufj -ums -wlR -aoE -jnI -bUn -qJZ -bUn -hls -bUn -bBP -auG -ylo -ylo -aSa -ylo -ylo -ylo -ylo -aEf -uiw -ioE -lLx -uiw -aEf -ylo -ylo -ylo -aSa -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(46,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aal -aaB -abr -ong -ach -abD -aei -adm -jdt -abD -aeX -ong -adR -abD -bEZ -eQB -vGy -abD -gix -jHb -oPx -vLn -aal -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aek -rOu -tAH -bWP -tAH -tAH -drl -adJ -qSq -cph -jHD -ckC -uVW -wmd -fvn -cph -wmd -adJ -lkI -tAH -tAH -bWP -tAH -wIb -mcW -bSv -wIb -mcW -bWP -bRi -awx -sTB -fFt -sTB -jun -apu -awY -beO -beX -aIk -aIk -aIk -aeo -beO -beO -beO -aIk -aIk -iQh -aIk -adX -beO -bfc -bfc -bfc -bfc -bfc -bfg -beP -bfi -bfc -aeo -aIk -aIk -aIk -aIk -uIJ -aIk -iQh -aIk -aIk -adX -beX -beO -bfh -bff -bfc -bfc -bfc -beO -beO -beX -bfg -bfh -bff -bgc -beO -beX -aIk -iQh -ble -aIk -aIk -aIk -aIk -iQh -aIk -aIk -beO -beO -bfc -bfX -bfW -bfW -bfW -bfT -bfc -bfc -beO -jFP -aIk -aIk -beO -awY -epI -rQr -vEg -jdD -uWF -ihg -aja -jqT -lLx -eVn -uQu -pTP -eVn -uQu -lLx -krk -wlg -wlg -wlg -wlg -wlg -wlg -oIL -ioE -lLx -faY -aoE -lGK -sRX -sRX -sRX -pPZ -aoE -urC -kAL -vUh -fbd -gBW -pMb -aoc -xYH -eoO -xcm -aoE -pnt -bUn -bBP -bUn -bBP -bUn -qJZ -auG -ylo -ylo -aSa -ylo -ylo -ylo -ylo -aEf -xrX -ioE -lLx -xrX -aEf -ylo -ylo -ylo -aSa -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(47,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aal -aba -abr -uPy -abb -abD -abb -mfN -aaq -abD -adY -mfN -abb -abD -vGy -fdb -vGy -abD -gix -jHb -oPx -vLn -aal -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aek -rOu -tAH -qPr -nYw -nYw -nYw -tSp -glu -pKW -onB -pKW -glu -ven -pqo -pKW -glu -tSp -nYw -nYw -nYw -xlQ -nYw -oYW -nYw -nYw -nYw -nYw -xlQ -nYw -gCx -jGb -wkD -xKx -hAX -apu -awY -beO -beO -bfc -bfZ -bga -bfc -aeo -beO -beX -aIk -aIk -iQh -aIk -adX -beO -aeo -aeo -bfc -bfc -bfc -beP -bfs -bfm -bfj -beO -aIk -aIk -aIk -aIk -uIJ -aIk -iQh -aIk -aIk -bcW -beO -beO -beO -bfc -bfc -bfc -beO -beO -aIk -aIk -aIk -bfZ -bge -beO -beO -aIk -aIk -iQh -aIk -beO -adX -aIk -aIk -iQh -aIk -uIJ -beX -bfc -bgf -bfR -beP -bfK -bfi -bfR -bfZ -bga -bfc -eOe -aIk -beO -beO -awY -epI -mtY -niO -niO -mvb -ffv -aja -jqT -oVq -pFO -dYP -aSI -dYP -dYP -dyA -jNx -ahQ -ahQ -ahQ -ahQ -ahQ -ahQ -jqT -ioE -gmE -faY -aoE -jds -pyh -weF -xVi -dEq -aoE -xHx -psi -aoN -ums -gBW -pMb -aoE -aoE -aoE -aoE -aoE -aoE -aoE -aoE -aoE -aoE -aoE -aoE -auG -ylo -ylo -aSa -ylo -ylo -ylo -ylo -aEf -uiw -ioE -lLx -uiw -aEf -ylo -ylo -ylo -aSa -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(48,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaj -abD -abI -mfN -abv -abD -abv -mfN -adD -abD -aaq -mfN -abv -abD -vGy -fdb -vGy -abD -gix -jHb -oPx -uMh -aaj -ylo -ylo -ylo -aaj -aal -aal -aal -aaj -aal -aal -aal -aaj -ylo -ylo -ylo -acM -iGH -tAH -bWP -svJ -tfL -adJ -adJ -tCz -wmd -qXq -xGx -xGx -qOf -siO -ngH -qTw -adJ -adJ -tfL -hEB -tAH -tAH -bWP -cTQ -bZL -bZL -peI -rka -gfF -apu -sdZ -vLi -aga -aga -aga -aiU -beO -bfc -bfg -bfe -bgb -bga -bfc -beO -adX -aIk -aIk -iQh -aIk -beX -beO -aeo -beO -aeo -bfc -bfg -bfl -bft -bff -bfg -aIk -aIk -aIk -aIk -aIk -uIJ -aIk -iQh -aIk -aIk -bcW -bcW -bcW -beO -beX -adX -adX -aIl -aIk -aIk -uIJ -uIJ -bcW -aeo -beX -adX -uIJ -uIJ -iQh -beX -aIl -adX -aIk -aIk -iQh -aIk -uIJ -aIk -bfc -bgg -beP -bfz -beZ -bfo -bfK -bfi -bgb -bga -eOe -aIk -beX -beO -awY -epI -qpl -kGq -iXK -kgc -idG -aja -odI -wlg -wlg -oIL -kIK -krk -wlg -wlg -cGl -ahQ -puT -eza -edM -poT -ahQ -rwM -ioE -lLx -faY -aoE -aoE -aoE -aoE -aoE -aoE -aoE -aoE -aoE -aoE -hRG -wOI -aoE -aoE -sDN -vPi -ntu -jVM -tGC -vPi -ntu -jVM -tGC -vPi -hDa -auG -auG -auG -auG -auG -auG -auG -auG -auG -tTt -pQb -lLx -uhP -aHL -aHL -aQi -aQi -aHL -aQi -aQi -aHL -aQi -aQi -aHL -aHL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(49,1,1) = {" -ylo -ylo -ylo -ylo -ylo -aaj -aaj -aaj -abD -abD -abT -abD -abD -abD -abT -abD -abD -abD -abT -abD -abD -abD -hrT -abD -abD -gix -jHb -oPx -vLn -aaj -aal -aal -aal -aaj -oDL -tfX -ceO -adF -oDL -tfX -ceO -aaj -aal -aal -aal -aaj -rOu -tAH -bWP -ewk -qcW -vda -wEv -siO -wmd -wmd -wmd -wmd -ckC -wmd -wmd -qXq -uin -vda -qcW -rOu -tAH -tAH -bWP -rXR -arW -arW -arW -arW -arW -awQ -awQ -awQ -ahs -ylo -ylo -aiU -beO -bfc -bfQ -bfD -bfL -bgc -bfc -beO -bcW -aIk -aIk -iQh -aIk -beO -beO -aeo -aeo -aeo -bfc -pwp -bfh -bff -bfg -aeo -aIk -aIk -aIk -aIk -beX -beX -aIk -iQh -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -iQh -aIk -aIk -aIk -aIk -aIk -iQh -aIk -uIJ -aIk -beX -bgc -bfh -bfx -bfx -bfq -beZ -bfo -bfi -bgc -oJn -aIk -beO -fsx -awY -epI -aja -maz -aja -aja -aja -ifX -ahQ -hFh -hFh -ahQ -ahQ -ahQ -hFh -hFh -ahQ -ahQ -mgs -iHa -vaD -rOA -ahQ -jqT -ioE -lLx -eVn -aoN -kNl -prp -ozx -ozx -prp -gtj -vSr -ohR -lET -ums -gBW -sHK -aoE -fLT -vPi -ntu -vgH -tGC -vPi -ntu -vgH -tGC -vPi -vPi -aoc -vjK -xDI -kMk -yfr -jfJ -qOC -ouJ -aoc -wTu -ioE -lLx -jNx -aiB -qbR -vJo -vJo -qve -nYL -tlZ -imu -vJo -cVp -trR -aHL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(50,1,1) = {" -ylo -ylo -ylo -ylo -ylo -aal -mDY -cGe -skt -pPu -ohX -fWV -uQG -pPu -ohX -fWV -rKS -pPu -ohX -mBR -uCf -pPu -ohX -mBR -xAA -pPu -luX -yim -lPg -skt -skt -jKC -skt -skt -pPu -uXB -mBR -oeP -pPu -uXB -mBR -skt -skt -skt -skt -skt -mWx -nYw -uXO -ewk -diA -vda -siX -wmd -wmd -wEs -chp -wmd -ckC -wEs -chp -wmd -ovb -vda -diA -rOu -tAH -tAH -bWP -rXR -arW -xvp -eAz -vvC -vvC -vvC -eAz -uFZ -ahs -ylo -ylo -aiU -beO -beO -bfc -bfb -bfD -bgk -bfc -aeo -bcW -aIk -aIk -iQh -aIk -uIJ -beO -sao -aeo -aeo -bfc -bfc -bfZ -bge -beO -aIk -aIk -aIk -aIk -sao -beO -beX -aIk -iQh -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -iQh -aIk -aIk -aIk -aIk -aIk -iQh -aIk -beX -beO -beO -bfc -bfZ -bgd -bga -bfh -bfq -bft -bfx -bgk -iQh -aIk -beO -beO -awY -epI -niO -dct -gQj -dct -niO -lld -jPj -oeS -oeS -bSc -ahQ -lKc -kUG -nsv -qpj -icV -foz -foz -foz -uIU -bDp -hBG -ioE -lLx -ioE -kRM -ums -ums -fbd -ums -ums -ums -ums -ums -ums -ums -gBW -ums -tnk -ums -ums -ums -fbd -ums -ums -ums -ums -uZe -uYd -uYd -uGG -slC -ydJ -ydJ -ydJ -ydJ -ydJ -joK -aoc -lHv -dYP -xHj -oUb -aQo -tEQ -raI -rAY -rAY -qqQ -raI -rAY -rAY -kIQ -wux -aQi -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(51,1,1) = {" -ylo -ylo -ylo -ylo -ylo -aal -fdb -gHA -cSE -bqc -rMP -eEL -mto -bqc -rMP -eEL -cSE -bqc -tLQ -gHA -lPk -fiZ -fiZ -fiZ -ehD -tLQ -jHb -mjK -eEL -cSE -bqc -fdb -gHA -cSE -bqc -fdb -gHA -hhQ -bqc -fdb -gHA -lPk -fiZ -fiZ -fiZ -ehD -rka -tAH -bWP -ewk -ipJ -vda -xfJ -qUn -vUA -qUn -qUn -xGS -xNn -qUn -qUn -qUn -usp -vda -ipJ -tLb -tfL -hEB -bWP -rXR -arW -arW -arW -mjd -vvC -jpk -arW -arW -ahs -ylo -ylo -aiU -aiU -beO -aeo -bfR -bfg -bfc -aIk -aeo -bcW -aIk -aIk -iQh -aIk -uIJ -aIk -aeo -aeo -aeo -aeo -beO -beO -beO -beO -aIk -aIk -aIk -beO -beO -beO -uIJ -aIk -gkx -kIW -kIW -kIW -kIW -kIW -kIW -kIW -kIW -kIW -kIW -nny -kIW -kIW -kIW -kIW -kIW -kIW -kIW -kIW -nny -egd -kIW -kIW -kIW -kIW -kIW -yau -aIk -beO -beO -fsx -bfc -bfc -bfc -bgb -bga -bfh -bfy -bfc -bfc -iQh -aIk -beX -aiU -aiU -ifX -ifX -ifX -ifX -ifX -ifX -ifX -ifr -foz -foz -uIU -oeS -lvY -foz -foz -foz -foz -foz -foz -xek -gkg -txA -dYP -dYP -ooN -dYP -uYd -uYd -uYd -uYd -uYd -uYd -uYd -pRH -uYd -uYd -ufr -tte -uYd -pRH -uYd -uYd -uYd -uYd -uYd -uYd -uYd -uYd -rDX -fbd -vWp -aoc -bjF -bjF -bjF -bjF -bjF -bjF -rfW -aoc -wTu -ioE -lLx -jNx -aQo -tYf -rAY -kly -kly -ffm -kly -kly -kly -rAY -eso -aQi -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(52,1,1) = {" -ylo -ylo -ylo -ylo -aaj -aaj -abT -abD -abD -abD -abT -abD -abD -abD -abT -abD -abD -abD -abD -abD -abD -mqU -mqU -xfC -lPJ -ehD -jHb -oPx -vLn -abD -abD -abT -abD -abD -abD -abT -abD -abD -abD -abT -abD -abD -mqU -mqU -xfC -lPJ -tqW -tAH -bWP -ewk -adJ -adJ -adJ -adJ -adJ -adJ -adJ -fvn -cBH -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -rOu -bWP -rXR -arW -xvp -eAz -vvC -gEd -vvC -eAz -cLA -ahs -ylo -ylo -ylo -aiU -beO -fsx -aeo -beO -beX -aIk -aIk -bcW -aIk -aIk -iQh -aIk -uIJ -uIJ -uIJ -aIk -beO -aIl -aIl -aIl -aeo -aeo -uIJ -adX -adX -beX -beO -uIJ -uIJ -aIk -iQh -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -iQh -aIk -aIk -beX -beX -beX -beX -aIk -aIk -iQh -aIk -aIk -aIk -aIk -aIk -aIk -iQh -aIk -bcW -beO -beO -aeo -bfc -bfc -bfc -bgb -bge -bfD -bgk -beX -iQh -aIk -beX -aiU -ylo -ylo -ylo -xSj -rGz -oeS -qck -bRg -ifr -foz -foz -lYu -mQA -cjt -gkg -gkg -gkg -gkg -gkg -gkg -waV -eEh -bDp -mga -ioE -lLx -ekN -aoN -eoO -eoO -eoO -eoO -eoO -lBC -gBW -xta -eoO -eoO -eoO -eoO -uGp -uxt -xAa -pbE -cTx -nWx -eoO -eoO -lBC -gBW -ums -muD -aoc -exU -exU -exU -exU -exU -exU -exU -aoc -wTu -ioE -lLx -fvS -aiB -fVk -rAY -kly -kly -kyx -kly -kly -kly -rAY -hvY -aHL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(53,1,1) = {" -ylo -ylo -ylo -aaj -aaj -abb -mfN -adR -abD -aef -mfN -aef -abD -abb -mfN -abv -abD -ssw -jdt -abs -fxf -qFq -qKc -abs -aFl -kSC -jHb -oPx -kSp -abD -adD -mfN -ads -abD -ads -mfN -abb -abD -adG -mfN -aed -abD -qFq -qNM -abs -aFl -ydo -tAH -bWP -ewk -adJ -sjC -tYB -eTD -npR -npR -adJ -rky -fYQ -sAZ -adJ -sAZ -xGx -sxV -rNh -csl -adJ -kkk -bWP -rXR -arW -arW -arW -mjd -vvC -jpk -arW -arW -ahs -ylo -ylo -ylo -aiU -beO -beO -aeo -aeo -aIk -aIk -aIk -aIk -aIk -aIk -iQh -aIk -aIk -aIk -aIk -aIk -aIk -beX -beX -beX -beX -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -iQh -aIk -aIk -aIl -aIl -aIl -aIk -aIk -uIJ -uIJ -uIJ -iQh -aIk -bcW -aIl -aIl -aeo -beP -bfi -bcW -yjw -beX -aIk -uIJ -uIJ -uIJ -aIk -gkx -jZk -uCn -oiQ -oiQ -pSo -wiF -wiF -wiF -tlx -bfc -bfc -bfg -beO -iQh -beX -beO -aiU -ylo -ylo -ylo -xSj -nAA -foz -ntc -bRg -ifr -qTo -gkg -xSl -ahQ -pZd -xNK -bSY -dZI -kMc -jgE -iQu -eEh -jcH -ahQ -jqT -ioE -lLx -faY -aoc -aoc -aoN -aoN -aoN -aoc -aoc -vih -aoc -aoc -aoN -aoN -aoN -aoc -aoc -aoc -aoc -aoc -aoc -aoc -aoc -aoN -gBW -vHI -aoN -aoc -aoc -aoc -aoc -aoc -aoc -aoc -aoc -aoc -wTu -ioE -cNU -dYP -lqY -qwz -rbf -qvv -jvJ -qnU -jvJ -qBm -kly -rAY -sGu -aIv -aIv -aQj -aQj -aQj -aIv -aIv -ylo -ylo -"} -(54,1,1) = {" -ylo -ylo -ylo -aal -aao -abr -mfN -adR -abD -abs -mfN -abv -abD -abb -mfN -ads -abD -mea -akS -abs -fxf -aFU -aFU -abs -fCK -kSC -jHb -oPx -vLn -abD -adR -mfN -alN -abD -adY -jCO -abb -abD -abb -mfN -aaq -abD -qKc -qNM -abs -fCK -ydo -tAH -bWP -ewk -vda -yfj -qFh -qFh -sbH -glu -gfp -map -yiV -glu -ceI -glu -rzr -fzB -hSx -jHD -adJ -rOu -bWP -rXR -arW -xvp -eAz -vvC -sbE -vvC -eAz -uFZ -ahs -aSa -aSa -aSa -aiU -aiU -beO -beO -aeo -aIk -aIk -aIk -aIk -aIk -aIk -bro -kIW -kIW -kIW -kIW -gJz -kIW -kIW -kIW -kIW -kIW -kIW -kIW -kIW -kIW -kIW -kIW -kIW -kIW -kIW -yau -aIk -aIk -adX -beO -beX -aIk -aIk -aIk -aIk -aIk -iQh -aIk -beO -beO -bfg -beP -bfz -bfy -bgf -jFP -beO -aIk -aIk -aIk -aIk -aIk -iQh -aIk -beO -beO -aeo -bfc -bfZ -bga -bfc -nri -qkt -pSo -oiQ -pSo -kXj -beO -aiU -aiU -aSa -asz -asz -asz -nAA -fYy -uIU -ahQ -son -foz -foz -mmY -ahQ -ahQ -ahQ -ahQ -ahQ -ajf -ahQ -kPB -tbQ -ahQ -ahQ -jqT -ioE -lLx -faY -aoc -cJz -pMK -kNl -kNl -kNl -lET -gBW -oAj -kNl -kNl -kNl -wwZ -rgJ -aoc -cZl -jEW -jEW -aoc -eiz -ira -uQu -lLx -ioE -eVn -ira -grH -ira -ira -ira -pZY -ira -ira -ira -uQu -ioE -lLx -krk -aiB -iBf -ekL -iIq -fqY -kly -kly -sMw -fqY -rAY -dii -aQm -fiF -jmH -jmH -cjn -uIL -aIv -ylo -ylo -"} -(55,1,1) = {" -ylo -ylo -ylo -aal -aaq -abs -sfx -aaf -abD -aub -sfx -abv -abD -asu -sfx -akS -abD -abs -abs -aaf -abD -alb -abs -abs -aFq -kSC -jHb -oPx -uMh -abD -aei -sfx -aaq -abD -aFx -gBx -abv -abD -aei -sfx -aed -abD -wnO -aFU -abs -aFq -ydo -tAH -bWP -ewk -vda -qPl -vzO -vzO -ckC -suN -adJ -xGS -xNn -ivP -adJ -xGS -ckC -wmd -wmd -jHD -vda -rOu -bWP -rXR -arW -arW -arW -mjd -eEp -jpk -arW -arW -ahs -ylo -ylo -ylo -ylo -aiU -beO -fsx -aIk -aIk -aIk -aIk -adX -aIk -aIk -aIk -aIk -aIk -aIk -aIk -iQh -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -iQh -aIk -aIk -adX -beO -sao -beX -aIk -aIk -aIk -aIk -iQh -aIk -aIk -beX -beP -bfh -bfx -bff -bgc -jFP -aIk -aIk -aIk -aIk -aIk -aIk -iQh -aIk -beO -beO -bfZ -bge -bfQ -bgb -bga -aeo -eOe -beX -beO -aIk -aIk -beO -aiU -ylo -ylo -xSj -eVl -xYb -kNC -kZQ -gkg -umh -gkg -gkg -gkg -pFg -ahQ -gdK -oEX -ahQ -xwH -cbQ -jRD -lvY -uIU -vZP -ahQ -jqT -ioE -lLx -faY -aoc -epC -hoE -uZe -lsQ -epj -epj -xIa -epj -epj -mQw -uYd -vYs -bEA -aoc -sHe -sHe -sHe -aoc -wTu -ioE -ioE -lLx -ioE -pQb -ioE -ioE -ioE -ioE -ioE -lLx -ioE -ioE -pQb -ioE -ioE -lLx -oUb -aiB -dgA -ekL -rAY -rAY -rAY -rAY -oDV -qwz -qwz -qwz -xxa -dpQ -dpQ -eEl -sLX -jhr -aQj -ylo -ylo -"} -(56,1,1) = {" -ylo -ylo -ylo -aaj -aaj -abv -abv -abs -abD -ale -abr -abs -abD -abv -abs -ads -abD -dZW -abs -abs -iZQ -abs -abs -abs -kVM -lgs -jHb -oPx -vLn -abD -alr -abv -abs -abD -aaq -abs -abs -abD -abv -abs -aaq -abD -abE -abs -abs -kVM -qEC -tAH -bWP -ewk -vda -yfj -jDn -uuN -map -pfC -vda -fvn -cBH -adJ -adJ -qOm -lJE -guY -eoL -ovb -vda -rOu -bWP -rXR -arW -mLV -eAz -vvC -eEp -vvC -eAz -kSd -ahs -ylo -ylo -ylo -ylo -aiU -aiU -beX -aIk -aIk -aIk -aIk -uIJ -aIk -aIk -aIk -aIk -aIk -aIk -aIk -iQh -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -iQh -aIk -aIk -aeo -beO -beO -beX -aIk -aIk -aIk -aIk -gkx -jxR -aIk -bgf -beP -bfi -bfb -bgf -beO -jFP -aIk -aIk -aIk -aIk -aIk -beX -jFP -beO -beO -bfc -bfX -bfa -beP -bfi -bgc -aeo -iQh -aIk -aIk -aIk -beO -aiU -aiU -ylo -ylo -xSj -ifr -cBl -nbP -doq -eEh -ahQ -uOM -foz -foz -foz -uYH -sSu -qDW -ahQ -swZ -sSu -sSu -foz -pvD -gCS -ahQ -wUV -ioE -lLx -kxw -aoc -trw -ums -qOR -bEA -qIU -qIU -qIU -qIU -qIU -wgX -ums -qOR -vHu -aoc -sRX -sRX -sRX -aoc -wTu -ioE -pni -cFW -dYP -dYP -dYP -dYP -dYP -dYP -dYP -cFW -dYP -dYP -dYP -dYP -dYP -xHj -fvS -aiB -wLf -ekL -cgc -lDV -oDY -iBf -ekL -rAY -cgc -qXA -aQm -gjk -iiH -xyy -lqJ -jOW -aQj -ylo -ylo -"} -(57,1,1) = {" -ylo -ylo -ylo -ylo -aaj -abD -abD -acY -abD -abD -abD -abb -abD -abD -abD -akX -abD -pSZ -abs -abs -fxf -abs -abs -abs -vkM -tLQ -jHb -oPx -vLn -abD -abD -abD -abb -abD -abD -abD -abv -abD -abD -abD -aee -abD -pSZ -abs -abs -vkM -rka -tAH -bWP -ewk -vda -qPl -vzO -vzO -suN -wfi -vda -fvn -dfO -adJ -yjv -siO -rOb -xmZ -qFh -cne -vda -rOu -bWP -rXR -arW -arW -arW -mjd -eEp -jpk -arW -arW -ahs -ylo -ylo -ylo -ylo -ylo -aiU -beO -beX -aIk -aIk -aeo -aIl -aIl -uIJ -aIk -aIk -uIJ -uIJ -uIJ -iQh -aIk -uIJ -uIJ -bcW -beO -beX -adX -bcW -bcW -beO -beO -bcW -bcW -aIk -iQh -aIk -aIk -aeo -beO -beO -beO -beO -beO -beO -beO -iQh -aIk -aeo -bgc -bfh -bff -bfR -bgc -beO -jFP -aIk -aIk -aIk -aIk -beO -beO -jFP -beO -bfc -bfg -bfR -beP -bfi -bff -bfQ -aIk -iQh -aIk -aIk -aIk -beO -aiU -ylo -ylo -ylo -xSj -qNr -jgE -eCf -jgE -oPN -ahQ -hZD -hZH -hZH -hZH -ahQ -gUC -vNa -ahQ -czd -jgE -iQu -foz -uXM -oGb -bDp -jqT -ioE -lLx -hfA -aoc -xye -ums -ums -bEA -bzm -hqX -hqX -hqX -bzm -wgX -ums -ums -ums -ycB -sRX -sRX -pGh -aoc -cuc -ioE -lLx -krk -wlg -wlg -wlg -wlg -wlg -cfJ -wlg -nNP -wlg -wlg -oIL -woO -woO -oGZ -woO -aiB -aiB -jIu -aiB -aiB -aiB -aiB -biN -wTb -aiB -aiB -aQm -oqU -iiH -iiH -iiH -vQY -aIv -ylo -ylo -"} -(58,1,1) = {" -ylo -ylo -ylo -ylo -aaj -abE -abD -abD -abD -afy -abD -abD -abD -aee -abD -abD -abD -jsp -abs -abs -fxf -abs -abs -abs -vkM -tLQ -jHb -oPx -xVw -abD -alH -abD -abD -abD -abb -abD -abD -abD -aml -abD -abD -abD -psV -abs -abs -vkM -rka -tAH -qPr -gfg -adJ -gDy -lEk -kfx -wnV -adJ -adJ -hRx -cBH -vda -qbz -wmd -djz -guY -guY -ovb -vda -rOu -bWP -rXR -arW -xvp -eAz -jHZ -eEp -vvC -eAz -uFZ -ahs -ylo -ylo -ylo -ylo -ylo -aiU -aiU -beO -aIk -aIk -beO -beO -beX -aIk -aIk -aIk -aIk -aIk -aIk -iQh -aIk -aIk -aIk -beX -beX -beX -beO -aeo -aeo -beO -beO -beO -bcW -aIk -iQh -aIk -aIk -beO -bci -bci -bci -bci -bci -bci -beO -ppP -aeo -bgf -bfS -bfT -bfd -bfg -aeo -beX -ppP -aIk -aIk -aIk -aIk -beX -beO -eOe -aeo -bfc -bfQ -beP -bfz -bfy -bfb -bgf -aIk -gkx -kIW -jxR -aIk -aiU -aiU -ylo -ylo -ylo -asz -ahQ -ahQ -ahQ -ahQ -ahQ -ahQ -ahQ -ahQ -ahQ -ahQ -ahQ -ahQ -ahQ -ahQ -ahQ -ahQ -ifr -foz -tqw -oGb -bDp -jqT -ioE -lLx -faY -aoc -xye -fbd -ums -bEA -bzm -hqX -skS -hqX -bzm -wgX -ums -ums -xta -aoc -sRX -sRX -tfO -aoc -wTu -ioE -lLx -fvS -aiB -aiB -aiB -aiB -aiB -aiB -aiB -aiB -aiB -aiB -aiB -kcl -kcl -jqY -pEA -aiB -qry -ekL -iRj -aiB -fKk -hLD -ekL -rAY -uEU -wVV -aQm -mZz -gjk -sFh -qnc -ovo -aIv -ylo -ylo -"} -(59,1,1) = {" -ylo -ylo -ylo -aaj -aaj -abs -abs -abb -abD -abs -abs -aee -abD -abs -abs -aFg -abD -vuq -abs -abs -iZQ -abs -abs -dem -joW -ehD -jHb -oPx -vLn -abD -abs -abs -abb -abD -ads -abs -abv -abD -abs -abs -ads -abD -abE -abs -dem -joW -tqW -tAH -bWP -ewk -adJ -adJ -adJ -adJ -adJ -adJ -fQb -siO -cBH -vda -qbz -wmd -qFh -qFh -qFh -cne -vda -rOu -bWP -rXR -arW -arW -arW -arW -epP -arW -arW -arW -ahs -ylo -ylo -ylo -ylo -ylo -aSa -aiU -bfZ -bgd -bge -aeo -beO -beO -aIk -aIk -aIk -bRT -kIW -kIW -egd -nny -kIW -kIW -oiQ -pSo -pSo -pSo -pSo -pSo -pSo -xsJ -nHu -uCn -kIW -yau -aIk -aIk -beO -bcj -vtC -lbr -nBH -uxT -bcj -beO -jFP -beO -bgb -bge -bfR -bfg -aeo -beX -aeo -iQh -aIk -aIk -beP -bfi -bfu -aeo -eOe -bfc -bfc -pwp -bfJ -beZ -bfy -bfR -bgc -beX -iQh -aIk -aIk -beO -aiU -aSa -aSa -aSa -arA -arA -gjv -gjv -sXP -hWo -ahn -seT -uPO -kws -qzX -oHd -ahn -kFI -gSl -uVP -qXz -ahQ -cGy -jgE -xHD -nIz -ahQ -jqT -ioE -lLx -faY -aoc -lsn -eoO -eoO -jLl -bzm -hqX -bBa -hqX -bzm -lsn -bIl -bIl -evV -aoc -iNv -sRX -tfO -aoc -wTu -pQb -lLx -ioE -dpa -rAY -qwY -rAY -rAY -aQo -qGg -imu -gfQ -gfQ -aiB -rAY -kly -fZx -rAY -aQo -xjL -ekL -sGu -aiB -gNs -kly -ekL -rAY -kly -ujb -aQm -upM -olb -aQm -vwT -upM -aQj -ylo -ylo -"} -(60,1,1) = {" -ylo -ylo -ylo -aal -aaB -abr -ong -ach -abD -aei -ong -ads -abD -aei -ong -ala -abD -abs -abs -aaf -abD -alb -abs -pXp -aFl -kSC -jHb -oPx -uMh -abD -ibz -ong -alR -abD -aFC -ong -aee -abD -aFR -amo -sdu -abD -mcj -aFX -pXp -aFl -ydo -tAH -bWP -ewk -adJ -rGB -xGx -sxV -xGx -xGx -mdJ -wmd -cBH -vda -siX -wmd -guY -hSx -guY -grF -adJ -rOu -bWP -fHE -oqG -kMI -oqG -cxr -haA -nMq -vBC -xHs -ass -ylo -ylo -ylo -ylo -ylo -aSa -aiU -aiU -bfS -bfa -bfg -beO -beO -aIk -beX -aeo -ppP -aIk -aIk -aIk -wcw -aIk -aIk -beO -beO -aeo -aeo -bfc -bfg -beO -aeo -jFP -aIl -aIk -iQh -aIk -aIk -beO -bcj -kzi -pgQ -dVY -knX -bcj -beO -jFP -beO -beO -beO -bfg -aeo -beO -beO -aIk -iQh -aIk -beP -bff -bff -bfQ -fsx -eOe -bfc -bgf -bfb -bfh -bfx -bff -bgf -beO -aeo -iQh -aIk -beO -aiU -aiU -aSa -aSa -aSa -arA -wrG -nAK -cVl -hio -hWo -ahS -uSa -fPm -fPm -fPm -qaN -sjp -xXA -iwk -tBi -psW -ahQ -ahQ -ahQ -ahQ -ahQ -ahQ -jqT -ioE -lLx -faY -aoc -aoc -aoc -aoc -aoc -qIU -qIU -qIU -qIU -qIU -aoc -aoc -aoc -aoc -aoc -aoc -aoc -aoc -aoc -wTu -ioE -lLx -ioE -kcl -rAY -kly -kly -rAY -aQo -dpC -kly -pFj -rAY -aiB -dBk -jvJ -ckL -rAY -xep -dbi -dtZ -sGu -aiB -eJp -kly -dtZ -rAY -kly -iZX -aQm -cPy -lkW -aQm -jBI -hfW -aQj -ylo -ylo -"} -(61,1,1) = {" -ylo -ylo -ylo -aal -aba -abr -mfN -abb -abD -abb -mfN -adx -abD -abb -mfN -aaq -abD -ssw -adx -abs -fxf -aFX -aFX -abs -fCK -kSC -jHb -oPx -vLn -abD -adx -mfN -abv -abD -ame -mfN -abv -abD -abv -mfN -ads -abD -qNM -qKc -abs -gtc -ydo -tAH -bWP -ewk -adJ -kUK -xGS -wmd -nNT -jQR -ijh -rHq -kFW -adJ -kpn -qUn -lEk -kfx -lEk -qie -adJ -kkk -qPr -lGG -xJl -xJl -cxo -cxo -wqD -gUv -mZF -qHe -ass -ylo -ylo -ylo -ylo -aSa -aSa -aSa -aiU -pwp -bfi -bfQ -bfg -beO -beO -beO -aeo -eOe -aeo -beX -aIk -aIk -aIk -beX -aeo -aeo -bfc -bfZ -bge -lYX -beO -aeo -eOe -aIl -aIk -iQh -aIk -aIk -qDx -bcj -peq -vVZ -vVZ -eQb -bcj -beO -jLU -oiQ -oiQ -oiQ -oiQ -wVz -pSo -kIW -kIW -kXj -aIk -bfh -bff -bfQ -bfg -beO -eOe -bfc -bgc -bfU -bfa -bfd -bfZ -bgi -jLa -kIW -kXj -beX -beO -aiU -ylo -ylo -ylo -ylo -arA -eCn -qzX -cVl -qzX -hWo -ahS -uSa -cVl -cVl -cVl -vqm -ahn -jXb -oju -yjA -vrY -ahn -tXQ -tXQ -wKz -fvS -fhy -hBG -ioE -lLx -eVn -ira -ira -ira -grH -ira -ira -ira -ira -ira -kME -ira -ira -ira -ira -ira -grH -ira -ira -ira -uQu -ioE -cNU -dYP -wFz -qwz -jvJ -huf -rAY -xep -dbi -kly -ekL -rAY -aiB -rAY -kly -fZx -rAY -aQo -dHX -lDV -rGo -aiB -tSk -qXA -qXA -qXA -qXA -hHi -aQm -uWG -xsX -aQm -xsX -ovo -aIv -ylo -ylo -"} -(62,1,1) = {" -ylo -ylo -ylo -aaj -aaj -abI -mfN -abv -abD -abv -mfN -aaq -abD -abb -mfN -agk -abD -mea -nWh -abs -fxf -sTD -wOQ -abs -aFq -kSC -jHb -oPx -kSp -abD -aaq -mfN -abb -abD -aaq -mfN -adD -abD -abb -mfN -sdu -abD -sTD -qNM -abs -aFq -ydo -tAH -bWP -ewk -adJ -adJ -vda -wmd -hkJ -vda -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -rOu -lYW -cQi -nKF -nKF -nKF -nKF -ckU -haA -mZF -arN -agI -agI -agI -agI -agI -agI -aSa -ylo -aiU -aiU -bfh -beP -bfi -bfZ -bgd -bga -aeo -eOe -beO -aeo -bfc -bfc -aeo -aeo -aeo -aeo -lYX -beP -bfv -bfi -bfg -beO -eOe -bnP -aIk -iQh -aIk -lkd -aIx -aIx -nHw -vVZ -vVZ -oIc -aIx -aIx -beO -beO -beO -beO -beO -jFP -beX -aIk -aIk -aIk -aIk -aIk -bfu -bfg -aeo -aeo -eOe -bfc -beP -bfi -bfZ -bge -aeo -beX -iQh -aIk -beX -beO -aiU -aiU -ylo -ylo -ylo -ylo -arA -nAK -nAK -cVl -cVl -svZ -ahn -pXf -cVl -eOy -cVl -fId -ahn -ahn -ahn -ahn -ahn -ahn -lIR -xrX -tOM -ioE -ioE -ioE -pQb -lLx -ioE -ioE -ioE -ioE -ioE -ioE -ioE -pQb -ioE -ioE -lLx -ioE -ioE -pQb -ioE -ioE -ioE -ioE -ioE -ioE -ioE -ioE -lLx -ioE -kcl -rAY -rAY -ekL -rAY -aQo -eRO -kpX -ekL -rAY -aiB -kcl -kcl -jqY -wFk -aiB -aiB -aiB -aiB -aiB -aiB -aiB -aQo -aQo -aiB -aiB -aQm -aQm -aQj -aQj -aQj -aQm -aIv -ylo -ylo -"} -(63,1,1) = {" -ylo -ylo -ylo -ylo -aaj -aaj -abT -abD -abD -abD -abT -abD -abD -abD -abT -abD -abD -abD -abD -abD -abD -bpU -bpU -hzm -jfO -lgs -jHb -oPx -vLn -abD -abD -abT -abD -abD -abD -abT -abD -abD -abD -abT -abD -abD -bpU -bpU -hzm -jfO -qEC -tAH -bWP -ewk -adJ -eoz -mdJ -wmd -ckC -qXq -csl -adJ -otv -pct -pct -pct -pct -oJX -pct -pct -pct -mcW -bWP -rXR -nxB -uLU -uLU -fEA -nga -haA -sdr -arN -ioL -cBd -qSC -cBd -ioL -aQz -aQz -aQz -aQz -aQz -aQz -bfh -bff -lYX -bfQ -bgc -beO -eOe -aeo -bfc -beP -bfi -bfc -beO -bfc -bfc -bfc -bfh -bfq -bfo -bfi -bfc -eOe -aIx -wtv -rzm -wtv -sUX -aIx -loa -kpU -vVZ -vVZ -obv -dnb -gLs -gLs -gLs -gLs -gLs -gLs -jFP -beX -aIk -aIk -aIk -aIk -aIk -aIk -beX -beO -aIk -iQh -beP -bfI -bff -aeo -aeo -aIk -aIk -iQh -aIk -beO -aiU -aiU -aSa -aSa -aSa -arA -arA -arA -onT -cVl -eOy -cVl -cVl -kYl -cVl -cVl -roz -cVl -dEJ -win -xRv -rCG -xok -hEz -ahn -obY -nsj -ntY -ioE -pni -dYP -dYP -cFW -dYP -dYP -dYP -dYP -dYP -dYP -dYP -aSI -dYP -dYP -cFW -dYP -dYP -dYP -dYP -dYP -aSI -dYP -dYP -dYP -dYP -dYP -nka -krk -aiB -kcl -kcl -jqY -uNK -aiB -aiB -aQo -jIu -fMP -aiB -qyk -pFv -kui -qyk -boJ -epO -dhW -yfw -cCR -dhW -dhW -dhW -dhW -dhW -dhW -cCR -dhW -dhW -dhW -dhW -dhW -aEy -ylo -ylo -"} -(64,1,1) = {" -ylo -ylo -ylo -ylo -ylo -aal -fdb -oMt -iHl -hiW -tNs -kwX -miy -hiW -tNs -kwX -iHl -hiW -tLQ -oMt -gyB -tuU -tuU -tuU -lgs -tLQ -jHb -mjK -kwX -iHl -hiW -fdb -oMt -iHl -hiW -fdb -oMt -kwg -hiW -fdb -oMt -gyB -tuU -tuU -tuU -lgs -rka -tAH -bWP -ewk -adJ -iUH -jdK -xqZ -rNT -xqZ -jHD -adJ -rOu -rQI -nYw -nYw -nYw -xlQ -nYw -nYw -nYw -nYw -gOd -rXR -nxB -uLU -uLU -fEA -nga -haA -nMq -arN -ioL -cBd -ioL -cBd -ioL -aQC -pjJ -yiu -csp -kLA -aQC -bfc -bfc -bfZ -bge -bfc -bfc -jFP -bfg -lYX -bfl -bfo -bfi -bfQ -bfc -bfc -bfc -bfg -bfh -bfq -bfm -bfc -eOe -aIx -oZE -fTe -vVZ -oZE -aIx -hUe -xUz -ffX -sRh -xUz -cqY -gLs -hqX -bQt -bQt -hqX -gLs -jFP -beO -beO -aIk -aIk -aIk -aIk -aIk -aIk -aIk -aIk -iQh -bfh -bfm -aeo -aeo -beX -aIk -aIk -iQh -aIk -beO -aiU -ylo -ylo -ylo -ylo -arA -seT -gSl -pXf -cVl -ikn -xXA -xXA -sjp -xXA -mFY -iUE -xXA -iUE -xXA -xXA -xXA -xXA -xXA -fhu -dYP -dYP -dYP -dYP -xHj -krk -wlg -wlg -wlg -wlg -wlg -wlg -wlg -wlg -oIL -lLx -ioE -krk -wlg -oyD -ioE -ote -hmm -oyD -lLx -ote -qLe -qLe -qLe -rDU -wlg -scG -boJ -qyk -pFv -kui -qyk -apg -ylB -uSE -oFc -iHA -cXx -iHA -iHA -oFc -iHA -wFK -ylB -ylB -ylB -ylB -ylB -ylB -nQR -ylB -ylB -ylB -ylB -ylB -ylB -ylB -ylB -syN -aEy -aEy -aEy -"} -(65,1,1) = {" -ylo -ylo -ylo -ylo -ylo -aal -kZa -oIS -gnf -rRA -gVD -mYl -bHO -rRA -gVD -mYl -ssu -rRA -gVD -jAD -tfo -rRA -gVD -jAD -gnf -rRA -luX -yim -cwq -gnf -gnf -pNf -gnf -rRA -gyC -tnG -jAD -gTM -rRA -tnG -jAD -gnf -qzN -tHY -meG -gnf -mdh -nYw -uXO -ewk -adJ -pvO -oOR -fZt -mxQ -oOR -esu -adJ -rOu -bWP -cTQ -bZL -rYo -bZL -bZL -bZL -keC -bZL -bZL -opy -nxB -sny -uLU -fEA -nga -nMt -cxo -uiK -kcI -kcI -hvb -cBd -vnK -aQC -aQC -aQO -aQO -yiu -mUV -bfc -bfc -bfc -bfc -bfc -bfc -oJn -bfg -bfQ -bfl -beZ -bfo -bfi -bfQ -bfc -bfc -bfc -bfg -bfh -bff -bfc -jFP -aIx -vUm -nQL -vVZ -xUz -aJc -wfB -xUz -vVZ -fTe -xUz -iYL -gLs -hqX -hqX -bYm -bYw -gLs -jFP -aeo -beX -aeo -aeo -aIk -aIk -aIk -aIk -aIk -aIk -iQh -beX -bfd -beO -aIk -aIk -aIk -aIk -jFP -beO -aiU -aiU -ylo -ylo -ylo -ylo -arA -uSa -qzX -gjv -nAK -gjv -nAK -nJL -ahn -fMx -roz -gjv -gjv -gjv -gjv -gjv -gjv -gjv -cVl -dza -ioE -ioE -ioE -ioE -lLx -jNx -ahQ -ahQ -ajf -ajf -ajf -ajf -ahQ -ahQ -jqT -lLx -ioE -jNx -kyQ -aoY -pSx -aoY -aoY -aoY -pPS -aoY -aoY -aoY -aoY -aoY -apg -apg -apg -vTq -iHA -rzf -cPU -iFQ -cPU -cPU -pFs -cPU -cPU -cPU -cPU -wuq -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -dcI -iHA -iHA -iHA -iHA -wFK -syN -dhW -aiD -"} -(66,1,1) = {" -ylo -ylo -ylo -ylo -ylo -aaj -aaj -aaj -abD -abD -abT -abD -abD -abD -abT -abD -abD -abD -abT -abD -abD -abD -irl -abD -abD -gix -jHb -oPx -vLn -aaj -aal -aal -aal -aaj -fvO -gJj -jeC -adF -fvO -wnc -jeC -aaj -aal -aal -aal -aaj -rOu -tAH -bWP -ewk -adJ -htm -kyw -xqZ -oZy -xqZ -pwx -adJ -iGH -bWP -rXR -asm -asm -asm -asm -asm -asm -asm -asm -asm -asm -asm -asm -asm -nga -haA -tSR -cBd -cBd -cBd -cBd -cBd -vGB -aQC -yiu -aQO -aQO -yiu -aQC -bfg -bfc -bfc -bfc -bfc -bfc -oJn -bfc -bfg -bfl -bfp -bfp -bfo -bfi -bfQ -bfc -beO -aeo -lYX -beO -beO -jFP -aIx -xUz -vVZ -gmk -puQ -aJc -oZO -mAT -vVZ -fTe -ihR -vEC -gLs -gLs -gLs -bQv -bQv -gLs -eOe -aeo -beO -bfg -beP -bfi -beX -mVq -kIW -nny -kIW -dwW -orI -kIW -kIW -kIW -oiQ -oiQ -oiQ -lGP -aiU -aiU -ylo -ylo -ylo -ylo -ylo -arA -kuk -nAK -gjv -nAK -gjv -qzX -oaz -ahS -uSa -roz -gjv -gjv -gjv -gjv -gjv -gjv -gjv -cVl -dza -ioE -ioE -ioE -ioE -lLx -jNx -ahQ -rIz -eJk -tAD -fHv -pDA -iHX -ahQ -wUV -lLx -ioE -jNx -kyQ -oKi -dFd -uIG -aoY -eYK -deZ -aoY -eaE -pBi -wHr -vKy -apg -qpp -qpp -ctp -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -dcI -iHA -iHA -iHA -dcI -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -vrX -dhW -aiD -"} -(67,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaj -abD -adR -mfN -ads -abD -abE -mfN -ads -abD -adG -mfN -aed -abD -vGy -fdb -vGy -abD -gix -jHb -oPx -uMh -aaj -ylo -ylo -ylo -aaj -aal -aal -aal -aaj -aal -aal -aal -aaj -ylo -ylo -ylo -acM -iGH -tAH -bWP -ewk -adJ -pvO -gHm -gGn -eYi -oOR -esu -adJ -rOu -bWP -rXR -asm -rIe -asm -xFu -asm -xFu -asm -jjc -wZd -iJJ -uXV -hrP -asm -cxr -haA -gjr -arN -guk -wwH -vnK -cBd -cBd -mUV -yiu -aQW -aQO -aQC -aQz -aiU -aiU -aiU -bfc -bfc -bfc -oJn -bfc -bfc -bfh -bfq -bfp -beZ -bfm -bfn -aeo -aeo -aeo -aeo -beX -beX -jFP -aIx -oZE -vVZ -fTe -oZE -aIx -jGh -fGR -vVZ -fTe -sbO -pHD -gLs -bYd -buU -eOD -sSm -aIx -eOe -aeo -bfg -bfQ -bfl -bfy -bgk -eOe -aIk -wcw -aIk -aIk -aIk -aIk -aIk -beX -beO -beO -beO -awY -aiU -ylo -ylo -ylo -ylo -ylo -ylo -arA -uSa -nAK -gjv -qzX -gjv -nAK -oaz -ahS -uSa -roz -cVl -cVl -cVl -cVl -cVl -cVl -cVl -cVl -dza -ioE -pQb -ioE -ioE -lLx -fvS -ajf -lvY -sSu -qOn -sSu -sSu -uIU -ajf -hBG -lLx -ioE -jNx -kyQ -nIj -tDC -nWW -aoY -tXc -nuJ -gfO -ryq -tbS -gpN -uAu -apg -smb -smb -ctp -iHA -dhW -dhW -iHA -apk -apk -apk -vDI -tGY -apk -apk -apk -vDI -tGY -apk -apk -apk -apk -apk -vDI -tGY -apk -apk -apk -vDI -tGY -apk -apk -apk -iHA -vrX -dhW -aiD -"} -(68,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aal -abb -abs -mfN -ahX -abD -abs -mfN -adv -abD -abb -mfN -aaq -abD -vGy -fdb -vGy -abD -gix -jHb -oPx -vLn -aal -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aek -rOu -tAH -bWP -ewk -adJ -fvn -wmd -wmd -wmd -wmd -jHD -adJ -rOu -bWP -rXR -asm -mqG -asm -mqG -asm -mqG -asm -tcd -tcd -sHT -tcd -tcd -dzg -tSR -haA -mZF -arN -cBd -wwH -nZk -cBd -cBd -aQC -dFk -yiu -yiu -fol -aQz -ylo -aSa -aiU -aiU -bfc -wZu -xha -bfc -bfc -bfc -bfh -bfr -bfr -bff -aeo -aeo -aeo -beO -aIk -aIk -aIk -jFP -aIx -wtv -wtv -rzm -xqd -aIx -aIx -aIx -vVZ -enX -aIx -aIx -gLs -bQH -bQN -xTK -xft -aIx -eOe -bfc -bfg -beP -bfz -bfy -bfQ -eOe -aIk -aIk -aIk -aIk -snS -aeo -aeo -bfZ -bge -aQC -eLW -aQC -aiU -ylo -ylo -ylo -ylo -ylo -ylo -arA -qgG -bEz -cVl -cVl -cVl -tBP -eUg -ahn -uSa -roz -tBP -tbC -stV -mTo -tbC -tbC -mog -fXh -ahn -cTW -pDa -aGH -ioE -cNU -qjN -xnX -ncd -ncd -lcd -ncd -ncd -ncd -xnX -qjN -xHj -ioE -jNx -kyQ -aoY -aoY -aoY -aoY -iVQ -deZ -aoY -eWQ -hCk -eSE -dwv -apg -dhW -dhW -ctp -iHA -wje -wje -iHA -apk -gvD -rZs -rZs -rZs -rZs -rZs -rZs -rZs -rZs -rZs -rZs -rZs -rZs -rZs -rZs -rZs -rZs -rZs -rZs -rZs -rZs -rZs -eQz -apk -dcI -vrX -dhW -aiD -"} -(69,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aal -abb -abs -sfx -aih -abD -aei -sfx -aaq -abD -aei -sfx -aed -abD -bEZ -dQB -vGy -abD -gix -jHb -oPx -vLn -aal -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aek -rOu -tAH -bWP -ewk -adJ -gIf -xGS -eoL -fzB -suN -lWg -adJ -rOu -bWP -rXR -asm -tcd -qVj -fnP -quV -quV -xXl -twE -loB -fSN -quV -quV -quV -cxo -oMV -mZF -asp -asp -asp -asp -asp -asp -aZe -aZe -aZe -aZe -aZe -akt -aSa -aSa -aSa -aiU -aiU -bfc -nri -wiF -tlx -bfc -bfc -bfg -bfk -bgk -beO -snS -aeo -aIk -aIk -aIk -aIk -iQh -aIx -eec -vVZ -fTe -oZE -obv -tmt -kpU -vVZ -fTe -obv -vnN -gLs -gLs -gLs -tfh -wfv -aIx -oJn -bfc -bfc -bfh -bfA -bff -bgf -oJn -aIk -aIk -aIk -beX -aeo -aeo -bfg -beP -aQC -aQC -yiu -aUR -aqs -aqs -aqs -aqs -aqs -aqs -arA -arA -ahn -ahn -dty -dty -dty -ahn -ahn -ahn -boq -tUc -ahn -ahS -ahS -ahn -ahn -ahS -ahS -ahn -ahn -gue -xrX -iNN -ioE -lLx -krk -ajf -iQu -sSu -vHw -pzo -sSu -eEh -ajf -oIL -lLx -ioE -jNx -kyQ -pDY -tPn -bMJ -bMJ -iWu -deZ -aoY -aoY -aoY -aoY -aoY -apg -qpp -smb -ctp -dcI -wje -wje -iHA -apk -tGY -apk -apk -apk -aDY -dJV -uHm -ugB -gjt -dJV -uHm -ugB -gjt -dJV -uHm -ugB -aiv -aiz -aiH -apj -ahW -apk -vDI -apk -iHA -vrX -dhW -aiD -"} -(70,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaj -aaj -abs -abs -abs -abD -adi -abv -abs -abD -abv -abs -aaq -abD -vGy -evr -vGy -abD -gix -jHb -oPx -vLn -aal -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aek -rOu -tAH -bWP -ewk -adJ -adJ -tnz -uaI -lEk -wnV -adJ -adJ -iGH -bWP -rXR -asm -jjc -jjc -uRx -qIC -vdA -asm -sHT -tcd -tcd -cHS -vdA -asm -ckU -haA -mZF -asp -edu -nof -edu -iIQ -nof -wZh -nof -uhh -pmS -hce -akt -akt -aSa -aSa -aSa -aiU -aiU -bfc -bfc -oJn -bfc -bfc -bfc -bfg -bfg -aeo -aeo -aIk -aIk -bRT -kIW -kIW -lGP -aIx -pDE -vVZ -fuS -tmM -tmM -tmM -tmM -oQM -bRA -tmM -tmM -jny -tmM -tmM -uKr -bBS -aIx -oJn -bfc -bfc -bfg -bfd -bfQ -bgc -oJn -bfc -aeo -aeo -aeo -bfg -beP -bfv -bfz -aQC -axH -yiu -aQO -agZ -tyi -gAC -xCq -eCs -agZ -jqT -mOb -tRG -ntY -woO -woO -woO -mOb -nsj -nsj -ntY -lLx -mOb -nsj -nsj -nsj -nsj -nsj -nsj -nsj -nsj -nsj -nsj -wfo -ioE -lLx -iXk -ahQ -fdj -lIT -wOJ -lcT -mPQ -jcH -ahQ -jqT -lLx -ioE -jNx -kyQ -cIP -gpN -gpN -gpN -gpN -deZ -lay -hQo -wAG -xhg -sKb -apg -smb -qpp -ctp -iHA -wje -wje -iHA -rZN -tGY -apk -apk -apk -aEe -sis -sis -sis -oHY -sHg -uJx -nvm -oHY -sis -sis -sis -aiw -aie -aie -aie -apm -ahW -vDI -rZN -iHA -vrX -dhW -aiD -"} -(71,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaj -abv -abv -adR -aaj -aaj -aaj -hEb -abD -abD -abD -aee -abD -vGy -tLQ -vGy -abD -gix -jHb -oPx -uMh -aaj -ylo -ylo -ylo -acM -aek -aek -aek -acM -aek -aek -aek -acM -ylo -ylo -ylo -acM -iGH -tAH -bWP -ewk -jYP -adJ -adJ -adJ -adJ -adJ -adJ -jYP -rOu -bWP -rXR -asm -asm -asm -asm -asm -asm -asm -sHT -tcd -asm -asm -asm -asm -ghU -gNm -mZF -asq -dvu -jnA -bCb -bCe -asy -bCk -asy -bCk -bCo -bCp -xEj -akt -akt -aSa -aSa -aSa -aiU -aiU -bfc -nri -wiF -wiF -wiF -wiF -oiQ -pSo -pSo -kIW -kIW -yau -aIk -aIk -beX -aIx -xpc -vVZ -vVZ -vVZ -vVZ -vVZ -vVZ -fTe -vVZ -vVZ -vVZ -euA -vVZ -vVZ -hUh -fuS -bLX -xha -bfc -bfc -bfc -bfZ -bge -bfc -oJn -bfc -bfc -bfZ -bge -beP -bfz -beZ -aiU -aQC -aQV -yiu -baz -agZ -ghr -sKv -tom -oSX -bCS -jqT -ioE -ioE -ioE -ioE -ioE -ioE -ioE -ioE -pQb -ioE -lLx -ioE -ioE -ioE -ioE -ioE -ioE -ioE -ioE -ioE -ioE -ioE -lLx -ioE -lLx -jNx -ahQ -ahQ -ajf -ajf -ajf -ajf -ahQ -ahQ -jqT -gmE -ioE -jNx -kyQ -mTB -gpN -kWb -ryq -ryq -dRJ -gpN -gpN -gpN -gpN -qHp -apg -dhW -dhW -ctp -iHA -wje -wje -iHA -rZs -tGY -apk -aDY -nbl -aia -tBS -ddY -dkj -dkj -dkj -dkj -qfY -dkj -dkj -dkj -hcm -sis -sis -sis -sis -aiw -apm -qln -rZs -iHA -vrX -ncM -aEy -"} -(72,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaj -aal -aal -aal -aaj -ylo -aap -abi -abi -abi -abi -abi -abi -abi -abi -abi -abi -rOu -tAH -bWP -ewk -acM -aek -aek -aek -acM -cwz -guZ -oXG -ald -cwz -lOK -oXG -acM -aek -aek -aek -acM -rOu -tAH -bWP -wIb -pct -pct -pct -pct -pct -pct -pct -pct -mcW -bWP -fHE -oqG -oqG -rPE -kMI -oqG -asm -eCw -sHT -tcd -asm -qiN -xhu -asm -nga -eDk -mZF -asq -dvu -ffF -bCb -bCf -asy -bCk -asy -bCm -bCo -bBZ -bCb -edu -akt -akt -aSa -aSa -aSa -aiU -aiU -aiU -bfS -bfT -bfc -bfc -beO -beO -aeo -beX -aIk -wcw -aIk -aIk -aIk -aIx -hlr -hlr -hlr -hlr -hlr -syr -oZE -fTe -vVZ -oZE -odg -aIx -cWA -gxf -wvo -onw -aIx -bYI -wiF -wiF -wiF -wiF -wiF -wiF -xNa -bfc -bfg -beP -bfv -bfz -aiU -aiU -aiU -mwC -mwC -nsY -mwC -agZ -eCH -tom -tom -oSX -bCS -jqT -ioE -pni -dYP -dYP -dYP -dYP -aSI -dYP -dYP -dYP -cFW -dYP -dYP -dYP -dYP -dYP -pFO -dYP -dYP -dYP -dYP -dYP -cFW -dYP -xHj -fvS -fhy -fhy -fhy -fhy -fhy -fhy -fhy -fhy -hBG -lLx -ioE -jNx -kyQ -pMr -gpN -gpN -gQh -dWQ -bSV -gQh -gpN -gpN -gpN -mpP -apg -qpp -smb -ctp -iHA -wje -wje -iHA -apk -tGY -apk -aEe -oun -sHg -wmJ -vTg -vTg -vTg -vTg -vTg -vTg -vTg -vTg -vTg -hpc -dkj -dkj -dkj -ddY -dkj -fSX -qln -apk -iHA -vrX -dhW -aiD -"} -(73,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aap -lXm -qqi -jHk -fsC -abi -wCy -oQc -fMZ -qrp -abi -glf -tAH -bWP -wIb -pct -pct -pct -pct -tVz -mcW -diA -wIb -cZi -mcW -diA -wIb -tVz -pct -pct -pct -pct -mcW -tAH -kbw -tAH -rQI -nYw -nYw -nYw -nYw -nYw -nYw -nYw -nYw -xlQ -nYw -cxo -cxo -wqD -iYI -cxo -nKj -quV -fSN -quV -cVL -dYR -xhu -asm -nga -haA -nMq -asp -fCD -asy -asy -bCe -asy -bCf -asy -bCe -asy -npN -asy -asy -ceu -akt -akt -aSa -ylo -ylo -ylo -aiU -aiU -bfU -bfa -bfc -bfc -beO -beO -beO -aIk -aIk -aIk -aIk -beX -aIx -aIK -qRA -aIx -aIx -aIx -sdT -dMX -fTe -vVZ -eyJ -pYY -aIx -aIx -aIx -aIx -tUC -aIx -oJn -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfg -beP -bfz -beZ -aiU -aiU -ylo -aqs -wVh -wit -oER -wVh -agZ -wLV -tom -tom -oUN -agZ -hBG -pQb -lLx -krk -nNP -wlg -oIL -lLx -bxE -wlg -wlg -wlg -wlg -wlg -nEM -wlg -wlg -nNP -wlg -oIL -ioE -ioE -ioE -pQb -ioE -cNU -dYP -dYP -dYP -dYP -dYP -aSI -dYP -dYP -dYP -dYP -xHj -ioE -jNx -kyQ -qmu -sUW -hdK -lNC -gBd -eVj -vTy -uWr -sUW -uxc -jQF -apg -qpp -smb -ctp -iHA -wje -wje -iHA -apk -tGY -aDY -aia -oHY -oHY -wmJ -sis -sis -sis -sis -sis -sis -sis -sis -sis -wmJ -sHg -sHg -sHg -jcV -aiA -aQf -qln -apk -iHA -vrX -dhW -aiD -"} -(74,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aap -pPc -ngw -xKB -mpt -abi -xKU -pQk -pKB -pKB -sEn -nYw -nYw -xlQ -nYw -nYw -nYw -nYw -nYw -nYw -oYW -nYw -nYw -xlQ -nYw -nYw -nYw -nYw -nYw -nYw -oYW -nYw -nYw -oYW -jOt -nYw -uXO -cTQ -bZL -rYo -bZL -bZL -bZL -rYo -bZL -bZL -bZL -nKF -nKF -ckU -haA -tSR -fTF -tcd -tcd -jvh -asm -sHT -xhu -asm -nga -haA -tSR -rRj -hce -asy -asy -fsL -sGB -asy -asy -asy -asy -asy -asy -fsL -asy -hce -akt -akt -aqK -aqK -aqK -anw -aiU -aiU -aiU -pwp -bgk -bfZ -bge -aeo -aIx -aIx -aLo -aLo -aIx -aIx -sED -kYi -aIx -qwF -pra -uON -hrw -hYt -lLh -skT -pII -ixQ -oIT -aIx -qXg -vVZ -aIx -pcw -gLs -gLs -gLs -gLs -bfc -bfc -bfg -bfQ -bfh -aiU -aiU -aiU -ylo -ylo -aqs -tpc -oER -oER -wVh -agZ -oHG -nVR -net -net -kOp -dYP -dYP -xHj -jNx -agZ -agZ -agZ -dCi -agZ -agZ -bCV -bCV -bCV -agZ -agZ -agZ -agZ -agZ -aqs -jqT -ioE -ioE -ioE -ioE -ioE -lLx -ioE -ioE -ioE -ioE -ioE -lLx -ioE -ioE -ioE -ioE -lLx -ioE -jNx -kyQ -kyQ -kyQ -kyQ -kyQ -kyQ -kyQ -kyQ -kyQ -kyQ -chY -kyQ -apg -apg -apg -knU -iHA -xTR -xTR -iHA -apk -tGY -aEc -cGw -gkR -dkj -wfU -dkj -dkj -dkj -dkj -dkj -dkj -dkj -dkj -dkj -wVa -dkj -dkj -dkj -dkj -aQe -ahW -qln -apk -iHA -vrX -dhW -aiD -"} -(75,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaE -aaE -aap -wYM -wZn -wZn -fRp -abi -oAK -kpQ -wZn -wZn -wZn -tAH -tAH -tAH -tAH -tAH -tAH -tAH -tAH -tAH -bWP -tAH -tAH -tAH -tAH -tAH -tAH -tnj -tAH -tAH -bWP -tAH -tAH -bWP -mEX -mEX -bWP -rXR -alI -alI -alK -alK -alK -alI -alI -alI -alI -jfP -jfP -cxr -haA -rzL -asm -asm -asm -asm -asm -sFf -asm -asm -ghU -nMt -cxo -mYp -mYp -cVR -cVR -gVr -cVR -cVR -cVR -cVR -pya -pya -cVR -qig -asy -asy -edu -akt -oqK -kTQ -eVT -dwN -fMC -cAx -aiU -aiU -aiU -pwp -bgk -bfg -aIx -gZv -pra -pra -faU -bvH -tOQ -pra -aIx -gbk -skT -tuY -oAA -fTe -vVZ -viV -viV -oAA -uaP -aIx -qCG -vVZ -tMR -iAz -bQN -hqX -aCa -gLs -bfZ -bge -bfQ -aiU -aiU -aiU -ylo -ylo -ylo -ylo -aqs -lja -oER -oER -wVh -agZ -gsi -tom -tom -dtw -agZ -oIL -ioE -lLx -jNx -agZ -qDF -jxg -hfY -hJE -ocS -gBm -bZn -ocS -iGk -agZ -lMI -ocS -eKl -aqs -odI -nEM -wlg -wlg -wlg -oIL -oGZ -krk -wlg -oIL -uiw -ioE -gmE -uiw -krk -wlg -oIL -lLx -krk -cGl -tfE -rrt -pRl -pRl -rrt -rrt -pRl -pRl -pRl -rrt -rrt -pRl -tGq -hew -kyQ -ctp -iHA -xTR -xTR -iHA -apk -tGY -aEd -aii -oHY -oHY -gIG -vTg -vTg -vTg -vTg -vTg -vTg -uJz -vTg -vTg -wmJ -sHg -sHg -nuM -sHg -aiw -apm -qln -apk -iHA -vrX -dhW -aiD -"} -(76,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaE -lkD -fjs -wYM -wZn -wZn -csH -abi -gCY -kpQ -wZn -pre -abi -rRJ -rRJ -rRJ -sCG -hDH -hDH -hDH -hDH -dyP -bWP -gfF -hDH -hDH -hDH -hDH -hDH -hDH -hDH -erM -jsC -xTa -den -gaC -qcu -fzn -jsC -wKP -alI -btI -gui -aXU -vAP -pGB -qrV -miH -qrV -qrV -pGB -cxo -oMV -mZF -rTD -jMi -jMi -lgN -uQn -lbs -xyz -rTD -nga -haA -gjr -asp -sxZ -asy -asy -bCe -asy -bCk -asy -bCe -asy -sGB -sGB -fmq -bCo -jnA -xEj -akt -wZP -bUj -rrH -hBg -bUj -dMb -oqK -rqz -aiU -aiU -aiU -bfu -aIx -iCa -rGR -vVZ -vVZ -vVZ -vVZ -vVZ -oLG -vVZ -vVZ -vVZ -vVZ -hYt -tmM -tmM -tmM -tmM -tmM -fKn -tmM -lLh -vVZ -oHA -gLs -hqX -bYP -gLs -bfu -aiU -aiU -aiU -aSa -aSa -ylo -ylo -ylo -ylo -aqs -wVh -oER -oER -wVh -agZ -tuW -tom -tom -oSX -agZ -jqT -ioE -lLx -jNx -agZ -qbL -tom -kQg -net -net -hJl -tom -tom -okB -agZ -kQs -tom -peF -aqs -aoe -aoe -aoe -aoe -aoH -aoH -rgr -aoH -aoH -aoe -mSf -htF -twI -bGl -lac -aoJ -aoJ -gkT -aoJ -aoJ -kyQ -hew -vim -tGq -rrt -rrt -pRl -vim -pRl -rrt -rrt -pRl -vim -rrt -tfE -ctp -iHA -dhW -dhW -iHA -apk -tGY -apk -aEe -sHg -sit -wmJ -sis -sis -sis -sis -sis -sis -sis -sis -sis -hpc -ddY -dkj -dkj -dkj -dkj -fSX -qln -apk -iHA -vrX -dhW -aiD -"} -(77,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaE -cWB -jNV -uUL -wZn -wZn -kvx -bZR -eva -kpQ -wZn -doo -aNK -aNK -aNK -aNK -aNK -auq -auq -auq -auq -auq -sJJ -auq -auq -auq -auq -auq -auq -auq -auq -xpC -jsC -xTa -qTp -acd -xoL -fzn -cot -xTa -qhX -aXU -aXU -aXU -wtM -alI -mBt -fzF -mBt -iWY -alI -ckU -haA -mZF -rTD -jMi -jMi -jMi -uQn -tcd -ndq -rTD -nga -haA -mZF -asq -dvu -jnA -bCb -bCg -asy -bCk -asy -bCf -bCo -jnA -bCb -fmq -bCo -ffF -ijI -akt -uGs -bUj -bUj -cSt -bUj -dMb -wsr -wZP -anw -ylo -aiU -aiU -aoW -jJI -ktK -rDq -tXK -cNZ -tmM -tmM -xdE -tmM -tmM -tmM -tmM -uKr -vVZ -vVZ -vVZ -vVZ -vVZ -euA -vVZ -vVZ -vVZ -vPt -buU -bYN -hqX -qIU -aiU -aiU -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -aqs -hkC -hkC -hkC -euv -aqs -irt -tom -tom -sBC -aqs -hkC -hkC -req -eCi -ksH -jxg -tom -tom -tzK -tom -tom -tom -tom -tom -tls -tom -tom -oSX -mDf -jLN -eZs -bLo -xsy -pVh -hkk -gqL -dUU -cbz -bTk -dQm -dQm -gOz -uRP -atH -huF -oOT -hrr -ogF -urG -avQ -avQ -avQ -avQ -avQ -avQ -avQ -avQ -avQ -avQ -avQ -avQ -avQ -avQ -aEy -ctp -iHA -iHA -iHA -iHA -rZN -tGY -apk -aEd -neY -aii -dLx -dkj -dkj -ddY -dkj -dkj -dkj -dkj -dkj -dkj -mYA -vTg -vTg -vTg -vTg -aiA -aQf -qln -rZN -iHA -vrX -ncM -aEy -"} -(78,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaE -cQq -mMn -uUL -wZn -wZn -wZn -mMn -wZn -kpQ -wZn -wuR -aNK -luN -dWa -wDb -aNK -wgr -eDm -vWV -eDm -jnk -xFP -ieq -auq -xsq -iLr -ltj -khs -dPq -auq -wlW -jsC -xTa -lEe -acA -gXD -fzn -uZJ -hRc -iZP -awy -awy -awy -pPN -bHR -mBt -mBt -mBt -mBt -alI -nga -haA -mZF -rTD -jMi -jMi -iCy -uQn -tcd -ndq -rTD -nga -haA -mZF -asq -dvu -ffF -bCb -bCe -asy -bCf -asy -bCe -bCo -ffF -bCb -fmq -bCo -jnA -xEj -akt -cNO -bUj -bUj -cSt -bUj -dMb -wsr -tmy -aqK -ylo -ylo -ylo -aoW -aoW -aoW -aoW -xRp -eEi -vNm -vNm -aIx -syr -xUz -xUz -oZE -fTe -vVZ -oZE -xUz -xUz -odg -aIx -xhS -tME -gWo -rLU -qIU -qIU -qIU -qIU -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -aqs -tFF -oER -oER -tFF -bCS -rye -yiz -tom -foU -bCS -umC -oER -kXr -umC -bCS -tom -tom -dtw -agZ -fID -bSk -agZ -fID -bSk -agZ -jdP -lbK -tsH -aqs -bTk -bTk -bTk -bTk -pOg -gUJ -svK -gUJ -ddg -oyP -pSz -htF -lLI -pSz -aoJ -jPl -vty -qaq -ley -wfr -aoR -ylo -aSa -aSa -ylo -ylo -ylo -ylo -aSa -aSa -ylo -ylo -ylo -ylo -aEy -knU -iHA -iHA -iHA -iHA -rZs -tGY -apk -apk -apk -aEe -vTg -vTg -vTg -oHY -jjL -sHg -sHg -oHY -vTg -vTg -vTg -aiA -aiq -aiq -aiq -aQf -ahW -vDI -rZs -iHA -vrX -dhW -aiD -"} -(79,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaE -kaZ -mMn -uUL -wZn -wVj -wZn -mMn -wZn -kpQ -xKB -gBS -aNK -lQf -otf -sjq -aNK -jfT -iKQ -iKQ -iKQ -iKQ -xFP -wCl -aPP -ktV -fTh -oZf -raf -pVq -bCI -wlW -jsC -xTa -luT -aev -qny -xTa -jsC -mjF -alI -bsL -aXU -aXU -fSo -axV -mBt -rpN -rJF -hOe -alI -ghU -haA -mZF -rTD -jMi -jMi -oQa -uQn -tcd -ran -rTD -nga -haA -mZF -asp -edu -rQV -edu -uhh -rQV -wZh -rQV -hhk -jFN -hce -hce -mYc -hce -hce -edu -akt -nGS -eIQ -iUc -vbj -bUj -dMb -wsr -tmy -aqK -ylo -ylo -ylo -ylo -ylo -ylo -aoW -aoW -aoW -aoW -aoW -aoW -obH -wjE -kwp -syr -fTe -vVZ -odg -wmI -qfE -iDO -aoW -aoW -aoW -aoW -aoW -aoW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -aqs -wVh -oER -oER -wVh -bCS -xbj -wWD -lWk -xRU -bCS -wVh -oER -kXr -wVh -bCS -dOe -tom -oSX -agZ -wVh -owM -agZ -wVh -owM -aqs -aqs -aqs -aqs -aqs -ylo -ylo -ylo -bTk -izR -xxH -sKt -edY -tJz -aoH -bGl -dQR -htF -bGl -aoJ -sAw -knB -kDT -tTW -jnq -aoR -ylo -aSa -aSa -ylo -ylo -ylo -ylo -aSa -aSa -ylo -ylo -ylo -ylo -aEy -nJf -kJD -dcI -iHA -iHA -apk -tGY -apk -apk -apk -aEd -sJg -tCu -ntn -gjt -sJg -tCu -ntn -gjt -sJg -tCu -ntn -aiE -aiG -aiI -aQg -ahW -apk -vDI -apk -iHA -vrX -dhW -aiD -"} -(80,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaE -oxl -jNV -uUL -wZn -wZn -pre -dPe -byK -kpQ -wZn -huw -aNK -cyN -otf -xOe -eao -rmp -rmp -rmp -ylt -mki -nAF -vjT -aPP -xVY -jfT -rmp -rmp -pVq -bCI -wlW -jsC -xTa -noT -dAi -xod -xTa -jsC -oeo -alI -aXU -aXU -aXU -fSo -aTj -mBt -alI -alI -alI -alI -nga -haA -mZF -asm -rTD -rTD -asm -asm -rTD -rTD -asm -nga -haA -mZF -asp -asp -asp -asp -asp -asp -asp -asp -asp -asp -asq -asq -djb -asq -asq -asp -akt -nFr -nFr -nFr -sbc -bUj -dMb -wsr -mWL -anw -anw -anw -anw -anw -anw -anw -anw -anw -anw -anw -anw -aoW -aoW -aoW -aoW -wtv -rzm -wtv -xNM -aoW -aoW -aoW -aoW -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -aqs -wVh -oER -oER -wVh -bCS -qdN -uRK -uRK -hBl -bCS -wVh -oER -kXr -wVh -bCS -ntj -dQq -cGu -bDn -wVh -owM -agZ -wVh -owM -aqs -ylo -ylo -aSa -ylo -ylo -ylo -ylo -bTk -gJX -gJX -gJX -gJX -gJX -bTk -xjF -jSp -xjF -hcy -atH -jqo -jqo -jqo -jqo -jqo -atH -ylo -aSa -aSa -ylo -ylo -ylo -ylo -aSa -aSa -ylo -ylo -ylo -ylo -aEy -aEy -ctp -iHA -iHA -iHA -apk -poM -rZN -rZN -rZN -rZN -rZN -rZN -rZN -rZN -rZN -rZN -rZN -rZN -rZN -rZN -rZN -rZN -rZN -rZN -rZN -rZN -rZN -jku -apk -dcI -vrX -dhW -aiD -"} -(81,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaE -jQK -okQ -uUL -wZn -wZn -doo -abi -njR -kpQ -xKB -gBS -aNK -drj -otf -rOJ -aNK -thx -iKQ -uPc -gmq -iKQ -ejn -mki -sAq -cni -mki -aLr -rmp -mly -auq -wlW -jsC -xTa -noT -fUI -xod -xTa -jsC -pio -alI -awA -aXU -aXU -fSo -aFE -alI -alI -iFS -tWE -tWE -cxr -haA -nMq -oqG -wWU -tpp -tzq -tzq -eLg -wWU -oqG -cxr -haA -nMq -oqG -oqG -oqG -oqG -oqG -gdE -oqG -oqG -oqG -oqG -oqG -cxr -haA -nMq -oqG -efW -bUj -bUj -bUj -bUj -bUj -bUj -tsu -fMC -fMC -ujN -bUj -xbq -bUj -bUj -bUj -bUj -bUj -xbq -bUj -wZP -aqK -ylo -aSa -ylo -aqK -wsr -kDV -ioM -wsr -aqK -ylo -aSa -ylo -aqK -aqK -aqK -anw -aqK -aqK -aqK -ylo -ylo -ylo -aqK -aqK -aqK -anw -aqK -aqK -aqK -ylo -aqs -wVh -oER -oER -wVh -aqs -bCV -mTZ -fUM -bCV -aqs -wVh -oER -kXr -wVh -agZ -pJB -ccO -aqs -aqs -aqs -aqs -aqs -aqs -aqs -aqs -ylo -ylo -aSa -ylo -ylo -aqL -aqL -aqL -aYR -aYR -aYR -aJZ -bdx -boz -aKi -gtX -aKi -aKi -gfL -aKh -bdJ -aYR -aYR -aYR -aqL -aqL -aqL -aSa -ylo -ylo -ylo -ylo -aSa -aSa -ylo -ylo -ylo -ylo -ylo -aEy -ctp -iHA -iHA -iHA -apk -apk -apk -vDI -tGY -apk -apk -apk -vDI -tGY -apk -apk -apk -apk -apk -vDI -tGY -apk -apk -apk -vDI -tGY -apk -apk -apk -iHA -vrX -dhW -aiD -"} -(82,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaE -aaE -aap -jyS -wZn -wZn -doo -abi -njR -kpQ -wZn -lAa -aNK -xVm -iIE -qGP -aNK -jPB -miS -jiR -pVx -paF -xFP -kpG -aPP -paF -oEj -rmp -rmp -pVq -bCI -wlW -jsC -xTa -noT -jCk -xod -xTa -jsC -noT -alK -bhx -bhx -aXU -xVS -bhx -bhx -alK -nga -tSR -tSR -tSR -haA -dER -dER -tSR -tSR -tSR -tSR -fxl -cxo -cxo -cxo -wqD -iYI -cxo -cxo -cxo -cxo -cxo -cxo -cxo -cxo -cxo -iYI -cxo -cxo -wqD -cxo -iYI -ePs -ePs -vKC -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ivw -bUj -tmy -aqK -ylo -aSa -ylo -aqK -olp -kDV -ioM -olp -aqK -ylo -aSa -ylo -aqK -bUj -kTQ -pff -eFr -bUj -aqK -ylo -ylo -ylo -aqK -bUj -kTQ -pff -wJc -bUj -aqK -ylo -aqs -wVh -oER -oER -oER -hkC -fLA -ocS -ocS -fSu -hkC -oER -oER -kXr -wVh -aqs -aqs -aqs -aqs -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -aqL -aqL -aqL -aqL -bcE -beF -aKi -ber -aKo -bcS -aKl -aKi -aKi -gtX -aKi -aKi -aKi -aKi -aKn -bdP -bdQ -bdQ -bdQ -bdQ -aqL -aqL -aqL -aqL -ylo -ylo -aSa -aSa -ylo -ylo -ylo -ylo -ylo -aEy -nJf -sLP -sLP -kJD -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -dcI -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -vrX -dhW -aiD -"} -(83,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aap -fYJ -eVY -wZn -cWb -oBS -mXd -kpQ -xKB -gBS -aNK -aNK -aNK -aNK -aNK -auq -auq -auq -auq -bVu -xFP -pVq -aPP -bVu -iKQ -mzH -pZJ -vLu -bCI -wlW -jsC -xTa -noT -dAi -xod -xTa -jsC -noT -alK -axV -axV -hFm -mag -axV -bHR -alK -nga -fxl -cxo -cxo -wqD -cxo -idA -xJl -xJl -iYI -cxo -lPp -gjr -oIH -ckU -tSR -haA -gjr -oIH -nKF -nKF -nKF -nKF -oIH -ckU -tSR -haA -gjr -oIH -nKF -nKF -bOk -iVf -ioM -kDV -ckB -leU -leU -leU -leU -leU -leU -leU -leU -leU -leU -leU -leU -sSs -ioM -kDV -bUj -mWL -aqK -ylo -aSa -ylo -aqK -wsr -kDV -ioM -wsr -aqK -ylo -aSa -ylo -anw -bUj -kTQ -tmy -wJc -bUj -anw -anw -ylo -anw -anw -bUj -kTQ -tmy -wJc -bUj -anw -ylo -aqs -lyH -trM -gCG -gCG -eYg -wWG -tAp -tAp -khn -eYg -gCG -gCG -vjw -mxH -aqs -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -aqL -aqL -aqL -bdR -bdP -bdP -bcE -aKi -nuS -aKi -bdU -bdU -aKi -aKi -aKi -gtX -aKi -aKi -aKi -wpV -kFZ -aKh -bdJ -bdZ -bdQ -bdQ -bdQ -oge -bdS -aqL -aqL -aqL -aSa -aSa -aSa -aSa -aSa -aSa -aQz -aQz -aQC -eLW -aQC -knU -iHA -iHA -iHA -iHA -dcI -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -iHA -dcI -iHA -iHA -iHA -iHA -iHA -tLd -hZg -dhW -aiD -"} -(84,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aap -qXN -gcK -wZn -wZn -xGU -pKB -evL -wZn -hRW -aNP -jtK -xWu -wod -bkP -tTj -cKh -sRk -aNP -tWU -xFP -ili -auq -kAI -wAH -wMK -xaf -yjT -auq -wlW -jsC -xTa -qTp -acd -xod -xTa -jsC -noT -alK -bjD -bjD -aXU -xVS -bjD -bjD -alK -nga -haA -gjr -nKF -oIH -ckU -haA -gjr -nKF -xMD -nKF -upq -wsU -asc -aRn -jXN -uxz -aRn -asc -dLI -llN -asC -bnr -asC -aRv -xqY -mSK -aRv -asC -bnr -asC -cvw -srk -ioM -kDV -pdE -aqN -aqN -aqN -aqN -aqN -aqN -aqN -aqN -aqN -aqN -aqN -aqN -rqi -ioM -kDV -bUj -fPl -anw -anw -aSa -anw -anw -qNm -kDV -ioM -wsr -anw -anw -aSa -anw -anw -nSN -bUj -olp -bUj -iFv -wsr -anw -anw -anw -wsr -iFv -bUj -olp -bUj -iOE -anw -ylo -aqs -wVh -kXr -oER -oER -hkC -lWL -wVh -wVh -oSX -hkC -oER -oER -oER -wVh -aqs -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aqL -aqL -aqL -bdP -bdP -bdR -bdP -bdP -vhZ -aKm -aKi -bdU -bdU -bel -aKi -aKi -aKi -gtX -aKi -aKi -aKi -aKi -aKi -var -aKn -aJZ -aJZ -bdP -bdQ -bdQ -bdP -bdP -bdP -aqL -aqL -aqL -aSa -aSa -aSa -aSa -aQz -pjJ -yiu -yiu -aQC -nJf -wAd -sLP -sLP -sLP -sLP -sLP -sLP -sLP -sLP -sLP -bRF -sLP -sLP -sLP -wAd -sLP -sLP -sLP -sLP -bRF -sLP -sLP -sLP -sLP -sLP -hZg -aEy -aEy -aEy -"} -(85,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaE -aaE -aap -iwl -wZn -wZn -wZn -mMn -wZn -kpQ -xKB -gBS -aNP -xYk -ckr -gsK -lJg -gsK -gsK -tJp -aPO -bVu -xFP -iTK -auq -auq -auq -auq -auq -auq -auq -iNd -iKC -xTa -bIZ -acA -xod -xTa -jsC -pio -alI -cKi -aXU -wmf -xVS -aXU -gwY -alI -ghU -haA -mZF -vhG -arx -arx -xtK -bnf -arx -arx -arx -arx -asc -asc -jXN -jXN -gdP -jXN -asc -asc -asc -asC -ovk -ivd -xDF -xqY -fcL -xPb -ivd -dcP -asC -asC -srk -ioM -kDV -ufs -aqN -eiV -xOn -xOn -tZB -xOn -xOn -tZB -xOn -xOn -wbh -aqN -qvO -ioM -kDV -bUj -wsr -rqz -anw -anw -anw -olp -bUj -kDV -ioM -bUj -olp -anw -anw -anw -vol -kHC -pib -pib -pib -qzr -oSQ -ydy -waI -ydy -sNB -sUj -pib -pib -pib -kHC -anw -aqs -aqs -wVh -kXr -oER -oER -hkC -oEH -uRK -uRK -cGu -hkC -oER -oER -oER -wVh -aqs -ylo -ylo -ylo -ylo -ylo -ylo -aqL -aqL -aqL -bdP -bdP -bdP -bdP -bdQ -bdQ -bdR -bdQ -vhZ -aKm -aKi -aKi -aKi -aKi -aKi -aKi -gtX -aKi -aKi -aKi -vaI -aKi -aKi -bee -lKy -aJZ -bdP -bdP -bdQ -bdP -aJZ -beg -bdP -bdQ -aqL -aqL -aqL -ylo -ylo -aQz -yiu -aQO -bgx -aQz -aEy -aEy -aEy -dhW -dhW -dhW -dhW -dhW -dhW -dhW -dhW -aEy -aEy -aEy -aEy -aEy -aEy -aEy -aEy -aEy -aEy -dhW -dhW -dhW -dhW -dhW -dhW -aEy -ylo -ylo -"} -(86,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaE -sAc -kTI -uUL -wZn -wZn -dZm -rbA -iOk -kpQ -wZn -pbT -aNP -mBg -nAB -vuj -bkP -bVp -whH -dDM -aPO -jfT -xFP -xJA -auq -ofx -moB -ohg -uvU -hFU -auq -wlW -jsC -xTa -luT -aev -xod -xTa -jsC -noT -alK -bhx -bhx -aXU -xVS -bhx -bhx -alK -nga -haA -mZF -arx -arx -ozD -gKc -wqT -kLv -rFg -npq -arx -jJw -jXN -cxA -xNv -gdP -jXN -kXy -chj -asc -xJj -xDF -xqY -xqY -xqY -fcL -xqY -xqY -xPb -ots -asC -cxD -ioM -kDV -pdE -aqN -xVd -lgO -lgO -lgO -lgO -lgO -lgO -lgO -lgO -fma -aqN -qvO -ioM -kDV -bUj -bUj -bUj -bUj -hjv -bUj -bUj -bUj -kDV -ioM -bUj -bUj -bUj -xbq -bUj -bUj -bUj -ioM -ioM -ioM -tEj -kHC -kHC -kHC -kHC -kHC -sbc -ioM -ioM -ioM -bUj -bUj -xLn -tFF -wVh -kXr -oER -wVh -aqs -aZa -aZa -aZa -aZa -aqs -wVh -oER -oER -wVh -aqs -ylo -ylo -ylo -ylo -aqL -aqL -aqL -bdS -aJZ -aJZ -aJZ -bdP -bdQ -bdQ -bdQ -iQH -bdQ -bdQ -bdy -nMk -aKm -aKi -aKi -aKi -aKi -gtX -aKi -bdU -aKi -aKi -bel -aKi -bee -beo -aJZ -bdS -bdP -bdR -aJZ -bdZ -aJZ -bdP -bdQ -bdQ -bdQ -aqL -aqL -aqL -aQz -yiu -aQW -aQz -aQz -aSa -aSa -aEy -aiD -aiD -aiD -aiD -aiD -aiD -aiD -aiD -aEy -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aEy -aiD -aiD -aiD -aiD -aiD -aiD -aEy -ylo -ylo -"} -(87,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaE -cWB -jNV -uUL -wZn -wZn -pto -abi -gCY -kpQ -xKB -gBS -aNP -aNP -aNP -aNP -aNP -rta -pAv -rzh -vaA -mki -nAF -vjT -bkM -jfT -tgm -jXr -dzo -mJc -auq -wlW -jsC -xTa -noT -dAi -xod -xTa -jsC -noT -alK -axV -bHR -aXU -xVS -axV -axV -alK -nga -haA -mZF -arx -hvy -iRa -xDO -lwC -ozD -ozD -ozD -arx -ePF -jXN -pBZ -qDb -igh -xNv -jXN -jXN -gHU -lZU -cOM -qhj -dth -ixz -uyR -mYs -dth -cOM -gTZ -aRv -srk -ioM -kDV -pdE -aqN -xVd -lTT -lTT -lgO -lTT -lTT -lgO -lTT -lTT -fma -aqN -qvO -ioM -kDV -ioM -ioM -ioM -ioM -kDV -ioM -ioM -ioM -kDV -ioM -ioM -wBq -tKB -wBq -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -hkC -oER -oER -kXr -oER -wVh -aZa -ylo -ylo -ylo -ylo -aZa -wVh -oER -oER -wVh -aqs -ylo -ylo -ylo -aqL -aqL -bdS -vKH -aKh -aKh -bcV -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -eOZ -aKi -aKi -aKi -aKi -flB -rwo -rwo -rwo -rwo -rwo -yfO -eZQ -jqz -jqz -bVX -fwq -pgO -jqz -jqz -jqz -jqz -fpI -bdQ -bdQ -bdQ -bdQ -aYR -aQC -yiu -baz -aQz -ylo -aSa -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(88,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaE -eTe -mMn -uUL -wZn -xKB -pGJ -abi -dzA -kpQ -wZn -rEj -aNP -jtK -xWu -gyE -bkP -jKG -pAv -cdd -aPO -paF -ejn -mki -dph -mki -xDL -tas -rmp -iiq -auq -wlW -jsC -xTa -noT -tCV -xod -xTa -jsC -noT -alK -bjD -huQ -aXU -xVS -bjD -bjD -alK -nga -haA -mZF -arx -wFF -vqQ -gKc -euM -hkw -rID -ozD -bnf -tiV -jXN -tAf -sDQ -msI -xfy -gRU -jXN -gHU -lZU -hVZ -gUo -dth -xqY -sYU -qhj -dth -cOM -gTZ -aRv -srk -ioM -kDV -pdE -aqN -xVd -lgO -lgO -lgO -lgO -lgO -lgO -lgO -lgO -fma -aqN -qvO -ioM -hvS -ePs -ePs -ePs -ePs -xXy -ePs -ePs -ePs -xXy -vKC -lZn -lZn -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -vKC -ePs -ePs -eYg -gCG -gCG -vjw -oER -wVh -aZa -ylo -ylo -ylo -ylo -aZa -wVh -oER -oER -wVh -aqs -ylo -aqL -aqL -aqL -vKH -aKh -aKl -jIm -mti -aKo -bdJ -bdQ -iQH -bdP -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdW -bdU -aKp -aKm -aKi -gtX -aKi -aKi -aKi -aKi -bdU -gXN -yle -aJZ -aJZ -aKK -aKK -aKK -aKK -aKK -xsU -aJZ -fip -kCm -bdP -bdQ -bdQ -bdQ -aQC -eLW -aQC -aQz -ylo -aSa -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(89,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaE -kaZ -mMn -uUL -wZn -jNM -eVM -abi -lDO -kpQ -xKB -gBS -aNP -xYk -ckr -gsK -fcv -gsK -gsK -jZT -aPO -bVu -xFP -kpG -bkM -paF -iKQ -jXr -iKQ -mCh -auq -nLy -jsC -xTa -noT -sMh -xod -xTa -jsC -noT -arL -arL -arL -arL -jow -arL -arL -alI -nga -haA -mZF -arx -nek -dQi -pcP -qtg -xLE -vKK -qtg -xGh -xfy -xfy -xfy -iSK -eMg -jXN -jXN -ulS -gHU -lZU -xqY -xqY -xqY -caK -fcL -xqY -xqY -xqY -jYr -asC -srk -ioM -kDV -pdE -aqN -pFG -lgO -xAj -lgO -lTT -lTT -lgO -lTT -lTT -fma -aqN -ddv -sSs -kDV -ckB -leU -leU -leU -leU -leU -leU -sSs -ioM -fpy -kDw -ryH -ryH -ryH -ryH -ryH -ryH -ryH -nfr -ryH -ryH -ryH -ryH -ryH -ryH -ryH -ryH -xvd -ioM -kDV -bUj -bUj -hkC -tFF -wVh -gMt -wVh -wVh -aZa -ylo -ylo -ylo -ylo -aZa -sHh -oER -oER -sHh -aqs -aqL -aqL -bdQ -bdP -aKk -aKi -var -aKi -gtX -aKi -tfu -aKh -aKh -wiJ -aKh -beG -bdQ -bdQ -bdQ -bcD -bdX -aKi -aKn -aKk -aKi -gtX -aKi -aKi -aKi -aKi -bdU -eIL -bea -beg -aJZ -aKK -rDm -fOA -rDm -aKK -bdS -bcN -bei -fip -eNM -kCm -bdP -bdR -bdR -bdR -aYR -aqL -ylo -aSa -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(90,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaE -cWB -jNV -uUL -wZn -wZn -fRp -abi -oCu -kpQ -wZn -hGt -aNP -mBg -nAB -vuj -bkP -lCY -wxY -qlN -aNP -jMZ -xFP -cFR -auq -eyP -hgH -dkL -hgH -ovf -auq -wlW -jsC -xTa -noT -dAi -xod -xTa -jsC -noT -arL -oMk -cyb -vHz -uIr -laU -arL -wWU -cxr -haA -mZF -arx -wgd -mKU -gKc -arx -ksg -arx -arx -arx -asc -asc -asc -asc -asc -daz -dYS -lHM -asc -pbP -cOM -oCS -dth -xqY -sYU -oCS -dth -cOM -hKa -aRv -srk -ioM -kDV -pdE -aqN -wtG -uVf -lBu -pbZ -hKl -mFf -eZw -mFf -mFf -kRW -aqN -aqO -bnM -tQU -aqO -arf -arf -arf -arf -arf -arf -qvO -ioM -fpy -nFI -oqK -arp -arp -arp -arp -arp -arp -arp -arp -arp -arp -arp -arp -arp -arp -oqK -hOg -ioM -kDV -bUj -anw -aqs -aqs -aqs -aqs -aqs -aqs -aqs -aSa -aSa -aSa -aSa -aqs -czt -czt -czt -shh -gjX -aqL -bdQ -bdQ -rUq -upr -rwo -iTW -geN -uXk -sTq -hdB -rwo -rwo -rwo -rwo -wlY -uBH -fwq -fwq -grD -jba -mrb -nwj -upr -rwo -fYL -aKi -aKi -aKi -aKp -aKj -tQk -aJZ -aJZ -aJZ -aKK -ioz -qZI -qZI -aKK -bdS -beo -aJZ -aJZ -aJZ -rTj -bdP -bdQ -aZm -aJZ -bdP -aqL -aqL -aSa -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(91,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaE -jMF -dnO -uUL -wZn -xKB -pGJ -abi -wYM -kpQ -xKB -gBS -aNP -aNP -aNP -aNP -aNP -aNP -aNP -aNP -aNP -auq -sJJ -auq -auq -auq -auq -auq -auq -auq -auq -cVY -jsC -xTa -qTp -acd -xoL -xTa -jsC -noT -arL -oMk -eKh -gRh -uIr -gRh -gKW -tSR -tSR -haA -oez -ary -ary -ary -vgc -ary -jnf -pOX -eyK -lsu -nAl -xlp -mRw -asc -asc -asc -asc -asc -asc -uOg -cOM -oCS -dth -xqY -sYU -gUo -dth -cOM -gTZ -aRv -srk -ioM -kDV -pdE -aqN -aqN -aqN -vjy -aqN -aqN -aqN -aqO -aqO -aqO -aqO -aqO -aqO -rjt -gnp -cCH -aSp -tKp -epn -nFE -vLU -arf -qvO -wBq -fpy -nFI -arp -arp -ahB -aTG -ahB -qoq -arp -vUM -sUp -arp -jOQ -qLF -fDd -eYL -arp -arp -hOg -ioM -kDV -bUj -aqK -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aqs -tpc -oER -oER -wVh -agZ -bdQ -bdQ -bdP -rTj -bdy -kHP -aKo -aKl -aKi -aKi -aKi -aKi -aKi -bdz -bdM -gtX -aKo -aKh -aKh -bdX -bdU -aKp -tQk -aKk -bel -gtX -aKi -aKi -aKp -bdK -aJZ -aKs -aKs -aKs -aKs -aKK -aKK -uzv -aKK -aKK -aKs -aKs -aKs -aKs -bdP -rTj -bdP -bdQ -bdQ -bdZ -beg -bdP -aqL -aqL -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(92,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aaE -aaE -aap -uUL -wZn -fUZ -bHI -abi -wYM -kpQ -wZn -cWb -abA -uKs -vtM -vtM -mOl -vtM -uKs -vtM -xps -gUz -pYn -quC -abA -ciq -rUk -rnh -rUk -tos -adb -wlW -jsC -xTa -lEe -acA -pTh -xTa -jsC -noT -arL -oMk -eKh -gRh -fBm -gRh -gRh -tSR -tSR -haA -mZF -ary -jMj -vAC -dJr -ary -ary -ary -ary -ary -ary -ary -jnf -bLH -ozD -sfp -elL -elL -arx -esN -qWs -xqY -tnV -xqY -nUc -xqY -xqY -xqY -jYr -asC -srk -ioM -kDV -pdE -aqN -qkT -egw -ekV -qpS -wuT -aqN -vQw -nUl -clk -qQN -pdm -aSm -ftw -ikH -auI -cSd -eoJ -jna -qwu -jYO -arf -qvO -ioM -kDV -nFI -arp -bnY -cMk -fOj -gky -ahB -arp -fQe -qSN -arp -qtG -cJA -vGf -iHv -gRZ -arp -hOg -ioM -kDV -bUj -aqK -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aqs -lja -oER -nZz -wVh -agZ -bdQ -bdQ -bdP -eiG -gqV -aKk -aKi -idU -aKi -bdU -aKi -aKi -bdz -bdC -bdL -gtX -aKi -jlL -aKi -ezR -bdU -beb -bcL -aKk -aKi -gtX -aKi -aKi -aKn -aJZ -aKs -aKs -tGU -tGU -oAQ -aKK -uBZ -lVj -gTR -aKK -hSW -tGU -tGU -aKs -aKs -rTj -bdR -bdQ -bdQ -bdQ -bdQ -bdP -bdP -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(93,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aap -uUL -wZn -wZn -kvx -bZR -eva -keh -pKB -pKB -nHe -yaw -yaw -yaw -yaw -yaw -oDk -yaw -yaw -yaw -drZ -yaw -wtR -cxI -cxI -cxI -elo -kzr -adb -xpC -jsC -xTa -luT -aev -qny -xTa -jsC -noT -arL -oMk -eKh -gRh -gRh -gRh -arL -dqb -ckU -haA -mZF -ary -lNZ -wQh -dJr -rtw -nVS -nVS -nVS -nVS -rtw -ary -ary -ary -sQo -ozD -ozD -wqT -arx -lZU -cOM -pCc -xLT -tnV -sYU -gUo -dth -cOM -quA -aRv -srk -ioM -kDV -pdE -aqN -hOx -mPK -ekV -izp -iya -aqN -eGz -igR -mXQ -rZm -jAA -aSm -rDs -gnp -mSP -aSp -vLt -vyC -uno -twQ -arf -qvO -ioM -kDV -nFI -arp -aUr -jSM -tNr -mLf -tYF -bye -dOv -huA -arr -rPp -jxT -opv -jxT -nel -arp -hOg -ioM -kDV -bUj -aqK -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aQz -aQC -eLW -aQC -aQC -aYR -bdQ -bdQ -bdQ -eiG -aJZ -aKk -aKi -bdU -bdz -bdF -bdF -bdF -bdC -bdD -bdL -rpZ -aKi -aKi -aKi -aKi -aKi -bdU -bee -bcZ -aKi -gtX -aKi -aKi -bdb -aJZ -aKs -tGU -hnI -dWu -uNc -wGX -sdj -eNX -sdj -wGX -uNc -ssl -hnI -tGU -aKs -usS -iEH -bdP -bdQ -bdQ -bdQ -bdQ -bdP -aZm -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(94,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aap -uUL -wZn -wZn -wZn -pQk -pKB -lhQ -wZn -pre -abA -xDw -gwk -gwk -jwX -gwk -jZB -jwX -gwk -gwk -jwX -ftO -abA -sno -kNE -kNE -doF -wJS -jbN -pZh -jsC -xTa -sFL -swO -hyK -xTa -jsC -pio -arL -arL -gRh -dFV -qVD -gRh -arL -arL -ghU -haA -mZF -ary -rwf -lkY -tfw -jXz -jXz -jXz -jXz -jXz -jXz -jXz -jXz -xNJ -qtg -xHa -jUj -wqT -arx -lZU -cOM -gUo -dth -hZQ -uyR -qhj -dth -cOM -gTZ -aRv -srk -ioM -kDV -pdE -aqN -kjB -dKB -ekV -dKB -wUo -aqN -hwK -mXQ -kzU -lRt -sUH -nRB -auI -dlD -xTk -arf -arf -arf -arf -arf -arf -qvO -ioM -kDV -ycH -arp -rSG -slg -mKY -eYY -ahB -arr -mvw -kBy -arr -arr -jxT -sqh -ixE -tGo -arp -bIW -ioM -kDV -bUj -anw -anw -anw -anw -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aQz -aQO -csp -bcx -aQC -bdQ -bdQ -bdQ -bdQ -eiG -aJZ -aKk -bdz -bdF -bdC -nbT -bdD -bdD -bdD -bdD -bcT -vnc -aKi -aKi -aKi -bel -aKi -aKi -bee -aKk -aKi -gtX -aKi -aKi -aKo -bdJ -aKs -aKs -tGU -tGU -oAQ -aKK -xug -jwW -moP -aKK -hSW -tGU -tGU -aKs -aKs -rTj -bdP -bdP -aJZ -gqV -bdS -bdQ -bdQ -bdR -bdQ -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(95,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aap -hWj -lmJ -lmJ -byK -kpQ -pre -lmJ -lmJ -cSq -abA -yiF -wBr -rNi -fHN -wBr -rNi -fHN -wBr -rNi -fHN -sxF -abA -mtS -kNE -kNE -doF -kNE -cmQ -xTa -jsC -xTa -xTa -xTa -xTa -xTa -jsC -noT -uWJ -dba -gRh -uHQ -dFV -gRh -qbv -uWJ -nga -haA -mZF -ary -dVU -wQh -wQh -wQh -wQh -wQh -wQh -wQh -wQh -wQh -cER -ary -lzM -gKc -txv -hvy -arx -xKo -lhf -xqY -xqY -xqY -fcL -xqY -xqY -hcc -xXW -asC -cxD -ioM -kDV -pdE -aqN -sFr -wTl -meP -ofm -ext -aqN -eGz -goi -goi -goi -goi -aqO -mux -gnp -buv -aSp -tKp -nvu -nFE -vLU -arf -qvO -ioM -kDV -nFI -arp -ahB -xav -vye -sbd -ahB -arr -oPl -cvy -dOv -tvE -dOv -oIw -jxT -umS -arp -hOg -ioM -kDV -bUj -bUj -xbq -eLm -anw -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aQz -aPb -yiu -aQO -aQC -bdQ -bdQ -bep -bei -eiG -bdx -aKl -bex -bdD -bdD -bdD -bdD -bdD -bdD -bdD -beB -eAD -aKi -aKi -aKi -aKi -aKi -ezR -aKo -aKl -aKi -gtX -aKi -idU -aKi -aKo -bcL -aKs -aKs -aKs -aKs -aKK -cGP -jwW -daF -aKK -aKs -aKs -aKs -aKs -bdP -rTj -beo -aJZ -aJZ -aJZ -bdP -bdR -bdR -bdP -bdP -bdP -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(96,1,1) = {" -ylo -aab -aab -acL -acL -acL -acL -aab -aab -acL -acL -acL -acL -aab -aap -abi -btN -btN -abi -ntH -abi -btN -btN -abi -abA -alV -dfr -abA -alV -dfr -abA -alV -dfr -abA -alV -dfr -abA -fUu -kNE -kNE -kEt -cxI -cxI -hRc -mEr -hRc -hRc -hRc -hRc -hRc -iKC -noT -uWJ -uex -nda -qJc -djp -nda -tKX -uWJ -nga -haA -mZF -ary -ary -oKz -rLm -nVS -nVS -kyG -rlW -nVS -nVS -wQh -fei -ary -arx -xtK -arx -arx -arx -asC -fGu -xWo -lhf -xqY -fcL -hcc -xWo -oXt -asC -asC -srk -ioM -kDV -pdE -aqN -sFr -dKB -ekV -vHb -taa -aqN -eGz -goi -goi -goi -mSP -bnJ -jvA -ikH -auI -cSd -eoJ -jna -edE -gHL -arf -qvO -ioM -kDV -nFI -arp -ahB -ahB -aTH -ahB -ahB -arr -vUv -kBy -jxT -jxT -jxT -cJA -efq -naW -arp -hOg -ioM -bZC -ePs -ivw -ioM -bUj -anw -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aQz -aQC -eLW -aQC -aQC -bdQ -bdQ -bdQ -aJZ -oVF -cbW -bdz -bdC -bdD -bdD -bdD -bdD -bdD -bdD -bdD -bdO -wbf -bel -bdU -vaI -wpV -bcI -aKi -aKi -aKi -aKi -gtX -aKi -aKi -aKi -bel -bee -aJZ -aJZ -aJZ -aJZ -aKK -fLJ -jwW -sMG -aKK -bem -aJZ -bdS -bdS -aJZ -fip -jqz -eNM -bVX -jqz -fwq -pgO -fwq -fwq -jqz -jqz -kCm -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(97,1,1) = {" -aab -aab -fCW -dqG -hmR -hmR -dqG -hmR -qhB -lhu -lhu -lhu -lhu -lhu -blK -vtA -vtA -vtA -cnn -oSS -oer -vtA -vtA -vtA -blB -gbq -gbq -gbq -gbq -gbq -gbq -gbq -gbq -gbq -gbq -gbq -adb -cJe -kNE -tKG -doF -udp -jbN -uRa -uRa -uRa -wdm -lfk -erM -xTa -jsC -noT -arL -arL -arL -arL -arL -arL -arL -arL -nga -haA -mZF -vhG -ary -ary -ary -twW -twW -ary -ary -twW -twW -qaK -ary -ary -sEU -kDV -pRj -qsk -wDq -asC -bnr -asC -aRv -xqY -mSK -aRv -asC -bnr -asC -rqz -srk -ioM -kDV -pdE -aqN -iTh -jZO -ekV -hzC -mOa -aqN -nPx -uNZ -ozd -xtx -nAp -aqO -pHE -gnp -mSP -aSp -vLt -vyC -csz -ygp -arf -qvO -ioM -kDV -nFI -arp -arp -arp -arp -arp -arp -arp -cwR -kBy -nlH -arr -fjT -fjT -fjT -wGg -arp -hOg -ioM -ioM -ioM -kDV -ioM -bUj -aqK -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aqL -aqL -aJZ -aJZ -bdP -bdR -bdR -bdQ -bdP -aJZ -eii -bdX -bdA -bdD -bdD -bdD -mtG -bdD -bdD -bey -bdD -bdL -gtX -aKi -aKp -aKj -aKm -aKi -aKi -bdU -aKi -aKi -gtX -aKi -aKi -aKi -aKi -aKn -bdS -aJZ -bdZ -aJZ -aKK -vre -fwK -txq -aKK -aJZ -bdZ -aJZ -beg -aJZ -aJZ -gqV -aJZ -aJZ -bdP -bdP -bdR -bdP -aJZ -beo -aJZ -eiG -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(98,1,1) = {" -aab -htO -hmR -sfY -nKm -nKm -sfY -hmR -cTG -sFS -gPB -sFS -sFS -sFS -sFS -sFS -sFS -sFS -sFS -oSS -sFS -sFS -sFS -sFS -xnl -sFS -sFS -sFS -sFS -dYq -sFS -sFS -sFS -sFS -sFS -sFS -uvZ -kNE -tKG -tKG -doF -uqA -adb -adb -adr -adr -adb -adb -wlW -xTa -jsC -lfg -lwZ -lwZ -sef -lwZ -lwZ -sef -lwZ -lwZ -lBW -jsC -lfg -lwZ -uLs -uQx -uLs -uLs -uLs -klj -uLs -uLs -efW -ioM -jPN -uLs -efW -kDV -oUr -uLs -uLs -uLs -uLs -uQx -efW -ioM -kDV -oUr -uQx -uLs -uLs -uLs -efW -ioM -kDV -pdE -aqN -aqN -aqN -fUO -aqN -aqN -aqN -aqO -aqO -aqO -aqO -aqO -aqO -eGz -gnp -jYZ -arf -arf -arf -arf -arf -arf -qvO -ioM -kDV -nFI -arp -ahB -ahB -aTG -ahB -ahB -arr -oPl -kBy -iHv -arr -arr -arp -arp -arp -arp -wlb -ryH -ryH -xvd -kDV -ioM -bUj -aqK -ylo -ylo -ylo -ylo -ylo -ylo -aqL -aqL -eMB -hnR -jqz -fwq -pgO -pvA -bdQ -bdP -aJZ -fOd -aKi -bdA -nbT -bdD -bdD -bdD -bdD -bdD -bdD -bdO -bdI -rpZ -aKp -bdK -aJZ -xRq -aKj -mSo -aKi -aKi -aKi -gtX -aKi -aKi -aKi -aKp -oZW -aKs -aKs -aKs -aKs -aKK -cll -jwW -rJS -aKK -aKs -aKs -aKs -aKs -aJZ -aJZ -xsU -lKy -aJZ -bdQ -bdQ -bdQ -bdS -aJZ -bdS -aJZ -suf -bdS -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(99,1,1) = {" -aab -vUS -vop -lhu -lZG -lhu -lhu -lhu -sqV -gPB -eCN -sFS -sFS -sFS -sFS -sFS -sFS -gPB -gPB -mmS -qIf -sFS -sFS -sFS -sFS -sFS -sFS -sFS -sFS -sFS -sFS -sFS -sFS -sFS -sFS -sFS -tKG -tKG -tKG -kNE -doF -wJS -adb -gRq -ciq -ciq -dHV -adb -wlW -xTa -jsC -xTa -xTa -xTa -xTa -xTa -xTa -xTa -xTa -xTa -xTa -jsC -xTa -xTa -ioM -wBq -wBq -wBq -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -kDV -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -kDV -ioM -ioM -ioM -ioM -ioM -ioM -ioM -kDV -pdE -aqN -dnt -egw -ekV -aqN -ldM -qQN -dFm -gDI -dNl -aqO -hCL -rUt -eGz -gnp -buv -aSp -tKp -epn -nFE -vLU -arf -qvO -ioM -kDV -nFI -arp -ahB -xOC -dlv -gky -ahB -arr -oPl -cvy -iCs -jbX -jbX -hGL -jxT -jxT -arp -arr -arr -arp -hOg -kDV -ioM -bUj -aqK -ylo -ylo -ylo -ylo -ylo -ylo -aqL -bdP -eiG -aJZ -aJZ -bdP -bdQ -tAF -pgO -fwq -jqz -msP -aKi -bdA -bdD -bdD -bdD -bdD -bez -beA -bdD -bdL -aKi -rRR -keE -aJZ -bdQ -aJZ -aJZ -bdY -aKj -aKm -aKi -gtX -aKi -aKi -aKi -aKn -aKs -aKs -tGU -tGU -oAQ -aKK -oFu -jwW -sIB -aKK -hSW -tGU -tGU -aKs -aKs -bdP -bdP -bdP -bdP -bdQ -bdQ -bdP -bdS -smP -aJZ -beg -eiG -aJZ -bdS -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(100,1,1) = {" -aab -ycv -wWR -pDz -pDz -urM -gfo -pDz -iCh -sFS -rhz -oeX -oeX -oeX -fvG -fvG -fvG -fvG -oeX -mNc -igC -oeX -oeX -oeX -oeX -oeX -oeX -igC -oeX -oeX -oeX -oeX -oeX -oPK -fvG -fvG -sHU -cxI -cxI -cxI -qON -cxI -qjU -cvS -ncB -omU -kqg -adb -wlW -xTa -jsC -xTa -xTa -xTa -xTa -xTa -xTa -xTa -xTa -xTa -xTa -jsC -xTa -xTa -ioM -ioM -ioM -wBq -fJM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -kDV -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -kDV -ioM -ioM -ioM -ioM -ioM -ioM -ioM -kDV -pdE -aqN -xwL -tRX -ekV -aqN -oSl -goi -goi -goi -jAA -aqO -hGc -pcm -eGz -ikH -auI -cSd -eoJ -jna -qwu -jYO -arf -qvO -ioM -kDV -nFI -arp -aNk -slg -dpb -eYY -ahB -arr -cYV -kBy -cAQ -jxT -jxT -xMZ -jbX -jxT -hgt -kio -mNF -arp -hOg -kDV -ioM -bUj -anw -aSa -aSa -aSa -aSa -aSa -aqL -aqL -bdP -diD -lKy -aJZ -bdQ -bdQ -bdR -bdP -bdP -aJZ -oQF -aKi -bdB -bdE -bey -bdD -bdD -bdD -bdD -bdO -bdI -aKi -pXx -aJZ -bdQ -bdQ -bdR -bdQ -smP -aJZ -aKk -aKi -gtX -aKi -aKi -aKi -aKn -aKs -tGU -hnI -dWu -uNc -wGX -sdj -hNm -sdj -wGX -uNc -ssl -hnI -tGU -aKs -bdR -bdR -bdR -bdQ -bdQ -bdP -tNp -jqz -jqz -eNM -jqz -jmU -bVX -kCm -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(101,1,1) = {" -aab -kyt -hmR -dqG -hmR -hmR -dqG -hmR -cTG -sFS -oSS -sFS -sFS -sFS -gPB -sFS -sFS -sFS -sFS -rhz -uxX -sFS -sFS -sFS -wsk -sFS -sFS -oSS -sFS -sFS -sFS -sFS -gPB -mmS -sFS -sFS -uvZ -kNE -kNE -kNE -kNE -udp -adb -jHt -cgL -gNQ -hoG -adb -xpC -xTa -jsC -xTa -tpa -flo -flo -flo -ahv -jRI -jCk -dAi -jCk -drX -flo -flo -xKA -ahy -kXo -wsr -olp -wsr -tNN -xKA -xKA -xKA -ahy -kXo -wsr -lXK -wsr -tNN -xKA -xKA -xKA -ahy -kXo -wsr -lXK -wsr -tNN -xKA -xKA -xKA -ahy -ioM -kDV -ufs -aqN -baV -vWF -pBS -aqN -rTW -goi -lti -rPL -sul -aqO -hCL -pcm -eGz -gnp -mSP -aSp -vLt -vyC -uno -cNr -arf -qvO -ioM -kDV -nFI -arp -aUs -eyW -cXg -jTQ -tYF -byn -dOv -kxD -nlH -arr -arr -arp -arp -juc -jbX -jxT -iHv -arp -dmF -fpy -ioM -bUj -anw -aSa -aSa -aSa -aSa -aSa -aqL -bdQ -aJZ -eiG -nFc -bdP -bdQ -bdR -bdR -bcD -bdJ -aJZ -fOd -bdU -aKi -bdA -bdD -bdD -bdD -nbT -bdO -bdI -aKi -idU -pXx -bdQ -bdQ -bdP -oUJ -bdQ -bdQ -aJZ -aKk -aKi -rpZ -aKi -aKi -aKi -aKn -aKs -aKs -tGU -tGU -oAQ -aKK -xug -jwW -tPd -aKK -hSW -tGU -tGU -aKs -aKs -bdP -bdP -bdQ -bdQ -bdQ -bdP -beo -bdZ -aJZ -lKy -gqV -aJZ -xsU -dzV -bdQ -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(102,1,1) = {" -aab -aab -kEV -sfY -hmR -hmR -sfY -hmR -cTG -sFS -oSS -raN -pDz -pDz -blK -maT -dgo -maT -qmS -oSS -nEb -maT -jhX -udE -blB -maT -gBy -uoW -gBy -jAg -qmS -sFS -sFS -oSS -sFS -iLm -adb -hJA -hJA -hJA -hJA -sDM -adb -adb -adr -hgi -adb -adb -wlW -fzn -jsC -xTa -xTa -xTa -xTa -xTa -xTa -xTa -xTa -xTa -xTa -jsC -xTa -xTa -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -fpy -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -kDV -ioM -ioM -ioM -ioM -ioM -ioM -ioM -kDV -pdE -aqN -lfO -hBv -ekV -aqN -moe -goi -cBo -wAb -eWB -aqO -hBu -qEQ -fVe -mCB -rZf -arh -arh -arh -arh -arh -arh -qvO -ioM -kDV -nFI -arp -bnY -ahB -aTH -ahB -qoq -arp -kFk -kBy -iHv -arr -mdP -jVV -aGx -oPl -jxT -poI -jbX -flO -wBq -kDV -ioM -bUj -aqK -ylo -ylo -ylo -ylo -aqL -aqL -bdQ -bdR -upg -bdQ -bdQ -bdQ -bdQ -bdQ -aKk -aKo -bdJ -uRA -aKm -bdU -bdA -bdD -bdD -bdO -bdG -bdI -aKi -aKp -aKj -wwT -twS -bdQ -bdQ -bdQ -bdQ -bdQ -bdx -aKl -aKi -gtX -aKi -aKi -aKi -aKn -aJZ -aKs -aKs -aKs -aKs -aKK -cGP -jwW -daF -aKK -aKs -aKs -aKs -aKs -bdP -bdP -bdP -bdQ -bdQ -bdR -bdP -aJZ -aJZ -beg -aJZ -bdS -bdZ -aJZ -eiG -bdQ -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(103,1,1) = {" -ylo -aad -ajD -ajD -ajD -ajD -ajD -ajD -jTu -fMM -nYl -wBH -eoq -egW -abg -abg -abg -abg -aae -lTO -aae -abg -abg -blM -blB -blB -bmS -bmS -bmS -blB -blB -qoX -sFS -oSS -qoX -blB -adb -sNj -sNj -sNj -sNj -sNj -adb -jIx -qtd -qtd -qtd -baJ -wlW -xTa -uZJ -hRc -hRc -ojH -hRc -hRc -hRc -hRc -ojH -hRc -hRc -mEr -hRc -hRc -ePs -ePs -ePs -ePs -vKC -ePs -ePs -ePs -ePs -vKC -ePs -ePs -ePs -xXy -vKC -ePs -ePs -ePs -ePs -ePs -ePs -ePs -xXy -ePs -ePs -ePs -ePs -vKC -lZn -lZn -nGK -pdE -aqN -aqN -aqN -daJ -aqN -qDV -goi -nsc -auI -ilD -kFr -ilD -auI -ilD -dlD -fBS -arh -tnP -syI -fLX -wKt -arh -rqi -ioM -kDV -nFI -arp -arp -arp -arp -arp -arp -arp -iMy -kBy -jxT -lQx -jxT -krS -vBA -oPl -jxT -qqU -jxT -arp -wsr -kDV -ioM -bUj -aqK -ylo -ylo -ylo -ylo -aqL -bdR -bdR -bdR -kuC -bdQ -bdQ -bdQ -bdQ -bdQ -aKk -jlL -aKo -kDt -bdy -aKm -bdB -bdG -bdG -bdI -aKi -aKi -bdU -aKo -bdJ -eiG -bdQ -bdQ -bdQ -bdQ -bdQ -bev -aKl -aKi -aKi -gtX -aKi -aKi -aKi -aKn -bdS -lKy -aJZ -aJZ -beo -aKK -cll -jwW -rJS -aKK -bdP -bdS -hKH -bdP -bdP -iQH -bdP -bdQ -aKt -aKu -aKu -aKu -aKu -aKu -aKt -aJZ -aJZ -aJZ -rTj -bdQ -bdQ -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(104,1,1) = {" -aad -aad -xcc -dYe -jEx -iis -gFY -ajD -fvk -fMM -nYl -wBH -eoq -eoq -abg -lno -fhL -ufD -pcc -lak -oOa -ykt -cbA -blM -eck -rmW -vtA -vtA -vtA -vtA -cnn -sFS -sFS -oSS -sFS -tKR -ciq -ciq -ciq -ciq -ciq -ciq -djf -uEE -ciq -ciq -ciq -qOb -pZh -xTa -rOp -xTa -uig -gpU -irq -irq -eop -xTa -jsC -uig -irq -uuy -irq -irq -kKi -ucs -ucs -rGe -kDV -hYd -ucs -ucs -rGe -geB -jpi -uwp -uwp -usj -fpy -jpi -uwp -uwp -uwp -wZj -uwp -uwp -xDE -uwp -wZj -uwp -uwp -xuD -usj -wBq -kDV -pdE -aqO -kEo -vwY -gnp -aqO -rww -pKG -goi -vaE -goi -goi -goi -vaE -goi -gnp -nGh -aSq -xez -rcY -rcY -eBb -arh -dOi -ePs -nGK -ycH -arp -arp -arp -arp -arp -arp -arp -lox -cvy -dOv -lNz -huA -krS -vBA -oPl -jxT -oNh -nJJ -arp -qNm -hvS -ePs -aBI -aqK -ylo -ylo -ylo -aqL -aqL -bdP -bdP -bdP -rTj -bdQ -bdQ -bdQ -bdQ -bdQ -aKk -prI -rwo -dOo -rJo -pnQ -osY -geN -rwo -yfO -jba -iTW -geN -rwo -nIy -lkm -beG -bdQ -bdQ -bdR -aJZ -aKk -aKi -aKi -aKi -gtX -aKi -aKi -aKi -aKn -bdZ -aJZ -bdS -aJZ -aJZ -aKK -cll -jwW -rJS -aKK -bdP -bdP -bdS -bdS -bdP -bem -bdZ -bdQ -aKt -jdX -hIt -hIt -hIt -jqq -aKt -bdZ -aJZ -bdP -rTj -bdP -bdQ -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(105,1,1) = {" -aad -kZM -qdV -nze -soF -vov -mqy -eAM -xzF -xzF -eGR -wBH -eWS -gUr -abg -kCd -edm -edm -edm -lak -edm -mZp -edm -cKm -sFS -sFS -sFS -sFS -sFS -sFS -sFS -sFS -sFS -oSS -sFS -sFS -kNE -kNE -kNE -kNE -kNE -kNE -kNE -doF -kNE -kNE -kNE -vtY -xTa -xTa -jsC -fzn -fuX -pSm -agK -bcP -agK -gDi -fQA -agK -aEq -agK -ann -ann -ann -ann -wsr -qdX -kDV -uzg -rqz -aqi -aqi -aqi -aqi -aqi -won -kKX -kDV -vAg -rqz -aqy -aqy -aqy -aqy -aqi -aqi -aqi -aqi -aqi -aqi -cQP -kKX -wBq -fpy -pdE -aSm -eGz -sxy -gnp -bnJ -fLS -fUL -rvs -rvs -rvs -bnM -tsB -fUL -gWf -gnp -eep -aSq -dDg -rcY -rcY -lIo -aSq -qvO -ioM -kDV -nFI -arp -xbW -ahB -aTG -ahB -qoq -arp -iCx -kBy -nlH -arr -tkx -muF -aGx -oPl -och -vvn -dOv -maG -ePs -nGK -ioM -bUj -aqK -ylo -ylo -ylo -aqL -beo -aJZ -bdP -aJZ -eiG -bdQ -rUH -bdQ -bdQ -bdQ -beJ -tDK -aKi -bew -aJZ -aJZ -aJZ -aKk -aKi -gtX -aKi -aKn -bdy -aKm -aKi -aKi -aKo -beG -bdQ -bdQ -aJZ -aKk -aKi -aKi -aKi -gtX -aKi -aKi -aKi -aKn -aKt -aKt -aKt -aKt -aKt -aKt -aKu -tYK -aKu -aKt -aKt -aKt -aKt -aKt -aKt -aKt -aKt -aKt -aKt -hvK -gtW -gtW -gtW -hSX -aKt -aJZ -bdS -bdP -rTj -bdP -bdQ -bdQ -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(106,1,1) = {" -ajD -ajD -ajD -ajD -ajD -ajD -ajD -ajD -lxy -fMM -nYl -wBH -eoq -eoq -abg -rXU -tzd -edm -mWu -fxs -gsV -gHs -gsV -gsV -oeX -oeX -oeX -igC -oeX -oeX -rEP -oeX -oeX -eNs -oeX -rEP -cxI -cxI -cxI -cxI -cxI -cxI -cxI -qON -cxI -cxI -cxI -jNj -hRc -hRc -mEr -qdb -fuX -agK -agK -xJC -irf -yli -gMS -mAP -kXf -scW -ann -uXG -tfx -ann -ann -qdX -kDV -uzg -aqi -aqi -jwQ -sKS -gQD -aqi -aqi -kKX -fpy -vAg -aqy -aqy -fEv -roS -aqy -qmq -tcL -tIv -xhh -rks -aqi -aqi -kKX -ioM -fpy -pdE -aSm -eGz -rnT -dlD -aqO -aqO -aSm -aSm -aSm -aqO -aqO -ckm -sxy -xjM -gnp -buv -arh -kQR -eKM -rcY -tqu -aSq -qvO -ioM -kDV -nFI -arp -aUy -cMk -vrf -wus -tYF -byo -dOv -kxD -iHv -arr -arr -arp -arp -cYV -kBy -jxT -nlH -arp -xvd -kDV -ioM -bUj -anw -aSa -aSa -aqo -aqo -aJW -aJW -aJW -aJZ -tzY -pgO -lsB -bdQ -bdQ -bdQ -bdQ -vhZ -yfH -bdK -beh -bei -aJZ -aKk -aKi -gtX -aKi -aKn -bdx -tGV -aKi -aKi -aKi -yle -bdQ -bdQ -smP -bdy -aKm -aKi -aKi -gtX -aKi -aKi -aKp -bdK -aKt -qlJ -hAv -yls -yls -aKt -gvo -rwc -kAX -aKt -hVd -nah -yls -nih -oBt -oBt -gmO -ooR -aKt -qZf -qnS -fly -ikL -oSv -aKt -aKt -aKt -aKt -kuC -bdR -bdQ -bdQ -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(107,1,1) = {" -adq -pyG -nPZ -jet -kHi -nPZ -jet -adq -jpf -fMM -jaQ -fVQ -wny -kYx -abg -ldf -ftf -qgZ -uHW -mCW -hdy -cPF -qfZ -blM -qmS -sFS -sFS -oSS -sFS -aTL -blB -blB -blB -blB -blB -blB -adb -hJA -hJA -hJA -hJA -hJA -uoK -hJA -uEG -hJA -hJA -vtY -erM -xTa -xTa -jsC -fuX -agK -cNA -xPG -iNV -yli -gMS -pyl -myV -jiG -ann -moI -ebR -nMJ -aEr -qdX -kDV -uzg -aqi -cOF -hnv -vmi -xju -gQD -aqi -mDO -kDV -vAg -aPW -pcT -tWJ -iSO -aqy -eEk -glI -mRV -rgG -kwB -gBX -aqi -thy -ioM -kDV -oxK -bnM -fVe -sxy -gnp -eUz -lum -ebf -dQo -hPa -sbg -kfP -qQN -qQN -fVe -ikH -auI -uXn -qCf -hTF -rcY -eTG -aSq -qvO -ioM -kDV -nFI -arp -ygF -slg -opP -eYY -ahB -arr -mvw -cvy -dOv -dOv -dOv -tRJ -dOv -dOv -jkr -sMD -rDb -arp -hOg -kDV -ioM -bUj -anw -aSa -aSa -aqo -szu -rRH -alo -aJW -beh -cvO -aJZ -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdP -aJZ -aJZ -aJZ -gpP -aKi -gtX -bel -aKn -aKk -aKi -jIm -aKi -aKi -aKo -aKh -aKh -aKh -oLe -aKl -aKi -aKi -gtX -aKi -aKi -aKn -xsU -aKt -gZZ -joP -pvC -bQu -eZL -fly -rsS -mnK -aKt -xtz -bQu -bQu -sjU -vZu -vZu -fDs -uYk -aKt -aKu -aKu -sPq -aKu -aKu -aKt -wRP -qQa -aKt -rTj -bdP -bdP -bdQ -bdR -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(108,1,1) = {" -adq -jsV -wwo -nze -hsi -mqy -mqy -gZk -xzF -xzF -eGR -wBH -eoq -eoq -blM -blM -adL -adL -blM -blM -blM -adL -adL -blM -acF -hmP -hmP -qLR -hmP -acF -ajZ -ajZ -ajZ -ajZ -ajZ -ajZ -acF -aPy -aPy -aPy -aPy -aPy -acF -acF -acF -acF -acF -acF -xpC -xTa -fzn -jsC -fbo -agK -iWU -myV -kMn -yli -gMS -pyl -myV -jiG -ann -lFn -ivA -rnr -uak -qdX -kDV -qgV -aqi -ukw -mRV -uUc -mCk -sst -aqi -thy -kDV -vAg -oTP -sKj -lbU -iJE -aqy -puG -wXt -wtU -mRV -mRV -fXm -aqi -kKX -ioM -hvS -ePs -ciu -auI -auI -gCB -uql -auI -auI -auI -auI -uql -auI -auI -auI -uql -iQq -uVh -arh -dYX -rcY -rcY -tlY -arh -qvO -ioM -kDV -nFI -arp -ahB -xav -vye -sbd -ahB -arr -oPl -cvy -iCs -jxT -jxT -xMZ -jxT -jxT -arp -arr -arr -arp -hOg -kDV -ioM -bUj -aqK -ylo -ylo -aqo -cmw -xzf -uYa -bcp -aJZ -eiG -aJZ -aJZ -bdQ -bdP -bdP -bdP -bdQ -bdQ -bdQ -xsU -aJZ -bdS -bdW -bdU -gtX -aKi -aKn -aKk -aKi -aKi -aKi -jlL -aKi -var -aKi -bdU -bdU -aKi -aKi -aKi -gtX -aKi -aKi -aKn -aJZ -aKt -aKt -aKt -aKt -aKt -aKt -qnS -rsS -uqa -aKt -xzj -wTL -yiG -plK -olk -jwh -dpA -pdJ -aKt -jdX -ojY -fly -orR -hIt -hIt -gpO -shi -aKu -eiG -beg -aJZ -bdQ -bdR -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(109,1,1) = {" -aad -aad -lGE -lSb -gWy -tFd -vJJ -adq -paE -fMM -nYl -wBH -eWS -ieB -acF -gnX -woa -woa -woa -rCg -woa -woa -woa -woa -acF -vWn -qko -uhG -vWn -aUn -acF -acF -acF -acF -acF -acF -acF -fOX -fOX -fOX -fOX -fOX -pBE -kXU -weW -acF -ajZ -acF -wlW -xTa -xTa -jsC -fuX -agK -iWU -xCK -xCK -yli -gMS -iYF -myV -eyD -ann -cPa -jgW -oxR -aEr -qdX -kDV -uzg -aqi -uLl -fQo -mmv -guU -trk -aqi -kKX -kDV -vAg -aPW -oUx -qhc -mNY -aqy -pCV -gJT -mmv -guU -uea -pfD -aqi -kKX -ioM -kDV -ckB -aqO -axU -goi -goi -gnp -mSP -phJ -gWf -goi -gnp -tRB -phJ -gWf -fur -goi -cmV -arh -ujR -kBs -ooF -hjr -arh -qvO -ioM -kDV -nFI -arp -ahB -ahB -aTH -ahB -ahB -arr -oPl -kBy -nlH -arr -arr -arp -arp -arp -arp -odA -mVR -mVR -dmF -kDV -ioM -bUj -aqK -ylo -aqo -aqo -wvs -jvu -uYa -bcp -aJZ -fip -jqz -nlm -fwq -fwq -fwq -fwq -fwq -pgO -pgO -jqz -bVX -qGz -sem -wvK -fYL -aKp -keE -aKk -vaI -aKi -aKp -aKm -aKi -bdU -bdU -bdU -aKi -aKi -aKi -aKi -gtX -aKi -aKi -aKn -aJZ -aKt -qnu -aKt -qnu -aKt -nSc -ipM -rsS -mnK -aKt -wCB -ipM -nHX -fly -mnK -aKt -aKt -aKt -aKt -ipM -eXa -rUp -rUp -aUu -fly -mJx -hqj -aKu -eiG -aJZ -bdZ -aJZ -bdS -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(110,1,1) = {" -ylo -aad -aad -adq -adq -adq -aad -aad -jTu -fMM -nYl -wBH -eoq -eoq -acF -crt -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -tBa -mtD -mtD -dPL -mtD -mtD -tBa -mtD -mtD -tor -mtD -tBa -mtD -mtD -mtD -mtD -mtD -mtD -mtD -tPK -dAp -acF -ajZ -acF -nLy -xTa -xTa -jsC -fuX -aEq -iWU -eNS -kMn -yli -gMS -fWO -mBc -jiG -ann -ann -sIh -ann -ann -bcP -fQA -agK -aqi -aqi -aPT -txn -aPT -aqi -aqi -aqi -rKb -aqi -aqy -aqy -ccn -aqy -aqy -aqi -aqi -gXJ -aqi -aqi -aqi -aqi -rHK -ioM -kDV -pdE -aqO -aqO -foO -foO -uNr -aqO -aqY -aqY -xFo -vpX -aqY -aqY -eGz -goi -goi -xTk -arh -arh -aSq -lFV -arh -arh -qvO -ioM -kDV -nFI -arp -arp -arp -arp -arp -arp -arp -npw -kBy -iHv -arr -ahB -aUr -aWK -aWK -arp -hOg -ioM -ioM -ioM -kDV -ioM -bUj -aqK -ylo -aqo -tAu -sBg -jvu -uBL -aJW -xsU -aJZ -aJZ -aJZ -aJZ -bdP -bdQ -bdP -bdR -bdR -bdP -aJZ -aJZ -gpP -aKi -aKi -gtX -aKn -aJZ -bdY -aKm -bel -aKn -bdy -iNk -aKm -aKi -aKp -aKj -aKj -aKm -aKi -gtX -aKi -bel -aKn -bdZ -aKt -uJv -aKt -uJv -aKt -slx -ipM -rsS -mnK -aKt -aKt -ipM -rsS -fly -dwP -aKt -kcL -xFy -vXJ -syF -mXN -ubO -vac -jpd -jpd -hMZ -uzP -aKt -tzY -cMa -jqz -jqz -xdi -bdP -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(111,1,1) = {" -ylo -aak -dKE -dKE -dKE -dKE -dKE -aak -jTu -fMM -nYl -lFj -acF -acF -acF -tQr -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -krb -dAp -acF -ajZ -acF -kuj -hRc -hRc -iKC -fuX -aEq -iWU -xCK -xCK -yli -gMS -xCK -xCK -eeV -eem -iNV -gMS -eeV -xRN -iNV -gMS -eeV -aqi -xhh -jPn -mmv -kwB -xhh -iJy -jPn -mmv -hHV -aqi -cDq -mmv -dbR -qQV -wUT -wlO -mmv -eRF -fCI -gic -aqi -kKX -ioM -kDV -pdE -aqO -xKK -goi -goi -gnp -ebI -aqY -tHG -xFo -uqg -jQh -aqY -gRl -xbp -uOu -eIS -aqY -qqm -ylG -ylG -dPp -aqY -qvO -ioM -kDV -nFI -arp -ahB -ahB -aTG -ahB -ahB -arr -oPl -kBy -jxT -tLv -ahB -cMk -tkY -gky -arp -hOg -ioM -uQv -ePs -jQv -ioM -bUj -anw -ylo -aqo -pli -unO -jvu -nQU -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -bor -aKh -beQ -aKi -aKi -gtX -aKo -aKh -sqn -aKl -aKi -aKo -aKh -sqn -aKl -aKi -aKo -aKh -aKh -bda -aKi -gtX -aKi -aKi -qVs -aKq -aKt -hlm -aKt -hlm -aKt -aKt -hvK -rsS -orR -gdg -aKt -aKu -rsS -eqY -aKu -aKt -ltg -ikL -jpd -jpd -oSv -aKt -aKt -aKu -aKu -aKu -aKt -aKt -suf -bdS -aJZ -beg -rTj -bdP -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(112,1,1) = {" -ylo -aak -aon -asA -asA -asA -aPL -bky -jTu -fMM -nYl -dBf -acF -nfD -rCR -xZN -poN -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -poN -krb -cOm -acF -acF -acF -wlW -xTa -xTa -jsC -fuX -agK -iWU -myV -kMn -yli -ucr -pZx -pZx -pZx -vvg -pZx -uPD -pZx -pZx -pZx -uPD -pZx -gDg -jBM -jBM -yjQ -jBM -jBM -jBM -jBM -yjy -kwB -aqi -kih -mmv -mRV -mRV -mRV -mRV -mmv -mRV -mRV -puz -aqi -gvO -ioM -kDV -pdE -aqO -mGg -vaE -rnT -dlD -jgm -aqY -cwu -xFo -uqg -mpu -bnO -guv -aSn -aSn -guv -bnO -wUG -xFo -xFo -hpx -aqY -qvO -ioM -kDV -nFI -arp -ahB -hKu -rCf -gky -ahB -arr -oPl -cvy -dOv -dOv -hKA -eWm -pkR -gkX -arp -hOg -ioM -kDV -bUj -bUj -dzj -eLm -anw -ylo -aqo -gDS -fpE -jvu -tMw -hhn -aKa -wvs -qDt -iHm -hks -kJy -xZH -cQf -eXw -xZH -xNt -aKi -aKi -aKi -aKi -aKi -rpZ -aKi -aKi -aKi -aKi -aKi -aKi -bel -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -gtX -aKi -aKi -aKo -aKh -aKu -fqt -dqN -mkw -yeJ -aKt -ojY -rsS -fly -orR -nfs -ojY -rsS -fly -orR -nfs -lWC -mnK -aKt -aKt -aKt -aKt -aJZ -aJZ -aJZ -aJZ -bdS -bdS -dzV -bdS -bdZ -bdP -rTj -bdP -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(113,1,1) = {" -aak -aak -arc -sdK -qLp -nzc -arc -bky -jTu -fMM -nYl -fMM -brv -poN -poN -krb -poN -aaG -aaG -aaZ -abd -hBM -tpZ -wey -abd -hBM -abt -aaZ -abd -rxS -mEw -aaZ -abd -hBM -abt -aaZ -kxq -kHM -abt -aaZ -aaG -aaG -poN -krb -dAp -acF -ajZ -acF -xpC -xTa -xTa -jsC -fbo -agK -iWU -xCK -xCK -yli -gMS -yli -yli -yli -hPV -yli -yli -yli -vDr -iJM -iJM -iJM -aqi -dop -dop -uea -qZZ -qZZ -qZZ -fQo -dDK -jBM -jBM -jBM -svg -jDj -jDj -eLG -jDj -slb -eLG -jBM -jBM -gDg -ePs -ePs -npy -pdE -aqO -tzD -vaE -sxy -gnp -jgm -bnK -iZf -xFo -uqg -xAE -ylG -ylG -ylG -ylG -ylG -ylG -vWr -xFo -dly -juD -aSn -qvO -ioM -kDV -ycH -arp -upe -slg -lpq -eYY -ahB -arr -cYV -kBy -arr -arr -ijA -eWm -nLw -fPY -arp -bIW -ioM -kDV -bUj -anw -anw -anw -anw -ylo -aqo -xMq -sVC -fFg -rYl -uAH -wOs -wvs -jvu -dIw -oep -tNF -oep -ubS -jvu -jvu -gWG -aKi -aKi -aKi -aKi -aKi -gtX -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -bel -aKi -aKi -gtX -aKi -aKi -aKi -aKi -mxv -tWR -vSO -mkw -mkw -cWL -fly -bIO -ycf -rUp -rUp -dSR -kPX -mrt -rUp -rUp -eIC -fJt -aKu -bdZ -aJZ -aJZ -lKy -gqT -jqz -cMa -jqz -fwq -paH -bdP -bdQ -bdQ -kuC -bdR -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(114,1,1) = {" -aak -dKE -arc -sdK -qLp -nzc -arc -aak -mcN -fMM -jaQ -xzF -tlp -mtD -mtD -qcC -poN -aaG -aaI -nfl -emV -emV -emV -emV -emV -emV -emV -emV -emV -emV -qoL -emV -emV -emV -emV -emV -emV -emV -emV -jXh -acn -aaG -poN -krb -dAp -acF -ajZ -acF -wlW -xTa -xTa -jsC -fuX -agK -iWU -eNS -kMn -yli -gMS -kJL -myV -kDd -rzR -myV -myV -yli -jiG -apI -apI -apI -apI -apI -apI -apI -apI -apI -apI -eOj -mmv -mRV -mRV -mRV -mRV -rQO -rQO -cGH -oFG -rQO -esG -mRV -guU -aPT -usj -ioM -kDV -pdE -aqO -fGF -goi -iTk -gnp -rpJ -aqY -mQI -xFo -siS -pNT -cQC -cQC -cQC -tFU -oyf -oyf -oyf -wdh -xFo -wnD -aSn -qvO -ioM -kDV -nFI -arp -aUC -jSM -eGG -mLf -tYF -byp -dOv -daZ -arr -bEF -ijA -eWm -jui -gkX -arp -hOg -ioM -kDV -bUj -aqK -ylo -ylo -ylo -aqo -aqo -aJW -kuF -xTr -aJW -aJW -aJW -wvs -jvu -fpE -jvu -gWG -jvu -jvu -dIw -oep -tNF -rwo -rwo -rwo -rwo -rwo -vYe -rwo -rwo -rwo -rwo -btk -rwo -rwo -rwo -rwo -rwo -rwo -rwo -rwo -rwo -rwo -vYe -rwo -rwo -btk -rwo -qoz -pch -cyO -qoz -qoz -rUp -rUp -nyS -uYk -fly -fly -fly -fly -rsS -fly -fly -rsS -fJt -aKu -aJZ -bdS -beo -aJZ -aJZ -bdZ -aJZ -bdP -bdP -bdP -bdQ -bdQ -bdQ -kuC -bdP -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(115,1,1) = {" -aak -dKE -arc -vUL -qLp -vUL -swu -quo -fMM -fMM -nYl -fMM -brv -poN -poN -krb -poN -aaG -aaJ -jTd -aaG -aaX -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaX -aaG -fak -aco -aaG -poN -krb -dAp -acF -ajZ -aUn -wlW -xTa -xTa -jsC -fuX -agK -gHT -iJM -kYw -yli -gMS -wUl -wAK -wAK -wAK -wAK -wAK -yli -jiG -apI -ejY -qrL -slB -slB -slB -slB -qrL -mfD -apI -eOj -mmv -guU -aqi -fQo -mRV -rgG -mRV -mRV -mRV -mRV -mmv -mRV -lKZ -aPT -kKX -ioM -kDV -pdE -aqO -mGg -xvC -sfz -gnp -jgm -aqY -kGB -xFo -uqg -xFo -xFo -xFo -hGu -rmy -xFo -xFo -xFo -fyQ -xFo -qNq -aqY -qvO -ioM -kDV -nFI -arp -hCY -eyW -vye -sbd -ahB -arp -hUv -fjT -arp -bEG -vTT -eyW -xvQ -sbd -arp -qDu -ioM -kDV -bUj -aqK -ylo -ylo -ylo -aqo -lHQ -ock -wEO -hdN -ock -qMq -aJW -wvs -jvu -fpE -xZH -gWG -xZH -eXw -tUI -xZH -gWG -jlU -aKi -aKi -bel -aKi -aKi -aKi -aKi -aKi -aKi -gtX -aKi -aKi -aKi -aKi -bdU -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -rRR -aKj -aKu -gwm -cyv -xcZ -wHB -aKt -qnS -rsS -fly -ikL -kbC -qnS -fly -rsS -ikL -kbC -rLM -mnK -aKt -aKt -aKt -aKt -bdZ -gqV -aJZ -aJZ -bdP -bdQ -bdQ -bdQ -bdQ -aJZ -eiG -aJZ -aJZ -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(116,1,1) = {" -aak -aak -arc -sdK -qLp -nzc -arc -aak -inj -gKM -nYl -fMM -brv -poN -poN -krb -poN -aaG -hWm -jTd -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -fak -jRc -aaG -poN -qOL -acF -adI -adI -adI -klN -klN -klN -jHP -klN -agL -agL -agL -dCE -yli -gMS -xCK -myV -kJn -myV -rzR -myV -yli -jiG -apI -ebz -jfl -kOe -xvL -xvL -xvL -qWg -kVd -bnl -jPn -mmv -gDx -aqi -gir -oex -oao -vPl -vPl -sOo -mRV -mmv -lwI -ndD -aqi -kKX -ioM -kDV -pdE -aqO -mGg -goi -goi -gnp -jgm -aqY -dhx -xFo -uqg -vIh -hXg -rMT -xFo -uqg -vIh -hXg -rYi -rYi -rYi -gIF -aqY -qvO -ioM -kDV -nFI -arp -arp -ahB -aTH -ahB -qoq -arp -kre -sUp -arp -bEH -bEH -aWm -bET -arp -arp -hOg -ioM -kDV -bUj -aqK -ylo -ylo -ylo -aqo -kzk -eXw -fpE -jvu -wIB -uYa -aJW -wvs -jvu -fpE -euO -aJW -aJW -aKg -aKg -aJW -aJW -aJW -plV -aKj -aKj -aKj -aKm -aKi -aKp -bcX -aKi -gtX -qoh -aKi -beS -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKp -aKj -aKj -fzd -aKq -aKt -aKt -aKu -vFY -aKu -aKt -hvK -rsS -ikL -osd -aKt -aKu -fly -fSg -aKu -aKt -ltg -orR -rYK -hIt -jqq -aKt -aKt -aKu -aKu -aKu -aKt -aKt -bdQ -bdQ -beg -lKy -eiG -bdS -gqV -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(117,1,1) = {" -ylo -bky -asA -sdK -qLp -nzc -asA -bky -nvc -fMM -rlI -rWg -aUn -bDm -vyX -krb -poN -aaG -gNE -jTd -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -fak -kIe -aaG -poN -krb -vWn -kUh -cRl -oIo -fdO -fdO -fdO -mKs -fdO -oty -yli -lhA -yli -yli -gMS -wUl -wAK -wAK -wAK -wAK -wAK -yli -jiG -apI -dIk -kOe -kOe -kPv -kPv -kPv -kAt -kOe -hNc -mRV -mmv -sst -aqi -aqi -aqi -aqi -aqi -aPT -aPT -tYM -rKb -aPT -aPT -aqi -thy -ioM -kDV -pdE -aqO -aqO -foO -foO -uNr -aqO -aqY -dZb -xFo -uqg -wIh -aqY -bnO -xFo -llW -bnO -aqY -aSn -aSn -aSn -aqY -aqY -qvO -ioM -kDV -nFI -oqK -arp -arp -arp -arp -arp -arp -arp -arp -arp -arp -arp -arp -arp -arp -oqK -hOg -ioM -kDV -bUj -anw -aqK -aqK -aqK -aqo -wKs -eXw -fpE -jvu -fXR -cCN -cYp -cHP -jvu -fpE -dQY -aJW -dbm -jgp -txC -iId -nsI -aJW -bcq -bcq -bcq -bcr -uli -aKi -beb -aKl -aKi -gtX -aKi -aKi -aKp -aKj -bed -aKj -aKm -aKi -bel -aKp -bdK -beg -aJZ -rTj -bdP -aKt -qgi -rCm -cSF -xsf -aKu -dAX -rsS -mnK -aKt -aKt -ipM -fly -rsS -cAO -aKt -kQf -nqZ -nqZ -sXJ -pMa -nfs -lZi -jvF -tot -eVm -mfs -aKt -bdQ -bdZ -aJZ -smP -eiG -aJZ -beo -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(118,1,1) = {" -ylo -bky -asA -sdK -qLp -nzc -asA -bky -nvc -fMM -rlI -qHV -acF -wJt -vyX -krb -poN -aaG -aaI -jTd -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -fak -acn -aaG -poN -krb -wsM -kUh -fdO -oIo -fdO -guO -guO -oAI -fdO -oty -yli -wUl -yli -yli -gMS -kJL -myV -rzR -myV -rzR -rzR -yli -jiG -apI -kcC -kOe -kOe -xvL -xvL -xvL -dwE -owW -qvF -jBM -yjy -kwB -aqi -laO -mWQ -mWQ -aqi -mek -nkq -mRV -mmv -nMZ -wJC -aqi -kKX -ioM -kDV -pdE -aqO -xKK -goi -goi -gnp -njp -aqY -tQm -xFo -uqg -wIh -aqY -qvO -ioM -kDV -oxK -eTk -lwe -lwe -lwe -cDJ -lwe -leo -ioM -kDV -vrj -mVR -mVR -mVR -mVR -mVR -mVR -mVR -nqL -mVR -mVR -mVR -mVR -mVR -mVR -mVR -mVR -dmF -ioM -kDV -bUj -xbq -wsr -gPW -wsr -lan -cHP -xZH -fpE -jvu -hUH -wPk -tYL -xZH -jvu -fpE -typ -aJW -mGX -rQy -eXw -eXw -lDZ -qdn -kZG -nkZ -gqs -bcr -bdW -aKi -aKi -aKi -aKi -gtX -aKi -aKi -aKn -beo -bdQ -bdQ -bdW -aKp -aKj -xxO -bdQ -bdQ -bdP -rTj -aJZ -aKu -ipM -uYk -uYk -orR -aKu -gvo -rsS -mnK -aKt -ufx -ojY -fly -rsS -hla -aKt -aKt -aKt -aKt -ipM -mHJ -rUp -rUp -aUu -fly -fly -mnK -aKu -aJZ -laE -jqz -bVX -bVH -xsU -aJZ -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(119,1,1) = {" -ylo -aak -arc -sdK -qLp -nzc -arc -aak -hKy -gKM -nYl -riL -acF -upR -vyX -qFD -poN -aaG -aaJ -jTd -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -drp -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -fak -aco -aaG -poN -ilN -iCi -eas -mqa -eaQ -mqa -gJa -wrJ -ltW -mqa -lQc -pZx -qUr -pZx -pZx -wvX -ubX -yli -yli -yli -yli -yli -yli -jiG -apI -ebz -jfl -kOe -kPv -kPv -kPv -kAt -sLV -apI -fQo -dDK -jBM -kqU -jBM -qnk -jBM -kqU -jBM -jBM -jBM -yjy -mRV -nlx -aPT -kKX -ioM -kDV -pdE -aqO -mGg -goi -rnT -iQq -jgm -aqY -tQm -xFo -uqg -wIh -aSn -qvO -ioM -hvS -ePs -ePs -ePs -lZn -vKC -ePs -ePs -ePs -vKC -xXy -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -xXy -ePs -ePs -ePs -ePs -ePs -tNF -oep -oep -iUn -pkM -oep -pkM -oep -oep -oep -dEz -lDZ -qZn -qWb -jvu -jvu -jvu -jvu -jvu -jvu -fxv -rne -bcr -aKk -bdU -bel -aKi -aKi -gtX -aKi -aKi -aKn -bdQ -bdQ -bcD -aKl -usK -bdQ -bdQ -bdQ -bdQ -bdP -eiG -bdZ -aKu -jLC -tnB -rUp -rUp -jzA -rUp -eIC -mnK -aKu -lwM -fly -tnB -eIC -mnK -aKu -pBC -jqq -aKt -wHM -kuR -fly -sni -jUb -jpd -jpd -oSv -aKu -beo -eiG -bdS -bdS -bdZ -aJZ -bdP -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(120,1,1) = {" -ylo -bky -asA -sdK -qLp -nzc -asA -bky -nvc -rAP -nYl -qHV -acF -wJt -vyX -krb -poN -aaG -aaR -jTd -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -vkR -acr -aaG -poN -krb -wsM -kUh -fdO -oIo -fdO -guO -oAI -guO -fdO -oty -yli -wUl -yli -yli -gMS -yli -vDr -iJM -nDp -iJM -iJM -iJM -lKA -apI -cYK -kOe -kOe -kOe -cGT -xzm -kAt -sjb -apI -eIe -mmv -guU -aqi -iNU -mmv -uLz -aqi -fir -mRV -soT -mmv -mRV -sst -aPT -kKX -ioM -kDV -pdE -aqO -mGg -goi -sxy -goi -jgm -aqY -sQX -xFo -fyQ -ngb -aSn -qvO -ioM -kDV -ioM -ioM -ioM -ioM -kDV -wBq -wBq -ioM -kDV -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -gWG -jvu -jvu -jvu -fpE -jvu -wjt -jvu -jvu -jvu -rlB -qxg -pJW -ngA -oep -oep -oEq -jvu -jvu -jvu -inr -lWz -bcr -bdY -bed -aKj -aKm -idU -gtX -aKi -aKi -aKn -bdP -bdP -aKk -aKi -aKn -bdP -bdP -bdQ -bdQ -bdQ -diD -aJZ -aKu -ipM -uYk -uYk -ikL -aKu -cjz -rsS -mnK -aKu -fAo -laR -fly -mHJ -gCK -pRQ -xrG -hSX -aKt -xFK -aKt -fly -aKt -xFK -aKt -jtN -ntS -aKt -aJZ -eiG -nFc -aJZ -bdQ -bdP -bdP -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(121,1,1) = {" -ylo -bky -asA -sdK -qhx -nzc -asA -bky -nvc -fMM -nYl -xbV -aUn -lHb -vyX -krb -poN -aaG -cXS -jTd -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -fak -lTm -aaG -poN -krb -vWn -kUh -unc -oIo -fdO -fdO -lSB -fdO -fdO -oty -cxw -iPC -yli -yli -gMS -yli -jiG -agK -agK -aEq -aEq -aEq -agK -apI -lnF -kOe -kOe -ell -xQw -kOe -kAt -sjb -apI -uqP -mmv -gDx -aqi -mSk -mmv -mxN -aqi -wTH -mRV -gFx -bzO -mRV -gDx -aqi -kKX -ioM -kDV -pdE -aqO -fGF -goi -iTk -goi -rpJ -aqY -tQm -xFo -xFo -wIh -aSn -qvO -ioM -kDV -bUj -bUj -bUj -bUj -tiS -bUj -bUj -mNb -fpy -ioM -bUj -bUj -bUj -dzj -bUj -bUj -bUj -ioM -ioM -ioM -hLg -fwt -fwt -fwt -fwt -fwt -sHw -ioM -ioM -ioM -bUj -bUj -wsr -gPW -wsr -gWG -wUi -xZH -jvu -fpE -xSc -wIB -pzS -xZH -jvu -fpE -typ -aJW -mGX -inr -eXw -eXw -euO -eBg -viR -uLj -lMu -bcr -bdS -gqV -bdQ -aKk -aKi -gtX -aKi -aKi -aKn -aJZ -bdQ -bdy -aKj -bcK -bdP -bdR -bdR -bdQ -bdQ -rTj -bdP -aKt -tnn -vst -rhT -kta -aKu -dAX -rsS -mnK -aKt -pqm -kbC -sok -sok -ewd -aKu -yjE -fJt -aKt -tFR -aKu -fly -aKu -ooA -aKt -aKt -aKt -aKt -bdP -rTj -aJZ -bdQ -bdQ -bdQ -bdR -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(122,1,1) = {" -aak -aak -arc -sdK -xlh -nzc -arc -aak -heD -fMM -nYl -fMM -brv -poN -poN -krb -poN -aaG -kTW -jTd -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -fak -wFH -aaG -poN -qOL -acF -adI -adI -adI -ael -uBA -ael -uBA -ael -agL -agL -agL -neE -yli -gMS -yli -jiG -agK -iKc -kXf -kXf -kXf -xgV -apI -ebz -jfl -kOe -hpX -hpX -hpX -kAt -kVd -apI -jPn -mmv -sst -aqi -may -mmv -vdL -aqi -qQs -mRV -eoG -lNd -mRV -sst -aqi -fyF -ioM -kDV -pdE -aqO -mGg -goi -sfz -npx -jgm -aqY -tQm -xFo -xFo -wIh -aSn -qvO -ioM -kDV -bUj -wsr -rqz -anw -anw -anw -iNX -bUj -kDV -wBq -bUj -iNX -anw -anw -anw -ofu -vZK -gTg -gTg -gTg -vgU -xGn -eqS -ihh -eqS -icj -mPX -gTg -gTg -gTg -fwt -anw -aqK -aqK -aqK -aqo -lED -eXw -jvu -fpE -vhL -siA -xXf -iZs -wUi -dFv -vkU -aJW -viA -mHH -hxb -rsR -mDl -aJW -bcq -bcq -bcq -bcr -bdS -aJZ -bdQ -aKk -aKi -gtX -aKi -aKi -aKn -beg -bdP -bdP -bdQ -bdQ -bdQ -bdR -bdP -bdQ -bdR -kuC -bdR -aKt -aKt -aKt -aKt -aKt -aKt -ipM -vUO -vSV -aKt -aKt -aKt -aKt -aKt -aKu -aKt -xUV -aKu -aKt -hvK -qAF -fly -qAF -hSX -aKt -bdS -bdP -bdP -aJZ -rTj -bdP -bdQ -bdQ -bdQ -bdR -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(123,1,1) = {" -aak -dKE -arc -vUL -xlh -ncT -swu -quo -fMM -fMM -nYl -fMM -brv -poN -poN -krb -poN -aaG -aaJ -jTd -aaG -aaX -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaX -aaG -fak -aco -aaG -poN -krb -dAp -adI -blN -adI -rdX -flM -xaL -wDB -cga -agL -cNA -kXf -iNV -oZk -gMS -yli -eeV -agK -lZg -yli -xuS -fxo -pzN -apI -lOp -kOe -kOe -vAW -vAW -vAW -dwE -owW -qvF -jBM -yjy -sst -aqi -jIS -uGf -rZb -aqi -rlM -mRV -kMJ -sbq -mRV -sst -aqi -kKX -ioM -kDV -ufs -aqO -dBH -fUL -fUL -fUL -jze -aqY -nCq -ivI -ivI -qcJ -aqY -rqi -ioM -kDV -bUj -kEr -anw -anw -aSa -anw -anw -qNm -kDV -wBq -wsr -anw -anw -aSa -anw -anw -jtV -bUj -olp -bUj -sSD -wsr -anw -anw -anw -wsr -bUj -bUj -olp -bUj -qfH -anw -ylo -ylo -ylo -aqo -iJH -eXw -jvu -fpE -kEY -vWa -aJW -aJW -kXT -bTg -gLs -gLs -gLs -gLs -gLs -gLs -gLs -aJW -bdx -aKh -aKh -aKh -bcS -bdJ -bdQ -aKk -aKi -gtX -aKi -bdU -aKn -aJZ -bem -bdQ -bdQ -bdQ -bdx -aKh -aKh -aKh -bcL -dzV -aKt -aKt -tWF -mOg -dGE -euZ -aKu -dAX -rsS -uqa -aKt -gvs -jRw -hiw -aKu -aKi -aKi -gtX -aKi -aKt -qZf -kIy -jpd -kIy -oSv -aKt -beg -rUq -jqz -eNM -bVH -bdQ -bdQ -bdQ -bdP -bdP -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(124,1,1) = {" -aak -dKE -arc -sdK -qLp -nzc -arc -aak -tyW -fMM -wSG -xzF -tlp -mtD -mtD -qcC -poN -aaG -aaR -fMR -nCM -nCM -nCM -nCM -nCM -nCM -nCM -nCM -nCM -nCM -dqS -nCM -nCM -nCM -nCM -nCM -nCM -nCM -nCM -grm -acr -aaG -poN -krb -dAp -adI -blN -adI -kId -fdO -wzs -fdO -idB -agL -gYh -yli -yli -tPY -uPD -pZx -pZx -csN -pZx -pZx -wvX -lVL -xAp -apI -qJH -kOe -kOe -hpX -hpX -hpX -kAt -kOe -hNc -mRV -mmv -sst -aqi -uVn -mRV -rZb -aqi -wpt -mRV -mRV -mRV -mRV -sst -aqi -kKX -ioM -kDV -pdE -aqO -aqO -aSm -aSm -aSm -aqO -aqY -aqY -aSn -aSn -aqY -aqY -qvO -ioM -kDV -bUj -wZP -aqK -ylo -aSa -ylo -aqK -wsr -kDV -ioM -wsr -aqK -ylo -aSa -ylo -anw -bUj -kTQ -xdr -wJc -bUj -anw -anw -ylo -anw -anw -bUj -kTQ -xdr -wJc -bUj -anw -ylo -ylo -ylo -aqo -ygP -iZs -wUi -dFv -iZs -vkU -aJW -gYX -jFi -hZc -gLs -bUC -bYS -gLs -hqX -hqX -gLs -bdx -fSA -aKi -var -aKi -aKi -aKo -aKh -aKl -aKi -gtX -aKi -aKi -aKn -bdZ -aJZ -bdQ -bdQ -bdx -bcH -bcI -bel -aKi -aKn -eiG -aKu -cqA -ojY -uYk -uYk -orR -aKu -gvo -rsS -orR -aKt -qQg -qQg -qQg -aKu -aKi -qoh -gtX -qoh -aKt -aKu -aKt -aKu -aKt -aKu -aKt -bdP -rTj -beo -aJZ -beg -bdQ -bdQ -bdP -bdP -bdP -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(125,1,1) = {" -aak -aak -arc -sdK -qLp -nzc -arc -bky -jTu -fMM -fMM -fMM -brv -poN -poN -krb -poN -aaG -aaG -abc -abh -iem -eVW -qal -abh -iem -abu -abc -abh -uNz -iDF -abc -abh -iem -abu -abc -fvH -ouN -abu -abc -aaG -aaG -poN -krb -dAp -adI -blN -adI -tpd -tQj -eaW -sGi -cxZ -agL -jFn -eUI -myV -dsl -myV -szK -hoF -agK -uds -pvG -gMS -bFJ -jbh -apI -ebz -jfl -kOe -vAW -vAW -vAW -jwe -sLV -bnl -fQo -mmv -sst -aqi -mOL -mRV -nGk -aqi -jdH -een -mRV -mRV -een -xSP -aqi -kKX -ioM -kDV -oxK -lwe -lwe -lwe -lwe -lwe -lwe -lwe -lwe -lwe -lwe -lwe -lwe -leo -ioM -kDV -bUj -cNO -aqK -ylo -aSa -ylo -aqK -iNX -kDV -wBq -iNX -aqK -ylo -aSa -ylo -aqK -bUj -kTQ -sUw -wJc -bUj -aqK -ylo -ylo -ylo -aqK -bUj -kTQ -sUw -wJc -bUj -aqK -ylo -ylo -ylo -aqo -aqo -aJW -kXT -bTg -aJW -aJW -aJW -dyi -jvu -hZc -gLs -bQN -bQv -gLs -hqX -bQt -gLs -aKk -mlr -btk -rwo -rwo -rwo -vEK -rwo -rwo -rwo -fYL -aKi -aKi -aKn -aJZ -beo -bdQ -bdQ -aKk -bdU -aKi -qoh -aKp -bdK -eiG -aKu -iYu -fly -fly -fly -fly -eQg -fly -vUO -rUp -reN -nTx -hkn -aYw -aKt -xtF -jRl -fYL -aKi -bcM -aKi -aKi -aKi -aKi -rzy -bdR -bdP -eiG -aJZ -spU -bdQ -bdQ -bdQ -beo -aJZ -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(126,1,1) = {" -ylo -aak -awr -asA -asA -asA -aVo -bky -rqp -ryi -ryi -ryi -acF -waK -dIi -uZX -poN -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -poN -krb -cOm -adI -adI -adI -adI -adI -ocH -adI -adI -agL -iWU -iMR -eUI -pQE -myV -tBm -jiG -agK -eHI -yli -gMS -fOa -inf -apI -jmo -sPj -iIY -iIY -iIY -iIY -sPj -xof -apI -eOj -mmv -gDx -aqi -eIo -qZZ -pDj -aqi -vfl -kTy -oyU -oyU -hJm -raJ -aqi -ruV -ioM -bZC -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -ePs -jQv -bUj -mWL -aqK -ylo -aSa -ylo -aqK -wsr -kDV -ioM -wsr -aqK -ylo -aSa -ylo -aqK -aqK -aqK -anw -aqK -aqK -aqK -ylo -ylo -ylo -aqK -aqK -aqK -anw -aqK -aqK -aqK -ylo -ylo -ylo -ylo -aqo -nDL -jFi -mdo -qbo -omB -aJW -tMl -fmy -rDx -jCG -bTY -sYn -buU -bVT -bQt -gLs -bdW -aKi -elR -aKi -jlL -aKi -aKp -yfH -aKm -aKi -gtX -aKi -aKi -aKn -aJZ -bdQ -bdQ -vza -pnQ -geN -btk -iTW -ccq -jqz -iBg -aKu -pOD -fly -tnB -rUp -rUp -rUp -rUp -eIC -ikL -aKt -qQg -dFL -dFL -aKu -aKi -aKi -flB -rwo -rwo -rwo -rwo -mrb -rwo -eDM -pgO -fwq -eql -bdP -bdQ -bdQ -bdQ -aJZ -aJZ -aJZ -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(127,1,1) = {" -ylo -aak -wgY -wgY -wgY -wgY -wgY -aak -qvE -qvE -qvE -plz -aan -aan -aan -mLw -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -poN -krb -wbn -adI -oKt -kWC -jQM -kCX -mKs -tMV -sKD -agL -iWU -myV -iMR -pQE -myV -fld -jiG -agK -hkX -kYw -gMS -vDr -lKA -agU -agU -agU -agU -agU -apI -apI -apI -apI -apI -eOj -mmv -sst -aqi -aqi -qIU -qIU -qIU -qIU -qIU -qIU -qIU -qIU -qIU -qIU -bUj -bUj -bUj -bUj -bUj -bUj -bUj -mbg -wno -wno -plu -bUj -bUj -bUj -bUj -bUj -bUj -bUj -bUj -bUj -oqK -anw -aoX -aoX -aoX -aoX -oRa -hLV -oRa -muW -aoX -aoX -aoX -aoX -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aqo -jfr -jvu -fpE -jvu -jvu -ppM -icc -dIw -wJl -lYT -emi -kkj -buU -bYT -hqX -gLs -bdW -bdU -gtX -aKi -aKp -aKj -bcU -bdQ -bcY -aKi -gtX -aKi -aKi -aKn -bdQ -bdQ -bdQ -bdQ -bdS -bdY -bcJ -bcK -bdQ -bdQ -bdP -aKu -kef -qnS -uYk -uYk -ikL -aKu -cjz -rsS -mnK -aKt -jBC -jRw -jRw -aKu -qoh -aKi -gtX -aKi -bcM -aKi -aKi -bdU -aKi -rzy -bdR -bdP -rTj -bdP -bdP -bdQ -gqV -aJZ -aJZ -xsU -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(128,1,1) = {" -ylo -aSa -ylo -ylo -blY -ylo -ylo -aak -bky -bky -bky -bky -aak -ylo -aan -tjS -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -mtD -dPL -mtD -oHD -mqa -mqa -mqa -kfN -srv -fdO -wKB -agL -iWU -myV -uOG -pQE -myV -fbi -xEh -ang -ang -ang -tCG -ang -ang -ang -fJm -mdI -iNl -hDF -msB -cRx -gSC -hDF -ang -jPn -mmv -sst -cxB -cxB -qIU -bQt -hqX -qIU -bQH -hqX -qIU -bQV -hqX -qIU -emn -cjs -fwt -fwt -fwt -ffx -bUj -dMb -wsr -wZP -anw -anw -anw -anw -anw -anw -anw -aoX -aoX -aoX -aoX -aoX -aoX -cou -rNW -dPG -gVu -czv -feH -hUI -mzu -fXM -cwJ -aoX -aoX -aoX -aoX -aoX -aoX -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aqo -kyP -jvu -wjt -jay -aJW -aJW -aJW -vbH -aJW -aJW -aaa -aJW -gLs -gLs -gLs -gLs -bdy -bed -qcx -aKj -sZg -bdQ -bdQ -bdQ -aKk -aKi -gtX -aKi -aKi -aKn -bdS -bdQ -bdQ -bdQ -bdQ -bcD -hkp -bdJ -bdR -bdQ -bdP -aKt -aKt -nLZ -nKU -xpf -qLu -aKu -dAX -rwc -kAX -aKt -aKt -aKu -aKu -aKt -bcM -bcM -gLM -bcM -bcM -aKi -bdU -bdU -aKp -bcK -bdQ -bdQ -ooX -jqz -jqz -jqz -bVE -tHy -aJZ -bdP -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(129,1,1) = {" -ylo -aSa -ylo -aSa -bmB -aSa -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -aan -cUW -tJC -nwP -nwP -nwP -nwP -nwP -nwP -nwP -cNj -nwP -nwP -nwP -nwP -nwP -nwP -nwP -nwP -cNj -nwP -nwP -nwP -nwP -nwP -nwP -nwP -nwP -tJC -nwP -nwP -adI -wPe -fdO -keX -lSB -igA -vso -xhE -agL -gYh -myV -xIx -pQE -myV -mAo -jiG -ang -nAd -ptv -tJi -vBd -iXx -ang -eod -eod -eod -eod -eod -eod -eod -eod -luv -mRV -mmv -sst -rQO -rQO -qIU -bQt -hqX -qIU -bQH -hqX -qIU -bQV -hqX -qIU -bQy -cjs -uWQ -sOd -jUe -cSt -bUj -dMb -wsr -kMT -aqK -ylo -ylo -ylo -qIU -qIU -qIU -qIU -izu -oyL -czb -puO -aIA -sjQ -emr -emr -wTR -czv -feH -wTR -emr -emr -hUI -aIA -xcD -xcD -rea -got -aoX -aoX -aoX -aoX -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aqo -xEv -lwb -dLQ -ebc -ppq -bVE -bVX -bVH -bdS -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdP -lKy -aJZ -fue -bdP -bdQ -bdQ -bdQ -bdZ -aKk -bel -gtX -aKi -aKi -aKo -aKh -bcS -aKh -beE -beE -aKl -elR -aKn -bdR -bdQ -bdP -bdP -aKt -aKt -aKt -aKt -aKt -aKt -aKu -fQt -aKu -aKt -bdP -bdP -aJZ -aKk -aKi -aKi -gtX -aKi -aKi -aKi -aKi -aKi -aKn -bdQ -bdQ -bdP -bdP -aJZ -bdZ -aJZ -diD -aJZ -beg -bdQ -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(130,1,1) = {" -ylo -aSa -aSa -aSa -bmB -aSa -aSa -aSa -ylo -ylo -ylo -ylo -ylo -ylo -aan -aan -aan -aan -lpd -vyX -vyX -ebP -aan -aan -aan -aan -aan -fJe -vyX -vyX -xya -aan -aan -aan -aan -aan -lpd -vyX -vyX -ebP -aan -aan -aan -aan -aan -aeb -esd -sdD -cRu -xai -rvO -xai -cxZ -agL -jFn -myV -uOC -pQE -myV -dKa -pdQ -ang -fXQ -xjJ -mqT -xjJ -xjJ -luv -eod -hDF -fJm -aqt -aqt -aqt -aqt -aqt -aqt -fQo -mmv -dGs -ixe -euj -qIU -aTv -bYm -qIU -aUN -hqX -qIU -bqo -hqX -qIU -fYn -cjs -tmy -bUj -bUj -cSt -bUj -dMb -wsr -voP -aqK -ylo -ajq -ajq -qIU -hqX -bqp -buU -pdq -feH -feH -thg -mEI -gVu -feH -feH -feH -clj -oEk -oEk -oEk -oEk -oEk -fZg -oEk -oEk -dis -xKq -xFa -rdj -rRZ -aoX -ajq -ajq -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aqo -qIU -bQv -gLs -bQN -gLs -dzV -bdS -bUJ -bUK -bdQ -bdQ -bdQ -bdQ -bdQ -bdP -bdP -bdP -beI -rTj -bdQ -bdQ -bdQ -bdQ -tNp -upr -rwo -fYL -aKi -aKi -aKi -aKi -ezR -aKi -ecX -rwo -rwo -gnR -bew -bdQ -bdQ -bdQ -bdP -aJZ -beh -bei -bdP -bdP -aKL -xwr -vtS -wdE -aKL -bdP -bdZ -gqT -upr -rwo -rwo -fYL -jIm -aKi -var -idU -aKp -bdK -bdQ -bdQ -bdQ -bdQ -aJZ -aJZ -aJZ -suf -aJZ -bdQ -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(131,1,1) = {" -ylo -ylo -ylo -aSa -bmB -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -aan -cZM -vyX -vyX -tWg -aan -ylo -aSa -ylo -aan -dcO -vyX -vyX -xEY -aan -ylo -aSa -ylo -aan -cZM -vyX -vyX -tWg -aan -ylo -ylo -ylo -ylo -aeb -aeb -aeb -bmZ -bmZ -bmZ -aeb -aeb -aet -gYh -yli -yli -hPV -yli -yli -xEh -ang -ieQ -xjJ -eod -xjJ -teC -afa -afa -afa -afa -aht -niF -kWA -owJ -vNH -aqt -buB -cPQ -aqt -aqt -aqt -qIU -bQv -bQv -qIU -bQv -bQN -qIU -bQv -bQN -qIU -rmr -cjs -wNb -bUj -bUj -hBg -bUj -dMb -wsr -mWL -ajq -ajq -ajq -bhn -gLs -aSW -hqX -gLs -rIf -feH -qRI -lTb -xeS -sgc -oEk -oEk -oEk -yhd -feH -feH -feH -feH -feH -suA -feH -feH -feH -feH -feH -ulP -xiv -aIA -bhn -ajq -ajq -ajq -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -qIU -bYQ -hqX -hqX -gLs -dzV -aJZ -bdQ -bdQ -bdQ -bdQ -rUq -fwq -jqz -jqz -jqz -fwq -fwq -paH -bdP -bdR -bdQ -bdQ -bdQ -aKk -aKi -gtX -aKi -aKi -aKp -aKj -bec -aKi -gtX -aKi -aKi -aKi -rzy -bdQ -bdQ -bdQ -bdP -bdP -bdP -bdP -bdP -bdS -aKL -xwr -vtS -wdE -aKL -bdS -bdS -bdS -bdY -aKm -ezR -gtX -jlL -bdU -aKi -aKp -bdK -bdQ -bdQ -bdQ -bdQ -hNI -bdP -lKy -aJZ -rTj -bdP -bdQ -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(132,1,1) = {" -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -aSa -aan -aan -tkO -tkO -aan -aan -aSa -aSa -aSa -aan -aan -tkO -tkO -aan -aan -aSa -aSa -aSa -aan -aan -tkO -tkO -aan -aan -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aet -kkl -iJM -iJM -iJM -iJM -iJM -hhK -ang -cWM -nGO -nGO -nGO -iTH -afa -ylo -aSa -ylo -aht -qtu -qIy -bkf -ujC -cwh -ujC -ePw -cZX -fqA -iag -sMT -gUU -rir -tPr -fvg -kym -cnl -aiV -tWZ -eqz -wsr -cjs -mWL -bUj -pgj -cgb -wno -xuK -oqK -rqz -ajq -bhn -bhn -bhn -gLs -aCa -hqX -bQN -xGl -tTl -feH -pyp -aIA -sjQ -mwA -uWC -gBs -czv -feH -gBs -uWC -czA -rds -aIA -qPA -cIz -trS -qHX -qPA -qPA -nJB -aIA -bhn -bhn -bhn -ajq -ajq -ajq -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -qIU -hqX -aCa -bVO -gLs -kuC -bdR -bdQ -aJZ -bev -aKh -iHo -uTf -xsU -aJZ -bdQ -bdQ -bdP -bdP -bdP -bdR -bdP -bdQ -bdQ -aKk -aKi -gtX -aKi -aKi -aKn -bdQ -vhZ -aKm -gFh -bdU -bdU -aKp -tpF -bdR -bdQ -beo -bdP -aJZ -aKy -aKy -aKy -aKy -aKL -yjO -vtS -hHe -aKL -aKy -aKy -aKy -aKy -bdY -aKm -gtX -bdU -bdU -aKp -bdK -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdP -bdP -rTj -bdQ -bdQ -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(133,1,1) = {" -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aet -aet -abe -abe -abe -abe -abe -aet -afa -afa -afa -afa -afa -afa -afa -aSa -aSa -aSa -aht -kQG -pNV -ieP -dRa -aqt -tju -dPS -ujC -ujC -bkf -wcr -dlx -nnN -hEj -dlx -ieP -ieP -ieP -tkt -lUU -bQy -anw -oqK -kTQ -tmy -anw -ajq -ajq -ajq -ajq -ajq -bhn -dna -knW -gLs -gLs -gLs -gLs -uOk -aIA -xPv -qUB -aIA -elU -cVu -oOI -czA -clj -wis -iUT -pSH -qPA -dcn -aIA -jeu -kQp -aIA -aIA -bco -bco -aIA -aIA -bhn -bhn -bhn -bhn -bhn -ajq -ajq -ajq -ylo -ylo -ylo -ylo -ylo -ylo -qIU -qIU -gLs -gLs -gLs -kuC -bdS -bdP -bdx -aKl -idU -gtX -bew -aJZ -bdP -bdQ -bdQ -bdQ -bdQ -bdP -bdR -bdR -bdR -bdQ -aKk -aKi -gtX -aKi -aKi -aKn -bdP -bdQ -bcE -gtX -aKi -aKp -xxO -bdR -bdP -bdS -aJZ -bdP -aKy -aKy -fNL -fNL -plH -aKL -duI -vtS -wbb -aKL -hym -fNL -fNL -aKy -aKy -bdy -tFG -bdU -aKp -bdK -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdR -kuC -bdQ -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(134,1,1) = {" -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aht -fxk -xkT -gRX -mWW -aqt -lVr -qjk -nJe -iuj -iqb -ieP -nnK -gaj -iqb -ieP -nnK -hpU -gRX -ghf -eqz -cjs -cjs -cjs -cjs -cjs -qAl -qAl -knW -gxB -knW -knW -knW -knW -knW -knW -knW -knW -knW -sYK -aIA -iJQ -aIA -aIA -aIA -aIA -eMR -rAV -szi -feH -qMe -wIj -aIA -aIA -aIA -rnQ -aJO -aIA -jhE -xgP -xgP -xgP -xgP -jhE -jhE -bhn -bhn -bhn -bhn -bhn -ajq -ajq -ylo -ylo -ylo -ylo -ylo -ylo -aqL -bdR -bdZ -aJZ -eiG -bdP -bdP -aKk -bdU -aKi -rRR -bdK -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdP -bdR -bdP -bdP -aKk -aKi -gtX -bdU -aKi -aKn -bdP -bdQ -pWR -gEU -yfH -sZg -bdQ -bdQ -bdR -bdP -bdP -bdP -aKy -fNL -jMI -vpx -gWe -lKR -hXA -dNy -hXA -lKR -gWe -woH -jMI -fNL -aKy -beg -uRA -aKj -wkm -bdQ -bdQ -bdQ -bdQ -aJZ -bdS -bdS -bdQ -bdQ -bdQ -bdR -kuC -bdQ -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(135,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -qIU -bQN -bQv -bQN -qIU -aht -aht -aht -aqt -aqt -aqt -ecn -aqt -aqt -aqt -ecn -aqt -aqt -aOT -eLW -aQC -eJc -aQC -qAl -qAl -qAl -qAl -knW -knW -knW -knW -knW -knW -knW -mUm -knW -xCL -knW -knW -sYK -aIA -feH -lCV -kLc -lRl -aIA -sjQ -wTR -czv -feH -wTR -hUI -xFa -xFa -xFa -xFa -xFa -aIA -uyk -aen -aen -aen -aen -slk -xgP -xgP -xgP -jhE -bhn -bhn -bhn -ajq -ajq -ajq -ylo -ylo -ylo -ylo -aqL -aqL -bdP -tNp -jmU -fwq -jqz -hqU -osY -osY -tvf -bdQ -bdQ -bdQ -bdQ -bem -bdQ -bdQ -bdQ -bdQ -bdR -bdP -bdP -aKk -aKi -gtX -aKi -aKi -aKn -aJZ -bdS -aJZ -rTj -bdQ -bdQ -bdQ -bdQ -bdP -bdP -aJZ -aJZ -aKy -aKy -fNL -fNL -plH -aKL -kXw -vtS -vhd -aKL -hym -fNL -fNL -aKy -aKy -aJZ -eiG -smP -bdQ -bdQ -bdQ -bdQ -ukb -bdS -nln -beg -aJZ -bdQ -bdP -bdP -suf -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(136,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -qIU -aCa -bYQ -bUC -qIU -ylo -ylo -aht -wgK -esa -elO -ieP -dXH -aqt -lkn -ieP -tkt -aqt -aQV -aQO -aQO -yiu -aQC -qAl -qAl -knW -knW -knW -bhn -bhn -bhn -knW -jmR -cuC -cuC -cuC -cuC -cuC -cuC -iDg -wBR -uXv -sOA -feH -thg -mEI -gVu -feH -czv -rEO -rEO -feH -xJf -feH -feH -feH -nxM -aIA -uyk -aen -aen -aen -aen -oLI -aen -aen -aen -slk -jhE -jhE -bhn -bhn -bhn -ajq -ajq -ylo -ylo -ylo -ylo -aqL -beg -bdP -bdP -bdQ -aJZ -eiG -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdT -beE -beG -bdQ -bdQ -bdQ -bdQ -bdP -aJZ -aKk -aKi -gtX -aKi -aKi -aKn -aJZ -beo -aJZ -suf -aJZ -bdS -aJZ -bdQ -aJZ -aJZ -bdZ -aJZ -aJZ -aKy -aKy -aKy -aKy -aKL -xwr -vtS -wdE -aKL -aKy -aKy -aKy -aKy -aJZ -lKy -eiG -beo -bdQ -bdQ -bdQ -beo -bdx -bcS -dcU -lVF -hGf -jqz -jqz -fwq -paH -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(137,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -aSa -aSa -aSa -aSa -aSa -ylo -ylo -ylo -ylo -aSa -aSa -aSa -aSa -aSa -ylo -ylo -ylo -ylo -aSa -aSa -aSa -aSa -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -aSa -aSa -aSa -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -qIU -qIU -aSV -qIU -qIU -ylo -ylo -aht -aht -nVb -ieP -ieP -uMH -aqt -tne -ieP -hbP -aqt -aPb -aQW -aQO -yiu -aQC -qAl -knW -mUm -knW -bhn -bhn -bhn -bhn -bhn -sYK -mZK -knW -knW -knW -knW -mZK -bhn -aIA -oOy -dRl -reo -reo -xeS -sgc -oEk -twb -eew -oEk -oEk -oEk -oEk -uXv -feH -czX -aIA -uyk -aen -aen -aen -aen -aen -aen -aen -aen -aen -slk -xgP -xgP -xgP -xgP -jhE -ajq -ajq -ylo -ylo -ylo -aqL -aqL -bdQ -bdQ -bdQ -bdP -ooX -kCm -bdQ -bdQ -bdQ -bdT -bdV -beD -beF -beH -beG -bdQ -bdQ -bdQ -bdQ -bdS -aKk -aKi -gtX -aKi -aKi -beT -aKh -aKh -aKh -iHo -aKh -aKh -aKh -aKh -aKh -aKh -bdJ -aJZ -lKy -bdS -beo -aJZ -aJZ -aKL -soC -oFa -scU -aKL -bdS -aJZ -gqV -aJZ -aJZ -aJZ -eiG -bdP -bdQ -bdQ -bdZ -bdx -aKl -bdz -wSg -bdM -aKo -bcV -aJZ -beg -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(138,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blX -blU -blU -blU -bmv -bmv -bmv -bmv -bmv -blU -blU -blU -blU -bmv -bmv -bmv -bmv -bmv -blU -blU -blU -blU -bmv -bmv -bmv -bmv -bmv -blU -blU -blU -blU -blU -blU -blU -blU -blU -blU -blU -blU -blU -blU -blU -bmv -bmv -bmv -bmv -bmv -blU -blU -blU -blU -blU -blU -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -qIU -aOQ -qIU -ylo -ylo -ylo -ylo -aht -lnm -jnC -mwE -xgy -aqt -qLj -xZO -wHR -aht -aQz -aQz -aQz -eLW -aQC -knW -knW -knW -bhn -bhn -bhn -bhn -bhn -bhn -sYK -knW -knW -mUm -gxB -knW -bhn -bhn -aIA -jVa -eDT -gLs -gLs -gLs -elU -wyU -gba -dTa -wyU -dsm -gba -wTR -czv -feH -lfa -aIA -uyk -aen -aen -aen -aen -aen -aen -cwF -aen -aen -aen -aen -aen -aen -aen -slk -xgP -ajq -ajq -aSa -aSa -aSa -aqL -bdQ -bdQ -bdQ -bdQ -bdP -hDO -beE -aKh -aKh -aKl -aKi -bel -aKi -bdU -aKn -aJZ -bdQ -bdQ -bep -bei -aKk -bdU -gtX -aKi -aKi -aKi -aKi -aKi -aKi -gtX -aKi -bel -aKi -aKi -aKi -aKi -aKn -beg -smP -aJZ -aJZ -bem -bdS -aKL -tTy -vtS -eLJ -aKL -aJZ -bdZ -aJZ -bdS -bdS -bdS -eiG -bdQ -bdQ -bdQ -aJZ -vzK -bcR -bdC -gre -bcT -bdM -aKn -aJZ -bdQ -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(139,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aAo -ylo -ylo -ylo -ylo -ylo -aht -aht -aht -aht -aht -aht -aht -aht -aht -aht -ylo -ylo -ajq -knW -knW -saX -knW -bhn -bhn -bhn -bhn -bhn -bhn -knW -sYK -knW -knW -knW -knW -bhn -bhn -bhn -aIA -kzf -eHw -bQN -bUC -gLs -aIA -aIA -oMr -fHf -aIA -aIA -aIA -oRa -hLV -oRa -uTk -aIA -uyk -xzW -cZu -cZu -cZu -cZu -cZu -xFN -cZu -cZu -cZu -cZu -cZu -cZu -cZu -cZu -cZu -nbS -ajq -ajq -aSa -aSa -aqL -aqL -beg -beg -bdQ -bdQ -wCI -aKi -aKi -aKi -aKi -bdU -mti -idU -aKp -glr -aJZ -aJZ -bdQ -bdQ -bdQ -aKk -aKi -gtX -aKi -aKi -aKi -aKi -aKi -aKi -gtX -aKi -aKi -aKi -aKi -aKi -aKi -aKn -aJZ -aJZ -aKy -aKy -aKy -aKy -aKL -yjO -vtS -hHe -aKL -aKy -aKy -aKy -aKy -bdS -bdS -dzV -bdQ -bdQ -bdQ -gqV -aKk -bdA -nbT -gre -bdO -bdI -aKn -bdQ -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(140,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -knW -knW -knW -knW -bhn -bhn -bhn -bhn -knW -knW -knW -sYK -knW -knW -bhn -bhn -bhn -bhn -bhn -aIA -uQO -eKR -buU -bVN -gLs -nkY -qVa -syp -old -qVa -chu -aIA -wTR -czv -feH -wTR -aIA -uyk -mTa -muc -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -jIt -mTa -aen -ajq -ajq -aSa -aSa -aqL -aJZ -beg -aJZ -aJZ -kow -rwo -rwo -rwo -jba -rwo -vYe -jba -nwj -jqz -bVE -eNM -fwq -jqz -jqz -upr -rwo -vYe -rwo -rwo -rwo -rwo -rwo -rwo -vYe -rwo -rwo -rwo -rwo -xoy -bdU -aKn -aJZ -aKy -aKy -fNL -fNL -plH -aKL -duI -vtS -pMJ -aKL -hym -fNL -fNL -aKy -aKy -bdS -rTj -bdQ -bdQ -bdQ -beg -aKk -bdB -bdG -siu -bdI -aKp -bea -bdQ -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(141,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -knW -knW -knW -knW -bhn -bhn -bhn -gxB -mUm -knW -jmR -cuC -eEo -knW -bhn -bhn -bhn -bhn -bhn -bhn -gLs -bQv -bQv -gLs -gLs -gLs -fuj -xnd -feH -czv -vyz -clE -aJl -hbx -mwN -feH -emr -aIA -uyk -mTa -jJT -bgB -bgB -lWe -lWe -lWe -lWe -bgB -lWe -lWe -lWe -lWe -bgB -bgB -uyk -mTa -aen -aen -ajq -ajq -aSa -aqL -aqL -aJZ -bdZ -aJZ -aKk -aKi -aKp -aKj -aKj -aKj -aKm -ben -bdK -aJZ -eiG -bdS -bdP -bdP -aJZ -aKk -aKi -aKi -bel -aKi -aKi -bdU -aKi -aKi -aKi -aKi -aKi -aKi -aKi -gtX -aKi -aKn -bdZ -aKy -fNL -jMI -vpx -gWe -lKR -hXA -iyi -hXA -lKR -gWe -woH -jMI -fNL -aKy -bdP -rTj -bdP -bdQ -bdQ -bdQ -bdy -aKm -bdU -rRR -aKj -bcU -bdQ -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(142,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -knW -knW -gxB -knW -knW -bhn -bhn -bhn -knW -knW -jbF -vjD -knW -knW -knW -bhn -bhn -bhn -bhn -bhn -bhn -gLs -bDM -bUW -hqX -hqX -gLs -fZL -emr -feH -czv -emr -gto -aJl -emr -feH -hjO -vfH -aIA -uyk -mTa -jJT -bgB -dnU -lYw -lYw -lYw -lYw -lYw -lYw -lYw -lYw -lYw -tXj -bgB -uyk -mTa -aen -aen -jJT -ajq -ajq -aSa -aqL -aqL -bdQ -gqV -bdy -tTd -bdK -bdQ -aJZ -bdQ -bdY -bea -aJZ -bdS -eiG -bdQ -bdQ -bdP -bdP -bdy -aKj -aKj -aKj -aKj -aKj -aKm -aKi -aKp -aKj -aKj -beR -aKi -aKi -gtX -aKi -aKo -bdJ -aKy -aKy -fNL -fNL -plH -aKL -rDS -cug -sqp -aKL -hym -fNL -fNL -aKy -aKy -aJZ -eiG -bdP -bdP -bdQ -bdQ -bdQ -bdy -aKj -fzd -bdQ -bdQ -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(143,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -knW -knW -knW -knW -knW -bhn -bhn -bhn -bhn -bhn -knW -knW -sYK -knW -mUm -knW -bhn -bhn -bhn -bhn -bhn -jhE -gLs -hqX -bQt -bQt -hqX -gLs -uWR -emr -qRI -mwN -emr -mYg -aIA -wTR -feH -czv -wTR -aIA -uyk -mTa -jJT -lWe -cKf -oQh -tak -tak -tak -oQh -tak -sgR -eiF -dKp -dGo -lWe -uyk -mTa -aen -aen -jJT -jhE -ajq -aSa -aSa -aqL -bdQ -bdQ -aJZ -aJZ -aJZ -bdQ -bdQ -bdQ -bdQ -bdQ -bdP -bdP -rTj -bdR -bdQ -aJZ -bdR -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -aKk -aKi -aKo -bcG -aJZ -aKk -aKi -aKi -gtX -aKi -aKi -aKo -bdJ -aKy -aKy -aKy -aKy -aKL -aKL -jWR -aKL -aKL -aKy -aKy -aKy -aKy -aJZ -aJZ -eiG -aJZ -beg -bdQ -bdQ -bdQ -bdR -bdR -kuC -bdQ -bdQ -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(144,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -dna -knW -knW -mUm -knW -bhn -bhn -bhn -bhn -bhn -knW -knW -sYK -knW -knW -bhn -bhn -bhn -bhn -bhn -jhE -jhE -gLs -gLs -gLs -gLs -gLs -gLs -hLC -gba -feH -feH -ugo -edQ -aIA -oRa -oRa -hLV -ufS -aIA -uyk -mTa -jJT -lWe -cKf -tak -sgR -tak -sEv -tak -wGs -tak -wkp -tak -dGo -lWe -uyk -mTa -aen -aen -jJT -jhE -ajq -ajq -aSa -aqL -aqL -bdQ -bdP -aJZ -aJZ -aJZ -aJZ -bdQ -bdQ -bdQ -bdQ -bdP -eiG -bdQ -bdQ -spU -bdR -bdP -bdQ -bdQ -bdQ -bdQ -bcD -aKl -aKi -idU -aKo -aKh -aKl -aKi -aKi -gtX -aKi -aKi -bdU -beb -bcV -xsU -aJZ -aJZ -aKL -mpH -sRc -lIO -aKL -bdP -bdP -aJZ -aJZ -aJZ -bdS -eiG -aJZ -beo -aJZ -bdQ -bdQ -bdP -bdP -suf -bdQ -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(145,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -knW -knW -mUm -knW -knW -knW -bhn -bhn -bhn -bhn -knW -knW -mZK -sYK -bhn -bhn -bhn -bhn -bhn -bhn -jhE -jhE -jhE -jhE -xgP -xgP -xgP -jhE -aIA -aIA -ktt -feH -feH -dNi -aIA -aIA -rZl -ouT -vPS -ouT -boe -uyk -mTa -jJT -lWe -cKf -tak -dKp -tak -tak -lcv -tak -tak -wGs -tak -dGo -lWe -uyk -cUc -cZu -nbf -jlD -jlD -wgy -ajq -ajq -aSa -aqL -aqL -bdP -bdP -bdP -aJZ -xsU -bdQ -bdR -bdQ -bdQ -bdQ -kuC -bdQ -bdQ -bdQ -bdP -bdP -bdS -aJZ -bdR -bcD -bcF -aKi -bes -aKi -aKi -jlL -aKi -aKi -aKi -gtX -aKi -aKi -aKi -bdU -bee -aJZ -bdZ -beo -aKL -rWU -ciA -ezu -aKL -bdP -aJZ -xsU -aJZ -beo -aJZ -tzY -jqz -jqz -jqz -jqz -jqz -jqz -fwq -paH -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(146,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -knW -knW -pRU -knW -knW -gxB -knW -knW -bhn -bhn -knW -knW -knW -knW -sYK -bhn -bhn -bhn -bhn -bhn -jhE -jhE -jhE -jhE -qPQ -aen -aen -aen -slk -jhE -bcm -cRq -feH -feH -wQD -bcm -dPQ -ouT -ouT -vPS -ouT -dtv -uyk -mTa -jJT -bgB -cKf -wkp -tak -jGB -nCZ -tak -vXF -tak -tak -tak -dGo -bgB -uyk -aen -aen -bhn -jhE -jhE -sfS -jhE -ajq -aSa -aSa -aqL -aqL -bdQ -bdQ -bdS -aJZ -aJZ -bcD -aPG -beE -aKh -kDt -bdQ -bdQ -bdQ -bdQ -bdP -bem -bdP -bdR -bcE -bdU -qoh -bdU -aKi -aKi -aKi -aKi -aKi -aKi -gtX -aKi -aKi -bel -aKi -bee -aJZ -aJZ -bdP -aKL -aKL -aKL -aKL -aKL -bdR -bdR -bdR -bdQ -bdQ -bdQ -diD -lKy -bdS -aJZ -aJZ -spU -aJZ -aJZ -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(147,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -knW -knW -rcd -knW -knW -knW -knW -knW -knW -knW -knW -knW -knW -knW -sYK -knW -knW -bhn -bhn -knW -mEb -jhE -jhE -qPQ -aen -aen -aen -aen -aen -jJT -bcm -isv -cZh -fHB -iTO -bcm -ouT -ouT -ouT -lWE -ihq -wxH -rtH -xoj -jJT -lWe -cKf -sEv -tak -tak -tak -tak -pxz -jDT -iSq -tak -dGo -lWe -uyk -aen -bhn -bhn -bhn -jhE -sfS -jhE -ajq -ajq -aSa -aSa -aqL -aqL -bdQ -aJZ -aJZ -bdS -ehg -rwo -rwo -rwo -imz -bdJ -bdQ -bdQ -bdR -bdP -bdQ -bdR -bdQ -vhZ -mSo -ber -aKi -aKi -aKi -aKi -aKi -aKi -aKi -gtX -aKi -aKi -aKi -aKp -bdK -bdZ -bdS -bdP -bdP -bdR -bdR -bdP -bdS -aJZ -bdP -bdQ -bdQ -bdQ -bdR -eiG -bdZ -bdS -bdS -beo -bdP -bdP -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(148,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -knW -knW -knW -hEZ -cuC -cuC -cuC -cuC -pvZ -mYC -cuC -cuC -cuC -cuC -cuC -iDg -cuC -cuC -cuC -mYC -hiz -hEe -jlD -rtH -cZu -cZu -cZu -cZu -cZu -nbS -jJT -bcm -pkN -nvl -kNh -lYg -bcm -ouT -ouT -ouT -vPS -ouT -dtv -uyk -aen -jJT -lWe -cKf -tak -tak -tak -tak -tak -pxz -xEz -tak -nCZ -dGo -lWe -uyk -aen -bhn -bhn -bhn -dqM -kFc -wgy -bhn -ajq -aSa -aSa -aSa -aqL -aqL -bdP -bdP -aJZ -vhZ -aPJ -aKi -bdU -elR -aKo -bdJ -aJZ -bdR -bdP -bdQ -bdQ -bdQ -bdQ -aKk -aKi -aKi -bel -aKi -aKi -aKi -bdU -aKi -gtX -aKi -aKi -aKi -sqr -bdQ -bdS -bdS -bdS -bdP -bdR -bdR -bdS -bdZ -bdP -bdP -bdQ -bdQ -vcx -pgO -vQg -bdP -bdP -aJZ -bdQ -bdQ -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(149,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -knW -knW -knW -mUm -knW -knW -knW -bhn -knW -sYK -mUm -knW -bhn -bhn -knW -knW -xCL -knW -knW -sYK -knW -knW -bhn -uyk -aen -aen -aen -aen -aen -mTa -jJT -bcn -bcn -bcn -bcn -bcn -bcn -ouT -ouT -ouT -vPS -ouT -dtv -uyk -oLI -jJT -lWe -cKf -tak -tak -wGs -tak -sgR -dkc -tsD -tak -oQh -dGo -lWe -uyk -aen -aen -bhn -bhn -bhn -jhE -sfS -jhE -ajq -ajq -aSa -aSa -aSa -aqL -aYR -bdP -aJZ -bdQ -aKk -aKi -aKi -quG -jba -gEy -aJZ -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdY -bed -aKj -aKm -aKi -aKi -pOs -aKi -aKi -gtX -aKi -aKi -aKp -bea -bdQ -bdS -beg -bdP -bdP -bdQ -bdQ -beo -bdP -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -rTj -bdP -bdQ -bdQ -bdQ -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(150,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -knW -knW -knW -knW -mUm -knW -knW -bhn -bhn -cel -nAG -cel -aOC -bhn -bhn -bhn -bhn -knW -knW -knW -sYK -knW -bhn -bhn -jhE -jIt -aen -opW -aen -oLI -mTa -slk -xgP -xgP -xgP -xgP -xgP -jhE -vhs -ouT -ouT -vPS -ouT -dtv -jhE -qpr -jhE -bgB -cKf -tak -hon -tak -oQh -tak -tak -tYT -eYM -wkp -dGo -bgB -uyk -aen -aen -bhn -bhn -bhn -jhE -sfS -jhE -bhn -aQz -aQz -aQz -aQz -aQz -aYR -aYR -bdP -bdQ -bdy -wSb -aKj -aKj -hJw -heL -aJZ -bdP -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdP -bdP -xRq -aKm -jIm -aKi -aKi -aKi -flB -rwo -rwo -wrC -bdQ -bdQ -bdQ -bdP -bdP -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdR -kuC -bdR -bdQ -bdQ -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(151,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -cPi -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ajq -ajq -knW -saX -knW -knW -knW -knW -bhn -bhn -bhn -knW -sYK -knW -bhn -bhn -bhn -bhn -bhn -knW -knW -mUm -oAh -bhn -bhn -bhn -bhn -jhE -jIt -aen -aen -aen -mTa -aen -aen -aen -aen -aen -oLI -jJT -vhs -ouT -ouT -vPS -ouT -ouT -nKb -nKb -nKb -qKU -tak -tak -tak -tak -tak -jSJ -tak -sPd -tak -eiF -dGo -lWe -uyk -aen -aen -jJT -bhn -bhn -bhn -sfS -jhE -jhE -aQC -pEq -kJY -aQJ -aQV -aRb -aQC -eLW -aYR -bdR -bdR -bdQ -bdQ -aJZ -eiG -aJZ -bdP -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -bdQ -rUq -fwq -lYc -osY -geN -rwo -rwo -ceR -aKi -aKi -aKn -bdQ -bdQ -bdQ -bdR -bdQ -bdQ -bdQ -bdQ -bdQ -rUH -bdQ -bdP -bdS -bdS -bdP -bdP -rTj -bdP -aqL -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(152,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -cPi -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ajq -knW -knW -knW -knW -knW -knW -bhn -bhn -bhn -knW -knW -sYK -knW -bhn -bhn -bhn -bhn -bhn -bhn -mUm -knW -sYK -bhn -bhn -bhn -bhn -bhn -jhE -qpr -jIt -aen -cUc -cZu -cZu -cZu -cZu -ejl -cZu -xBc -chM -ihq -ihq -jBu -ouT -ouT -ouT -ouT -ouT -wmS -tak -tak -tak -eiF -eiF -wkp -tak -qDS -tak -ngl -dGo -lWe -uyk -aen -aen -jJT -jhE -jhE -bhn -sfS -jhE -jhE -mUV -kJY -kJY -aQO -aQW -aQO -kJY -yiu -aYR -aYR -aPN -bdQ -bdQ -aJZ -eii -wiJ -bdJ -bdQ -bdQ -bdx -sGQ -bdJ -bdQ -bdQ -eiG -bdP -bdQ -bdP -aKk -aKi -aKi -gtX -aKi -aKi -tJf -bdJ -bdQ -bdQ -bdR -bdQ -bdQ -bdQ -bdQ -bdQ -vcy -cMa -bVX -bVX -jqz -bVX -bVX -paH -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(153,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -cPi -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ajq -ajq -knW -knW -knW -knW -bhn -bhn -bhn -bhn -bhn -knW -mFo -sYK -knW -knW -bhn -bhn -bhn -bhn -bhn -knW -mUm -sYK -bhn -bhn -bhn -bhn -bhn -bhn -bhn -jhE -jIt -aen -aen -aen -aen -aen -mTa -aen -jJT -vhs -ouT -ouT -lWE -ihq -ihq -ihq -ihq -ihq -bJo -fFP -fFP -wkB -fFP -fFP -lBb -tak -dKp -uAd -tak -dGo -lWe -uyk -aen -aen -slk -jhE -jhE -jhE -sfS -jhE -bhn -bhn -aQz -aQz -aQJ -aQO -aQJ -yiu -jhS -aYR -aYR -aYR -aqL -bdQ -bcD -kzA -rwo -mIY -lVF -lVF -sem -rwo -wlY -kDL -uBH -nck -bdP -bdQ -bcD -aKl -aKi -aKi -gtX -aKi -aKi -bel -aKn -bdQ -bdP -bdP -bdQ -bdQ -bdQ -bdQ -bdP -eiG -aJZ -bdS -aJZ -smP -bdS -aqL -aqL -aqL -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(154,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -cPi -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ajq -knW -dna -knW -knW -knW -bhn -bhn -bhn -bhn -bhn -knW -knW -rcd -knW -knW -bhn -bhn -bhn -bhn -bhn -knW -knW -sYK -bhn -bhn -bhn -bhn -bhn -bhn -bhn -bhn -jhE -qpr -jIt -aen -aen -aen -mTa -aen -jJT -vhs -ouT -ouT -vPS -ouT -ouT -chA -chA -chA -kVS -eiF -eiF -tak -lcv -tak -tak -sFl -tak -tak -tak -dGo -lWe -uyk -aen -aen -aen -bhn -jhE -jhE -sfS -bhn -bhn -bhn -bhn -aQz -yiu -kJY -aQC -aQC -aQC -jOh -jOh -jOh -aqL -aqL -aqL -vaI -aKi -aKi -bdU -wpV -bcI -aKi -gXN -bdU -rzy -bdP -bdQ -bdQ -aKk -aKi -aKi -aKi -gtX -bdU -aKi -aKi -bee -bdR -bdP -bdS -bdP -bdP -bdQ -bdP -bdP -eiG -bdZ -lKy -gqV -aqL -aqL -aqL -ylo -ylo -ylo -aEw -aEw -auQ -auQ -aEw -aEw -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(155,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -cPi -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ajq -knW -knW -knW -knW -bhn -bhn -bhn -bhn -olg -tIk -knW -knW -sYK -knW -knW -tIk -uht -bhn -bhn -bhn -bhn -knW -weM -knW -bhn -bhn -bhn -bhn -bhn -bhn -bhn -bhn -bhn -jhE -jIt -aen -aen -mTa -aen -jJT -vhs -ouT -ouT -vPS -ouT -dtv -jhE -xgP -jhE -bgB -cKf -jDt -tak -dKp -tak -wkp -tak -qDS -tak -lcv -dGo -bgB -uyk -aen -aen -bhn -bhn -jhE -jhE -sfS -bhn -bhn -bhn -bhn -aQz -vwP -yiu -aQC -rOf -dmm -klL -hsp -dmm -dmm -kqT -aqL -aqL -aqL -aKi -jlL -aKi -bdU -aKi -aKi -aKp -bdK -bdQ -bdQ -bdQ -aKk -aKi -aKi -aKi -flB -rwo -rwo -jba -gOk -pgO -fwq -bVX -jqz -fwq -pgO -fwq -nlm -bVH -aJZ -aJZ -aqL -aqL -ylo -ylo -ylo -ylo -aEw -aEw -hMO -fXZ -fmX -dlo -aEw -aEw -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(156,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -cPi -pdg -pdg -pdg -pdg -pdg -pdg -ajq -ajq -knW -knW -knW -knW -bhn -bhn -bhn -bhn -aVR -cel -knW -knW -sYK -knW -wLn -cel -aVR -bhn -bhn -bhn -bhn -knW -sYK -nHB -bhn -bhn -bhn -bhn -bhn -bhn -bhn -bhn -bhn -bhn -uyk -aen -sDi -mvL -aen -jJT -vhs -ouT -ouT -vPS -ouT -dtv -uyk -oLI -jJT -lWe -cKf -tak -tak -xNf -tak -owN -tak -oQh -mvR -tak -dGo -lWe -uyk -aen -aen -bhn -bhn -jhE -jhE -sfS -jhE -jhE -bhn -bhn -aQz -aQz -eLW -aQC -jYM -oRr -nsK -nsK -nsK -nOq -jXX -iuQ -qVx -aqL -aqL -aqL -aKi -bdU -jIm -uIh -bdK -bdQ -bdQ -bdQ -gqV -aKk -aKi -aKi -aKi -gtX -aKi -aKp -yfH -bcK -bdR -bdS -bdS -beo -aJZ -bdR -bdP -bdP -aQC -eLW -aQC -aQz -ylo -ylo -ylo -ylo -ylo -aEw -xiw -hMO -uzO -wGz -dlo -nUS -aEw -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(157,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -cPi -pdg -pdg -pdg -pdg -pdg -pdg -ajq -knW -knW -mZK -knW -knW -bhn -bhn -bhn -bhn -kso -tIk -knW -mFo -sYK -knW -knW -tIk -kvv -bhn -bhn -bhn -bhn -nHB -qDs -jhE -jhE -bhn -bhn -bhn -bhn -bhn -bhn -bhn -bhn -jhE -qPQ -aen -aen -mTa -aen -jJT -vhs -ouT -ouT -vPS -ouT -dtv -uyk -aen -jJT -lWe -jLH -tak -lcv -dAn -tak -sEv -tak -wGs -tak -tak -dGo -lWe -uyk -aen -aen -bhn -bhn -bhn -jhE -sfS -jhE -jhE -qPQ -bhn -bhn -ajq -tsE -tsE -jYM -lWF -jPH -jur -ljy -jYM -mUU -thj -ogN -asD -ylo -aqL -aqL -aqL -aqL -bdQ -bdQ -bdQ -bdQ -bdP -beh -iiI -beY -aKi -aKi -gtX -aKi -aKn -bdP -bdQ -bdQ -bdQ -bdZ -bdZ -beo -aqL -aqL -aQz -aQC -kJY -bcx -aQz -aEw -aEw -aEw -aEw -aEw -aEw -kul -hMO -obn -ssF -dlo -rIx -aEw -aEw -aEw -aEw -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(158,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -cPi -pdg -pdg -pdg -pdg -pdg -pdg -ajq -knW -knW -knW -mUm -bhn -bhn -bhn -bhn -aVR -tIk -tIk -knW -knW -sYK -knW -knW -tIk -tIk -bhn -bhn -bhn -bhn -jhE -sfS -jhE -jhE -jhE -bhn -bhn -bhn -bhn -bhn -bhn -jhE -qPQ -aen -aen -aen -mTa -aen -jJT -vhs -ouT -ouT -vPS -ouT -dtv -uyk -aen -jJT -lWe -cKf -oQh -tak -wIi -trK -tak -tak -tak -wkp -tak -dGo -lWe -uyk -aen -aen -bhn -bhn -bhn -jhE -sfS -xgP -qPQ -aen -aen -bhn -ajq -ykk -tsE -jYM -lWF -lLR -akq -xZQ -jYM -mUU -lWF -dbD -afd -ylo -ylo -aSa -ylo -aqL -aqL -aqL -aYR -aYR -aYR -aJZ -qEG -aKk -aKi -aKi -gtX -aKi -boB -bdQ -bdQ -aqL -aqL -aqL -aqL -aqL -aqL -ylo -aQz -pjJ -aQW -aQJ -aQC -jhx -whY -uHr -kGz -enx -sgZ -sgZ -sgZ -sgZ -jKj -sgZ -wDQ -auH -fYe -cTF -aEw -aEw -aEw -aEw -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(159,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -cPi -pdg -pdg -pdg -pdg -pdg -pdg -ajq -gxB -knW -knW -knW -bhn -bhn -bhn -ppt -cel -tIk -mUm -knW -saX -pPn -cfQ -knW -tIk -aVR -bhn -bhn -bhn -bhn -jhE -sfS -jhE -xgP -xgP -jhE -bhn -bhn -jhE -jhE -xgP -qPQ -aen -aen -aen -aen -mTa -aen -jJT -vhs -ouT -ouT -vPS -ouT -dtv -uyk -aen -jJT -bgB -fuB -hib -hib -hib -hib -hib -hib -hib -hib -hib -nCn -bgB -uyk -aen -aen -aen -bhn -bhn -bhn -rDD -aen -aen -aen -aen -aen -ajq -imc -sOG -jYM -lWF -pMm -jeB -vEQ -jYM -mUU -lWF -hes -afd -ylo -ylo -aSa -ylo -ylo -ylo -atA -sBi -nHK -auh -auh -auh -atA -ukh -ukh -vyy -sGH -aLV -auj -auj -aLV -aLV -ylo -ylo -ylo -ylo -ylo -aQz -lSt -aQO -kJY -mUV -jhx -sVk -xPE -mGS -mGS -yhR -pCA -pCA -iNS -pCA -wQW -fEb -auS -sgZ -sgZ -qPR -ppI -hAc -aEw -aEw -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(160,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ozR -ozR -ozR -ozR -ozR -pdg -pdg -pdg -pdg -ajq -knW -knW -knW -knW -bhn -bhn -bhn -tIk -wLn -jmR -cuC -cuC -cuC -lRf -knW -xCL -cel -kso -bhn -bhn -bhn -jhE -jhE -rua -qPQ -aen -aen -slk -jhE -jhE -jhE -qPQ -aen -aen -aen -aen -aen -aen -mTa -aen -jJT -vhs -ouT -ouT -vPS -ouT -dtv -uyk -aen -jJT -bgB -bgB -lWe -lWe -lWe -lWe -bgB -lWe -lWe -lWe -lWe -bgB -bgB -uyk -aen -aen -aen -aen -bhn -bhn -mTa -aen -aen -aen -aen -aen -ajq -qVx -qUN -jYM -jXX -dmm -nJU -vet -tQf -gHN -idV -ogN -afd -ylo -ylo -aSa -ylo -ylo -ylo -anD -eBV -pgo -nzY -xfw -oGx -aui -weI -fJl -lPt -rsc -aLU -dMF -sQn -jzH -aNw -ylo -ylo -ylo -ylo -ylo -aQz -aQz -aQz -aQz -aQz -oiu -sVk -xPE -mGS -mGS -mhY -mGS -mGS -mFW -mGS -yal -pCA -kEL -pCA -pCA -eLw -mpG -mGS -frs -aEw -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(161,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ozR -ozR -ozR -ozR -ozR -pdg -pdg -pdg -ajq -ajq -knW -knW -knW -knW -bhn -bhn -aVR -tIk -knW -sYK -knW -mFo -knW -knW -knW -mFo -tIk -aVR -bhn -bhn -bhn -jhE -uyk -vyB -cZu -cZu -cZu -cZu -vjz -nai -hbt -cZu -cZu -cZu -cZu -cZu -cZu -cZu -xFN -cZu -xBc -chM -ihq -ihq -jBu -ouT -dtv -uyk -aen -slk -xgP -xgP -xgP -xgP -xgP -xgP -xgP -xgP -xgP -xgP -xgP -xgP -xgP -qPQ -aen -aen -aen -aen -aen -bhn -mTa -aen -aen -aen -aen -aen -ajq -asD -asD -jYM -mUU -mUU -mUU -mUU -mUU -mUU -tZc -qVx -asD -ylo -ylo -aSa -ylo -ylo -ylo -anD -eBV -hcR -pzb -xGD -fVS -aui -obM -fJl -fJl -obM -aLU -nuA -rEg -nqY -aNw -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -aEw -sVk -jhx -uHr -lNJ -gPg -mhY -tCB -vNh -tat -dFU -eOk -til -auS -kcD -mGS -dLo -mGS -mUp -wTm -auQ -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(162,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ozR -ozR -ozR -ozR -ozR -pdg -pdg -pdg -ajq -knW -knW -knW -knW -xCL -bhn -bhn -aVR -cel -knW -sYK -mZK -knW -knW -gxB -knW -knW -bhn -bhn -bhn -bhn -bhn -bhn -uyk -mTa -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -oLI -jJT -vhs -ouT -ouT -vPS -ouT -dtv -uyk -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -oLI -aen -aen -aen -mTa -aen -aen -aen -aen -aen -aen -jOh -sgy -svh -nsK -mHD -dkZ -crz -nsK -nsK -gNI -ykk -asD -asD -asD -asD -atA -atA -atA -atA -oRf -hcR -rSn -xbU -hVe -aui -cCs -wbY -fJl -weI -aLU -qtW -qHw -kvI -aLV -ylo -avm -auE -auE -avm -aSa -avm -auE -auE -aEw -jhx -jhx -auH -auH -auH -lOv -auH -auH -auH -tIl -sZB -xJv -auH -kVW -jLA -mdT -kcD -mGS -hXO -auQ -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(163,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ozR -ozR -ozR -ozR -ozR -pdg -pdg -pdg -ajq -knW -knW -knW -knW -knW -knW -bhn -ppt -tIk -knW -sYK -knW -knW -bhn -aOC -cel -aOC -bhn -bhn -bhn -bhn -bhn -bhn -uyk -mTa -muc -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -jhE -vhs -ouT -ouT -vPS -ouT -dtv -jhE -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -ogY -qpr -qpr -qpr -qpr -qpr -qpr -jOh -nxH -iDT -jQn -qwh -uWy -wHs -eLq -tsE -hPz -tsE -mrK -aCu -aCK -qRV -weI -aCO -aCX -orN -hcR -smC -nXk -auh -auh -atA -ukh -vyy -ukh -efg -aLV -kXP -gUg -aNq -aNq -aNq -aNq -oAb -sCs -avm -avm -avm -lpW -sCs -aNq -rfe -aNq -auB -dGu -chT -mhY -kDU -wDQ -auH -lmP -sZB -xJv -auH -auH -auH -auH -auH -inP -bwS -aEw -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(164,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ozR -ozR -ozR -ozR -ozR -pdg -pdg -pdg -ajq -knW -saX -knW -knW -knW -knW -bhn -aOC -aOC -cel -nAG -cel -bhn -bhn -bhn -puf -bhn -bhn -bhn -bhn -bhn -bhn -jhE -uyk -mTa -jJT -aJm -aJm -qAy -qAy -aJm -aJm -qAy -qAy -aJm -aJm -nKb -nKb -nKb -nKb -nKb -nKb -ouT -ouT -ouT -vPS -ouT -ouT -nKb -nKb -nKb -nKb -nKb -nKb -nKb -nKb -nKb -nKb -nKb -nKb -nKb -nKb -nKb -nKb -nKb -nKb -nKb -nKb -nKb -nKb -nKb -tyS -nKb -nKb -nKb -nKb -nKb -wmB -asD -ajm -ajm -ajm -asD -ajm -ajm -akq -mUU -xIO -akq -akq -akq -akq -akq -akB -akB -akB -akB -sFz -qxm -pgo -sZh -dQK -akB -ifu -boC -pYJ -gPS -jrx -dZi -wBO -aNq -hyd -lSQ -jZg -jCD -fYl -jIA -hnO -sRn -fYl -jCD -jZg -jZg -qGw -auB -kiI -jhx -scf -eNg -qWt -auH -dXn -sZB -vNR -auH -mJn -tCt -cpv -chT -mGS -nEp -auQ -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(165,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ozR -ozR -ozR -ozR -ozR -pdg -pdg -pdg -ajq -knW -knW -knW -knW -knW -knW -knW -knW -knW -mZK -sYK -knW -bhn -bhn -bhn -bhn -bhn -bhn -bhn -bhn -bhn -jhE -jhE -qPQ -mTa -jJT -aJm -xKi -eah -eah -eah -eah -eah -eah -eah -aJm -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -vPS -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -vPS -ouT -ouT -ouT -ouT -ouT -ouT -feT -nqp -vwC -rKW -fRq -iWk -juK -ctD -sjc -mTs -juK -lxW -hgE -lxW -lxW -lxW -lxW -nwM -akB -rjC -qxm -hcR -hpS -lbN -aui -tMh -mTs -sjc -cXl -vvs -yjb -nqY -aNq -onq -sxh -bRu -bRu -sKi -iCM -iCM -iCM -dLW -bRu -bRu -sKi -pyC -auB -uUS -fdx -jtt -lau -quF -auH -gTQ -sZB -xJv -auH -jwr -mGS -mGS -mGS -mGS -jVJ -auQ -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(166,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ozR -ozR -ozR -ozR -ozR -pdg -pdg -pdg -ajq -knW -knW -knW -mUm -knW -knW -knW -knW -knW -knW -sYK -dna -bhn -bhn -bhn -bhn -bhn -bhn -bhn -bhn -bhn -jhE -qPQ -aen -mTa -jJT -qAy -kst -rkp -eqk -kgK -kgK -slF -kgK -kgK -rtj -ihq -ihq -roc -ihq -ihq -ihq -ihq -ihq -roc -guI -ihq -ihq -ihq -ihq -ihq -ihq -ihq -ihq -ihq -duw -ihq -ihq -ihq -ihq -ihq -ihq -roc -ihq -ihq -ihq -ihq -ihq -ihq -ihq -ihq -guI -ihq -roc -ihq -ihq -ihq -ihq -jlm -hxn -jeQ -jeQ -kYB -sjc -sjc -sjc -sjc -boC -pYJ -pYJ -kny -pYJ -pYJ -pYJ -wtZ -pAj -akB -rjC -qxm -hcR -ulE -imo -aui -liC -mTs -sjc -dil -aLY -tFO -hDB -aNq -gFP -qwC -xJp -xJp -nyT -iFk -iCM -iCM -qwC -xJp -xJp -nyT -xbF -auB -eoc -cnY -cnY -cnY -tjA -auH -gTQ -sZB -fEb -auH -env -vqz -dlX -mGS -mGS -pjO -aEw -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(167,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ozR -ozR -ozR -ozR -ozR -pdg -pdg -pdg -ajq -knW -knW -dna -knW -bhn -knW -knW -knW -xCL -knW -sYK -nHB -bhn -jhE -bhn -bhn -bhn -bhn -bhn -bhn -jhE -qPQ -aen -sDi -mvL -jJT -qAy -kst -rkp -kjK -rkp -rkp -gEv -rkp -rkp -aJm -ouT -ouT -vPS -ouT -ouT -ouT -ouT -ouT -vPS -ouT -ouT -ouT -ouT -ouT -ouT -ouT -vdw -vdw -vdw -vdw -ouT -ouT -ouT -ouT -ouT -ouT -vPS -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -vPS -ouT -ouT -ouT -ouT -kYB -jeQ -jeQ -kLD -jlm -pYJ -pYJ -pYJ -pYJ -mmJ -sjc -sjc -sjc -sjc -sjc -sjc -mTs -pAj -akB -akB -qxm -vaz -akB -akB -akB -wMX -mTs -sjc -oxg -auj -auj -auj -aNq -hFN -qwC -suD -kFn -rQu -wbw -auB -iLc -cZd -iJt -tgl -nyT -iUz -auB -auH -auH -auH -auH -auH -auH -auH -rob -pCA -osC -pCA -pCA -evf -cnY -cnY -aEw -aEw -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(168,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ozR -ozR -ozR -ozR -ozR -pdg -pdg -pdg -ajq -knW -knW -bhn -bhn -bhn -bhn -knW -knW -knW -knW -sDk -jhE -jhE -jhE -xgP -xgP -bhn -bhn -xgP -xgP -qPQ -aen -aen -aen -mTa -jJT -qAy -kst -rkp -kjK -slQ -rkp -rkp -rkp -rkp -jWL -vdw -ouT -vPS -ouT -ouT -ouT -ouT -ouT -vPS -ouT -ouT -ouT -ouT -ouT -ouT -peo -vdw -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -vPS -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -ouT -vPS -ouT -ouT -ouT -ouT -kYB -rKW -vwC -bMg -kYB -vpZ -cXl -npC -sjc -mTs -wpn -jNY -jNY -jNY -gxS -sjc -mTs -juK -lxW -lkz -mTs -sjc -juK -lxW -lxW -lkz -mTs -sjc -mwu -ykL -lDn -iWk -aNq -hFN -qwC -cFy -xPO -jnF -xfd -auB -dhz -lJM -kFn -suD -nyT -iUz -auB -cOl -mGS -qwb -fJS -pCA -pCA -mco -xGH -til -auH -ewX -mGS -gme -aEw -aEw -aEw -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(169,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ozR -ozR -ozR -ozR -ozR -pdg -pdg -pdg -ajq -knW -knW -bhn -bhn -bhn -bhn -knW -knW -jmR -cuC -uui -jlD -vIF -hbt -cZu -cZu -cZu -cZu -cZu -cZu -cZu -cZu -cZu -cZu -xoj -jJT -qAy -kst -rkp -lQo -rkp -rkp -rkp -rkp -rkp -aJm -ouT -vdw -vPS -ouT -ouT -ouT -chA -chA -qER -chA -chA -chA -chA -chA -chA -vdw -ouT -ouT -ouT -ouT -chA -chA -chA -chA -chA -chA -qER -chA -chA -chA -chA -chA -chA -chA -chA -chA -chA -qER -chA -chA -chA -ygv -asH -azV -azV -azV -asH -amv -amv -wne -sjc -mTs -nTf -wpn -jNY -gxS -mrj -sjc -wXM -pYJ -ttH -pYJ -kny -pYJ -pYJ -pYJ -pYJ -pYJ -kny -pYJ -pYJ -pYJ -wtZ -ppn -auB -gFP -qwC -xJp -xJp -owK -bUp -vHH -dCx -lkK -xJp -xzN -nyT -xbF -auB -trJ -mGS -gea -mit -ifN -til -auH -eOk -xJv -auH -ijf -mGS -vjX -aEw -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(170,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ozR -ozR -ozR -ozR -ozR -pdg -pdg -pdg -ajq -knW -knW -knW -bhn -bhn -knW -knW -mUm -sYK -knW -bhn -jhE -rDD -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -jJT -aJm -rkp -rkp -kQM -bgr -bgr -bgr -bgr -bgr -aJm -ouT -ouT -vPS -ouT -ouT -dtv -jhE -xgP -rua -xgP -xgP -xgP -xgP -xgP -jhE -vhs -ouT -ouT -ouT -dtv -jhE -xgP -xgP -xgP -xgP -xgP -rua -xgP -xgP -xgP -xgP -xgP -xgP -xgP -xgP -xgP -xgP -rua -xgP -xgP -xgP -xgP -amv -nch -iDs -lgK -oJJ -jil -bkE -wne -sjc -mTs -nTf -nTf -xjz -mrj -mrj -sjc -sjc -sjc -mTs -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -cKP -sjc -sjc -mTs -pAj -auB -onq -cDm -jZg -jZg -lXt -iCM -iCM -kdo -iSJ -wQm -oAV -xXk -sPp -auB -xRg -mGS -mGS -mFW -mGS -xJv -auS -sZB -xJv -auH -fXz -oKN -nHM -aEw -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(171,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ozR -ozR -ozR -ozR -ozR -pdg -pdg -pdg -ajq -knW -mUm -knW -bhn -knW -saX -knW -knW -sYK -bhn -bhn -bhn -mTa -muc -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -qpr -jhE -aJm -rkp -rkp -kjK -ufU -ufU -ntv -dYc -omq -aJm -ouT -ouT -vPS -ouT -ouT -dtv -uyk -aen -vFJ -aen -aen -aen -aen -oLI -jJT -vhs -ouT -ouT -ouT -dtv -uyk -oLI -aen -aen -aen -aen -vFJ -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -mTa -aen -aen -aen -aen -amv -wtp -ktR -wMo -wMo -nUe -eFE -wne -sjc -mTs -nTf -ifZ -nKe -xrr -luH -jNY -jNY -gxS -mTs -wpn -lMr -cXl -wxV -wxV -wxV -wxV -wxV -wxV -npC -sjc -mTs -pAj -auB -mMo -llI -wyu -wyu -dzU -iCM -dAN -pXA -vTx -wyu -wyu -duo -nhj -auB -qTh -jbK -xPu -kzh -xPu -tjA -auS -sZB -xJv -auH -auH -auH -auH -aEw -auR -auR -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(172,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ozR -ozR -ozR -ozR -ozR -pdg -pdg -pdg -ajq -ajq -knW -knW -knW -jmR -cuC -cuC -cuC -lRf -bhn -bhn -bhn -mTa -jJT -aJm -qAy -qAy -aJm -qAy -qAy -aJm -qAy -qAy -aJm -qAy -qAy -aJm -rkp -slQ -kjK -ufU -ufU -ufU -ufU -ufU -aJm -ouT -ouT -vPS -ouT -ouT -dtv -jhE -aen -aen -aen -aen -aen -aen -aen -jJT -vhs -ouT -ouT -ouT -dtv -uyk -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -aen -mTa -aen -aen -aen -ajq -asH -cmv -wMo -ikW -wMo -fws -bkE -lDn -sjc -mTs -nTf -qIU -qIU -qIU -qIU -qIU -ajX -akd -vtv -akd -ajX -anE -anE -anE -anE -anE -anE -anE -wne -sjc -mTs -pAj -auB -auB -auB -auB -auB -auB -gTU -auB -fWc -auB -auB -auB -auB -auB -auB -auH -auH -auH -auH -auH -auH -auH -kjQ -qfq -auH -tNO -hVr -kGI -auJ -rVw -rVw -aEx -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(173,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ozR -ozR -ozR -ozR -ozR -pdg -pdg -pdg -pdg -ajq -knW -knW -knW -sYK -knW -knW -knW -bhn -bhn -bhn -aen -mTa -jJT -qAy -hAo -qUL -vUo -qUL -qUL -qUL -qUL -qUL -qUL -qUL -gns -wXH -rkp -slQ -kjK -ufU -ufU -hJM -gsd -tAq -aJm -ouT -ouT -vPS -ouT -ouT -dtv -jhE -qpr -qpr -qpr -qpr -qpr -qpr -qpr -jhE -vhs -ouT -ouT -ouT -dtv -jhE -qpr -qpr -qpr -qpr -qpr -qpr -qpr -jIt -aen -aen -aen -aen -muc -qpr -jIt -aen -mTa -aen -aen -aen -ajq -asH -rVY -rDv -fwX -vJP -vJP -wOg -pYJ -pYJ -mmJ -nTf -qIU -qDy -cMS -mSq -bzm -vpG -sSb -pnL -jDl -pxD -anE -rmf -xyD -ouK -xyD -nES -anE -wne -sjc -mTs -juK -lxW -lxW -lxW -lxW -lxW -lkz -sjc -mpZ -mTs -juK -lxW -lxW -lxW -lxW -uiH -cWJ -uiH -uiH -auK -tep -cSH -tep -fBB -jBr -ybA -tep -tep -tep -cSH -tep -ifV -fKr -auR -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(174,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ozR -ozR -ozR -ozR -ozR -pdg -pdg -pdg -pdg -ajq -knW -knW -mUm -sYK -knW -knW -bhn -bhn -bhn -aen -aen -mTa -jJT -qAy -syj -diq -diq -diq -diq -diq -diq -nti -diq -llH -tly -wXH -rkp -uyl -kjK -ufU -ufU -bgr -bgr -bgr -aJm -ouT -ouT -vPS -ouT -ouT -dtv -jhE -bgZ -bgZ -bgZ -kKt -kKt -kKt -bgZ -bgZ -lQd -lQd -bgZ -lQd -lQd -bgZ -bgZ -kKt -kKt -kKt -bgZ -bgZ -bgZ -uyk -aen -aen -aen -muc -jhE -bhn -jhE -qpr -nED -aen -aen -aen -ajq -asH -asH -asH -asH -asH -asH -asH -jOr -sjc -mTs -nTf -qIU -eeh -cAZ -cLQ -bzm -mjm -cve -pnL -cve -rDM -anE -hrb -jOu -jOu -jOu -ucA -anE -wne -sjc -wXM -uLR -uLR -pYJ -pYJ -pYJ -ttH -pYJ -pYJ -pYJ -kny -ttH -pYJ -ttH -pYJ -pYJ -pYJ -pYJ -pYJ -pYJ -mgV -sbK -sbK -sbK -cnI -sbK -mNE -cJO -cJO -cJO -cJO -cJO -shO -wQq -auR -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(175,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -cPi -pdg -pdg -pdg -pdg -pdg -pdg -ajq -knW -knW -knW -sYK -knW -gxB -bhn -bhn -bhn -aen -aen -mTa -jJT -qAy -syj -diq -nti -diq -llH -diq -diq -diq -yaP -diq -tly -wXH -rkp -rkp -kjK -ufU -ufU -ufU -iAA -iZo -aJm -ouT -ouT -vPS -ouT -ouT -dtv -jhE -bgZ -sQq -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -dWP -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -sQq -bgZ -uyk -aen -muc -bhn -bhn -bhn -bhn -bhn -jhE -sfS -jIt -aen -aen -ajq -ylo -ylo -ylo -ylo -ylo -ylo -arJ -hpV -sjc -mTs -nTf -qIU -qDy -cMS -mSq -bzm -mjm -cve -weC -nzN -xJM -anE -iuK -jOu -jOu -jOu -ucA -anE -wne -sjc -sjc -sjc -sjc -cKP -sjc -sjc -mTs -sjc -sjc -sjc -sjc -mTs -sjc -mTs -sjc -sjc -sjc -sjc -sjc -sjc -dkX -cJO -cJO -sGp -kWT -cJO -vhI -vSg -cJO -cJO -cJO -cJO -ptw -eke -auR -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(176,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -cPi -pdg -pdg -pdg -pdg -pdg -pdg -ajq -dna -knW -tqE -vEA -knW -bhn -bhn -bhn -bhn -bhn -aen -mTa -jJT -qAy -syj -diq -diq -diq -diq -diq -diq -diq -diq -diq -tly -aJm -rkp -rkp -kjK -ufU -ufU -ufU -ufU -ufU -aJm -ouT -ouT -vPS -ouT -ouT -dtv -jhE -bgZ -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -uyz -qyL -qyL -bgZ -jhE -qpr -bhn -bhn -bhn -bhn -bhn -bhn -bhn -sfS -jhE -jIt -aen -ajq -ylo -ylo -ylo -ylo -ylo -ylo -arJ -wne -sjc -mTs -nTf -qIU -eeh -cAZ -cLQ -bzm -dUP -ppk -dKt -pnL -eZR -anE -kCO -wlh -jOu -nUq -qPW -anE -lqC -wxV -wxV -ucn -wxV -wxV -wxV -npC -mTs -cXl -wxV -xhV -wxV -kCJ -npC -mTs -sjc -sRH -fRC -uWD -fRC -fRC -auK -pYE -pYE -pYE -gGk -cJO -vhI -uDG -pYE -pYE -puX -pYE -dES -fpm -auR -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(177,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -cPi -pdg -pdg -pdg -pdg -pdg -pdg -ajq -ajq -knW -knW -sYK -knW -bhn -bhn -bhn -bhn -uyk -aen -mTa -jJT -qAy -syj -yaP -diq -dGy -diq -diq -llH -diq -diq -diq -tly -wXH -rkp -rkp -kjK -ufU -ufU -ufU -xCn -lTz -aJm -ouT -ouT -vPS -ouT -ouT -dtv -jhE -kKt -qyL -qyL -bgZ -bgZ -bgZ -bgZ -bgZ -vZV -qyL -qyL -qyL -qyL -bgZ -bgZ -bgZ -bgZ -bgZ -qyL -qyL -kKt -jhE -jhE -bhn -bhn -bhn -bhn -bhn -bhn -bhn -sfS -jhE -jhE -ajq -ajq -ylo -ylo -ylo -ylo -arJ -arJ -arJ -lDn -sjc -mTs -nTf -qIU -qIU -qIU -qIU -qIU -ajX -ajX -mjm -pnL -eZR -anE -anE -anE -gLR -anE -anE -anE -anE -anE -anE -anE -anE -bkJ -bkJ -anE -ltR -anE -anE -anE -anE -dSj -wne -mTs -sjc -liP -auJ -auJ -auJ -auJ -auJ -auJ -auJ -auJ -sXp -kWT -vhI -tHx -kWi -kWi -auJ -rVw -rVw -aEx -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(178,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -cPi -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ajq -knW -knW -sYK -knW -bhn -bhn -bhn -bhn -uyk -aen -mTa -jJT -qAy -phe -diq -diq -diq -diq -diq -diq -diq -qYg -diq -tly -wXH -rkp -rkp -kjK -ufU -ufU -bgr -bgr -bgr -aJm -ouT -ouT -vPS -ouT -ouT -dtv -jhE -kKt -qyL -qyL -bgZ -bhl -bhl -bhl -bgZ -bgZ -mQX -mQX -mQX -bgZ -bgZ -bhl -bhl -bhl -bgZ -qyL -qyL -kKt -jhE -jhE -bhn -bhn -bhn -bhn -bhn -bhn -jhE -sfS -jhE -jhE -ajq -ylo -ylo -ylo -agD -agD -arJ -uFG -bTI -jks -sjc -mTs -nTf -ajX -ajX -oMT -okK -sjj -oPr -ajX -mjm -pnL -eZR -cDj -anE -dnh -jOu -kfU -xyD -dDw -nis -lRN -qvV -rvd -xyD -xyD -xyD -dNp -elN -kfU -opc -fMl -anE -anE -wne -mTs -sjc -liP -auJ -mIG -jxU -jxU -knm -tep -eXY -auK -sXp -cJO -vhI -tHx -bvj -bvj -aEx -auR -auR -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(179,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -cPi -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ajq -knW -knW -weM -knW -bhn -bhn -bhn -uCi -jhE -jIt -mTa -jJT -qAy -syj -diq -diq -diq -llH -diq -diq -diq -diq -diq -tly -wXH -rkp -rkp -kjK -ufU -ufU -xdk -xHQ -tDh -aJm -ouT -ouT -vPS -ouT -ouT -dtv -jhE -kKt -qyL -qyL -bgZ -bhl -bgZ -bgZ -bgZ -bhg -bhg -bhg -bhg -bhg -bgZ -bgZ -bgZ -bhl -bgZ -qyL -qyL -kKt -jhE -xgP -xgP -bhn -bhn -bhn -jhE -bhn -jhE -rua -xgP -jhE -ajq -ylo -ylo -ylo -agD -jks -drO -fBY -bTI -jks -sjc -mTs -nTf -ajX -iBx -hck -hck -hck -khq -akd -mjm -pnL -eZR -jDZ -anE -eMz -jOu -jOu -vig -eSJ -eSJ -eSJ -eSJ -jAh -eSJ -eSJ -eSJ -eSJ -obe -onl -jOu -moE -gQz -anE -wne -mTs -sjc -liP -auJ -ocM -cJO -mHX -cJO -cJO -tir -auK -kjt -cJO -vhI -tHx -kWi -kWi -aEx -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(180,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -cPi -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ajq -ajq -knW -sYK -knW -knW -bhn -dna -uCi -jhE -uyk -mTa -jJT -aJm -jjT -rGh -aJm -rGh -rGh -aJm -rGh -rGh -aJm -rGh -coT -aJm -rkp -ilE -fCe -ufU -ufU -ufU -ufU -ufU -aJm -rZl -ouT -vPS -ouT -ouT -dtv -jhE -kKt -qyL -qyL -bgZ -bhl -bgZ -ngB -bhg -bhg -bhg -bhg -bhg -bhg -bhg -ngB -bgZ -bhl -bgZ -qyL -qyL -kKt -uyk -aen -aen -jJT -bhn -bhn -jhE -xgP -qPQ -mTa -aen -ajq -ajq -ylo -ylo -ylo -agD -ojZ -ojZ -jks -mLG -sjc -sjc -mTs -nTf -akd -edn -cve -pIg -dmV -eZR -akd -mjm -tme -wPD -ajX -anE -uEB -joL -wlh -elN -nUq -qQv -qQv -wlh -elN -nUq -qQv -iMA -wlh -xEO -jAh -leK -moE -cZT -anE -wne -mTs -sjc -liP -auJ -clG -rVw -mtj -jfg -cJO -hKF -auJ -hpr -cJO -vhI -tHx -bvk -bvj -aEx -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(181,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -cPi -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ajq -knW -hEZ -cuC -cuC -cuC -cuC -cuC -oRu -rtH -mvL -jJT -qAy -syj -diq -lxA -diq -diq -diq -diq -diq -usO -diq -tly -wXH -rkp -rkp -kjK -ufU -ufU -uWW -qaX -wbP -aJm -ouT -ouT -vPS -ouT -ouT -dtv -jhE -bgZ -qyL -qyL -bgZ -bgZ -bgZ -bhg -bhg -ste -ste -bhg -bhg -bhg -bhg -bhg -bgZ -bgZ -bgZ -qyL -qyL -bgZ -jhE -jIt -aen -slk -bhn -jhE -qPQ -aen -cwF -mTa -aen -ajq -ylo -ylo -ylo -ylo -arJ -ovu -jCh -iWk -mLG -sjc -sjc -mTs -nTf -akd -mjm -cve -vQz -laZ -eZR -akd -mjm -pnL -eZR -cbu -anE -anE -anE -anE -eQK -anE -anE -anE -bDH -saW -bDH -anE -anE -fpr -nMv -elN -nUq -nQK -ljk -anE -wne -mTs -sjc -xfI -auJ -pzq -fwb -hSk -qYP -euo -sbK -eYs -sbK -sbK -kvM -gQb -auJ -auJ -aEx -aEx -aEx -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(182,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -cPi -pdg -pdg -pdg -pdg -pdg -pdg -pdg -pdg -ajq -ajq -knW -knW -xCL -knW -knW -gxB -knW -bhn -mTa -jJT -qAy -syj -diq -diq -diq -usO -diq -diq -diq -diq -diq -tly -fux -rkp -rkp -kjK -ufU -ufU -bgr -bgr -bgr -aJm -ouT -ouT -vPS -ouT -ouT -dtv -bgZ -bgZ -qyL -qyL -qyL -bgZ -bhg -bhg -bhg -ste -ste -ste -ste -ste -ste -bhg -bhg -bgZ -qyL -qyL -qyL -bgZ -bgZ -uyk -xzW -cZu -xBc -rtH -cZu -cZu -xFN -xoj -ajq -ajq -ylo -ylo -ylo -ylo -agD -rkX -rkX -jks -mLG -sjc -sjc -mTs -nTf -akd -vel -cve -pIg -jwA -eZR -akd -mjm -pnL -eZR -dBa -anE -anE -xAG -lMe -wXZ -moE -anE -xeN -rYJ -elN -kfU -xOZ -anE -anE -anE -ltR -anE -anE -anE -anE -wne -mTs -sjc -liP -auJ -qUM -rVw -hmC -tFV -mHX -twk -auJ -cUr -cJO -vhI -gQb -auJ -hTN -wMS -qOV -aEx -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(183,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -knW -knW -knW -knW -knW -bhn -bhn -bhn -mTa -jJT -qAy -syj -usO -diq -diq -diq -yaP -diq -jFU -diq -diq -tly -wXH -rkp -rkp -kjK -ufU -ufU -ufU -mAm -wvu -aJm -ouT -ouT -vPS -ouT -ouT -dtv -bgZ -cmH -qyL -qyL -qyL -mLY -bhg -bhg -ste -ste -ste -ste -ste -ste -ste -bhg -bhg -dMe -qyL -qyL -qyL -cmH -bgZ -uyk -mTa -aen -jJT -bhn -qpr -jIt -aen -aen -ajq -ylo -ylo -ylo -ylo -ylo -agD -jks -lag -fBY -hIO -cBN -sjc -mTs -nTf -ajX -mEx -vrz -wJe -cve -bEd -ajX -sSb -pnL -eZR -vmW -anE -anE -vOP -gDZ -ooi -pPA -anE -dbc -xVo -pgb -mkX -iEl -anE -vRk -jkU -elN -kfU -clD -tQR -anE -wne -mTs -sjc -liP -auJ -tAY -jxo -cJO -cJO -cJO -oLZ -auK -kjt -cJO -vhI -tHx -auK -kjt -cJO -jBr -sNk -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(184,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -knW -knW -bhn -bhn -bhn -bhn -bhn -mTa -jJT -qAy -syj -diq -diq -diq -diq -diq -diq -diq -dHP -diq -tly -aJm -rkp -rkp -kjK -ufU -ufU -ufU -ufU -ufU -aJm -ouT -ouT -vPS -ouT -ouT -dtv -bgZ -cmH -qyL -qyL -qyL -mLY -bhg -bhg -bhg -ste -ste -vki -ste -ste -ste -bhg -bhg -dMe -qyL -qyL -qyL -cmH -bgZ -uyk -mTa -muc -bhn -bhn -bhn -jhE -qpr -ajq -ajq -ylo -ylo -ylo -ylo -ylo -agD -agD -arJ -sKU -ehp -bTI -sjc -mTs -cCz -ajX -cuw -cve -tme -oMY -oMY -fnO -oMY -hLr -eZR -ifB -anE -anE -dbU -qQv -gTV -hGi -anE -wmT -qQv -dtY -qQv -mnW -anE -gtC -jOu -pgb -imR -moE -oZA -anE -wne -mTs -sjc -liP -auJ -iBI -pTQ -wkq -cgg -pYE -nVv -auK -kjt -cJO -vhI -tHx -auK -kjt -lwS -cJO -oyw -auR -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(185,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -knW -knW -knW -bhn -bhn -bhn -uyk -mTa -jJT -qAy -syj -diq -cnm -diq -diq -diq -usO -diq -diq -diq -tly -wXH -rkp -rkp -kjK -ufU -ufU -ufU -sus -sus -aJm -ouT -ouT -vPS -ouT -ouT -dtv -bgZ -cmH -qyL -qyL -qyL -mLY -bhg -bhg -ste -ste -ste -ste -ste -ste -ste -bhg -bhg -dMe -qyL -qyL -qyL -cmH -bgZ -uyk -mTa -slk -bhn -bhn -jhE -jhE -jhE -ajq -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -arJ -arJ -kGE -oOx -sjc -mTs -nTf -ajX -lLl -cve -xUe -qDz -pig -ajX -dKt -pnL -xJM -ajX -anE -anE -anE -anE -anE -anE -anE -anE -anE -anE -anE -anE -anE -tYc -jOu -rFN -wJG -osu -anE -anE -wne -mTs -sjc -liP -auJ -auJ -auJ -auJ -auJ -buZ -auJ -auJ -dVR -cJO -vmq -deo -auJ -hpr -rZw -cJO -vST -auR -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(186,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -knW -knW -bhn -bhn -jhE -qPQ -mTa -jJT -qAy -xIA -diq -diq -diq -dal -diq -diq -diq -yaP -diq -tly -wXH -rkp -rkp -kjK -ufU -ufU -bgr -bgr -bgr -aJm -ouT -ouT -vPS -ouT -ouT -dtv -bgZ -bgZ -qyL -qyL -qyL -bgZ -bhg -bhg -ste -ste -ste -ste -ste -ste -bhg -bhg -bhg -bgZ -qyL -qyL -qyL -bgZ -bgZ -uyk -mTa -aen -slk -bhn -jhE -jhE -ajq -ajq -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -agD -kGE -bTI -sjc -mTs -nTf -akd -lSp -cve -vpN -pIg -eZR -akd -mjm -pnL -jDl -hck -hck -hck -hck -hck -ajX -cRI -hck -wZz -dQG -mCc -iKE -ocq -anE -viI -qQv -twh -sLN -mnW -anE -sKU -mrj -mTs -sjc -liP -auK -cYM -qxI -jUy -cSH -tep -tep -auJ -hpr -cJO -vmq -sbK -tOt -sbK -xPB -uDG -jlF -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(187,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -gxB -knW -nHB -bhn -uyk -aen -mTa -jJT -qAy -cps -fuM -fuM -fuM -fuM -fuM -fuM -fuM -fuM -opU -bCA -wXH -rkp -rkp -kjK -ufU -ufU -ufU -kjp -qYF -aJm -ouT -ouT -vPS -ouT -ouT -dtv -jhE -bgZ -qyL -qyL -bgZ -bgZ -bgZ -bhg -bhg -bhg -ste -ste -bhg -ste -bhg -bhg -bgZ -bgZ -bgZ -qyL -qyL -bgZ -jhE -qPQ -mTa -aen -aen -slk -jhE -jhE -ajq -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -agD -kGE -bTI -sjc -uGa -nTf -akd -jyt -cve -pnL -cve -eZR -akd -mjm -pnL -cve -cve -cve -cve -cve -cve -oDb -cve -cve -cve -cve -cve -cve -eZR -anE -anE -anE -anE -anE -anE -anE -kaI -mrj -mTs -sjc -liP -auK -kjt -cJO -cJO -cJO -kht -sbK -uTI -sbK -sbK -cnI -mNE -auJ -gYy -nDj -qwo -aEx -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(188,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -uCi -jhE -jhE -uyk -aen -mTa -jJT -aJm -qAy -qAy -aJm -qAy -qAy -aJm -qAy -qAy -aJm -qAy -qAy -aJm -rkp -rkp -kjK -ufU -ufU -ufU -ufU -ufU -aJm -ouT -ouT -vPS -ouT -ouT -dtv -jhE -kKt -qyL -qyL -bgZ -bhl -bgZ -ngB -bhg -bhg -bhg -bhg -bhg -bhg -bhg -ngB -bgZ -bhl -bgZ -qyL -qyL -kKt -uyk -aen -mTa -aen -aen -aen -jJT -ajq -ajq -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -agD -kGE -bTI -sjc -mTs -nTf -akd -kRk -cve -pnL -rPB -tQa -akd -mjm -weC -oMY -oMY -oMY -oMY -oMY -oMY -oqJ -oMY -oMY -oMY -nzN -cve -cve -jDl -hck -hck -hck -wOe -hck -hck -akd -dWm -xrr -mTs -sjc -ejX -auJ -hpr -cJO -cJO -cJO -yiY -qbj -auJ -auJ -auJ -auJ -ttM -auJ -auJ -auJ -aEx -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(189,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -jhE -jhE -qPQ -aen -mTa -slk -xgP -xgP -xgP -xgP -xgP -xgP -xgP -xgP -xgP -xgP -xgP -jhE -aJm -rkp -rkp -kjK -ufU -ufU -ufU -kjp -qYF -aJm -ouT -ouT -vPS -ouT -ouT -dtv -jhE -kKt -qyL -qyL -bgZ -bhl -bgZ -bgZ -bgZ -bhg -bhg -bhg -bhg -bhg -bgZ -bgZ -bgZ -bhl -bgZ -qyL -qyL -kKt -uyk -aen -mTa -aen -aen -aen -ajq -ajq -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -arJ -arJ -kGE -bTI -sjc -mTs -nTf -ajX -qOv -xTB -hLr -tcy -ajX -ajX -gek -sME -tkc -tkc -tkc -sME -sME -ajX -ajX -dKt -cve -cve -pnL -cve -cve -cve -cve -cve -cve -sgT -cve -cve -oDb -sjc -sjc -boC -pYJ -pYJ -mUD -sbK -sbK -gci -qVh -kvM -vPf -pxc -sJl -auJ -gVK -vhI -vlK -tep -eCl -auR -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(190,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -jhE -qPQ -aen -aen -vyB -cZu -cZu -cZu -cZu -cZu -cZu -cZu -cZu -cZu -cZu -cZu -nbS -jJT -aJm -rkp -rkp -kQM -bgr -bgr -bgr -bgr -bgr -aJm -ouT -ouT -vPS -ouT -ouT -dtv -jhE -kKt -qyL -qyL -bgZ -bhl -bhl -bhl -bgZ -bgZ -qSf -qSf -qSf -bgZ -bgZ -bhl -bhl -bhl -bgZ -qyL -qyL -kKt -uyk -aen -mTa -aen -aen -aen -ajq -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -agD -agD -arJ -sKU -lGc -geu -sjc -mTs -oXU -ajX -qKq -pnL -fhs -etP -ajX -udn -gzT -cfV -odU -odU -odU -hnH -gzT -dOI -ajX -edn -cve -cve -tme -mQa -oMY -kLG -oMY -oMY -oMY -oMY -lcQ -lcQ -lcQ -uLR -pYJ -mmJ -sjc -sjc -kOh -cJO -cJO -pnC -tjH -fAi -kWT -xlD -oyw -auJ -xPn -meF -dMB -cJO -mhG -auR -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(191,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -aen -aen -aen -mTa -aen -aen -aen -muc -qpr -qpr -jIt -aen -aen -aen -oLI -mTa -jJT -qAy -kst -rkp -kjK -rkp -rkp -rkp -rkp -rkp -aJm -ouT -ouT -vPS -ouT -ouT -dtv -jhE -kKt -qyL -qyL -bgZ -bgZ -bgZ -bgZ -bgZ -qyL -qyL -qyL -qyL -qyL -bgZ -bgZ -bgZ -bgZ -bgZ -qyL -qyL -kKt -uyk -aen -mTa -aen -aen -ajq -ajq -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -agD -jks -drO -fBY -khg -eOx -sjc -mTs -nTf -ajX -tRr -pnL -jDP -oFJ -ajX -sub -ncn -cuJ -cuJ -cuJ -cuJ -cuJ -cuJ -hnM -ajX -jKY -dKt -jDP -vAG -ogr -cve -sAR -tkc -tkc -tkc -tkc -tkc -tkc -akd -jNY -gxS -mTs -sjc -egt -auJ -cUr -cJO -cJO -cJO -cJO -rhK -cJO -pmV -auJ -auJ -rjZ -cJO -cJO -gGf -auR -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(192,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -aen -aen -vFJ -aen -muc -qpr -jhE -bhn -bhn -jhE -qpr -jIt -aen -aen -mTa -jJT -qAy -kst -rkp -kjK -rkp -rkp -rkp -rkp -rkp -jWL -ouT -ouT -vPS -ouT -ouT -dtv -jhE -bgZ -qyL -qyL -qcD -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -bgZ -cAz -cZu -xoj -aen -ajq -ajq -apV -aki -aki -aki -apV -ylo -ylo -ylo -ylo -ylo -agD -ojZ -ojZ -jks -mLG -sjc -sjc -mTs -nTf -ajX -tRr -pnL -qch -xZB -xZB -xZB -wZg -wZg -wZg -xlF -wZg -wZg -wZg -xZB -xZB -xZB -mjm -gpt -cyB -dYG -cve -uxk -ajX -ajX -akd -akd -akd -ajX -ajX -kaI -mrj -mTs -sjc -liP -auK -kjt -cJO -cJO -cJO -cJO -cJO -cJO -tHx -mSl -auJ -qgX -iyK -fwi -aEx -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(193,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -aen -aen -aen -jJT -bhn -bhn -bhn -bhn -bhn -bhn -jhE -qpr -jIt -mTa -jJT -qAy -kst -rkp -kjK -rkp -rkp -kIJ -rkp -rkp -aJm -ouT -ouT -vPS -ouT -ouT -dtv -jhE -bgZ -sQq -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -qyL -sQq -bgZ -pPJ -aen -aen -ajq -ajq -apV -apV -jjj -pzC -jaB -apV -apV -ylo -ylo -ylo -ylo -arJ -ovu -hhp -iWk -mLG -sjc -sjc -mTs -nTf -ajX -ajX -lRR -ajX -xZB -xZB -xZB -akv -akv -akv -akv -akv -akv -akv -xZB -xZB -xZB -mjm -gpt -nKu -dYG -cve -uxk -ajX -xjN -hck -hck -hck -ncw -ajX -sKU -mrj -mTs -sjc -liP -auK -rZE -ubz -qKA -hIw -cJO -uDG -pYE -wHW -kOl -aEx -auR -auR -auR -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(194,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -aen -muc -jhE -jhE -bhn -bhn -bhn -bhn -bhn -bhn -bhn -uyk -mTa -jJT -qAy -kst -rkp -wVp -kgK -kgK -nvw -kgK -kgK -rtj -ihq -ihq -jBu -ouT -ouT -dtv -jhE -bgZ -bgZ -bgZ -kKt -kKt -kKt -kKt -bgZ -bgZ -vAu -dhA -lMP -bgZ -bgZ -kKt -kKt -kKt -kKt -bgZ -bgZ -bgZ -pPJ -aen -ajq -ajq -apV -apV -xNS -cHx -xDm -wHo -ubf -apV -apV -ylo -ylo -ylo -agD -rkX -rkX -jks -mLG -sjc -sjc -mTs -nTf -ajX -eyM -pnL -eZR -xZB -xZB -xZB -ggd -ggd -ggd -sim -ggd -ggd -ggd -xZB -xZB -xZB -vPP -ihk -tsj -eKW -dKt -uxk -akd -hfh -cve -cve -cve -mUY -ajX -ajX -mrj -mTs -sjc -liP -auJ -auJ -auK -auK -auJ -hPp -auJ -auK -auK -auJ -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(195,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -jhE -jhE -jhE -jhE -bhn -bhn -bhn -bhn -bhn -bhn -uyk -mTa -jJT -aJm -uAm -qYN -qYN -qYN -qYN -qYN -qYN -qYN -aJm -ouT -ouT -vPS -ouT -ouT -dtv -jhE -xgP -xgP -xgP -xgP -xgP -xgP -xgP -jhE -bgZ -bgZ -bgZ -bgZ -bgZ -hwR -nai -nai -nai -jlD -jlD -jlD -jlD -exa -ajq -ajq -apV -apV -rxQ -qnI -uWZ -uWZ -uWZ -qFl -dvo -apV -apV -ylo -ylo -agD -jks -lag -fBY -bTI -bCC -sjc -mTs -cCz -ajX -gFA -pnL -jDl -nNm -akv -ggd -pGS -fIV -fIV -fIV -fIV -fIV -tlr -ggd -akv -ajX -ajX -ajX -ajX -ajX -mjm -uxk -akd -mjm -cve -oYu -cve -tOs -soY -akd -mrj -mTs -sjc -ttz -tep -tep -tep -tep -hpr -cJO -jBr -tep -tep -uvx -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(196,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -jhE -jhE -jhE -jhE -bhn -bhn -bhn -bhn -jhE -qPQ -mTa -jJT -aJm -aJm -qAy -qAy -aJm -aJm -qAy -qAy -aJm -aJm -ouT -ouT -vPS -ouT -ouT -dtv -uyk -oLI -aen -aen -aen -aen -aen -aen -slk -xgP -xgP -xgP -xgP -xgP -rDD -aen -aen -aen -jJT -jhE -jhE -jhE -ajq -ajq -ylo -aki -fwJ -wSN -uWZ -uWZ -cXF -uWZ -uWZ -cXM -kwN -aki -ylo -ylo -agD -agD -arJ -uFG -bTI -jks -sjc -mTs -nTf -ajX -iZh -pnL -wds -iIm -akd -ggd -cjP -yeN -sMc -pHR -lcr -kPL -sWA -ggd -akv -mWK -hck -uHj -gFF -akd -sSb -uxk -akd -mjm -cve -wVE -cve -jDP -pno -akd -mrj -mTs -sjc -jks -cJO -cJO -uDG -uqh -pYE -pYE -pYE -pYE -cUr -tHx -aEx -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(197,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -jhE -jhE -jhE -jhE -jhE -bhn -jhE -qPQ -aen -mTa -slk -xgP -xgP -xgP -jhE -jhE -xgP -xgP -xgP -xgP -jhE -vhs -ouT -lWE -ihq -ihq -wxH -rtH -cZu -cZu -nbf -ndz -ndz -ndz -keB -cZu -cZu -ejl -cZu -cZu -cZu -xoj -muc -qpr -qpr -bhn -bhn -bhn -ajq -ajq -ylo -ylo -aki -vgF -jpb -uWZ -uWZ -jcT -uWZ -cAv -jpb -hmT -aki -ylo -ylo -ylo -ylo -arJ -arJ -arJ -foY -sjc -mTs -nTf -ajX -clw -kLB -cfM -mNz -akd -ggd -cjP -cAs -bVP -uUw -gjc -lvn -sWA -ggd -akv -ljT -xTB -oMY -oMY -slo -oMY -fvJ -ajX -sSb -cve -bSS -cve -eZR -ajX -ajX -mrj -mTs -sjc -sRH -pYE -cUr -hiR -rVw -rVw -rVw -rVw -rVw -kjt -nfd -lEa -auR -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(198,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -ajq -jhE -jhE -jhE -xgP -qPQ -opW -aen -vyB -cZu -cZu -cZu -cZu -xBc -rtH -cZu -cZu -cZu -cZu -xBc -chM -ihq -jBu -ouT -ouT -dtv -uyk -aen -muc -bhn -jhE -bhn -bhn -jhE -jIt -aen -mTa -aen -aen -muc -qpr -jhE -bhn -bhn -bhn -ajq -ajq -ajq -ylo -ylo -ylo -aki -vgF -jpb -uWZ -uWZ -phu -uWZ -uWZ -jpb -hmT -aki -ylo -ylo -ylo -ylo -ylo -ylo -arJ -irD -sjc -mTs -nTf -ajX -rLK -pnL -wds -mzg -akd -ggd -cjP -jkB -nOA -gCb -vGo -fRd -sWA -ggd -mnt -cve -pnL -cve -jDP -akd -dKt -weC -nGH -oMY -oMY -gpQ -cve -tOs -soY -akd -mrj -mTs -sjc -liP -auJ -kjt -hLQ -rVw -wvG -oGI -bwP -rVw -kjt -nfd -lEa -auR -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(199,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -jhE -uyk -aen -aen -aen -aen -vFJ -aen -aen -muc -qpr -bhn -jhE -jIt -aen -aen -aen -jJT -vhs -ouT -vPS -ouT -ouT -dtv -jhE -qpr -bhn -bhn -bhn -bhn -bhn -bhn -jhE -jIt -vFJ -aen -aen -jJT -bhn -bhn -bhn -bhn -ajq -ajq -ylo -ylo -ylo -ylo -ylo -aki -oWB -fNe -kxz -tIB -phu -vsv -pwr -fNe -gIW -aki -ylo -ylo -ylo -ylo -ylo -ylo -arJ -irD -sjc -mTs -nTf -ajX -hzH -dVS -cfM -nDg -akd -ggd -cjP -fsN -xiF -iOU -cxx -hvO -sWA -ggd -akv -dKt -kXl -cve -txw -ajX -ajX -ajX -ajX -dKt -cve -pBD -cve -jDP -cNd -akd -mrj -mTs -sjc -xfI -auJ -pzq -tHx -rVw -bxB -iPo -bxB -rVw -kjt -tHx -lEa -auR -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(200,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -ajq -aen -aen -aen -aen -aen -aen -muc -bhn -bhn -bhn -bhn -jhE -jIt -aen -oLI -jJT -vhs -ouT -vPS -ouT -ouT -dtv -jhE -xgP -jhE -bhn -bhn -bhn -bhn -bhn -bhn -jhE -jIt -aen -muc -bhn -bhn -bhn -ajq -ajq -ajq -apJ -apJ -apJ -apJ -apJ -apJ -apV -akl -akl -akl -qnI -phu -qFl -akl -akl -akl -apV -arJ -agD -agD -agD -agD -arJ -arJ -dMt -sjc -mTs -nTf -ajX -hZm -cve -wds -kdp -akd -ggd -cjP -xSY -wUf -kqt -vNL -tei -sWA -ggd -akv -mjm -cve -sgT -jDl -ajX -bUm -bUm -ajX -hFl -cve -wrT -cve -eZR -ajX -ajX -mrj -mTs -sjc -liP -auJ -kjt -tHx -rVw -sVo -bxB -sVo -jUG -kjt -twX -aEx -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(201,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -ajq -aen -aen -aen -aen -jJT -jhE -bhn -bhn -bhn -bhn -uyk -aen -aen -jJT -vhs -ouT -vPS -ouT -ouT -dtv -uyk -aen -slk -jhE -bhn -bhn -bhn -bhn -jhE -jhE -uyk -aen -jJT -bhn -ajq -ajq -ajq -aSa -aSa -apJ -bZU -bZU -bZU -bZU -bZU -lWT -uWZ -joU -uWZ -uWZ -phu -uWZ -uWZ -joU -uWZ -obq -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -mTs -nTf -ajX -djB -cve -jDP -hNw -akv -pLb -lkl -jvl -jvl -jvl -jvl -jvl -xLS -oXX -akv -whq -dKt -cve -cve -imm -cuJ -gwS -ajX -jmC -cve -uTT -cve -tOs -soY -akd -mrj -mTs -sjc -ttz -tep -hpr -tHx -rVw -bwP -iPo -wvG -rVw -kjt -tHx -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(202,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -ajq -aen -muc -jhE -jhE -jhE -jhE -bhn -jhE -qPQ -aen -aen -jJT -vhs -ouT -vPS -ouT -ouT -dtv -uyk -aen -aen -jJT -jhE -jhE -bhn -jhE -jhE -jhE -jhE -qpr -ajq -ajq -ajq -ylo -ylo -aSa -apJ -apJ -bZU -kXH -wrb -wrb -wrb -cTh -tUE -tUE -tUE -ikd -vnJ -ikd -tUE -tUE -tUE -uDk -pYJ -pYJ -qxe -pYJ -pYJ -pYJ -pYJ -pYJ -pYJ -mmJ -nTf -ajX -exR -tkc -tQa -xZB -xZB -xZB -ggd -ggd -ggd -ggd -ggd -ggd -ggd -xZB -xZB -xZB -mjm -cve -jDP -ajX -hdz -cuJ -ajX -mjm -cve -cve -cve -jDP -vKp -akd -mrj -mTs -sjc -sRH -pYE -cUr -tHx -rVw -qLz -iPo -qLz -rVw -kjt -xxy -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(203,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blX -blW -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -ajq -jhE -jhE -jhE -jhE -jhE -qPQ -aen -aen -aen -jJT -vhs -ouT -vPS -ouT -ouT -dtv -uyk -aen -aen -slk -jhE -jhE -jhE -jhE -jhE -jhE -ajq -ajq -ajq -aSa -aSa -apJ -apJ -apJ -apJ -arG -bZU -nJO -akl -akl -akl -akl -akl -akl -vxf -yfa -uWZ -cKb -vxf -akl -akl -akl -akl -akl -akl -apV -arJ -arJ -arJ -jks -sjc -mTs -nTf -ajX -ajX -maJ -maJ -xZB -xZB -xZB -poL -poL -poL -poL -poL -poL -poL -xZB -xZB -xZB -khy -pDy -wZq -ajX -bUm -bUm -ajX -cCw -lpk -uze -kKm -lso -ajX -ajX -mrj -mTs -sjc -liP -auJ -kjt -dRq -rVw -oGI -bxB -iPo -jUG -kjt -twX -aEx -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(204,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ajq -ajq -ajq -ajq -jhE -uyk -aen -aen -aen -aen -jJT -vhs -ouT -vPS -ouT -ouT -dtv -uyk -aen -aen -aen -jJT -jhE -jhE -ajq -ajq -ajq -ajq -ylo -ylo -aSa -apJ -apJ -bZU -kXH -wrb -wrb -wrb -xjC -akl -bjm -aVg -gZF -amw -akl -akl -hcr -uWZ -pmZ -akl -akl -amw -anz -aUJ -amn -iBs -aki -ylo -ylo -arJ -jks -sjc -mTs -ifZ -cOb -ajX -ajX -ajX -xZB -xZB -bow -gxS -sjc -sjc -sjc -sjc -sjc -wpn -xZB -xZB -xZB -ajX -ajX -ajX -ajX -ajX -ajX -ajX -ajX -ajX -ajX -ajX -ajX -ajX -mfh -mrj -mTs -sjc -xfI -auJ -pzq -tHx -rVw -buY -oGI -buY -rVw -kjt -tHx -lEa -auR -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(205,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ajq -ajq -ajq -ajq -ajq -ajq -aen -jJT -gpj -ouT -vPS -ouT -ouT -gTm -uyk -oLI -ajq -ajq -ajq -ajq -ajq -ajq -aSa -ylo -ylo -apJ -apJ -apJ -apJ -arG -bZU -nJO -bZU -bZU -hES -bZU -akl -amk -xBK -hvZ -gBh -dfg -akl -hcr -uWZ -jvZ -akl -wvZ -gBh -fWx -amk -amn -asW -aki -ylo -ylo -arJ -jks -sjc -mTs -sjc -pcv -dWm -dWm -nko -dWm -dWm -dWm -xrr -sjc -sjc -sjc -sjc -sjc -ifZ -dWm -dWm -dWm -dWm -nko -dWm -dWm -dWm -dWm -fis -dWm -dWm -dWm -dWm -nko -dWm -qdk -xrr -mTs -sjc -liP -auJ -kjt -tHx -rVw -bwP -oGI -bwP -rVw -kjt -tHx -lEa -auR -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(206,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -aSa -ylo -ylo -qSi -qSi -atJ -atJ -qSi -vsR -moA -vsR -uGF -aph -xKu -xKu -aph -ylo -ylo -aSa -ylo -ylo -aSa -ylo -ylo -apJ -kXH -wrb -wrb -ruc -wrb -eCJ -ajB -ajB -ajB -ajB -ajB -amn -aUD -amE -akl -aHg -akl -ibj -uWZ -gDT -akl -aHg -akl -bjm -aVd -bjm -apV -apV -ylo -ylo -arJ -jks -jks -wXM -pYJ -kny -pYJ -pYJ -pYJ -pYJ -pYJ -pYJ -pYJ -ttH -pYJ -pYJ -pYJ -pYJ -pYJ -pYJ -uLR -uLR -pYJ -pYJ -pYJ -pYJ -pYJ -pYJ -pYJ -pYJ -pYJ -pYJ -uLR -pYJ -pYJ -kny -pYJ -vpc -sjc -ttz -tep -hpr -tHx -rVw -rVw -rVw -rVw -rVw -kjt -tHx -lEa -auR -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(207,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -aSa -ylo -ylo -qSi -okX -xGA -oZn -ayc -dJE -mQZ -cyk -kIo -atI -raz -gXS -aph -aph -aph -apl -ajr -ajr -apl -ylo -ylo -apJ -nJO -bZU -bZU -hES -bZU -nJO -ajB -mai -fgm -mai -ajB -akl -akl -akl -akl -uSp -tUE -tvh -uWZ -uSp -tUE -tvh -akl -akl -akl -akl -apV -ylo -ylo -ylo -arJ -arJ -jks -jks -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -mTs -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -sjc -jks -cJO -cJO -jBr -tep -tep -tep -tep -tep -hpr -tHx -aEx -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(208,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -aSa -ylo -ylo -qSi -pnI -sgo -std -ayc -vUY -cyk -cyk -vUY -atI -qIs -rnf -tgW -tgW -esU -apl -qAY -pCQ -apl -apl -apJ -apJ -nJO -bZU -ajB -ajB -ajB -yfT -ajB -dGZ -xNQ -qgz -ajB -amq -aUE -amH -akl -aHg -akl -yfa -uWZ -cKb -akl -aHg -akl -amn -aVe -amE -apV -apV -ylo -ylo -aSa -arJ -arJ -jks -jks -jks -jks -jks -jks -jks -jks -jks -jks -mTs -sjc -jks -jks -jks -jks -jks -jks -jks -cKP -sjc -sjc -lyj -tJg -tJg -tJg -oBk -tJg -oIM -sjc -sjc -sjc -jks -jks -jks -lag -sRH -pYE -pYE -pYE -pYE -pYE -pYE -pYE -pYE -pYE -wHW -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(209,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -alx -aex -aex -aex -aex -alx -ylo -alx -aex -aex -aex -aex -alx -ylo -aog -aog -aiJ -aiJ -aog -aiJ -aiJ -qSi -pnI -frE -std -ayc -kIo -cyk -vKE -rpE -atI -unD -sZJ -sZJ -sZJ -poK -apl -ybT -pCQ -hop -ajy -wNB -bZU -nJO -bZU -ajB -qji -kUP -uTC -vVH -vVH -qWn -qgz -ajB -amr -amk -hvZ -gBh -xWS -akl -dmf -uWZ -pmZ -akl -hKt -gBh -fWx -amk -asT -amB -aki -ylo -ylo -aSa -ylo -arJ -arJ -hIb -vpq -arJ -arJ -arJ -arJ -arJ -kaI -jks -mTs -sjc -jks -iqN -arJ -arJ -arJ -tJg -tJg -hyC -hyC -hyC -dim -cLU -uTn -uTn -uTn -hWH -hIO -hyC -hyC -hyC -sEV -sEV -arJ -arJ -arJ -aEx -aEx -aEx -aEx -xIF -tda -pQh -aEx -aEx -aEx -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(210,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -alx -alx -rZY -rZY -qSo -rZY -alx -alx -alx -rZY -rZY -uCc -rZY -alx -aog -aog -ogG -bIq -bIq -giJ -bIq -bIq -qSi -frQ -frE -std -qSi -vsR -vsR -moA -vUx -aph -iYn -sZJ -ceg -tTP -gjV -apl -ybT -pCQ -hop -ajy -wNB -bZU -nJO -wGl -ajB -ajB -ajB -qgz -ajB -mvk -ajB -mvk -ajB -ams -bvQ -amw -bvx -akl -akl -hcr -uWZ -pmZ -akl -akl -amw -bjm -bvQ -amB -apV -apV -ylo -ylo -aSa -ylo -ylo -arJ -agD -agD -arJ -ylo -ylo -ylo -arJ -asJ -iOM -uVp -mFO -iOM -asJ -arJ -ylo -arJ -bsF -wnY -jks -iWk -jks -wnY -sKU -arJ -agD -arJ -sKU -wnY -jks -iWk -jks -wnY -bsF -arJ -ylo -ylo -ylo -ylo -ylo -aEx -auR -auR -auR -aEx -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(211,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -alx -pJA -rZY -fqc -gTS -rZY -fNp -afJ -uOS -rZY -fqc -gTS -rZY -wyN -avj -lwH -cZB -tlI -tlI -uWu -tlI -tlI -xbB -fhP -hUB -std -xDC -uRf -bZU -nJO -jdx -aud -rBS -vqN -cSX -sZJ -nHa -ahw -phH -xOw -pCQ -ajy -wOR -bZU -nJO -xUN -ajB -kjF -kUP -qgz -ajB -lKw -ajB -lKw -ajB -akl -akl -akl -akl -akl -dCR -hcr -uWZ -pmZ -orp -akl -akl -akl -akl -akl -apV -ylo -ylo -ylo -aSa -ylo -ylo -aSa -ylo -ylo -aSa -ylo -ylo -ylo -ylo -atd -pDM -uVp -mFO -pDM -atd -ylo -ylo -arJ -arJ -mfa -nGz -hhp -qbn -xqe -arJ -arJ -ylo -arJ -arJ -mfa -nGz -hhp -mZe -xqe -arJ -arJ -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(212,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -alx -xKc -rZY -gmI -rZY -rZY -pyI -iSB -xKc -rZY -qNw -rZY -rZY -pyI -avj -kvw -dVa -fEY -fki -ghX -fki -mRi -qSi -jxk -gFv -wan -lKO -tAK -bZU -nJO -tkR -atI -syX -kCt -cSX -sZJ -lNo -ahw -ybT -slN -fmu -kbn -wrb -wrb -eCJ -xUN -ajB -ajB -ajB -ajB -ajB -ajB -ajB -ajB -ajB -lgM -ggJ -wXE -xgp -uKJ -uWZ -hcr -uWZ -pmZ -uWZ -akl -rMU -rMU -rMU -rMU -apV -aSa -aSa -aSa -aSa -aSa -aSa -aSa -aSa -aSa -aSa -ylo -ylo -ylo -ylo -atd -pDM -uVp -mFO -pDM -atd -ylo -ylo -ylo -agD -jks -nGz -tlS -qbn -jks -agD -ylo -ylo -ylo -agD -jks -nGz -nyZ -qbn -jks -agD -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(213,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -alx -rFF -rZY -fqc -gTS -rZY -hbp -iSB -kCi -rZY -fqc -gTS -rZY -mQd -avj -rzY -dVa -szk -eVE -gcc -eVE -tVT -qSi -pez -nMY -iBw -xDC -jRi -bZU -nJO -pAZ -atI -vQp -sZJ -cSX -sZJ -kAQ -ahw -ybT -iic -pCQ -ahw -mnY -bZU -nJO -xUN -add -brt -aUo -adN -buq -byu -but -bun -add -akl -akl -akl -akl -akl -dCR -hcr -oYx -pmZ -inM -akl -akl -akl -akl -akl -apV -ylo -ylo -ylo -aSa -ylo -ylo -aSa -ylo -ylo -aSa -ylo -ylo -ylo -ylo -atd -pDM -uVp -mFO -pDM -atd -ylo -ylo -ylo -agD -agD -agD -arJ -agD -agD -agD -ylo -ylo -ylo -agD -agD -agD -arJ -agD -agD -agD -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(214,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -bmB -aSa -ylo -akj -akj -bmj -bmj -akj -akj -ylo -ylo -ylo -ylo -ylo -alx -xKc -rZY -kIS -rZY -rZY -pyI -iSB -xKc -rZY -vtJ -rZY -rZY -pyI -avj -avj -lhN -ajL -cxc -ajL -cxc -ajL -qSi -atJ -atJ -atJ -atJ -eGa -bZU -nJO -pAZ -aud -kyq -uyU -cSX -sZJ -iDN -ahw -ahw -ahw -ahw -ahw -qEd -bZU -nJO -xUN -adt -bun -qlx -cXH -cXH -xmh -adN -aXa -add -amt -aUE -amI -amM -akl -akl -hcr -oYx -pmZ -akl -akl -amA -amE -aVg -bjm -apV -apV -ylo -ylo -aSa -asK -asK -asK -atg -atg -asK -ylo -ylo -ylo -asJ -asJ -mpl -uVp -mFO -fes -atG -atG -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(215,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -bmB -aSa -aSa -akj -vod -ukJ -kmU -lwo -akj -alx -aex -aex -aex -alx -alx -foL -rZY -dRA -gTS -ghQ -hbp -iSB -kCi -rZY -dRA -gTS -rZY -hbp -avj -wpy -dVa -cgi -bIq -bIq -bIq -bIq -bIq -bIq -usl -jki -avj -kVX -bZU -nJO -pAZ -aud -aud -aud -cSX -pcl -aud -ajj -mLo -dXv -tWK -ajj -cII -bZU -nJO -xUN -adt -buo -uov -dKn -buq -buo -bus -bup -add -amu -amk -hvZ -gBh -dfg -akl -dmf -oYx -xmP -akl -wvZ -gBh -fWx -qtf -amk -akm -aki -ylo -ylo -aSa -asK -pDW -uIk -pQm -cQM -asK -asK -asK -asK -asJ -iXq -lgU -uVp -mFO -iOM -ixl -atG -atG -atG -atG -atG -atG -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(216,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -bmB -aSa -ylo -akj -vod -kmU -kmU -lwo -akj -jxt -tFh -kaB -peB -lhC -alx -xKc -rZY -qbx -hrK -rZY -pyI -afJ -xKc -rZY -jkz -ghQ -rZY -fqL -eOR -fTO -dVa -kMe -kMe -kMe -kMe -kMe -kMe -kLo -fki -cgi -agx -iGS -bZU -nJO -sPn -sUa -sUa -kZr -nJO -bZU -pAZ -ajj -qPO -oQZ -lFH -xnS -wrb -wrb -eCJ -xUN -adt -bup -uov -sAj -add -add -add -add -add -bZt -aUF -bjm -akl -aHg -akl -nEA -oYx -gDT -akl -aHg -akl -amD -aVf -bjm -apV -apV -ylo -ylo -asK -asK -lOi -tyc -lEu -xGZ -pxa -fOr -onh -atk -bYB -dKo -jWJ -vQf -hEf -hEf -keo -rsb -nFC -uwR -iFg -xNI -atG -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(217,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -akj -mrZ -iTE -kKQ -kKQ -wIO -qBY -qBY -qBY -qBY -qBY -qBY -sqd -rZY -jkz -rZY -rZY -fqL -qBY -sqd -rZY -jkz -rZY -ghQ -ghQ -nbD -nbD -kPY -nbD -nbD -nbD -nbD -hMM -qjt -nbD -nbD -nbD -iko -bZU -bZU -nJO -bZU -bZU -bZU -bZU -nJO -bZU -pAZ -ajj -tnd -kNF -tAT -ajj -gMd -bZU -nJO -iTY -add -vkE -uov -adN -sSw -qHt -fhp -qHt -add -akl -akl -akl -akl -uSp -tUE -ghh -uWZ -uSp -tUE -tvh -akl -akl -akl -akl -apV -ylo -ylo -ylo -atg -wjW -lhy -lEu -lEu -lEu -lEu -tSa -cCy -atk -lgU -mFO -sIv -fzt -mFO -wgG -sil -atB -hFJ -ntK -ixw -qrl -atG -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(218,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -blY -ylo -ylo -akj -ieR -vOY -iyH -wLN -wLN -hJo -hJo -hJo -hJo -hJo -hJo -hJo -hJo -tJh -hJo -hJo -hJo -hJo -hJo -hJo -tJh -eQY -hJo -hJo -tET -tET -wBG -tET -tET -tET -cAn -tET -tET -tET -tET -tET -tET -wrb -jDX -eip -wrb -wrb -wrb -wrb -eip -uXr -pAZ -ajj -hsj -mKR -qNx -ajj -ufO -bZU -nJO -bZU -aDy -adN -rqg -cXH -dBQ -ppA -rpG -mMz -add -bjq -aUJ -amB -akl -aHg -akl -rsn -uWZ -cKb -akl -aHg -akl -amw -aVg -asU -apV -apV -ylo -ylo -atg -fwg -vdb -lEu -fTd -swP -fTd -lEu -vwn -atp -lgU -mFO -uVp -mFO -mFO -rYY -ogD -atB -viu -ntK -lMd -rFE -atG -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(219,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -bmB -aSa -ylo -akj -ieR -pdy -npi -vOY -vOY -rZY -rZY -rZY -rZY -rZY -rZY -rZY -rZY -rZY -rZY -rZY -rZY -rZY -rZY -rZY -rZY -jkz -rZY -dob -eOR -fAD -fki -kOf -cYQ -mOK -qEc -kOf -cYQ -mOK -fki -upD -agx -cHr -cHr -cHr -cHr -cHr -cHr -tAK -bZU -nJO -pAZ -ajj -ajj -ajj -ajj -ajj -mTy -yit -hyO -wrb -cXH -cXH -pIj -adN -sSw -xsx -kZn -xcf -add -amw -eaN -hvZ -gBh -xWS -akl -ibj -uWZ -wMu -akl -hKt -gBh -fWx -amk -amn -feC -aki -ylo -ylo -atg -gla -lhy -lEu -ylg -eFZ -fTd -ggK -uoz -atp -lgU -mFO -uVp -dDm -njx -rYY -qAE -atB -naw -rES -sil -rWH -atG -aSa -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(220,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -aSa -aSa -bmB -aSa -aSa -akj -ieR -vOY -npi -jjo -xVO -qzM -qzM -qlk -qzM -qzM -qzM -qzM -qzM -qzM -qzM -qzM -qzM -qlk -wGN -rZY -rZY -jkz -rZY -pyI -avj -wKv -hYq -weu -mtW -oby -cSx -evO -tLE -oby -xvs -fVv -agj -agj -agj -agj -agj -agj -agj -jRi -bZU -nJO -sPn -sUa -xmI -biD -lqU -hDq -cII -yit -nJO -vvm -add -bFc -uov -aUt -add -add -add -xcf -add -bjm -aZq -amJ -amE -akl -akl -mHe -vMu -mHe -akl -akl -amA -amE -bvQ -bjm -alw -apV -ylo -ylo -asK -asK -lhy -lHi -pgq -fnM -fTd -lEu -rBR -atp -lgU -mFO -uVp -crV -att -att -att -att -att -att -att -att -auz -auz -auz -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(221,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -aSa -bmB -aSa -ylo -akj -ieR -vOY -npi -wpo -bmF -afJ -alx -afJ -iSB -iSB -iSB -afJ -afJ -iSB -iSB -iSB -afJ -afJ -afJ -jJW -jJW -oLW -jJW -cGF -avj -aog -aog -agx -agx -agx -aog -agx -agx -agx -aog -aog -agj -vRB -mIO -gFO -dlV -fIE -agj -jRi -bZU -pNM -wrb -wrb -wrb -wrb -wrb -wrb -gge -gge -eCJ -xUN -adt -bun -uov -bun -add -hCy -qHt -vix -add -akl -akl -akl -akl -akl -uwb -ius -tUz -ius -idi -akl -akl -akl -akl -alw -alw -apV -apV -apV -apV -asK -jQD -lEu -lEu -sPt -pmX -lEu -kTV -atk -lgU -mFO -uVp -stN -att -gTj -pps -igS -ePf -att -dUE -pMG -eLL -uSG -auz -auz -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(222,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -aSa -ylo -ylo -blY -ylo -ylo -akj -ieR -vOY -npi -hhF -bmF -akz -akz -tyy -hus -hus -hus -hBs -mbW -hus -hus -hus -hus -aeU -vxw -uXK -uXK -oUc -uXK -vxw -aeU -ooQ -ooQ -ooQ -ooQ -ooQ -jiU -ooQ -ooQ -ooQ -ooQ -ooQ -agj -qVp -fVa -fVa -fVa -edx -agj -iGS -bZU -nJO -bZU -bZU -bZU -bZU -bZU -bZU -bZU -bZU -nJO -xUN -adt -byu -rjT -buo -add -cIL -qHt -xcf -add -eqc -fLl -iki -oWh -kXn -iki -ius -tUz -ius -kXn -iki -oWh -kXn -krY -alw -vyL -mgK -mhd -nZV -gFm -asK -fIz -uqq -lEu -sPt -pNm -fGH -paC -atk -rWS -mFO -vQf -hEf -tRs -dSf -ujY -mDA -iPJ -att -fkJ -uGO -nVg -vpd -hQk -auz -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(223,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -akj -npm -npm -npm -npm -npm -akj -ieR -vOY -npi -wpo -akj -akz -lJD -hlS -xIN -xIN -xIN -xIN -xIN -xIN -xIN -xIN -xIN -xIN -xIN -xIN -xIN -qYe -xIN -xIN -rSl -xIN -xIN -xIN -xIN -xIN -xIN -xIN -xIN -xIN -ohZ -lFA -xxr -fVa -fVa -fVa -fVa -fVa -pjB -bZU -yit -nJO -stX -tRk -xBO -fXb -npO -tRk -jGJ -bZU -nJO -xUN -adt -bup -adN -bup -add -cTM -qHt -xcf -add -uwb -dzH -dgP -dgP -dgP -dgP -kRy -pFZ -kRy -dgP -dgP -dgP -fNK -idi -alw -kBY -gFm -gFm -fQE -gFm -atk -atk -atk -lEu -pNP -atk -atk -atk -atk -lgU -mFO -uVp -dDm -att -tgj -vct -ccS -iEo -atv -fkJ -nVg -tjO -nVg -vwV -aXw -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(224,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -akj -aRp -aRp -aRp -aRp -aRp -bmj -ieR -vOY -npi -qJX -bmF -htA -hNQ -dKu -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -dKu -fSG -agj -qxW -qxW -sqf -fVa -nfM -agj -tAK -yit -fgf -jAY -arB -arM -ash -arM -asI -oBu -bZU -nJO -oxh -add -buq -bur -bus -add -fut -psl -gdV -add -cip -ius -kzx -sLK -lQT -sLK -sLK -mQh -gFm -kzx -sLK -wRx -ius -nqg -alw -qpV -fwR -nfn -pmO -gFm -pES -eqV -jWJ -mFO -uVp -stN -dKo -dKo -dKo -jWJ -mFO -uVp -gNq -atv -ozb -vct -ccS -iEo -atv -uBJ -gJP -hEc -nVg -vwV -aXw -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(225,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -akj -akj -aRp -aRp -aRp -aRp -aRp -bmj -ieR -jAx -npi -vOY -hIv -lFA -lFA -dKu -lFA -lFA -afi -afv -afC -afC -qub -yif -afv -afC -afL -afS -afv -oYq -rpf -afS -afv -afC -afL -afS -dQX -tzs -afL -afS -afi -lFA -dKu -ihC -agj -agj -agj -uyH -fVa -hjc -agj -jRi -bZU -hyO -xBP -arC -arT -arC -asn -asL -oBu -bZU -nJO -xUN -add -add -add -add -add -add -dZj -add -add -uwb -ius -cBA -amN -amN -amN -amN -amN -eix -amN -amN -nrh -ius -idi -alw -wjS -uzA -uzA -lRa -tUz -tUz -tUz -mFO -mFO -uVp -mFO -mFO -mFO -mFO -mFO -mFO -uVp -gNq -atv -ozb -vct -ccS -iEo -atv -uBJ -nVg -lRu -nVg -urI -aXw -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(226,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -akj -bmC -aRp -aRp -aRp -aRp -aRp -akj -eAP -vOY -gZm -wLN -quc -xIN -xIN -kpH -lFA -lFA -afk -sSF -rUC -rUC -rUC -rUC -rUC -rUC -rUC -rUC -rUC -rUC -ich -rUC -rUC -rUC -rUC -rUC -rUC -rUC -rUC -unX -ajT -lFA -dKu -gKL -agj -atP -agj -cTi -tzv -wgf -agj -jRi -bZU -nJO -jAY -arE -arZ -asi -asi -asM -oBu -bZU -nJO -iTY -wIM -wIM -wIM -wIM -wIM -wOR -nJO -iTY -wIM -iki -ius -cBA -amN -wkl -mPP -gYt -hyn -dCJ -fDF -amN -nrh -ius -kXn -fLl -iki -gFm -gFm -gFm -tUz -dzH -dgP -hEf -hEf -sPf -pYm -hEf -hEf -hEf -hEf -hEf -xZZ -gNq -atv -ozb -paa -hAp -hqp -att -iAn -nVg -wza -wtg -jZC -auz -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(227,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -akj -bmC -aRp -aRp -aRp -aRp -aRp -fYS -vOY -vOY -npi -vOY -hIv -lFA -lFA -dKu -lFA -lFA -afl -idc -afi -aeN -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -aeN -afi -nYs -ajU -lFA -dKu -gKL -agj -atP -agj -atT -ige -atT -agj -kVX -bZU -nJO -lBT -lIj -csm -umA -pey -lIj -jws -bZU -nJO -bZU -bZU -yit -yit -yit -bZU -bZU -nJO -bZU -bZU -tUz -ius -cBA -aNH -uTb -cxy -uNq -wkP -dCJ -ngD -aNH -nrh -ius -tUz -tUz -tUz -tUz -tUz -tUz -tUz -ius -gFm -wgG -xSf -nJW -xSf -toA -xSf -xSf -xSf -ppN -uVp -gNq -att -wnx -fcb -mIB -gqk -att -rUo -cXk -wza -dWO -pwT -auz -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(228,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -akj -akj -aRp -aRp -aRp -aRp -aRp -akj -uPb -vOY -npi -vOY -hIv -lFA -lFA -dKu -lFA -lFA -fEy -idc -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -nYs -iOo -lFA -cDn -aeU -agj -agj -agj -kqQ -gnr -fat -bnZ -iGS -bZU -pNM -gge -wrb -wrb -wrb -wrb -wrb -wrb -wrb -eip -jgd -wrb -wrb -wrb -gge -gge -wrb -eip -wrb -wrb -dgP -wVl -cBA -aNH -uTb -lYU -lGM -qof -tuO -mMg -aNH -nrh -mzt -dgP -dgP -dgP -dgP -dgP -dgP -dgP -eFn -gFm -atl -atl -atl -atl -atl -atl -bou -atl -atl -mqe -atl -atl -dNN -paa -cYi -dNW -att -att -att -sEf -att -att -auz -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(229,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -bmj -aRp -aRp -aRp -aRp -aRp -bmj -hmD -vOY -npi -kDF -bnw -wRh -mAp -dKu -lFA -lFA -fyd -idc -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -nYs -dKV -lFA -dKu -vxw -dtT -eSz -rbJ -wtC -qKo -wtC -exs -bZU -bZU -nJO -bZU -bZU -bZU -bZU -bZU -bZU -bZU -bZU -bZU -nJO -cKg -fDH -vBB -fDH -nuz -fDH -vBB -fDH -fDH -mDa -ius -cBA -amN -iOK -lYU -dHH -kqN -iOr -kfg -amN -nrh -ius -wkc -sje -mDa -gFm -gFm -gFm -gFm -gFm -gFm -atl -jHX -jWx -psr -juJ -psr -psr -psr -csa -cna -csS -atl -ozb -vct -xVb -lKl -gTj -vTt -nEd -vct -lKl -emO -auz -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(230,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -bmj -aRp -aRp -aRp -aRp -aRp -bmj -hmD -vOY -npi -rDw -bmF -hhR -mAp -dKu -lFA -lFA -afk -idc -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -nYs -ajT -lFA -dKu -qFY -dtT -wtC -rbJ -fVa -lRZ -fVa -exs -bZU -bZU -nJO -cKg -vBB -cNE -rYR -cKg -fDH -fDH -fDH -cNE -nJO -qpu -ajk -ajk -ajk -ajk -ajk -ajk -ajk -ajk -uwb -ius -cBA -amN -amN -ncY -amN -amN -amN -amN -amN -nrh -ius -idi -alw -xGp -okk -okk -qga -xgp -syo -dah -atl -gPO -cGU -qbh -gPO -qbh -gPO -qbh -bSL -pPO -tVq -bou -nEd -vct -ccS -xVb -thE -ccS -ccS -vct -ccS -iEo -auz -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(231,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -akj -aRp -aRp -aRp -aRp -aRp -akj -ecB -pdy -nCW -rDw -bmF -pMo -mAp -sKq -lFA -lFA -afl -idc -afi -afi -afi -afi -afi -afi -afi -afi -afi -dUj -afi -afi -afi -afi -afi -afi -afi -afi -afi -nYs -ajU -lFA -cvs -nQp -mXX -flU -fjQ -jHc -kxQ -jHc -nYY -wrb -wrb -eCJ -gYi -ajk -ajk -ajk -ajo -ajo -ajk -ajj -ajj -pjS -bof -ajo -lJY -oFP -vzm -edU -lse -rDi -ajk -cip -ius -tZR -rqf -cIO -tOB -tZR -cvz -rqf -nLa -rqf -cIO -ius -nqg -alw -nif -eKS -kPD -pmO -syo -syo -qey -atl -oaj -qnq -vBV -gPO -vBV -gPO -vBV -bSL -xJw -owt -iam -dSf -hMJ -gGP -rFu -uwD -dYA -uwD -ufq -hlU -fYv -auz -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(232,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -bmj -aRp -aRp -aRp -aRp -aRp -bmj -hmD -vOY -rOo -rDw -bmF -rdz -mAp -dKu -lFA -lFA -afq -idc -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -rNQ -akc -lFA -dKu -qFY -dtT -wtC -rbJ -fVa -fVa -fVa -exs -bZU -bZU -nJO -gYi -ajk -vVh -kPq -rvv -kPq -vLD -ajk -xmm -tHc -qpu -ajo -xmm -tGv -rnI -rnI -tGv -pmT -ajk -uwb -gDA -dgP -dgP -dgP -kRy -pFZ -kRy -pFZ -dgP -dgP -dgP -eFn -idi -alw -kBY -nba -gFm -fQE -xgp -xgp -xbN -atl -fVU -cGU -ejJ -gPO -qbh -gPO -ejJ -tzr -jOm -oAl -atl -wbA -ccS -vct -wAm -hnG -czN -hnG -czN -hnG -uNO -auz -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(233,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -bmj -aRp -aRp -aRp -aRp -aRp -bmj -hmD -vOY -npi -jrG -bnw -hNQ -mAp -dKu -lFA -lFA -fbA -idc -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -nYs -gdi -lFA -dKu -vxw -dtT -jdL -rbJ -wtC -uof -wtC -exs -bZU -bZU -nJO -gYi -ajo -kKk -hyU -fal -fql -ksb -ajo -udo -tHc -lNp -ajk -pWo -vpL -dAG -iMr -tGv -swS -ajk -vPH -sje -mDa -oWh -wkc -mDa -ius -tUz -ius -wkc -mDa -oWh -wkc -aeh -alw -fiI -mgK -mlA -kXW -sje -sje -mQL -atl -oaj -qnq -vBV -gPO -vBV -gPO -vBV -bSL -wwx -lpt -atl -qob -tgj -vct -wAm -wzV -mUa -wzV -igr -wzV -auz -auz -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(234,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -akj -akj -aRp -aRp -aRp -aRp -aRp -akj -iri -vOY -npi -vOY -hIv -lFA -lFA -dKu -lFA -lFA -oEW -idc -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -nYs -kVQ -lFA -cDn -aeU -agj -agj -agj -pXX -dmu -pXX -agj -tAK -bZU -nJO -pkg -ajo -wgO -tGv -qXv -tWn -jAn -pLY -jAn -pJj -qpu -ajo -pRa -lJp -dAG -tHc -pVY -kAb -ajk -akl -akl -akl -akl -akl -uwb -ius -tUz -ius -idi -akl -akl -akl -akl -alw -alw -alw -alw -alw -alw -alw -alw -atl -kme -cGU -ejJ -gPO -ejJ -gPO -ejJ -bSL -bSL -pKY -atl -box -boy -oOw -atz -ato -auz -auz -auz -auz -auz -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(235,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -akj -bmC -aRp -aRp -aRp -aRp -aRp -fYS -vOY -vOY -npi -vOY -hIv -lFA -lFA -dKu -lFA -lFA -afl -idc -afi -aeN -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -afi -aeN -afi -nYs -ajU -lFA -dKu -gKL -agj -atP -agj -agj -agj -agj -agj -kVX -bZU -nJO -dCI -ajo -kKk -tGv -nGo -wHF -idX -ajo -sXE -tHc -qpu -ajo -gkI -ipL -rvl -tHc -idX -owA -ajk -amn -aZr -amL -amE -akl -akl -cjH -eBD -cjH -akl -akl -amn -anB -aZx -asV -alw -ask -asw -xsZ -auU -avf -asX -ati -jOf -qyU -iYA -iYA -iYA -iYA -iYA -fqm -hQN -cna -atl -uSw -med -ylz -gZJ -ato -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(236,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -akj -bmC -aRp -aRp -aRp -aRp -aRp -akj -stx -vOY -gZm -wLN -quc -xIN -xIN -kpH -lFA -lFA -afq -vrU -fiy -fiy -fiy -fiy -fiy -fiy -fiy -fiy -fiy -fiy -ubk -fiy -fiy -fiy -fiy -fiy -fiy -fiy -fiy -mdM -akc -lFA -dKu -gKL -agj -atP -atP -atP -atP -atP -agj -jRi -bZU -nJO -gYi -ajk -jff -jfC -qfk -kxl -pJf -ajk -xmm -tHc -xxW -ajk -ajk -ajk -ajk -pjS -ajk -ajk -ajk -amk -amF -hvZ -gBh -dfg -akl -yfa -uWZ -hFz -akl -wvZ -gBh -fWx -amk -amk -alw -qJe -qJe -gPO -gPO -gPO -gPO -atl -atl -atl -atl -sOL -ati -atl -atl -atl -atl -kvn -atl -jBy -med -ylz -pbi -ato -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(237,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -akj -akj -aRp -aRp -aRp -aRp -aRp -bmj -ieR -vOY -npi -vOY -hIv -lFA -lFA -dKu -lFA -lFA -afi -afB -afD -afD -iXD -oxz -afB -afD -afM -afT -afB -eoj -kor -afT -afB -afD -afM -afT -gFN -jlW -afM -afT -afi -lFA -dKu -ihC -agb -agb -agb -agb -agb -agb -agb -jRi -bZU -nJO -jNP -ajk -ajk -ajk -ajk -ajk -ajk -ajk -wGo -tHc -ksb -kPq -rfB -kPq -udo -tHc -oye -xTb -ajk -bvx -aUF -bjm -akl -aHg -akl -ibj -uWZ -gDT -akl -aHg -akl -bjm -bvQ -atC -alw -gPO -asX -auo -sap -atD -gPO -gPO -gPO -vZk -gPO -gPO -ato -hQB -med -uBz -med -xJo -nzf -fTn -nzf -xvZ -leu -ato -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(238,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -akj -aRp -aRp -aRp -aRp -aRp -bmj -ieR -vOY -npi -jjo -bmF -gCZ -wRh -dKu -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -lFA -dKu -gKL -agb -fwU -mbH -hYB -mbH -dZt -agb -jRi -bZU -pNM -wrb -ltp -jAn -gat -prh -jAn -jAn -cTP -jAn -vpo -jAn -jAn -idx -jAn -jAn -osK -rnI -hBk -ajk -akl -akl -akl -akl -uSp -tUE -tvh -uWZ -uSp -tUE -tvh -akl -akl -akl -akl -alw -gPO -gPO -gPO -gPO -gPO -gPO -atD -atD -asX -ask -ask -ato -gsW -med -med -med -med -med -fJc -med -med -pbf -ato -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(239,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -akj -bmC -bmC -bmC -bmC -bmC -akj -vap -wLN -lTN -wpo -bmF -aeU -lfT -jIG -xIN -xIN -xIN -xIN -xIN -xIN -xIN -xIN -xIN -xIN -xIN -xIN -xIN -ceU -xIN -xIN -feI -xIN -xIN -xIN -xIN -xIN -xIN -xIN -xIN -xIN -cfx -qoR -agb -tkW -oqf -lIM -tfS -xzd -agb -jRi -bZU -nJO -bZU -fKi -rnI -rnI -rnI -rnI -rnI -rnI -fkx -cHN -eRj -rYw -sHJ -cHN -eRj -rYw -rnI -qpu -ajk -amA -aUE -amw -akl -aHg -akl -yfa -uWZ -cKb -akl -aHg -akl -amw -bvT -amC -alw -gPO -gPO -atl -ati -ati -ati -ati -ati -ati -ati -ati -ato -ato -xsV -qhZ -med -peU -med -teV -med -peU -ato -ato -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(240,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ahE -ahE -bmD -bmD -bmD -ahE -ahE -lOY -vOY -npi -hhF -bmF -aeU -aeU -dKL -dKL -dKL -dKL -vcz -uuI -dKL -dKL -dKL -dKL -aeU -vxw -lFA -lFA -dKu -lFA -vxw -aeU -xLH -xLH -xLH -xLH -xLH -iVn -xLH -xLH -xLH -xLH -ofb -agb -tkI -oqf -sSI -tfS -xzd -agb -vEt -bZU -nJO -bZU -fKi -rnI -rnI -rnI -rnI -rnI -rnI -rnI -dLy -eRj -rYw -sHJ -rYw -eRj -cHN -rnI -qpu -ajk -amB -amk -hvZ -gBh -xWS -akl -dmf -uWZ -xmP -akl -hKt -gBh -fWx -amk -amk -alw -xsZ -asX -ati -ati -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ato -ato -ato -ato -ato -ato -ato -ato -ato -ato -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(241,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ahE -wow -uDK -hCw -rbt -cXf -bmG -paZ -jaD -rOo -qJX -bmF -bmF -aeM -aeM -afe -afe -afe -aeM -aeM -afe -afe -afe -aeM -aeU -aeU -cBe -cBe -eMo -cBe -bnL -agb -agb -uSk -uSk -hjS -uSk -agb -pLO -iFH -pLO -pLO -agb -agb -koH -rjF -rNq -kgf -qbi -agb -pZP -bZU -nJO -cKg -hed -sXE -ukk -rnI -ukk -rnI -rnI -rnI -rYw -eRj -cHN -sHJ -cHN -eRj -rYw -rnI -vSC -ajk -bjm -bvQ -amn -amD -akl -akl -cLV -uWZ -pmZ -akl -akl -ans -amE -bvQ -amC -alw -atO -atD -ati -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(242,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -bmD -sBO -jzy -eYO -pgR -qsD -bmm -paZ -vOY -npi -vOY -vOY -vOY -afe -css -iAc -kcy -gnu -tIX -tQM -css -rxI -uvN -tDD -aeM -qKv -lFA -lFA -dKu -lFA -jGO -agb -cQt -mbH -mbH -hXD -saZ -hYB -iOb -uuX -mbH -mbH -qJr -bnU -agb -agg -uCZ -agg -agb -agb -agb -eRv -meN -agb -oHs -jPO -vOT -rnI -vOT -teW -rnI -rnI -pFY -wep -wep -iAu -wep -wep -tGv -rnI -pjC -ajk -akl -akl -akl -akl -akl -sge -ibj -oYx -pmZ -inM -akl -akl -akl -akl -akl -alw -atD -atD -ati -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(243,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -bmD -spa -pgR -kTA -pgR -fCv -bmm -mwP -vOY -gZm -wLN -wLN -wLN -stw -iqC -xer -xOT -xOT -fQf -xOT -xOT -xOT -fQf -hSy -aeM -pcO -lFA -lFA -dKu -lFA -nOW -agb -gGD -nLo -nLo -dZl -fGN -nLo -jFL -nLo -nLo -nLo -wLd -agb -mbH -cFv -vOD -lNB -rJP -hYB -cFv -nLo -vOD -kUi -oHs -xmm -vOT -rnI -vOT -rnI -rnI -rnI -mqM -jxX -rnI -pac -rnI -rnI -rnI -rnI -qpu -lEC -xgp -oPq -wXE -xgp -uKJ -uWZ -phu -uWZ -pmZ -uWZ -uKJ -xgp -wXE -atw -xgp -uKJ -gPO -ehw -ati -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(244,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ahE -cdp -ruE -jgV -utD -mnu -itk -wLN -wLN -lTN -vOY -lzo -wQY -aeM -oef -qwA -xey -kLN -tsW -kKZ -tsW -gKy -iqC -iqC -xAU -xIN -xIN -xIN -kpH -lFA -lFA -qyw -nLo -wjm -hrL -hrL -hrL -tYv -hrL -hrL -hrL -tYv -hrL -ueH -hrL -hrL -eJb -ece -ixY -rCC -hrL -hrL -xDG -sqj -oHs -xmm -vOT -rnI -dur -rnI -rnI -rnI -rnI -idX -kxl -kxl -kxl -kxl -eDC -jfC -iET -ajk -akl -akl -akl -akl -akl -vxf -yfa -uWZ -pmZ -orp -akl -akl -akl -akl -akl -alw -ati -ati -ati -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(245,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ahE -bmG -bmG -bmG -bmG -bmG -bmG -cCA -vOY -npi -vOY -vOY -vOY -tan -xOT -xOT -xOT -kkh -pxT -eDW -lKv -qFy -xOT -xOT -xOT -lFA -lFA -lFA -cvs -xIN -xIN -ueH -hrL -rek -kgf -rCn -rCn -sbl -rCn -rCn -rjF -vOD -kgf -agb -agb -epl -agb -agb -pmL -nLo -nLo -nLo -nLo -xzd -oHs -eDE -kxl -kxl -kxl -kxl -kxl -kxl -kxl -wAU -oHs -gzf -app -app -app -app -app -ajk -amw -aUJ -amn -amP -akl -akl -hcr -oYx -pmZ -akl -akl -amw -amn -aZy -amE -alw -apV -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(246,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ahE -toH -iLn -pYc -pTv -flY -bmG -oIW -vOY -npi -vOY -vOY -vOY -afe -fLg -xOT -xOT -gFg -iAc -iAc -iAc -eaB -xOT -rUi -aeM -xXd -lFA -wlz -dKu -lFA -fSG -agb -hWr -vOD -xzd -tPV -tPV -tPV -tPV -tPV -tkW -vOD -vJI -agb -hsH -dZl -fwo -agb -tkI -vEc -iug -qPI -gmW -xzd -oHs -tGv -cOd -tGv -cOd -tGv -cOd -tGv -cOd -tGv -oHs -tGv -tzN -app -ylo -ylo -ylo -apV -amr -amk -hvZ -gBh -dfg -akl -dmf -qrf -jvZ -akl -wvZ -gBh -fWx -amk -amk -atb -aki -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(247,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ahE -tdd -mZN -sjT -mnu -mnu -pNL -wLN -wLN -fKY -lzo -rTK -fZB -aeM -etd -gSt -gSt -gqG -gSt -gqG -gqG -gSt -gSt -lSr -aeM -vKz -gTJ -vDE -tOH -phi -hZr -agb -nBS -nYR -lNB -mbH -uJZ -rOa -uJZ -mbH -gQT -uHv -wpS -agb -nYf -gOc -fxQ -agb -oYc -eQa -kDh -iWv -dcD -qbi -oHs -tGv -cHN -hcG -maL -tGv -cHN -hcG -maL -czy -oHs -tGv -tzN -app -ylo -ylo -ylo -apV -kFo -bvQ -bjm -akl -aHg -akl -ibj -uWZ -gDT -akl -aHg -akl -bvS -aVj -bjm -apV -apV -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(248,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ahE -ahE -cXb -hCl -hCl -cBJ -bmG -rIo -hrg -hrg -dMs -bmF -bmF -aeM -aeM -aeM -mWq -vRi -iNh -wfa -lPf -weO -wAZ -aeM -aeM -aeU -rDC -dqr -sFy -kCe -aeU -agb -agb -vyS -hrL -hrL -hrL -ldC -nzZ -nzZ -hrL -ftI -agb -agb -agb -agb -agb -agb -agb -agb -agb -agb -agb -agb -oHs -oHs -oHs -oHs -oHs -oHs -oHs -oHs -oHs -oHs -oHs -tGv -gpL -app -ylo -ylo -apV -akl -akl -akl -akl -akl -uSp -tUE -vnJ -tUE -vnJ -tUE -tvh -akl -akl -akl -akl -apV -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(249,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ahE -ahE -diO -hwC -ujr -bmG -hjQ -lzo -lzo -lzo -tqb -lwu -jAO -mAp -aeM -aeM -aeM -aeM -aeM -aeM -aeM -aeM -aeM -wmi -aeU -aeU -aeU -aeU -aeU -aeU -nbN -agb -tFx -cva -rCn -goA -mTk -mTk -rCn -uED -cua -agb -nbN -nbN -jAO -mAp -lwu -wmi -mAp -mAp -lwu -lwu -lwu -fXp -yfh -yfh -yfh -tGv -tGv -yfh -yfh -tGv -eIq -yfh -tGv -tGv -app -ylo -ylo -aki -amk -amn -aUL -amw -akl -aHg -apV -aki -aki -aki -apV -aHg -akl -bjm -aVg -bjm -apV -apV -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(250,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ahE -ahE -ahE -ahE -ahE -akj -bmj -bmj -akj -akz -akz -mAp -lwu -mAp -mAp -lwu -lwu -cNH -lwu -lwu -mAp -mAp -lwu -mAp -mAp -jAO -lwu -mAp -lwu -lwu -agb -agb -qbV -qbV -agb -sXf -agb -qbV -qbV -agb -agb -lwu -lwu -lwu -mAp -lwu -lwu -mAp -mAp -lwu -lwu -lwu -tzN -yfh -yfh -yfh -tGv -tGv -oFU -yfh -tGv -yfh -yfh -tGv -tGv -app -ylo -ylo -aki -akm -lvE -amk -hvZ -gBh -xWS -apV -ylo -ylo -ylo -apV -hKt -gBh -fWx -amk -amk -asU -aki -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(251,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -akz -akz -fHO -mAp -mAp -lwu -lwu -mAp -lwu -lwu -mAp -mAp -lwu -mAp -mAp -lwu -lwu -mAp -lwu -lwu -kMe -kMe -kMe -wsJ -wsJ -kMe -avs -wsJ -kMe -kMe -wsJ -lwu -lwu -akz -akz -akz -akz -akz -akz -akz -akz -akz -app -app -app -app -app -app -app -app -app -app -app -app -app -app -ylo -ylo -apV -apV -bvJ -akm -akm -bvR -apV -apV -ylo -ylo -ylo -apV -apV -aZw -asN -asS -aZB -apV -apV -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} -(252,1,1) = {" -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -akz -akz -akz -akz -akz -akz -akz -akz -akz -akz -akz -akz -akz -akz -akz -akz -akz -akz -akz -aog -aog -aog -aog -aog -aog -aog -aog -aog -aog -aog -akz -akz -akz -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -apV -apV -aki -aki -apV -apV -ylo -ylo -ylo -ylo -ylo -apV -apV -aki -aki -apV -apV -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -"} diff --git a/maps/map_files/CORSAT/sprinkles/.gitkeep b/maps/map_files/CORSAT/sprinkles/.gitkeep deleted file mode 100644 index 8b137891791f..000000000000 --- a/maps/map_files/CORSAT/sprinkles/.gitkeep +++ /dev/null @@ -1 +0,0 @@ - diff --git a/maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm b/maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm deleted file mode 100644 index b06b31f2b6a9..000000000000 --- a/maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm +++ /dev/null @@ -1,90 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red/east, -/area/corsat/gamma/airlock/control) -"b" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/airlock/control) -"c" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/gamma/hallwaysouth) -"d" = ( -/turf/open/floor/corsat/redcorner/east, -/area/corsat/gamma/airlock/control) -"e" = ( -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/control) -"f" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"g" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"h" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/control) -"i" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"j" = ( -/turf/open/floor/corsat/squares, -/area/corsat/gamma/airlock/control) -"k" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"l" = ( -/turf/open/floor/corsat/yellowcorner, -/area/corsat/gamma/airlock/control) -"m" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "GammaWestD"; - name = "Gamma Dome Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/control) -"n" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellow/east, -/area/corsat/gamma/airlock/control) - -(1,1,1) = {" -a -d -g -j -l -n -"} -(2,1,1) = {" -b -e -h -e -m -b -"} -(3,1,1) = {" -c -f -i -k -f -c -"} diff --git a/maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm b/maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm deleted file mode 100644 index e0867f3ef176..000000000000 --- a/maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm +++ /dev/null @@ -1,96 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/north) -"b" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/north) -"c" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/airlock/north) -"d" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/airlock/north) -"e" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/corsat/gamma/airlock/north) -"f" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "GammaDSC2"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/north) -"g" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/airlock/north) -"h" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "GammaNorthS"; - name = "Gamma North Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/north) -"i" = ( -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/north) -"j" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/gamma/airlock/north) -"k" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 - }, -/turf/open/snow/layer3, -/area/corsat/gamma/biodome) -"l" = ( -/turf/open/snow/layer0, -/area/corsat/gamma/biodome) -"m" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/snow/layer0, -/area/corsat/gamma/biodome) -"n" = ( -/turf/open/snow/layer3, -/area/corsat/gamma/biodome) - -(1,1,1) = {" -a -g -k -"} -(2,1,1) = {" -b -h -l -"} -(3,1,1) = {" -c -i -l -"} -(4,1,1) = {" -d -j -m -"} -(5,1,1) = {" -e -i -l -"} -(6,1,1) = {" -f -g -n -"} diff --git a/maps/map_files/CORSAT/standalone/lockdown_highsec.dmm b/maps/map_files/CORSAT/standalone/lockdown_highsec.dmm deleted file mode 100644 index dd4ef5005c61..000000000000 --- a/maps/map_files/CORSAT/standalone/lockdown_highsec.dmm +++ /dev/null @@ -1,538 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/template_noop, -/area/template_noop) -"b" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/checkpoint) -"c" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure/opened{ - id = "delta_gamma2"; - name = "Gamma Checkpoint"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"d" = ( -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"e" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"f" = ( -/turf/open/floor/corsat/gamma, -/area/corsat/omega/checkpoint) -"g" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/checkpoint) -"h" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/checkpoint) -"i" = ( -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"j" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/checkpoint) -"k" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/checkpoint) -"l" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/omega/checkpoint) -"m" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ - id = "delta_gamma"; - name = "Gamma Emergency Access"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"n" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "OmegaAccessC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/omega/checkpoint) -"o" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/plating, -/area/corsat/omega/checkpoint) -"p" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"q" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "delta_gamma"; - name = "Gamma Emergency Access"; - pixel_x = -5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "delta_gamma2"; - name = "Checkpoint Gamma"; - pixel_x = 5; - use_power = 0 - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"r" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("omega") - }, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"s" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/checkpoint) -"t" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "OmegaAccessC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/omega/checkpoint) -"u" = ( -/turf/open/floor/corsat/red/northwest, -/area/corsat/omega/checkpoint) -"v" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"w" = ( -/turf/open/floor/corsat/red/north, -/area/corsat/omega/checkpoint) -"x" = ( -/turf/open/floor/corsat/red/northeast, -/area/corsat/omega/checkpoint) -"y" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"z" = ( -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"A" = ( -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"B" = ( -/obj/structure/bed/chair/comfy/black{ - icon_state = "comfychair"; - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"C" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/omega/checkpoint) -"D" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk"; - req_access_txt = "3" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "OmegaAccessC"; - name = "Security Shutters" - }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"E" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/omega/checkpoint) -"F" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"G" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat/squares, -/area/corsat/omega/checkpoint) -"H" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk"; - req_access_txt = "3" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "OmegaAccessC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat/plate, -/area/corsat/omega/checkpoint) -"I" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red, -/area/corsat/omega/checkpoint) -"J" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "delta_omega"; - name = "Checkpoint Omega"; - pixel_x = -5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "delta_theta"; - name = "Theta Emergency Access"; - pixel_x = 5; - use_power = 0 - }, -/turf/open/floor/corsat/red, -/area/corsat/omega/checkpoint) -"K" = ( -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("omega") - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red, -/area/corsat/omega/checkpoint) -"L" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/checkpoint) -"M" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/omega/checkpoint) -"N" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/red, -/area/corsat/omega/checkpoint) -"O" = ( -/turf/open/floor/corsat/red, -/area/corsat/omega/checkpoint) -"P" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/omega/checkpoint) -"Q" = ( -/turf/open/floor/corsat/omega, -/area/corsat/omega/checkpoint) -"R" = ( -/turf/open/floor/corsat/theta, -/area/corsat/omega/checkpoint) -"S" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"T" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ - id = "delta_omega"; - name = "Omega Checkpoint"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"U" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ - id = "delta_theta"; - name = "Theta Emergency Access"; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/corsat/omega/checkpoint) -"V" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/checkpoint) - -(1,1,1) = {" -a -b -d -d -d -m -b -p -z -z -I -b -d -d -S -T -V -"} -(2,1,1) = {" -a -b -f -g -g -f -n -q -A -z -J -n -Q -g -k -Q -n -"} -(3,1,1) = {" -a -b -i -g -g -i -n -r -B -G -K -n -i -g -k -i -n -"} -(4,1,1) = {" -a -b -i -g -g -i -n -s -C -C -L -n -i -g -k -i -n -"} -(5,1,1) = {" -a -b -i -g -g -i -b -t -D -H -t -b -i -g -k -i -V -"} -(6,1,1) = {" -a -b -i -g -g -g -d -u -E -E -M -d -g -g -k -i -b -"} -(7,1,1) = {" -a -b -i -j -h -h -e -v -F -F -N -e -h -h -l -i -b -"} -(8,1,1) = {" -a -b -i -k -g -g -d -w -i -i -O -d -g -g -g -i -b -"} -(9,1,1) = {" -b -b -i -k -g -g -d -x -C -C -P -d -g -g -g -i -b -"} -(10,1,1) = {" -c -f -i -k -g -i -b -o -o -o -o -b -i -g -g -i -b -"} -(11,1,1) = {" -d -g -g -k -g -i -o -a -a -a -a -o -i -g -g -i -b -"} -(12,1,1) = {" -e -h -h -l -g -i -o -a -a -a -a -o -i -g -g -i -b -"} -(13,1,1) = {" -d -f -i -i -i -i -o -a -a -a -a -o -R -g -g -R -b -"} -(14,1,1) = {" -b -b -b -b -b -b -b -y -y -y -y -b -d -d -d -U -b -"} diff --git a/maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm b/maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm deleted file mode 100644 index 8e41c82f5145..000000000000 --- a/maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm +++ /dev/null @@ -1,90 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/gamma/hallwaysouth) -"b" = ( -/turf/open/floor/corsat/plate, -/area/corsat/gamma/hallwaysouth) -"c" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"d" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/gamma/hallwaysouth) -"e" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/theta/airlock/control) -"f" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "ThetaNorthD"; - name = "Theta Dome Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/control) -"g" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/control) -"h" = ( -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/control) -"i" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red/north, -/area/corsat/theta/airlock/control) -"j" = ( -/turf/open/floor/corsat/redcorner/north, -/area/corsat/theta/airlock/control) -"k" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"l" = ( -/turf/open/floor/corsat/squares, -/area/corsat/theta/airlock/control) -"m" = ( -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/theta/airlock/control) -"n" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellow/north, -/area/corsat/theta/airlock/control) - -(1,1,1) = {" -a -e -i -"} -(2,1,1) = {" -b -f -j -"} -(3,1,1) = {" -c -g -k -"} -(4,1,1) = {" -d -h -l -"} -(5,1,1) = {" -b -h -m -"} -(6,1,1) = {" -a -e -n -"} diff --git a/maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm b/maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm deleted file mode 100644 index e9b6a3557645..000000000000 --- a/maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm +++ /dev/null @@ -1,93 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"b" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/theta/airlock/east) -"c" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/theta/airlock/east) -"d" = ( -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"e" = ( -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/east) -"f" = ( -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/east) -"g" = ( -/turf/open/floor/corsat/retrosquares, -/area/corsat/theta/airlock/east) -"h" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"i" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/east) -"j" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/retrosquares, -/area/corsat/theta/airlock/east) -"k" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "ThetaEastW"; - name = "Theta East Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/theta/airlock/east) -"l" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/theta/airlock/east) -"m" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 32 - }, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"n" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "ThetaIDEC2"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/theta/airlock/east/id) - -(1,1,1) = {" -a -d -d -h -d -m -"} -(2,1,1) = {" -b -e -e -i -k -b -"} -(3,1,1) = {" -c -f -g -j -l -n -"} diff --git a/maps/map_files/CORSAT/standalone/sigma_ice.dmm b/maps/map_files/CORSAT/standalone/sigma_ice.dmm deleted file mode 100644 index 33d62da2e60c..000000000000 --- a/maps/map_files/CORSAT/standalone/sigma_ice.dmm +++ /dev/null @@ -1,8669 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ab" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/sigma/biodome/ice) -"ar" = ( -/turf/open/auto_turf/snow/layer1, -/area/corsat/sigma/biodome/gunrange) -"aB" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"aI" = ( -/obj/item/tool/shovel, -/turf/open/auto_turf/snow/layer2, -/area/corsat/sigma/biodome/gunrange) -"aL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/wood, -/area/corsat/sigma/biodome/ice) -"aO" = ( -/obj/effect/decal/mecha_wreckage/ripley/firefighter, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"aS" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 8 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"aU" = ( -/obj/item/tool/shovel, -/turf/open/auto_turf/snow/layer1, -/area/corsat/sigma/biodome/gunrange) -"aV" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/corsat/red, -/area/corsat/sigma/airlock/control) -"ba" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"be" = ( -/turf/open/auto_turf/snow/layer3, -/area/corsat/sigma/biodome/ice) -"bi" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Testing Grounds"; - req_access_txt = "106"; - use_power = 0 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"bo" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/airlock/control) -"bp" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"bs" = ( -/turf/open/auto_turf/snow/layer0, -/area/corsat/sigma/biodome/ice) -"bx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer0, -/area/corsat/sigma/biodome/ice) -"bz" = ( -/obj/item/stack/snow, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"bE" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/item/stack/snow, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"bN" = ( -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"bT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer3, -/area/corsat/sigma/biodome/ice) -"cb" = ( -/obj/structure/fence, -/turf/open/auto_turf/snow/layer2, -/area/corsat/sigma/biodome/gunrange) -"cf" = ( -/obj/item/stack/sheet/metal, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"ci" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - damage_cap = 4000; - dir = 1; - name = "\improper Emergency Access"; - req_access_txt = "100"; - req_one_access = list() - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/biodome/ice) -"cs" = ( -/turf/open/floor/asteroidwarning/west, -/area/corsat/sigma/biodome/gunrange) -"cv" = ( -/turf/open/floor/asteroidwarning/east, -/area/corsat/sigma/biodome/gunrange) -"cA" = ( -/turf/open/auto_turf/snow/layer4, -/area/corsat/sigma/biodome/scrapyard) -"cH" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/auto_turf/snow/layer2, -/area/corsat/sigma/biodome/scrapyard) -"cI" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"cJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"db" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/inaccessible) -"dd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"dn" = ( -/obj/structure/window/framed/corsat/hull, -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/inaccessible) -"do" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/airlock/control) -"dr" = ( -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"dA" = ( -/obj/structure/window/reinforced, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"dO" = ( -/obj/effect/landmark{ - name = "hunter_secondary" - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/sigma/biodome/ice) -"dP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer2, -/area/corsat/sigma/biodome/ice) -"dS" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/corsat/sigma/biodome/ice) -"dT" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"eb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"ee" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"er" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"ev" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/inaccessible) -"eG" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"eV" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"fc" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"fk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer4, -/area/corsat/sigma/biodome/ice) -"fs" = ( -/turf/closed/wall/r_wall, -/area/corsat/sigma/biodome/gunrange) -"fy" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"fz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/west, -/area/corsat/sigma/biodome/ice) -"fC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/auto_turf/snow/layer2, -/area/corsat/sigma/biodome/ice) -"fM" = ( -/obj/structure/window/framed/corsat/hull, -/obj/structure/pipes/standard/simple/visible, -/turf/open/floor/plating, -/area/corsat/inaccessible) -"fT" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"gd" = ( -/obj/item/tool/shovel, -/turf/open/auto_turf/snow/layer4, -/area/corsat/sigma/biodome/gunrange) -"gi" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/sigma/biodome/ice) -"go" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"gr" = ( -/obj/structure/bed/nest, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"gx" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"gB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer4, -/area/corsat/sigma/biodome/ice) -"gP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"hn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/sigma/biodome/ice) -"ho" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/sigma/biodome/ice) -"hx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/sigma/biodome/ice) -"hz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/sigma/biodome/ice) -"hC" = ( -/turf/open/floor/asteroidwarning/west, -/area/corsat/sigma/biodome/ice) -"hH" = ( -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"hQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"hR" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - damage_cap = 4000; - name = "\improper Emergency Access"; - req_access_txt = "100"; - req_one_access = list() - }, -/turf/open/floor/corsat/plate, -/area/corsat/inaccessible) -"hU" = ( -/obj/structure/barricade/wooden, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"hV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/corsat/sigma/biodome/ice) -"hZ" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/auto_turf/snow/layer2, -/area/corsat/sigma/biodome/scrapyard) -"ih" = ( -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"io" = ( -/obj/effect/alien/weeds/node, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"iy" = ( -/turf/open/floor/asteroidwarning/west, -/area/corsat/sigma/biodome/scrapyard) -"iK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer1, -/area/corsat/sigma/biodome/ice) -"iL" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/control) -"iO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"jj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/sigma/biodome/ice) -"jm" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"jv" = ( -/turf/open/floor/asteroidwarning/north, -/area/corsat/sigma/biodome/ice) -"jy" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"jL" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/airlock/control) -"jT" = ( -/obj/structure/pipes/vents/pump, -/turf/open/auto_turf/snow/layer0, -/area/corsat/sigma/biodome/ice) -"kc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"kl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"km" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/asteroidwarning/east, -/area/corsat/sigma/biodome/scrapyard) -"kr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/sigma/biodome/ice) -"kt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"kv" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"kH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/sigma/biodome/ice) -"kI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"kO" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"kT" = ( -/turf/template_noop, -/area/corsat/sigma/biodome/ice) -"kV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"lc" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/auto_turf/snow/layer0, -/area/corsat/sigma/biodome/ice) -"ln" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/sigma/biodome/ice) -"lr" = ( -/turf/closed/wall/resin/membrane, -/area/corsat/sigma/biodome/ice) -"lw" = ( -/turf/closed/wall/r_wall, -/area/corsat/sigma/biodome/ice) -"lB" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"lN" = ( -/obj/structure/tunnel{ - id = "hole4" - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"lP" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "Sigma Dome Control"; - req_one_access = list(102) - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/airlock/control) -"lY" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"mm" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/sigma/biodome/ice) -"mo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"mU" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"mX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"mY" = ( -/turf/open/floor/asteroidwarning/east, -/area/corsat/sigma/biodome/ice) -"nb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/blue/west, -/area/corsat/sigma/airlock/control) -"ng" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"nk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/sigma/biodome/ice) -"np" = ( -/turf/closed/wall, -/area/corsat/sigma/biodome/scrapyard) -"nq" = ( -/obj/structure/fence, -/turf/open/auto_turf/snow/layer2, -/area/corsat/sigma/biodome/scrapyard) -"nu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/template_noop, -/area/template_noop) -"nB" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"nI" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"nP" = ( -/turf/open/auto_turf/snow/layer3, -/area/corsat/sigma/biodome/scrapyard) -"nZ" = ( -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/scrapyard) -"oa" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/control) -"oe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"oi" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/auto_turf/snow/layer2, -/area/corsat/sigma/biodome/scrapyard) -"ol" = ( -/obj/item/tool/shovel, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"on" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"oK" = ( -/turf/open/auto_turf/snow/layer1, -/area/corsat/sigma/biodome/scrapyard) -"oL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/snow/layer2, -/area/corsat/sigma/biodome/ice) -"oS" = ( -/obj/item/stack/sheet/metal, -/turf/open/auto_turf/snow/layer1, -/area/corsat/sigma/biodome/scrapyard) -"oW" = ( -/obj/structure/target/syndicate, -/turf/open/auto_turf/snow/layer1, -/area/corsat/sigma/biodome/gunrange) -"pe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"pp" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/gamma/hallwaysouth) -"pz" = ( -/turf/open/auto_turf/snow/layer1, -/area/corsat/sigma/biodome/ice) -"pC" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/airlock/control) -"pP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"pQ" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/hallwaysouth) -"qd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"qs" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"qC" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/inaccessible) -"qN" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"rr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"rH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door/window/northright{ - name = "Firing Lane" - }, -/turf/open/floor/asteroidwarning, -/area/corsat/sigma/biodome/gunrange) -"rP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door/window/northright{ - name = "Firing Lane" - }, -/turf/open/auto_turf/snow/layer2, -/area/corsat/sigma/biodome/gunrange) -"rQ" = ( -/obj/structure/machinery/m56d_hmg{ - dir = 1 - }, -/obj/structure/machinery/door/window/northright{ - name = "Firing Lane" - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/asteroidwarning, -/area/corsat/sigma/biodome/gunrange) -"rW" = ( -/obj/structure/pipes/unary/outlet_injector{ - name = "Waste Air Injector" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"so" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"sp" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/corsat/sigma/biodome/gunrange) -"ss" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/corsat/sigma/biodome/gunrange) -"sx" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"sA" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"sB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"sT" = ( -/turf/open/auto_turf/snow/layer3, -/area/corsat/sigma/biodome/gunrange) -"tc" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"tg" = ( -/turf/open/auto_turf/snow/layer4, -/area/corsat/sigma/biodome/ice) -"tm" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/auto_turf/snow/layer2, -/area/corsat/sigma/biodome/ice) -"tH" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - dir = 4; - name = "Waste Tank Control" - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/airlock/control) -"tM" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/airlock/control) -"tZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/sigma/biodome/ice) -"ua" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 8 - }, -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/airlock/control) -"uc" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"uk" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = list() - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "SigmaBioAtmos"; - name = "Access Shutter" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"ur" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"us" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/airlock/control) -"uy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/auto_turf/snow/layer2, -/area/corsat/sigma/biodome/ice) -"uD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"uO" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/airlock/control) -"uS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/east, -/area/corsat/sigma/biodome/ice) -"ve" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"vh" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/biodome/ice) -"vB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"vO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"vU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"we" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"ww" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"wD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"xk" = ( -/obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"xp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/airlock/control) -"xK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"xM" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = list() - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "SigmaBioAtmos"; - name = "Access Shutter" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"xQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/airlock/control) -"xX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/airlock/control) -"xZ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"yh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"yj" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = list() - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"yl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/airlock/control) -"yn" = ( -/obj/structure/window/reinforced, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"yo" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/airlock/control) -"yr" = ( -/obj/structure/window/reinforced, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"yy" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/airlock/control) -"yC" = ( -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/airlock/control) -"yG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/airlock/control) -"yJ" = ( -/obj/structure/surface/rack, -/obj/item/tank/air, -/obj/item/tank/air, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/airlock/control) -"yL" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/auto_turf/snow/layer1, -/area/corsat/sigma/biodome/scrapyard) -"yQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"yR" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"yT" = ( -/obj/item/broken_device, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"yV" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/airlock/control) -"yX" = ( -/turf/template_noop, -/area/template_noop) -"yY" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"zf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"zh" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat/yellowcorner/west, -/area/corsat/sigma/airlock/control) -"zo" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"zJ" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow, -/area/corsat/sigma/airlock/control) -"zQ" = ( -/obj/structure/pipes/trinary/mixer{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/southeast, -/area/corsat/sigma/airlock/control) -"zT" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 8; - name = "Mixed Air Injector" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"Ac" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"Aj" = ( -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"Al" = ( -/obj/structure/machinery/door_control{ - id = "SigmaBioAtmos"; - name = "Access Shutters"; - pixel_y = 24 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"Ao" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"As" = ( -/obj/item/tool/shovel, -/turf/open/auto_turf/snow/layer0, -/area/corsat/sigma/biodome/ice) -"At" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"AJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/scrapyard) -"AS" = ( -/obj/structure/largecrate/supply/ammo/m39{ - desc = "An ammunition case containing eight M39 magazines. This one has already been opened."; - name = "\improper M39 magazine case (x8)"; - supplies = list(/obj/item/ammo_magazine/smg/m39=3) - }, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"AX" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"Ba" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/barricade/wooden, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"Bf" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"Bj" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/door/window/eastright{ - name = "Weapon Rack" - }, -/obj/structure/window/reinforced/toughened{ - dir = 1 - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"Bn" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/door/window/westright{ - name = "Weapon Rack" - }, -/obj/structure/window/reinforced/toughened{ - dir = 1 - }, -/obj/item/weapon/gun/flamer/M240T, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"Bv" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"BM" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/airlock/control) -"BO" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - dir = 4; - name = "Mixed Air Control" - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/airlock/control) -"BV" = ( -/turf/open/floor/asteroidwarning, -/area/corsat/sigma/biodome/ice) -"Cd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/airlock/control) -"Ce" = ( -/obj/structure/largecrate/supply/ammo/pistol{ - desc = "An ammunition case containing six M44 speedloaders, and eight M4A3 magazines."; - name = "sidearm ammunition case (x14)"; - supplies = list(/obj/item/ammo_magazine/revolver=6,/obj/item/ammo_magazine/pistol=8) - }, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"Ch" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/incendiary, -/obj/item/explosive/grenade/incendiary, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"CA" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"CI" = ( -/obj/structure/window/reinforced, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 8 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"CX" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 1 - }, -/obj/structure/machinery/door/window/eastright{ - name = "Weapon Rack" - }, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"Db" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Firing Range"; - req_access_txt = "106"; - use_power = 0 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"Dd" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/high_explosive, -/obj/item/explosive/grenade/high_explosive, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"Df" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/template_noop, -/area/template_noop) -"Dg" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"Dh" = ( -/obj/structure/target/syndicate, -/obj/structure/target/syndicate, -/obj/structure/target/syndicate, -/obj/structure/target/syndicate, -/obj/structure/target/syndicate, -/obj/structure/closet/crate{ - desc = "A rectangular steel crate containing firing targets."; - name = "target crate" - }, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"Dp" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat/yellow/northwest, -/area/corsat/sigma/airlock/control) -"Ds" = ( -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/shoes/snow, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"Dw" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/biodome/ice) -"Dy" = ( -/obj/structure/pipes/vents/pump, -/turf/open/auto_turf/snow/layer1, -/area/corsat/sigma/biodome/ice) -"DI" = ( -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/airlock/control) -"DO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/biodome/ice) -"DT" = ( -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/airlock/control) -"DX" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "Sigma Dome Control"; - req_one_access = list(102) - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/airlock/control) -"Eg" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "CO2 Control" - }, -/obj/structure/surface/table/almayer{ - dir = 4 - }, -/turf/open/floor/corsat/yellow/southwest, -/area/corsat/sigma/airlock/control) -"Ev" = ( -/obj/structure/largecrate/supply/ammo/m41a{ - desc = "An ammunition case containing 10 M41A magazines."; - name = "\improper M41A magazine case (x10)"; - supplies = list(/obj/item/ammo_magazine/rifle=10) - }, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"EJ" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"EM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/bluecorner, -/area/corsat/sigma/airlock/control) -"ES" = ( -/turf/open/auto_turf/snow/layer2, -/area/corsat/sigma/biodome/gunrange) -"EV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"Fe" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/flashbang, -/obj/item/explosive/grenade/flashbang, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"Fu" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/high_explosive/training, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"Fx" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/airlock/control) -"Fy" = ( -/turf/open/floor/corsat/yellowcorner/north, -/area/corsat/sigma/airlock/control) -"Fz" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 1 - }, -/obj/structure/machinery/door/window/eastright{ - name = "Weapon Rack" - }, -/obj/item/weapon/gun/revolver/m44, -/obj/item/weapon/gun/revolver/m44, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"FC" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"FI" = ( -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"Gd" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 1 - }, -/obj/structure/machinery/door/window/westright{ - name = "Weapon Rack" - }, -/obj/item/ammo_magazine/flamer_tank, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"Gf" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"Gj" = ( -/obj/structure/target, -/obj/structure/target, -/obj/structure/target, -/obj/structure/target, -/obj/structure/target, -/obj/structure/target, -/obj/structure/closet/crate{ - desc = "A rectangular steel crate containing firing targets."; - name = "target crate" - }, -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"GJ" = ( -/obj/structure/machinery/power/apc/upgraded/no_power/west, -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/airlock/control) -"GK" = ( -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"GO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"GW" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"GZ" = ( -/turf/open/floor/corsat/yellow/east, -/area/corsat/sigma/airlock/control) -"Hh" = ( -/obj/structure/pipes/binary/pump/high_power/on{ - dir = 8 - }, -/turf/open/floor/corsat/yellow/northeast, -/area/corsat/sigma/airlock/control) -"HB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"HK" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Firing Range"; - req_one_access = list(106,102,103); - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/gunrange) -"HV" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/control) -"HX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat/yellow/west, -/area/corsat/sigma/airlock/control) -"Ib" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"Ih" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/airlock/control) -"Im" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/yellow/north, -/area/corsat/sigma/airlock/control) -"Iw" = ( -/turf/open/auto_turf/snow/layer2, -/area/corsat/sigma/biodome/scrapyard) -"ID" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat/blue/northwest, -/area/corsat/sigma/airlock/control) -"IJ" = ( -/obj/structure/fence, -/turf/open/auto_turf/snow/layer3, -/area/corsat/sigma/biodome/gunrange) -"IR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/yellowcorner/east, -/area/corsat/sigma/airlock/control) -"IV" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"Jm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/obj/structure/barricade/wooden, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"Jw" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"Jy" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"JQ" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/blue/northeast, -/area/corsat/sigma/airlock/control) -"JT" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/control) -"JX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/barricade/wooden, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"Kj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/north, -/area/corsat/sigma/biodome/ice) -"Kq" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/asteroidwarning/north, -/area/corsat/sigma/biodome/ice) -"Kr" = ( -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/airlock/control) -"Ku" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"Kw" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"KA" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel, -/obj/item/tool/shovel, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"KF" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"KN" = ( -/turf/open/auto_turf/snow/layer4, -/area/corsat/sigma/biodome/gunrange) -"KR" = ( -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/airlock/control) -"KU" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"KV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"Lb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"Lg" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"Lr" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/blue/northeast, -/area/corsat/sigma/airlock/control) -"Ly" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"LC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"LF" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"LH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"LS" = ( -/obj/item/cell/super/empty, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"Ms" = ( -/obj/structure/fence, -/obj/structure/fence, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"MA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"ME" = ( -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"Nk" = ( -/turf/open/floor/corsat/bluecorner/north, -/area/corsat/sigma/airlock/control) -"Nm" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"Nn" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"Ns" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/airlock/control) -"NA" = ( -/obj/structure/fence, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"NI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"NQ" = ( -/turf/open/floor/corsat/bluecorner/east, -/area/corsat/sigma/airlock/control) -"NS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes, -/obj/item/toy/beach_ball/holoball{ - color = "#2B2B2B"; - desc = "A basket ball crudely spray painted to look like a hockey puck. Weird!"; - name = "hockey puck"; - unacidable = 1 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"NT" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"Om" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"Ot" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/bluecorner/west, -/area/corsat/sigma/airlock/control) -"OI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Sigma Dome Control"; - req_access_txt = "" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"OK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"OR" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"OT" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"OW" = ( -/obj/item/device/binoculars, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SigmaControl"; - name = "Observation Shutters"; - pixel_y = 5; - use_power = 0 - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/airlock/control) -"Po" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer1, -/area/corsat/sigma/biodome/ice) -"Py" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/asteroidwarning/east, -/area/corsat/sigma/biodome/ice) -"PE" = ( -/obj/structure/window/reinforced, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"PH" = ( -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/airlock/control) -"PM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SigmaWestD"; - name = "Entrance Airlock Control"; - pixel_x = -5; - use_power = 0 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"PY" = ( -/obj/item/cell/crap, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"PZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"Qd" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"Qf" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/airlock/control) -"Qi" = ( -/turf/open/floor/corsat/bluecorner, -/area/corsat/sigma/airlock/control) -"Qm" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"Qr" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"Qx" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"QD" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/auto_turf/snow/layer2, -/area/corsat/sigma/biodome/scrapyard) -"QN" = ( -/obj/structure/target, -/obj/item/clothing/suit/storage/militia, -/turf/open/auto_turf/snow/layer1, -/area/corsat/sigma/biodome/gunrange) -"QU" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat/blue/southeast, -/area/corsat/sigma/airlock/control) -"Rb" = ( -/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"Rh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/control) -"Ri" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/airlock/control) -"Rn" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/red, -/area/corsat/sigma/airlock/control) -"Rp" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat/blue/east, -/area/corsat/sigma/airlock/control) -"Rq" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat/blue/southwest, -/area/corsat/sigma/airlock/control) -"Rw" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/sigma/biodome/ice) -"Rx" = ( -/obj/structure/machinery/door_control{ - id = "SigmaWestW"; - name = "Airlock Control"; - pixel_x = -5; - use_power = 0 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaWestE"; - name = "Airlock Control"; - pixel_x = 5; - use_power = 0 - }, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"RD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"RI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"RM" = ( -/obj/structure/powerloader_wreckage, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"RQ" = ( -/obj/structure/machinery/computer3, -/turf/open/floor/corsat/blue, -/area/corsat/sigma/airlock/control) -"RR" = ( -/turf/open/floor/corsat/blue/southeast, -/area/corsat/sigma/airlock/control) -"Sg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning, -/area/corsat/sigma/biodome/ice) -"Sh" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"Sl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"Sm" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/control) -"Ss" = ( -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/airlock/control) -"Su" = ( -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/control) -"Sy" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"SK" = ( -/obj/structure/fence, -/turf/open/auto_turf/snow/layer3, -/area/corsat/sigma/biodome/scrapyard) -"SQ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"To" = ( -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/airlock/control) -"Tq" = ( -/turf/open/floor/corsat/redcorner, -/area/corsat/sigma/airlock/control) -"Tw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"TA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"TB" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/auto_turf/snow/layer1, -/area/corsat/sigma/biodome/scrapyard) -"TC" = ( -/turf/open/floor/corsat/red/southeast, -/area/corsat/sigma/airlock/control) -"TP" = ( -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/control) -"TX" = ( -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"TZ" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/shoes/snow, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"Uu" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"Uv" = ( -/obj/structure/bed/chair, -/turf/open/floor/wood, -/area/corsat/sigma/biodome/ice) -"UD" = ( -/turf/open/floor/wood, -/area/corsat/sigma/biodome/ice) -"UF" = ( -/obj/effect/decal/mecha_wreckage/hoverpod, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"UW" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"UX" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/corsat/plate, -/area/corsat/emergency_access) -"Vh" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"Vi" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"Vq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"Vt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/control) -"Vz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/corsat/sigma/biodome/ice) -"VF" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/biodome/ice) -"VJ" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 8; - id_tag = "mix_sigma_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"VL" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/control) -"VR" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"Wd" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/structure/machinery/door/window/brigdoor/eastleft, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"Wj" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat/blue/north, -/area/corsat/sigma/airlock/control) -"Wk" = ( -/turf/closed/wall/strata_ice, -/area/corsat/sigma/biodome/ice) -"Wt" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/control) -"Ww" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"WL" = ( -/turf/open/floor/asteroidfloor/north, -/area/corsat/sigma/airlock/control) -"WW" = ( -/obj/item/folder/black_random, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/airlock/control) -"WY" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"Xm" = ( -/turf/open/floor/asteroidplating, -/area/corsat/sigma/biodome/gunrange) -"Xv" = ( -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"Xw" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/control) -"XB" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 1; - id_tag = "car_sigma_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"XF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/sigma/biodome/ice) -"XG" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"XK" = ( -/obj/structure/machinery/light, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"XM" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/corsat/sigma, -/area/corsat/sigma/airlock/control) -"XN" = ( -/obj/structure/pipes/vents/pump, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"Yd" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/emergency_access) -"Yf" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "SigmaWestW"; - name = "Sigma West Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/control) -"Yn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"Yp" = ( -/turf/closed/wall, -/area/corsat/sigma/biodome/gunrange) -"Ys" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/corsat/sigma/airlock/control) -"Yu" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "SigmaWestE"; - name = "Sigma West Airlock" - }, -/turf/open/floor/corsat/marked, -/area/corsat/sigma/airlock/control) -"YC" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"YF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"YN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"YR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat/red/west, -/area/corsat/sigma/airlock/control) -"YW" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/corsat/sigma/airlock/control) -"YX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"Zd" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat/red/east, -/area/corsat/sigma/airlock/control) -"Zf" = ( -/turf/open/auto_turf/snow/layer2, -/area/corsat/sigma/biodome/ice) -"Zm" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/ice, -/area/corsat/sigma/biodome/scrapyard) -"Zr" = ( -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"Zy" = ( -/obj/structure/sign/safety/airlock, -/turf/open/floor/asteroidwarning, -/area/corsat/sigma/airlock/control) -"ZB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/ice, -/area/corsat/sigma/biodome/ice) -"ZC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat/red/southwest, -/area/corsat/sigma/airlock/control) -"ZD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/yellowcorner, -/area/corsat/sigma/airlock/control) -"ZH" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat/redcorner/west, -/area/corsat/sigma/airlock/control) -"ZL" = ( -/turf/open/floor/asteroidwarning/north, -/area/corsat/sigma/biodome/gunrange) - -(1,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -pQ -pQ -pQ -pQ -pQ -pQ -pQ -pQ -uO -uO -uO -uO -uO -Dp -GJ -HX -Fy -Ly -Aj -PH -Rh -Sm -To -uO -uO -uO -uO -uO -uO -yX -yX -yX -yX -yX -yX -yX -yX -UW -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(2,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -pp -yX -yX -yX -qC -qC -qC -qC -tH -xp -xQ -yy -BM -DI -FI -FI -Kr -Ly -Aj -Kr -FI -FI -PH -BM -VL -VL -YR -ZC -uO -uO -uO -uO -yX -yX -yX -yX -yX -UW -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(3,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -pp -yX -vh -vh -qC -dr -rW -fM -tM -Aj -Aj -yC -lP -Fy -Aj -Aj -Aj -LC -GO -GO -GO -GO -GO -Vh -GO -GO -YW -ZH -Su -iL -Qf -uO -vh -vh -yX -yX -yX -UW -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(4,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -vh -vh -vh -Wk -db -rr -dr -db -ua -Aj -xZ -yG -DX -IR -GO -GO -GO -LF -Aj -Aj -Aj -Aj -Aj -Vi -Aj -Aj -Aj -Aj -Aj -lY -aV -BM -Wk -vh -vh -vh -yX -UW -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(5,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -nu -yX -yX -vh -Wk -Wk -Wk -db -qN -dr -ev -uc -xK -Aj -yJ -BM -DI -GW -Ib -Ku -Ly -Aj -Ku -Ib -Kw -Tq -BM -Ss -WW -Zd -pC -Ss -Ss -us -BM -Wk -Wk -Wk -vh -vh -vh -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(6,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -vh -vh -vh -vh -vh -vh -Wk -Zr -Zr -db -db -db -db -uk -BM -Al -yV -BM -DT -GZ -Ih -Kw -LC -NT -PM -Ri -Ss -TC -BM -VR -WY -BM -BM -Wt -Wt -BM -BM -Wk -Wk -Wk -Wk -Wk -vh -vh -vh -kT -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(7,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -Dw -Dw -Dw -Dw -Dw -Dw -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -YN -BM -yj -BM -BM -BM -BM -Im -KF -MA -Aj -PZ -Rn -BM -BM -BM -Wd -Xw -BM -pz -pz -be -be -be -Zf -tg -Wk -Wk -Wk -Wk -Wk -vh -vh -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(8,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -Dw -Dw -Dw -Dw -Dw -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -YN -BM -Aj -zh -BO -Eg -BM -DI -Kr -Ly -Aj -Kr -PH -Su -Su -Su -Su -Su -BM -Zf -bs -bs -bs -bs -pz -Zf -pz -Zf -tg -Wk -Wk -Wk -vh -vh -vh -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(9,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -Dw -Dw -Dw -Zr -Zr -Zr -Wk -Wk -Wk -Wk -pe -Sl -Sl -Sl -Sl -Sl -Sl -ur -xM -qd -zo -Aj -yC -lP -Fy -Aj -Ly -Om -Om -Aj -Sy -Aj -Aj -Aj -XG -BM -Zf -bs -bs -bs -bs -gi -bs -bs -bs -Zf -be -be -Wk -Wk -Wk -vh -vh -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(10,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -Dw -Dw -Zr -Zr -Zr -Wk -Wk -Wk -Wk -Wk -YN -Zr -Zr -Zr -Zr -Zr -Zr -Wk -BM -yl -ZD -Cd -Cd -DX -IR -GO -Ao -go -GO -GO -GO -GO -qd -Aj -XK -BM -Zf -bs -bs -bs -bs -bs -bs -bs -bs -bs -pz -pz -be -pz -be -be -vh -vh -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(11,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -hR -db -Zr -Zr -Wk -Wk -Wk -Wk -Wk -Wk -Wk -YN -Zr -Zr -Zr -Zr -Zr -Wk -Wk -BM -yo -jL -db -db -db -DT -KR -NQ -EM -KR -Rp -NQ -Kr -Ly -Aj -XM -BM -Zf -bs -bs -bs -bs -bs -bs -ab -bs -bs -bs -bs -bs -bs -bs -be -tg -vh -vh -UW -UW -UW -yX -yX -yX -yX -yX -yX -yX -yX -"} -(12,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -vh -Zr -Zr -Zr -Zr -Wk -Wk -Wk -Wk -Wk -Wk -Wk -YN -Zr -Zr -Zr -Zr -Wk -Wk -Wk -BM -Fx -zJ -ev -Rb -db -BM -BM -ME -OI -BM -BM -BM -TP -Vt -TP -Yf -BM -Zf -tZ -bx -bx -bx -bx -bx -ln -bx -bx -bx -bx -bx -bx -bx -bx -bx -hn -vh -vh -UW -UW -yX -yX -yX -yX -yX -yX -yX -yX -"} -(13,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -vh -vh -Zr -Zr -Zr -Zr -Wk -Wk -Wk -Wk -Wk -Wk -Zr -YN -Zr -Zr -Wk -Wk -Wk -Wk -Wk -BM -Hh -zQ -fM -XB -db -ID -nb -Nk -Ot -nb -Rq -BM -bo -Ly -Aj -Kr -BM -Zf -ho -Zf -Zf -pz -pz -Zf -Zf -tg -tg -Zf -Zf -Zf -Zf -Zf -pz -pz -ho -bs -vh -vh -UW -UW -yX -yX -yX -yX -yX -yX -yX -"} -(14,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -vh -vh -Zr -Zr -Zr -Zr -Wk -Wk -Wk -Wk -Wk -Wk -pe -Sl -pP -Zr -Wk -Wk -Wk -Wk -Wk -Wk -db -dn -dn -db -db -db -IV -KU -Aj -Ly -Qd -Rx -HV -TZ -OK -Aj -FI -BM -Zf -ho -Zf -np -np -nq -nq -nq -nq -np -nq -nq -nq -nq -np -np -pz -ho -bs -bs -vh -vh -UW -yX -yX -yX -yX -yX -yX -yX -"} -(15,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -vh -vh -Zr -Zr -Zr -Zr -Zr -Wk -Wk -Wk -Wk -Zr -XN -OT -Zr -Zr -Zr -Wk -Wk -Wk -Wk -Wk -Wk -db -VJ -zT -dr -dr -db -Jw -FI -Aj -Ly -FI -RD -HV -bp -Aj -Ww -Ys -BM -Zf -ho -Zf -np -bz -TX -TX -TX -TX -TX -TX -TX -TX -TX -TX -np -Zf -ho -bs -bs -pz -vh -vh -UW -yX -yX -yX -yX -yX -yX -"} -(16,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -vh -Zr -Zr -Zr -Zr -Zr -Wk -Wk -Wk -Wk -Wk -Zr -Zr -YN -Zr -Zr -Zr -Wk -Wk -Wk -Wk -Wk -tg -db -dr -Ac -Ac -dr -db -Jy -FI -xZ -OK -FI -RQ -BM -Kr -Aj -Ly -Kr -BM -pz -ho -Zf -nq -TX -cf -TX -TX -TX -cf -TX -TX -fT -RM -TX -nq -Zf -ho -bs -bs -Zf -pz -vh -UW -UW -yX -yX -yX -yX -yX -"} -(17,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -vh -vh -Zr -Zr -Zr -Zr -Zr -Wk -Wk -Wk -Wk -Wk -Zr -Zr -YN -Zr -Zr -Wk -Wk -Wk -Wk -Wk -Zf -Zf -db -db -db -db -db -db -JQ -NQ -Aj -Aj -Qi -RR -BM -TP -TP -Vt -Yu -BM -Zf -ho -Zf -nq -TX -TX -TX -TX -yT -TX -sA -TX -TX -TX -TX -nq -Zf -ho -bs -bs -Zf -Zf -vh -vh -UW -yX -yX -yX -yX -yX -"} -(18,1,1) = {" -yX -yX -yX -yX -yX -yX -vh -vh -Zr -Zr -Zr -Zr -Zr -Zr -Wk -Wk -Wk -Wk -Zr -Zr -Zr -YN -Wk -Wk -Wk -Wk -Wk -Wk -tg -Zf -Zf -Zf -tg -be -Zf -pz -db -BM -Lb -Aj -Aj -Qm -BM -BM -do -WL -xX -WL -Zy -Zf -ho -pz -nq -TX -TX -RM -TX -TX -TX -TX -TX -sA -TX -TX -nq -Zf -hx -bx -bT -Po -Po -hz -vh -vh -UW -yX -yX -yX -yX -"} -(19,1,1) = {" -yX -yX -yX -yX -yX -yX -vh -Zr -Zr -eG -Zr -Zr -Zr -Zr -Zr -Wk -Wk -Zr -Zr -Zr -Zr -YN -Wk -Wk -Wk -Wk -Wk -Zf -pz -pz -pz -Zf -bs -bs -bs -be -tg -JT -Wj -Aj -Aj -Qr -JT -SQ -hH -hH -kl -hH -BV -Zf -ho -pz -np -TX -TX -TX -Bf -PY -TX -Sh -TX -ol -TX -TX -np -Zf -bs -bs -Wk -tg -pz -XF -pz -vh -UW -UW -yX -yX -yX -"} -(20,1,1) = {" -yX -yX -yX -yX -yX -vh -vh -Zr -Zr -YN -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -YN -Wk -Wk -Wk -Wk -Zr -Zf -Zf -pz -tg -bs -bs -bs -bs -bs -pz -JT -Lg -Nm -OR -Qx -JT -hH -hH -hH -NI -hQ -Sg -fk -nk -pz -nq -TX -yT -TX -TX -TX -TX -FC -UF -TX -TX -TX -nq -Zf -bs -Wk -Wk -Wk -be -hV -pz -vh -vh -UW -UW -yX -yX -"} -(21,1,1) = {" -yX -yX -yX -yX -yX -vh -Zr -Zr -Zr -vU -Sl -Sl -Sl -kt -kt -kI -Sl -Sl -Sl -Sl -Sl -ur -Sl -Sl -Sl -qs -Sl -Sl -dP -fk -bx -bx -bx -bx -bx -hn -pz -JT -Lr -Ns -OW -QU -JT -hH -hH -hH -kl -hH -BV -Zf -bs -Zf -nq -TX -cI -TX -TX -TX -TX -FC -Zm -TX -PY -TX -nq -Zf -bs -Wk -Wk -Wk -Dy -kr -oL -Wk -vh -UW -UW -UW -yX -"} -(22,1,1) = {" -yX -yX -yX -yX -vh -vh -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Wk -Zr -YN -Zr -Zr -Wk -Wk -Zr -Zr -Zr -Zr -Zr -YN -Zr -Zr -Wk -be -bs -bs -bs -bs -bs -ho -Zf -oa -oa -oa -oa -oa -oa -hH -hH -hH -kl -hH -BV -Zf -gi -Zf -nq -TX -cI -TX -sA -TX -TX -aB -xk -TX -cf -TX -nq -pz -bs -Wk -Wk -Wk -Wk -Zf -Vz -be -vh -vh -UW -UW -UW -"} -(23,1,1) = {" -yX -yX -yX -yX -vh -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Wk -Wk -fc -Vq -fc -dS -Wk -Wk -Wk -Wk -Zr -Zr -Zr -YN -Zr -Wk -Wk -Zf -tg -bs -dO -bs -gi -ho -tg -Zf -pz -pz -Zf -Zf -tg -jv -hH -hH -kl -hH -BV -Zf -Zf -Zf -np -TX -cI -TX -TX -cf -TX -TX -yY -RM -TX -TX -np -Zf -bs -bs -Wk -Wk -Wk -Zf -Vz -tg -Wk -vh -Yd -Yd -Yd -"} -(24,1,1) = {" -yX -yX -yX -vh -vh -Zr -Zr -Zr -Zr -Zr -Zr -Wk -Wk -Wk -Zr -YN -Zr -Wk -Wk -Wk -Wk -Wk -Wk -Zr -Zr -YN -Wk -Wk -Wk -Wk -pz -Zf -bs -bs -bs -ho -bs -bs -bs -bs -bs -gi -Zf -jv -hH -hH -kl -hH -hH -hC -hC -hC -iy -TX -dT -TX -TX -TX -aO -TX -YC -TX -nB -TX -nq -Zf -bs -bs -Wk -Wk -Wk -Wk -hV -Zf -Zf -Dw -UX -yh -YX -"} -(25,1,1) = {" -yX -yX -yX -vh -Zr -Zr -Zr -Zr -Zr -Zr -Wk -Wk -Wk -Zr -Zr -YN -Zr -Wk -Wk -Wk -Wk -Wk -Wk -Zr -Zr -YN -Wk -Wk -Wk -Wk -Wk -tg -Zf -Zf -bs -hx -bx -bx -bx -bx -kH -bx -dP -Kj -hQ -hQ -kv -hH -hH -hH -hH -hH -nZ -TX -TX -TX -Bf -Bf -TX -TX -TX -TX -fy -TX -nq -tg -bs -bs -Zf -Zf -Zf -Wk -hV -tg -Zf -ci -DO -yh -Xv -"} -(26,1,1) = {" -yX -yX -vh -vh -Zr -Zr -Zr -Zr -Wk -Wk -Wk -Wk -Wk -Zr -io -YN -Zr -Zr -Wk -Wk -Wk -Wk -Wk -Zr -Zr -YN -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Zf -tg -bs -bs -bs -bs -bs -Vz -Zf -pz -jv -hH -hH -NI -hQ -hQ -hQ -hQ -hQ -AJ -oe -oe -RI -oe -oe -so -TX -RM -TX -TX -TX -nq -Zf -bs -bs -pz -Zf -Zf -tg -Vz -Zf -Wk -Wk -vh -vh -YX -"} -(27,1,1) = {" -yX -yX -vh -Zr -Zr -Zr -Zr -Zr -Wk -Wk -Wk -Wk -Wk -Zr -Zr -YN -Zr -Zr -Wk -Wk -Wk -Wk -Wk -Zr -Zr -YN -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Zf -Zf -tg -bs -bs -Zf -gB -Zf -pz -jv -hH -hH -kl -hH -hH -mY -mY -mY -km -bE -Bf -TX -TX -TX -TX -Bf -TX -TX -TX -TX -nq -Zf -bs -bs -bs -Wk -pz -be -XF -Wk -Wk -Wk -Wk -vh -GK -"} -(28,1,1) = {" -yX -yX -vh -Zr -Zr -Zr -Zr -Wk -Wk -Wk -Wk -gr -lr -Zr -Zr -YN -Zr -Zr -lr -gr -Wk -Wk -Wk -Wk -Zr -YN -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Wk -pz -Zf -bs -bs -ho -Zf -pz -jv -hH -hH -kl -hH -BV -Zf -tg -Zf -np -ol -TX -TX -RM -TX -TX -bz -ol -oK -Iw -Iw -np -pz -bs -bs -Wk -Wk -pz -pz -XF -Wk -Wk -Wk -Wk -vh -yR -"} -(29,1,1) = {" -yX -vh -vh -Zr -Zr -Zr -Zr -Wk -Wk -Wk -Wk -gr -fc -Zr -Zr -YN -Zr -io -fc -gr -Wk -Wk -Wk -Wk -Zr -YN -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Wk -tg -bs -jT -lc -Zf -Zf -jv -hH -hH -kl -hH -BV -pz -tm -Zf -nq -oK -oK -Iw -QD -TX -LS -TX -oS -TB -cA -Iw -nq -pz -bs -bs -Wk -Wk -pz -Zf -Vz -pz -tg -Wk -Wk -vh -vh -"} -(30,1,1) = {" -yX -vh -Zr -Zr -Zr -Zr -Zr -Wk -Wk -Wk -Wk -gx -lr -Zr -io -YN -Zr -Zr -lr -nI -Wk -Wk -Wk -Wk -Zr -YN -Zf -tg -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Zf -Zf -bs -bs -ho -bs -Zf -jv -hH -hH -kl -hH -BV -pz -Zf -Zf -nq -yL -oK -Iw -cH -TX -yT -TX -oi -oS -Iw -Iw -nq -pz -bs -bs -Wk -Wk -Wk -Zf -Vz -pz -pz -pz -Wk -Wk -vh -"} -(31,1,1) = {" -yX -vh -Zr -Zr -Zr -Zr -Wk -Wk -Wk -Wk -gr -lr -lr -Zr -Zr -YN -Zr -Zr -lr -lr -Wk -Wk -Wk -Wk -Zf -Vz -pz -pz -pz -Wk -Wk -Wk -Wk -Wk -Wk -pz -tg -bs -bs -bs -ho -bs -Zf -jv -hH -hH -kl -hH -BV -Zf -Zf -Zf -nq -oK -oS -Iw -hZ -TX -TX -TX -Iw -Iw -oK -nP -nq -pz -bs -bs -Wk -Wk -Wk -Zf -Vz -tg -pz -bs -bs -Wk -vh -"} -(32,1,1) = {" -yX -vh -Zr -Zr -Zr -Zr -Wk -Wk -Wk -nI -fc -lr -Zr -Zr -Zr -kV -lB -Zr -lr -gr -Wk -Wk -Wk -Wk -be -Vz -be -be -pz -pz -Wk -Wk -pz -Zf -Zf -Zf -bs -bs -bs -bs -ho -bs -Zf -jv -hH -hH -kl -hH -BV -Zf -be -be -np -Iw -Iw -Iw -Iw -cA -oK -Iw -Iw -cA -Iw -cA -np -Zf -bs -bs -bs -Wk -Wk -Wk -hV -bs -bs -bs -bs -bs -vh -"} -(33,1,1) = {" -yX -vh -Zr -Zr -Zr -Zr -Wk -Wk -Wk -lr -io -pe -Sl -Sl -Sl -pP -Zr -Zr -fc -gx -Wk -Wk -Wk -pz -Zf -Vz -Zf -bs -bs -pz -pz -be -tg -Zf -bs -bs -bs -bs -bs -bs -ho -bs -Zf -jv -hH -hH -kl -hH -BV -Zf -pz -pz -np -SK -SK -nq -nq -nq -nq -nq -nq -nq -nq -np -np -Zf -bs -bs -bs -bs -Wk -Wk -ho -bs -bs -bs -bs -bs -vh -"} -(34,1,1) = {" -vh -vh -Zr -Zr -Zr -Zr -Wk -Wk -gr -lr -Zr -YN -Zr -io -Zr -Zr -Zr -io -lr -gr -Wk -Wk -Wk -tg -Zf -jj -bx -bx -bx -bx -Po -bT -dP -bx -bx -bx -bx -bx -bx -bx -ln -bx -dP -Kj -hQ -hQ -kv -hH -BV -pz -pz -be -be -pz -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -pz -pz -Zf -tg -bs -bs -bs -bs -bs -Wk -ho -As -bs -bs -bs -bs -vh -"} -(35,1,1) = {" -vh -Zr -Zr -Zr -Zr -Zr -Wk -Wk -gr -fc -Zr -YN -Zr -Zr -Zr -Zr -Zr -Zr -Wk -Wk -Wk -Wk -Wk -Wk -Zf -ho -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -gi -pz -jv -hH -hH -kl -hH -BV -Zf -tg -tg -Zf -pz -pz -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -gi -bs -bs -bs -ho -bs -bs -bs -bs -bs -bs -"} -(36,1,1) = {" -vh -Zr -Zr -Zr -Zr -Zr -Zr -Wk -nI -fc -Zr -YN -Zr -Zr -Wk -dS -fc -dS -Wk -Wk -Wk -Wk -Wk -Wk -Zf -ho -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -pz -tg -pz -Zf -Zf -pz -pz -jv -hH -hH -kl -hH -BV -tg -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -pz -pz -Zf -Vz -Zf -Zf -pz -Zf -Zf -Zf -"} -(37,1,1) = {" -vh -Zr -Zr -Zr -Zr -Zr -Zr -Wk -dS -dS -fc -gP -fc -Wk -Wk -Wk -lN -Wk -Wk -Wk -Wk -Wk -Wk -Zf -Zf -ho -pz -fs -fs -cb -cb -fs -fs -cb -cb -fs -fs -hC -hC -hC -hC -hC -hC -hH -hH -hH -kl -hH -hH -hC -hC -hC -hC -hC -hC -hC -hC -hC -hC -hC -hC -hC -hC -hC -hC -hC -hC -hC -hC -hC -hC -hC -fz -hC -hC -hC -hC -hC -hC -"} -(38,1,1) = {" -vh -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -YN -Zr -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Wk -pz -Zf -be -ho -Zf -fs -sp -cs -cs -cs -cs -cs -cs -cs -fs -hH -hH -hH -hH -hH -hH -hH -hH -hH -kl -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -kl -hH -hH -hH -hH -hH -hH -"} -(39,1,1) = {" -vh -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -YN -Zr -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Wk -pz -be -bs -ho -pz -IJ -ZL -bN -uD -dd -dd -eb -dd -dd -HK -hQ -hQ -kc -hQ -hQ -hQ -hQ -hQ -kc -mX -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -zf -hQ -hQ -hQ -hQ -hQ -hQ -kc -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -mX -hQ -kc -hQ -hQ -hQ -hQ -"} -(40,1,1) = {" -vh -Zr -Zr -Zr -Zr -Wk -Zr -Zr -Zr -Zr -Zr -YN -Zr -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Wk -pz -pz -bs -jT -lc -Zf -IJ -ZL -bN -cJ -bN -ih -At -bN -bN -fs -hH -hH -kl -hH -hH -hH -hH -hH -kl -hH -hH -hH -hH -hH -hH -hH -jy -jy -jy -jy -hH -hH -hH -hH -hH -hH -kl -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -kl -hH -hH -hH -hH -"} -(41,1,1) = {" -vh -Zr -Zr -Wk -Wk -Wk -Wk -Zr -Zr -Zr -Zr -YN -be -pz -pz -tg -pz -Wk -tg -be -Zf -be -bs -bs -bs -ho -Zf -IJ -ZL -bN -cJ -sx -bN -bN -bN -bN -Db -jy -hH -kl -hH -hH -hH -hH -hH -kl -hH -hH -hH -hH -hH -hH -eV -jy -hH -hH -hH -hH -hH -hH -hH -hH -hH -kl -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -kl -hH -hH -hH -hH -"} -(42,1,1) = {" -vh -Zr -Zr -Zr -Wk -Wk -Wk -Zr -Zr -pe -Sl -ur -Po -iK -bT -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -nk -Zf -IJ -ZL -bN -vB -bN -bN -bN -bN -bN -fs -hH -jy -kl -hH -hH -hH -mY -mY -uS -mY -mY -mY -mY -mY -mY -jy -hH -hH -hH -hH -mY -mY -mY -mY -mY -mY -uS -mY -mY -mY -mY -mY -mY -mY -mY -mY -mY -uS -mY -mY -mY -Py -"} -(43,1,1) = {" -vh -Zr -Zr -Zr -Wk -Wk -Zr -Zr -Zr -YN -Zr -Wk -pz -gB -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -Zf -fs -bN -bN -vO -Yp -Yp -Yp -Yp -Yp -fs -hH -hH -kl -hH -hH -BV -pz -Zf -Vz -pz -pz -Zf -tg -Zf -pz -jv -hH -hH -hH -BV -Zf -Zf -pz -pz -Zf -Zf -Vz -tg -Zf -Zf -Zf -pz -pz -pz -Zf -Zf -Zf -Vz -Zf -pz -Zf -Zf -"} -(44,1,1) = {" -vh -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Zr -YN -Wk -Wk -Wk -XF -Zf -pz -Zf -Zf -Zf -pz -Zf -tg -Zf -pz -pz -pz -Zf -fs -bN -bN -cJ -Xm -Xm -AS -Ce -Ev -fs -hH -hH -kl -hH -hH -BV -Zf -bs -mm -bs -bs -bs -bs -gi -Zf -jv -hH -hH -hH -BV -Zf -gi -bs -bs -bs -bs -mm -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -ho -bs -bs -bs -bs -"} -(45,1,1) = {" -vh -vh -Zr -Zr -Zr -pe -Sl -Sl -Sl -pP -Wk -Wk -Wk -XF -tg -fs -IJ -IJ -fs -IJ -IJ -fs -IJ -IJ -fs -IJ -IJ -fs -bN -sx -cJ -Xm -Xm -Xm -Xm -Xm -fs -hH -hH -kl -hH -hH -BV -Zf -bs -bs -bs -bs -bs -bs -bs -pz -jv -hH -hH -hH -BV -tg -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -As -bs -bs -bs -ho -bs -bs -bs -vh -"} -(46,1,1) = {" -yX -vh -Zr -Zr -Zr -YN -Zr -Zr -Zr -Wk -Wk -Wk -Zf -ho -pz -IJ -ar -ar -oW -ar -ar -ar -sT -sT -sT -ar -ar -rH -bN -sx -cJ -Xm -Xm -AX -ng -EJ -fs -hH -hH -kl -hH -hH -BV -Zf -pz -Zf -tg -pz -pz -Zf -Zf -Zf -jv -hH -hH -hH -BV -Zf -Zf -Zf -Zf -Zf -pz -Zf -Zf -tg -bs -bs -bs -bs -tg -Zf -Zf -bs -ho -bs -bs -bs -vh -"} -(47,1,1) = {" -yX -vh -Zr -Zr -Zr -YN -Zr -Zr -Wk -Wk -Wk -pz -bs -ho -be -IJ -ES -ES -ar -ar -ar -ES -ES -sT -ES -oW -ar -rP -bN -sx -cJ -Xm -Xm -Yp -Yp -Yp -fs -hH -hH -kl -hH -hH -BV -tg -NA -NA -NA -NA -NA -NA -NA -NA -bi -bi -lw -bi -bi -NA -NA -Ms -Ms -Ms -NA -NA -NA -Zf -bs -bs -bs -Zf -Wk -Wk -Zf -Zf -Vz -bs -bs -bs -vh -"} -(48,1,1) = {" -yX -vh -Zr -Zr -Zr -YN -Zr -Zr -Wk -Wk -Wk -pz -bs -ho -be -IJ -KN -ES -ES -ES -oW -KN -ES -ES -ES -aI -ar -rP -bN -ih -cJ -Xm -Xm -Xm -Ch -Fe -fs -hH -hH -kl -hH -hH -BV -Zf -NA -VF -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -VF -NA -Zf -bs -Zf -Wk -Wk -Wk -Wk -Wk -tg -Vz -Zf -bs -bs -vh -"} -(49,1,1) = {" -yX -vh -Zr -Zr -XN -OT -Zr -Wk -Wk -Wk -Wk -Zf -bs -ho -be -IJ -ES -ES -sT -ES -ar -ar -ES -ES -ES -ES -ES -fs -bN -bN -cJ -Xm -Xm -Xm -Xm -Xm -fs -hH -hH -kl -hH -hH -BV -Zf -NA -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -NA -Zf -Zf -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Vz -Zf -Zf -bs -vh -"} -(50,1,1) = {" -yX -vh -vh -Zr -Zr -YN -Zr -Wk -Wk -Wk -Wk -Zf -bs -ho -be -IJ -ES -ES -aI -ES -ES -ES -oW -ES -ES -ar -ar -rH -bN -bN -cJ -Xm -Xm -Xm -CA -Fu -fs -hH -hH -kl -hH -hH -BV -Zf -NA -hH -hH -hH -Uv -Uv -UD -aL -UD -UD -UD -UD -UD -aL -UD -Rw -Rw -hH -hH -hH -NA -pz -tg -Wk -Wk -Wk -Wk -Wk -Wk -Wk -hV -tg -Zf -vh -vh -"} -(51,1,1) = {" -yX -yX -vh -Zr -Zr -YN -Zr -Wk -Wk -Wk -Wk -Zf -bs -ho -pz -IJ -oW -ar -ar -ES -sT -ES -ES -ES -ES -ES -ar -rH -bN -bN -cJ -Xm -Xm -Yp -Yp -Yp -fs -hH -hH -kl -hH -hH -BV -Zf -NA -hH -hH -hH -Uv -Uv -UD -aS -on -Ba -iO -TA -KV -CI -UD -Rw -Rw -hH -hH -hH -NA -pz -pz -Wk -Wk -Wk -Wk -Wk -Wk -Zf -hV -Zf -pz -vh -yX -"} -(52,1,1) = {" -yX -yX -vh -Zr -Zr -YN -Zr -Wk -Wk -Wk -tg -Zr -Zr -ho -tg -IJ -ar -ar -ar -ar -oW -ES -ES -ES -ES -ar -ar -rH -bN -bN -cJ -Xm -Xm -Bj -CX -Fz -fs -hH -hH -kl -hH -hH -BV -pz -NA -hH -hH -hH -Uv -Uv -UD -YF -ZB -JX -Zr -Nn -Tw -yr -UD -Rw -Rw -hH -hH -hH -NA -Zf -pz -Zf -Wk -Wk -Wk -Wk -Wk -Zf -Vz -Zf -pz -vh -yX -"} -(53,1,1) = {" -yX -yX -vh -vh -Zr -YN -Zr -Zr -Wk -pz -Zr -Zr -Zr -ho -pz -fs -IJ -IJ -fs -IJ -IJ -fs -IJ -IJ -fs -IJ -IJ -fs -bN -tc -ww -Xm -Xm -Xm -Xm -Xm -fs -jm -hH -kl -hH -hH -BV -pz -NA -hH -hH -hH -Uv -Uv -UD -EV -Zr -sB -yQ -mo -Yn -PE -UD -Rw -Rw -hH -hH -hH -NA -Zf -bs -bs -Wk -Wk -Wk -pz -pz -Zf -ho -bs -vh -vh -yX -"} -(54,1,1) = {" -yX -yX -yX -vh -Zr -vU -Sl -Sl -Sl -Sl -Sl -Sl -Sl -lc -pz -IJ -KN -ES -ar -sT -sT -ES -ES -sT -QN -ar -ar -rH -bN -bN -cJ -Xm -Xm -Bn -Gd -Gd -fs -hH -hH -kl -hH -hH -BV -Zf -NA -hH -hH -hH -Uv -Uv -UD -EV -Zr -Zr -Zr -Zr -Zr -PE -UD -Rw -Rw -hH -hH -hH -NA -Zf -Zf -bs -Zf -Wk -pz -Zf -bs -ab -ho -bs -vh -yX -yX -"} -(55,1,1) = {" -yX -yX -yX -vh -vh -Zr -Zr -Zr -Zr -Zr -Zr -Zr -Wk -ho -be -IJ -sT -sT -sT -sT -QN -ES -ES -sT -ES -ar -ES -rQ -bN -bN -cJ -Xm -Xm -Yp -Yp -Yp -fs -hH -hH -kl -hH -hH -BV -NA -NA -hH -hH -hH -Uv -Uv -UD -EV -Zr -Zr -Zr -Zr -Zr -PE -UD -Rw -Rw -hH -hH -hH -NA -NA -Zf -tZ -bx -dP -dP -bx -bx -ln -nk -vh -vh -yX -yX -"} -(56,1,1) = {" -yX -yX -yX -yX -vh -Zr -Zr -Zr -Zr -Zr -Wk -Wk -Wk -ho -be -IJ -sT -QN -sT -sT -sT -ES -ES -ES -ES -ES -ES -rH -bN -bN -cJ -Xm -Xm -Xm -Dd -Gf -fs -hH -hH -kl -hH -hH -BV -NA -Uu -hH -hH -hH -Uv -Uv -UD -EV -Zr -Zr -Zr -Zr -Zr -PE -UD -Rw -Rw -hH -hH -hH -Ds -NA -pz -ho -bs -tg -Wk -pz -Zf -bs -bs -vh -yX -yX -yX -"} -(57,1,1) = {" -yX -yX -yX -yX -vh -vh -Zr -Zr -Wk -Wk -Wk -Wk -Wk -ho -be -IJ -ar -sT -ar -sT -sT -ES -ES -ES -sT -aU -ar -fs -bN -bN -cJ -Xm -Xm -Xm -Xm -Xm -fs -hH -hH -kl -hH -hH -BV -NA -Uu -hH -hH -hH -Uv -Uv -UD -kO -ve -ve -NS -ve -ve -dA -UD -Rw -Rw -hH -hH -hH -mU -NA -pz -ho -pz -Wk -Wk -Wk -pz -Zf -vh -vh -yX -yX -yX -"} -(58,1,1) = {" -yX -yX -yX -yX -yX -vh -Zr -Zr -Wk -Wk -Wk -Wk -pz -ho -be -IJ -ar -ar -gd -ar -sT -ES -QN -sT -ES -ar -KN -rH -bN -bN -cJ -Xm -Xm -Xm -Dg -Dg -fs -hH -hH -kl -hH -hH -BV -NA -mU -hH -hH -hH -Uv -Uv -UD -EV -Zr -Zr -Zr -Zr -Zr -PE -UD -Rw -Rw -hH -hH -hH -KA -NA -pz -ho -Zf -Wk -Wk -Wk -Wk -pz -vh -yX -yX -yX -yX -"} -(59,1,1) = {" -yX -yX -yX -yX -yX -vh -vh -Zr -Wk -Wk -Wk -Wk -pz -ho -be -IJ -QN -ar -ar -ar -sT -ES -ES -ES -sT -ar -ES -rH -bN -bN -cJ -Xm -Xm -Yp -Yp -Yp -fs -hH -hH -kl -hH -hH -BV -NA -NA -hH -hH -hH -Uv -Uv -UD -EV -Zr -Zr -Zr -Zr -Zr -PE -UD -Rw -Rw -hH -hH -hH -NA -NA -Zf -ho -bs -tg -Wk -Wk -Wk -vh -vh -yX -yX -yX -yX -"} -(60,1,1) = {" -yX -yX -yX -yX -yX -yX -vh -Zr -Zr -Wk -Wk -Zf -bs -ho -be -IJ -sT -sT -sT -sT -sT -ES -ar -ES -sT -QN -ES -rH -bN -bN -cJ -Xm -Xm -Xm -Dh -Gj -fs -hH -hH -kl -hH -hH -BV -Zf -NA -hH -hH -hH -Uv -Uv -UD -EV -Zr -Zr -Zr -Zr -Zr -PE -UD -Rw -Rw -hH -hH -hH -NA -Zf -tg -ho -bs -bs -Zf -Wk -Wk -vh -yX -yX -yX -yX -yX -"} -(61,1,1) = {" -yX -yX -yX -yX -yX -yX -vh -vh -Zr -pz -Zf -pz -bs -ho -be -fs -IJ -IJ -fs -IJ -IJ -fs -IJ -IJ -fs -IJ -IJ -fs -bN -bN -cJ -Xm -Xm -Xm -Xm -Xm -fs -hH -hH -kl -hH -hH -BV -Zf -Ms -hH -hH -hH -Uv -Uv -UD -EV -Zr -ee -yQ -ZB -Yn -PE -UD -Rw -Rw -hH -hH -hH -NA -Zf -bs -ho -bs -bs -bs -pz -vh -vh -yX -yX -yX -yX -yX -"} -(62,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -vh -vh -pz -tg -Zf -bs -ho -be -Zf -pz -Zf -pz -Zf -Zf -Zf -tg -Zf -Zf -Zf -pz -fs -bN -bN -cJ -Xm -Xm -Xm -Dh -Gj -fs -hH -hH -kl -hH -hH -BV -Zf -NA -hH -hH -hH -Uv -Uv -UD -YF -ZB -hU -Zr -Nn -ZB -yr -UD -Rw -Rw -hH -hH -hH -NA -Zf -bs -ho -bs -bs -bs -vh -vh -yX -yX -yX -yX -yX -yX -"} -(63,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -vh -pz -Zf -bs -bs -jj -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -bx -hn -Zf -fs -bN -bN -vO -Yp -Yp -Yp -Yp -Yp -fs -hH -hH -kl -hH -hH -BV -pz -NA -hH -hH -hH -Uv -Uv -UD -ba -LH -Jm -HB -we -LH -yn -UD -Rw -Rw -hH -hH -hH -NA -pz -bs -ho -bs -bs -bs -vh -yX -yX -yX -yX -yX -yX -yX -"} -(64,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -vh -vh -bs -bs -bs -ho -bs -bs -bs -Zf -Zf -pz -pz -bs -bs -bs -gi -ho -Zf -IJ -ZL -bN -cJ -bN -bN -bN -bN -bN -fs -hH -hH -kl -hH -hH -BV -pz -NA -hH -hH -hH -Uv -Uv -UD -aL -UD -UD -UD -UD -UD -aL -UD -Rw -Rw -hH -hH -hH -NA -pz -bs -ho -bs -bs -vh -vh -yX -yX -yX -yX -yX -yX -yX -"} -(65,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -vh -vh -bs -bs -mm -bs -pz -Zf -tg -Wk -Wk -pz -Zf -pz -bs -bs -ho -Zf -IJ -ZL -bN -cJ -bN -bN -bN -bN -bN -Db -hH -hH -kl -hH -hH -BV -Zf -NA -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -NA -uy -bx -nk -bs -vh -vh -vh -yX -yX -yX -yX -yX -yX -yX -"} -(66,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -vh -vh -bs -bs -bs -pz -Wk -Wk -Wk -Wk -Wk -Wk -pz -Zf -Zf -ho -pz -IJ -ZL -bN -cJ -bN -bN -Bv -bN -bN -fs -hH -hH -kl -hH -hH -BV -Zf -NA -VF -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -hH -VF -NA -Vz -bs -bs -vh -vh -vh -vh -yX -yX -yX -yX -yX -yX -yX -"} -(67,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -vh -vh -bs -pz -pz -pz -Wk -Wk -Wk -Wk -Wk -Wk -Wk -Zf -ho -pz -IJ -ZL -bN -wD -dd -dd -er -dd -dd -HK -hQ -hQ -kv -hH -hH -BV -Zf -NA -NA -NA -NA -NA -NA -NA -NA -NA -NA -NA -NA -NA -NA -NA -NA -NA -NA -NA -NA -NA -Vz -bs -vh -vh -vh -vh -yX -yX -yX -yX -yX -yX -yX -yX -"} -(68,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -vh -vh -Zf -Zf -Zf -Zf -Wk -Wk -Wk -Wk -Wk -tg -Zf -ho -Zf -fs -ss -cv -cv -cv -cv -cv -cv -cv -fs -hH -hH -kl -hH -hH -BV -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -Zf -pz -pz -pz -Zf -Zf -uy -dP -dP -dP -dP -dP -Po -dP -fC -vh -vh -vh -vh -Df -yX -yX -yX -yX -yX -yX -yX -yX -"} -(69,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -vh -vh -Zf -tg -pz -pz -Wk -Wk -Wk -Wk -pz -Zf -ho -Zf -fs -fs -IJ -IJ -fs -fs -IJ -IJ -fs -fs -hH -hH -kl -hH -hH -BV -Zf -gi -bs -bs -bs -bs -bs -bs -Zf -Zf -Zf -Zf -tg -Zf -Vz -bs -bs -bs -pz -Zf -pz -pz -vh -vh -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(70,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -vh -vh -Zf -Zf -Zf -pz -Zf -Wk -Zf -Zf -bs -ho -Zf -Zf -tg -Zf -Zf -Zf -tg -Zf -Zf -Zf -tg -jv -hH -NI -hQ -hQ -Sg -dP -bx -bx -dP -fk -dP -dP -dP -bx -bx -kH -bx -bx -bx -nk -Zf -pz -Zf -Wk -Wk -Wk -vh -vh -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(71,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -vh -vh -vh -be -be -tg -Zf -Zf -dO -bs -jj -bx -bx -bx -bx -Po -Po -bx -bx -bx -bx -dP -Kj -hQ -kv -hH -hH -BV -pz -bs -Zf -Wk -Wk -Wk -Wk -tg -pz -bs -ho -bs -bs -Zf -pz -pz -Wk -Wk -Wk -vh -vh -vh -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(72,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -vh -vh -be -Zf -bs -bs -bs -bs -mm -bs -bs -pz -pz -Wk -tg -pz -bs -bs -bs -Zf -jv -hH -kl -hH -hH -BV -pz -pz -Wk -Wk -Wk -Wk -Wk -Wk -Zf -Zf -mm -bs -bs -tg -Wk -Wk -Wk -Wk -vh -vh -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(73,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -vh -vh -vh -bs -bs -bs -bs -bs -bs -be -Wk -Wk -Wk -Wk -pz -pz -bs -gi -be -jv -hH -kl -hH -hH -BV -Zf -pz -Zf -Wk -Wk -Wk -Wk -Wk -tg -Zf -Zf -bs -Zf -Wk -Wk -Wk -vh -vh -vh -vh -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(74,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -kT -vh -vh -vh -bs -bs -bs -bs -be -tg -Wk -Wk -Wk -Wk -tg -bs -bs -be -jv -hH -kl -hH -hH -BV -Zf -bs -Zf -pz -Wk -Wk -Wk -Wk -be -pz -pz -bs -Zf -Wk -vh -vh -vh -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(75,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -vh -vh -vh -bs -pz -pz -be -pz -Wk -Wk -pz -pz -bs -bs -be -jv -hH -kl -hH -hH -BV -Zf -bs -bs -Zf -Zf -pz -Wk -be -be -Zf -pz -Zf -vh -vh -vh -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(76,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -vh -vh -vh -pz -be -be -pz -Zf -pz -bs -bs -bs -Zf -jv -hH -kl -hH -hH -BV -Zf -bs -bs -Zf -tg -pz -pz -Zf -Zf -tg -vh -vh -vh -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(77,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -vh -vh -vh -vh -tg -be -bs -bs -bs -bs -pz -jv -hH -kl -hH -hH -BV -pz -bs -bs -bs -Zf -Zf -Zf -vh -vh -vh -vh -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} -(78,1,1) = {" -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -UW -yX -yX -vh -vh -vh -vh -vh -vh -bs -pz -Kq -hH -kl -hH -hH -BV -pz -gi -vh -vh -vh -vh -vh -vh -UW -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -nu -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -yX -"} diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm deleted file mode 100644 index d1ba560171cf..000000000000 --- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm +++ /dev/null @@ -1,85552 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/turf/open/space, -/area/fiorina/oob) -"aak" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "4" - }, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/tumor/servers) -"aaJ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"aaR" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"abg" = ( -/obj/item/stack/sheet/cardboard, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells) -"abh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"abJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - icon = 'icons/obj/structures/doors/2x1prepdoor.dmi' - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"abP" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/spawner/random/gun/rifle, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/chapel) -"abR" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"acg" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"aco" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/sillycup{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"acq" = ( -/obj/item/tool/scythe, -/turf/open/floor/prison/blue_plate/west, -/area/fiorina/station/botany) -"adf" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"adu" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"adv" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"adw" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/station/telecomm/lz1_tram) -"adW" = ( -/obj/structure/bed{ - icon_state = "psychbed" - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/servers) -"aep" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/inflatable, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"aeA" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"aeQ" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/blue/north, -/area/fiorina/station/civres_blue) -"aeW" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"afc" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"afj" = ( -/obj/structure/prop/resin_prop{ - icon_state = "rack" - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"afv" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/structure/disposalpipe/segment{ - icon_state = "delivery_outlet"; - layer = 6; - name = "overhead ducting"; - pixel_y = 33 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"afw" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"afO" = ( -/obj/structure/bed/sofa/vert/grey/bot{ - pixel_y = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"afS" = ( -/turf/open/floor/prison/bluecorner/west, -/area/fiorina/station/power_ring) -"afW" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"agd" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"agi" = ( -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/tumor/servers) -"agk" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"agv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - anchored = 1 - }, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - pixel_x = 8 - }, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - pixel_x = -8 - }, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - layer = 4.1; - pixel_x = -4; - pixel_y = 18 - }, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - layer = 4.1; - pixel_x = 4; - pixel_y = 18 - }, -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"agG" = ( -/obj/structure/barricade/metal{ - dir = 1; - health = 250; - icon_state = "metal_1" - }, -/obj/structure/barricade/metal{ - dir = 8; - health = 250; - icon_state = "metal_1" - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"ahm" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"aho" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/lz/near_lzI) -"ahM" = ( -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"ahY" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/civres_blue) -"aif" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"aiP" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"aje" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"ajf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"aju" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"ajx" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/space/basic, -/area/fiorina/oob) -"ajT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"ajU" = ( -/turf/open/floor/prison/redcorner/west, -/area/fiorina/station/security) -"akq" = ( -/obj/item/device/binoculars, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"akW" = ( -/obj/structure/bed/chair/janicart, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"alx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"alJ" = ( -/obj/structure/machinery/door/window/northleft{ - dir = 4 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security/wardens) -"alO" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/lz/near_lzI) -"amd" = ( -/obj/effect/decal/hefa_cult_decals/d96, -/obj/item/paper/crumpled/bloody, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"ame" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"amu" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"amE" = ( -/obj/item/storage/box/gloves, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"amF" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/tumor/aux_engi) -"amX" = ( -/obj/item/clothing/shoes/laceup, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"ane" = ( -/obj/item/weapon/unathiknife{ - name = "ceremonial knife" - }, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"anm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer{ - icon_state = "security_det"; - name = "Shuttle control deck"; - pixel_y = 6 - }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/item/ashtray/plastic{ - pixel_x = 8; - pixel_y = -7 - }, -/obj/item/clothing/mask/cigarette/cigar{ - desc = "Manufactured in New Space Cuba, a product of Castro LTD."; - name = "comically large cigar"; - pixel_x = 14; - pixel_y = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"anp" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"anq" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan9" - }, -/area/fiorina/tumor/ship) -"anu" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"anF" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) -"anJ" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"anP" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/carpet, -/area/fiorina/station/security/wardens) -"anR" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"aoj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"aow" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"aoz" = ( -/obj/structure/prop/structure_lattice{ - health = 300 - }, -/obj/structure/prop/structure_lattice{ - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"aoY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/pizzabox/margherita, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"apc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/lz/near_lzI) -"apd" = ( -/obj/item/paper/crumpled/bloody, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/maintenance) -"apf" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"apw" = ( -/turf/open/auto_turf/sand/layer1, -/area/fiorina/tumor/civres) -"apz" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"aqa" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"aqj" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"ara" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"arc" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"arl" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"arn" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "researchprestine" - }, -/turf/closed/wall/prison, -/area/fiorina/station/research_cells) -"arR" = ( -/obj/item/clothing/under/stowaway, -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"arT" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"arV" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - layer = 2.8 - }, -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"aso" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"asE" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"asN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stock_parts/subspace/amplifier{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/stock_parts/subspace/analyzer{ - pixel_x = -9; - pixel_y = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"atl" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"atn" = ( -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"atp" = ( -/obj/item/book/manual/security_space_law{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"atq" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) -"ats" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"auO" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown2/northeast, -/area/fiorina/station/park) -"auV" = ( -/obj/structure/surface/rack, -/obj/item/device/camera, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"avc" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/research_cells) -"avI" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/tumor/servers) -"avJ" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"avT" = ( -/obj/item/trash/semki, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"avY" = ( -/obj/item/clothing/head/soft/rainbow, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"awC" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/tumor/aux_engi) -"awL" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"awN" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/turf/open/floor/prison/blue/north, -/area/fiorina/tumor/servers) -"awS" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"axb" = ( -/obj/item/clothing/suit/storage/marine/specialist, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"axn" = ( -/obj/structure/monorail{ - dir = 4; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"axx" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"axA" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_x = 2; - pixel_y = -10 - }, -/turf/closed/wall/prison, -/area/fiorina/station/security) -"axL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"axU" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"axW" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/whitegreencorner/east, -/area/fiorina/station/medbay) -"ayq" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"ayC" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells) -"ayX" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"azm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/card/id/guest, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"azv" = ( -/obj/structure/girder, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"azI" = ( -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco) -"azK" = ( -/obj/structure/machinery/microwave{ - desc = "There's two of them."; - pixel_y = 5 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - desc = "Holy shit"; - pixel_y = 18 - }, -/obj/item/storage/pill_bottle/kelotane/skillless{ - desc = "Don't touch -Dr. O"; - pixel_x = 6; - pixel_y = 31 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"azP" = ( -/obj/structure/curtain/red, -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) -"azZ" = ( -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/tumor/ice_lab) -"aAf" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/almayer, -/area/fiorina/tumor/ship) -"aAk" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"aAx" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"aAO" = ( -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/tumor/ice_lab) -"aBm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/wy_mre{ - pixel_x = 5; - pixel_y = 2 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"aBC" = ( -/obj/structure/machinery/door/airlock/almayer/marine{ - dir = 1; - icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/research_cells) -"aBJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/chef_recipes{ - pixel_y = 6 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"aBR" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/prison/blue, -/area/fiorina/station/chapel) -"aBZ" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/prison, -/area/fiorina/station/park) -"aCa" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"aCj" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"aCp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"aCC" = ( -/obj/item/tool/soap{ - pixel_x = 2; - pixel_y = -4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/fiorina/tumor/ship) -"aCH" = ( -/obj/item/device/pinpointer, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"aCI" = ( -/obj/structure/closet/crate/bravo, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/fuel_cell, -/obj/item/stack/sheet/plasteel, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"aCZ" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) -"aDl" = ( -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"aDp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/fiorina/station/park) -"aDR" = ( -/turf/open/floor/prison/red/north, -/area/fiorina/station/security) -"aEi" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"aEj" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/lz/near_lzI) -"aEy" = ( -/obj/item/device/t_scanner, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"aEz" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) -"aEE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/milk{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"aEL" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"aEP" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"aEW" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ship) -"aFh" = ( -/obj/structure/largecrate/guns/merc, -/obj/item/toy/deck/uno, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"aFi" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - name = "\improper Fiorina Engineering Canteen Vendor" - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"aFw" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"aFA" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "3" - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"aFN" = ( -/obj/structure/toilet{ - pixel_y = 4 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"aFZ" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/medbay) -"aGP" = ( -/obj/structure/platform, -/turf/open/gm/river/pool, -/area/fiorina/station/park) -"aGR" = ( -/obj/structure/largecrate/random, -/obj/effect/spawner/random/powercell, -/obj/item/device/camera/oldcamera{ - pixel_y = 11 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"aGV" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"aHg" = ( -/obj/structure/prop/resin_prop, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"aHj" = ( -/obj/item/tool/crowbar, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/lz/near_lzI) -"aHC" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"aHH" = ( -/obj/item/tool/shovel/etool, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"aHR" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"aIe" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/bodybag/tarp/reactive{ - pixel_y = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"aJm" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"aJX" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"aKA" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/space, -/area/fiorina/oob) -"aLp" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull, -/area/fiorina/station/medbay) -"aLq" = ( -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/power_ring) -"aLT" = ( -/obj/item/trash/uscm_mre, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"aLV" = ( -/obj/item/paper, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells) -"aLW" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"aMg" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/tumor/ice_lab) -"aMh" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/almayer, -/area/fiorina/tumor/ship) -"aMx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/cigbutt/bcigbutt, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"aMM" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) -"aNb" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"aNk" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"aNm" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"aNG" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"aNN" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"aNU" = ( -/obj/structure/prop/resin_prop{ - icon_state = "sheater0" - }, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"aOc" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_3"; - opacity = 0 - }, -/area/fiorina/tumor/ship) -"aOC" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) -"aOK" = ( -/turf/open/floor/prison/blue/east, -/area/fiorina/station/civres_blue) -"aPe" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"aPr" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"aPt" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"aPv" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/prison, -/area/fiorina/station/central_ring) -"aPD" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "inflatable wall" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"aPH" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/security/wardens) -"aPT" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/chapel) -"aQn" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "2" - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/maintenance) -"aQu" = ( -/turf/open/floor/prison/darkbrowncorners2, -/area/fiorina/station/park) -"aQv" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/green/west, -/area/fiorina/station/chapel) -"aQP" = ( -/obj/item/broken_device, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"aQW" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"aRk" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/power_ring) -"aRt" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5_1" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"aRv" = ( -/obj/structure/platform, -/obj/structure/closet/firecloset/full, -/obj/item/paper/prison_station/inmate_handbook, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"aRT" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"aSa" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ywflowers_3" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"aSu" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"aSz" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/research_cells) -"aSA" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"aSM" = ( -/obj/effect/spawner/random/gun/shotgun/highchance{ - mags_max = 0; - mags_min = 0 - }, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"aSS" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/medbay) -"aSZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 9 - }, -/obj/item/reagent_container/food/snacks/tomatomeat{ - pixel_x = -6 - }, -/obj/item/reagent_container/food/snacks/tomatomeat{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/tomatomeat{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/power_ring) -"aTi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"aTo" = ( -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/station/transit_hub) -"aTu" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkpurple2/east, -/area/fiorina/tumor/servers) -"aTx" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/security) -"aTE" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"aTL" = ( -/obj/structure/bed/chair{ - dir = 4; - layer = 2.8 - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"aTM" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"aTW" = ( -/obj/structure/platform, -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"aUc" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/tumor/servers) -"aUg" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/prison, -/area/fiorina/station/security) -"aUH" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkbrown2/southwest, -/area/fiorina/maintenance) -"aVd" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"aVo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown2/southeast, -/area/fiorina/maintenance) -"aVr" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"aVy" = ( -/obj/item/stack/rods, -/turf/open/floor/corsat/squares, -/area/fiorina/station/telecomm/lz1_cargo) -"aVH" = ( -/obj/item/tool/extinguisher/mini, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"aWd" = ( -/obj/item/inflatable, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"aWk" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/telecomm/lz2_maint) -"aWV" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/tumor/servers) -"aXe" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"aXn" = ( -/turf/closed/shuttle/elevator{ - dir = 5 - }, -/area/fiorina/tumor/aux_engi) -"aXu" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"aXv" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"aXx" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"aYa" = ( -/obj/item/device/radio, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"aYh" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/servers) -"aYI" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 10 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"aYL" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"aYT" = ( -/obj/item/storage/backpack{ - pixel_x = -11; - pixel_y = 15 - }, -/obj/item/trash/syndi_cakes, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"aZv" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"aZz" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/park) -"aZD" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"aZN" = ( -/obj/item/toy/crayon/yellow, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"aZZ" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"bah" = ( -/obj/item/device/flashlight/flare, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"bai" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) -"bau" = ( -/obj/item/stool, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"baC" = ( -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/station) -"baE" = ( -/obj/structure/disposalpipe/segment, -/obj/item/stack/catwalk, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"baN" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/flight_deck) -"baV" = ( -/obj/item/storage/firstaid/toxin, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"bbB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/greenblue/northeast, -/area/fiorina/station/botany) -"bbG" = ( -/turf/open/floor/prison/green/northeast, -/area/fiorina/tumor/aux_engi) -"bbS" = ( -/turf/open/floor/prison/blue/north, -/area/fiorina/station/chapel) -"bbY" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 8 - }, -/turf/open/floor/prison/bright_clean_marked/southwest, -/area/fiorina/station/medbay) -"bce" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"bcf" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"bcq" = ( -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison, -/area/fiorina/station/security) -"bcX" = ( -/obj/item/tool/warning_cone, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"bdc" = ( -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"bdi" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkbrowncorners2, -/area/fiorina/station/park) -"bdF" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/tumor/aux_engi) -"bem" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"ber" = ( -/obj/structure/inflatable/popped/door, -/obj/item/ammo_magazine/m56d, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"bez" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 20 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"beQ" = ( -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"beS" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"beV" = ( -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/prison/red/east, -/area/fiorina/station/security) -"beW" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"bfb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/scalpel/laser{ - pixel_x = -5; - pixel_y = 12 - }, -/obj/item/tool/surgery/circular_saw{ - pixel_y = -2 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"bfs" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryocell1decal" - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"bfw" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"bfF" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"bfI" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"bgc" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"bgd" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 2; - req_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"bge" = ( -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"bgq" = ( -/obj/effect/spawner/random/tool, -/obj/structure/surface/rack, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"bgy" = ( -/obj/item/trash/pistachios, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"bgB" = ( -/turf/open/floor/prison/blue/east, -/area/fiorina/station/power_ring) -"bgG" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"bht" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/obj/item/explosive/grenade/high_explosive/m15, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"bhu" = ( -/obj/structure/platform, -/obj/structure/closet/crate/bravo, -/obj/item/stack/sheet/plasteel, -/obj/item/tool/wirecutters, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"bhE" = ( -/obj/item/stack/sheet/wood/medium_stack, -/obj/item/stack/sheet/wood/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"bhM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/flight_deck) -"bhX" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) -"bil" = ( -/turf/open/floor/prison/platingdmg1, -/area/fiorina/oob) -"bis" = ( -/turf/closed/wall/prison, -/area/fiorina/station/chapel) -"bit" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" - }, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) -"biR" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/turf/open/floor/prison/green/north, -/area/fiorina/station/chapel) -"biU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stool{ - pixel_y = 12 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"biW" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"bjf" = ( -/obj/item/tool/warning_cone, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"bjo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison, -/area/fiorina/station/security) -"bju" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"bjy" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec) -"bkd" = ( -/obj/structure/flora/pottedplant/random, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"bke" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/civres_blue) -"bkg" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"bkU" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"blG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - icon = 'icons/obj/structures/doors/2x1prepdoor.dmi' - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"blM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"bmc" = ( -/obj/effect/spawner/random/gun/rifle/highchance, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/lz/near_lzI) -"bmh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/beaker{ - pixel_x = -5; - pixel_y = 15 - }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 5; - pixel_y = 2 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"bmE" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"bmT" = ( -/obj/structure/monorail{ - dir = 4; - name = "launch track" - }, -/turf/open/space, -/area/fiorina/oob) -"bmV" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"bno" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"bnr" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"bnw" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"bnA" = ( -/turf/closed/wall/prison, -/area/fiorina/station/transit_hub) -"bnJ" = ( -/obj/structure/machinery/lapvend, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"bnL" = ( -/obj/item/storage/fancy/cigarettes/lady_finger, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"boe" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"bom" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) -"bot" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"bou" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"boB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/trash/cigbutt/ucigbutt, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = 11 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"bpR" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"bqo" = ( -/obj/item/trash/used_stasis_bag, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) -"bqX" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"brf" = ( -/obj/structure/safe, -/obj/item/storage/beer_pack, -/obj/item/storage/beer_pack, -/turf/open/floor/corsat/squares, -/area/fiorina/station/medbay) -"brl" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"brF" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/greenblue/north, -/area/fiorina/station/botany) -"brG" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 1 - }, -/obj/item/frame/rack, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco) -"brM" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/bed/chair/wheelchair{ - desc = "Great scott, it can move on its own!"; - dir = 4; - icon_state = "officechair_white"; - name = "Dr. O's fantastic self rolling wheelie chair"; - pixel_x = 7 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"bsg" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"bsj" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/storage/belt/marine, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"bsk" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/space/basic, -/area/fiorina/oob) -"bso" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_l_w" - }, -/area/fiorina/tumor/ship) -"bsu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/mre_pack/meal4{ - name = "\improper prison food"; - pixel_y = 9 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"bsG" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) -"bsQ" = ( -/obj/structure/machinery/processor{ - desc = "It CAN blend it."; - icon_state = "blender_e"; - name = "Blendomatic"; - pixel_x = -2; - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"btc" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations are the leading cause in asbestos related deaths for 3 years in a row."; - icon_state = "fullgrass_1"; - name = "Fiberbush(tm) tubers" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"btd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"btC" = ( -/obj/structure/largecrate/random/case, -/obj/item/storage/toolbox/emergency{ - pixel_y = 4 - }, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"btW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/incendiary/molotov, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"buo" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"buz" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"buL" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"buN" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) -"bvv" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco) -"bvD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/space_heater{ - pixel_x = -1; - pixel_y = 9 - }, -/turf/open/floor/prison/blue/southwest, -/area/fiorina/station/power_ring) -"bvK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/atmospipes{ - pixel_y = 10 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"bvW" = ( -/obj/structure/prop/resin_prop, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"bvY" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"bwg" = ( -/obj/item/clothing/gloves/boxing/green, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"bwi" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/landmark/nightmare{ - insert_tag = "yardbasketball" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"bxc" = ( -/obj/structure/window/reinforced, -/turf/open/floor/prison, -/area/fiorina/station/security) -"bxn" = ( -/obj/item/trash/cigbutt/bcigbutt, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"bxG" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) -"bxV" = ( -/obj/item/clothing/head/cmcap, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"byb" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan27" - }, -/area/fiorina/tumor/ship) -"byc" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"bym" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan20" - }, -/area/fiorina/lz/near_lzI) -"byq" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/tumor/aux_engi) -"byE" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"byT" = ( -/obj/structure/platform, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"byW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"byY" = ( -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"bzi" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_7" - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"bzH" = ( -/turf/open/floor/prison/darkyellow2/southeast, -/area/fiorina/station/telecomm/lz1_tram) -"bzO" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/power_ring) -"bAc" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan25" - }, -/area/fiorina/tumor/aux_engi) -"bAg" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"bAk" = ( -/obj/item/storage/wallet/random, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"bAt" = ( -/obj/structure/monorail{ - dir = 4; - name = "launch track" - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"bAv" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "lavendergrass_2" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"bAP" = ( -/obj/item/stock_parts/manipulator/pico, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"bBA" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan5" - }, -/area/fiorina/station/power_ring) -"bBK" = ( -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/prison, -/area/fiorina/station/security) -"bBM" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"bBO" = ( -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/tumor/ice_lab) -"bBV" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5_1" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"bCh" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"bCu" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"bCS" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"bDA" = ( -/turf/open/floor/prison/bluecorner/west, -/area/fiorina/station/civres_blue) -"bDC" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/darkbrown2/southwest, -/area/fiorina/maintenance) -"bDD" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"bDU" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"bEk" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"bEm" = ( -/obj/effect/landmark/wo_supplies/storage/belts/knifebelt, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"bEv" = ( -/turf/open/floor/corsat/plate, -/area/fiorina/station/civres_blue) -"bEA" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"bED" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"bEK" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/medbay) -"bEX" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"bFr" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/chapel) -"bFx" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"bFz" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/clothing/gloves/combat, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"bFA" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy27" - }, -/area/fiorina/station/medbay) -"bFC" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison, -/area/fiorina/station/park) -"bFQ" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) -"bFR" = ( -/obj/structure/closet/secure_closet/medical2{ - req_access_txt = "100" - }, -/obj/item/alienjar, -/turf/open/floor/corsat/squares, -/area/fiorina/station/medbay) -"bGg" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow2/northwest, -/area/fiorina/station/flight_deck) -"bGC" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) -"bGV" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"bGY" = ( -/turf/closed/shuttle/elevator{ - dir = 9 - }, -/area/fiorina/station/civres_blue) -"bHh" = ( -/obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"bHr" = ( -/obj/item/trash/eat, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"bHt" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"bHv" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"bHy" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"bHD" = ( -/turf/open/floor/prison/green/southwest, -/area/fiorina/station/chapel) -"bHP" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"bHS" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"bHU" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"bIi" = ( -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec) -"bIz" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"bIS" = ( -/obj/item/clothing/head/soft/yellow, -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/tumor/servers) -"bIU" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/power_ring) -"bIY" = ( -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec) -"bIZ" = ( -/turf/closed/shuttle/elevator{ - dir = 6 - }, -/area/fiorina/station/civres_blue) -"bJb" = ( -/obj/structure/closet/cabinet, -/obj/item/device/encryptionkey/WY, -/obj/item/weapon/gun/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"bJn" = ( -/obj/item/stack/cable_coil/pink, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"bJV" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"bKu" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/tumor/aux_engi) -"bKE" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"bKP" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/obj/item/bedsheet/green, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"bKX" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"bLA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/prison, -/area/fiorina/station/security/wardens) -"bLE" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/fiorina/station/security) -"bLJ" = ( -/turf/closed/wall/prison, -/area/fiorina/station/central_ring) -"bLT" = ( -/obj/item/newspaper, -/turf/open/floor/prison/green, -/area/fiorina/station/transit_hub) -"bMb" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"bMh" = ( -/obj/item/frame/table/wood/fancy, -/obj/item/paper/prison_station/warden_note, -/obj/item/tool/pen, -/turf/open/floor/carpet, -/area/fiorina/station/security/wardens) -"bMu" = ( -/obj/structure/curtain{ - layer = 3 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"bMR" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"bNP" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"bNT" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"bOl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/taperecorder{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/lowsec) -"bOp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/barbed_wire, -/obj/item/stack/barbed_wire, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/cable_coil/blue, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"bOT" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"bOV" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/tumor/aux_engi) -"bOW" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"bPg" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/station/medbay) -"bPl" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"bPq" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"bPF" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"bPG" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) -"bPK" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"bPT" = ( -/obj/structure/monorail{ - dir = 5; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"bQh" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"bQj" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"bQk" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"bQm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"bQy" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/spray/pepper, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"bQH" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"bQK" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"bQM" = ( -/turf/open/space, -/area/fiorina/oob) -"bRb" = ( -/obj/structure/machinery/defenses/sentry/premade/dumb{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/fiorina/tumor/ship) -"bRc" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; - name = "\improper Fiorina Purple Block Canteen Vendor" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"bRC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"bRJ" = ( -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"bRY" = ( -/turf/open/floor/prison/floorscorched1, -/area/fiorina/tumor/aux_engi) -"bSj" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/greencorner/west, -/area/fiorina/tumor/aux_engi) -"bSM" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - draw_warnings = 0; - health = null; - indestructible = 1; - unacidable = 1 - }, -/turf/open/floor/greengrid, -/area/fiorina/station/botany) -"bSP" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"bSX" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"bTo" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/space, -/area/fiorina/oob) -"bTI" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - indestructible = 1; - name = "launch bay door" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"bUt" = ( -/obj/structure/largecrate/random, -/obj/item/trash/pistachios, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"bUw" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"bUB" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/space, -/area/fiorina/oob) -"bUE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"bUJ" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"bUP" = ( -/turf/open/floor/prison/darkbrown2/northwest, -/area/fiorina/maintenance) -"bVE" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"bVZ" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_1"; - opacity = 0 - }, -/area/fiorina/tumor/ship) -"bWg" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/faxmachine, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"bWy" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"bXj" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/station/central_ring) -"bXr" = ( -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec) -"bXx" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"bXA" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"bXM" = ( -/turf/open/floor/prison/darkbrown2/northwest, -/area/fiorina/tumor/aux_engi) -"bYO" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/ice_lab) -"bYP" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"bYT" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"bZk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"bZC" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/box/flashbangs, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"bZQ" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"bZS" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"bZY" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"caj" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"cao" = ( -/turf/open/floor/prison/floor_marked/west, -/area/fiorina/station/lowsec) -"caF" = ( -/turf/open/floor/wood, -/area/fiorina/station/lowsec) -"cbd" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"cbn" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"cbA" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/fiorina/station/park) -"cbD" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"cbE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - indestructible = 1 - }, -/obj/item/clothing/head/that{ - anchored = 1; - indestructible = 1; - pixel_y = 7 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"cbF" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"cbN" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station) -"cbT" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/fiorina/lz/near_lzI) -"ccf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/beret/eng{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/book/manual/engineering_guide{ - pixel_x = -4 - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"ccB" = ( -/obj/item/inflatable, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"ccH" = ( -/obj/structure/machinery/newscaster, -/turf/closed/wall/prison, -/area/fiorina/station/civres_blue) -"ccY" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/prop/invuln{ - desc = "The best ride in the universe. For the one and only Souto Man! Although, this one seems to have no fuel left."; - dir = 4; - icon = 'icons/obj/vehicles/vehicles.dmi'; - icon_state = "soutomobile"; - name = "Disabled Souto Mobile" - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"ccZ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"cdq" = ( -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/tumor/aux_engi) -"cds" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"cdy" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"cdH" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"cdW" = ( -/obj/item/reagent_container/food/drinks/cans/souto/cherry, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"cex" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"ceC" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/security) -"ceO" = ( -/obj/item/tool/soap, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"cfC" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"cfD" = ( -/obj/structure/platform, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"cfY" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"cgp" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"cgO" = ( -/obj/structure/bed/roller, -/obj/item/trash/used_stasis_bag, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"cgV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/flight_deck) -"cgW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/red{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/folder/red{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/tool/stamp, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/lowsec) -"chh" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"chr" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"chs" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"cht" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"chx" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"chT" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"chV" = ( -/turf/open/floor/prison/red, -/area/fiorina/station/security) -"cif" = ( -/obj/structure/cargo_container/grant/right{ - density = 0; - desc = "A huge industrial shipping container. You could slip just behind it."; - health = 5000; - layer = 4; - unacidable = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"cis" = ( -/turf/open/floor/prison/blue_plate, -/area/fiorina/station/botany) -"ciA" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"cjf" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"cjj" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"cjm" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"cjN" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/tumor/aux_engi) -"cjS" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/red, -/area/fiorina/station/security) -"ckm" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"ckA" = ( -/obj/structure/platform, -/turf/open/floor/prison, -/area/fiorina/tumor/ice_lab) -"ckH" = ( -/obj/item/clothing/gloves/boxing/blue, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/central_ring) -"ckZ" = ( -/obj/structure/platform, -/turf/open/floor/prison, -/area/fiorina/station/park) -"clb" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket" - }, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"clo" = ( -/turf/open/floor/prison/red/east, -/area/fiorina/lz/near_lzII) -"cls" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"clu" = ( -/obj/structure/girder, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"clN" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"clQ" = ( -/obj/item/trash/candle, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"clY" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"cmi" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"cmn" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/maintenance) -"cmy" = ( -/obj/structure/sign/prop3{ - desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." - }, -/turf/closed/wall/prison, -/area/fiorina/station/central_ring) -"cmP" = ( -/obj/structure/pipes/standard/tank{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"cmQ" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/park) -"cmR" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"cns" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"cnz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"coi" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/prison/blue/southwest, -/area/fiorina/station/power_ring) -"coj" = ( -/obj/item/stool, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"coM" = ( -/obj/item/storage/belt/shotgun/full/quackers, -/obj/effect/spawner/gibspawner/human, -/turf/open/gm/river/darkred_pool, -/area/fiorina/station/park) -"cpt" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/lz/near_lzI) -"cpv" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/surface/rack, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"cpN" = ( -/obj/item/ammo_box/magazine/M16, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"cpP" = ( -/turf/closed/shuttle/elevator/gears, -/area/fiorina/station/telecomm/lz1_cargo) -"cqi" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkbrown2/northwest, -/area/fiorina/tumor/aux_engi) -"cqz" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_leftengine" - }, -/area/fiorina/oob) -"cre" = ( -/obj/item/ammo_casing{ - icon_state = "cartridge_2" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"cri" = ( -/obj/structure/machinery/computer/prisoner, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security/wardens) -"cry" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"crF" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"crM" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/tumor/servers) -"csz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck/uno, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"csT" = ( -/turf/open/floor/prison/blue/southwest, -/area/fiorina/station/power_ring) -"ctc" = ( -/obj/structure/prop/resin_prop{ - icon_state = "sheater0" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"ctg" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/blue, -/area/fiorina/station/power_ring) -"cto" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"ctD" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"ctO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"cuE" = ( -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"cvn" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"cvv" = ( -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"cvA" = ( -/obj/effect/landmark/objective_landmark/medium, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/maintenance) -"cvL" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "gamertime" - }, -/turf/closed/wall/prison, -/area/fiorina/tumor/servers) -"cvW" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"cwe" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"cwg" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"cwH" = ( -/obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) -"cwN" = ( -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/civres_blue) -"cwW" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"cwX" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"cxn" = ( -/obj/structure/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"cxy" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0; - pixel_x = 10; - pixel_y = -8 - }, -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"cye" = ( -/obj/item/trash/pistachios, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"cyJ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"cyV" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/medbay) -"czf" = ( -/obj/structure/monorail{ - dir = 4; - name = "launch track" - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"czH" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"czO" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"cAm" = ( -/obj/item/ammo_casing{ - icon_state = "casing_6" - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"cAn" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"cAo" = ( -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/security) -"cAr" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/tumor/servers) -"cAO" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/monorail{ - dir = 4; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"cAU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/obj/item/tool/pen/blue, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"cAW" = ( -/turf/open/space/basic, -/area/fiorina/oob) -"cBe" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"cBl" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"cBt" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"cBK" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/space, -/area/fiorina/oob) -"cBN" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/prison/green/north, -/area/fiorina/station/transit_hub) -"cCh" = ( -/obj/item/ammo_casing{ - dir = 6; - icon_state = "casing_10_1" - }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"cCt" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/wood, -/area/fiorina/station/park) -"cCu" = ( -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/central_ring) -"cCx" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"cCy" = ( -/obj/structure/bed/sofa/vert/grey/top, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"cCB" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/prison, -/area/fiorina/station/security) -"cCF" = ( -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"cCG" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - layer = 2.97; - pixel_y = -14 - }, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco) -"cCJ" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"cDb" = ( -/obj/item/tool/crowbar, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"cDl" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"cDx" = ( -/obj/item/stock_parts/matter_bin/super, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"cDS" = ( -/obj/structure/platform, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"cEb" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"cEo" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"cEu" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"cEw" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/transit_hub) -"cEz" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_inner_t_right" - }, -/area/fiorina/tumor/ship) -"cEX" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"cFq" = ( -/obj/item/tool/mop, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"cFX" = ( -/obj/structure/largecrate/supply/supplies, -/obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"cGu" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec) -"cGR" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/fiorina/station/park) -"cHm" = ( -/obj/item/bedsheet/green, -/obj/structure/bed, -/obj/item/toy/plush/farwa, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"cHs" = ( -/obj/structure/inflatable/popped/door, -/obj/item/stack/barbed_wire, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/station/medbay) -"cHv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"cHF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"cHW" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/lz/near_lzII) -"cIa" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"cIh" = ( -/turf/open/floor/prison/darkbrowncorners2/east, -/area/fiorina/station/park) -"cIl" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"cIs" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints{ - dir = 1; - icon_state = "human2" - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"cIy" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"cJW" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/carpet, -/area/fiorina/station/security/wardens) -"cKa" = ( -/turf/closed/wall/prison, -/area/fiorina/station/research_cells) -"cKo" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"cKr" = ( -/turf/open/floor/prison/greencorner, -/area/fiorina/tumor/civres) -"cKH" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/up, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"cKN" = ( -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_tram) -"cKP" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"cKU" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/botany) -"cLu" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"cLA" = ( -/obj/item/reagent_container/food/drinks/bottle/holywater{ - desc = "A flask of the holy HEFA grenade oil."; - name = "Flask of HEFA Oil" - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"cLP" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"cMq" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"cME" = ( -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"cMR" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) -"cMY" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/medbay) -"cNg" = ( -/turf/open/floor/prison/darkyellow2/southeast, -/area/fiorina/lz/near_lzI) -"cNm" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"cOK" = ( -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"cOV" = ( -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"cPc" = ( -/obj/structure/machinery/defenses/tesla_coil/premade{ - faction_group = list("USCM") - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"cPf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"cPj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"cPq" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"cPz" = ( -/obj/structure/machinery/fuelcell_recycler, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"cPH" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"cPL" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"cQn" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"cQv" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/closed/shuttle/ert{ - icon_state = "leftengine_1"; - layer = 3 - }, -/area/fiorina/oob) -"cQA" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"cRe" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"cRn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"cRB" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - density = 0; - dir = 4; - icon_state = "door_open"; - opacity = 0 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"cRD" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"cRS" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) -"cSn" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"cTk" = ( -/turf/open/floor/prison/darkbrown2/northeast, -/area/fiorina/station/park) -"cTm" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"cTr" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"cTX" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"cTY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/security_space_law{ - pixel_x = 8; - pixel_y = 1 - }, -/obj/item/book/manual/security_space_law{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/security_space_law{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"cUf" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/item/storage/briefcase{ - pixel_y = -2 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"cUJ" = ( -/turf/open/floor/prison/platingdmg2, -/area/fiorina/station/security) -"cUU" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) -"cVp" = ( -/obj/structure/holohoop{ - dir = 4; - id = "basketball"; - side = "left" - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"cVv" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"cVQ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"cVV" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/disco) -"cWz" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"cWB" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"cWE" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"cWZ" = ( -/turf/open/floor/prison/green/east, -/area/fiorina/tumor/civres) -"cXs" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"cXN" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "cartridge_2" - }, -/obj/effect/spawner/random/gun/smg, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"cYd" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"cYD" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"cYP" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/storage/pill_bottle/dexalin/skillless, -/obj/effect/spawner/random/gun/special/midchance, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"cYV" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"cZq" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/space, -/area/fiorina/oob) -"cZr" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"cZF" = ( -/obj/item/ammo_magazine/m56d, -/obj/item/ammo_magazine/m56d, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/central_ring) -"cZV" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/fiorina/station/security) -"dad" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"day" = ( -/turf/open/floor/prison/blue/west, -/area/fiorina/tumor/servers) -"daD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/space, -/area/fiorina/oob) -"daK" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"daO" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/fiorina/tumor/ship) -"daS" = ( -/obj/item/ammo_magazine/pistol/kt42, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"daY" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/trash/kepler, -/turf/open/floor/prison, -/area/fiorina/station/security) -"dbi" = ( -/obj/item/storage/toolbox/electrical, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"dbj" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"dby" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"dbX" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"dcv" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/fiorina/station/research_cells) -"dcy" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"dcI" = ( -/obj/structure/prop/resin_prop{ - icon_state = "rack" - }, -/obj/item/storage/toolbox, -/obj/item/storage/toolbox, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/tumor/servers) -"dcL" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"dda" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"ddc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/processor{ - desc = "It CAN blend it."; - icon_state = "blender_e"; - name = "Blendomatic"; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"ddA" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/plating/plating_catwalk, -/area/fiorina/tumor/ship) -"ddD" = ( -/obj/structure/janitorialcart, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"ddG" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"ddL" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"ddM" = ( -/obj/item/stack/catwalk, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"dec" = ( -/obj/structure/sign/prop3{ - desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." - }, -/turf/closed/wall/prison, -/area/fiorina/tumor/servers) -"deq" = ( -/obj/structure/machinery/door/airlock/prison/horizontal, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"deR" = ( -/obj/item/toy/crayon/red, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"dff" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"dft" = ( -/obj/structure/tunnel, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"dfu" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"dfA" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - pixel_y = -14 - }, -/obj/structure/machinery/m56d_hmg, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"dga" = ( -/obj/structure/monorail{ - dir = 4; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"dgw" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/green/west, -/area/fiorina/station/chapel) -"dgH" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"dhh" = ( -/obj/structure/prop/resin_prop, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"dhi" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/space/basic, -/area/fiorina/oob) -"dhN" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"dhV" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"dhZ" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"dij" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/bright_clean_marked/southwest, -/area/fiorina/station/power_ring) -"dip" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec) -"diu" = ( -/obj/item/explosive/grenade/high_explosive/m15, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/panelscorched, -/area/fiorina/tumor/aux_engi) -"diy" = ( -/obj/item/stool, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"dje" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"djf" = ( -/obj/effect/spawner/random/gun/smg/midchance, -/turf/open/floor/wood, -/area/fiorina/station/park) -"djg" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) -"djh" = ( -/obj/item/poster, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"djm" = ( -/obj/structure/closet/crate/bravo, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/fuel_cell, -/obj/item/stack/sheet/plasteel, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"djN" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"djY" = ( -/obj/structure/surface/rack, -/obj/item/ammo_box/magazine/nailgun, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"dkb" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"dkl" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 6; - pixel_y = -7 - }, -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"dkn" = ( -/turf/open/floor/prison, -/area/fiorina/station/security/wardens) -"dku" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec) -"dkS" = ( -/turf/open/floor/prison/platingdmg3, -/area/fiorina/maintenance) -"dll" = ( -/obj/item/tool/soap, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) -"dlA" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"dmE" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 2; - layer = 6; - name = "overhead pipe"; - pixel_x = -16; - pixel_y = 12 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"dmQ" = ( -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"dmT" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"dmZ" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/station/medbay) -"dnz" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/spawner/random/toy, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"dnD" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/greenblue/west, -/area/fiorina/station/botany) -"dnR" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"dod" = ( -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/prison, -/area/fiorina/station/security) -"doe" = ( -/obj/item/tool/kitchen/utensil/pspoon, -/turf/open/space/basic, -/area/fiorina/oob) -"doj" = ( -/obj/item/stack/cable_coil/pink, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"doq" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"doA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"doB" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"doD" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"doQ" = ( -/obj/structure/disposalpipe/broken{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"dpn" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"dpw" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "cartridge_2" - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/flight_deck) -"dpH" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"dpS" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"dqr" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"dqE" = ( -/obj/structure/prop/souto_land/pole, -/turf/open/floor/wood, -/area/fiorina/station/park) -"dqN" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_inner_s_w" - }, -/area/fiorina/tumor/ship) -"drf" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"drD" = ( -/turf/open/floor/prison/darkbrown2/northwest, -/area/fiorina/station/park) -"drG" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" - }, -/obj/structure/bed/roller, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"drL" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/obj/item/bedsheet/green, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"drP" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"drS" = ( -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"dsf" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"dsh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"dst" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/lz/near_lzI) -"dsW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_27"; - pixel_y = 6 - }, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"dte" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"dtg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"dtG" = ( -/obj/structure/pipes/unary/freezer{ - icon_state = "freezer_1" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"due" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/monorail{ - dir = 10; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"duF" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"duH" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"duM" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"duN" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/power_ring) -"duW" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"dvg" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"dvh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/storage/box/cups, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"dvq" = ( -/obj/structure/machinery/newscaster, -/turf/closed/wall/prison, -/area/fiorina/station/medbay) -"dvB" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison, -/area/fiorina/tumor/ice_lab) -"dwp" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"dwI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"dwP" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"dwQ" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/tumor/fiberbush) -"dwT" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security/wardens) -"dxa" = ( -/turf/open/floor/prison/red/southwest, -/area/fiorina/station/power_ring) -"dxb" = ( -/obj/item/storage/briefcase/stowaway, -/turf/open/space, -/area/fiorina/oob) -"dxm" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"dxr" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/power_ring) -"dxs" = ( -/obj/structure/surface/rack, -/obj/item/tool/plantspray/weeds, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"dxE" = ( -/obj/structure/prop/resin_prop{ - icon_state = "rack" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"dxG" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"dxP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"dxS" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/tumor/servers) -"dyb" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"dym" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 6 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"dyn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"dyB" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/obj/item/explosive/grenade/high_explosive/m15, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"dzl" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) -"dzz" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 8 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"dzK" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/tumor/aux_engi) -"dzQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"dAd" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"dAv" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/floor_marked/southwest, -/area/fiorina/lz/near_lzII) -"dAz" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"dAC" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"dAF" = ( -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) -"dBi" = ( -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/power_ring) -"dBq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer{ - desc = "Looks like Gonzo is ruling as a 2/0/1 regency of France in 1574. Tough break Gonzo."; - icon_state = "security_det"; - name = "Shuttle control deck"; - pixel_y = 6 - }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"dBv" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/lz/near_lzI) -"dBy" = ( -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"dBM" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) -"dBX" = ( -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"dCg" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "2" - }, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "4" - }, -/obj/item/prop/helmetgarb/flair_initech, -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"dCh" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000; - layer = 2.9; - pixel_y = 17 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"dCn" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"dCu" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "Residential Apartment" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"dCz" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/greencorner/east, -/area/fiorina/station/chapel) -"dCM" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"dDs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 10 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"dDR" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"dDU" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"dDX" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"dEr" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"dEY" = ( -/obj/structure/closet/bombcloset, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"dFa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/spawner/random/gun/smg/lowchance, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"dFh" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/chapel) -"dFj" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"dFn" = ( -/obj/item/ammo_casing{ - icon_state = "cartridge_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"dFB" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/spawner/random/gun/shotgun/midchance, -/turf/open/floor/prison, -/area/fiorina/station/security) -"dFH" = ( -/obj/structure/closet/cabinet, -/obj/item/key/cargo_train, -/obj/item/clothing/under/rank/cargotech, -/obj/item/clothing/accessory/armband/cargo, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"dFM" = ( -/obj/item/circuitboard/machine/pacman/super, -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"dFS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4; - pixel_y = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"dFT" = ( -/obj/item/paper/crumpled/bloody/csheet, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"dGv" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/servers) -"dGw" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) -"dGL" = ( -/obj/item/ammo_box/magazine/misc/flares{ - layer = 3.1; - pixel_y = 16 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"dGQ" = ( -/obj/structure/closet/crate/medical, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"dGR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco) -"dHd" = ( -/obj/structure/sign/safety/bulkhead_door, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/tumor/civres) -"dHr" = ( -/obj/structure/inflatable/popped, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"dHv" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"dHy" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"dHC" = ( -/obj/item/frame/rack, -/obj/structure/barricade/handrail/type_b{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/lowsec) -"dIo" = ( -/turf/closed/wall/prison, -/area/fiorina/tumor/civres) -"dIq" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"dIs" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"dII" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) -"dJe" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"dJw" = ( -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"dJD" = ( -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/prison/green/north, -/area/fiorina/station/transit_hub) -"dJI" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) -"dKo" = ( -/obj/effect/spawner/random/gun/shotgun, -/turf/open/floor/carpet, -/area/fiorina/station/security/wardens) -"dKu" = ( -/turf/open/floor/prison/blue/southwest, -/area/fiorina/station/chapel) -"dKA" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/blue, -/area/fiorina/station/civres_blue) -"dKB" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) -"dKT" = ( -/obj/item/clothing/under/shorts/red, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/central_ring) -"dKX" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/maintenance) -"dLa" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/fancy/vials/random, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"dLq" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"dLF" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/civres_blue) -"dMa" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/fiorina/station/flight_deck) -"dMo" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/item/reagent_container/food/drinks/flask/barflask, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) -"dMK" = ( -/obj/item/stool, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"dMM" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/item/tool/soap/syndie, -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/random/gun/special, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"dMS" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"dNh" = ( -/turf/open/auto_turf/sand/layer1, -/area/fiorina/lz/near_lzI) -"dNk" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"dNx" = ( -/obj/structure/monorail{ - dir = 9; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"dNM" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"dOE" = ( -/obj/item/storage/bible/hefa, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"dOK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"dOX" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/lz/near_lzI) -"dPc" = ( -/obj/item/trash/barcardine, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"dPm" = ( -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"dPn" = ( -/turf/open/floor/prison/floorscorched2, -/area/fiorina/station/civres_blue) -"dPD" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"dPK" = ( -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"dPU" = ( -/obj/item/paper/crumpled, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"dPX" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/station/medbay) -"dPZ" = ( -/obj/structure/monorail{ - dir = 6; - name = "launch track" - }, -/turf/open/space, -/area/fiorina/oob) -"dQe" = ( -/obj/item/tool/surgery/scalpel, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"dQf" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"dQt" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"dQC" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"dQK" = ( -/obj/structure/closet/wardrobe/orange, -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"dQV" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"dRx" = ( -/obj/structure/monorail{ - dir = 5; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"dRM" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"dRN" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"dRO" = ( -/obj/effect/acid_hole{ - dir = 4 - }, -/turf/closed/wall/r_wall/prison_unmeltable{ - desc = "A huge chunk of metal used to seperate rooms."; - name = "metal wall" - }, -/area/fiorina/oob) -"dSf" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/power_ring) -"dSj" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"dSo" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/tumor/ice_lab) -"dSy" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"dSP" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"dSV" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"dTf" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"dTm" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"dTx" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"dTI" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"dTS" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"dTX" = ( -/obj/structure/surface/rack, -/obj/item/storage/bible/hefa{ - pixel_y = 3 - }, -/obj/item/storage/bible/hefa, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"dUd" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"dUi" = ( -/obj/structure/bed/sofa/vert/grey/bot{ - pixel_y = 8 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"dUn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_x = 1; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"dUN" = ( -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 - }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) -"dVb" = ( -/obj/structure/curtain, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"dVs" = ( -/turf/open/floor/corsat/squares, -/area/fiorina/station/medbay) -"dVx" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"dVE" = ( -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) -"dWl" = ( -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/lz/near_lzI) -"dWp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/russianRed{ - pixel_y = 9 - }, -/obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"dWB" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"dWC" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"dWH" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"dWM" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"dWS" = ( -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"dWU" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"dXd" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"dXx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"dXG" = ( -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"dXT" = ( -/obj/structure/platform_decoration, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"dYk" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"dYp" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "LZ1: Hangar Landing Zone" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"dYG" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"dYI" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan20" - }, -/area/fiorina/tumor/aux_engi) -"dYK" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 9 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"dYZ" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/reagent_container/food/drinks/flask/marine, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) -"dZr" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"dZH" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"eam" = ( -/obj/effect/decal/cleanable/blood{ - desc = "Watch your step."; - icon_state = "gib6" - }, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/flight_deck) -"eap" = ( -/obj/item/weapon/gun/smg/nailgun, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"eas" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 9 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"eaR" = ( -/turf/open/floor/prison/darkbrowncorners2/north, -/area/fiorina/tumor/aux_engi) -"ecd" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"ect" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"ecu" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"ecI" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/flight_deck) -"ecL" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"ecM" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/disco) -"ecQ" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_rightengine" - }, -/area/fiorina/tumor/ship) -"edj" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 6 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"edu" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"edA" = ( -/obj/structure/machinery/defenses/sentry/premade/dumb{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"edY" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"eeA" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib2" - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"eeH" = ( -/obj/structure/monorail{ - dir = 9; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"eeI" = ( -/obj/structure/lattice, -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer_hull, -/area/fiorina/oob) -"eeN" = ( -/turf/open/floor/corsat/plate, -/area/fiorina/station/telecomm/lz1_cargo) -"efk" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"efl" = ( -/obj/structure/prop/invuln{ - desc = "Floating cells are reserved for highly dangerous criminals. Whoever is out there is probably best left out there."; - dir = 4; - icon = 'icons/obj/structures/doors/celldoor.dmi'; - icon_state = "door_closed"; - name = "cell door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - density = 1; - icon_state = "door_deny" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"efI" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 20 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"efJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/oob) -"efR" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"efT" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/tumor/ice_lab) -"efY" = ( -/obj/structure/mirror{ - pixel_x = -32 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"egi" = ( -/turf/open/gm/river/red_pool, -/area/fiorina/station/park) -"egk" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/central_ring) -"egv" = ( -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/station/civres_blue) -"egL" = ( -/obj/item/newspaper, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"egT" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"egW" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"ehd" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 1 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"ehO" = ( -/obj/structure/platform/shiva, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"ehT" = ( -/obj/structure/janitorialcart, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"eil" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"eio" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"eip" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"eiF" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"eiI" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/flight_deck) -"ejf" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"ejq" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/tumor/ice_lab) -"ejt" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"ejw" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/tumor/ice_lab) -"ejH" = ( -/obj/structure/platform, -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"ejL" = ( -/obj/structure/largecrate/supply/supplies/water, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -4; - pixel_y = 14 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 1; - pixel_y = 12 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"ejW" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"eki" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"ekn" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"ekq" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "lavendergrass_4" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"ekX" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/ice_lab) -"elc" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"elU" = ( -/turf/open/floor/prison/green/west, -/area/fiorina/station/chapel) -"emC" = ( -/obj/structure/lattice, -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/space, -/area/fiorina/oob) -"emW" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"end" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"enf" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"ent" = ( -/turf/open/floor/prison/darkbrown2/southeast, -/area/fiorina/station/park) -"enO" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"enY" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"eoa" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/disco) -"eoc" = ( -/turf/open/floor/prison/platingdmg1, -/area/fiorina/station/security) -"eoj" = ( -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"eov" = ( -/turf/closed/wall/r_wall/prison_unmeltable{ - desc = "A huge chunk of metal used to seperate rooms."; - name = "metal wall" - }, -/area/fiorina/station/research_cells) -"eoF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"eoL" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) -"eoW" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"epf" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"epi" = ( -/obj/item/tool/shovel/etool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"epl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"epQ" = ( -/obj/structure/machinery/bot/medbot, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"epV" = ( -/obj/item/paper/crumpled/bloody, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"epY" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) -"eqs" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/prison/redfull, -/area/fiorina/station/chapel) -"eqI" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco) -"eqJ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"eqZ" = ( -/obj/structure/largecrate/random/mini/ammo, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"ere" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/station/flight_deck) -"erj" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/ice_lab) -"erk" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco) -"erl" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"erx" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"ery" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"erA" = ( -/turf/open/floor/prison/green/east, -/area/fiorina/station/chapel) -"erD" = ( -/obj/structure/largecrate/supply, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/medbay) -"erS" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec) -"erT" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/space, -/area/fiorina/oob) -"esb" = ( -/obj/structure/flora/grass/tallgrass/jungle, -/obj/item/reagent_container/food/snacks/grown/eggplant{ - desc = "Eggplant. Or, wait..."; - layer = 2 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"esS" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"etF" = ( -/turf/open/floor/prison/green/north, -/area/fiorina/station/botany) -"etI" = ( -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - pixel_y = 32 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"etL" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"eut" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"evd" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 2; - layer = 6; - name = "overhead pipe"; - pixel_x = -16; - pixel_y = 12 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"evj" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/power_ring) -"evt" = ( -/turf/open/floor/prison/green/west, -/area/fiorina/station/transit_hub) -"evT" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/botany) -"ewu" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"ewx" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet, -/area/fiorina/station/security/wardens) -"ewy" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"ewC" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) -"ewE" = ( -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" - }, -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" - }, -/obj/structure/surface/rack, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"exa" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison, -/area/fiorina/station/park) -"exj" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"exA" = ( -/obj/item/ammo_casing{ - icon_state = "cartridge_2" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"exW" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"eyb" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"eyq" = ( -/obj/item/ammo_magazine/rifle/mar40/extended, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"eys" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"eyy" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/landmark/nightmare{ - insert_tag = "nogear" - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"eyC" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"eze" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/turf/open/space/basic, -/area/fiorina/oob) -"ezn" = ( -/obj/structure/sign/prop3{ - desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." - }, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/telecomm/lz1_cargo) -"ezC" = ( -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/tumor/servers) -"ezI" = ( -/obj/item/tool/mop, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"ezV" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"eAg" = ( -/turf/open/gm/river/darkred_pool, -/area/fiorina/station/park) -"eAo" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/tumor/aux_engi) -"eAy" = ( -/obj/item/restraint/adjustable/cable/pink, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"eAM" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"eAS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/lockbox/vials{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"eAY" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"eBw" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"eBy" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"eBJ" = ( -/turf/open/floor/prison/blue_plate/west, -/area/fiorina/station/botany) -"eCb" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) -"eCX" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/servers) -"eDl" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"eDz" = ( -/obj/structure/surface/rack, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"eDG" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/fiorina/station/park) -"eEb" = ( -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/servers) -"eED" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/tool/pen{ - pixel_x = 12; - pixel_y = 8 - }, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"eEG" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) -"eEJ" = ( -/obj/structure/machinery/computer3/server/rack, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"eEY" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"eFa" = ( -/obj/structure/barricade/metal{ - dir = 1; - health = 250; - icon_state = "metal_1" - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"eFm" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"eFD" = ( -/obj/structure/window_frame/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"eFH" = ( -/obj/structure/janitorialcart, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"eFP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"eFR" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 8; - pixel_y = 24 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"eGm" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"eGp" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"eGu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery{ - name = "Lung Transplants for Dummies"; - pixel_y = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"eHa" = ( -/obj/structure/lattice, -/obj/structure/platform/kutjevo/smooth, -/turf/open/space, -/area/fiorina/oob) -"eHc" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"eHp" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"eHt" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = -6; - pixel_y = -3 - }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"eHC" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy25" - }, -/area/fiorina/station/medbay) -"eHD" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"eIg" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"eIQ" = ( -/turf/open/floor/prison/damaged3, -/area/fiorina/station/security) -"eJm" = ( -/obj/structure/machinery/door/poddoor/almayer{ - density = 0; - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"eJE" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/station/medbay) -"eJQ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"eKl" = ( -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec) -"eLk" = ( -/turf/open/floor/prison/yellow/east, -/area/fiorina/lz/near_lzII) -"eLu" = ( -/turf/closed/wall/prison, -/area/fiorina/maintenance) -"eLQ" = ( -/obj/item/weapon/gun/energy/taser, -/turf/open/floor/prison, -/area/fiorina/station/security) -"eLU" = ( -/obj/item/tool/mop{ - pixel_y = 23 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"eMu" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/oob) -"eMA" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) -"eMG" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access{ - name = "greenhouse airlock" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) -"eMU" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_1"; - opacity = 0 - }, -/area/fiorina/station/power_ring) -"eNo" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"eNr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray/empty, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"eOj" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"eOF" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/space, -/area/fiorina/oob) -"eOJ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/park) -"eOK" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"eOS" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"ePq" = ( -/obj/item/trash/cigbutt/ucigbutt, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"ePu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"ePv" = ( -/obj/structure/prop/resin_prop{ - dir = 4; - icon_state = "chair"; - pixel_y = 6 - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"ePB" = ( -/turf/closed/wall/prison, -/area/fiorina/station/telecomm/lz2_maint) -"ePD" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"ePF" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"ePM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/spacecash/c20, -/turf/open/floor/prison, -/area/fiorina/station/security) -"eQi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"eQk" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"eRe" = ( -/obj/item/trash/candy, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"eRp" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"eRz" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"eRP" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"eSc" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"eSe" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"eSF" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"eSH" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"eSV" = ( -/turf/open/floor/prison/damaged2/southwest, -/area/fiorina/station/lowsec) -"eTb" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_1"; - opacity = 0 - }, -/area/fiorina/tumor/aux_engi) -"eTc" = ( -/turf/open/floor/prison/chapel_carpet, -/area/fiorina/station/chapel) -"eTr" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"eTC" = ( -/obj/item/frame/rack, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"eTE" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"eTL" = ( -/obj/item/storage/toolbox/emergency, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"eTW" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"eUi" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"eUo" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"eUK" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"eUL" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"eUP" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"eUZ" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"eVe" = ( -/obj/effect/decal/cleanable/blood/gibs/robot/limb, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) -"eVf" = ( -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/streamer{ - dir = 6 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"eVj" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) -"eVm" = ( -/obj/structure/machinery/newscaster, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/medbay) -"eVq" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"eVD" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/power_ring) -"eVO" = ( -/turf/closed/shuttle/ert, -/area/fiorina/tumor/ship) -"eVZ" = ( -/obj/item/trash/used_stasis_bag, -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/lz/near_lzI) -"eWb" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"eWj" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"eWk" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/whitegreencorner/west, -/area/fiorina/tumor/ice_lab) -"eWP" = ( -/obj/structure/sign/prop3{ - desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." - }, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/tumor/ice_lab) -"eWW" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"eXn" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ - icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"eXp" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/civres_blue) -"eXu" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"eXz" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"eXP" = ( -/obj/structure/machinery/door/poddoor/almayer{ - density = 0; - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) -"eXY" = ( -/obj/structure/platform, -/obj/structure/reagent_dispensers/fueltank/oxygentank{ - layer = 2.6 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"eYi" = ( -/obj/item/paper/crumpled, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"eYl" = ( -/turf/open/floor/prison/green, -/area/fiorina/station/botany) -"eYm" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/central_ring) -"eYC" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"eYN" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/botany) -"eYQ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/blue/northeast, -/area/fiorina/station/power_ring) -"eYT" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"eYV" = ( -/obj/item/attachable/bayonet/upp{ - anchored = 1; - layer = 3.6; - pixel_x = -9; - pixel_y = -7 - }, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/security/wardens) -"eZr" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"fac" = ( -/obj/structure/platform/shiva{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"fad" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"fas" = ( -/obj/structure/prop/almayer/computers/mapping_computer, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"faw" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"faD" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"fbf" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) -"fbi" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"fbo" = ( -/obj/structure/barricade/plasteel, -/obj/structure/barricade/metal{ - dir = 4; - health = 85; - icon_state = "metal_1" - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"fbB" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"fcA" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"fcF" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - pixel_y = -14 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/lz/near_lzI) -"fdf" = ( -/obj/structure/closet, -/obj/item/stack/cable_coil, -/obj/item/storage/pill_bottle/peridaxon/skillless, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"fdh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/gun/pistol/midchance, -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/tumor/servers) -"fdC" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"fdV" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/space/basic, -/area/fiorina/oob) -"feb" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"fer" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"feF" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"feM" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"ffs" = ( -/obj/structure/grille, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"ffu" = ( -/turf/open/floor/prison/darkbrowncorners2/north, -/area/fiorina/station/park) -"ffE" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"ffF" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"ffQ" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"ffZ" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/prison, -/area/fiorina/station/power_ring) -"fgm" = ( -/obj/structure/flora/pottedplant/random, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"fgU" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"fgX" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/floor/corsat/plate, -/area/fiorina/station/telecomm/lz1_cargo) -"fhb" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/green/northeast, -/area/fiorina/station/chapel) -"fhu" = ( -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"fhR" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"fhW" = ( -/obj/item/bananapeel{ - name = "tactical banana peel" - }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/medbay) -"fib" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/station/medbay) -"fic" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto{ - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"fii" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 20 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"fiq" = ( -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"fis" = ( -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "Straight" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells) -"fiI" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"fiS" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"fiU" = ( -/turf/open/floor/plating/plating_catwalk, -/area/fiorina/tumor/ship) -"fjd" = ( -/turf/closed/wall/prison, -/area/fiorina/lz/near_lzI) -"fjg" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"fjh" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"fjr" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/park) -"fjI" = ( -/obj/structure/closet/cabinet, -/obj/effect/spawner/random/gun/special/midchance, -/obj/item/attachable/magnetic_harness, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"fjR" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"fjX" = ( -/turf/closed/shuttle/elevator{ - dir = 9 - }, -/area/fiorina/tumor/aux_engi) -"fjZ" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/maintenance) -"fkc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/blood/empty{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/reagent_container/blood/BMinus{ - pixel_x = 7; - pixel_y = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"fkl" = ( -/obj/structure/closet/l3closet/general, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"fkL" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"flg" = ( -/obj/item/clothing/mask/cigarette/bcigarette, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"flh" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"flm" = ( -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) -"flv" = ( -/obj/structure/girder, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"flD" = ( -/obj/effect/spawner/random/gun/rifle, -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/lz/near_lzI) -"flH" = ( -/obj/structure/closet/wardrobe/orange, -/obj/item/clothing/gloves/boxing/yellow, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"flK" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkyellowcorners2, -/area/fiorina/station/telecomm/lz1_cargo) -"flV" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"fmg" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"fmm" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"fmq" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/greenblue/southwest, -/area/fiorina/station/botany) -"fmP" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "cartridge_2" - }, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/fiorina/station/park) -"fmY" = ( -/obj/item/device/cassette_tape/ocean, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"fnn" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"fny" = ( -/obj/structure/closet, -/obj/item/restraint/handcuffs, -/obj/item/clothing/mask/muzzle, -/obj/item/weapon/chainofcommand, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"fnD" = ( -/turf/closed/shuttle/elevator{ - dir = 4 - }, -/area/fiorina/station/telecomm/lz1_cargo) -"fnJ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/greenblue/west, -/area/fiorina/station/botany) -"fnM" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/fiorina/station/flight_deck) -"fnU" = ( -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"fob" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"foj" = ( -/obj/item/weapon/gun/smg/mp5, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"fou" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"foU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"fpn" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/tumor/aux_engi) -"fpo" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"fps" = ( -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/power_ring) -"fpu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sign/poster{ - desc = "Hubba hubba."; - icon_state = "poster3"; - name = "magazine"; - pixel_x = 6; - pixel_y = 8 - }, -/obj/structure/sign/poster{ - desc = "Hubba hubba."; - icon_state = "poster17"; - name = "magazine" - }, -/obj/structure/sign/poster{ - desc = "The M41A is on the cover."; - icon_state = "poster15"; - name = "magazine"; - pixel_x = -5; - pixel_y = 5 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"fpB" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"fpN" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"fpP" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/darkpurple2/southeast, -/area/fiorina/tumor/servers) -"fql" = ( -/turf/open/floor/prison/green/southwest, -/area/fiorina/tumor/aux_engi) -"fqF" = ( -/obj/effect/landmark{ - icon_state = "hive_spawn"; - name = "xeno_hive_spawn" - }, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"frv" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"frI" = ( -/obj/structure/inflatable/popped/door, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"fsh" = ( -/obj/structure/surface/rack, -/obj/item/poster, -/obj/item/poster, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"fsi" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"fsk" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"fsp" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/maintenance) -"fsE" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"fsS" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/power_ring) -"ftq" = ( -/obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/flight_deck) -"ftW" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/park) -"fuf" = ( -/obj/item/stack/rods/plasteel, -/turf/open/floor/prison/damaged3, -/area/fiorina/station/security) -"fuw" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"fuC" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/corsat/squares, -/area/fiorina/station/civres_blue) -"fuR" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"fuX" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/tumor/aux_engi) -"fvL" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"fvO" = ( -/turf/open/floor/prison/panelscorched, -/area/fiorina/station/transit_hub) -"fwn" = ( -/obj/structure/lattice, -/obj/item/stack/sheet/metal, -/turf/open/space/basic, -/area/fiorina/oob) -"fwr" = ( -/obj/item/poster, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"fwu" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"fwy" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"fwz" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"fwY" = ( -/obj/structure/barricade/metal/wired{ - health = 250; - icon_state = "metal_3" - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"fxa" = ( -/obj/structure/monorail{ - dir = 4; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"fxi" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison, -/area/fiorina/station/security) -"fxG" = ( -/turf/open/floor/prison/greenblue/west, -/area/fiorina/station/botany) -"fxQ" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"fxS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/surgical, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"fyi" = ( -/turf/open/floor/wood, -/area/fiorina/station/research_cells) -"fyy" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"fyC" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/space, -/area/fiorina/oob) -"fyL" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"fyO" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"fzi" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/tumor/ice_lab) -"fzx" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"fzU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"fAf" = ( -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"fAC" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/tumor/servers) -"fAI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/gun/pistol/lowchance, -/turf/open/floor/wood, -/area/fiorina/station/park) -"fAZ" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/drinks/bottle/holywater{ - desc = "A flask of the holy HEFA grenade oil."; - name = "Flask of HEFA Oil" - }, -/turf/open/floor/prison/chapel_carpet, -/area/fiorina/station/chapel) -"fBg" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"fBv" = ( -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/disco) -"fBD" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"fBN" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" - }, -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec) -"fCD" = ( -/obj/item/stack/sheet/metal, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"fCG" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison/damaged3, -/area/fiorina/station/central_ring) -"fCL" = ( -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/station/central_ring) -"fCW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"fCZ" = ( -/obj/structure/closet/crate/medical, -/obj/item/clothing/mask/cigarette/pipe, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"fDD" = ( -/turf/open/floor/prison/blue/northwest, -/area/fiorina/tumor/servers) -"fDQ" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - density = 1; - icon_state = "door_deny" - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"fDW" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"fDZ" = ( -/turf/open/floor/prison/darkpurple2, -/area/fiorina/station/central_ring) -"fEa" = ( -/obj/structure/largecrate/random/barrel, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) -"fEk" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"fEn" = ( -/turf/open/floor/prison, -/area/fiorina/tumor/ice_lab) -"fET" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/blue_plate/west, -/area/fiorina/station/botany) -"fFx" = ( -/obj/structure/prop/structure_lattice{ - dir = 8; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/civres_blue) -"fFE" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"fGh" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"fGA" = ( -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/prison, -/area/fiorina/station/security) -"fGF" = ( -/obj/item/weapon/gun/smg/mp5, -/obj/item/ammo_casing{ - icon_state = "casing_6_1" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"fGX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"fHb" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"fHx" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"fHK" = ( -/obj/structure/ice/thin/indestructible{ - dir = 8; - icon_state = "Corner" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells) -"fIc" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"fIq" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "bee" - }, -/obj/structure/sign/prop2{ - pixel_y = 32 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"fII" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"fIS" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"fIT" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"fIW" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan20" - }, -/area/fiorina/station/power_ring) -"fJj" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "Residential Archives" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"fJl" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"fJW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/accessory/storage/webbing, -/obj/item/clothing/accessory/storage/webbing, -/turf/open/floor/almayer, -/area/fiorina/tumor/ship) -"fLh" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"fLQ" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/tumor/aux_engi) -"fLS" = ( -/obj/structure/bed/chair, -/turf/open/floor/wood, -/area/fiorina/station/park) -"fLW" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"fMT" = ( -/obj/item/dogtag, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) -"fNo" = ( -/obj/item/stool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"fNq" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/tumor/aux_engi) -"fNs" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"fNA" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"fNC" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/darkbrowncorners2/east, -/area/fiorina/tumor/aux_engi) -"fNE" = ( -/obj/structure/curtain/shower, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"fNF" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib2" - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"fNN" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"fOi" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -13; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"fOj" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"fOO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"fPB" = ( -/turf/open/space, -/area/fiorina/station/medbay) -"fPC" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/tumor/ice_lab) -"fPU" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"fPV" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/item/weapon/gun/shotgun/combat, -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"fQf" = ( -/obj/item/circuitboard/machine/rdserver, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"fQq" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"fQB" = ( -/obj/item/ammo_casing/shell{ - icon_state = "shell_9_1" - }, -/obj/effect/spawner/random/gun/shotgun/highchance, -/turf/open/floor/wood, -/area/fiorina/station/park) -"fQV" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/space, -/area/fiorina/oob) -"fQY" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"fRo" = ( -/obj/structure/bed/chair, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"fRt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/clothing/mask/cigarette, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_y = 8 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"fRz" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"fSd" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"fSq" = ( -/obj/structure/machinery/door/airlock/almayer/marine{ - dir = 1; - icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"fSz" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan25" - }, -/area/fiorina/lz/near_lzI) -"fSE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer{ - icon_state = "security_det"; - name = "Shuttle control deck"; - pixel_y = 6 - }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/item/coin/uranium{ - desc = "You found one of the three uranium coins. It is entirely worthless." - }, -/turf/open/floor/almayer, -/area/fiorina/tumor/ship) -"fSI" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/lz/near_lzI) -"fTn" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"fTs" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/power_ring) -"fTz" = ( -/obj/structure/closet, -/obj/item/clothing/suit/poncho/red, -/obj/item/clothing/suit/poncho/green, -/obj/item/clothing/suit/suspenders, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"fTH" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/whitepurple/east, -/area/fiorina/station/research_cells) -"fTZ" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"fUm" = ( -/obj/item/clothing/head/pirate, -/obj/item/clothing/under/pirate, -/obj/item/clothing/suit/armor/swat/officer, -/obj/structure/closet, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"fUp" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"fUr" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"fUv" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"fUz" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"fUC" = ( -/obj/structure/stairs/perspective, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"fUX" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"fUZ" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) -"fVR" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 1 - }, -/obj/item/frame/rack, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) -"fVS" = ( -/turf/open/floor/prison/darkbrowncorners2/north, -/area/fiorina/maintenance) -"fWs" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) -"fWt" = ( -/obj/structure/closet/wardrobe/orange, -/obj/item/explosive/mine/pmc, -/obj/effect/spawner/random/gun/smg, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"fWv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper/janitor, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"fWI" = ( -/obj/structure/monorail{ - dir = 9; - name = "launch track" - }, -/turf/open/space, -/area/fiorina/oob) -"fXp" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"fXB" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/security) -"fXF" = ( -/turf/open/floor/prison/darkpurple2/east, -/area/fiorina/tumor/servers) -"fXL" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 2; - layer = 6; - name = "overhead pipe"; - pixel_x = -16; - pixel_y = 12 - }, -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/tumor/servers) -"fYe" = ( -/obj/item/stool, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec) -"fYo" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"fYy" = ( -/obj/structure/machinery/vending/coffee/simple, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"fYW" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/carpet, -/area/fiorina/station/security/wardens) -"fZd" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"fZz" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/fiorina/station/security) -"fZD" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/wood, -/area/fiorina/station/park) -"gah" = ( -/obj/structure/sign/poster{ - desc = "Hubba hubba."; - icon_state = "poster17"; - name = "magazine" - }, -/obj/structure/sign/poster{ - desc = "Hubba hubba."; - icon_state = "poster3"; - name = "magazine"; - pixel_x = 6; - pixel_y = 8 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"gaK" = ( -/obj/item/tool/soap, -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) -"gbk" = ( -/obj/item/trash/burger, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"gbK" = ( -/obj/structure/machinery/disposal, -/obj/item/tool/kitchen/rollingpin{ - pixel_y = 8 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"gbT" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"gcd" = ( -/obj/item/paper/crumpled/bloody, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"gcx" = ( -/obj/structure/monorail{ - dir = 4; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"gdt" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"gdT" = ( -/obj/effect/spawner/random/goggles/midchance, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"gef" = ( -/obj/structure/lattice, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/space, -/area/fiorina/oob) -"geg" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/chapel) -"gez" = ( -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"geB" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) -"geE" = ( -/obj/structure/machinery/computer/station_alert{ - dir = 4; - pixel_y = 5 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"geF" = ( -/obj/structure/lattice, -/turf/open/floor/almayer_hull, -/area/fiorina/oob) -"geL" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"geX" = ( -/obj/effect/spawner/random/gun/pistol, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"gfh" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"gfj" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/wood, -/area/fiorina/station/park) -"gfo" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/maintenance) -"gfq" = ( -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/lz/near_lzI) -"gfv" = ( -/obj/item/tool/surgery/cautery, -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec) -"gfF" = ( -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/power_ring) -"gfL" = ( -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"gfW" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"gga" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/power_ring) -"ggc" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"ggd" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_1" - }, -/area/fiorina/oob) -"ggh" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "birthdayparty" - }, -/turf/closed/wall/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"ggk" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"ggQ" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/darkbrown2/northwest, -/area/fiorina/tumor/aux_engi) -"ggZ" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison/green/east, -/area/fiorina/tumor/civres) -"ghg" = ( -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/space, -/area/fiorina/oob) -"ghz" = ( -/obj/structure/lz_sign/prison_sign, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"ghS" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"gib" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"gis" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "2" - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"git" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"giw" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"giJ" = ( -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"giX" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"gjr" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"gjs" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"gjB" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) -"gjZ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/greenblue/southeast, -/area/fiorina/station/botany) -"gkI" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"gkK" = ( -/obj/structure/reagent_dispensers/watertank{ - layer = 2.6 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"glj" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"gly" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -11; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"glD" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"glG" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"glO" = ( -/turf/open/floor/prison/green/north, -/area/fiorina/station/chapel) -"glZ" = ( -/obj/structure/bed/sofa/south/grey/left, -/obj/item/reagent_container/food/snacks/sandwich{ - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"gmu" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec) -"gmF" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/prison, -/area/fiorina/station/security) -"gmG" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"gmY" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"gng" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"gnq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"gnQ" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"gnW" = ( -/obj/structure/barricade/sandbags{ - dir = 4; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - pixel_y = -14 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"gom" = ( -/obj/item/reagent_container/food/drinks/coffee{ - name = "\improper paper cup" - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/central_ring) -"gop" = ( -/obj/effect/spawner/random/gun/rifle/highchance, -/turf/open/floor/prison/damaged3, -/area/fiorina/station/security) -"goG" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"goM" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison/darkbrown2/southwest, -/area/fiorina/maintenance) -"goS" = ( -/obj/structure/girder, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"gpr" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"gpG" = ( -/obj/structure/window_frame/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"gqC" = ( -/obj/item/pamphlet/engineer, -/obj/structure/closet, -/obj/item/restraint/handcuffs, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/lowsec) -"gqG" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"grA" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"grI" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 9 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"gsc" = ( -/turf/open/floor/prison/greencorner/north, -/area/fiorina/tumor/civres) -"gsd" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"gsL" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"gsN" = ( -/obj/structure/closet, -/obj/effect/spawner/random/gun/shotgun/midchance, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"gsX" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"gtg" = ( -/obj/structure/barricade/sandbags{ - dir = 4; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - pixel_y = -14 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"gtJ" = ( -/obj/item/storage/belt/marine/quackers, -/obj/effect/spawner/gibspawner/human, -/turf/open/gm/river/darkred_pool, -/area/fiorina/station/park) -"gtP" = ( -/obj/item/trash/uscm_mre, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"gtX" = ( -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"gtY" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/chapel) -"guf" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = -5 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"gum" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/park) -"guu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"gux" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"guN" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"guR" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"guU" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/civres) -"guX" = ( -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/medbay) -"gvu" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"gws" = ( -/turf/open/floor/plating, -/area/fiorina/oob) -"gwz" = ( -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"gwF" = ( -/obj/item/prop/helmetgarb/gunoil, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"gwH" = ( -/turf/closed/wall/strata_ice/jungle{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - name = "synthetic vegetation" - }, -/area/fiorina/tumor/fiberbush) -"gwM" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/dice, -/obj/item/toy/crayon/blue{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"gwS" = ( -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/lz/near_lzI) -"gxj" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/dice/d20, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"gxC" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"gxF" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/pool, -/area/fiorina/station/park) -"gyo" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"gyw" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"gyy" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"gyz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/tumor/ice_lab) -"gyJ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"gzb" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"gzp" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/obj/structure/machinery/m56d_hmg/mg_turret/dropship{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/north, -/area/fiorina/station/central_ring) -"gzt" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"gzJ" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/storage/belt/shotgun, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"gzP" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/obj/item/newspaper, -/obj/item/bedsheet/green, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"gzR" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"gAh" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"gAn" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison, -/area/fiorina/station/park) -"gAA" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"gAG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 6 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"gBb" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec) -"gBj" = ( -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/tumor/ice_lab) -"gBl" = ( -/obj/item/ammo_casing{ - icon_state = "casing_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"gBo" = ( -/obj/structure/computerframe, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"gBR" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"gCk" = ( -/obj/structure/toilet, -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) -"gCn" = ( -/obj/structure/surface/table/woodentable, -/obj/item/newspaper{ - name = "character sheet"; - pixel_x = -6 - }, -/obj/item/newspaper{ - name = "character sheet"; - pixel_x = 4; - pixel_y = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"gCB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"gCE" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 12 - }, -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/tumor/civres) -"gCR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic{ - pixel_x = 3 - }, -/obj/item/trash/cigbutt{ - pixel_y = 8 - }, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/obj/item/paper_bin{ - pixel_x = -10; - pixel_y = 8 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"gCW" = ( -/obj/item/tool/crowbar, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"gDi" = ( -/obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/flight_deck) -"gDq" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"gDx" = ( -/obj/structure/surface/table/woodentable, -/obj/item/newspaper{ - name = "character sheet" - }, -/obj/item/device/cassette_tape/heavymetal{ - pixel_x = 5; - pixel_y = 7 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"gDD" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/item/toy/beach_ball, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"gDI" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison, -/area/fiorina/tumor/ice_lab) -"gDL" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison/green/east, -/area/fiorina/tumor/civres) -"gDZ" = ( -/turf/open/floor/prison/green/northwest, -/area/fiorina/tumor/civres) -"gEx" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) -"gER" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"gEX" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"gFa" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"gFg" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"gFi" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"gFj" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/item/fuel_cell, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"gGa" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"gGc" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"gGh" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"gGx" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"gGF" = ( -/turf/open/floor/prison/whitegreencorner, -/area/fiorina/station/medbay) -"gHb" = ( -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) -"gHf" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"gHh" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"gHy" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"gHz" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"gHC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"gHD" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"gHV" = ( -/obj/structure/platform_decoration, -/obj/structure/inflatable, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"gIb" = ( -/turf/open/floor/prison/darkyellow2/southeast, -/area/fiorina/station/power_ring) -"gIi" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/servers) -"gIw" = ( -/obj/item/prop/helmetgarb/gunoil, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"gIB" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"gJb" = ( -/obj/structure/sign/poster{ - icon_state = "poster18"; - pixel_y = 32 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"gJg" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"gJr" = ( -/turf/open/floor/prison/greenblue/north, -/area/fiorina/station/botany) -"gJu" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"gJL" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"gJN" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"gJZ" = ( -/obj/item/tool/mop, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"gKi" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"gKl" = ( -/obj/structure/janitorialcart, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"gKw" = ( -/turf/open/floor/prison/floor_marked/west, -/area/fiorina/tumor/servers) -"gKy" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"gLk" = ( -/obj/item/stool, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"gLu" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_leftengine" - }, -/area/fiorina/tumor/ship) -"gLv" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - density = 0; - icon_state = "door_closing" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"gLW" = ( -/obj/vehicle/powerloader{ - dir = 4 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"gMe" = ( -/obj/item/stack/cable_coil/green, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"gMj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"gMH" = ( -/turf/open/floor/prison/floorscorched1, -/area/fiorina/tumor/civres) -"gNN" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/tumor/aux_engi) -"gOn" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"gOu" = ( -/obj/item/reagent_container/food/snacks/boiledegg, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"gOK" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"gOP" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"gPf" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 10 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"gPk" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"gPs" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"gPB" = ( -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"gQc" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"gQK" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 12 - }, -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/tumor/servers) -"gQL" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"gRp" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"gRy" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) -"gRT" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - pixel_x = -24 - }, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"gRW" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/bed/chair/comfy, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"gSv" = ( -/obj/item/trash/c_tube, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"gSC" = ( -/obj/item/prop/helmetgarb/gunoil, -/turf/open/floor/prison, -/area/fiorina/maintenance) -"gSP" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 - }, -/turf/open/floor/prison/chapel_carpet, -/area/fiorina/station/chapel) -"gSX" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"gTj" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) -"gTo" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) -"gUj" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan3" - }, -/area/fiorina/tumor/ship) -"gUo" = ( -/obj/structure/machinery/computer3/server/rack, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"gUT" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"gVc" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"gVf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"gVs" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"gVx" = ( -/obj/effect/spawner/random/tool, -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 12 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"gVJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 10 - }, -/obj/item/phone{ - pixel_x = 9; - pixel_y = -10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"gVO" = ( -/obj/item/tool/warning_cone, -/obj/structure/barricade/metal{ - dir = 8; - health = 150; - icon_state = "metal_2" - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"gWi" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"gWq" = ( -/obj/item/ammo_casing{ - icon_state = "casing_1" - }, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/wood, -/area/fiorina/station/disco) -"gXd" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"gXo" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"gXs" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"gXu" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"gXD" = ( -/obj/item/trash/hotdog, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) -"gYC" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"gYG" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"gYT" = ( -/obj/structure/prop/structure_lattice{ - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/civres_blue) -"gZf" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/medbay) -"gZl" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison/darkbrowncorners2/north, -/area/fiorina/tumor/aux_engi) -"gZy" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/curtain/shower, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"gZF" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"gZU" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"hay" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy_leftengine" - }, -/area/fiorina/station/medbay) -"haz" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"hbd" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"hbo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/classic{ - anchored = 1 - }, -/obj/item/reagent_container/food/drinks/cans/souto/classic{ - pixel_x = 8 - }, -/obj/item/reagent_container/food/drinks/cans/souto/classic{ - pixel_x = -8 - }, -/obj/item/reagent_container/food/drinks/cans/souto/classic{ - layer = 4.1; - pixel_x = 4; - pixel_y = 18 - }, -/obj/item/reagent_container/food/drinks/cans/souto/classic{ - layer = 4.1; - pixel_x = -4; - pixel_y = 18 - }, -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"hbp" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"hbr" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"hbR" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"hbS" = ( -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/fiberbush) -"hbW" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"hcv" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"hcC" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"hcJ" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"hds" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2-8" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"hef" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/disco) -"heO" = ( -/turf/closed/shuttle/elevator, -/area/fiorina/station/civres_blue) -"hfc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/plating/prison, -/area/fiorina/station/security/wardens) -"hfd" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"hfp" = ( -/turf/open/floor/prison/panelscorched, -/area/fiorina/station/civres_blue) -"hfw" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/whitepurple/east, -/area/fiorina/station/research_cells) -"hfE" = ( -/obj/item/bodybag, -/obj/item/bodybag{ - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"hfT" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/flight_deck) -"hga" = ( -/obj/item/weapon/gun/rifle/m16, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"hgt" = ( -/obj/item/storage/surgical_tray, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = 12 - }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/medbay) -"hgO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flash, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"hgQ" = ( -/turf/open/floor/prison/blue/northeast, -/area/fiorina/tumor/servers) -"hgS" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan5" - }, -/area/fiorina/tumor/aux_engi) -"hhu" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"hhF" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/lz/near_lzI) -"hhL" = ( -/obj/effect/spawner/random/powercell, -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 12 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"hhZ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"hid" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells) -"hir" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"hiu" = ( -/obj/structure/window/framed/prison/reinforced{ - opacity = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"hiM" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"hiO" = ( -/turf/closed/shuttle/elevator{ - dir = 4 - }, -/area/fiorina/tumor/aux_engi) -"hjv" = ( -/turf/open/floor/prison/greenbluecorner/east, -/area/fiorina/station/botany) -"hjz" = ( -/obj/structure/machinery/autolathe/medilathe/full, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"hjA" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"hjC" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_half_cap" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"hjD" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"hjE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"hjJ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/tumor/aux_engi) -"hjO" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"hjR" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"hjV" = ( -/obj/structure/stairs/perspective, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"hjW" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/lz/near_lzI) -"hkh" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty"; - name = "solar lattice"; - pixel_y = 6 - }, -/turf/open/floor/almayer_hull, -/area/fiorina/oob) -"hkm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"hkV" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/disco) -"hlf" = ( -/turf/open/floor/prison/blue/west, -/area/fiorina/station/chapel) -"hlg" = ( -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/oob) -"hlA" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) -"hlB" = ( -/obj/item/tool/kitchen/knife, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"hlT" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"hmS" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"hnh" = ( -/obj/item/reagent_container/food/drinks/sillycup, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"hnQ" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"hob" = ( -/obj/item/phone{ - pixel_y = 7 - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"hod" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) -"hoj" = ( -/obj/item/trash/candy, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"hoy" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"hoH" = ( -/obj/effect/decal/cleanable/cobweb{ - desc = "Spun only by the terrifying space widow. Some say that even looking at it will kill you."; - name = "space cobweb" - }, -/turf/open/space, -/area/fiorina/oob) -"hoJ" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"hoQ" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"hoT" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"hoZ" = ( -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"hpd" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/security) -"hpz" = ( -/obj/structure/ice/thin/indestructible{ - dir = 1; - icon_state = "Corner" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells) -"hpW" = ( -/obj/item/stack/cable_coil/orange, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"hpY" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"hqb" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) -"hqc" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"hqq" = ( -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"hqw" = ( -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"hqD" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"hqZ" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/lowsec) -"hre" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/item/device/flashlight, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"hri" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - layer = 3.5 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"hrj" = ( -/turf/open/floor/prison/greenblue/southwest, -/area/fiorina/station/botany) -"hrl" = ( -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) -"hro" = ( -/obj/structure/girder, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"hrz" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_x = 2; - pixel_y = 21 - }, -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_x = 2; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"hrB" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/prison, -/area/fiorina/station/security) -"hrI" = ( -/turf/open/floor/prison/yellowcorner/east, -/area/fiorina/station/lowsec) -"hrS" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/tumor/aux_engi) -"hsc" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"hsC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/southleft, -/obj/item/card/id/guest, -/obj/item/reagent_container/food/drinks/coffee{ - name = "\improper paper cup"; - pixel_x = -10; - pixel_y = 17 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"hsL" = ( -/obj/structure/closet, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"hsV" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) -"hsZ" = ( -/obj/item/book/manual/marine_law, -/obj/item/book/manual/marine_law{ - pixel_y = 3 - }, -/turf/open/floor/prison/chapel_carpet, -/area/fiorina/maintenance) -"htt" = ( -/turf/closed/shuttle/ert, -/area/fiorina/station/power_ring) -"htZ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"hul" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"hur" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"huD" = ( -/obj/item/tool/crowbar, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"huQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) -"hva" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/wood, -/area/fiorina/lz/near_lzI) -"hvx" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"hvF" = ( -/obj/structure/grille, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"hvN" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/whitegreencorner/west, -/area/fiorina/station/medbay) -"hwo" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 8 - }, -/obj/item/ammo_casing{ - dir = 8; - icon_state = "casing_6" - }, -/obj/effect/spawner/random/gun/smg/midchance, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"hwF" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "lavendergrass_3" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"hxq" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"hxu" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"hxy" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"hxG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/space/basic, -/area/fiorina/oob) -"hxJ" = ( -/obj/structure/sign/poster{ - icon_state = "poster12"; - pixel_x = 6; - pixel_y = 8 - }, -/turf/open/space/basic, -/area/fiorina/oob) -"hxM" = ( -/obj/structure/ice/thin/indestructible{ - dir = 1; - icon_state = "Straight" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells) -"hxZ" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"hyh" = ( -/obj/structure/barricade/plasteel, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"hys" = ( -/obj/structure/grille, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"hyT" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_leftengine" - }, -/area/fiorina/tumor/aux_engi) -"hzu" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"hzy" = ( -/turf/open/floor/prison/whitegreencorner/north, -/area/fiorina/tumor/ice_lab) -"hzG" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8; - pixel_x = 7 - }, -/turf/closed/shuttle/ert{ - icon_state = "wy4" - }, -/area/fiorina/station/medbay) -"hzK" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"hzV" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/fiorina/station/flight_deck) -"hAx" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkyellow2/northwest, -/area/fiorina/station/flight_deck) -"hAW" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/station/park) -"hAY" = ( -/obj/item/frame/toolbox_tiles_sensor, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"hBa" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"hBd" = ( -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"hBo" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"hBz" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/down, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"hBB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"hBF" = ( -/obj/structure/window_frame/prison/reinforced, -/obj/item/stack/sheet/glass/reinforced{ - pixel_y = 5 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"hCc" = ( -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/park) -"hCg" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/inflatable/popped, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"hCh" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) -"hCi" = ( -/obj/item/frame/rack, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"hCZ" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/power_ring) -"hDo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - layer = 3.5; - pixel_y = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"hDI" = ( -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/flight_deck) -"hEb" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy20" - }, -/area/fiorina/station/medbay) -"hEm" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"hEp" = ( -/obj/item/stool, -/obj/item/trash/cigbutt{ - pixel_y = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"hEs" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/prison, -/area/fiorina/station/research_cells) -"hEv" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"hED" = ( -/obj/item/trash/eat, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) -"hEK" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) -"hFC" = ( -/obj/item/disk, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"hFH" = ( -/obj/item/gift, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket" - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"hFO" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"hGn" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"hGy" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) -"hGz" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"hGA" = ( -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"hGC" = ( -/obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) -"hGT" = ( -/obj/item/paper/prison_station/inmate_handbook, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"hHj" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/station/park) -"hHm" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"hHq" = ( -/obj/structure/closet/cabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"hHA" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_tram) -"hHF" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"hHH" = ( -/obj/effect/decal/cleanable/blood{ - desc = "Watch your step."; - icon_state = "gib6" - }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"hIP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio{ - pixel_x = -6; - pixel_y = 16 - }, -/obj/item/device/radio{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"hJz" = ( -/obj/structure/barricade/sandbags{ - dir = 1; - icon_state = "sandbag_0" - }, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"hJM" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ywflowers_4" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"hJS" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/flight_deck) -"hLd" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 8 - }, -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"hLz" = ( -/turf/closed/wall/prison, -/area/fiorina/lz/near_lzII) -"hLI" = ( -/turf/open/floor/prison/green/north, -/area/fiorina/tumor/civres) -"hLM" = ( -/obj/structure/sign/safety/bulkhead_door, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/tumor/fiberbush) -"hLS" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"hMf" = ( -/obj/item/tool/candle{ - pixel_x = -2; - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"hMj" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"hMK" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "pizzatime" - }, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/power_ring) -"hMZ" = ( -/obj/item/trash/pistachios, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"hNJ" = ( -/obj/structure/sink{ - pixel_y = 23 - }, -/obj/item/paper_bin{ - pixel_x = -11; - pixel_y = -5 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"hNU" = ( -/obj/structure/janitorialcart, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"hNY" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"hOf" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib2" - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"hOA" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"hOV" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/tumor/servers) -"hPi" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"hPw" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"hPI" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"hPN" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison, -/area/fiorina/station/security) -"hPU" = ( -/obj/structure/platform_decoration, -/obj/item/reagent_container/food/drinks/sillycup, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"hPV" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"hPY" = ( -/obj/structure/surface/rack, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"hPZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"hQb" = ( -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) -"hQh" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"hQk" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"hQv" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/item/fuel_cell, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"hQH" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) -"hQN" = ( -/obj/item/trash/cigbutt/bcigbutt, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"hQR" = ( -/obj/structure/barricade/metal/wired{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"hQT" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/item/stack/barbed_wire, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"hRP" = ( -/turf/open/floor/prison/greenblue/northwest, -/area/fiorina/station/botany) -"hSC" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/central_ring) -"hSH" = ( -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"hSU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"hTd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/bottle/spaceacillin{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"hTo" = ( -/obj/item/smallDelivery, -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"hTs" = ( -/turf/closed/shuttle/elevator{ - dir = 10 - }, -/area/fiorina/station/civres_blue) -"hTH" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"hTI" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"hTM" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"hTP" = ( -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/power_ring) -"hUi" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"hUj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"hUA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/card/id/guest{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/card/id/guest, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"hUQ" = ( -/turf/open/floor/prison/whitegreencorner/west, -/area/fiorina/station/medbay) -"hVj" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"hVu" = ( -/obj/item/stack/sheet/metal, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"hVw" = ( -/obj/item/ammo_box/magazine/M16, -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/lz/near_lzI) -"hVx" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/civres_blue) -"hVE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"hVG" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"hVI" = ( -/turf/closed/wall/prison, -/area/fiorina/station/medbay) -"hVQ" = ( -/obj/structure/surface/table/reinforced/prison{ - dir = 4; - flipped = 1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"hVS" = ( -/obj/structure/platform_decoration/kutjevo, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"hWe" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/floor/corsat/plate, -/area/fiorina/station/civres_blue) -"hWi" = ( -/obj/structure/machinery/door/airlock/almayer/maint/autoname{ - dir = 1; - name = "\improper Null Hatch REPLACE ME"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"hWv" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"hWB" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"hWF" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/fiorina/tumor/ship) -"hWM" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"hWV" = ( -/obj/item/trash/boonie, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"hXd" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"hXN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/weapon/gun/pistol/heavy, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"hXX" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"hXZ" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy2" - }, -/area/fiorina/station/medbay) -"hYj" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"hYs" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - layer = 2.97; - pixel_y = -14 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"hYv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - icon_state = "mwo"; - pixel_y = 6 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"hYx" = ( -/obj/item/tool/wet_sign, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = -1 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"hYI" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/weapon/classic_baton, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"hZf" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"hZv" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -9; - pixel_y = 8 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 11; - pixel_y = 8 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"hZP" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkyellowcorners2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"hZR" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"hZW" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) -"iah" = ( -/obj/item/storage/beer_pack{ - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"iax" = ( -/obj/item/weapon/harpoon, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"iaC" = ( -/obj/item/stool, -/obj/structure/sign/poster{ - icon_state = "poster15"; - pixel_y = 32 - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/maintenance) -"iaM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/hugemushroomslice, -/obj/item/reagent_container/food/snacks/hugemushroomslice{ - pixel_y = 3 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"iaP" = ( -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) -"ibf" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"ibz" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"ibA" = ( -/obj/structure/barricade/metal/wired{ - health = 120; - icon_state = "metal_2" - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"ibB" = ( -/obj/structure/tunnel, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"ibD" = ( -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"ibG" = ( -/obj/item/stool, -/turf/open/floor/prison/damaged2/southwest, -/area/fiorina/station/lowsec) -"ibN" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"icf" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"icu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/pizzabox/mushroom, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"icS" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"icT" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"idh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"idi" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"idr" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"idS" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"ieA" = ( -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"ieN" = ( -/obj/structure/largecrate/supply/generator, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"ifa" = ( -/obj/item/ammo_casing{ - icon_state = "casing_10_1" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"ifp" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/item/tool/wrench, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"ifw" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"ifI" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"ifJ" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/almayer, -/area/fiorina/tumor/ship) -"igt" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"igG" = ( -/turf/open/floor/prison/blue/north, -/area/fiorina/station/civres_blue) -"igO" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/fiorina/maintenance) -"ihk" = ( -/obj/item/paper/prison_station/inmate_handbook, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"ihp" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/obj/item/organ/lungs, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"ihr" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"ihz" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/plating_catwalk, -/area/fiorina/tumor/ship) -"ihG" = ( -/obj/item/trash/semki, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"iiw" = ( -/obj/structure/monorail{ - dir = 6; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"iiN" = ( -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"ijd" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"ijs" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"ijE" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"ijN" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/lz/near_lzI) -"ijS" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"ikq" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/chapel) -"ikw" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"ikF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_27"; - layer = 3.1; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"ikG" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"ikL" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"ilN" = ( -/obj/item/stack/rods/plasteel, -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/lz/near_lzI) -"imh" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"imt" = ( -/turf/open/floor/almayer, -/area/fiorina/tumor/ship) -"imw" = ( -/obj/item/reagent_container/food/drinks/cans/aspen, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"imy" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_tram) -"imI" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"imN" = ( -/obj/structure/filingcabinet/disk, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"inA" = ( -/obj/structure/surface/table/reinforced/prison{ - flipped = 1 - }, -/obj/item/device/cassette_tape/hiphop, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"inQ" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/curtain/shower, -/obj/structure/window{ - dir = 4 - }, -/obj/item/coin/uranium{ - desc = "You found one of the three uranium coins. It is entirely worthless." - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"inW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = -6; - pixel_y = 16 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"inX" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"ioC" = ( -/obj/item/tool/pickaxe, -/obj/item/tool/pickaxe{ - pixel_y = 5 - }, -/obj/item/tool/pickaxe{ - pixel_y = 10 - }, -/obj/structure/surface/rack, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"ioK" = ( -/obj/item/trash/candy, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"ioM" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/medbay) -"ipa" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2; - name = "Warden's Office"; - req_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security/wardens) -"ipd" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) -"ipe" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"ipr" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"ipz" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"ipL" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"ipT" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/darkbrown2/northeast, -/area/fiorina/maintenance) -"iqh" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) -"iqj" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"iqx" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"iqB" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/head/helmet/warden{ - pixel_x = 3; - pixel_y = 15 - }, -/obj/structure/machinery/computer/objective, -/turf/open/floor/carpet, -/area/fiorina/station/security/wardens) -"ira" = ( -/obj/structure/window{ - dir = 4 - }, -/obj/item/circuitboard/machine/rdserver, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"irf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/processor{ - desc = "It CAN blend it."; - icon_state = "blender_e"; - name = "Blendomatic"; - pixel_x = -2; - pixel_y = 10 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"irB" = ( -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/station/park) -"irD" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"itd" = ( -/obj/item/tool/lighter/random, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/park) -"ite" = ( -/turf/open/floor/prison/green/northeast, -/area/fiorina/tumor/civres) -"iti" = ( -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"itr" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"itv" = ( -/obj/item/toy/handcard/uno_reverse_yellow, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"itA" = ( -/turf/open/floor/prison/blue/north, -/area/fiorina/station/power_ring) -"itC" = ( -/obj/structure/powerloader_wreckage, -/obj/effect/decal/cleanable/blood/gibs/robot/limb, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"itN" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/park) -"itS" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"iuq" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"iuz" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"iuR" = ( -/obj/item/tool/pickaxe, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) -"iuZ" = ( -/obj/item/stack/rods, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"ivb" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/space/basic, -/area/fiorina/oob) -"ivv" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/greenblue/northeast, -/area/fiorina/station/botany) -"ivz" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/wood, -/area/fiorina/station/park) -"ivN" = ( -/obj/structure/window/reinforced, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/attachment, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"iwf" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/chapel_carpet, -/area/fiorina/station/chapel) -"iwm" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"iwu" = ( -/obj/item/newspaper, -/turf/open/floor/prison, -/area/fiorina/station/security) -"iwQ" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) -"iwT" = ( -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "End" - }, -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "End" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells) -"iwW" = ( -/obj/structure/barricade/metal{ - dir = 8; - health = 150; - icon_state = "metal_2" - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/ice_lab) -"ixl" = ( -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"ixA" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"ixB" = ( -/obj/item/stack/barbed_wire, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"ixF" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"iyc" = ( -/obj/item/stack/rods/plasteel, -/turf/open/auto_turf/sand/layer1, -/area/fiorina/station/flight_deck) -"iyf" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"iyy" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"iyz" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"iyJ" = ( -/obj/item/toy/beach_ball, -/turf/open/gm/river/red_pool, -/area/fiorina/station/park) -"iyS" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"izq" = ( -/turf/open/gm/river/pool, -/area/fiorina/station/park) -"izy" = ( -/turf/open/floor/prison/darkbrown2/southeast, -/area/fiorina/tumor/aux_engi) -"izB" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"izN" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"izO" = ( -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" - }, -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/chapel) -"izZ" = ( -/turf/closed/wall/prison, -/area/fiorina/station/disco) -"iAq" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"iAr" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"iAA" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib5" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"iBj" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"iBr" = ( -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"iBs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"iBP" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan25" - }, -/area/fiorina/oob) -"iBS" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 1; - pixel_y = 24 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) -"iCc" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"iCd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"iCg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette, -/obj/item/storage/fancy/cigarettes/emeraldgreen{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"iCh" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"iCE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"iCF" = ( -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"iCU" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/prison, -/area/fiorina/station/disco) -"iDg" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - pixel_y = -14 - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"iDq" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 2; - layer = 6; - name = "overhead pipe"; - pixel_x = -16; - pixel_y = 12 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"iDx" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"iEl" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"iEP" = ( -/obj/item/tool/lighter/random, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"iFj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/lz/near_lzI) -"iFn" = ( -/obj/structure/janitorialcart, -/obj/item/clothing/head/bio_hood/janitor{ - pixel_x = -4; - pixel_y = 5 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"iFO" = ( -/turf/open/floor/prison/whitegreencorner, -/area/fiorina/tumor/ice_lab) -"iGc" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"iGo" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"iGv" = ( -/turf/open/floor/prison/damaged2/southwest, -/area/fiorina/station/security) -"iGK" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor/prison/whitegreencorner/east, -/area/fiorina/station/medbay) -"iGT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"iGX" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"iGY" = ( -/obj/effect/spawner/random/gun/pistol/lowchance, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"iHi" = ( -/obj/effect/spawner/random/gun/smg/midchance, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"iHs" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/blue/north, -/area/fiorina/station/power_ring) -"iHu" = ( -/obj/item/newspaper, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"iHZ" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"iIf" = ( -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/disco) -"iIl" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"iIm" = ( -/obj/item/bodybag, -/obj/item/bodybag{ - pixel_y = 2 - }, -/obj/item/bodybag{ - pixel_y = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"iIB" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"iIE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups, -/obj/item/reagent_container/food/drinks/coffee{ - name = "\improper paper cup"; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"iIS" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"iJt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/accessory/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"iJL" = ( -/obj/item/tool/shovel/snow, -/obj/item/device/flashlight, -/obj/structure/surface/rack, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"iJW" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.4 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"iKf" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"iKg" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"iKj" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/prop/souto_land/streamer{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) -"iKs" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/chapel) -"iKE" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"iKG" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/chapel) -"iLh" = ( -/obj/structure/prop/resin_prop{ - icon_state = "rack" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"iLr" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "bee" - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/maintenance) -"iLJ" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"iLW" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"iMo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/fiorina/station/security/wardens) -"iMA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications/simple, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"iNb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"iNy" = ( -/obj/item/toy/handcard/uno_reverse_blue, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"iNE" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/blue, -/area/fiorina/station/chapel) -"iNS" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security/wardens) -"iOa" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"iOg" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/almayer/plating/northeast, -/area/fiorina/tumor/ship) -"iOi" = ( -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"iOk" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) -"iPx" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"iPF" = ( -/obj/structure/machinery/optable, -/turf/open/floor/corsat/squares, -/area/fiorina/station/medbay) -"iPP" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"iPR" = ( -/obj/structure/window{ - dir = 8 - }, -/obj/item/circuitboard/machine/rdserver, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"iQa" = ( -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/prison/greenblue/west, -/area/fiorina/station/botany) -"iQh" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"iQz" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) -"iQJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"iQK" = ( -/obj/structure/disposalpipe/broken{ - dir = 1 - }, -/obj/structure/disposalpipe/broken, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"iQS" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"iRa" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"iRE" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"iRG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/chunk, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"iRH" = ( -/obj/item/frame/firstaid_arm_assembly, -/obj/structure/surface/table/woodentable, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"iSu" = ( -/turf/closed/wall/prison{ - desc = "Come Meet Souto Man!"; - icon_state = "rwall_s" - }, -/area/fiorina/station/park) -"iSA" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/fiorina/station/power_ring) -"iSI" = ( -/obj/structure/machinery/power/apc/power/west, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) -"iTm" = ( -/turf/open/auto_turf/sand/layer1, -/area/fiorina/station/civres_blue) -"iTs" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) -"iTy" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) -"iTB" = ( -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/civres_blue) -"iTK" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison, -/area/fiorina/station/security) -"iTW" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"iUn" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkbrowncorners2, -/area/fiorina/maintenance) -"iUB" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) -"iUI" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"iUO" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"iUR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/prize/honk{ - anchored = 1; - layer = 2.9; - pixel_x = -1; - pixel_y = 13 - }, -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"iUS" = ( -/obj/structure/barricade/handrail/type_b, -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"iVv" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/space, -/area/fiorina/oob) -"iVT" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"iWg" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_y = 21 - }, -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_x = 17; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"iWk" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"iWm" = ( -/turf/open/floor/prison/platingdmg1, -/area/fiorina/tumor/aux_engi) -"iWq" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/turf/open/space, -/area/fiorina/oob) -"iWw" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) -"iWZ" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/darkyellow2/southeast, -/area/fiorina/station/flight_deck) -"iXa" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"iXf" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"iXo" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"iXs" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"iXO" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) -"iXR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - icon_state = "mwo"; - pixel_y = 6 - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"iXT" = ( -/turf/open/floor/prison/blue/northwest, -/area/fiorina/station/power_ring) -"iYw" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/central_ring) -"iYQ" = ( -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/turf/open/floor/prison, -/area/fiorina/maintenance) -"iZf" = ( -/obj/structure/machinery/vending/snack/packaged, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"iZo" = ( -/obj/item/stock_parts/manipulator/pico, -/turf/open/floor/prison/darkpurple2/east, -/area/fiorina/tumor/servers) -"iZD" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec) -"iZR" = ( -/obj/item/stool, -/turf/open/floor/prison/cell_stripe/north, -/area/fiorina/station/flight_deck) -"jai" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"jaj" = ( -/turf/open/floor/prison/bluecorner/west, -/area/fiorina/station/chapel) -"jaq" = ( -/turf/open/floor/prison/darkbrowncorners2/west, -/area/fiorina/tumor/aux_engi) -"jat" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"jaw" = ( -/obj/structure/machinery/gibber, -/obj/effect/decal/cleanable/blood{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/prison/blue_plate, -/area/fiorina/station/botany) -"jaB" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/space/basic, -/area/fiorina/oob) -"jaI" = ( -/obj/item/ammo_casing{ - icon_state = "casing_8" - }, -/obj/structure/surface/table/reinforced/prison{ - dir = 4; - flipped = 1 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"jaN" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"jaO" = ( -/obj/structure/bed/chair, -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"jbr" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"jbu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/prison, -/area/fiorina/station/security) -"jbU" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"jce" = ( -/obj/structure/window_frame/prison/reinforced, -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"jch" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"jcv" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"jcy" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"jcF" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"jcI" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"jdg" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"jdj" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) -"jdl" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/prison/green/southwest, -/area/fiorina/tumor/civres) -"jdq" = ( -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"jdu" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 12 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"jdE" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"jdO" = ( -/obj/structure/surface/rack, -/obj/item/tool/mop, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"jeg" = ( -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/oob) -"jel" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) -"jev" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"jfc" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"jfe" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"jfk" = ( -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"jfy" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/prison/blue_plate/west, -/area/fiorina/station/botany) -"jfI" = ( -/obj/item/tool/shovel, -/turf/open/floor/prison/green/southeast, -/area/fiorina/tumor/civres) -"jfR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/weed{ - icon_state = "ucigoff" - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/lowsec) -"jfT" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"jfW" = ( -/obj/item/storage/bible/hefa, -/turf/open/floor/prison/green/southeast, -/area/fiorina/station/chapel) -"jfZ" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/fire/empty, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"jgu" = ( -/turf/closed/wall/prison, -/area/fiorina/station/park) -"jgA" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"jgB" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"jhg" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"jhr" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"jhs" = ( -/obj/effect/landmark/objective_landmark/far, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/maintenance) -"jht" = ( -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" - }, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/chapel) -"jhu" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/tumor/ice_lab) -"jhG" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan25" - }, -/area/fiorina/tumor/ship) -"jhP" = ( -/obj/structure/girder, -/turf/open/floor/almayer/plating/northeast, -/area/fiorina/tumor/ship) -"jhV" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"jid" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"jiq" = ( -/obj/structure/lz_sign/prison_sign, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"jis" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"jiI" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) -"jiV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = 8; - pixel_y = 10 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"jjg" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"jji" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"jjq" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"jjs" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"jjH" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"jjM" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"jkg" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"jkE" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"jkW" = ( -/obj/structure/dropship_equipment/fulton_system, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"jkY" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/chapel) -"jlb" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"jlh" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"jlk" = ( -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/tumor/aux_engi) -"jls" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/prison, -/area/fiorina/station/park) -"jlG" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"jlH" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/space, -/area/fiorina/oob) -"jlI" = ( -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"jmr" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"jmD" = ( -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"jmG" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/research_cells) -"jmN" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"jmU" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"jmV" = ( -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"jnd" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/lz/near_lzII) -"jnq" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"jnE" = ( -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells) -"joc" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "4" - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/maintenance) -"joi" = ( -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"jor" = ( -/obj/effect/spawner/random/attachment, -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 12 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"joJ" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"joU" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"jpc" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"jpN" = ( -/obj/structure/sign/prop3{ - desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." - }, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/research_cells) -"jqs" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 12 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"jqt" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"jqw" = ( -/obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"jqE" = ( -/obj/item/circuitboard/robot_module/janitor, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"jqW" = ( -/obj/item/frame/firstaid_arm_assembly, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"jrh" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"jrp" = ( -/obj/structure/closet/secure_closet/medical2{ - req_access_txt = "100" - }, -/obj/effect/spawner/random/pills, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/corsat/squares, -/area/fiorina/station/medbay) -"jrq" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"jrr" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/flight_deck) -"jrA" = ( -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"jrD" = ( -/turf/open/floor/prison/floorscorched1, -/area/fiorina/station/chapel) -"jrX" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"jsd" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 9 - }, -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"jss" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"jsH" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"jta" = ( -/obj/structure/bed{ - icon_state = "psychbed" - }, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"jte" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"jtr" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"jtY" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"jva" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"jvo" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"jvt" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"jvy" = ( -/mob/living/simple_animal/hostile/carp{ - desc = "He is late for work."; - name = "Egbert" - }, -/turf/open/space, -/area/fiorina/oob) -"jvA" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"jwc" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"jwf" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/lz/near_lzI) -"jwD" = ( -/obj/structure/sink{ - pixel_y = 23 - }, -/obj/item/prop/helmetgarb/rabbitsfoot{ - pixel_y = 22 - }, -/obj/item/reagent_container/food/drinks/bottle/kahlua{ - pixel_x = 5; - pixel_y = 25 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"jwG" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"jwK" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/lz/near_lzII) -"jxc" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"jxd" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"jxE" = ( -/obj/item/trash/popcorn, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"jxF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/poster, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"jxT" = ( -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"jxW" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/chapel) -"jyM" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"jyP" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"jyQ" = ( -/obj/item/device/flashlight, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) -"jyZ" = ( -/obj/item/trash/boonie, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"jzg" = ( -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"jzm" = ( -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) -"jzt" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/almayer/plating/northeast, -/area/fiorina/tumor/ship) -"jzI" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"jzJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/oob) -"jAl" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"jAu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/frame/firstaid_arm_assembly, -/obj/item/stack/nanopaste{ - pixel_x = 11; - pixel_y = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"jAC" = ( -/obj/structure/inflatable/popped/door, -/obj/item/ammo_casing{ - icon_state = "casing_1" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"jAL" = ( -/obj/structure/inflatable/popped, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"jAW" = ( -/obj/structure/largecrate/supply/ammo, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"jBv" = ( -/obj/structure/bed/sofa/vert/grey/bot{ - pixel_y = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) -"jBI" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"jBQ" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/wood, -/area/fiorina/station/park) -"jBR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/chem_dispenser/soda, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"jCz" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/tumor/aux_engi) -"jCE" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"jCO" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"jDN" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) -"jDR" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"jDT" = ( -/obj/structure/barricade/metal/wired{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) -"jEb" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/wood/medium_stack, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"jEr" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"jEv" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/servers) -"jEw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black_random, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"jEK" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/fiorina/station/research_cells) -"jEQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, -/turf/open/floor/prison, -/area/fiorina/lz/console_II) -"jEX" = ( -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/central_ring) -"jFg" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"jFh" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) -"jFl" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"jFx" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/transit_hub) -"jFO" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "poolparty" - }, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/park) -"jGP" = ( -/turf/open/floor/prison/whitegreencorner/west, -/area/fiorina/tumor/ice_lab) -"jGU" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibdown1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"jHr" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"jHv" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/lz/near_lzI) -"jHC" = ( -/obj/structure/surface/rack, -/obj/item/tool/lighter, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"jIh" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"jIm" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "Residential Archives" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"jIz" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"jID" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/cell/super{ - pixel_y = 12 - }, -/obj/item/cell/super, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"jIZ" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"jJb" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"jJp" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Residential Apartment" - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/servers) -"jJO" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/fiorina/station/power_ring) -"jJS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/grape{ - anchored = 1 - }, -/obj/item/reagent_container/food/drinks/cans/souto/grape{ - pixel_x = -8 - }, -/obj/item/reagent_container/food/drinks/cans/souto/grape{ - pixel_x = 8 - }, -/obj/item/reagent_container/food/drinks/cans/souto/grape{ - layer = 4.1; - pixel_x = 4; - pixel_y = 18 - }, -/obj/item/reagent_container/food/drinks/cans/souto/grape{ - layer = 4.1; - pixel_x = -4; - pixel_y = 18 - }, -/obj/item/reagent_container/food/drinks/cans/souto/grape{ - layer = 4.2; - pixel_y = 36 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"jKI" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/turf/open/space, -/area/fiorina/oob) -"jKJ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"jKR" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/tumor/ice_lab) -"jKX" = ( -/turf/open/floor/prison/darkyellowcorners2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"jKZ" = ( -/obj/item/trash/candy, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) -"jLd" = ( -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/corsat/squares, -/area/fiorina/station/civres_blue) -"jLe" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"jMf" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"jMk" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"jMx" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"jMI" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigar, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"jMZ" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"jNl" = ( -/obj/structure/ice/thin/indestructible{ - icon_state = "Straight" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells) -"jNu" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/prison/greenblue/southwest, -/area/fiorina/station/botany) -"jNZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"jOb" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"jOG" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/storage/box/pillbottles, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"jOM" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"jPI" = ( -/obj/item/trash/uscm_mre, -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/flight_deck) -"jPJ" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 2; - layer = 6; - name = "overhead pipe"; - pixel_x = -16; - pixel_y = 12 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/tumor/servers) -"jPK" = ( -/turf/closed/shuttle/elevator{ - dir = 6 - }, -/area/fiorina/station/telecomm/lz1_cargo) -"jQg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"jQp" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"jQB" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec) -"jQM" = ( -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"jRf" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"jRh" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) -"jRk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/stock_parts/matter_bin/adv{ - pixel_x = -7; - pixel_y = 3 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"jRo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"jRA" = ( -/obj/structure/machinery/computer/communications{ - dir = 4; - pixel_y = 5 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/servers) -"jRF" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"jRL" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/disco) -"jRU" = ( -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/servers) -"jSk" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/effect/decal/cleanable/blood, -/obj/item/attachable/bipod, -/obj/item/device/multitool, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"jSo" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"jSD" = ( -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"jSE" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/waffles, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"jTx" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"jTJ" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/lowsec) -"jUs" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/chapel_carpet, -/area/fiorina/station/chapel) -"jUD" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"jUG" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"jVe" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) -"jVq" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"jVE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer{ - icon_state = "security_det"; - name = "Shuttle control deck"; - pixel_y = 6 - }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"jWb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"jWH" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) -"jWJ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/green/southeast, -/area/fiorina/tumor/aux_engi) -"jXj" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"jXk" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/almayer, -/area/fiorina/tumor/ship) -"jXp" = ( -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"jXz" = ( -/turf/closed/wall/prison, -/area/fiorina/tumor/servers) -"jXE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/turf/open/floor/prison/redcorner/east, -/area/fiorina/station/power_ring) -"jXS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"jXV" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) -"jXZ" = ( -/turf/closed/shuttle/elevator, -/area/fiorina/tumor/aux_engi) -"jYs" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"jYD" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison/redfull, -/area/fiorina/station/medbay) -"jYF" = ( -/turf/open/floor/prison/green, -/area/fiorina/tumor/civres) -"jYV" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"jYW" = ( -/obj/item/stock_parts/manipulator/pico, -/turf/open/floor/prison/darkpurple2/southeast, -/area/fiorina/tumor/servers) -"jZc" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "delivery_outlet"; - layer = 6; - name = "overhead ducting"; - pixel_y = 33 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"jZI" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/greenblue/east, -/area/fiorina/station/botany) -"jZP" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco) -"jZV" = ( -/turf/open/floor/prison/red/west, -/area/fiorina/station/security) -"kaO" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"kaT" = ( -/obj/structure/surface/rack, -/obj/item/restraint/handcuffs/zip, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/lowsec) -"kaY" = ( -/obj/structure/surface/rack, -/obj/item/key, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/station/medbay) -"kbb" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/tumor/aux_engi) -"kbg" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"kbi" = ( -/obj/item/ammo_casing{ - dir = 6; - icon_state = "casing_10_1" - }, -/obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/wood, -/area/fiorina/station/park) -"kbt" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop{ - pixel_x = 7; - pixel_y = -1 - }, -/obj/item/toy/bikehorn/rubberducky{ - desc = "He's already fed up with your bullshit face."; - name = "Dug the duck"; - pixel_x = -3; - pixel_y = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"kbu" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"kbT" = ( -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"kbZ" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"kds" = ( -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"kdA" = ( -/obj/structure/machinery/power/apc/power/west, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"kdF" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"kdK" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/carpet, -/area/fiorina/tumor/civres) -"kdR" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/lz/near_lzI) -"kee" = ( -/turf/open/floor/prison/blue/east, -/area/fiorina/tumor/servers) -"ken" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"keP" = ( -/obj/item/bodybag, -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec) -"kfL" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison, -/area/fiorina/station/security) -"kfW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/clothing/mask/cigarette, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_y = 8 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"kfY" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"kge" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison/yellowcorner, -/area/fiorina/station/lowsec) -"kgq" = ( -/obj/structure/closet, -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/power_ring) -"kgC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"kgH" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut/alt, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco) -"kgU" = ( -/obj/structure/prop/dam/crane{ - icon_state = "tractor_damaged" - }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/telecomm/lz1_cargo) -"khi" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) -"khK" = ( -/obj/structure/machinery/computer/emails{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"kil" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"kir" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"kiv" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"kiJ" = ( -/obj/structure/closet/bombcloset, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"kiR" = ( -/obj/item/tool/weldpack, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"kiX" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000; - pixel_y = 19 - }, -/obj/item/stack/sheet/wood, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "Somehow, it still functions."; - layer = 3.1; - name = "discarded camera console"; - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"kji" = ( -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - pixel_x = -24 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"kjn" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/tumor/ice_lab) -"kjr" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopleft" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"kjH" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"kjP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/northleft, -/obj/structure/machinery/computer/emails{ - pixel_y = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security/wardens) -"kjV" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"kkk" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"kkv" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"kkO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio{ - pixel_y = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"kkU" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/space/basic, -/area/fiorina/oob) -"kkY" = ( -/obj/item/ammo_casing{ - dir = 2; - icon_state = "casing_5" - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"klb" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 8 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"klp" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_1"; - opacity = 0 - }, -/area/fiorina/tumor/ship) -"kls" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/maintenance) -"klA" = ( -/obj/item/weapon/twohanded/spear, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"klB" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"klC" = ( -/obj/structure/surface/table/reinforced/prison{ - flipped = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"kmu" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"kmL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ - dir = 1; - icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"kmN" = ( -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("PRISON") - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"kmZ" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_tram) -"knh" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"knr" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/central_ring) -"kny" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"knz" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/oob) -"knM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"kor" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"kow" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"koV" = ( -/turf/open/floor/prison/darkpurple2/southwest, -/area/fiorina/station/central_ring) -"kpn" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"kpp" = ( -/obj/item/trash/popcorn, -/obj/structure/cable/heavyduty{ - icon_state = "1-4-8" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"kpP" = ( -/obj/item/device/flashlight/flare, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) -"kqe" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"kqC" = ( -/turf/closed/wall/prison, -/area/fiorina/station/lowsec) -"kqF" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison/darkyellow2/northwest, -/area/fiorina/lz/near_lzI) -"kqG" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_tram) -"kqQ" = ( -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"kqV" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"krl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/cigbutt, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco) -"krz" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; - icon_state = "fullgrass_3"; - name = "Fiberbush(tm) tubers" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"krB" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"krQ" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"ksb" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/green, -/area/fiorina/station/chapel) -"kso" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"ksx" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 6 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000; - layer = 2.9; - pixel_y = 17 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"ksy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/restraint/handcuffs, -/turf/open/floor/prison, -/area/fiorina/station/security) -"ksL" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"ksN" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/tumor/ice_lab) -"ksY" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"ktv" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/prison, -/area/fiorina/station/security) -"kuT" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/tumor/ice_lab) -"kvp" = ( -/obj/structure/barricade/handrail, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"kvr" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/device/multitool, -/obj/item/device/multitool, -/obj/item/device/multitool, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"kvx" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/medbay) -"kvP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"kvX" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/tumor/servers) -"kwb" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"kwr" = ( -/obj/item/ammo_magazine/rifle/m16, -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"kwz" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"kwN" = ( -/obj/item/storage/briefcase, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"kwP" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"kwT" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"kxf" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/wood, -/area/fiorina/station/park) -"kxu" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"kxw" = ( -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"kxB" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"kxD" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) -"kxQ" = ( -/obj/structure/prop/resin_prop{ - icon_state = "rack" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"kyh" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"kyE" = ( -/turf/open/floor/prison/greenbluecorner, -/area/fiorina/station/botany) -"kyW" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"kyZ" = ( -/obj/item/clothing/under/CM_uniform, -/turf/open/floor/prison, -/area/fiorina/station/security) -"kze" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Residential Apartment" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"kzh" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"kzz" = ( -/obj/item/tool/shovel/etool, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"kzV" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"kAM" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/lz/near_lzI) -"kAO" = ( -/obj/item/folder/yellow, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"kAS" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"kAY" = ( -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"kBc" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"kBi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/powercell, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"kBE" = ( -/obj/item/toy/bikehorn/rubberducky, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"kBQ" = ( -/obj/item/device/flashlight/flare/on, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"kBX" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"kCo" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"kCI" = ( -/obj/item/weapon/baseballbat/metal, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"kCY" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"kDd" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"kDG" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) -"kEj" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"kEq" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/item/tool/crowbar/red, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/medbay) -"kEy" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"kEB" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"kEZ" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"kFH" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"kGe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"kGg" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/item/ammo_casing{ - dir = 6; - icon_state = "casing_5" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"kGx" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/darkyellow2/southeast, -/area/fiorina/station/flight_deck) -"kGz" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"kGM" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"kGO" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"kGZ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"kHa" = ( -/obj/item/storage/toolbox, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"kHc" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"kHo" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/item/tool/pickaxe, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"kHx" = ( -/obj/item/disk/botany, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"kHG" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"kHH" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"kIt" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"kIA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - pixel_y = 9 - }, -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"kID" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/fiorina/station/central_ring) -"kJf" = ( -/obj/item/tool/wrench, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"kJz" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/fuelcell_recycler, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"kJU" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"kKi" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"kKj" = ( -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"kKJ" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"kKQ" = ( -/obj/structure/platform/stair_cut/alt, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"kLE" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"kLG" = ( -/turf/open/floor/corsat/squares, -/area/fiorina/station/telecomm/lz1_cargo) -"kLP" = ( -/turf/open/floor/prison/darkyellow2/northwest, -/area/fiorina/lz/near_lzI) -"kMn" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/tumor/servers) -"kMq" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/civres_blue) -"kME" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"kMU" = ( -/obj/effect/spawner/gibspawner/robot, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/maintenance) -"kNk" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"kNB" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/bottle/holywater{ - desc = "A flask of the holy HEFA grenade oil."; - name = "Flask of HEFA Oil" - }, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"kNN" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/tumor/ship) -"kNY" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"kOm" = ( -/obj/effect/decal/cleanable/blood/writing{ - icon_state = "u_psycopath_l"; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/blood/writing{ - icon_state = "u_ketchup_l"; - pixel_x = 8; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/blood/writing{ - icon_state = "u_guilty_l"; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"kOw" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"kPj" = ( -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"kPt" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec) -"kPz" = ( -/obj/structure/lattice, -/turf/open/space, -/area/fiorina/oob) -"kPP" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"kPY" = ( -/turf/closed/wall/prison, -/area/fiorina/tumor/fiberbush) -"kQH" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gibarm_flesh" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"kQS" = ( -/obj/item/tool/kitchen/utensil/pspoon, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/power_ring) -"kRK" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"kRN" = ( -/obj/structure/machinery/defenses/tesla_coil/premade/smart{ - faction_group = list("CLF") - }, -/turf/open/floor/plating/plating_catwalk, -/area/fiorina/tumor/ship) -"kRT" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) -"kRV" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"kSg" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"kSh" = ( -/turf/closed/shuttle/elevator{ - dir = 9 - }, -/area/fiorina/station/telecomm/lz1_cargo) -"kSD" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/platform{ - dir = 8; - layer = 2.5 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) -"kSV" = ( -/turf/open/floor/prison/blue/northwest, -/area/fiorina/station/chapel) -"kTI" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/fiorina/maintenance) -"kTL" = ( -/obj/item/stack/rods, -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"kTR" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/corsat/plate, -/area/fiorina/station/telecomm/lz1_cargo) -"kUd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/emeraldgreen, -/obj/item/tool/lighter, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"kUj" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"kUB" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" - }, -/obj/item/stack/rods/plasteel, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"kVg" = ( -/obj/item/stack/cable_coil/blue, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"kVi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/plantspray/pests, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"kVk" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"kVw" = ( -/obj/structure/flora/grass/tallgrass/jungle, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"kVA" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"kVZ" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) -"kWf" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_tram) -"kWi" = ( -/obj/item/stock_parts/matter_bin/super, -/turf/open/floor/prison/darkpurple2/east, -/area/fiorina/tumor/servers) -"kWl" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"kWp" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/telecomm/lz1_tram) -"kWB" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/heavy, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/medbay) -"kWV" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"kXg" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"kXr" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) -"kXA" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"kXD" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"kXR" = ( -/obj/structure/machinery/light/small{ - dir = 4; - pixel_x = 11; - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/fiorina/tumor/ship) -"kYy" = ( -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/tumor/aux_engi) -"kYZ" = ( -/obj/structure/surface/table/woodentable, -/obj/item/cell/super/empty, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"kZg" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) -"kZy" = ( -/obj/item/clothing/mask/breath, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"kZD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"lag" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"lav" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"laC" = ( -/turf/open/floor/prison/yellowcorner, -/area/fiorina/station/lowsec) -"laH" = ( -/obj/structure/machinery/autolathe/full, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"laJ" = ( -/obj/structure/airlock_assembly, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"laT" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"lba" = ( -/turf/open/floor/prison/blue/northeast, -/area/fiorina/station/power_ring) -"lbk" = ( -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/central_ring) -"lbt" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 20 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"lbK" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"lbO" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ywflowers_2" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"lcf" = ( -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"lcq" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/space/basic, -/area/fiorina/oob) -"lct" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"lcN" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "casing_6" - }, -/obj/structure/barricade/metal{ - dir = 8; - health = 150; - icon_state = "metal_2" - }, -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"lcV" = ( -/obj/item/stack/sheet/cardboard, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"lde" = ( -/obj/structure/prop/resin_prop{ - icon_state = "coolanttank" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"ldl" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"ldm" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"ldn" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) -"lds" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/oob) -"ldR" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"led" = ( -/obj/item/frame/rack, -/obj/item/stack/medical/bruise_pack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"lex" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"leF" = ( -/obj/item/trash/cigbutt/ucigbutt, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"lfg" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"lfh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"lfi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/beer_pack{ - pixel_y = 7 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"lfk" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/darkbrowncorners2, -/area/fiorina/station/park) -"lfo" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"lfA" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"lfO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"lfR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"lfS" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells) -"lgf" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"lgu" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"lgC" = ( -/obj/item/paper/carbon, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"lgS" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/park) -"lhh" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" - }, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"lhj" = ( -/obj/item/device/whistle, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"lhu" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"lhJ" = ( -/obj/item/weapon/gun/flamer, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/ammo_magazine/flamer_tank, -/obj/item/ammo_magazine/flamer_tank, -/obj/item/storage/pouch/flamertank, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"lhK" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"lhS" = ( -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"lhX" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"lhY" = ( -/obj/structure/sign/prop3{ - desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." - }, -/turf/closed/wall/prison, -/area/fiorina/station/power_ring) -"lid" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) -"liA" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"liU" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"liZ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/lz/near_lzII) -"ljc" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"ljd" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"ljh" = ( -/obj/structure/prop/resin_prop{ - dir = 4; - icon_state = "chair"; - pixel_y = 6 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"ljq" = ( -/obj/structure/barricade/metal/wired{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/lz/near_lzI) -"ljy" = ( -/obj/item/tool/shovel/spade, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"ljV" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison, -/area/fiorina/station/security) -"lkb" = ( -/obj/item/tool/kitchen/knife, -/obj/structure/bed/roller, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"lke" = ( -/obj/item/reagent_container/food/drinks/bottle/rum, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"lku" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_rightengine" - }, -/area/fiorina/oob) -"lkQ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"lls" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry, -/turf/open/floor/wood, -/area/fiorina/station/park) -"llQ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/almayer_hull, -/area/fiorina/oob) -"lml" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/space/basic, -/area/fiorina/oob) -"lmn" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/medbay) -"lmo" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"lmz" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"lmY" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"lnq" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"lnr" = ( -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) -"lns" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"lny" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"lnD" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"lnK" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/telecomm/lz1_tram) -"lom" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 7 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"loG" = ( -/obj/item/explosive/grenade/incendiary/molotov, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"lpl" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan27" - }, -/area/fiorina/lz/near_lzI) -"lpr" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"lpM" = ( -/obj/item/stack/rods, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - dir = 4 - }, -/turf/open/floor/prison/platingdmg3, -/area/fiorina/station/security) -"lpS" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"lqa" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) -"lqq" = ( -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"lqO" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"lqQ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/stool, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"lqV" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"lrx" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"lrA" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"lrE" = ( -/obj/structure/bed, -/obj/item/bedsheet/rd, -/obj/item/toy/katana, -/turf/open/floor/almayer, -/area/fiorina/tumor/ship) -"lse" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"lsn" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"lsO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/mineral/plastic/small_stack, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"lti" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"ltu" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"ltO" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/lz/near_lzI) -"lvg" = ( -/obj/item/trash/candle, -/turf/open/floor/prison/chapel_carpet, -/area/fiorina/maintenance) -"lvi" = ( -/obj/structure/sign/poster{ - icon_state = "poster6"; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"lvj" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"lvt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/streamer{ - dir = 9 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"lvy" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_rightengine" - }, -/area/fiorina/tumor/aux_engi) -"lvA" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/security) -"lvT" = ( -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/maintenance) -"lvU" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"lwd" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/medbay) -"lwi" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"lwj" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/item/tool/soap/weyland_yutani, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"lwn" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"lwt" = ( -/obj/item/stool, -/obj/item/reagent_container/food/drinks/bottle/bluecuracao{ - pixel_x = 15; - pixel_y = 25 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"lwF" = ( -/obj/item/trash/cigbutt/ucigbutt, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"lxh" = ( -/obj/structure/barricade/wooden, -/obj/item/device/flashlight/flare, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"lxH" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/oob) -"lxM" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkbrown2/southeast, -/area/fiorina/maintenance) -"lyd" = ( -/turf/open/floor/prison/green/northeast, -/area/fiorina/station/transit_hub) -"lyf" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; - icon_state = "fullgrass_2"; - name = "Fiberbush(tm) tubers" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"lyi" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/clothing/accessory/storage/holster, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"lyk" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"lyu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/tracker, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco) -"lyI" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"lyJ" = ( -/obj/item/tool/crowbar, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"lyN" = ( -/obj/item/pamphlet/skill/powerloader, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"lyY" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"lza" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"lzm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"lzq" = ( -/obj/item/tool/wet_sign, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = -1 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"lzr" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"lzt" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"lzJ" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"lAb" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"lAh" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/tumor/ice_lab) -"lAC" = ( -/obj/structure/window, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"lAV" = ( -/obj/structure/bed/stool, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"lAY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/northright, -/turf/open/floor/plating/prison, -/area/fiorina/station/security/wardens) -"lBb" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"lBh" = ( -/obj/structure/barricade/sandbags{ - dir = 4; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"lBY" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"lCk" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"lCp" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"lCL" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"lCR" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"lCS" = ( -/obj/item/bedsheet, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"lDc" = ( -/turf/open/floor/prison/darkpurple2/northeast, -/area/fiorina/tumor/ice_lab) -"lDl" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 4 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"lDo" = ( -/obj/item/storage/fancy/cigar, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"lDv" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"lDB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"lDC" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/space/basic, -/area/fiorina/oob) -"lDG" = ( -/obj/structure/machinery/computer/drone_control, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"lEk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb" - }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"lEp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer_hull, -/area/fiorina/station/medbay) -"lEy" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"lEA" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"lFc" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/security/liaison, -/turf/open/floor/wood, -/area/fiorina/station/park) -"lFv" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"lFO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/tomatosoup, -/turf/open/floor/prison/blue, -/area/fiorina/station/power_ring) -"lFQ" = ( -/obj/structure/machinery/m56d_hmg/mg_turret/dropship, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) -"lGc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"lGG" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 10 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"lGR" = ( -/obj/structure/machinery/computer3/server/rack, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"lGS" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"lHx" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"lHE" = ( -/obj/item/explosive/grenade/high_explosive/frag, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"lHG" = ( -/obj/item/ammo_box/magazine/misc/flares/empty, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"lHX" = ( -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) -"lIi" = ( -/turf/open/floor/prison/green/northwest, -/area/fiorina/tumor/servers) -"lIu" = ( -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"lIv" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan5" - }, -/area/fiorina/lz/near_lzI) -"lIG" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/research_cells) -"lIJ" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"lIL" = ( -/obj/item/device/flashlight/flare, -/turf/open/floor/prison/darkyellowcorners2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"lJt" = ( -/obj/structure/filingcabinet/disk, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"lJx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"lJH" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"lJW" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"lKr" = ( -/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ - layer = 2.6 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"lKI" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"lKM" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"lLe" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"lLw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"lLE" = ( -/obj/item/bedsheet/blue, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"lLG" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"lLK" = ( -/obj/item/stack/cable_coil/orange, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"lLQ" = ( -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"lMd" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"lMh" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"lMi" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"lNP" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"lNR" = ( -/obj/item/trash/cigbutt/ucigbutt, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"lOp" = ( -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"lOF" = ( -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec) -"lOH" = ( -/turf/open/floor/prison/greencorner/west, -/area/fiorina/tumor/civres) -"lPr" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/lz/near_lzII) -"lPA" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"lQd" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"lQG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/imidazoline, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"lQM" = ( -/obj/item/toy/bikehorn, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"lQO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"lRs" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"lRy" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"lRT" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/lz/near_lzI) -"lRX" = ( -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"lSb" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"lSj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ - dir = 2; - icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"lSS" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"lTA" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"lTH" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) -"lTM" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"lTW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"lUb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/uscm_mre, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"lUc" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"lUi" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan23" - }, -/area/fiorina/tumor/ship) -"lUs" = ( -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "Straight" - }, -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "Straight" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells) -"lUv" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"lUE" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/fiorina/tumor/ship) -"lVd" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/telecomm/lz1_cargo) -"lWi" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"lWj" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"lWC" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"lWD" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/tool/shovel/spade, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"lWS" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/lz/near_lzI) -"lXs" = ( -/obj/item/book/manual/marine_law, -/obj/item/book/manual/marine_law{ - pixel_y = 3 - }, -/obj/item/book/manual/marine_law{ - pixel_x = -1; - pixel_y = 6 - }, -/turf/open/floor/prison/chapel_carpet, -/area/fiorina/maintenance) -"lXH" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"lXO" = ( -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "Corner" - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform{ - dir = 1; - layer = 2.1 - }, -/turf/open/ice/noweed, -/area/fiorina/tumor/ice_lab) -"lXQ" = ( -/obj/item/reagent_container/food/drinks/coffee{ - name = "\improper paper cup" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"lXT" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/tumor/aux_engi) -"lYg" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"lYL" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"lYO" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/fiorina/station/power_ring) -"lZf" = ( -/turf/closed/shuttle/elevator{ - dir = 10 - }, -/area/fiorina/tumor/aux_engi) -"lZh" = ( -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/flight_deck) -"lZn" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"lZs" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 2; - layer = 6; - name = "overhead pipe"; - pixel_x = -16; - pixel_y = 12 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"lZA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ - icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"lZD" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"lZW" = ( -/obj/structure/holohoop{ - dir = 8; - id = "basketball"; - side = "right" - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"lZZ" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"maa" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/whitegreencorner, -/area/fiorina/station/medbay) -"mar" = ( -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/aux_engi) -"mbg" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/medbay) -"mbp" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"mbC" = ( -/obj/item/clipboard, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"mbL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/handcuffs{ - pixel_x = 6; - pixel_y = 1 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = -7; - pixel_y = 1 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = -2; - pixel_y = 11 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"mbM" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"mcb" = ( -/obj/item/trash/candle, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) -"mcr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stock_parts/matter_bin/super, -/turf/open/floor/wood, -/area/fiorina/station/park) -"mcO" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"mdd" = ( -/obj/item/storage/toolbox/electrical, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"mdj" = ( -/turf/open/floor/prison/darkbrown2, -/area/fiorina/tumor/aux_engi) -"mdJ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/space, -/area/fiorina/oob) -"mdV" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) -"mei" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"meP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box{ - pixel_y = 9 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"mfe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/twohanded/sledgehammer{ - throwforce = 45 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"mfk" = ( -/obj/structure/surface/table/reinforced/prison{ - flipped = 1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"mfy" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/chapel) -"mfR" = ( -/obj/structure/bed{ - icon_state = "psychbed" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"mfZ" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/power_ring) -"mga" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" - }, -/obj/item/bedsheet/ce{ - desc = "It crinkles, aggressively."; - name = "sterile wax sheet" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/medbay) -"mgB" = ( -/obj/item/stack/cable_coil/blue, -/turf/open/floor/prison/whitegreencorner, -/area/fiorina/tumor/ice_lab) -"mhj" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/tumor/ice_lab) -"mho" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"mhM" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"mhR" = ( -/obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/auto_turf/sand/layer1, -/area/fiorina/station/flight_deck) -"mit" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_x = -2; - pixel_y = 7 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"miC" = ( -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/research_cells) -"miD" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"miN" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"miU" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"mja" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/redcorner/west, -/area/fiorina/station/power_ring) -"mjt" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"mjx" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/tumor/servers) -"mjI" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"mjX" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"mki" = ( -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/central_ring) -"mko" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper, -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/tumor/servers) -"mku" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"mkG" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"mkI" = ( -/obj/structure/machinery/microwave{ - desc = "So uh yeah, about that cat..."; - icon_state = "mwbloodyo"; - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"mkM" = ( -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"mlc" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/lz/near_lzI) -"mlh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/power_ring) -"mlB" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"mlC" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"mlK" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/tumor/ice_lab) -"mlL" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) -"mmp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stock_parts/matter_bin/adv{ - pixel_x = -7; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"mmq" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/civres_blue) -"mmy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"mmY" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/flight_deck) -"mmZ" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"mnd" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/ice_lab) -"mne" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) -"mnr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison, -/area/fiorina/tumor/fiberbush) -"mny" = ( -/turf/closed/wall/prison, -/area/fiorina/station/flight_deck) -"mou" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_tram) -"moB" = ( -/obj/item/tool/weldpack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"moW" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"mpb" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison, -/area/fiorina/station/park) -"mpf" = ( -/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ - layer = 2.6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/lz/near_lzII) -"mpB" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/turf/open/space/basic, -/area/fiorina/oob) -"mpJ" = ( -/turf/open/floor/prison/green, -/area/fiorina/station/transit_hub) -"mpQ" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"mpY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/barricade/handrail/type_b{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"mqo" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"mqH" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"mqJ" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"mrk" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"mrB" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/fiorina/station/lowsec) -"mrD" = ( -/obj/structure/machinery/power/apc/power/west, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"mrG" = ( -/obj/structure/extinguisher_cabinet, -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"mrI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med, -/turf/closed/wall/prison, -/area/fiorina/station/medbay) -"mrP" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/green/west, -/area/fiorina/tumor/civres) -"mrQ" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/damaged3, -/area/fiorina/station/security) -"mrW" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"mrX" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"mrY" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/lowsec) -"msj" = ( -/obj/item/toy/crayon/orange, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"msk" = ( -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"msu" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"msP" = ( -/obj/item/trash/c_tube, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"mtf" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"mtj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"mts" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"mtE" = ( -/obj/structure/platform_decoration, -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"mtF" = ( -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/transit_hub) -"mtO" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"mtS" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) -"mui" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"muy" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/power_ring) -"muC" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"muW" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"mvj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - desc = "So uh yeah, about that cat..."; - icon_state = "mwbloodyo"; - pixel_y = 6 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"mvl" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"mvx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - pixel_y = 5 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"mvF" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - indestructible = 1; - name = "launch bay door" - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"mwb" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/tumor/ice_lab) -"mwp" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"mxc" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"mxk" = ( -/obj/item/trash/tray, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/power_ring) -"mxn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/aspen, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"mxq" = ( -/obj/item/stool, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"mxy" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"mxL" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"mxQ" = ( -/turf/closed/wall/prison, -/area/fiorina/station/power_ring) -"mxR" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"mxW" = ( -/obj/item/reagent_container/food/snacks/xenoburger, -/obj/item/reagent_container/food/snacks/xenoburger, -/obj/item/reagent_container/food/snacks/xenoburger, -/obj/structure/closet/crate/freezer, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"myf" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"myj" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"myV" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"mzd" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"mzk" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"mzI" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 - }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"mzJ" = ( -/obj/item/tool/lighter/random{ - pixel_x = 14; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"mzO" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"mzP" = ( -/obj/structure/dropship_equipment/mg_holder, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"mzS" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1; - name = "\improper ambulance pod hatch" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"mzT" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_1"; - opacity = 0 - }, -/area/fiorina/oob) -"mAv" = ( -/obj/item/explosive/grenade/high_explosive/m15{ - pixel_x = -9; - pixel_y = -8 - }, -/obj/item/explosive/grenade/high_explosive/frag{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/tumor/servers) -"mAX" = ( -/obj/effect/decal/cleanable/blood{ - desc = "Watch your step."; - icon_state = "gib6" - }, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"mBu" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"mBB" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/tumor/servers) -"mCc" = ( -/obj/item/ammo_casing{ - icon_state = "casing_1" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"mCA" = ( -/obj/structure/prop/resin_prop, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"mCE" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"mCF" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/prison, -/area/fiorina/station/lowsec) -"mCH" = ( -/obj/item/newspaper, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"mDz" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"mDM" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"mDX" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/civres_blue) -"mEi" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"mEs" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"mEA" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"mEJ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/prison, -/area/fiorina/station/security) -"mEO" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"mFI" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"mGe" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/station/flight_deck) -"mGr" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"mGB" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"mGN" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/prop/almayer/handheld1, -/obj/structure/surface/rack, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"mGZ" = ( -/obj/item/trash/eat, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/machinery/blackbox_recorder, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"mHj" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"mHq" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"mHC" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/maintenance) -"mHI" = ( -/obj/item/clothing/mask/cigarette, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"mHR" = ( -/obj/structure/sign/prop3{ - desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." - }, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/tumor/aux_engi) -"mIf" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"mIg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/spacecash/c10, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"mIu" = ( -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"mJa" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/flight_deck) -"mJe" = ( -/turf/open/floor/prison/darkpurple2/northwest, -/area/fiorina/tumor/ice_lab) -"mJk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/aspen{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/reagent_container/food/drinks/cans/aspen{ - pixel_x = -3 - }, -/obj/item/coin/silver{ - pixel_x = 8; - pixel_y = -4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"mJq" = ( -/obj/item/trash/kepler, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"mJt" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/blue_plate/west, -/area/fiorina/station/botany) -"mKS" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/turf/open/space, -/area/fiorina/oob) -"mKU" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomright" - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_y = 13 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"mLA" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"mLP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/smartfridge/drinks{ - pixel_y = 10 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"mMM" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/medbay) -"mMO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/cable_coil/orange, -/turf/open/floor/prison/floor_plate, -/area/fiorina/maintenance) -"mMQ" = ( -/obj/structure/prop/resin_prop{ - icon_state = "sheater0" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"mNc" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison, -/area/fiorina/station/security) -"mNh" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"mNt" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"mNw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/disco) -"mNB" = ( -/obj/effect/decal/hefa_cult_decals/d32, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"mNT" = ( -/obj/structure/machinery/vending/walkman, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"mOH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"mOX" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/fiorina/station/security) -"mPg" = ( -/obj/item/trash/boonie, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"mPj" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibmid3" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"mPW" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"mQz" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/blue/northwest, -/area/fiorina/station/power_ring) -"mQB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"mQV" = ( -/obj/item/tool/stamp, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"mRh" = ( -/obj/structure/tunnel, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"mRM" = ( -/obj/structure/monorail{ - dir = 5; - name = "launch track" - }, -/turf/open/space, -/area/fiorina/oob) -"mSj" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/oob) -"mSk" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"mSu" = ( -/obj/structure/bed/chair{ - dir = 4; - layer = 2.8 - }, -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"mSP" = ( -/obj/effect/landmark/railgun_camera_pos, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"mSW" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" - }, -/obj/structure/bed/roller, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"mSX" = ( -/obj/item/stool{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/structure/sign/poster{ - icon_state = "poster1"; - pixel_y = 32 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"mTa" = ( -/obj/structure/ice/thin/indestructible{ - dir = 8; - icon_state = "End" - }, -/obj/structure/ice/thin/indestructible{ - dir = 8; - icon_state = "End" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells) -"mTs" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"mTM" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"mTX" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"mTY" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" - }, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) -"mUA" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"mUC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/pistol/heavy{ - pixel_y = 7 - }, -/obj/item/ammo_magazine/pistol/heavy{ - pixel_y = 12 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"mUU" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"mVa" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"mVI" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"mVM" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"mVO" = ( -/obj/item/tool/extinguisher, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"mWz" = ( -/obj/item/stack/cable_coil/random, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"mWY" = ( -/obj/item/coin/uranium{ - anchored = 1; - desc = "You found one of the three uranium coins. It is entirely worthless. Might want to take a picture with it as proof."; - pixel_y = 28 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"mXb" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"mXk" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-4" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"mXI" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"mZi" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) -"mZo" = ( -/obj/item/tool/shovel, -/turf/open/auto_turf/sand/layer1, -/area/fiorina/tumor/civres) -"nac" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"naf" = ( -/turf/closed/shuttle/ert, -/area/fiorina/oob) -"nap" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"naE" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"naW" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/tumor/civres) -"nbb" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"nbf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 7 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"nbA" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"nbE" = ( -/obj/item/device/flashlight/flare/on, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/tumor/ice_lab) -"nbM" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"ncj" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"nco" = ( -/obj/structure/barricade/plasteel{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/fiorina/tumor/ship) -"ncW" = ( -/obj/item/clothing/under/color/orange, -/obj/item/clothing/under/color/orange, -/obj/item/clothing/under/color/orange, -/obj/structure/surface/rack, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec) -"ndf" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"ndl" = ( -/obj/item/storage/box/cups, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"ndq" = ( -/obj/item/clothing/under/shorts/green, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/central_ring) -"ndz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/power_ring) -"ndX" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"ndZ" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/medbay) -"neE" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/prison, -/area/fiorina/station/security) -"neT" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"nfA" = ( -/obj/structure/platform, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"nfF" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"nfZ" = ( -/obj/structure/closet/firecloset, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"nga" = ( -/turf/closed/wall/strata_ice/jungle{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - name = "synthetic vegetation" - }, -/area/fiorina/station/civres_blue) -"ngm" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"ngr" = ( -/turf/open/floor/prison/darkpurple2/southwest, -/area/fiorina/tumor/servers) -"nhg" = ( -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"nho" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"nhY" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/prison, -/area/fiorina/station/flight_deck) -"nib" = ( -/obj/structure/sign/safety/fire_haz, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"nie" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "repairpanelslz" - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"nip" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"niq" = ( -/obj/item/device/flashlight/on, -/turf/open/floor/prison/darkbrowncorners2/north, -/area/fiorina/tumor/aux_engi) -"niD" = ( -/turf/open/floor/prison/blue/east, -/area/fiorina/station/chapel) -"niG" = ( -/obj/structure/machinery/portable_atmospherics/canister/phoron, -/turf/open/floor/corsat/plate, -/area/fiorina/station/telecomm/lz1_cargo) -"njw" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" - }, -/obj/item/bedsheet/ce{ - desc = "It crinkles, aggressively."; - name = "sterile wax sheet" - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/medbay) -"njK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"njM" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/blue/north, -/area/fiorina/station/chapel) -"nky" = ( -/obj/structure/girder, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"nkB" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"nkP" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"nkR" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"nkT" = ( -/turf/open/floor/prison/green/north, -/area/fiorina/station/transit_hub) -"nlg" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0" - }, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) -"nlN" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"nlU" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"nlW" = ( -/obj/item/newspaper, -/turf/open/floor/prison/red/east, -/area/fiorina/lz/near_lzII) -"nmn" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"nmT" = ( -/obj/item/toy/crayon/blue, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"nnr" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"nnG" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"nnI" = ( -/obj/structure/machinery/reagentgrinder/industrial{ - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"nnR" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"noa" = ( -/obj/structure/largecrate/supply/supplies/plasteel, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"nod" = ( -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/chapel) -"noy" = ( -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"noz" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"noO" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"npg" = ( -/obj/item/ammo_casing{ - icon_state = "casing_1" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"nqx" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/station/medbay) -"nqy" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/spawner/random/gun/pistol, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"nqz" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"nqE" = ( -/turf/open/floor/prison/green/west, -/area/fiorina/tumor/civres) -"nqN" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/security) -"nqT" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"nqY" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"nre" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"nrj" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 5 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"nrr" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"nrx" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"nrH" = ( -/obj/structure/machinery/light/small{ - dir = 4; - pixel_x = 11; - pixel_y = 10 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"nrM" = ( -/obj/effect/landmark{ - icon_state = "hive_spawn"; - name = "xeno_hive_spawn" - }, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison/whitegreencorner/north, -/area/fiorina/tumor/ice_lab) -"nrO" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) -"nrS" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"nss" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/research_cells) -"nsL" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"nsX" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/servers) -"ntv" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"ntH" = ( -/obj/structure/ice/thin/indestructible{ - dir = 8; - icon_state = "Straight" - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform{ - dir = 1; - layer = 2.1 - }, -/turf/open/ice/noweed, -/area/fiorina/tumor/ice_lab) -"ntV" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"ntZ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"nuw" = ( -/obj/structure/prop/structure_lattice{ - health = 300 - }, -/obj/structure/prop/structure_lattice{ - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"nuG" = ( -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"nuX" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) -"nvh" = ( -/obj/item/trash/chips, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/servers) -"nvD" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/botany) -"nvK" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"nwY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"nxq" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"nxR" = ( -/obj/structure/closet/basketball, -/obj/item/storage/pill_bottle/tramadol/skillless, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"nys" = ( -/obj/item/ammo_casing{ - dir = 6; - icon_state = "casing_10_1" - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"nyO" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"nyS" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/item/tool/extinguisher/mini, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"nyX" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/medbay) -"nze" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"nzi" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"nzF" = ( -/turf/open/floor/prison/platingdmg1, -/area/fiorina/tumor/civres) -"nzI" = ( -/obj/structure/largecrate/random, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"nzS" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"nzU" = ( -/obj/item/reagent_container/glass/bucket, -/obj/item/reagent_container/glass/bucket, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/chapel_carpet, -/area/fiorina/maintenance) -"nAf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/marine_law{ - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"nAu" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/floor_marked/west, -/area/fiorina/station/lowsec) -"nAC" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"nBe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"nBt" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "4" - }, -/obj/item/weapon/gun/shotgun/pump{ - starting_attachment_types = list(/obj/item/attachable/stock/shotgun) - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"nBL" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) -"nCh" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"nCt" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "2" - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"nCx" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"nCA" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"nDg" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) -"nDp" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"nDr" = ( -/obj/structure/machinery/door/airlock/almayer/maint/autoname{ - name = "\improper Null Hatch REPLACE ME"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"nDK" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/card/id/visa, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"nEI" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison, -/area/fiorina/station/security) -"nEM" = ( -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"nEP" = ( -/obj/structure/closet, -/obj/item/reagent_container/spray/cleaner, -/obj/item/stack/sheet/plasteel/small_stack, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"nFa" = ( -/turf/open/floor/prison/damaged2, -/area/fiorina/station/central_ring) -"nFc" = ( -/obj/item/ammo_casing{ - icon_state = "cartridge_1" - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"nFB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/gift, -/turf/open/floor/wood, -/area/fiorina/station/park) -"nFJ" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"nFL" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec) -"nFQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"nFU" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/central_ring) -"nFY" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"nGp" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"nGy" = ( -/obj/item/newspaper, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"nGZ" = ( -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"nHi" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"nHu" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"nHD" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/telecomm/lz1_tram) -"nHO" = ( -/turf/open/floor/prison/blue, -/area/fiorina/station/civres_blue) -"nHZ" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy_rightengine" - }, -/area/fiorina/station/medbay) -"nIc" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 20 - }, -/turf/closed/wall/prison, -/area/fiorina/tumor/civres) -"nId" = ( -/obj/structure/ice/thin/indestructible{ - icon_state = "Straight" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/tumor/ice_lab) -"nIi" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"nIB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"nIS" = ( -/turf/open/floor/prison/green/northwest, -/area/fiorina/station/chapel) -"nIW" = ( -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"nJs" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"nJu" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"nJQ" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"nJY" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"nKl" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/gm/river/desert/deep, -/area/fiorina/lz/near_lzII) -"nKr" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"nKI" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/yellow, -/area/fiorina/station/disco) -"nKM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"nKX" = ( -/obj/structure/barricade/metal{ - dir = 8; - health = 250; - icon_state = "metal_1" - }, -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"nLm" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/blue_plate/west, -/area/fiorina/station/botany) -"nLr" = ( -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"nLv" = ( -/obj/item/tool/shovel/etool, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"nLA" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"nLV" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan27" - }, -/area/fiorina/tumor/aux_engi) -"nMn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/gun/pistol/lowchance, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"nMI" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/ice_lab) -"nMZ" = ( -/obj/structure/ice/thin/indestructible, -/obj/structure/prop/invuln{ - desc = "Its eyes follow you around through the ice."; - dir = 4; - icon = 'icons/mob/xenos/queen.dmi'; - icon_state = "Normal Queen Knocked Down"; - layer = 2.5; - name = "frozen creature"; - pixel_x = -15; - pixel_y = -16 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/tumor/ice_lab) -"nNu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_y = 7 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"nNJ" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"nNU" = ( -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"nNZ" = ( -/obj/structure/machinery/space_heater, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"nOe" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"nOk" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"nOw" = ( -/obj/structure/ice/thin/indestructible{ - dir = 1; - icon_state = "Straight" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/tumor/ice_lab) -"nOy" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"nOz" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 - }, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"nOD" = ( -/obj/structure/closet/firecloset, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkbrown2/northwest, -/area/fiorina/maintenance) -"nON" = ( -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/structure/surface/rack, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"nPj" = ( -/obj/item/clothing/glasses/gglasses, -/turf/open/space, -/area/fiorina/oob) -"nPm" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/security) -"nPx" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"nQi" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"nQq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, -/turf/closed/wall/prison, -/area/fiorina/station/medbay) -"nQF" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"nQK" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"nQN" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"nQS" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"nRt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper, -/obj/item/attachable/bipod, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) -"nRS" = ( -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"nSh" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"nSv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 - }, -/obj/item/reagent_container/food/snacks/cheesyfries, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/flight_deck) -"nSx" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/disco) -"nSJ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"nSU" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"nTq" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan5" - }, -/area/fiorina/tumor/ship) -"nTu" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/oob) -"nTx" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"nUb" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"nUd" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/green/southwest, -/area/fiorina/station/chapel) -"nUe" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - req_one_access = null - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"nUf" = ( -/obj/item/trash/hotdog, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"nUn" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/lowsec) -"nUp" = ( -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"nUr" = ( -/obj/structure/ice/thin/indestructible, -/obj/structure/prop/invuln{ - desc = "It is slimy."; - dir = 4; - icon = 'icons/mob/xenos/sentinel.dmi'; - icon_state = "Normal Sentinel Knocked Down"; - layer = 2.5; - name = "frozen creature"; - pixel_x = -22; - pixel_y = 8 - }, -/obj/structure/prop/invuln{ - desc = "He knows something that you don't."; - dir = 4; - icon = 'icons/mob/xenos/larva.dmi'; - icon_state = "Larva Sleeping"; - layer = 2.5; - name = "frozen creature"; - pixel_x = 8; - pixel_y = -18 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/tumor/ice_lab) -"nUu" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" - }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"nUB" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/tumor/ice_lab) -"nUE" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_tram) -"nUJ" = ( -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"nUO" = ( -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/lowsec) -"nVD" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"nVE" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"nWh" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"nWv" = ( -/obj/item/reagent_container/food/drinks/coffee{ - name = "\improper paper cup" - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"nWx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"nWC" = ( -/obj/item/clothing/shoes/yellow, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"nWL" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"nWT" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"nXc" = ( -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"nXj" = ( -/obj/structure/curtain/black, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"nXu" = ( -/obj/item/storage/backpack/satchel/lockable, -/turf/open/floor/prison, -/area/fiorina/station/security) -"nXE" = ( -/obj/item/ammo_casing{ - icon_state = "casing_6_1" - }, -/obj/item/weapon/gun/smg/mp5, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"nXH" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/power_ring) -"nXX" = ( -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/prison, -/area/fiorina/station/security) -"nYi" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"nYo" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"nYT" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/turf/open/space/basic, -/area/fiorina/oob) -"nZa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/baton, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -6; - pixel_y = 12 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"nZb" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"nZp" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"nZQ" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"oat" = ( -/obj/structure/machinery/processor, -/turf/open/floor/prison/blue_plate/west, -/area/fiorina/station/botany) -"obh" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/prison, -/area/fiorina/station/security) -"obz" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"obI" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "engineeroffice" - }, -/turf/closed/wall/prison, -/area/fiorina/tumor/civres) -"occ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/lime{ - anchored = 1 - }, -/obj/item/reagent_container/food/drinks/cans/souto/lime{ - pixel_x = -8 - }, -/obj/item/reagent_container/food/drinks/cans/souto/lime{ - pixel_x = 8 - }, -/obj/item/reagent_container/food/drinks/cans/souto/lime{ - layer = 4.1; - pixel_x = -4; - pixel_y = 18 - }, -/obj/item/reagent_container/food/drinks/cans/souto/lime{ - layer = 4.1; - pixel_x = 4; - pixel_y = 18 - }, -/obj/item/reagent_container/food/drinks/cans/souto/lime{ - layer = 4.2; - pixel_y = 36 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"ocl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/skills{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"ocp" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"ocz" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_tram) -"ode" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"odm" = ( -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"odL" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/obj/item/device/flashlight/flare, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"odQ" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"oeY" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"ofq" = ( -/turf/closed/shuttle/elevator{ - dir = 10 - }, -/area/fiorina/station/telecomm/lz1_cargo) -"ofw" = ( -/obj/structure/machinery/newscaster, -/turf/closed/wall/prison, -/area/fiorina/station/transit_hub) -"ofx" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"ofA" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"ogf" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/space, -/area/fiorina/oob) -"ogl" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells) -"ogw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"ogB" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/type_b, -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"ogC" = ( -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"ogJ" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"ogK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/security_space_law{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"ogM" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"ohe" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"ohF" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/tumor/ice_lab) -"ohY" = ( -/obj/item/circuitboard/machine/pacman/super, -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"oil" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"oiL" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"ojk" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"ojq" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"ojv" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"ojK" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) -"ojO" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"okg" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/lz/near_lzII) -"oks" = ( -/obj/structure/closet/firecloset/full, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"okv" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"okA" = ( -/obj/item/reagent_container/blood, -/turf/open/floor/prison/greenbluecorner/east, -/area/fiorina/station/botany) -"okE" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"okF" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/ice/thin/indestructible, -/obj/structure/prop/invuln{ - desc = "The underside softly pulses."; - dir = 4; - icon = 'icons/mob/xenos/xenonid_crab.dmi'; - icon_state = "facehugger_thrown"; - layer = 2.5; - name = "frozen creature"; - pixel_x = -22; - pixel_y = -10 - }, -/obj/structure/prop/invuln{ - desc = "The underside softly pulses."; - dir = 4; - icon = 'icons/mob/xenos/xenonid_crab.dmi'; - icon_state = "facehugger_thrown"; - layer = 2.5; - name = "frozen creature"; - pixel_x = 22; - pixel_y = 8 - }, -/obj/structure/prop/invuln{ - desc = "The underside softly pulses."; - dir = 4; - icon = 'icons/mob/xenos/xenonid_crab.dmi'; - icon_state = "facehugger_thrown"; - layer = 2.5; - name = "frozen creature"; - pixel_x = -22; - pixel_y = 8 - }, -/obj/structure/prop/invuln{ - desc = "The underside softly pulses."; - dir = 4; - icon = 'icons/mob/xenos/xenonid_crab.dmi'; - icon_state = "facehugger_thrown"; - layer = 2.5; - name = "frozen creature"; - pixel_x = 22; - pixel_y = -10 - }, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells) -"okH" = ( -/obj/item/reagent_container/food/drinks/bottle/tomatojuice, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"okK" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/stool{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"okT" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"olg" = ( -/obj/structure/closet/crate/delta{ - desc = "A crate with delta squad's symbol on it. Now how did that get here? The words 'HEFA was never real' are scrawled on it in black ink."; - name = "crate" - }, -/obj/item/ammo_box/magazine/shotgun/buckshot, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"olk" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"oly" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"olS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/aspen, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) -"omb" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/carpet, -/area/fiorina/station/security/wardens) -"omh" = ( -/obj/structure/cargo_container/grant/left{ - desc = "A huge industrial shipping container. This one is in space." - }, -/turf/open/space, -/area/fiorina/oob) -"omA" = ( -/obj/item/storage/briefcase, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"omD" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"omI" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"ooc" = ( -/obj/structure/closet/basketball, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"oom" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/tumor/aux_engi) -"oou" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/head/cmcap{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/clothing/glasses/mbcg{ - pixel_y = -14 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"ooO" = ( -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"ope" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/prison/red/west, -/area/fiorina/station/security) -"opC" = ( -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/tumor/aux_engi) -"opZ" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"oqz" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"oqD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) -"orh" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/tumor/aux_engi) -"orj" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/blue/northwest, -/area/fiorina/station/civres_blue) -"orq" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/ice_lab) -"orA" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ppflowers_2" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"orP" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"orV" = ( -/obj/item/tool/weldingtool, -/turf/open/auto_turf/sand/layer1, -/area/fiorina/tumor/civres) -"osD" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"osF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"osN" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"osV" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"osX" = ( -/obj/structure/cable/heavyduty{ - icon_state = "0-4" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"ott" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco) -"otC" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/security/wardens) -"otR" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"oue" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"ouw" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"ouH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/fiorina/tumor/ship) -"ouS" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) -"ove" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"ovr" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"ovw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/handcard/aceofspades, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"ovJ" = ( -/turf/open/floor/wood, -/area/fiorina/station/medbay) -"owd" = ( -/obj/item/storage/backpack/souto, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"owW" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"oxa" = ( -/obj/structure/machinery/door/poddoor/almayer{ - density = 0; - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"oxc" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/station/park) -"oxA" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan22" - }, -/area/fiorina/tumor/ship) -"oxG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/phone{ - pixel_x = 6; - pixel_y = -15 - }, -/obj/item/phone{ - pixel_y = 7 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"oyd" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"oyi" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) -"oyk" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"oym" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison/bright_clean_marked/southwest, -/area/fiorina/station/medbay) -"oyB" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"oyC" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/wood, -/area/fiorina/station/park) -"oyD" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"oyJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"oyN" = ( -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"oyS" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"oyX" = ( -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/station/telecomm/lz1_tram) -"ozd" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"ozh" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - indestructible = 1; - name = "launch bay door" - }, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/oob) -"ozC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"ozG" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"ozQ" = ( -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/maintenance) -"oAh" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/lz/near_lzI) -"oAv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"oAF" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/station/medbay) -"oAJ" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"oAR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"oBb" = ( -/obj/structure/machinery/computer/cameras{ - network = list("omega") - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"oBc" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec) -"oBj" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"oBv" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"oBx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - pixel_y = 11 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"oBC" = ( -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "Corner" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells) -"oCe" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/park) -"oCz" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/lowsec) -"oCF" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/transit_hub) -"oDe" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"oDh" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"oDx" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"oDX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"oEe" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"oED" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"oEG" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"oEH" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"oEK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer{ - icon_state = "security_det"; - name = "Shuttle control deck"; - pixel_y = 6 - }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"oEN" = ( -/obj/item/prop/almayer/comp_closed{ - pixel_x = -1 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"oFI" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"oGr" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"oGu" = ( -/obj/structure/foamed_metal, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"oGG" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) -"oGJ" = ( -/obj/item/ammo_casing{ - icon_state = "casing_8" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"oGL" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - layer = 3.5 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"oGU" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"oGV" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"oHe" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/nailgun, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"oHf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 - }, -/obj/item/reagent_container/food/snacks/doughslice, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/flight_deck) -"oHi" = ( -/obj/item/stool, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"oHo" = ( -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/power_ring) -"oHt" = ( -/obj/structure/closet/bombcloset, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"oHU" = ( -/turf/open/floor/prison/whitegreencorner/north, -/area/fiorina/station/medbay) -"oHX" = ( -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "Straight" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/tumor/ice_lab) -"oIj" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) -"oIq" = ( -/obj/structure/ice/thin/indestructible{ - dir = 1; - icon_state = "Corner" - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform{ - dir = 1; - layer = 2.1 - }, -/turf/open/ice/noweed, -/area/fiorina/tumor/ice_lab) -"oIG" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"oJf" = ( -/obj/item/stool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"oJm" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"oJs" = ( -/obj/item/reagent_container/food/snacks/meat, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"oJt" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/power_ring) -"oJL" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller{ - pixel_x = 3; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/fiorina/tumor/ship) -"oKf" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"oKq" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"oKP" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/blue_plate, -/area/fiorina/station/botany) -"oLs" = ( -/turf/open/floor/prison/red/west, -/area/fiorina/lz/near_lzII) -"oLV" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"oMb" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"oMu" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison, -/area/fiorina/station/park) -"oNa" = ( -/obj/structure/platform_decoration, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"oNv" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/fiorina/tumor/ice_lab) -"oNX" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"oOp" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"oOv" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"oOz" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/gm/river/darkred_pool, -/area/fiorina/station/park) -"oOF" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"oOL" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/station/park) -"oOV" = ( -/obj/structure/machinery/filtration/console{ - pixel_y = 22 - }, -/turf/open/floor/almayer, -/area/fiorina/tumor/ship) -"oPk" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"oPN" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"oPU" = ( -/turf/open/floor/prison, -/area/fiorina/station/park) -"oPZ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/park) -"oQI" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"oRy" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"oRA" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"oRG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"oRR" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/wood, -/area/fiorina/station/park) -"oSq" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"oTr" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"oTS" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"oTT" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"oUa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box{ - pixel_y = 6 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"oUb" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"oUg" = ( -/turf/closed/wall/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"oUE" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; - icon_state = "fullgrass_1"; - name = "Fiberbush(tm) tubers" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"oUP" = ( -/obj/structure/lattice, -/obj/effect/landmark/nightmare{ - insert_tag = "wardenofficedecorated" - }, -/turf/open/space, -/area/fiorina/oob) -"oVi" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"oVp" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"oWb" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"oWc" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"oWm" = ( -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/civres_blue) -"oWn" = ( -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"oWv" = ( -/turf/open/floor/prison/darkyellowcorners2, -/area/fiorina/station/telecomm/lz1_cargo) -"oWF" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"oWI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/weapon/gun/energy/taser, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"oWU" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 5 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"oXz" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/power_ring) -"oXP" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"oXR" = ( -/obj/structure/ice/thin/indestructible{ - dir = 8; - icon_state = "Corner" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/tumor/ice_lab) -"oXS" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"oXT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stock_parts/manipulator/nano, -/turf/open/floor/wood, -/area/fiorina/station/park) -"oYp" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"oYs" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/barricade/handrail/type_b{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"oZi" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison, -/area/fiorina/station/security) -"oZo" = ( -/obj/item/stack/sheet/wood{ - pixel_x = 1; - pixel_y = -3 - }, -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/tumor/servers) -"oZx" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"oZy" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"oZz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"paa" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) -"pab" = ( -/obj/item/tool/weldpack{ - pixel_x = 6 - }, -/obj/item/tool/weldpack{ - pixel_x = -6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/tumor/servers) -"pah" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"pau" = ( -/turf/open/floor/prison/greenblue/east, -/area/fiorina/station/botany) -"paI" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"paL" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"paM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black_random, -/obj/item/folder/red{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"paX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"pbD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"pbN" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) -"pbV" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/space, -/area/fiorina/oob) -"pca" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"pcd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"pcu" = ( -/turf/open/floor/almayer_hull, -/area/fiorina/oob) -"pcG" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"pcK" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"pdc" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - layer = 3.5; - pixel_y = 6 - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/transit_hub) -"pdk" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"pdu" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"pdB" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/park) -"pdM" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"pdP" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"pdU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"pee" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) -"pex" = ( -/obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"pfq" = ( -/obj/structure/surface/table/reinforced/prison{ - dir = 8; - flipped = 1 - }, -/obj/item/storage/box/ids, -/obj/item/reagent_container/food/drinks/cans/souto/grape{ - pixel_x = 14; - pixel_y = 7 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"pgI" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/station/park) -"phe" = ( -/obj/structure/girder, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"phk" = ( -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"phz" = ( -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"phS" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco) -"piw" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"piy" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"piG" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"piI" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"piW" = ( -/obj/structure/bed/chair, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"pjT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"pkg" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"pko" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/floorscorched1, -/area/fiorina/station/chapel) -"pkK" = ( -/turf/open/floor/prison/darkpurple2/west, -/area/fiorina/tumor/servers) -"pkM" = ( -/obj/structure/largecrate/machine, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"pkY" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"pkZ" = ( -/turf/open/floor/prison/panelscorched, -/area/fiorina/tumor/civres) -"plu" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"plG" = ( -/obj/structure/closet/emcloset, -/obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"plH" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"plI" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/maintenance) -"plK" = ( -/turf/closed/wall/prison, -/area/fiorina/station/security/wardens) -"pma" = ( -/obj/structure/foamed_metal, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"pmV" = ( -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/oob) -"pmW" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/bedsheet/green, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"pnf" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/item/trash/barcardine, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"png" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"pnk" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"pnm" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) -"pno" = ( -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"pnx" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"pnS" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/tumor/servers) -"pnX" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/tumor/aux_engi) -"poH" = ( -/obj/item/storage/briefcase, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"poI" = ( -/obj/structure/prop/resin_prop{ - icon_state = "coolanttank" - }, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"ppG" = ( -/obj/item/stack/rods/plasteel, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"ppI" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"ppM" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/tumor/ice_lab) -"ppQ" = ( -/obj/item/storage/briefcase, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"pqx" = ( -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/central_ring) -"pqC" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"pqG" = ( -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"pqO" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan20" - }, -/area/fiorina/tumor/ship) -"pqY" = ( -/obj/structure/monorail{ - dir = 9; - name = "launch track" - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"prl" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) -"prx" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"prG" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/surface/rack, -/obj/item/stack/flag/yellow, -/obj/item/stack/flag/yellow, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"psm" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/fiorina/station/security) -"psF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"psM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"ptb" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"pte" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/power_ring) -"ptv" = ( -/obj/effect/decal/hefa_cult_decals/d32, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/maintenance) -"pty" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"ptO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"puw" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"puy" = ( -/turf/open/floor/prison/blue/northwest, -/area/fiorina/station/civres_blue) -"puE" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"pvb" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"pvj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) -"pvD" = ( -/turf/closed/wall/r_wall/prison_unmeltable{ - desc = "A huge chunk of metal used to seperate rooms."; - name = "metal wall" - }, -/area/fiorina/oob) -"pwf" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = -5 - }, -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/station/medbay) -"pwz" = ( -/turf/open/floor/prison/blue/southeast, -/area/fiorina/tumor/servers) -"pwG" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"pwL" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"pwZ" = ( -/obj/structure/closet/secure_closet/security_empty, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"pxk" = ( -/obj/structure/closet/cabinet, -/obj/item/reagent_container/pill/cyanide, -/obj/item/reagent_container/glass/bottle/cyanide, -/obj/item/reagent_container/syringe, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"pxw" = ( -/obj/item/device/reagent_scanner, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"pxK" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"pxQ" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"pyd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 - }, -/obj/item/coin/gold{ - desc = "Coin op, in this place, in this year, localized entirely on this table? .... I uh, yes."; - name = "arcade token"; - pixel_x = -6; - pixel_y = 3 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/flight_deck) -"pyn" = ( -/obj/item/device/motiondetector, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"pys" = ( -/obj/item/newspaper, -/turf/open/floor/prison/whitepurplecorner, -/area/fiorina/station/research_cells) -"pyz" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/cell_stripe/north, -/area/fiorina/station/central_ring) -"pzt" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) -"pzP" = ( -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"pAq" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"pAy" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/blue/northeast, -/area/fiorina/station/power_ring) -"pAX" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"pBb" = ( -/obj/structure/curtain/open/black, -/turf/open/floor/prison, -/area/fiorina/maintenance) -"pBc" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"pBq" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"pBP" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"pBV" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"pCc" = ( -/obj/structure/ice/thin/indestructible{ - dir = 8; - icon_state = "End" - }, -/obj/structure/ice/thin/indestructible{ - dir = 8; - icon_state = "End" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/tumor/ice_lab) -"pCj" = ( -/obj/structure/bed{ - icon_state = "psychbed" - }, -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/station/medbay) -"pCn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/energy/taser, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"pCq" = ( -/turf/open/floor/prison/redcorner/north, -/area/fiorina/station/security) -"pCG" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"pCH" = ( -/obj/structure/monorail{ - dir = 10; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"pCJ" = ( -/turf/open/floor/prison/darkpurple2/northeast, -/area/fiorina/tumor/servers) -"pCS" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 32 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"pCX" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"pCY" = ( -/obj/item/frame/rack, -/obj/item/clothing/under/marine/ua_riot, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"pEo" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0" - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) -"pFi" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/telecomm/lz1_tram) -"pFk" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"pFP" = ( -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "Straight" - }, -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "Straight" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/tumor/ice_lab) -"pFW" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"pGj" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/green, -/area/fiorina/station/chapel) -"pGw" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/blue/northeast, -/area/fiorina/station/civres_blue) -"pGy" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) -"pGH" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_white_t_up" - }, -/area/fiorina/tumor/ship) -"pGI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"pGR" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"pHa" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"pHh" = ( -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "End" - }, -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "End" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/tumor/ice_lab) -"pHw" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/coin/uranium, -/obj/item/bedsheet/green, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec) -"pHO" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"pIb" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "delivery_outlet"; - layer = 6; - name = "overhead ducting"; - pixel_y = 33 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"pIg" = ( -/obj/item/storage/donut_box{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"pIl" = ( -/turf/open/floor/prison/green/southeast, -/area/fiorina/tumor/civres) -"pIr" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison/blue_plate/west, -/area/fiorina/station/botany) -"pIt" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/item/reagent_container/food/snacks/grown/apple/poisoned, -/turf/open/floor/wood, -/area/fiorina/station/park) -"pIA" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"pIT" = ( -/obj/item/trash/hotdog, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"pIX" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"pJc" = ( -/turf/open/floor/wood, -/area/fiorina/maintenance) -"pJf" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"pJu" = ( -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/lz/near_lzI) -"pJD" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/panelscorched, -/area/fiorina/tumor/aux_engi) -"pJI" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"pJK" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/mopbucket, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"pJN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_y = 8 - }, -/obj/item/trash/cigbutt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"pJO" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"pJS" = ( -/obj/structure/surface/rack, -/obj/item/storage/belt/gun/flaregun/full, -/obj/item/storage/belt/gun/flaregun/full, -/obj/item/storage/belt/gun/flaregun/full, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) -"pKY" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"pLg" = ( -/turf/open/floor/prison/yellow, -/area/fiorina/station/central_ring) -"pLj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"pLQ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"pMc" = ( -/obj/item/trash/popcorn, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"pMr" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"pNg" = ( -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) -"pNj" = ( -/obj/structure/bookcase, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"pNl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_tram) -"pNr" = ( -/turf/open/floor/prison/darkbrowncorners2, -/area/fiorina/maintenance) -"pNG" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/obj/item/organ/eyes, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"pNI" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"pOh" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"pOz" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"pOU" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"pPd" = ( -/obj/structure/prop/resin_prop{ - icon_state = "coolanttank" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"pPn" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"pPG" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 20 - }, -/turf/closed/wall/prison, -/area/fiorina/tumor/servers) -"pQs" = ( -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"pQR" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"pQX" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"pRr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"pRx" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"pRG" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"pRH" = ( -/obj/item/weapon/wirerod, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"pRI" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"pRR" = ( -/obj/item/stack/sandbags_empty, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"pSb" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"pSc" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"pSd" = ( -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/lz/near_lzI) -"pSg" = ( -/obj/structure/bed/chair/comfy, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"pSk" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/pill_bottle/tramadol/skillless, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"pSK" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"pSM" = ( -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/central_ring) -"pSN" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"pSR" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"pSU" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"pTj" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"pTI" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"pTR" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"pTU" = ( -/turf/closed/shuttle/elevator{ - dir = 5 - }, -/area/fiorina/station/telecomm/lz1_cargo) -"pUe" = ( -/obj/structure/barricade/metal/wired{ - dir = 1 - }, -/obj/item/bodybag/tarp/reactive, -/obj/item/bodybag/tarp/reactive, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"pUj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"pUp" = ( -/turf/open/floor/prison/darkyellow2/northwest, -/area/fiorina/tumor/servers) -"pUV" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"pVc" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"pVv" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/snacks/meat/human, -/obj/item/reagent_container/food/snacks/meat/human, -/obj/structure/machinery/light/double/blue, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"pVG" = ( -/obj/structure/closet/crate/medical, -/obj/item/tool/surgery/bonegel, -/obj/item/tool/surgery/bonegel, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"pVR" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/bible/hefa{ - pixel_y = 3 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"pWm" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/oob) -"pWp" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan8" - }, -/area/fiorina/tumor/ship) -"pWC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomright" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"pWG" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"pWO" = ( -/obj/item/stack/rods, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"pXq" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/servers) -"pXx" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/blue_plate, -/area/fiorina/station/botany) -"pXC" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"pXE" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/central_ring) -"pXH" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) -"pXN" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"pXY" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"pYc" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"pYA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/disco) -"pYD" = ( -/obj/structure/monorail{ - dir = 5; - name = "launch track" - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"pYJ" = ( -/turf/open/floor/prison/panelscorched, -/area/fiorina/tumor/servers) -"pZm" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/mob/living/simple_animal/hostile/retaliate/clown{ - health = 10000; - move_to_delay = 2; - name = "Gonzo the Magnificent"; - rapid = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"pZz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/tumor/aux_engi) -"qav" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_x = 2; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"qaO" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"qbd" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations are the leading cause in asbestos related deaths for 3 years in a row."; - icon_state = "fullgrass_1"; - name = "Fiberbush(tm) tubers" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"qbl" = ( -/turf/open/auto_turf/sand/layer1, -/area/fiorina/lz/near_lzII) -"qbm" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = -5 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"qby" = ( -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"qbI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - pixel_y = 9 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"qbU" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"qbW" = ( -/obj/item/tool/candle{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"qbY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/item/stack/catwalk, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"qcl" = ( -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/lowsec) -"qcR" = ( -/obj/structure/machinery/disposal, -/obj/item/tool/kitchen/rollingpin{ - pixel_y = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"qdd" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"qdf" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"qdz" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"qdC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/tumor/civres) -"qdJ" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"qdQ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/medbay) -"qek" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"qeC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/effect/spawner/random/pills/highchance, -/turf/open/floor/plating/prison, -/area/fiorina/station/security/wardens) -"qeI" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"qeN" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"qeX" = ( -/obj/structure/surface/table/reinforced/prison{ - flipped = 1 - }, -/obj/item/device/cassette_tape/hiphop, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"qfc" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/gm/river/desert/deep, -/area/fiorina/lz/near_lzII) -"qfg" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"qfY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"qgb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"qgd" = ( -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 8; - pixel_y = 7 - }, -/turf/open/space/basic, -/area/fiorina/oob) -"qgf" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"qgi" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 20 - }, -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/tumor/civres) -"qgB" = ( -/obj/item/clothing/gloves/rainbow, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"qgC" = ( -/obj/item/reagent_container/food/drinks/golden_cup, -/turf/open/space, -/area/fiorina/oob) -"qgE" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"qgK" = ( -/turf/open/floor/prison/whitepurple/east, -/area/fiorina/station/research_cells) -"qgL" = ( -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_tram) -"qgN" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "cartridge_2" - }, -/turf/open/floor/prison/darkyellowcorners2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"qgQ" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"qhu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/gun/shotgun/highchance, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/maintenance) -"qhA" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkbrown2/southeast, -/area/fiorina/maintenance) -"qhQ" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco) -"qhR" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"qib" = ( -/obj/structure/barricade/handrail, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"qiq" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"qiM" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/chapel) -"qiX" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5_1" - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"qjF" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"qjN" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"qkg" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/wood, -/area/fiorina/station/park) -"qkn" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"qky" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"qkF" = ( -/obj/structure/surface/rack, -/obj/item/tool/plantspray/pests, -/obj/item/tool/plantspray/weeds, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"qkG" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"qkN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"qkQ" = ( -/turf/open/floor/prison/darkbrowncorners2/east, -/area/fiorina/maintenance) -"qkZ" = ( -/turf/open/floor/prison/damaged3, -/area/fiorina/station/disco) -"qlf" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"qmh" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/flight_deck) -"qmj" = ( -/obj/structure/closet/emcloset, -/obj/item/weapon/nullrod{ - desc = "The explosive tip has been deactivated."; - force = 25; - icon_state = "hefasword"; - name = "de-activated HEFA Sword" - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"qmv" = ( -/obj/structure/monorail{ - dir = 10; - name = "launch track" - }, -/turf/open/space, -/area/fiorina/oob) -"qmV" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"qnw" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"qoh" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/item/trash/used_stasis_bag, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) -"qol" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"qoG" = ( -/obj/item/toy/crayon/rainbow, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"qpi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/blue/northwest, -/area/fiorina/station/power_ring) -"qpB" = ( -/obj/item/stack/cable_coil/blue, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"qpM" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_leftengine" - }, -/area/fiorina/station/power_ring) -"qpQ" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryotop" - }, -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"qqd" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"qqg" = ( -/obj/structure/machinery/processor, -/obj/effect/decal/cleanable/blood{ - pixel_y = 20 - }, -/turf/open/floor/prison/blue_plate, -/area/fiorina/station/botany) -"qqU" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"qra" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"qrw" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"qrz" = ( -/obj/item/explosive/plastic, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"qrC" = ( -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"qrV" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"qsc" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"qsn" = ( -/obj/item/toy/deck, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"qso" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"qsW" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"qtG" = ( -/turf/open/floor/prison/darkbrown2/southwest, -/area/fiorina/maintenance) -"qtP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/prop/helmetgarb/raincover, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"qtQ" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"qtY" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"quc" = ( -/obj/structure/surface/table/reinforced/prison{ - dir = 8; - flipped = 1 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"quD" = ( -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/station/power_ring) -"quJ" = ( -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) -"qva" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/smg/mp5, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"qvr" = ( -/turf/open/floor/prison/whitepurplecorner/north, -/area/fiorina/station/research_cells) -"qwc" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/central_ring) -"qwj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"qwo" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/structure/bed/chair{ - dir = 1; - layer = 2.8 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"qwP" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"qwQ" = ( -/turf/open/floor/prison/yellow, -/area/fiorina/station/disco) -"qxf" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"qxj" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/telecomm/lz1_cargo) -"qxJ" = ( -/turf/open/floor/prison/greencorner/west, -/area/fiorina/station/chapel) -"qxN" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"qyU" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) -"qzb" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"qzo" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison, -/area/fiorina/station/security) -"qzz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"qAU" = ( -/obj/item/paper/crumpled/bloody, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"qBe" = ( -/turf/open/floor/prison, -/area/fiorina/station/disco) -"qBm" = ( -/turf/open/floor/prison/darkbrown2/southwest, -/area/fiorina/tumor/aux_engi) -"qBz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"qBB" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = -5; - pixel_y = -5 - }, -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"qBF" = ( -/turf/open/floor/prison/blue/northeast, -/area/fiorina/station/chapel) -"qBH" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/fiorina/lz/near_lzII) -"qCa" = ( -/obj/structure/prop/resin_prop{ - dir = 1; - icon_state = "chair"; - pixel_y = 6 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"qCb" = ( -/obj/item/ammo_casing{ - icon_state = "casing_6" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"qCo" = ( -/obj/structure/closet/basketball, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"qCD" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"qCL" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryotop" - }, -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"qCV" = ( -/obj/item/trash/chips, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"qCW" = ( -/turf/closed/shuttle/elevator{ - dir = 6 - }, -/area/fiorina/tumor/aux_engi) -"qDm" = ( -/obj/structure/machinery/light/small{ - dir = 4; - pixel_x = 11; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"qDs" = ( -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"qDv" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"qEn" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"qEv" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"qEN" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"qER" = ( -/obj/structure/machinery/line_nexter, -/turf/open/floor/prison/red/west, -/area/fiorina/station/security) -"qEU" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"qFi" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"qFj" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"qFs" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"qFE" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/space/basic, -/area/fiorina/oob) -"qGs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_box/magazine/misc/flares, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"qGy" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"qGM" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/gm/river/red_pool, -/area/fiorina/station/park) -"qGP" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"qGU" = ( -/turf/open/floor/prison/green, -/area/fiorina/station/chapel) -"qHc" = ( -/turf/open/floor/prison/floorscorched1, -/area/fiorina/station/security) -"qHi" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "riot_control" - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"qHp" = ( -/obj/item/trash/chunk, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"qHs" = ( -/obj/structure/machinery/computer/emails{ - dir = 1; - pixel_y = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"qHt" = ( -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"qHx" = ( -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = 8 - }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = -8 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"qHG" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 25 - }, -/turf/open/floor/plating/plating_catwalk, -/area/fiorina/tumor/ship) -"qHX" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/prison, -/area/fiorina/station/security) -"qHZ" = ( -/turf/open/floor/prison/darkpurple2/northwest, -/area/fiorina/tumor/servers) -"qIf" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"qIq" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"qJf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - pixel_x = 8 - }, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - pixel_x = -8 - }, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - anchored = 1 - }, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - layer = 4.1; - pixel_x = 4; - pixel_y = 18 - }, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - layer = 4.1; - pixel_x = -4; - pixel_y = 18 - }, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - layer = 4.2; - pixel_y = 36 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"qJr" = ( -/turf/open/floor/prison, -/area/fiorina/tumor/fiberbush) -"qJL" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"qJQ" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"qKl" = ( -/obj/item/trash/popcorn, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) -"qKm" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/bible/hefa, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/chapel) -"qKq" = ( -/obj/structure/machinery/computer/arcade, -/obj/item/toy/syndicateballoon{ - anchored = 1; - pixel_x = 12; - pixel_y = 25 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - layer = 2.8; - pixel_x = 15; - pixel_y = 5 - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"qKx" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) -"qKP" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/disco) -"qKQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/phone{ - pixel_x = 7; - pixel_y = -16 - }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 16 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"qKT" = ( -/obj/item/stack/rods/plasteel, -/turf/open/auto_turf/sand/layer1, -/area/fiorina/lz/near_lzII) -"qLv" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"qLx" = ( -/obj/item/stock_parts/micro_laser/ultra, -/turf/open/floor/prison/darkpurple2/southwest, -/area/fiorina/tumor/servers) -"qLy" = ( -/obj/structure/surface/table/reinforced/prison{ - flipped = 1 - }, -/obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"qLK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/blue_plate, -/area/fiorina/station/botany) -"qMe" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"qNl" = ( -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"qNv" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"qNL" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"qNN" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"qOk" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/almayer_hull, -/area/fiorina/oob) -"qOq" = ( -/obj/structure/grille, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"qOB" = ( -/turf/open/floor/prison/darkbrowncorners2, -/area/fiorina/tumor/aux_engi) -"qOG" = ( -/obj/structure/prop/souto_land/pole, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"qON" = ( -/obj/item/stack/cable_coil/cyan, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"qOW" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/streamer{ - dir = 6 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"qPr" = ( -/obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/maintenance) -"qPB" = ( -/turf/open/floor/prison/redfull, -/area/fiorina/station/security/wardens) -"qPW" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/telecomm/lz1_tram) -"qQb" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) -"qQd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 10 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"qQg" = ( -/obj/structure/bookcase/manuals/research_and_development{ - pixel_y = 10 - }, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"qQj" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"qQl" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/telecomm/lz1_tram) -"qQt" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"qQE" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"qQM" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"qRa" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"qRg" = ( -/obj/structure/sign/prop3{ - desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." - }, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/tumor/servers) -"qRi" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - density = 0; - dir = 4; - icon_state = "door_open"; - opacity = 0 - }, -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"qRz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_y = 7 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"qRC" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"qRQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/objective{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"qRW" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"qSa" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/weapon/baton, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"qSm" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"qSy" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - pixel_y = 17 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"qSE" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"qTe" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"qTs" = ( -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"qTM" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/largecrate/random/case, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"qTY" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/card/id/silver/clearance_badge, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"qUk" = ( -/obj/effect/spawner/random/gun/pistol, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"qVa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/baton, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"qVh" = ( -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"qVi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"qVk" = ( -/obj/structure/machinery/disposal, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"qVp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"qVW" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/station/park) -"qWG" = ( -/obj/structure/coatrack, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"qWK" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/bible/hefa, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"qXM" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"qYO" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/power_ring) -"qYT" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/medical_supply_link, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"qZb" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"qZx" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/prison/whitegreencorner/east, -/area/fiorina/tumor/ice_lab) -"qZJ" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - layer = 2.97; - pixel_y = -14 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"raa" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"rag" = ( -/obj/structure/prop/ice_colony/surveying_device, -/turf/open/floor/prison/blue/east, -/area/fiorina/tumor/servers) -"rap" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/central_ring) -"rby" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/head/that{ - pixel_y = 10 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) -"rbK" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"rbQ" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"rbW" = ( -/obj/structure/cargo_container/grant/right{ - health = 5000; - unacidable = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"rbY" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_tram) -"rcg" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"rch" = ( -/obj/item/trash/burger, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"rcl" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"rcm" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"rcs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"rcU" = ( -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = -7; - pixel_y = 11 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"rdt" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"rdD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"rec" = ( -/obj/structure/sign/kiddieplaque{ - desc = "It is a warning sign that describes the process by which fiberbush expands in humid environments, behaving similar to kudzu vines."; - name = "Fiberbush(tm) safety plaque"; - pixel_y = 29 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"red" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"reK" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"reL" = ( -/obj/item/storage/toolbox/antag, -/turf/open/floor/prison/green/west, -/area/fiorina/tumor/civres) -"reP" = ( -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/maintenance) -"rfd" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, -/turf/closed/wall/prison, -/area/fiorina/tumor/ice_lab) -"rff" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"rfg" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/central_ring) -"rfh" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"rfl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"rfr" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/smg/mp5, -/obj/item/storage/belt/marine, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"rfu" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"rfM" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"rfQ" = ( -/obj/effect/spawner/random/tech_supply, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"rgg" = ( -/obj/item/tool/candle{ - pixel_x = -2 - }, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"rgR" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"rhC" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/blue/north, -/area/fiorina/station/chapel) -"rhG" = ( -/obj/item/trash/uscm_mre, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/flight_deck) -"ria" = ( -/obj/item/stool, -/turf/open/floor/prison/damaged2, -/area/fiorina/station/lowsec) -"riw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/station/medbay) -"riI" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"rja" = ( -/turf/closed/wall/prison, -/area/fiorina/station/civres_blue) -"rkn" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/greenblue/southeast, -/area/fiorina/station/botany) -"rko" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"rkx" = ( -/obj/structure/bed/sofa/south/grey/left, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"rky" = ( -/obj/structure/platform, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/security) -"rkH" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space, -/area/fiorina/oob) -"rkR" = ( -/obj/item/clothing/glasses/science, -/turf/open/space, -/area/fiorina/oob) -"rle" = ( -/obj/item/stack/cable_coil/green, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"rlA" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_tram) -"rlO" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"rma" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) -"rmh" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/trash, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"rmu" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"rmJ" = ( -/obj/structure/platform, -/obj/item/fuel_cell, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"rmO" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) -"rmX" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"rmZ" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/obj/structure/largecrate/random, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"rna" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 - }, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"rnl" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"rnn" = ( -/obj/structure/largecrate/supply/explosives/mortar_flare, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"rno" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 8 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"rod" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"roj" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"ron" = ( -/obj/structure/kitchenspike, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"roJ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"rpL" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"rqh" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"rqs" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/delivery, -/area/fiorina/station/power_ring) -"rqM" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/maintenance) -"rqS" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) -"rrS" = ( -/obj/structure/platform, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"rrT" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.5 - }, -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"rsg" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison, -/area/fiorina/station/park) -"rsp" = ( -/obj/item/toy/crayon/purple, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"rsH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"rsM" = ( -/obj/item/device/multitool, -/turf/open/floor/prison/green/northwest, -/area/fiorina/tumor/civres) -"rsS" = ( -/obj/item/clothing/gloves/boxing/green, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/central_ring) -"rsU" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"rsV" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"rtc" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"rtt" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"rtu" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"ruf" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"ruB" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/lz/near_lzI) -"ruD" = ( -/turf/open/floor/wood, -/area/fiorina/oob) -"ruE" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"ruJ" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 2; - layer = 6; - name = "overhead pipe"; - pixel_x = -16; - pixel_y = 12 - }, -/turf/closed/wall/prison, -/area/fiorina/tumor/servers) -"ruV" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/lowsec) -"rve" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"rvu" = ( -/obj/item/implanter/compressed, -/obj/structure/safe, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"rwh" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"rwu" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = -6; - pixel_y = -7 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"rwI" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"rwJ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"rxa" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"rxk" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"rxm" = ( -/obj/structure/prop/invuln{ - desc = "Floating cells are reserved for highly dangerous criminals. Whoever is out there is probably best left out there."; - icon = 'icons/obj/structures/doors/celldoor.dmi'; - icon_state = "door_closed"; - layer = 2.5; - name = "cell door" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"rxr" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/almayer_hull, -/area/fiorina/oob) -"rxL" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"rxM" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"rye" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"ryj" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/turf/open/floor/prison/blue/north, -/area/fiorina/station/civres_blue) -"ryp" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"ryJ" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"rzo" = ( -/obj/structure/largecrate/supply/ammo, -/obj/item/storage/fancy/crayons, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"rzt" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"rzy" = ( -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison/green/west, -/area/fiorina/tumor/civres) -"rzQ" = ( -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"rAm" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"rAC" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 1 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"rAK" = ( -/obj/structure/barricade/metal{ - dir = 4; - health = 85; - icon_state = "metal_1" - }, -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"rAY" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/fiorina/station/security) -"rBc" = ( -/obj/structure/closet/bombcloset, -/obj/effect/spawner/random/gun/rifle/midchance, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkyellow2/southeast, -/area/fiorina/station/flight_deck) -"rBr" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"rBz" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"rBF" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/flight_deck) -"rCm" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"rCq" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"rCt" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/wood, -/area/fiorina/station/lowsec) -"rCN" = ( -/turf/open/floor/prison/yellowcorner/west, -/area/fiorina/station/lowsec) -"rDu" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/barricade/handrail/type_b{ - layer = 3.4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"rDA" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"rDQ" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" - }, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/flight_deck) -"rEh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison/redfull, -/area/fiorina/station/medbay) -"rEC" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco) -"rEL" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"rEO" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"rFa" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/botany) -"rFb" = ( -/obj/item/ammo_casing{ - icon_state = "casing_8" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"rFg" = ( -/turf/open/floor/prison/darkyellowcorners2/north, -/area/fiorina/lz/near_lzI) -"rFj" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib2" - }, -/turf/open/floor/prison/whitegreencorner/west, -/area/fiorina/station/medbay) -"rFw" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"rFD" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/station/medbay) -"rFQ" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ppflowers_2" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"rGf" = ( -/turf/open/auto_turf/sand/layer1, -/area/fiorina/station/disco) -"rGj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"rGq" = ( -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"rGt" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/telecomm/lz1_tram) -"rGP" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"rGR" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"rHr" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"rHu" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"rHv" = ( -/turf/open/floor/prison/platingdmg3, -/area/fiorina/station/transit_hub) -"rHw" = ( -/turf/open/floor/prison/floor_marked/west, -/area/fiorina/station/research_cells) -"rIe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/medbay) -"rIE" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"rIO" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"rIS" = ( -/obj/structure/sign/poster{ - icon_state = "poster6" - }, -/turf/closed/wall/prison, -/area/fiorina/station/medbay) -"rIV" = ( -/obj/item/ammo_casing{ - icon_state = "casing_7_1" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"rJg" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"rJh" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"rJk" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/research_cells) -"rJu" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"rJy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/dropper, -/obj/item/attachable/bipod, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"rJO" = ( -/turf/open/floor/carpet, -/area/fiorina/station/security/wardens) -"rJW" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"rJZ" = ( -/obj/item/stack/cable_coil/green, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"rKa" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"rKo" = ( -/obj/structure/largecrate/random, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_y = 13 - }, -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/station/medbay) -"rKx" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/fiorina/station/power_ring) -"rLA" = ( -/obj/structure/platform, -/turf/open/floor/prison, -/area/fiorina/station/botany) -"rMg" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/tumor/servers) -"rMl" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/medbay) -"rMs" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/security/wardens) -"rMO" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"rMT" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"rNU" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_tram) -"rOm" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/power_ring) -"rOu" = ( -/obj/structure/closet, -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"rOH" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"rOI" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; - icon_state = "fullgrass_3"; - name = "Fiberbush(tm) tubers" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"rOX" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) -"rOZ" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 - }, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec) -"rPF" = ( -/obj/item/ammo_casing{ - icon_state = "casing_1" - }, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/telecomm/lz1_cargo) -"rPI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = -8 - }, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - anchored = 1 - }, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = 8 - }, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - layer = 4.1; - pixel_x = 4; - pixel_y = 18 - }, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - layer = 4.1; - pixel_x = -4; - pixel_y = 18 - }, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - layer = 4.2; - pixel_y = 36 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"rPS" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"rPZ" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"rQd" = ( -/obj/structure/closet, -/obj/item/stack/cable_coil, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"rQt" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"rRq" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"rRx" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"rRE" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"rSr" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"rSy" = ( -/turf/open/floor/prison/platingdmg1, -/area/fiorina/station/chapel) -"rSz" = ( -/obj/item/storage/toolbox/electrical, -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"rSG" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"rSN" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/autolathe/full{ - layer = 2.98 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"rSU" = ( -/obj/structure/barricade/sandbags{ - dir = 4; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"rSV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_27"; - layer = 3.1; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/prison/redcorner/east, -/area/fiorina/station/power_ring) -"rTi" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"rTr" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/blue/northwest, -/area/fiorina/station/power_ring) -"rTu" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"rTH" = ( -/obj/structure/sign/prop1{ - layer = 2.5; - name = "\improper USCM Emblem" - }, -/turf/open/floor/carpet, -/area/fiorina/station/security/wardens) -"rTO" = ( -/obj/structure/prop/dam/crane, -/turf/open/floor/prison/floor_marked/west, -/area/fiorina/tumor/servers) -"rUc" = ( -/obj/structure/platform, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/security) -"rUg" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"rUq" = ( -/obj/item/device/motiondetector, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"rUv" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" - }, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/lz/near_lzI) -"rUA" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"rUF" = ( -/obj/item/clothing/under/shorts/black, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"rVw" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"rVM" = ( -/obj/structure/closet/crate/miningcar, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000; - layer = 2.9; - pixel_y = 17 - }, -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"rVP" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"rVQ" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"rVS" = ( -/obj/item/device/multitool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"rVV" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"rWk" = ( -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) -"rWt" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"rWz" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/fancy/crayons, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"rWI" = ( -/obj/item/packageWrap, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/lz/near_lzI) -"rWK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal/medium_stack, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"rWQ" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 2; - layer = 6; - name = "overhead pipe"; - pixel_x = -16; - pixel_y = 12 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"rWR" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"rXg" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"rYI" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 5 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"rYX" = ( -/obj/item/storage/fancy/candle_box, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"rYY" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/filtration/console{ - can_block_movement = 0; - pixel_y = 22 - }, -/obj/item/trash/used_stasis_bag, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"rZi" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_rightengine" - }, -/area/fiorina/station/power_ring) -"rZz" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"rZP" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/tumor/aux_engi) -"saN" = ( -/obj/item/stack/sheet/wood, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"saV" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"saZ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"sbn" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/whitepurple/east, -/area/fiorina/station/research_cells) -"sbt" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"sbM" = ( -/turf/open/floor/prison/darkyellow2/northwest, -/area/fiorina/station/telecomm/lz1_cargo) -"sbU" = ( -/obj/item/trash/pistachios, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"scc" = ( -/turf/open/floor/prison/redcorner, -/area/fiorina/station/security) -"scg" = ( -/obj/item/reagent_container/food/drinks/bottle/pwine, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"scF" = ( -/obj/item/stool, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"scG" = ( -/obj/item/reagent_container/food/drinks/sillycup, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"scM" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/telecomm/lz1_tram) -"scZ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"sda" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"sdj" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" - }, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) -"sdo" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"sdp" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"sdI" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibmid1" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"sdK" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp{ - layer = 3.5; - pixel_x = 8; - pixel_y = 10 - }, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"seF" = ( -/obj/structure/monorail{ - dir = 6; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"seL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/powercell, -/obj/item/storage/syringe_case/burn{ - pixel_x = -10; - pixel_y = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"seW" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_r_w" - }, -/area/fiorina/tumor/ship) -"sfd" = ( -/obj/structure/largecrate/random/mini/med, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"sfI" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"sfW" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"sgt" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"sgw" = ( -/obj/structure/window_frame/prison, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"sha" = ( -/obj/item/storage/bible/hefa{ - pixel_y = 3 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"shH" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"sik" = ( -/obj/structure/platform, -/obj/item/ammo_casing{ - dir = 2; - icon_state = "casing_5" - }, -/turf/open/gm/river/red_pool, -/area/fiorina/station/park) -"siK" = ( -/obj/structure/prop/resin_prop{ - dir = 1; - icon_state = "chair"; - pixel_y = 6 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"siW" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/up, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"sjd" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"skc" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"skC" = ( -/obj/item/device/flashlight/flare, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"skD" = ( -/obj/structure/machinery/autolathe, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"skX" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"slp" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"slz" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/lz/near_lzI) -"slK" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "brflowers_1" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"slT" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"slZ" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_tram) -"smg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"smj" = ( -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"smr" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco) -"smv" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"smT" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec) -"smZ" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/darkpurple2/west, -/area/fiorina/tumor/servers) -"snd" = ( -/turf/open/floor/prison/redcorner/east, -/area/fiorina/station/security) -"sov" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_1"; - opacity = 0 - }, -/area/fiorina/lz/near_lzI) -"soN" = ( -/obj/structure/closet/cabinet, -/obj/effect/spawner/random/gun/special/lowchance, -/obj/item/clothing/suit/armor/det_suit, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"soW" = ( -/obj/item/circuitboard/exosuit/peripherals/max/targeting, -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"sph" = ( -/obj/item/tool/weldingtool{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"spk" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"spm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - pixel_y = 9 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/security) -"sqa" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/effect/spawner/random/tool, -/obj/item/clothing/gloves/combat, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"sqb" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"sqd" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/tumor/aux_engi) -"sqk" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" - }, -/obj/item/bedsheet/ce{ - desc = "It crinkles, aggressively."; - name = "sterile wax sheet" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"squ" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"sqx" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"sqC" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/lowsec) -"sqR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/supply_kit, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"sqV" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"srg" = ( -/obj/item/stack/rods/plasteel, -/turf/open/floor/prison/floorscorched2, -/area/fiorina/station/security) -"srp" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"srq" = ( -/obj/item/ammo_casing{ - dir = 6; - icon_state = "casing_5" - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"sry" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/blue, -/area/fiorina/station/civres_blue) -"srI" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"ssb" = ( -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) -"sso" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/bag/plants, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"ssp" = ( -/obj/structure/largecrate/supply/explosives/mines, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"ssC" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"ssJ" = ( -/obj/structure/lattice, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/space, -/area/fiorina/oob) -"ssO" = ( -/obj/item/ashtray/glass, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"ssY" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison/redfull, -/area/fiorina/station/lowsec) -"sta" = ( -/obj/structure/machinery/door/airlock/almayer/marine{ - icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"stc" = ( -/obj/structure/closet/secure_closet/engineering_materials, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"stf" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"stl" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"stI" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"stP" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"suB" = ( -/turf/open/floor/prison/blue/southwest, -/area/fiorina/tumor/servers) -"suS" = ( -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/disco) -"suX" = ( -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"svh" = ( -/obj/structure/machinery/computer/telecomms/monitor, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"svl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/objective, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"svm" = ( -/turf/open/floor/prison/green/northeast, -/area/fiorina/tumor/servers) -"swg" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/space, -/area/fiorina/oob) -"swZ" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"sxa" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/green/north, -/area/fiorina/station/chapel) -"sxd" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/ice_lab) -"sxj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"sxk" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"sxq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"sxH" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"sye" = ( -/obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"syh" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/wooden, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"syF" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/station/flight_deck) -"syH" = ( -/obj/item/clothing/suit/storage/labcoat, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"syP" = ( -/obj/item/organ/lungs, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"syV" = ( -/obj/structure/sign/safety/fridge, -/turf/closed/wall/prison, -/area/fiorina/station/power_ring) -"szc" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"szh" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket" - }, -/turf/open/floor/prison/blue, -/area/fiorina/station/chapel) -"szz" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"szD" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"szK" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/wood, -/area/fiorina/station/park) -"szP" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"szS" = ( -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/station/telecomm/lz1_tram) -"sAg" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/telecomm/lz1_tram) -"sAh" = ( -/obj/structure/closet/secure_closet/engineering_materials, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"sAl" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/chapel) -"sAp" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"sAL" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"sBj" = ( -/obj/structure/barricade/metal{ - health = 85; - icon_state = "metal_1" - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"sBn" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"sBt" = ( -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"sBv" = ( -/obj/item/clothing/head/cmcap, -/turf/open/floor/prison/green, -/area/fiorina/station/transit_hub) -"sBA" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"sBW" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"sCQ" = ( -/obj/structure/coatrack, -/obj/item/clothing/head/bowlerhat{ - pixel_y = 15 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"sDa" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"sDd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"sDp" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"sDH" = ( -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/lz/near_lzI) -"sDL" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"sDX" = ( -/obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"sEg" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"sEA" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 8 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/fiorina/station/park) -"sEO" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/lz/near_lzII) -"sET" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/plate, -/area/fiorina/station/civres_blue) -"sFq" = ( -/obj/item/ammo_casing{ - icon_state = "casing_7_1" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"sFJ" = ( -/obj/structure/closet/secure_closet/medical3, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"sFY" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"sGg" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"sGD" = ( -/obj/item/paper, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"sGI" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/wood, -/area/fiorina/station/park) -"sGR" = ( -/turf/open/floor/prison/redcorner/north, -/area/fiorina/station/power_ring) -"sHw" = ( -/obj/item/trash/semki, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"sHF" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"sHO" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/space, -/area/fiorina/oob) -"sIw" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ywflowers_2" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"sIC" = ( -/turf/open/floor/prison, -/area/fiorina/tumor/civres) -"sII" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - name = "\improper Mentor's Guide Bookcase" - }, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"sIJ" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison, -/area/fiorina/lz/near_lzI) -"sIU" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"sIZ" = ( -/obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/maintenance) -"sJu" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"sJB" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/prison, -/area/fiorina/station/security) -"sJN" = ( -/obj/structure/sign/prop3{ - desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." - }, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/lz/near_lzI) -"sJZ" = ( -/obj/item/explosive/grenade/phosphorus, -/obj/item/explosive/grenade/phosphorus, -/obj/item/explosive/grenade/phosphorus, -/obj/structure/surface/rack, -/obj/item/explosive/grenade/phosphorus, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"sKb" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/fiorina/station/park) -"sKu" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"sKG" = ( -/turf/open/floor/prison/panelscorched, -/area/fiorina/oob) -"sKY" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"sLj" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"sLs" = ( -/obj/structure/barricade/handrail, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"sLv" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) -"sLx" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 12 - }, -/turf/closed/wall/r_wall/prison, -/area/fiorina/tumor/civres) -"sMc" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"sMG" = ( -/turf/open/floor/prison/blue/southwest, -/area/fiorina/station/civres_blue) -"sNN" = ( -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"sNZ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"sOf" = ( -/obj/item/clothing/mask/cigarette/weed{ - icon_state = "ucigoff" - }, -/obj/item/clothing/mask/cigarette/weed{ - icon_state = "ucigoff"; - pixel_y = 4 - }, -/obj/item/clothing/mask/cigarette/weed{ - icon_state = "ucigoff"; - pixel_y = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"sOj" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"sOu" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"sOI" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) -"sOJ" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"sOM" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"sPt" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/shiva, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"sPx" = ( -/obj/item/stack/rods/plasteel, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco) -"sPF" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/oob) -"sPY" = ( -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/chapel) -"sQu" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"sRb" = ( -/obj/item/tool/shovel/snow, -/obj/item/device/flashlight, -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"sRk" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"sRr" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/power_ring) -"sRv" = ( -/obj/item/clothing/shoes/marine/upp/knife, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"sRB" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) -"sRF" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) -"sSd" = ( -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"sSH" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"sSM" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"sSY" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 2; - layer = 6; - name = "overhead pipe"; - pixel_x = -16; - pixel_y = 12 - }, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/tumor/servers) -"sSZ" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 1 - }, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"sTd" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"sTm" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"sTn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"sTu" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/space, -/area/fiorina/station/medbay) -"sTL" = ( -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison/darkyellow2/southeast, -/area/fiorina/station/flight_deck) -"sTQ" = ( -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"sUc" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"sUl" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"sUs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/golden_cup, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"sUt" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison, -/area/fiorina/station/park) -"sUA" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"sUU" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 - }, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"sVd" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/botany) -"sVv" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/space, -/area/fiorina/oob) -"sVz" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "delivery_outlet"; - layer = 6; - name = "overhead ducting"; - pixel_y = 33 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"sVU" = ( -/obj/structure/largecrate/machine, -/obj/item/reagent_container/food/drinks/cans/aspen{ - pixel_x = 6 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"sWl" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"sWr" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"sWu" = ( -/obj/item/frame/rack, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"sWw" = ( -/obj/item/storage/bag/trash, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"sWx" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 12 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"sWR" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical{ - pixel_y = -3 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/maintenance) -"sWX" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/research_cells) -"sXa" = ( -/obj/structure/machinery/filtration/console, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"sXe" = ( -/turf/open/floor/prison, -/area/fiorina/station/research_cells) -"sXt" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"sXT" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"sYn" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"sYP" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"sZp" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"sZt" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) -"taj" = ( -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"tan" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/oob) -"tas" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"taY" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/space/basic, -/area/fiorina/lz/near_lzI) -"tbQ" = ( -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"tcE" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"tcF" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/lowsec) -"tcI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sink{ - pixel_y = 32 - }, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"tcN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/rollingpin, -/obj/item/reagent_container/food/snacks/grown/carrot, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"tcW" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"tdx" = ( -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"tel" = ( -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/station/medbay) -"tew" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"teF" = ( -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"tfx" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"tfO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/obj/item/clothing/accessory/holobadge/cord, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/lz/near_lzI) -"tfP" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/tumor/fiberbush) -"tfQ" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/greenblue/west, -/area/fiorina/station/botany) -"tfU" = ( -/turf/open/floor/prison/redcorner, -/area/fiorina/station/power_ring) -"tfX" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"tgs" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"tgu" = ( -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) -"tgB" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"tgE" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) -"tgL" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"thd" = ( -/obj/item/frame/toolbox_tiles, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"thn" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"tho" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"tii" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"tir" = ( -/obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison, -/area/fiorina/station/security) -"tiF" = ( -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"tiJ" = ( -/obj/item/weapon/pole/wooden_cane, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"tiK" = ( -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/lz/near_lzI) -"tiX" = ( -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"tji" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - layer = 2.5 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"tjp" = ( -/obj/item/tool/warning_cone, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"tkd" = ( -/obj/structure/filingcabinet, -/obj/structure/filingcabinet{ - pixel_x = 16 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"tkA" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "lavendergrass_1" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/central_ring) -"tkP" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) -"tlq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp{ - pixel_x = 7; - pixel_y = 15 - }, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/tool/pen/blue{ - pixel_x = 6; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/fiorina/tumor/ship) -"tlv" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"tlF" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) -"tlG" = ( -/turf/open/floor/prison/darkpurple2/northeast, -/area/fiorina/station/central_ring) -"tlQ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"tlV" = ( -/obj/structure/machinery/space_heater, -/obj/item/device/flashlight/lamp{ - pixel_y = 11 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"tmo" = ( -/obj/structure/stairs/perspective, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"tmx" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"tmX" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison, -/area/fiorina/station/park) -"tmY" = ( -/obj/item/stool{ - pixel_x = -4; - pixel_y = 23 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"tna" = ( -/obj/structure/bed/sofa/pews{ - dir = 4 - }, -/obj/structure/bed/sofa/pews{ - dir = 1; - pixel_y = 22 - }, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"tnF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/surgicaldrill, -/turf/open/floor/prison/yellowcorner, -/area/fiorina/station/lowsec) -"tnZ" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibup1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"tob" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "Residential Apartment" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"toE" = ( -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"toP" = ( -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/civres_blue) -"tpa" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"tpc" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/tumor/aux_engi) -"tpt" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/obj/effect/spawner/random/goggles, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/chapel_carpet, -/area/fiorina/station/chapel) -"tpw" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/structure/largecrate/random/case, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"tpY" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"tqp" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"tqw" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"tqJ" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec) -"tqL" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco) -"tqP" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/turf/open/space/basic, -/area/fiorina/oob) -"tqV" = ( -/turf/open/floor/prison/green/east, -/area/fiorina/tumor/aux_engi) -"trl" = ( -/obj/item/trash/buritto, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"trs" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"trS" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"tsc" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - indestructible = 1; - name = "launch bay door" - }, -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"tsM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"tsX" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkyellow2/southeast, -/area/fiorina/lz/near_lzI) -"ttn" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/disco) -"tuf" = ( -/obj/item/clothing/shoes/jackboots{ - name = "Awesome Guy" - }, -/obj/item/clothing/glasses/sunglasses{ - name = "Boots Mc" - }, -/turf/open/space, -/area/fiorina/oob) -"tuk" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-4-8" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"tuX" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"tvg" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"twb" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/maintenance) -"twc" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) -"twl" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/greenblue/east, -/area/fiorina/station/botany) -"twL" = ( -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/station/medbay) -"twO" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/stool, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"twP" = ( -/turf/open/floor/prison/darkpurple2/southwest, -/area/fiorina/tumor/ice_lab) -"twQ" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"twY" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/maintenance) -"txc" = ( -/obj/item/reagent_container/food/snacks/wrapped/booniebars, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"txe" = ( -/turf/open/floor/prison/darkbrowncorners2/east, -/area/fiorina/tumor/aux_engi) -"txh" = ( -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/prison, -/area/fiorina/station/security) -"txq" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/clothing/gloves/combat, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"txK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"txO" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"txP" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"txT" = ( -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"txW" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/maintenance) -"tzl" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"tzy" = ( -/obj/item/ammo_magazine/smg/mp5, -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"tzM" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"tzN" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"tAb" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/general_belt{ - pixel_y = 7 - }, -/obj/item/storage/backpack/general_belt, -/turf/open/floor/almayer, -/area/fiorina/tumor/ship) -"tAX" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; - icon_state = "fullgrass_2"; - name = "Fiberbush(tm) tubers" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"tBd" = ( -/obj/structure/bed/roller, -/obj/item/bedsheet/green, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"tBn" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; - name = "\improper Fiorina Green Block Canteen Vendor" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"tBE" = ( -/obj/item/newspaper, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/tumor/ice_lab) -"tBJ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/stool, -/obj/item/clothing/shoes/slippers_worn, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"tBP" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/interior/plastic, -/area/fiorina/station/research_cells) -"tBR" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"tBW" = ( -/turf/open/floor/prison/darkpurple2/southeast, -/area/fiorina/tumor/servers) -"tBZ" = ( -/obj/item/ammo_magazine/smg/mp5, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkyellowcorners2/north, -/area/fiorina/station/telecomm/lz1_cargo) -"tCq" = ( -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/aux_engi) -"tCV" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"tCZ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/almayer_hull, -/area/fiorina/oob) -"tDz" = ( -/turf/open/floor/prison/darkpurple2/northwest, -/area/fiorina/station/central_ring) -"tDA" = ( -/obj/item/reagent_container/food/drinks/coffee{ - name = "\improper paper cup" - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/lowsec) -"tDB" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp{ - layer = 3.5; - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/reagent_container/food/snacks/tomatosoup, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"tDE" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"tDJ" = ( -/turf/open/floor/prison/whitegreencorner/east, -/area/fiorina/station/medbay) -"tDQ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"tEl" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/stack/rods, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/chapel) -"tEm" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/tool/crowbar, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"tEH" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"tEJ" = ( -/obj/item/device/multitool, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"tER" = ( -/obj/item/phone{ - pixel_x = 9; - pixel_y = -10 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"tEY" = ( -/obj/structure/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"tFy" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"tFA" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"tFK" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"tGn" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) -"tGv" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"tGI" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"tGY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 12 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security/wardens) -"tHl" = ( -/obj/structure/inflatable, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"tHu" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"tHL" = ( -/obj/structure/blocker/invisible_wall, -/turf/closed/shuttle/ert{ - icon_state = "rightengine_1"; - opacity = 0 - }, -/area/fiorina/station/medbay) -"tHO" = ( -/obj/structure/barricade/metal{ - dir = 4; - health = 85; - icon_state = "metal_1" - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"tHZ" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -9; - pixel_y = 8 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 11; - pixel_y = 8 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"tId" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"tIn" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"tIp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/space/basic, -/area/fiorina/oob) -"tIq" = ( -/turf/open/floor/prison/floorscorched2, -/area/fiorina/tumor/civres) -"tIM" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"tIU" = ( -/obj/item/tool/candle, -/turf/open/floor/prison/chapel_carpet, -/area/fiorina/maintenance) -"tJk" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/flight_deck) -"tJI" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"tJR" = ( -/obj/structure/machinery/computer/cameras/wooden_tv{ - pixel_y = 7 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"tKa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/pepper, -/obj/item/clothing/glasses/sunglasses/sechud, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"tKv" = ( -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"tKA" = ( -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/chapel) -"tKY" = ( -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/central_ring) -"tLi" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/item/storage/fancy/cigarettes/blackpack, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"tLn" = ( -/obj/item/storage/secure/briefcase{ - pixel_x = 9; - pixel_y = 18 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"tLC" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"tMh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/hardpoint/support/flare_launcher{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) -"tMm" = ( -/obj/structure/coatrack, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"tMo" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"tMp" = ( -/obj/item/ammo_casing{ - icon_state = "casing_6_1" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"tMI" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"tMN" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"tMQ" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_tram) -"tMR" = ( -/obj/item/trash/chunk, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"tMS" = ( -/obj/effect/alien/weeds/node, -/obj/structure/prop/resin_prop{ - icon_state = "rack" - }, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"tMT" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"tMY" = ( -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) -"tNQ" = ( -/obj/effect/spawner/random/powercell, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"tNV" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"tOc" = ( -/turf/open/floor/wood, -/area/fiorina/station/disco) -"tOp" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"tOD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/briefcase, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"tOG" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"tOK" = ( -/obj/structure/curtain, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/power_ring) -"tOM" = ( -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"tOP" = ( -/obj/structure/platform, -/obj/structure/closet/radiation, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"tOW" = ( -/turf/open/floor/prison/green/north, -/area/fiorina/tumor/aux_engi) -"tPl" = ( -/obj/item/trash/kepler, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"tPo" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"tPN" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"tQi" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"tQl" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"tQm" = ( -/obj/item/trash/boonie, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"tQB" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"tQK" = ( -/obj/item/stack/folding_barricade, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/chapel) -"tRw" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/telecomm/lz1_tram) -"tRH" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/botany) -"tSF" = ( -/obj/item/bedsheet, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"tSP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 7; - pixel_y = 22 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"tSY" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"tTk" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/blue/southwest, -/area/fiorina/station/civres_blue) -"tTA" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"tUd" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"tUm" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"tUn" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) -"tUs" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"tUS" = ( -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"tVS" = ( -/turf/open/floor/prison/red/east, -/area/fiorina/station/security) -"tVV" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"tVY" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"tWf" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) -"tWv" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/spawner/random/gun/rifle, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"tWI" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/space, -/area/fiorina/oob) -"tWR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 - }, -/obj/item/reagent_container/food/snacks/cherrypie{ - pixel_y = 7 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/flight_deck) -"tXa" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/item/clothing/suit/armor/bulletproof/badge, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec) -"tXD" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"tXM" = ( -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/station/medbay) -"tXO" = ( -/obj/effect/landmark{ - icon_state = "hive_spawn"; - name = "xeno_hive_spawn" - }, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"tXV" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/machinery/power/apc/power/west, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"tYb" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec) -"tYl" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/red_pool, -/area/fiorina/station/park) -"tYm" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"tYp" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"tYw" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/tumor/civres) -"tYB" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 1; - pixel_y = 24 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"tYS" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"tYT" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"tZb" = ( -/turf/open/floor/prison/damaged2, -/area/fiorina/station/disco) -"tZs" = ( -/turf/open/floor/prison/yellow/west, -/area/fiorina/lz/near_lzII) -"tZI" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) -"tZO" = ( -/obj/item/frame/rack, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"ual" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"uap" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"uaq" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"uax" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"ubc" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"ubp" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells) -"ubH" = ( -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) -"ubL" = ( -/turf/open/floor/prison/darkbrown2/northeast, -/area/fiorina/tumor/aux_engi) -"ubN" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_1"; - opacity = 0 - }, -/area/fiorina/tumor/aux_engi) -"ubP" = ( -/turf/open/floor/prison, -/area/fiorina/station/security) -"ubQ" = ( -/obj/structure/ice/thin/indestructible{ - dir = 8; - icon_state = "Straight" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells) -"ucf" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "casing_6" - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"ucj" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan25" - }, -/area/fiorina/station/power_ring) -"ucI" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"ucS" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/telecomm/lz1_tram) -"ucY" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"uda" = ( -/obj/item/ammo_magazine/handful/shotgun/incendiary{ - unacidable = 1 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/aux_engi) -"udl" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/servers) -"udt" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"udG" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"uep" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"uew" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/lz/near_lzI) -"uey" = ( -/obj/item/trash/snack_bowl, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"ufg" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"ufE" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"ufL" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"ugd" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"ugg" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"ugv" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/space/basic, -/area/fiorina/oob) -"ugB" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"ugI" = ( -/obj/item/fuel_cell, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"ugP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"ugS" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"ugT" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"uhm" = ( -/obj/structure/window_frame/prison/reinforced, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"uhP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical/green, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"uip" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"uir" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"uiK" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"uiV" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"ujh" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"ujj" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/central_ring) -"ujq" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"ujE" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"ujJ" = ( -/turf/open/floor/prison/panelscorched, -/area/fiorina/station/chapel) -"ujL" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; - icon_state = "fullgrass_3"; - name = "Fiberbush(tm) tubers" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/aux_engi) -"ukj" = ( -/obj/structure/dropship_equipment/medevac_system, -/turf/open/floor/prison/floor_marked/southwest, -/area/fiorina/station/power_ring) -"ulh" = ( -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/central_ring) -"ulA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"ume" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 11; - pixel_y = 14 - }, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/structure/largecrate/random/mini/chest/c, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"umv" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"umy" = ( -/obj/structure/prop/resin_prop{ - dir = 4; - icon_state = "chair"; - pixel_y = 6 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"umW" = ( -/obj/structure/bed/sofa/pews, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"umZ" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"uno" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"unu" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"unv" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"unF" = ( -/obj/item/tool/wirecutters, -/obj/structure/platform/shiva{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"uos" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"uou" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/obj/item/storage/toolbox/syndicate, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"uoI" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"upL" = ( -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"upM" = ( -/obj/structure/disposalpipe/broken, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"upV" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"upX" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/prison, -/area/fiorina/station/security/wardens) -"upY" = ( -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"uqm" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 4 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"uqG" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/obj/item/bedsheet/green, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"urf" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/central_ring) -"urv" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"urJ" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/almayer_hull, -/area/fiorina/oob) -"urK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"urN" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"usg" = ( -/obj/effect/spawner/random/attachment, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"usn" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) -"usx" = ( -/obj/structure/sign/poster{ - icon_state = "poster7"; - pixel_x = -26; - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"usF" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - indestructible = 1; - name = "launch bay door" - }, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/oob) -"usY" = ( -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco) -"utg" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"utq" = ( -/obj/item/weapon/baseballbat/metal, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/chapel) -"uts" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"utv" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/fancy/cigar/tarbacks, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells) -"utA" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"utB" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"utC" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"utH" = ( -/obj/item/trash/pistachios, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"uud" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"uuL" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"uvc" = ( -/obj/item/prop/helmetgarb/gunoil, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"uvv" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"uvF" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/fiorina/maintenance) -"uvW" = ( -/turf/open/floor/prison/blue, -/area/fiorina/station/power_ring) -"uwk" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"uwm" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/central_ring) -"uws" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"uwA" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"uwK" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/obj/structure/largecrate/random, -/turf/open/floor/corsat/plate, -/area/fiorina/station/civres_blue) -"uwT" = ( -/obj/structure/sign/poster{ - icon_state = "poster10"; - pixel_x = 32 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"uwV" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/structure/morgue{ - dir = 8; - layer = 2.6 - }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/medbay) -"uxv" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"uxZ" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/platingdmg1, -/area/fiorina/station/security) -"uye" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/fiorina/station/security) -"uyp" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"uyM" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"uyQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"uyU" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells) -"uza" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibup1" - }, -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"uzw" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"uzy" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"uzD" = ( -/obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"uzT" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/central_ring) -"uzW" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/tumor/ice_lab) -"uAO" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"uBq" = ( -/obj/item/stack/rods, -/obj/structure/disposalpipe/broken, -/obj/structure/disposalpipe/broken{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"uBy" = ( -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/station/medbay) -"uBA" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"uBK" = ( -/obj/item/circuitboard/machine/rdserver, -/turf/open/floor/prison/floorscorched1, -/area/fiorina/tumor/servers) -"uCQ" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 6 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"uCX" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"uDh" = ( -/obj/structure/bed/chair/dropship/pilot, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"uDJ" = ( -/obj/item/storage/box/flashbangs, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"uDU" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"uEj" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"uEw" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"uEG" = ( -/obj/structure/platform, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/station/medbay) -"uFa" = ( -/turf/open/floor/prison/sterile_white/west, -/area/fiorina/station/lowsec) -"uFb" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/tumor/aux_engi) -"uFs" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) -"uGF" = ( -/turf/open/floor/prison/damaged1/southwest, -/area/fiorina/station/central_ring) -"uGN" = ( -/obj/item/gift, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"uGT" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"uGY" = ( -/turf/closed/wall/prison, -/area/fiorina/station/security) -"uHe" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"uHl" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"uHp" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/squares, -/area/fiorina/station/civres_blue) -"uHu" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"uHE" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) -"uHI" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"uHR" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"uHV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"uIh" = ( -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"uIw" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"uIF" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"uIG" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/servers) -"uIS" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"uIT" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"uIX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/guestpass{ - dir = 4; - reason = "Visitor" - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"uJg" = ( -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.1; - pixel_y = 19 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"uJn" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"uJX" = ( -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec) -"uKi" = ( -/obj/item/device/taperecorder{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"uKx" = ( -/turf/closed/shuttle/ert, -/area/fiorina/lz/near_lzI) -"uKE" = ( -/obj/item/clipboard, -/turf/open/floor/prison, -/area/fiorina/station/park) -"uKO" = ( -/obj/item/book/manual/atmospipes, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"uKP" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"uKS" = ( -/obj/structure/reagent_dispensers/watertank{ - layer = 2.6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"uKU" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/obj/item/storage/pill_bottle/dexalin/skillless, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"uLa" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"uLr" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"uLJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"uMc" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison, -/area/fiorina/station/security) -"uMd" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"uMn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio{ - pixel_y = 8 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"uMq" = ( -/obj/structure/machinery/light/small{ - dir = 4; - pixel_x = 11; - pixel_y = 10 - }, -/obj/structure/surface/rack, -/turf/open/floor/plating/plating_catwalk, -/area/fiorina/tumor/ship) -"uMt" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/maintenance) -"uMw" = ( -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"uMz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"uMF" = ( -/obj/structure/surface/rack, -/obj/item/restraint/handcuffs, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"uMZ" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 20 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"uNi" = ( -/turf/open/floor/prison/green/east, -/area/fiorina/station/transit_hub) -"uNm" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/random/gun/rifle/highchance, -/turf/open/floor/prison, -/area/fiorina/station/security) -"uNu" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/random/gun/pistol/midchance, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"uNI" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"uNM" = ( -/turf/closed/wall/prison, -/area/fiorina/tumor/aux_engi) -"uOu" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"uOA" = ( -/obj/structure/closet/wardrobe/orange, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"uOP" = ( -/obj/item/newspaper, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"uPb" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/wood, -/area/fiorina/station/park) -"uPz" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"uPA" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/gm/river/desert/deep, -/area/fiorina/lz/near_lzII) -"uPG" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"uPP" = ( -/obj/structure/closet/secure_closet/engineering_materials, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"uQj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/medbay) -"uQE" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"uQP" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"uRc" = ( -/obj/item/stool, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"uRi" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/tumor/aux_engi) -"uRv" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"uRB" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/prison/green, -/area/fiorina/station/transit_hub) -"uRG" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"uRJ" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/darkbrown2/southwest, -/area/fiorina/tumor/aux_engi) -"uRZ" = ( -/obj/item/trash/barcardine, -/turf/open/floor/prison, -/area/fiorina/station/security) -"uSa" = ( -/turf/open/floor/prison/greencorner/north, -/area/fiorina/station/chapel) -"uSm" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_tram) -"uSo" = ( -/obj/structure/platform, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/botany) -"uSy" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"uSA" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/transit_hub) -"uSQ" = ( -/obj/structure/reagent_dispensers/watertank{ - layer = 2.6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/lz/near_lzII) -"uSX" = ( -/obj/item/tool/kitchen/utensil/pknife, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"uSY" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/vehicle/powerloader/ft, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"uSZ" = ( -/obj/item/ammo_casing{ - icon_state = "casing_9_1" - }, -/turf/open/floor/prison/yellowcorner/west, -/area/fiorina/station/lowsec) -"uTl" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "2" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"uTu" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibup1" - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"uTx" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"uTT" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/fiorina/station/transit_hub) -"uUg" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkyellow2/northwest, -/area/fiorina/lz/near_lzI) -"uUz" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) -"uUY" = ( -/turf/open/floor/prison/platingdmg1, -/area/fiorina/tumor/servers) -"uVd" = ( -/obj/item/trash/liquidfood, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"uVj" = ( -/obj/item/stock_parts/micro_laser/ultra, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) -"uVn" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_inner_w_1" - }, -/area/fiorina/tumor/ship) -"uVL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"uVP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 11; - pixel_y = 14 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"uVR" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/item/clothing/head/soft/ferret{ - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"uVX" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4; - pixel_x = -7 - }, -/turf/closed/shuttle/ert{ - icon_state = "wy5" - }, -/area/fiorina/station/medbay) -"uVZ" = ( -/obj/item/trash/candy, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"uWn" = ( -/obj/item/inflatable, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"uWs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco) -"uWz" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"uWC" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"uWQ" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/gm/river/desert/deep, -/area/fiorina/lz/near_lzII) -"uWW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"uXw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/skills, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"uXB" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"uXD" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/tumor/ship) -"uYo" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) -"uYs" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/effect/spawner/random/gun/rifle, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/station/telecomm/lz1_cargo) -"uYx" = ( -/obj/structure/prop/resin_prop{ - icon_state = "coolanttank" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"uYF" = ( -/obj/item/paper/crumpled/bloody, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"uYI" = ( -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/lz/near_lzI) -"uYS" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"uZA" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan2" - }, -/area/fiorina/tumor/ship) -"uZX" = ( -/obj/structure/curtain, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"vab" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/megaphone, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/tumor/ice_lab) -"vao" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"vat" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"vau" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"vaE" = ( -/obj/structure/machinery/gibber, -/obj/effect/decal/cleanable/blood{ - pixel_x = 8; - pixel_y = 10 - }, -/turf/open/floor/prison/blue_plate, -/area/fiorina/station/botany) -"vaQ" = ( -/obj/structure/window{ - dir = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"vbn" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"vbw" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/whitegreencorner/east, -/area/fiorina/tumor/ice_lab) -"vby" = ( -/obj/item/weapon/baton/cattleprod, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells) -"vbV" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"vcf" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan5" - }, -/area/fiorina/oob) -"vcC" = ( -/obj/item/stack/rods, -/turf/open/space, -/area/fiorina/oob) -"vcJ" = ( -/turf/open/floor/corsat/squares, -/area/fiorina/station/civres_blue) -"vcQ" = ( -/obj/structure/mirror{ - pixel_x = -29 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/prison/sterile_white, -/area/fiorina/station/civres_blue) -"vcS" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/prison/bluecorner/west, -/area/fiorina/station/power_ring) -"vdt" = ( -/obj/item/device/cassette_tape/nam, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"vdy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"vdR" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/station/flight_deck) -"vei" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/tumor/ice_lab) -"vem" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_1" - }, -/area/fiorina/lz/near_lzI) -"ver" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"vev" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/closed/shuttle/ert{ - icon_state = "rightengine_1"; - layer = 3; - opacity = 0 - }, -/area/fiorina/oob) -"veC" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"veJ" = ( -/obj/item/clothing/head/helmet/marine/specialist/hefa, -/turf/open/floor/prison, -/area/fiorina/station/park) -"veW" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) -"vfz" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/rum{ - pixel_x = 8; - pixel_y = 5 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"vfD" = ( -/obj/structure/closet/secure_closet/engineering_materials, -/obj/effect/spawner/random/gun/smg, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"vfM" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan27" - }, -/area/fiorina/station/power_ring) -"vfZ" = ( -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"vgq" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/item/reagent_container/glass/bottle/cyanide{ - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"vgv" = ( -/obj/structure/machinery/door/morgue{ - dir = 2; - name = "Confession Booth" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"vha" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"vhk" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"vhp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp/captain, -/obj/structure/machinery/processor{ - icon_state = "blender_jug_f_red"; - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"vht" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec) -"vhz" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) -"vhB" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/park) -"vhO" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"vhT" = ( -/obj/structure/platform, -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"vik" = ( -/obj/item/disk, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"viL" = ( -/obj/item/stock_parts/micro_laser/ultra, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"viX" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/turf/open/space/basic, -/area/fiorina/oob) -"vjl" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"vjm" = ( -/obj/item/stack/cable_coil, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/tumor/servers) -"vjq" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_1" - }, -/area/fiorina/station/power_ring) -"vjG" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"vjH" = ( -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/station/medbay) -"vjO" = ( -/turf/open/floor/prison/blue, -/area/fiorina/tumor/servers) -"vjQ" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "bee" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"vjR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"vjT" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"vjX" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/tumor/aux_engi) -"vkh" = ( -/obj/structure/closet/cabinet, -/obj/effect/spawner/random/gun/special/midchance, -/obj/item/clothing/suit/armor/det_suit, -/obj/item/attachable/magnetic_harness, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"vkp" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) -"vkt" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"vlp" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"vls" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"vlz" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"vlD" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"vlS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - pixel_y = 9 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"vlU" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"vmh" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"vmj" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "podholder" - }, -/turf/closed/shuttle/ert{ - icon_state = "leftengine_1" - }, -/area/fiorina/station/medbay) -"vmt" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) -"vmJ" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/greenblue/west, -/area/fiorina/station/botany) -"vmQ" = ( -/obj/structure/surface/rack, -/obj/item/frame/table/almayer, -/obj/item/frame/table/almayer, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"vnr" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/telecomm/lz1_cargo) -"vnG" = ( -/turf/open/floor/prison, -/area/fiorina/maintenance) -"vnZ" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"voq" = ( -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"vov" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"vox" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"voG" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/green/east, -/area/fiorina/station/chapel) -"voK" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"voL" = ( -/obj/structure/machinery/floodlight{ - name = "Yard Floodlight" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"vpH" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/greenblue/north, -/area/fiorina/station/botany) -"vpJ" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/station/medbay) -"vpN" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"vpO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/adv{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 9; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"vpS" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"vqz" = ( -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/station/telecomm/lz1_cargo) -"vqO" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/tumor/aux_engi) -"vrp" = ( -/obj/structure/ice/thin/indestructible{ - icon_state = "Corner" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells) -"vrF" = ( -/obj/item/toy/crayon/green, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"vrT" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/chapel_carpet, -/area/fiorina/station/chapel) -"vrW" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/corsat/plate, -/area/fiorina/station/civres_blue) -"vso" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/tumor/aux_engi) -"vss" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"vsN" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"vsT" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"vth" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"vtk" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_casing/shell{ - icon_state = "shell_9_1" - }, -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"vtl" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/wood, -/area/fiorina/station/park) -"vto" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/hypospray, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"vts" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/sand/layer1, -/area/fiorina/tumor/civres) -"vtD" = ( -/obj/effect/spawner/random/tool, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"vuc" = ( -/obj/item/tool/mop, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"vum" = ( -/obj/item/clipboard, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"vuH" = ( -/obj/structure/largecrate/supply/medicine/medkits, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"vuK" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/prison, -/area/fiorina/station/security) -"vuP" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"vuS" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"vuV" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"vva" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"vvp" = ( -/obj/item/tool/candle{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"vvv" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/servers) -"vvB" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/lz/near_lzI) -"vwe" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"vwi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - pixel_x = -6; - pixel_y = 20 - }, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - pixel_x = 6; - pixel_y = 20 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"vwt" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"vwx" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"vwM" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"vxs" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_inner_w_2" - }, -/area/fiorina/tumor/ship) -"vyu" = ( -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"vyx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"vzh" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"vzn" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"vzp" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"vzB" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - indestructible = 1; - name = "launch bay door" - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"vzI" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"vzQ" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"vzU" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_3"; - opacity = 0 - }, -/area/fiorina/tumor/ship) -"vzX" = ( -/obj/structure/closet/crate/trashcart, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"vAg" = ( -/obj/item/inflatable, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"vAj" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "handblood" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"vAD" = ( -/obj/item/frame/rack, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"vAG" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/surface/rack, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"vAP" = ( -/obj/item/poster, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"vAQ" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"vAW" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison/green/southeast, -/area/fiorina/tumor/civres) -"vBN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/cigbutt, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"vBP" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"vBS" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"vBX" = ( -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"vBY" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"vBZ" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"vDr" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"vDB" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/civres_blue) -"vDO" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"vEi" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"vEH" = ( -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"vEK" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/power_ring) -"vFi" = ( -/obj/structure/window_frame/prison, -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"vFn" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"vFs" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security/wardens) -"vFx" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/book/manual/security_space_law, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"vFG" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/greenblue/north, -/area/fiorina/station/botany) -"vFY" = ( -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"vGc" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 9 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"vGh" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"vGC" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"vGI" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) -"vHa" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/flight_deck) -"vHj" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"vHn" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"vHp" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 6 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"vHC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 - }, -/obj/item/reagent_container/food/snacks/eat_bar, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/flight_deck) -"vHG" = ( -/obj/structure/platform, -/turf/open/gm/river/red_pool, -/area/fiorina/station/park) -"vHJ" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"vHU" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"vIh" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"vIi" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/storage/pill_bottle/alkysine, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"vIo" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"vIw" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"vIN" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/corsat/plate, -/area/fiorina/tumor/aux_engi) -"vJh" = ( -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"vJn" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/transit_hub) -"vJw" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - pixel_y = -14 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"vJy" = ( -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/central_ring) -"vJL" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) -"vJM" = ( -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/maintenance) -"vJN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/electrical{ - pixel_y = 9 - }, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer, -/area/fiorina/tumor/ship) -"vJX" = ( -/turf/open/floor/prison/damaged1/southwest, -/area/fiorina/station/disco) -"vKF" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/greenblue/east, -/area/fiorina/station/botany) -"vKP" = ( -/obj/structure/surface/rack, -/obj/item/weapon/sword/katana, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"vKZ" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/box/holobadge{ - pixel_y = 3 - }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec) -"vLk" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/corsat/plate, -/area/fiorina/station/telecomm/lz1_cargo) -"vLH" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/wood, -/area/fiorina/station/park) -"vLJ" = ( -/turf/open/floor/prison/platingdmg1, -/area/fiorina/station/civres_blue) -"vLT" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/prison/red/west, -/area/fiorina/station/security) -"vMj" = ( -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/tumor/servers) -"vMK" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/power_ring) -"vMW" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"vNq" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"vNQ" = ( -/obj/item/fuel_cell, -/obj/structure/platform, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"vNT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"vOe" = ( -/turf/open/floor/prison/darkyellow2/northwest, -/area/fiorina/station/flight_deck) -"vOv" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"vOC" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"vOD" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"vOP" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 20 - }, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/tumor/servers) -"vOZ" = ( -/obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"vPz" = ( -/turf/open/floor/prison/whitepurplecorner/east, -/area/fiorina/station/research_cells) -"vPM" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"vPR" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan1" - }, -/area/fiorina/tumor/ship) -"vQC" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/storage/pill_bottle/kelotane/skillless, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/station/park) -"vRb" = ( -/obj/structure/closet/secure_closet/engineering_materials, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"vRx" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"vRA" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"vRP" = ( -/obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"vRX" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_tram) -"vSb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/station/medbay) -"vSc" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"vSl" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"vSo" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"vSw" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/tumor/aux_engi) -"vSW" = ( -/obj/structure/closet/crate/internals, -/obj/item/tool/crew_monitor, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"vTv" = ( -/turf/closed/shuttle/elevator{ - dir = 5 - }, -/area/fiorina/station/civres_blue) -"vTO" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"vTY" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"vUf" = ( -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"vUv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced, -/obj/item/reagent_container/food/snacks/donut/normal, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"vUK" = ( -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) -"vUN" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/transit_hub) -"vVa" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/darkyellow2/east, -/area/fiorina/lz/near_lzI) -"vVi" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"vVs" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/blue/east, -/area/fiorina/station/civres_blue) -"vVx" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) -"vVN" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) -"vWe" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/prison, -/area/fiorina/station/medbay) -"vWN" = ( -/obj/item/reagent_container/food/drinks/cans/sodawater, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"vXf" = ( -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/tumor/ice_lab) -"vXl" = ( -/obj/structure/surface/rack, -/obj/item/folder/black, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"vXu" = ( -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/tumor/ice_lab) -"vXv" = ( -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"vXP" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/greenblue/east, -/area/fiorina/station/botany) -"vXT" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/security/wardens) -"vYo" = ( -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/civres_blue) -"vYH" = ( -/turf/open/floor/prison/platingdmg3, -/area/fiorina/station/security) -"vYX" = ( -/obj/item/roller, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"vZD" = ( -/obj/item/storage/box/donkpockets, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"vZL" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"vZU" = ( -/turf/open/floor/prison/floorscorched1, -/area/fiorina/station/civres_blue) -"vZV" = ( -/turf/closed/wall/strata_ice/jungle{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - name = "synthetic vegetation" - }, -/area/fiorina/tumor/aux_engi) -"vZX" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"wah" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/cigar/tarbacks, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"wak" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_y = 11 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"wam" = ( -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"was" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"waC" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"waN" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"waO" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/prison/blue_plate/north, -/area/fiorina/station/botany) -"waU" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"wbB" = ( -/obj/structure/computerframe, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"wbE" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/fiorina/tumor/ship) -"wbI" = ( -/turf/open/floor/wood, -/area/fiorina/station/park) -"wbL" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/prop/almayer/comp_open{ - pixel_y = 6 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"wbP" = ( -/obj/item/storage/toolbox, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"wbU" = ( -/obj/structure/holohoop{ - pixel_y = 25 - }, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec) -"wbW" = ( -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"wcE" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/bluecorner/west, -/area/fiorina/station/power_ring) -"wcP" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"wcV" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/almayer/plate, -/area/fiorina/tumor/ship) -"wcW" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"wdj" = ( -/turf/open/floor/prison/darkyellow2/northwest, -/area/fiorina/station/telecomm/lz1_tram) -"wdR" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.4 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"wdT" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"wdZ" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) -"wef" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"wez" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 6 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/obj/effect/spawner/random/technology_scanner, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/park) -"weI" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/blue/southwest, -/area/fiorina/station/power_ring) -"weX" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"wfg" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/greenblue/east, -/area/fiorina/station/botany) -"wfu" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"wfP" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/central_ring) -"wfY" = ( -/obj/item/device/flashlight/flare/on, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"wfZ" = ( -/turf/open/floor/prison/damaged1/southwest, -/area/fiorina/station/lowsec) -"wgi" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "scavshipholder" - }, -/turf/open/space, -/area/fiorina/oob) -"wgu" = ( -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) -"wgv" = ( -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"wgx" = ( -/obj/item/ammo_casing{ - dir = 2; - icon_state = "casing_5" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"wgz" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"wgM" = ( -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/park) -"whf" = ( -/turf/closed/shuttle/elevator{ - dir = 4 - }, -/area/fiorina/station/civres_blue) -"whu" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/tumor/civres) -"whK" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"whT" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"wit" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"wiK" = ( -/turf/open/floor/prison/darkyellowcorners2/west, -/area/fiorina/station/telecomm/lz1_cargo) -"wiT" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"wiX" = ( -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"wjc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/card/id/gold{ - pixel_x = 2; - pixel_y = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"wjD" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco) -"wjH" = ( -/obj/item/stack/barbed_wire, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"wjO" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison, -/area/fiorina/station/park) -"wjT" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_7" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"wkd" = ( -/obj/structure/machinery/status_display, -/turf/closed/wall/prison, -/area/fiorina/station/medbay) -"wky" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"wkE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_y = 13 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"wlc" = ( -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"wly" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/lz/near_lzII) -"wlG" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"wlH" = ( -/turf/open/floor/prison/blue/northeast, -/area/fiorina/station/civres_blue) -"wlO" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/turf/open/floor/almayer, -/area/fiorina/tumor/ship) -"wmd" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/tumor/fiberbush) -"wmf" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"wmv" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"wmA" = ( -/obj/structure/machinery/power/apc/power/west, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"wnq" = ( -/obj/item/tool/match, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/lz/near_lzI) -"wnu" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 6 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"wnC" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"woE" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"woS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box/empty, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"wpx" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"wpD" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"wpF" = ( -/obj/item/device/binoculars/civ, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"wpL" = ( -/obj/item/reagent_container/food/drinks/sillycup, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"wpO" = ( -/obj/structure/machinery/door/airlock/almayer/marine{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"wpZ" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "birthday" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"wqj" = ( -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"wrr" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"wrx" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryocell2deval" - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) -"wrK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/chapel) -"wrQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"wrR" = ( -/turf/closed/wall/prison, -/area/fiorina/station/botany) -"wrT" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"wsx" = ( -/turf/open/floor/prison/greenbluecorner/north, -/area/fiorina/station/botany) -"wsA" = ( -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"wsF" = ( -/turf/open/floor/prison/greencorner/east, -/area/fiorina/tumor/civres) -"wsU" = ( -/obj/structure/prop/resin_prop{ - icon_state = "sheater0" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"wtf" = ( -/obj/structure/holohoop{ - dir = 1 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"wth" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"wtk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/storage/box/donkpockets, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"wtm" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"wtn" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/security/liaison, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/station/park) -"wtp" = ( -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/station/chapel) -"wuj" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"wut" = ( -/obj/structure/machinery/portable_atmospherics/canister/phoron, -/turf/open/floor/corsat/squares, -/area/fiorina/station/telecomm/lz1_cargo) -"wuy" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/civres_blue) -"wuz" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"wuA" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/nailgun, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"wuC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/streamer{ - dir = 9 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"wuE" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"wuJ" = ( -/obj/item/storage/toolbox, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/corsat/plate, -/area/fiorina/station/civres_blue) -"wvL" = ( -/obj/item/tool/wrench, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"wvY" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"wwp" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"wwz" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"wwD" = ( -/obj/item/weapon/twohanded/spear, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"wwI" = ( -/obj/structure/largecrate/random/case/double, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"wwM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box{ - pixel_y = 6 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"wwW" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/power_ring) -"wxb" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"wxs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"wxy" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/chapel) -"wxH" = ( -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"wxT" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "delivery_outlet"; - layer = 6; - name = "overhead ducting"; - pixel_y = 33 - }, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"wxX" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("PRISON") - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"wxZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/computer/cameras, -/turf/open/floor/plating/prison, -/area/fiorina/station/security/wardens) -"wyl" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"wyT" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"wzc" = ( -/obj/item/trash/boonie, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"wzd" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"wzn" = ( -/obj/structure/closet/wardrobe/orange, -/obj/item/clothing/gloves/boxing/blue, -/obj/item/clothing/gloves/boxing/blue, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"wzt" = ( -/obj/item/storage/pill_bottle/spaceacillin/skillless, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells) -"wzE" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/lowsec) -"wzI" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"wzK" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/prop/almayer/flight_recorder, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"wzT" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10 - }, -/obj/structure/reagent_dispensers/fueltank{ - layer = 2.6 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"wAn" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"wAz" = ( -/turf/open/floor/prison/floorscorched2, -/area/fiorina/station/security) -"wAA" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/type_b, -/obj/structure/barricade/handrail/type_b{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"wBK" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"wBX" = ( -/obj/structure/largecrate/supply/supplies, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"wBY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper/carbon, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"wCb" = ( -/turf/open/floor/prison/darkbrown2/southwest, -/area/fiorina/station/park) -"wCd" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"wCn" = ( -/obj/structure/machinery/door/airlock/almayer/marine, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"wCF" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "lavendergrass_2" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/civres_blue) -"wCN" = ( -/obj/item/paper/crumpled, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/tumor/civres) -"wDy" = ( -/obj/item/card/id/silver/clearance_badge/cl{ - desc = "Wow sorry, didn't mean to drop that in front of you, it's real, btw."; - name = "certified powerloader operator card"; - registered_name = "John Forklift" - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"wDz" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison, -/area/fiorina/station/security) -"wDB" = ( -/obj/structure/closet/crate/medical, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"wDM" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"wDO" = ( -/obj/item/disk/data, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"wEh" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/storage/briefcase, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/lz/near_lzI) -"wEw" = ( -/obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec) -"wFm" = ( -/obj/item/clothing/glasses/material, -/obj/structure/barricade/handrail, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"wFr" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"wFU" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"wGf" = ( -/obj/item/stack/rods, -/turf/open/floor/wood, -/area/fiorina/station/park) -"wGm" = ( -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"wGr" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/disco) -"wGH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/phone{ - pixel_y = -4 - }, -/obj/item/phone{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/tool/pen, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"wGI" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"wGM" = ( -/obj/item/device/taperecorder{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"wGP" = ( -/obj/structure/toilet{ - pixel_y = 4 - }, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = 2; - pixel_y = 25 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"wHa" = ( -/turf/open/floor/prison/green/northeast, -/area/fiorina/station/chapel) -"wHh" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"wHl" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"wHo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"wHp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"wHq" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"wHv" = ( -/obj/item/clothing/head/welding, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/tumor/civres) -"wHw" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/security/wardens) -"wId" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"wIk" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"wIl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"wIp" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"wIG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/turf/open/space/basic, -/area/fiorina/oob) -"wIJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer{ - icon_state = "security_det"; - name = "Shuttle control deck"; - pixel_y = 6 - }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"wJw" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/weapon/gun/rifle/m16, -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"wJO" = ( -/obj/structure/prop/structure_lattice{ - dir = 8; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/telecomm/lz1_cargo) -"wKb" = ( -/obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/wood, -/area/fiorina/station/park) -"wKm" = ( -/obj/item/stack/sheet/cardboard, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"wKo" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/prison/green/north, -/area/fiorina/station/chapel) -"wKs" = ( -/obj/item/stack/nanopaste, -/turf/open/floor/prison/blue/north, -/area/fiorina/station/civres_blue) -"wKE" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"wKH" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"wKJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/medbay) -"wKM" = ( -/obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"wLe" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/obj/item/stack/cable_coil/blue, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"wLs" = ( -/obj/item/tool/scythe, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"wLA" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/security) -"wLB" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) -"wLE" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"wLF" = ( -/turf/open/floor/prison/green/southwest, -/area/fiorina/tumor/civres) -"wLV" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"wLY" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomright" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"wLZ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"wMb" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/corsat/plate, -/area/fiorina/station/telecomm/lz1_cargo) -"wMh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"wMi" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"wMz" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/fiorina/station/security/wardens) -"wNi" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"wNV" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"wOh" = ( -/obj/item/ammo_box/magazine/misc/flares/empty{ - pixel_x = -1; - pixel_y = 7 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"wOv" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"wOH" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"wPb" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"wPi" = ( -/turf/open/floor/prison/whitepurplecorner, -/area/fiorina/station/research_cells) -"wPq" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"wPz" = ( -/turf/closed/shuttle/elevator, -/area/fiorina/station/telecomm/lz1_cargo) -"wPE" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) -"wPP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/ricepudding, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"wQr" = ( -/obj/item/stool, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) -"wQw" = ( -/obj/structure/largecrate/supply/medicine/medivend, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"wQz" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/corsat/plate, -/area/fiorina/station/civres_blue) -"wQM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"wQN" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"wQO" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"wQQ" = ( -/obj/structure/bed/roller, -/obj/effect/spawner/random/gun/rifle/highchance, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzI) -"wQR" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"wQT" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"wQW" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"wQX" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) -"wRb" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/cell_stripe/north, -/area/fiorina/station/medbay) -"wRg" = ( -/obj/item/stack/sheet/metal, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"wRp" = ( -/turf/open/floor/prison/blue, -/area/fiorina/station/chapel) -"wRP" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"wSa" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"wSe" = ( -/obj/item/trash/burger, -/turf/open/floor/prison/greenfull/east, -/area/fiorina/tumor/civres) -"wSm" = ( -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"wSp" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec) -"wSs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/skills{ - dir = 4 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"wSt" = ( -/obj/structure/monorail{ - dir = 9; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"wSD" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"wSL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/briefcase, -/turf/open/floor/prison/blue_plate/east, -/area/fiorina/station/botany) -"wTK" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"wTW" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"wUe" = ( -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/station/park) -"wUh" = ( -/turf/open/floor/prison/darkredfull2, -/area/fiorina/oob) -"wUH" = ( -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"wUI" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"wVa" = ( -/obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"wVb" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) -"wVl" = ( -/obj/item/toy/deck, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"wWs" = ( -/turf/open/floor/greengrid, -/area/fiorina/station/security) -"wWt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"wWG" = ( -/obj/item/clothing/under/marine/ua_riot, -/obj/item/weapon/gun/rifle/m16, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"wWW" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/almayer_hull, -/area/fiorina/station/medbay) -"wXf" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/under/rank/janitor, -/obj/item/clothing/suit/bio_suit/janitor, -/obj/item/clothing/head/bio_hood/janitor, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"wXy" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"wXB" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"wXR" = ( -/obj/item/trash/candle, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/maintenance) -"wYy" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"wYL" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) -"wZm" = ( -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"wZv" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/wood, -/area/fiorina/station/park) -"wZH" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"wZN" = ( -/obj/item/reagent_container/food/drinks/bottle/melonliquor, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"wZY" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"xag" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/medbay) -"xaP" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"xaR" = ( -/obj/item/paper/prison_station/inmate_handbook, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells) -"xbm" = ( -/obj/structure/machinery/line_nexter{ - id = "line2"; - pixel_x = -2 - }, -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"xbP" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"xce" = ( -/obj/item/frame/rack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"xci" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"xck" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/park) -"xcK" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) -"xcQ" = ( -/obj/item/storage/bible/hefa, -/turf/open/floor/prison/green/north, -/area/fiorina/station/chapel) -"xdb" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"xdt" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/space/basic, -/area/fiorina/oob) -"xdE" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) -"xeg" = ( -/obj/structure/machinery/vending/cigarette/free, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"xev" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/darkbrowncorners2, -/area/fiorina/tumor/aux_engi) -"xew" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_leftengine" - }, -/area/fiorina/lz/near_lzI) -"xez" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/green, -/area/fiorina/station/chapel) -"xeG" = ( -/turf/open/floor/solarpanel, -/area/fiorina/oob) -"xeO" = ( -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"xeV" = ( -/turf/open/floor/prison/greenbluecorner/west, -/area/fiorina/station/botany) -"xfb" = ( -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/structure/surface/rack, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"xfg" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"xfI" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"xgi" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/oob) -"xgm" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"xgv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/crayons, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"xgF" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"xhI" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"xhQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"xhS" = ( -/turf/open/floor/prison/darkbrown2/northeast, -/area/fiorina/maintenance) -"xir" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/clothing/gloves/combat, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells) -"xiy" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/chapel) -"xiF" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/security) -"xiK" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_tram) -"xja" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"xjf" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells) -"xjm" = ( -/obj/structure/computerframe, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"xjx" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/ammo_magazine/shotgun/beanbag, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"xjI" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"xkk" = ( -/turf/open/floor/prison/darkpurple2/southeast, -/area/fiorina/station/central_ring) -"xkv" = ( -/turf/closed/wall/prison, -/area/fiorina/station/telecomm/lz1_tram) -"xkN" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/telecomm/lz1_cargo) -"xkT" = ( -/turf/open/floor/prison/greenblue, -/area/fiorina/station/botany) -"xlp" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/fiorina/station/research_cells) -"xlT" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/medbay) -"xlZ" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/box/pillbottles, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"xme" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan27" - }, -/area/fiorina/oob) -"xmj" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/carpet, -/area/fiorina/station/security/wardens) -"xmv" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"xmw" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"xmH" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/station/park) -"xmK" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" - }, -/turf/open/floor/prison/darkpurple2/southeast, -/area/fiorina/tumor/ice_lab) -"xna" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"xno" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"xnF" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"xnU" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"xnY" = ( -/obj/item/paper, -/obj/structure/inflatable/door, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells) -"xod" = ( -/obj/item/clothing/gloves/boxing, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec) -"xoi" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"xoP" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"xoV" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/telecomm/lz1_tram) -"xoZ" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/power_ring) -"xpb" = ( -/turf/open/floor/prison/whitepurplecorner/west, -/area/fiorina/station/research_cells) -"xpx" = ( -/obj/item/storage/belt/marine, -/turf/open/floor/prison, -/area/fiorina/station/security) -"xpS" = ( -/turf/open/floor/prison/yellowcorner/north, -/area/fiorina/station/lowsec) -"xqx" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown2/southeast, -/area/fiorina/station/park) -"xqG" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"xqJ" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/prison/darkyellow2/north, -/area/fiorina/lz/near_lzI) -"xqU" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/launcher/grenade/m81, -/obj/item/storage/pill_bottle/kelotane, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"xrc" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_x = 2; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"xrd" = ( -/obj/structure/machinery/computer3/server/rack, -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"xru" = ( -/turf/open/floor/prison/darkbrowncorners2/west, -/area/fiorina/station/park) -"xrH" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"xss" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/obj/structure/closet/bombcloset, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"xst" = ( -/obj/structure/platform, -/turf/open/floor/prison/chapel_carpet, -/area/fiorina/station/chapel) -"xsv" = ( -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/station/flight_deck) -"xsS" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"xtd" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/key/cargo_train, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"xte" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/telecomm/lz1_tram) -"xtP" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/space, -/area/fiorina/oob) -"xut" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/chapel) -"xuI" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"xvv" = ( -/turf/open/floor/prison, -/area/fiorina/station/botany) -"xvx" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/station/flight_deck) -"xvB" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access{ - name = "greenhouse airlock" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"xvI" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "delivery_outlet"; - layer = 6; - name = "overhead ducting"; - pixel_y = 33 - }, -/obj/item/trash/eat, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"xwr" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/corsat/plate, -/area/fiorina/station/civres_blue) -"xwA" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"xwC" = ( -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/tumor/fiberbush) -"xwK" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"xwU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/objective, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"xwY" = ( -/obj/effect/decal/cleanable/blood/gibs/robot/up, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"xxB" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/blue/north, -/area/fiorina/station/civres_blue) -"xxD" = ( -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"xxW" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/chapel) -"xxX" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib4" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"xym" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"xyw" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"xyP" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) -"xzj" = ( -/turf/open/floor/carpet, -/area/fiorina/tumor/civres) -"xzn" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"xzD" = ( -/obj/item/stool, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"xzP" = ( -/turf/open/floor/prison/darkbrowncorners2/west, -/area/fiorina/maintenance) -"xAl" = ( -/obj/structure/cargo_container/grant/right{ - desc = "A huge industrial shipping container. You're not sure how it got here." - }, -/turf/open/space, -/area/fiorina/oob) -"xAI" = ( -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"xAV" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"xBl" = ( -/obj/structure/surface/table/woodentable, -/obj/item/circuitboard/apc, -/obj/item/tool/screwdriver{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"xBu" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"xCa" = ( -/obj/item/toy/crayon/rainbow, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"xCo" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco) -"xCt" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/oob) -"xCv" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"xCM" = ( -/turf/open/floor/prison/darkbrown2/southeast, -/area/fiorina/station/power_ring) -"xCV" = ( -/obj/item/reagent_container/food/drinks/bottle/orangejuice, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"xDq" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan20" - }, -/area/fiorina/oob) -"xDw" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"xDG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/bottle/spaceacillin{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/reagent_container/syringe{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bottle/spaceacillin{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) -"xEI" = ( -/obj/item/trash/uscm_mre, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"xFd" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"xFi" = ( -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/chapel) -"xFk" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/sprays, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) -"xFv" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"xFC" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/blue, -/area/fiorina/station/power_ring) -"xFP" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_rightengine" - }, -/area/fiorina/lz/near_lzI) -"xFZ" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"xGk" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/red/east, -/area/fiorina/station/security) -"xGt" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"xGD" = ( -/obj/structure/machinery/deployable/barrier, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/security) -"xGG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/servers) -"xGS" = ( -/obj/structure/machinery/constructable_frame, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/damaged2/southwest, -/area/fiorina/station/lowsec) -"xHn" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"xHo" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/tumor/aux_engi) -"xHE" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) -"xHV" = ( -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/tumor/civres) -"xIh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"xIk" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison/damaged1/southwest, -/area/fiorina/station/central_ring) -"xIx" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"xID" = ( -/obj/item/stool, -/obj/structure/sign/poster{ - icon_state = "poster14"; - pixel_y = 32 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec) -"xJb" = ( -/turf/open/floor/prison/darkpurple2/north, -/area/fiorina/station/disco) -"xJd" = ( -/obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) -"xJi" = ( -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/flight_deck) -"xJt" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"xJw" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/civres_blue) -"xJH" = ( -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/station/flight_deck) -"xJK" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkyellow2, -/area/fiorina/lz/near_lzI) -"xKj" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"xKn" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"xKA" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"xKX" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"xLi" = ( -/turf/closed/wall/prison, -/area/fiorina/tumor/ice_lab) -"xLj" = ( -/obj/item/reagent_container/food/drinks/bottle/patron, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"xLn" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"xLp" = ( -/obj/item/trash/chunk, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"xLr" = ( -/obj/structure/machinery/sensortower, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"xLw" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"xLK" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"xLQ" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"xLS" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"xMi" = ( -/obj/item/stack/sheet/metal, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells) -"xMO" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"xMW" = ( -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/space, -/area/fiorina/oob) -"xNm" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/security) -"xNn" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"xNV" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; - name = "\improper Fiorina Engineering Canteen Vendor" - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) -"xOy" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"xOS" = ( -/turf/open/floor/prison/green/southwest, -/area/fiorina/station/transit_hub) -"xPG" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"xQn" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"xQp" = ( -/turf/open/floor/prison/darkbrown2, -/area/fiorina/maintenance) -"xQr" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/fiberbush) -"xQz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"xQC" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"xRl" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"xRo" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"xRC" = ( -/turf/open/floor/prison/greenblue/northeast, -/area/fiorina/station/botany) -"xRT" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) -"xRU" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/oob) -"xSz" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"xSK" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkyellow2/northeast, -/area/fiorina/lz/near_lzI) -"xSN" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ship) -"xSV" = ( -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/power_ring) -"xTe" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/flight_deck) -"xTL" = ( -/obj/structure/bed/sofa/south/grey/left, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security/wardens) -"xUi" = ( -/obj/structure/surface/rack, -/obj/item/device/camera, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"xUj" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/bright_clean_marked/southwest, -/area/fiorina/station/power_ring) -"xUn" = ( -/obj/structure/machinery/door/poddoor/almayer{ - density = 0; - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"xUo" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"xUu" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/station/park) -"xUw" = ( -/obj/item/toy/crayon/mime, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"xVg" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrowncorners2/north, -/area/fiorina/station/park) -"xVp" = ( -/obj/effect/alien/weeds/node, -/turf/open/organic/grass/astroturf, -/area/fiorina/tumor/fiberbush) -"xVG" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"xVH" = ( -/obj/structure/closet/crate/medical, -/obj/item/clothing/gloves/latex, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/medbay) -"xVR" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"xWc" = ( -/obj/item/clothing/shoes/dress, -/turf/open/space, -/area/fiorina/oob) -"xXl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"xXt" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"xYa" = ( -/obj/effect/landmark{ - icon_state = "hive_spawn"; - name = "xeno_hive_spawn" - }, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/tumor/aux_engi) -"xYe" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"xYg" = ( -/obj/docking_port/stationary/marine_dropship/lz2, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"xYt" = ( -/obj/structure/sign/safety/fire_haz, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"xYL" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/telecomm/lz1_cargo) -"xZD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8; - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"xZP" = ( -/obj/item/clothing/suit/chef/classic, -/obj/structure/bed/stool, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/kitchen/southwest, -/area/fiorina/station/civres_blue) -"xZR" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"yaa" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/whitegreen/southeast, -/area/fiorina/station/medbay) -"yat" = ( -/obj/item/inflatable/door, -/obj/item/inflatable/door, -/obj/item/inflatable/door, -/obj/structure/surface/rack, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"yaC" = ( -/turf/open/floor/prison/darkbrown2/north, -/area/fiorina/station/park) -"yaJ" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"yaY" = ( -/obj/item/stack/sheet/metal, -/turf/open/space, -/area/fiorina/oob) -"yaZ" = ( -/obj/item/storage/bible/hefa{ - pixel_y = 3 - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) -"ybc" = ( -/obj/effect/landmark{ - icon_state = "hive_spawn"; - name = "xeno_hive_spawn" - }, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"ybg" = ( -/obj/item/stack/rods/plasteel, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"ybj" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/lz/near_lzII) -"ybm" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"ybq" = ( -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkbrownfull2, -/area/fiorina/maintenance) -"ybx" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/botany) -"ybU" = ( -/obj/structure/prop/resin_prop{ - icon_state = "sheater0" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"ycC" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"ycD" = ( -/obj/item/stack/sandbags, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/power_ring) -"ycK" = ( -/obj/item/storage/pouch/radio, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"ydb" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"ydx" = ( -/obj/item/tool/match, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"yeA" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"yeE" = ( -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells) -"yeX" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"yfk" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) -"yfm" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/civres) -"yfq" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/reagent_container/glass/bottle/robot/antitoxin, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"yfE" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"yfQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) -"ygi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) -"ygs" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"ygw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer{ - icon_state = "security_det"; - name = "Shuttle control deck"; - pixel_y = 6 - }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"yhn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"yhu" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"yhw" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells) -"yhR" = ( -/obj/structure/sign/prop3{ - desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." - }, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/medbay) -"yic" = ( -/obj/structure/machinery/bot/medbot{ - name = "Dr. O" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"yif" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"yio" = ( -/turf/closed/shuttle/ert, -/area/fiorina/tumor/aux_engi) -"yis" = ( -/obj/structure/pipes/standard/tank{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"yiz" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/bluecorner/west, -/area/fiorina/station/power_ring) -"yiK" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"yiV" = ( -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_cargo) -"yjJ" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = 4 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells) -"ykb" = ( -/obj/structure/prop/resin_prop{ - icon_state = "rack" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/aux_engi) -"yke" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec) -"ykw" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"yky" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"ykO" = ( -/obj/structure/ice/thin/indestructible{ - icon_state = "Corner" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/tumor/ice_lab) -"ykQ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"ykX" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"ylf" = ( -/obj/effect/decal/hefa_cult_decals/d32, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) -"yli" = ( -/obj/structure/sign/prop3{ - desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." - }, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/central_ring) -"yll" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkyellow2/southwest, -/area/fiorina/station/telecomm/lz1_tram) -"ylu" = ( -/obj/item/tool/wrench, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"ylD" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/botany) -"ymh" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/darkyellow2/west, -/area/fiorina/lz/near_lzI) - -(1,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xwC -kPz -bQM -bQM -bQM -bQM -kPz -kPz -bQM -bQM -bQM -bQM -bQM -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(2,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xwC -xwC -xwC -xwC -bQM -bQM -bQM -bQM -xwC -kPz -bQM -bQM -bQM -bQM -kPz -xwC -bQM -bQM -bQM -bQM -bQM -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(3,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xwC -xwC -xwC -gwH -gwH -tfP -tfP -tfP -tfP -bQM -bQM -xwC -kPz -bQM -bQM -bQM -bQM -kPz -xwC -bQM -bQM -bQM -bQM -bQM -kPz -xwC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(4,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -bQM -bQM -bQM -bQM -bQM -bQM -xwC -xwC -xwC -gwH -gwH -gwH -gwH -gwH -gwH -tfP -tfP -tfP -xwC -xwC -xwC -bQM -bQM -bQM -kPz -xwC -xwC -bQM -bQM -bQM -xwC -xwC -kPz -bQM -pqO -eVO -eVO -seW -eVO -eVO -vPR -bQM -bQM -bQM -bQM -bQM -wgi -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(5,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xHV -xHV -xHV -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xwC -xwC -xwC -xwC -xwC -gwH -gwH -gwH -gwH -gwH -gwH -gwH -gwH -gwH -tfP -tfP -tfP -xwC -xwC -bQM -bQM -xwC -kPz -xwC -xwC -bQM -bQM -xwC -xwC -kPz -bQM -byb -wbE -tAb -uVn -krQ -hWM -uZA -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(6,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xHV -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -tYw -tYw -tYw -tYw -tYw -tYw -tYw -tYw -tYw -xHV -xwC -xwC -xwC -xwC -xwC -gwH -gwH -oUE -wgv -wgv -wgv -gwH -gwH -gwH -gwH -gwH -tfP -xwC -xwC -bQM -bQM -xwC -kPz -xwC -xwC -bQM -xwC -xwC -xwC -xwC -bQM -byb -fiU -imt -qtQ -fiU -aCC -cEz -eVO -vPR -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(7,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xHV -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -tYw -xwC -xwC -xwC -xwC -tfP -gwH -gwH -wgv -kbT -rHr -jjM -xVp -tAX -gwH -gwH -gwH -gwH -xwC -xwC -xwC -xwC -xwC -xwC -xwC -xwC -xwC -xwC -pqO -eVO -eVO -seW -oxA -ihz -uir -pGH -jXk -vxs -dqN -oJL -pWp -vPR -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -baC -baC -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(8,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xHV -xHV -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -xHV -xHV -xHV -gCE -xHV -xHV -xHV -xHV -xHV -dHd -kow -kow -kow -tfP -tfP -gwH -gwH -wgv -kbT -jjM -kbT -jjM -kbT -wgv -wgv -gwH -gwH -gwH -gwH -xwC -xwC -xwC -xwC -xwC -xwC -xwC -pqO -oxA -ozd -ggc -uVn -opZ -edA -imt -jXk -tCV -uVR -uVn -jfk -iPP -pWp -gLu -vzU -bVZ -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(9,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xHV -xHV -xHV -xHV -xHV -xHV -xHV -dXG -xHV -xHV -xHV -xHV -xHV -jdu -eNo -eNo -eNo -eNo -eNo -sUl -wgv -wgv -wgv -kbT -kbT -wgv -wgv -kbT -kbT -xVp -cLP -rHr -ybm -ybm -ybm -wgv -gwH -gwH -gwH -tfP -xwC -xwC -bQM -xwC -xwC -pqO -oxA -uDh -ouH -fiU -wcV -imt -fiU -jfk -hWF -fiU -fiU -hWF -fiU -jfk -anq -ecQ -aOc -klp -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(10,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xHV -xHV -xHV -xHV -xHV -xHV -dXG -dIo -eNo -dXG -gDZ -reL -wLF -gDZ -sWx -gDZ -lRX -gDZ -lRX -rsM -sUl -kVg -kbT -kbT -kbT -kbT -kbT -ejt -kbT -iGX -wgv -wgv -kbT -ybm -xwC -ybm -kbT -wgv -krz -wgv -kow -bQM -bQM -bQM -pqO -eVO -oxA -oOV -fiU -imt -imt -uVn -jfk -vJN -aMh -uVn -lrE -wlO -jXk -imt -ggc -uZA -xwC -xwC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(11,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xHV -xHV -xHV -xHV -xHV -dXG -dXG -dIo -eNo -dXG -hLI -dXG -pIl -ite -sWx -ite -lRX -ite -jmU -ite -aEi -pRH -wgv -wgv -tAX -wgv -wgv -kbT -kbT -ybc -wgv -wgv -kbT -ybm -xwC -ybm -kbT -kbT -kbT -wgv -kow -bQM -bQM -bQM -byb -fSE -ifJ -imt -fiU -fiU -jfk -uVn -qHG -fJW -jfk -pGH -vxs -ddA -oxA -imt -skX -uZA -xwC -xwC -xwC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -baC -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(12,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xHV -xHV -xHV -xHV -dIo -dIo -dIo -dXG -dIo -iTW -dXG -ite -dXG -yfm -eNo -jdu -eNo -eNo -eNo -eNo -gMe -sUl -kbT -oUE -wgv -wgv -wgv -wgv -wgv -wgv -wgv -rHr -jjM -rHr -ybm -ybm -ybm -kbT -kbT -kbT -eTL -kow -bQM -bQM -bQM -jhG -nTq -lUi -oOV -jfk -imt -imt -hWF -jfk -tlq -lUE -qtQ -imt -imt -aAf -imt -tCV -uZA -xwC -xwC -xwC -xwC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -baC -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(13,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xHV -xHV -xHV -xHV -dIo -dXG -dIo -dXG -dIo -eNo -eNo -qXM -lRX -eNo -naW -sLx -xHV -clu -eNo -xHV -xHV -dHd -kow -kow -kow -tfP -tfP -tfP -auV -sMc -sMc -cLP -jyM -jjM -wgv -kbT -kbT -kbT -kbT -wgv -fad -tfP -xwC -xwC -bQM -xwC -xwC -jhG -lUi -nrH -fiU -fiU -uVn -kwb -kXR -bAg -uVn -uMq -kRN -fiU -bRb -fiU -pWp -gLu -vzU -bVZ -xwC -xwC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(14,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xHV -xHV -xHV -xHV -xHV -lfg -lfg -dIo -dIo -dIo -was -eNo -dXG -lRX -eNo -naW -xHV -fNE -dBX -dBX -dBX -xHV -naW -bQM -bQM -bQM -bQM -tfP -tfP -eHp -sMc -sMc -xVp -cLP -xVp -wgv -kbT -kbT -kbT -kbT -kbT -wgv -xwC -xwC -xwC -xwC -xwC -xwC -xwC -jhG -lUi -mGB -anq -bso -jzt -nTq -jzt -bso -lUi -jfk -jfk -jfk -jfk -anq -ecQ -aOc -klp -xwC -xwC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -baC -cbN -cbN -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(15,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -aWV -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -tYw -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xHV -xHV -xHV -xHV -xHV -xHV -xHV -dXG -dXG -dXG -clu -dXG -dXG -eNo -eNo -dXG -lRX -xHV -naW -xHV -naW -wxT -dBX -iEP -naW -xHV -xHV -kPz -kPz -kPz -kPz -tfP -tfP -oRG -akq -wgv -wgv -wgv -kbT -kbT -wgv -wgv -kbT -kbT -kbT -wgv -gwH -gwH -gwH -gwH -xwC -xwC -xwC -jhG -nTq -gUj -xSN -uXD -aEW -uXD -xSN -jhG -jhP -daO -nco -iOg -gUj -xwC -xwC -xwC -xwC -xwC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -baC -cbN -baC -cbN -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(16,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -aWV -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -tYw -bQM -bQM -bQM -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -dXG -pNI -dXG -clu -dXG -dXG -uVZ -eNo -dXG -lRX -xHV -xHV -dMM -fNE -dBX -lLe -dBX -dBX -jss -xHV -bQM -bQM -bQM -bQM -tfP -tfP -tfP -tfP -wgv -wgv -oUE -kbT -nNZ -gwH -gwH -nQi -wgv -kbT -wgv -wgv -gwH -gwH -gwH -xwC -xwC -xwC -xwC -xwC -kXA -xSN -kNN -aEW -uXD -xSN -kXA -cTr -kbT -kbT -kbT -kXA -xwC -xwC -xwC -xwC -xwC -xwC -xwC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -baC -cbN -cbN -cbN -cbN -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(17,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -aWV -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -tYw -bQM -xHV -xHV -tYw -tYw -tYw -tYw -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -eNo -dXG -dXG -dXG -dIo -dIo -dIo -dIo -dXG -eNo -lLe -lRX -xHV -xHV -naW -naW -dBX -lLe -dBX -naW -xHV -xHV -kPz -kPz -kPz -kPz -kPz -kPz -tfP -tfP -kbT -wgv -wgv -wgv -gwH -gwH -gwH -gwH -gwH -wgv -wgv -wgv -wgv -wgv -tAX -xwC -wgv -tUd -wgv -sMc -sMc -hLM -oAJ -tfP -oAJ -hLM -pBq -kbT -kbT -jRf -kbT -kbT -kbT -gwH -gwH -xwC -xwC -xwC -xwC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -baC -baC -baC -baC -cbN -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(18,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -aWV -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -tYw -bQM -bQM -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -lRX -clu -clu -dIo -xHV -xHV -gDZ -lRX -gDZ -lRX -dXG -eNo -dXG -efY -efY -dBX -dBX -dBX -wCN -xHV -xHV -xHV -bQM -bQM -bQM -bQM -bQM -bQM -tfP -kbT -wgv -wgv -wgv -tfP -xwC -xwC -xwC -gwH -gwH -wgv -wgv -kbT -kbT -wgv -vBS -sMc -sMc -sMc -wgv -wgv -kbT -kbT -kbT -sMc -sMc -kbT -sMc -kbT -kbT -kbT -rUA -wgv -qVk -gwH -gwH -xwC -xwC -xwC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -baC -baC -baC -baC -baC -cbN -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(19,1,1) = {" -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -agi -aWV -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -tYw -bQM -xHV -tYw -xHV -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -dIo -eNo -eNo -dXG -clu -dXG -dIo -xHV -lRX -ite -lRX -ite -lRX -lRX -eNo -dXG -dBX -dBX -dBX -dBX -xHV -xHV -xHV -bQM -xHV -bQM -bQM -bQM -bQM -bQM -bQM -kow -kbT -wgv -kbT -kbT -kow -bQM -bQM -xwC -xwC -gwH -gwH -wgv -sMc -kbT -kbT -vBS -sMc -sMc -sMc -wgv -wgv -wgv -wgv -wgv -wgv -wgv -kbT -xwC -xwC -xwC -xwC -kbT -wgv -krz -gwH -gwH -gwH -xwC -xwC -jlk -jlk -bQM -bQM -bQM -bQM -bQM -bQM -bQM -jlk -bQM -bQM -bQM -kPz -bQM -baC -cbN -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(20,1,1) = {" -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -agi -agi -agi -agi -aWV -agi -agi -bQM -bQM -bQM -bQM -bQM -bQM -tYw -xHV -xHV -tYw -xHV -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -dIo -lRX -lRX -lRX -dIo -dXG -lfg -eNo -whu -whu -whu -eNo -lRX -lRX -fgm -naW -naW -naW -clu -clu -naW -naW -bQM -bQM -xHV -kPz -kPz -kPz -kPz -kPz -kPz -kow -kbT -wgv -kbT -kbT -kow -bQM -bQM -bQM -xwC -xwC -gwH -gwH -nNZ -kbT -wgv -xwC -ogM -ogM -xwC -wgv -btc -wgv -wgv -jBI -wgv -wgv -wgv -tAX -wgv -kbT -kbT -kbT -kbT -kbT -nNZ -gwH -gwH -xwC -xwC -jlk -jlk -jlk -bQM -bQM -bQM -bQM -bQM -bQM -jlk -jlk -bQM -bQM -kPz -jlk -baC -cbN -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(21,1,1) = {" -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -aWV -aWV -aWV -aWV -aWV -aWV -aWV -aWV -aWV -aWV -aWV -agi -aWV -agi -agi -agi -bQM -bQM -bQM -bQM -agi -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -dIo -iTW -eNo -eNo -pwL -oKq -eNo -gDZ -lRX -gDZ -lRX -gDZ -lRX -lRX -eNo -naW -xHV -xHV -dBX -mzd -bkd -xHV -xHV -bQM -xHV -bQM -bQM -bQM -bQM -bQM -bQM -kow -kbT -kbT -kbT -kbT -kow -bQM -bQM -bQM -bQM -xwC -gwH -gwH -wgv -kbT -kbT -ogM -kbT -kbT -sMc -wgv -wgv -sMc -kbT -kbT -sMc -sMc -kbT -ccB -wgv -wgv -kXA -kbT -kbT -kbT -kbT -gwH -gwH -xwC -xwC -jlk -jlk -jlk -jlk -jlk -jlk -bQM -bQM -bQM -jlk -rZP -lHx -lHx -lHx -rZP -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(22,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -agi -agi -agi -agi -agi -agi -aWV -agi -agi -agi -agi -agi -agi -agi -agi -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -dXG -xHV -lRX -xHV -xHV -dIo -lRX -lRX -lRX -dXG -dXG -eNo -ite -lRX -ite -lRX -ite -dXG -lRX -eNo -xHV -xHV -xHV -wCN -dBX -dBX -naW -naW -xHV -xHV -bQM -bQM -bQM -kPz -bQM -bQM -hLM -sqx -sqx -sqx -sqx -hLM -xwC -bQM -bQM -bQM -xwC -xwC -xwC -rve -wgv -kbT -ogM -kbT -kbT -sMc -wgv -wgv -sMc -kXA -xwC -xwC -sMc -xwC -wgv -wgv -wgv -wgv -wgv -gwH -gwH -wgv -gwH -gwH -xwC -xwC -jlk -jlk -jlk -jlk -jlk -rZP -lHx -lHx -lHx -jlk -jlk -ePD -dQt -ePD -jlk -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(23,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -aWV -agi -agi -agi -bQM -bQM -agi -agi -agi -agi -agi -agi -agi -agi -aWV -agi -agi -agi -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -lLe -eNo -lRX -xHV -xHV -dIo -eNo -eNo -eNo -dXG -dXG -dXG -eNo -xHV -dIo -xHV -eNo -dXG -lRX -xHV -naW -naW -naW -pCS -jSD -dBX -gfW -jss -xHV -xHV -kPz -kPz -kPz -kPz -kPz -tfP -tfP -rec -wgv -wgv -wgv -tfP -tfP -xwC -xwC -rkR -bQM -xwC -xwC -xwC -krz -wgv -vBS -sMc -kbT -kbT -wgv -wgv -tfP -xwC -xwC -xwC -xwC -xwC -pSg -uVP -wgv -jjq -wgv -gwH -gwH -kbT -xwC -xwC -xwC -xwC -jlk -jlk -jlk -jlk -vZV -vZV -mkI -vhp -txP -jlk -jlk -lDB -dQt -lDB -jlk -jlk -rZP -rZP -rZP -cbN -cbN -cbN -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(24,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -agi -aWV -agi -agi -bQM -bQM -bQM -bQM -agi -agi -agi -agi -bQM -bQM -agi -aWV -aWV -aWV -aWV -tYw -tYw -tYw -tYw -tYw -tYw -tYw -tYw -tYw -tYw -tYw -tYw -tYw -tYw -tYw -tYw -tYw -tYw -tYw -tYw -tYw -dIo -lRX -lRX -lRX -dXG -lRX -lRX -eNo -lRX -lRX -lRX -dXG -dXG -xHV -xHV -xHV -xHV -xHV -eNo -lRX -lRX -xHV -naW -lwj -fNE -dBX -jSD -bAk -naW -xHV -xHV -bQM -bQM -bQM -bQM -tfP -tfP -tfP -kXA -wgv -wgv -wgv -wgv -kXA -gwH -gwH -xwC -xwC -bQM -bQM -xwC -xwC -gwH -gwH -xwC -wgv -sMc -sMc -kbT -wgv -xwC -gwH -gwH -tfP -tfP -tfP -pSg -aEE -wgv -kXA -kbT -kbT -sMc -sMc -sMc -sMc -fad -xwC -cqi -qBm -aoz -jlk -vZV -uda -dSV -mar -lDB -jlk -mMQ -dSV -dQt -dSV -lDB -ePD -lHx -bQM -bQM -cbN -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(25,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -agi -aWV -agi -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -bQM -bQM -bQM -aWV -agi -agi -agi -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -tYw -xHV -xHV -dIo -iTW -lLe -dXG -lRX -lLe -dXG -dXG -eNo -eNo -eNo -xHV -xHV -xHV -xHV -xHV -xHV -xHV -eNo -dXG -lRX -xHV -naW -naW -naW -wxT -dBX -dBX -gGh -xHV -kPz -kPz -kPz -kPz -gwH -tfP -kPY -gwH -gwH -wgv -wgv -wgv -wgv -wgv -gwH -gwH -gwH -xwC -xwC -bQM -bQM -xwC -xwC -xwC -tfP -tfP -ibf -kbT -kbT -wgv -aYa -gwH -gwH -gwH -gwH -tfP -pSg -xwC -wgv -sMc -sMc -wgv -wgv -sMc -kbT -kbT -kbT -vBS -cdq -mdj -mpQ -rGq -taj -lzq -rGq -ujL -taj -knh -dQt -dQt -dQt -squ -dQt -dQt -lHx -bQM -bQM -cbN -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(26,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -agi -aWV -agi -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -agi -bQM -bQM -aWV -agi -agi -agi -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -tYw -xHV -xHV -dIo -alx -eNo -dXG -lRX -dXG -dXG -dXG -dXG -dXG -dXG -xHV -xHV -xHV -xHV -xHV -xHV -doD -doD -doD -lRX -xHV -naW -lwj -fNE -dBX -dBX -dBX -xHV -naW -bQM -bQM -bQM -gwH -gwH -gwH -gwH -gwH -gwH -wgv -wgv -wgv -wgv -wgv -dff -gwH -gwH -gwH -xwC -bQM -bQM -bQM -xwC -tfP -gwH -gwH -fsk -kbT -kbT -wgv -wgv -pxw -wgv -gwH -gwH -tfP -dwQ -dwQ -sMc -dwQ -dwQ -sMc -dwQ -dwQ -kbT -dwQ -dwQ -ogM -cdq -lyf -dSV -rOI -taj -taj -taj -taj -taj -knh -dSV -dSV -dQt -dSV -lDB -prx -lHx -bQM -bQM -cbN -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(27,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -agi -aWV -agi -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -agi -bQM -bQM -aWV -agi -agi -agi -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -tYw -xHV -xHV -dIo -dIo -alx -eNo -lRX -eNo -eNo -dXG -izB -lRX -lRX -dIo -lfg -qgB -qoG -dIo -dXG -dXG -dXG -lRX -ame -eNo -naW -naW -xHV -eNo -dXG -eNo -xHV -dHd -kow -kow -kow -tfP -gwH -tfP -gwH -gwH -kXA -wgv -oUE -wgv -wgv -kXA -wgv -wgv -kXA -gwH -tfP -kow -kow -kow -tfP -tfP -gwH -gwH -wgv -kbT -kbT -wgv -wgv -vFY -ycK -wgv -wgv -wgv -sMc -sMc -wgv -sMc -sMc -sMc -krz -sMc -sMc -sMc -sMc -ogM -cdq -mdj -uNM -taj -rGq -lSb -vbV -jlk -taj -knh -rGq -dSV -dQt -dSV -taj -nvK -rZP -bQM -baC -cbN -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(28,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -bQM -bQM -bQM -bQM -agi -agi -cAW -cAW -cAW -cAW -cAW -aWV -cAW -cAW -cAW -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -dIo -dIo -dIo -dIo -xHV -xHV -eNo -dXG -eNo -eNo -dIo -dIo -xHV -avY -dIo -dXG -lfg -dXG -gDZ -wLF -eNo -reK -eNo -eNo -eNo -eNo -eNo -eNo -sUl -wgv -tUd -tUd -wgv -gwH -kXA -gwH -kXA -nNZ -wgv -wgv -kbT -wgv -jjq -wgv -wgv -wgv -tUd -wgv -wgv -wgv -kbT -wgv -wgv -wgv -wgv -kbT -wgv -wgv -wgv -krz -wgv -wgv -fpB -kbT -kbT -sMc -xQr -sMc -sMc -xwC -xwC -xwC -xwC -ogM -ogM -ogM -xwC -cdq -mdj -uNM -yhu -yhu -yhu -yhu -uNM -jlk -jlk -rZP -ykb -dQt -dSV -taj -dpH -jlk -baC -baC -cbN -cbN -cbN -cbN -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(29,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -bQM -agi -agi -agi -agi -cAW -cAW -cAW -cAW -cAW -aWV -cAW -cAW -cAW -tYw -xHV -xHV -tYw -tYw -tYw -tYw -tYw -tYw -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -dIo -lRX -lRX -lRX -lfg -xHV -xHV -xHV -xHV -dXG -dXG -dXG -hLI -lOH -wLF -gDZ -lRX -gDZ -lRX -gDZ -lRX -gDZ -sUl -wgv -wgv -oUE -wgv -wgv -wgv -wgv -wgv -wgv -wgv -ibB -kbT -wgv -wgv -wgv -wgv -wgv -wgv -wgv -wgv -wgv -kbT -kbT -kbT -kbT -kbT -kbT -wgv -wgv -wgv -kbT -kbT -kbT -wgv -krz -wgv -tfP -tfP -wmd -xwC -xwC -xwC -xwC -xwC -sMc -sMc -sMc -ogM -cdq -jaq -kYy -kYy -kYy -kYy -kYy -kYy -jlk -jlk -rZP -ykb -dQt -dSV -taj -hNU -jlk -baC -baC -baC -baC -baC -pcu -iWq -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(30,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -agi -agi -agi -agi -agi -cAW -cAW -cAW -cAW -cAW -aWV -agi -agi -agi -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -tYw -xHV -xHV -dXG -xHV -xHV -xHV -xHV -xHV -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -dIo -eNo -eNo -eNo -dXG -xHV -xHV -xHV -xHV -xHV -xHV -xHV -ite -cWZ -pIl -ite -lRX -ite -lRX -ite -lRX -ite -sUl -wgv -wgv -wgv -wgv -wgv -wgv -wgv -wgv -wgv -wgv -kbT -wgv -wgv -tAX -wgv -wgv -wgv -wgv -wgv -wgv -tAX -wgv -kbT -kbT -kbT -kbT -wgv -wgv -kbT -kbT -kbT -kbT -wgv -oUE -gwH -gwH -tfP -xwC -xwC -xwC -xwC -wgv -wgv -wgv -kbT -kbT -kbT -ogM -ubL -opC -qbd -opC -opC -opC -opC -opC -eaR -mdj -rZP -ykb -dQt -dSV -taj -dxE -jlk -baC -baC -baC -baC -bTo -pcu -iWq -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(31,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -aWV -aWV -agi -bQM -bQM -cAW -cAW -cAW -cAW -agi -aWV -agi -agi -agi -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -dXG -mzk -eNo -mzk -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -dIo -dXG -qXM -eNo -xHV -gCE -xHV -gCE -xHV -xHV -xHV -xHV -sIC -dXG -qXM -eNo -lRX -lRX -lRX -eNo -eNo -eNo -sUl -wgv -nQi -nQi -wgv -nSJ -wgv -wgv -wgv -wgv -wgv -wgv -wgv -wgv -wgv -wgv -wgv -wgv -qVk -vnZ -wgv -wgv -wgv -jdE -xwC -xwC -xwC -qSE -wgv -wgv -kbT -kbT -kbT -nNZ -gwH -gwH -gwH -tfP -xwC -xwC -xwC -xwC -fad -wgv -wgv -kbT -kbT -wgv -ndf -dSV -fpn -fpn -dSV -fpn -fpn -dSV -lyf -cdq -vqO -rZP -jlk -dQt -dSV -bfF -rGq -rZP -baC -baC -baC -bQM -bTo -pcu -iWq -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(32,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -agi -bQM -bQM -cAW -aWV -aWV -aWV -aWV -aWV -aWV -aWV -aWV -tYw -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -lfg -oWn -eNo -oWn -xHV -xHV -xHV -qgi -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -xHV -dIo -dXG -dXG -eNo -xHV -xHV -xHV -xHV -xHV -dXG -eNo -eNo -sIC -dXG -dXG -eNo -lRX -xHV -xHV -xHV -xHV -eNo -dHd -kow -kow -kow -tfP -tfP -tfP -dQC -dQC -wgv -wgv -wgv -wgv -wgv -wgv -nNZ -gwH -kXA -tfP -tfP -kow -kow -kow -tfP -tfP -xwC -xwC -xwC -wgv -wgv -kbT -kbT -wgv -wgv -gwH -gwH -gwH -wmd -xwC -xwC -wgv -wgv -wgv -sMc -wgv -kbT -kbT -wgv -xwC -jlk -jlk -jlk -jlk -jlk -jlk -jlk -dSV -cdq -mdj -rZP -jlk -jlk -dSV -bfF -rGq -rZP -baC -swg -fQV -fQV -fyC -qOk -mKS -fQV -fQV -erT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(33,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -agi -bQM -bQM -cAW -agi -agi -aWV -agi -agi -agi -agi -agi -tYw -xHV -xHV -xHV -xHV -xHV -xHV -lRX -lRX -lRX -lRX -eNo -mzk -eNo -oWn -xHV -xHV -xHV -qgi -xHV -dIo -dIo -dIo -dIo -dIo -dIo -dIo -dIo -eNo -dXG -lRX -eNo -xHV -xHV -xHV -xHV -dXG -dXG -qXM -dXG -dXG -dXG -dXG -eNo -lRX -nYo -xHV -xHV -xHV -xHV -naW -bQM -bQM -bQM -bQM -tfP -tfP -kPY -iCF -oUE -wgv -wgv -wgv -wgv -kXA -gwH -gwH -gwH -tfP -bQM -bQM -bQM -bQM -bQM -tfP -tfP -xwC -xwC -pSg -btc -kbT -kbT -kbT -kbT -wgv -wgv -gwH -gwH -xwC -wgv -wgv -sMc -kbT -kbT -kbT -sMc -kbT -gwH -gwH -rZP -rZP -rZP -rZP -rZP -jlk -jlk -dcL -hrS -vjX -rZP -jlk -jlk -dSV -bfF -rGq -lHx -bQM -bTo -xeG -xeG -xeG -hkh -xeG -xeG -xeG -iWq -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(34,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -agi -agi -agi -agi -agi -aWV -agi -jXz -jXz -jXz -jXz -jXz -jXz -jXz -xHV -xHV -xHV -lRX -eNo -eNo -eNo -lRX -dXG -oWn -dXG -oWn -lfg -eNo -eNo -nIc -cmP -dIo -xHV -xHV -xHV -eNo -eNo -eNo -eNo -eNo -dXG -dXG -eNo -xHV -xHV -xHV -xHV -dXG -dXG -eNo -sIC -sIC -eNo -dXG -eNo -lRX -lRX -xHV -xHV -xHV -xHV -naW -bQM -bQM -bQM -bQM -bQM -tfP -kPY -dQC -nNZ -wgv -wgv -wgv -wgv -gwH -gwH -gwH -tfP -tfP -rZP -lHx -lHx -lHx -tfP -tfP -xwC -xwC -xwC -wgv -wgv -kbT -kbT -kbT -kbT -btc -wgv -wgv -gwH -gwH -wgv -sMc -kbT -kbT -kbT -kbT -qJr -wgv -gwH -gwH -jlk -xKj -xKj -xKj -jlk -jlk -jlk -dSV -cdq -mdj -rZP -jlk -jlk -anJ -vsT -rGq -lHx -bQM -bTo -xeG -xeG -xeG -pcu -xeG -xeG -xeG -iWq -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(35,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -aWV -agi -agi -agi -agi -agi -agi -aWV -agi -jXz -adW -eEb -jXz -jRA -adW -jXz -bQH -xHV -xHV -txc -eNo -eNo -eNo -lRX -dXG -oWn -dXG -dXG -dXG -dXG -vwt -fii -yis -dIo -eNo -eNo -eNo -lRX -lRX -dXG -lRX -lRX -lRX -lRX -dXG -xHV -xHV -xHV -lfg -dXG -dXG -dXG -xHV -lfg -xHV -lfg -eNo -lRX -lRX -lRX -xHV -xHV -xHV -pqC -bQM -bQM -bQM -bQM -xHV -tfP -tfP -kPY -mnr -hbS -hbS -hbS -hbS -mnr -uNM -uNM -rZP -mHR -uNM -rGq -rGq -rGq -uNM -uNM -rZP -rZP -uNM -uNM -kbT -kbT -kbT -kbT -kPY -kPY -kbT -kbT -kbT -sMc -sMc -kbT -kbT -kbT -kbT -wgv -wgv -wgv -gwH -rZP -jlk -xKj -jlk -xKj -rGq -nPx -rGq -dSV -cdq -vqO -rZP -jlk -jlk -rGq -rGq -rGq -lHx -bQM -bTo -xeG -xeG -xeG -hkh -xeG -xeG -xeG -iWq -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(36,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -aWV -aWV -aWV -aWV -aWV -agi -agi -agi -agi -jXz -dGv -eEb -jXz -vvv -udl -jXz -bQH -xHV -xHV -lRX -eNo -eNo -eNo -lRX -dXG -lLe -dXG -dXG -dXG -dXG -eNo -lbt -dXG -lfg -dXG -dXG -lRX -dXG -qXM -dXG -lLe -dXG -dXG -dXG -lLe -lRX -eNo -xHV -eNo -dXG -lLe -dXG -clu -dXG -clu -dXG -eNo -izB -lRX -lRX -oEe -xHV -xHV -pqC -bQM -bQM -bQM -xHV -xHV -dIo -uNM -uNM -uNM -dQt -dQt -dQt -dQt -uNM -uNM -uNM -uNM -taj -taj -taj -taj -taj -taj -taj -taj -pLj -taj -iQJ -tCq -tCq -tCq -tCq -iQJ -uNM -qJr -kbT -qJr -kbT -sMc -kbT -kbT -wgv -kbT -wgv -gwH -gwH -xwC -rZP -jlk -xKj -xKj -xKj -rGq -rGq -bDU -dSV -fNq -mdj -rZP -jlk -nPx -rGq -osX -rGq -rZP -baC -aKA -jlH -jlH -tWI -llQ -jKI -jlH -jlH -bUB -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(37,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -aWV -agi -agi -agi -agi -agi -agi -agi -agi -jXz -jXz -jJp -jXz -jJp -jXz -jXz -pty -xHV -xHV -lRX -lRX -lRX -lRX -dXG -eNo -oWn -eNo -oWn -lfg -dXG -dXG -lbt -dXG -dXG -dXG -dXG -dXG -dXG -alx -eNo -lRX -eNo -dXG -eHD -dXG -dXG -dXG -lRX -sIC -qXM -dXG -dXG -xHV -dXG -xHV -lfg -eNo -lRX -lRX -lRX -eNo -oEe -xHV -naW -naW -naW -xHV -xHV -xHV -xHV -jlk -uNM -uNM -cdq -rGq -rOI -jaq -kYy -kYy -lXT -kYy -qBm -rGq -rGq -rGq -rGq -jlk -rZP -xKj -xKj -xKj -dSV -dSV -dSV -dSV -dSV -dSV -jlk -tfP -kbT -kbT -kbT -kbT -kbT -kbT -wgv -xwC -xwC -gwH -gwH -xwC -rZP -jlk -xKj -jlk -xKj -rGq -rGq -rGq -dSV -cdq -mdj -jlk -jlk -rGq -rGq -bfF -bDU -rZP -baC -baC -baC -bQM -bTo -pcu -iWq -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(38,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -aWV -agi -agi -hWB -agi -agi -agi -agi -mjx -eCX -lIi -jRU -lIi -jRU -lIi -eCX -lIi -jRU -dXG -eNo -eNo -eNo -dXG -xHV -eNo -oWn -eNo -oWn -dXG -wKE -dXG -lbt -dXG -dXG -dXG -dXG -eNo -alx -dIo -oWn -oWn -dIo -dIo -dIo -obI -dxP -dXG -lRX -dXG -dXG -sIC -eNo -lfg -dXG -dXG -dXG -eNo -lRX -lRX -lRX -eNo -eNo -eNo -xHV -xHV -xHV -xHV -xHV -xHV -xHV -jlk -uNM -uNM -cdq -fpn -fpn -taj -fpn -taj -fpn -fpn -mdj -aoz -rGq -rGq -dSV -dSV -dSV -qwP -jlk -qwP -dSV -dSV -dSV -dSV -aoz -dSV -jlk -jlk -jlk -knh -knh -jlk -kbT -kbT -kbT -xwC -xwC -xwC -xwC -xwC -rZP -jlk -xKj -xKj -xKj -rGq -rGq -gJu -oWc -dzK -mdj -rGq -knh -rGq -rGq -bfF -rGq -jlk -baC -baC -baC -baC -baC -pcu -iWq -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(39,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -agi -agi -pkY -qHZ -pkK -ngr -hoZ -mjx -jRU -svm -jRU -svm -jRU -svm -jRU -svm -jRU -dXG -dXG -dXG -dXG -xHV -xHV -xHV -oWn -eNo -oWn -dXG -dXG -dXG -lbt -dXG -lLe -dXG -dXG -dXG -lRX -oWn -oWn -dbj -dIo -qVa -oWn -dCu -lRX -dXG -dXG -dXG -dXG -sIC -dIo -dIo -lfg -dIo -dIo -eNo -lRX -lRX -lRX -gDZ -lRX -gDZ -nqE -wLF -xHV -dIo -naW -xHV -xHV -jlk -uNM -uNM -ubL -opC -hjJ -opC -opC -opC -opC -eaR -mdj -dSV -dSV -dSV -dSV -dSV -dSV -qwP -qwP -ojO -cNm -xHo -cNm -dQt -dSV -dSV -dSV -dSV -jlk -rGq -rGq -jlk -jlk -mXk -rGq -jlk -jlk -jlk -rZP -rZP -rZP -jlk -jlk -rGq -rGq -rGq -rGq -jFl -dSV -bdF -mdj -rGq -knh -taj -pWO -tuk -wky -jlk -baC -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(40,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -agi -agi -hoZ -kBi -ezC -wSa -bRJ -hWB -pty -urK -mjx -mjx -urK -mjx -mjx -urK -mjx -mjx -alx -eNo -eNo -eNo -xHV -xHV -xHV -wSe -eNo -oWn -lfg -eNo -eNo -fii -dXG -dXG -dXG -dXG -lRX -lLe -oWn -iXR -jxd -dIo -jID -sCQ -dIo -eNo -lRX -dXG -eNo -eNo -xHV -dIo -hAY -rWK -vmQ -dIo -jgB -lRX -lRX -lRX -ite -lRX -ite -gsc -jYF -eNo -dIo -naW -xHV -xHV -ibN -amF -amF -amF -amF -amF -amF -amF -amF -ibN -cdq -mdj -aoz -dSV -aoz -dSV -dSV -aoz -qwP -jlk -ojO -ggQ -kYy -uRJ -dQt -aoz -dSV -aoz -dSV -rGq -rGq -rGq -rGq -knh -bfF -rGq -rGq -jlk -jlk -jlk -rZP -jlk -jlk -rGq -uaq -rGq -rGq -rGq -gJu -oWc -dzK -mdj -dSV -knh -rGq -hlT -bfF -jlk -jlk -baC -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(41,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -agi -agi -hoZ -pkY -pCJ -fXF -tBW -hWB -mjx -jRU -lIi -jRU -lIi -jRU -lIi -jRU -lIi -jRU -doD -doD -doD -xHV -xHV -oWn -oWn -oWn -eNo -oWn -eNo -xHV -xHV -nIc -dXG -lfg -dXG -dXG -lRX -nib -dIo -dIo -dIo -dIo -dIo -dIo -dIo -xYt -lRX -dXG -eNo -xHV -xHV -dIo -caj -oWn -rSz -dIo -dIo -dIo -dIo -dIo -dIo -eNo -eNo -ite -pIl -nqE -nqE -nqE -wLF -xHV -ibN -amF -fjX -jXZ -jXZ -jXZ -jXZ -lZf -amF -ibN -cdq -mdj -dQt -dQt -dQt -dQt -dQt -dQt -ojO -ojO -ojO -dzK -pnx -jCz -dQt -dQt -dQt -dSV -dSV -rGq -taj -rGq -rGq -knh -bfF -rGq -rGq -rGq -dSV -jlk -rZP -daK -rGq -rGq -dSV -rGq -rGq -rGq -wcP -dSV -cdq -mdj -dSV -jlk -jlk -rZP -rZP -rZP -rZP -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(42,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -agi -agi -hoZ -hWB -hWB -hWB -aNG -hWB -mjx -uIG -svm -jRU -svm -jRU -svm -nvh -svm -jRU -hoZ -pty -eNo -xHV -xHV -eNo -eNo -eNo -eNo -xHV -xHV -xHV -xHV -nIc -cmP -dIo -dXG -dXG -lRX -lRX -dCu -oWn -ccf -dIo -nrr -oWn -dCu -lRX -dXG -dXG -dXG -dXG -dXG -dXG -oWn -nJY -eNo -dIo -xHV -xHV -xHV -xHV -dIo -dIo -gFa -lRX -lRX -eNo -whu -nNU -jYF -sEg -amF -amF -hiO -qTM -ifI -odm -nQK -hiO -amF -amF -byq -jaq -kYy -kYy -kYy -kYy -kYy -kYy -kYy -kYy -kYy -uFb -taj -mdj -kYy -qBm -dQt -dSV -dSV -rGq -rGq -rGq -rGq -knh -bfF -rGq -rGq -rGq -dSV -rZP -rZP -rGq -rGq -rGq -dSV -dSV -fpn -fpn -tXO -dSV -cdq -mdj -dSV -jlk -jlk -rZP -baC -baC -cbN -cbN -cbN -cbN -cbN -cbN -cbN -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(43,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -agi -agi -adu -pCX -hWB -qHZ -pkK -ngr -hWB -jXz -jXz -adu -gLv -jXz -jJp -jXz -jXz -lhX -hoZ -lLQ -pty -sIC -xHV -oWn -eNo -oWn -oWn -oWn -xHV -xHV -xHV -xHV -nIc -yis -dIo -skD -dXG -dXG -dXG -dIo -oWn -qbU -dIo -xfg -pJI -dIo -tiJ -eNo -lRX -dXG -eNo -xHV -dIo -soW -cjm -eNo -dIo -dXG -dXG -xHV -xHV -xHV -dIo -gFa -gDZ -wLF -eNo -eNo -cKr -pIl -eNo -tYS -odm -tYS -rGq -rGq -rGq -rGq -tYS -odm -tYS -cdq -taj -fpn -fpn -taj -fpn -fpn -taj -fpn -fpn -taj -xYa -taj -mdj -nOy -mdj -dQt -dSV -dSV -rGq -rGq -jlk -knh -jlk -vsT -rGq -rGq -rGq -dSV -iCg -xeg -rGq -bDU -rGq -kYy -kYy -kYy -kYy -vSw -fLQ -fNC -mdj -dSV -okT -jlk -rZP -baC -baC -cbN -baC -baC -baC -baC -baC -cbN -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(44,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -agi -aWV -hoZ -hoZ -hoZ -wOv -ezC -wSa -bRJ -hWB -pty -erl -hoZ -hoZ -jXz -eEb -agi -jXz -agi -lLQ -lLQ -pty -eNo -xHV -oWn -eNo -oWn -dIo -dIo -dIo -dIo -xHV -xHV -nIc -dIo -dIo -gFa -dXG -dXG -dxP -dIo -dIo -dIo -dIo -dIo -dIo -dIo -cbE -dXG -lRX -dXG -eNo -xHV -dIo -alx -qrV -utB -dIo -xHV -mfe -xHV -xHV -xHV -dIo -gFa -lRX -lRX -cWZ -cWZ -pIl -lRX -lRX -odm -fpn -odm -rGq -bDU -rGq -rGq -odm -fpn -odm -cdq -qOB -opC -opC -opC -opC -opC -opC -opC -opC -opC -cdq -taj -mdj -opC -izy -dQt -dSV -dSV -rGq -rGq -knh -rGq -bfF -rGq -oDe -rGq -rGq -rGq -dSV -dQt -rGq -rGq -rGq -opC -opC -opC -opC -sqd -gZl -xev -izy -dSV -rGq -jlk -rZP -baC -baC -cbN -baC -baC -baC -baC -baC -cbN -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(45,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -bQM -bQM -aWV -cVQ -adu -hoZ -hWB -pCJ -fXF -tBW -hWB -pty -hoZ -hoZ -agi -agi -agi -agi -agi -agi -lLQ -lLQ -pty -pty -pty -oWn -eNo -oWn -dIo -tYw -tYw -dIo -xHV -xHV -qgi -xHV -xHV -stc -dXG -lRX -dXG -xHV -xHV -xHV -xHV -xHV -dXG -dXG -dXG -egL -lRX -qXM -dXG -eNo -dIo -dIo -dXG -dIo -dIo -xHV -xHV -xHV -xHV -dIo -dIo -gFa -gDZ -wLF -rzy -nqE -wLF -lRX -lRX -odm -fpn -odm -rGq -rGq -rGq -rGq -odm -fpn -odm -cdq -mdj -dQt -dQt -dQt -dQt -dQt -dQt -dQt -dQt -dQt -dzK -pnx -jCz -dQt -dQt -dQt -dSV -rGq -taj -boe -jlk -rGq -bfF -rGq -rGq -rGq -rGq -rGq -dSV -dQt -rGq -rGq -rGq -dSV -rZP -dSV -dSV -kbg -bdF -jCz -dSV -dSV -rGq -jlk -rZP -cbN -cbN -cbN -cbN -cbN -cbN -cbN -cbN -cbN -cbN -cbN -cbN -baC -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(46,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -agi -agi -bQM -bQM -bQM -aWV -pCX -hoZ -hoZ -aNG -hWB -ucI -hWB -hWB -hoZ -hoZ -hoZ -agi -gQK -agi -gQK -agi -aWV -aWV -pty -hoZ -hoZ -hoZ -oWn -eNo -oWn -dIo -tYw -tYw -dIo -xHV -xHV -qgi -xHV -xHV -stc -dXG -lRX -dXG -eNo -xHV -eNo -lRX -lRX -lRX -lRX -dXG -dXG -dXG -dXG -lRX -eNo -dXG -eNo -lRX -alx -dIo -dIo -dIo -dIo -dIo -dIo -eNo -nIB -lRX -lRX -eNo -whu -lOH -wLF -eNo -odm -odm -odm -rGq -rGq -rGq -rGq -odm -odm -odm -cdq -mdj -aoz -dSV -aoz -dSV -dSV -aoz -dSV -aoz -dQt -bdF -rsU -orh -dQt -aoz -dSV -aoz -rGq -rGq -jlk -jlk -jlk -omD -knh -knh -jlk -jlk -dSV -dSV -dQt -rGq -rGq -rGq -xaP -rZP -jDR -rGq -dSV -cdq -mdj -dSV -rGq -rGq -rGq -jlk -jlk -jlk -jlk -jlk -jlk -baC -baC -baC -cbN -baC -baC -cbN -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(47,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -agi -agi -bQM -bQM -bQM -aWV -hoZ -adu -hoZ -hWB -qHZ -pkK -ngr -hWB -jXz -oED -hoZ -agi -gQK -agi -gQK -agi -agi -lLQ -pty -hoZ -pCX -hoZ -oWn -vlz -oWn -dIo -dIo -dIo -dIo -xHV -xHV -xHV -xHV -xHV -xHV -dXG -dXG -lRX -dXG -lRX -dXG -dXG -lLe -dXG -dXG -tQl -lRX -lRX -lRX -lRX -dXG -dXG -dXG -lRX -eNo -qdC -eNo -whu -eNo -whu -eNo -nIB -eNo -gDZ -jdl -eNo -eNo -eNo -jYF -sEg -amF -amF -hiO -vIN -pSR -fBg -igt -hiO -amF -amF -byq -mdj -dSV -bKX -dSV -dSV -dSV -dSV -dSV -dSV -dQt -dzK -pnx -jCz -dQt -dSV -dSV -rGq -rGq -jlk -jlk -jlk -jlk -bfF -rGq -rGq -dhh -rZP -rZP -uPP -fLW -dSV -dSV -sAh -mNT -rZP -rGq -rGq -dSV -cdq -mdj -dSV -rGq -oyd -rGq -jlk -jlk -jlk -wuA -ybU -irB -baC -baC -baC -cbN -baC -baC -cbN -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(48,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -bQM -bQM -aWV -cVQ -hoZ -pCX -hWB -ezC -wSa -bRJ -hWB -jXz -hoZ -pty -adu -gVx -hro -jor -jXz -hoZ -lLQ -pty -oED -hoZ -hoZ -oWn -eNo -oWn -oWn -oWn -oWn -pqC -bQM -bQM -bQM -pqC -xHV -xHV -eNo -eNo -dXG -dXG -dXG -dXG -qXM -dXG -wKE -dXG -dXG -dXG -xHV -lRX -lRX -gDZ -lRX -gDZ -lRX -gDZ -lRX -gDZ -lRX -gDZ -lRX -gDZ -lRX -gDZ -wsF -jYF -gDZ -pRR -wLF -vAW -eNo -rIO -amF -aXn -jXZ -jXZ -jXZ -jXZ -qCW -amF -ibN -ubL -izy -dSV -dSV -nCx -dSV -dSV -dSV -dSV -aoz -dQt -cdq -taj -mdj -dQt -uNM -yhu -uNM -jlk -jlk -jlk -jlk -xuI -kpp -rGq -rGq -afj -rZP -rZP -rZP -rZP -rGq -rGq -rZP -rZP -rZP -rGq -rGq -rGq -cdq -mdj -rGq -lzJ -lzJ -lzJ -lzJ -lzJ -irB -lzJ -kxQ -irB -baC -baC -baC -cbN -baC -baC -cbN -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(49,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -agi -agi -agi -agi -agi -agi -aWV -hoZ -adu -hoZ -hWB -pCJ -fXF -tBW -hWB -adu -pty -pty -jXz -hhL -hro -jqs -adu -hoZ -lLQ -pty -pty -pty -pty -oWn -eNo -eNo -eNo -eNo -oWn -pqC -bQM -bQM -bQM -pqC -xHV -xHV -eNo -dXG -eNo -cdH -eNo -eNo -eBy -oWn -oWn -eNo -eNo -xHV -xHV -xHV -lRX -ite -lRX -ite -lRX -ite -lRX -ite -lRX -ite -lRX -ite -lRX -ite -gsc -jYF -ite -wHv -jfI -wLF -apw -rIO -amF -amF -amF -amF -amF -amF -amF -amF -ibN -jlk -jlk -jlk -dSV -dSV -dSV -dSV -qDm -dSV -jlk -dQt -cdq -taj -mdj -dQt -yhu -tMS -jlk -jlk -jlk -jlk -jlk -xuI -vsT -rGq -rGq -aNU -rZP -jlk -jlk -jlk -knh -knh -jlk -jlk -rGq -bDU -rGq -rGq -jlk -jlk -ctc -lzJ -lzJ -oPU -lzJ -lzJ -hUi -lzJ -kxQ -irB -baC -baC -baC -cbN -baC -baC -cbN -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(50,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -agi -agi -agi -agi -agi -agi -aWV -jXz -jXz -hoZ -hWB -hWB -hWB -hWB -hWB -jXz -jXz -pty -agi -gQK -agi -gQK -agi -agi -aWV -aWV -aWV -aWV -aWV -aWV -oWn -oWn -aeW -eNo -oWn -pqC -bQM -bQM -bQM -pqC -xHV -xHV -xHV -dIo -dIo -dIo -dIo -dIo -alx -lRX -lRX -alx -sIC -xHV -xHV -xHV -xHV -xHV -tIq -dXG -lRX -eNo -qdC -eNo -whu -eNo -whu -eNo -nIB -eNo -ite -pIl -epl -eNo -xLr -vts -apw -apw -amF -amF -amF -amF -amF -amF -amF -amF -amF -rZP -rZP -rZP -aoz -nuw -nuw -rZP -rZP -jlk -jlk -dQt -cdq -taj -mdj -dQt -uNM -jlk -jlk -jlk -jlk -jlk -jlk -rZP -jDR -rGq -rGq -poI -jlk -jlk -jlk -jlk -rGq -rGq -jlk -rGq -rGq -rGq -rGq -nPx -jlk -jlk -jlk -lzJ -lzJ -oPU -lzJ -lzJ -lzJ -lzJ -lzJ -irB -baC -baC -baC -cbN -cbN -cbN -cbN -cbN -cbN -cbN -cbN -cbN -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(51,1,1) = {" -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -aWV -aWV -rmu -rmu -rmu -aWV -vOP -aWV -pty -pty -pty -iLW -vss -iLW -pty -pty -hoZ -hoZ -mJq -aWV -mjx -mjx -aWV -mjx -mjx -aWV -pab -pnS -aWV -agi -eNo -oWn -eNo -oWn -tYw -xHV -xHV -xHV -xHV -xHV -dIo -dIo -dIo -dIo -dIo -dIo -dIo -eNo -oWn -oWn -eNo -xHV -xHV -xHV -xHV -xHV -xHV -eNo -nzF -mBu -alx -dIo -dIo -dIo -kUj -kUj -kUj -eNo -nIB -lRX -lRX -eNo -whu -eNo -orV -mZo -apw -amF -amF -amF -amF -amF -amF -amF -amF -amF -amF -rZP -afW -taj -taj -taj -lhJ -jlk -rZP -jlk -rCm -cdq -taj -mdj -vzI -jlk -jlk -jlk -jlk -jlk -jlk -rZP -rZP -rGq -rGq -rGq -jlk -jlk -jlk -jlk -jlk -rGq -rGq -rGq -rGq -oyd -rGq -rGq -nPx -jlk -jlk -jlk -lzJ -lzJ -lzJ -fyO -lzJ -lzJ -lzJ -yaC -irB -irB -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -cbN -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(52,1,1) = {" -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -aWV -jXz -lLQ -hWv -lLQ -jHC -jXz -pPG -jXz -hoZ -pty -hoZ -gFg -hoZ -gFg -hoZ -hoZ -hoZ -hoZ -hoZ -adu -nsX -jRU -adu -jRU -nsX -adu -jRU -jRU -adu -pCX -eNo -oWn -yfm -oWn -eNo -fuR -xHV -xHV -xHV -lfg -eNo -eNo -dIo -eNo -idr -eNo -tYw -xHV -lRX -lRX -eNo -xHV -xHV -xHV -xHV -xHV -xHV -dIo -dIo -pkZ -gMH -dIo -fbB -fbB -eNo -eNo -kUj -kUj -xHV -ite -pIl -gDL -cWZ -ggZ -pIl -apw -rIO -amF -amF -amF -amF -amF -amF -amF -amF -ibN -jlk -mHR -olk -xtd -taj -taj -pdP -jlk -rZP -jlk -rCm -cdq -taj -mdj -jFg -jlk -jlk -ugI -ugI -jlk -jlk -umy -umy -rGq -rGq -rGq -rGq -jlk -jlk -jlk -jlk -rGq -oyd -rGq -rGq -rGq -rGq -rGq -jlk -jlk -jlk -jlk -lzJ -lzJ -lzJ -ldl -lzJ -lzJ -lzJ -yaC -lzJ -irB -irB -irB -irB -baC -baC -baC -baC -baC -baC -baC -cbN -baC -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(53,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -aWV -jXz -lLQ -lLQ -lLQ -lLQ -lLQ -hWB -efI -hWB -hoZ -hoZ -hoZ -vjT -gFg -vjT -lrA -lrA -lrA -hoZ -hoZ -hsc -jMk -kCY -hoZ -hoZ -hoZ -hsc -hoZ -pCX -hoZ -hoZ -adu -oWn -eNo -oWn -eNo -cIa -eNo -lfg -lfg -eNo -qXM -eNo -jIm -lLe -lRX -lRX -fJj -eNo -oWn -oWn -qXM -xHV -xHV -tYw -tYw -tYw -tYw -dIo -ffF -oWn -oWn -oWn -lRX -oWn -oWn -oWn -lRX -kUj -kUj -lRX -tQl -nqE -nqE -mrP -apw -eNo -rIO -amF -fjX -jXZ -jXZ -jXZ -jXZ -lZf -amF -ibN -uvv -rZP -rZP -nuw -nuw -nuw -rZP -rZP -rZP -jlk -jlk -cdq -taj -mdj -dQt -nPx -gQL -taj -taj -taj -knh -rGq -rGq -tQm -rGq -jlk -rGq -jlk -jlk -jlk -jlk -rGq -rGq -rGq -jlk -jlk -jlk -uNM -jlk -jlk -jlk -jlk -lzJ -fyO -lzJ -irB -irB -uYx -lzJ -lzJ -wZm -plu -lzJ -irB -irB -baC -baC -baC -baC -baC -baC -baC -cbN -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(54,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -rmu -qGy -lLQ -lLQ -lLQ -lLQ -lLQ -hWB -bez -hWB -hoZ -hoZ -gGx -hoZ -oED -hoZ -lrA -agi -lrA -hoZ -hoZ -hsc -hoZ -hoZ -hoZ -hoZ -hoZ -hsc -hoZ -hoZ -hoZ -hoZ -hoZ -qkG -eNo -oWn -jRk -mit -eNo -eNo -yfm -dXG -lLe -dXG -qXM -dXG -lRX -lRX -dXG -eNo -lRX -lRX -eNo -xHV -xHV -tYw -tYw -tYw -tYw -dIo -kPP -xzj -kdK -xzj -oWn -xzj -xzj -xzj -oWn -xHV -kUj -ite -pIl -eNo -eNo -eNo -jYF -sEg -amF -amF -hiO -vGC -odm -odm -nQK -hiO -amF -amF -aVH -jlk -jlk -taj -taj -taj -pdP -rZP -kbb -rZP -jlk -jlk -stf -mdj -dQt -dSV -dSV -dSV -dSV -dSV -dcL -rGq -rGq -rGq -rGq -rGq -rGq -rZP -jlk -jlk -jlk -uNM -eYC -uNM -jlk -jlk -jlk -uNM -jlk -jlk -jlk -lzJ -lzJ -lzJ -lzJ -irB -irB -irB -lzJ -lzJ -wZm -lzJ -lzJ -lzJ -irB -irB -irB -irB -irB -irB -irB -irB -itN -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(55,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -rmu -lLQ -lLQ -lLQ -lLQ -lLQ -lLQ -hWB -uMZ -hWB -hoZ -hoZ -fqF -hoZ -hoZ -hoZ -lrA -agi -lrA -hoZ -hoZ -hsc -hoZ -kHa -hoZ -hoZ -hoZ -hsc -hoZ -hoZ -hoZ -hoZ -pCX -oWn -eNo -oWn -oWn -oWn -oWn -oUb -dXG -eNo -dXG -lfg -dIo -bfI -lRX -bfI -dIo -eNo -oWn -oWn -eNo -guU -xHV -tYw -tYw -tYw -tYw -dIo -nBe -xzj -xzj -xzj -oWn -xzj -xzj -xzj -xHV -xHV -kUj -lRX -lRX -eNo -whu -cKr -pIl -eNo -tYS -odm -tYS -rGq -rGq -rGq -rGq -tYS -odm -tYS -bXM -qBm -dQt -dQt -dQt -gXs -fmY -wmA -dQt -jlk -jlk -jlk -taj -mdj -dQt -dQt -dQt -fII -dQt -dSV -dcL -rGq -bDU -rGq -rGq -rGq -qiq -rZP -rZP -jlk -jlk -xUu -oPU -oPU -dGw -fjr -jgu -jgu -jgu -irB -wZm -lzJ -lzJ -oPU -mCA -irB -irB -irB -irB -yaC -lzJ -lzJ -lzJ -fyO -oPU -irB -irB -irB -irB -irB -irB -wbI -itN -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(56,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -rmu -mVO -lLQ -lLQ -lLQ -lLQ -ikw -jXz -pPG -jXz -pty -pty -hoZ -vjT -gFg -vjT -lrA -lrA -lrA -hoZ -hoZ -hVu -hoZ -hoZ -jMk -mdd -hoZ -hVu -hoZ -hoZ -hoZ -hoZ -hoZ -lLe -eNo -eNo -eNo -eNo -eNo -oWn -xHV -lfg -xHV -xHV -dIo -bfI -lRX -bfI -dIo -iTW -lRX -lRX -sEg -tYw -tYw -tYw -tYw -tYw -tYw -dIo -abh -xzj -xzj -xzj -oWn -xzj -xzj -dXG -xHV -xHV -dIo -ite -pIl -cWZ -cWZ -pIl -lRX -lRX -odm -fpn -odm -rGq -rGq -rGq -rGq -odm -fpn -odm -cdq -jaq -kYy -bKu -kYy -ddM -iQK -ddM -kYy -kYy -pZz -kYy -taj -jaq -kYy -kYy -kYy -qBm -dQt -dSV -jlk -jlk -jlk -rGq -rGq -rGq -rGq -dxE -rZP -jlk -jlk -lTH -oPU -oPU -dGw -fEa -jgu -jgu -jgu -eFH -wZm -oPU -lzJ -lzJ -irB -irB -irB -irB -irB -yaC -wZm -pIA -lzJ -lzJ -lzJ -irB -irB -irB -irB -irB -hcJ -wbI -itN -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(57,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -aWV -jXz -hWB -hWB -hWB -jXz -aWV -aWV -aWV -vOP -jXz -hoZ -hoZ -hoZ -gFg -iKg -gFg -hoZ -hoZ -hoZ -hoZ -hoZ -adu -nsX -jRU -adu -nsX -jRU -adu -nsX -jRU -adu -agi -hoZ -dXG -rTu -eNo -eNo -eNo -eNo -oWn -dIo -tYw -xHV -xHV -dIo -bfI -mVI -bfI -dIo -pIb -oWn -oWn -eNo -tYw -qEv -iXo -tYw -tYw -tYw -dIo -ffF -oWn -oWn -oWn -lRX -xHV -oWn -xHV -xHV -xHV -eNo -lRX -lRX -nqE -nqE -wLF -lRX -lRX -odm -fpn -odm -rGq -ugT -rGq -rGq -odm -fpn -odm -cdq -qOB -opC -bOV -opC -niq -nWh -qOB -opC -opC -oom -opC -opC -opC -opC -eaR -dSV -mdj -dQt -dSV -fkl -jlk -jlk -nPx -rGq -rGq -rGq -rGq -rZP -jlk -jlk -wVb -oPU -oPU -wxb -wxb -wxb -vhB -wxb -yaC -wZm -lzJ -lzJ -irB -irB -irB -irB -irB -irB -yaC -wZm -irB -irB -lzJ -lzJ -oPU -irB -irB -irB -aPt -ldm -wbI -itN -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(58,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bQM -bQM -bQM -cAW -bTo -aaa -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -agi -agi -agi -sSY -ruJ -lZs -evd -rWQ -ruJ -sSY -aWV -aWV -aWV -dec -jXz -jXz -jXz -vjT -gFg -vjT -hoZ -hoZ -hoZ -hoZ -hoZ -aWV -mjx -mjx -aWV -mjx -mjx -qRg -mjx -mjx -aWV -agi -agi -xHV -xHV -oWn -oWn -oWn -oWn -oWn -dIo -xHV -xHV -dIo -dIo -dIo -dIo -dIo -dIo -dwI -toP -toP -iXf -iXf -iXf -iXf -dwI -xJw -xJw -rja -rja -apf -apf -rja -egv -egv -egv -egv -egv -iXf -apf -ite -pIl -eNo -scg -lOH -wLF -eNo -odm -odm -odm -rGq -rGq -rGq -rGq -odm -odm -odm -ubL -izy -jlk -jlk -vfD -cdq -taj -mdj -dQt -jlk -jlk -jlk -gXs -dQt -dQt -cdq -taj -mdj -dQt -dSV -yif -jlk -jlk -aHg -rGq -rGq -rGq -cye -jlk -jlk -jlk -wVb -oPU -oPU -wxb -wxb -wxb -vhB -wxb -yaC -wZm -oPU -lzJ -irB -irB -irB -irB -irB -irB -yaC -wZm -oPU -oPU -oPU -oPU -oPU -oPU -oPU -oPU -yaC -hcJ -qkg -itN -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(59,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bQM -bQM -bQM -cAW -bTo -pcu -iWq -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -agi -agi -agi -aWV -jXz -hWB -hWB -hWB -jXz -jXz -jXz -jXz -kME -kME -imN -jXz -hWB -lLQ -hoZ -hoZ -hoZ -hoZ -pty -pty -hoZ -aWV -aWV -aWV -aWV -aWV -aWV -aWV -aWV -aWV -aWV -agi -agi -xJw -xJw -gAh -apf -apf -bvY -apf -gAh -egv -dwI -iXf -iXf -iXf -iXf -pQs -pQs -pQs -pQs -iXf -iXf -oyN -pGw -dLF -oyN -dwI -xJw -rja -duH -apf -apf -duH -egv -egv -egv -egv -egv -iXf -xna -lRX -lRX -eNo -eNo -eNo -jYF -rZP -amF -amF -hiO -vIN -lmo -fnU -fPV -hiO -amF -amF -kjV -jlk -jlk -jlk -jlk -cdq -taj -mdj -wZY -jlk -jlk -jlk -jlk -oBb -dQt -cdq -taj -mdj -dQt -jlk -jlk -jlk -jlk -nPx -rGq -rGq -rGq -rGq -jlk -jlk -jlk -lTH -oPU -oPU -dGw -jWH -jgu -jgu -jgu -lnD -wZm -oPU -vQC -oPU -jls -irB -irB -irB -irB -yaC -sOJ -gSX -gSX -oTT -oPU -oPU -oPU -gAn -oPU -yaC -wZm -jFO -itN -itN -itN -itN -itN -irB -irB -irB -irB -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -"} -(60,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bQM -bQM -bQM -cAW -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -agi -agi -agi -agi -aWV -lJt -hFC -lLQ -lLQ -hWB -lLQ -lLQ -lLQ -hWB -fuw -lLQ -lLQ -hWB -lLQ -hoZ -hoZ -hoZ -hoZ -hoZ -pty -pty -agi -agi -agi -agi -hoZ -pty -qFs -agi -agi -agi -aWV -aWV -xJw -gAh -puy -dAF -dAF -sMG -apf -iXf -iXf -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -sry -qra -mku -aeQ -xnF -xJw -rja -iXf -hfp -xna -iXf -egv -egv -egv -egv -apf -apf -vZU -nzF -pIl -cWZ -cWZ -cWZ -pIl -rZP -ibN -amF -aXn -jXZ -jXZ -jXZ -jXZ -qCW -amF -ibN -fBg -jlk -jlk -oOp -rOH -cdq -taj -mdj -jlk -jlk -jlk -jlk -jlk -jlk -dQt -cdq -taj -pnX -dQt -jlk -jlk -jlk -rZP -vtD -dSV -rGq -rGq -rGq -jlk -jlk -rZP -vGI -oPU -oPU -dGw -xck -jgu -oCe -jgu -yaC -wZm -oPU -uKE -oPU -rsg -vSc -irB -jgu -jgu -cPL -uCX -jgu -jgu -hcC -wxb -fwz -gSX -gSX -oTT -yaC -wZm -vLH -itN -aju -wGf -wbI -itN -itN -itN -itN -irB -baC -baC -baC -baC -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -"} -(61,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bQM -bQM -bQM -cAW -bQM -aaa -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -agi -agi -agi -agi -agi -aWV -nKM -lLQ -lLQ -lLQ -hWB -lLQ -lLQ -lLQ -hWB -lLQ -lLQ -lLQ -hWB -pkK -ngr -agi -adu -hoZ -hoZ -pty -pty -agi -agi -agi -agi -agi -pty -qFs -agi -jXz -jXz -aWV -aWV -xJw -xJw -ryj -dym -oWU -nHO -pQs -apf -pQs -pQs -pQs -pQs -xLj -pQs -pQs -pQs -pQs -pQs -pQs -pQs -oyN -orj -tTk -oyN -iXf -rja -rja -iXf -apf -apf -vZU -duH -egv -duH -apf -hfp -apf -iXf -lRX -lRX -tYw -eNo -eNo -eNo -uNM -uNM -uNM -amF -amF -amF -amF -amF -amF -amF -uNM -uNM -uNM -taj -oOp -rOH -fuX -taj -mdj -jlk -jlk -jlk -jlk -jlk -jlk -cEo -hrS -jlk -vjX -cEo -jlk -jlk -jlk -rZP -bgq -dSV -rGq -rGq -rGq -dpS -iNb -glG -dGw -oPU -oPU -dGw -oPZ -jgu -oCe -jgu -yaC -wZm -oPU -rsg -vSc -jaN -jgu -kXD -jgu -qOW -uCQ -qOG -chT -jgu -cPL -sTm -uCX -jgu -jgu -hcC -yaC -wZm -drD -ubH -ubH -ubH -tGn -qNv -sUt -jgu -veJ -irB -baC -baC -bQM -bQM -bQM -baC -baC -baC -baC -bQM -bQM -bQM -bQM -"} -(62,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bQM -bQM -bQM -cAW -bTo -pcu -iWq -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -agi -agi -agi -agi -agi -agi -aWV -svl -lLQ -lLQ -lLQ -hWB -lLQ -lLQ -lLQ -hWB -lLQ -lLQ -lLQ -hWB -lLQ -bRJ -jXz -hoZ -hoZ -pCX -hoZ -hoZ -hoZ -agi -agi -agi -hoZ -hoZ -qFs -egv -xJw -xJw -xJw -xJw -xJw -rja -ryj -gPf -vGc -nHO -pQs -pQs -qGP -pQs -pQs -pQs -pQs -pQs -gAh -pQs -pQs -pQs -gAh -pQs -pQs -pQs -pQs -pQs -iXf -apf -apf -hfp -iXf -apf -apf -apf -apf -apf -apf -iXf -iXf -apf -gDZ -qXM -alx -tYw -tYw -dXG -uNM -geE -uNM -eUo -wXy -taj -uNM -taj -wXy -eUo -uNM -uNM -uNM -taj -kiJ -dQt -cdq -taj -cjN -dQt -jlk -jlk -jlk -jlk -dSV -dQt -cdq -wIp -mdj -dQt -dSV -jlk -jlk -rZP -dEr -dSV -rGq -rGq -rGq -dSV -laH -glG -dGw -oPU -oPU -dGw -tgE -jgu -jgu -jgu -lnD -wZm -oPU -jmN -jgu -kXD -jgu -wbI -wbI -wbI -yaC -wZm -wbI -eVf -wnu -wnu -dqE -tNV -kXD -hcC -yaC -wZm -lzJ -aQu -wUe -wUe -wUe -qNv -cbA -jgu -irB -irB -baC -bQM -bQM -bQM -bQM -bQM -baC -baC -baC -baC -bQM -bQM -bQM -"} -(63,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bQM -bQM -bQM -cAW -bTo -pcu -iWq -cAW -cAW -cAW -cAW -cAW -cAW -cAW -agi -agi -agi -agi -agi -agi -agi -agi -aWV -lJt -lLQ -lLQ -lLQ -hWB -lLQ -lLQ -lLQ -hWB -lLQ -lLQ -lLQ -hWB -fXF -tBW -jXz -agi -agi -hoZ -hoZ -moW -hoZ -hoZ -agi -agi -hoZ -pty -pty -egv -xJw -xJw -xJw -xJw -xJw -rja -wlH -aOK -aOK -iTB -apf -pQs -pQs -pQs -pQs -pQs -iXf -aow -iXf -iXf -iXf -aow -iXf -pQs -pQs -pQs -pQs -pQs -pQs -vZU -hSH -apf -vZU -vLJ -apf -apf -apf -iXf -iXf -apf -egv -egv -tOW -bSj -fql -taj -taj -taj -taj -dSV -dSV -dSV -dSV -dSV -dSV -dSV -dSV -dSV -dQt -bUt -taj -taj -dQt -fII -cdq -cDb -mdj -dQt -jlk -jlk -jlk -dSV -dSV -dQt -cdq -wIp -mdj -dQt -dSV -jlk -jlk -jlk -nPx -rGq -rGq -rGq -rGq -dSV -dnR -glG -wVb -oPU -oPU -wxb -wxb -wxb -vhB -wxb -yaC -wZm -rsg -jaN -kXD -oRR -dLq -drD -ubH -ubH -cIh -xru -ubH -ubH -wCb -wbI -wbI -lzJ -kXD -hcC -yaC -lzJ -irB -lzJ -wbI -wbI -wbI -itN -itN -itN -itN -irB -baC -bQM -bQM -bQM -bQM -bQM -bQM -baC -baC -baC -bQM -bQM -bQM -"} -(64,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bQM -bQM -bQM -cAW -bTo -pcu -iWq -cAW -cAW -cAW -cAW -cAW -cAW -cAW -agi -agi -agi -agi -agi -agi -agi -agi -aWV -aWV -cYV -fUz -edu -aWV -jXz -jXz -jXz -aWV -cYV -fUz -mIf -jXz -pkK -ngr -jXz -agi -agi -pty -hoZ -hoZ -idi -hoZ -agi -agi -hoZ -pty -pty -rja -rja -rja -rja -rja -rja -dwI -pQs -pQs -apf -pQs -pQs -iXf -iXf -iXf -iXf -iXf -rja -rja -rja -rja -rja -rja -rja -dwI -iXf -pQs -pQs -pQs -pQs -pQs -dPn -vLJ -rja -rja -xJw -apf -apf -apf -apf -egv -egv -egv -bbG -tqV -jWJ -taj -taj -taj -dSV -dQt -dQt -dQt -dQt -dQt -dQt -dQt -dQt -dQt -dQt -dQt -dQt -dQt -dQt -uNM -hrS -wIp -vjX -uNM -nrx -btd -mjt -dSV -dSV -dQt -cdq -wIp -mdj -dQt -dSV -jlk -jlk -jlk -jlk -rGq -rGq -rGq -rGq -jlk -jlk -rZP -aNb -bFC -oPU -wxb -wxb -wxb -vhB -wxb -yaC -wZm -jmN -jgu -jgu -wbI -wbI -yaC -bdi -wUe -xmH -wUe -wUe -ffu -wZm -wbI -wbI -wbI -kXD -hcC -cTk -wUe -irB -irB -wbI -vtl -wbI -uGT -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -baC -baC -baC -bQM -bQM -bQM -"} -(65,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bQM -bQM -bQM -cAW -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -agi -agi -agi -agi -agi -agi -agi -aWV -aWV -jXz -jXz -dYG -lLQ -bnw -jXz -gUo -gUo -gUo -jXz -dYG -lLQ -bnw -gKi -lLQ -bRJ -jXz -agi -agi -agi -pty -hoZ -fDD -day -day -suB -hoZ -cto -hoZ -rja -rja -rja -rja -rja -rja -nkB -pQs -pQs -pQs -pQs -iXf -rja -rja -vVi -vVi -vVi -rja -oGU -iRH -xBl -kYZ -xUi -rja -rja -rja -aow -iXf -pQs -pQs -pQs -pQs -apf -iXf -dwI -rja -xJw -xJw -xJw -xJw -xJw -egv -egv -jlk -jlk -jlk -dSV -taj -taj -dSV -dQt -uNM -sgw -vFi -yhu -uNM -sgw -rGq -rGq -uNM -sgw -vFi -yhu -uNM -dQt -cdq -taj -cjN -dQt -dQt -dQt -dQt -dQt -dQt -dQt -jlk -jlk -mdj -dQt -dSV -jlk -jlk -jlk -nPx -rGq -rGq -rGq -jlk -jlk -jlk -jlk -irB -irB -irB -vGI -tgE -jgu -jgu -jgu -lnD -sOJ -jaN -kXD -wbI -jcv -djf -yaC -wZm -hPi -jUG -jUG -oKf -ucf -jqw -wbI -jcv -wbI -kXD -jdg -wHl -wbI -irB -irB -wbI -oyC -wbI -irB -baC -bQM -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -baC -baC -baC -bQM -bQM -bQM -bQM -"} -(66,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bQM -bQM -bQM -cAW -bQM -aaa -iWq -cAW -cAW -cAW -cAW -cAW -cAW -agi -agi -agi -agi -agi -agi -agi -aWV -aWV -ntV -ntV -hWB -lLQ -bRJ -ntV -pty -rWt -pty -ntV -hWB -lLQ -bRJ -gKi -fXF -tBW -jXz -agi -agi -agi -agi -hoZ -awN -pXq -jEv -vjO -hoZ -pty -pty -egv -xJw -xJw -xJw -xJw -rja -eTW -pQs -pQs -xCV -pQs -xnF -rja -qcR -pqG -pqG -pqG -pqG -mDz -toE -mDz -toE -toE -xxD -eTC -rja -rja -rja -iXf -pQs -pQs -pQs -pQs -pQs -pQs -iXf -iXf -xnF -rja -xJw -xJw -egv -egv -jlk -bQM -lHx -iJt -iWm -bRY -tlv -dQt -bXM -kYy -kYy -kYy -kYy -kYy -kYy -kYy -kYy -kYy -kYy -kYy -eAo -tpc -txe -taj -jaq -bKu -kYy -kYy -kYy -kYy -jlk -jlk -jlk -jlk -mdj -dQt -dSV -dSV -jlk -jlk -rGq -bDU -rGq -rGq -jlk -jlk -jlk -jlk -irB -itN -irB -wVb -xck -jgu -itN -jgu -yaC -rrS -jgu -jgu -jBQ -bvK -dLq -yaC -wZm -gxF -izq -egi -aGP -yaC -wZm -jBQ -oRR -dLq -jgu -jgu -hcC -wbI -yaC -wZm -lzJ -wbI -irB -irB -baC -bQM -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -baC -baC -bQM -bQM -bQM -bQM -bQM -"} -(67,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bQM -bQM -bQM -cAW -bTo -pcu -iWq -cAW -cAW -cAW -agi -agi -agi -agi -agi -agi -agi -agi -agi -aWV -aWV -jXz -ntV -ntV -hWB -hoZ -hWB -ntV -tYp -pty -hWB -ntV -hWB -hWB -hWB -gKi -gKi -gKi -jXz -agi -agi -agi -agi -hoZ -awN -aYh -gIi -vjO -hoZ -pty -pty -rja -xJw -xJw -xJw -xJw -rja -rja -iXf -iXf -pQs -pQs -iXf -rja -rja -ddc -iGT -lgf -pqG -xxD -xxD -xxD -xxD -eQk -xxD -xxD -xxD -hHq -rja -rja -iXf -pQs -pQs -pQs -puy -dAF -dAF -sMG -iXf -rja -rja -rja -xJw -egv -bQM -bQM -lHx -gOu -taj -dlA -dSV -dQt -cdq -taj -taj -taj -taj -taj -taj -taj -taj -taj -taj -taj -dcL -taj -taj -taj -taj -taj -stf -taj -taj -jlk -jlk -jlk -jlk -jlk -jlk -dQt -dSV -dSV -rGq -knh -dQt -dSV -rGq -rGq -jlk -jlk -jlk -jlk -irB -itN -irB -irB -irB -jgu -itN -jgu -yaC -oTr -jgu -anu -wbI -rBz -wbI -yaC -wZm -gxF -egi -iyJ -vHG -srq -wZm -wbI -rBz -wbI -qkg -jgu -sNZ -wbI -yaC -wZm -wbI -vtl -irB -uGT -bQM -bQM -baC -baC -bQM -bQM -baC -bQM -bQM -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -"} -(68,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bQM -bQM -bQM -cAW -bTo -pcu -iWq -cAW -cAW -cAW -agi -agi -jXz -jXz -jXz -jXz -jXz -hoZ -agi -jXz -jXz -jXz -pkK -lLQ -lLQ -pkK -pkK -pkK -gzb -pkK -pkK -pkK -wRg -pkK -pkK -pkK -gzb -wRg -gzb -pkK -pkK -pkK -pkK -hoZ -hgQ -rag -kee -pwz -pty -pty -iXf -ydb -pQs -xJw -egv -egv -egv -rja -rja -iXf -pQs -pQs -pQs -iXf -rja -vVi -vVi -rja -vVi -vVi -rja -xxD -rja -rja -rja -fjI -xxD -xxD -xxD -rja -rja -iXf -pQs -pQs -ryj -dym -oWU -nHO -iXf -iXf -xnF -rja -xJw -egv -bQM -bQM -rZP -lHx -rZP -taj -dSV -mVM -cdq -taj -qOB -opC -opC -opC -opC -opC -opC -opC -opC -opC -oom -vso -opC -opC -opC -opC -eaR -qOB -awC -rZP -rZP -rZP -rZP -jlk -jlk -jlk -dSV -rGq -rGq -knh -dQt -dSV -rGq -rGq -jlk -jlk -jlk -jlk -irB -itN -irB -irB -irB -jgu -jgu -jgu -yaC -eDG -pbN -ubH -ubH -ubH -ubH -cIh -wZm -gxF -gtJ -eAg -sik -yaC -fmP -ubH -ubH -ubH -quJ -sKb -gTj -ubH -cIh -wZm -fyO -oyC -wbI -uGT -bQM -baC -baC -bQM -bQM -bQM -baC -baC -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -"} -(69,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bQM -bQM -bQM -cAW -bTo -pcu -iWq -cAW -cAW -agi -agi -aPD -ucY -pUp -pty -pty -pty -hoZ -hoZ -hoZ -mjx -lLQ -lLQ -pty -pty -pty -vik -pty -lLQ -lLQ -lLQ -pty -pty -pty -pty -pty -pty -pty -pty -pty -hoZ -hoZ -pCX -hoZ -hoZ -hoZ -hoZ -qSm -fDD -dAF -dAF -sMG -pQs -rja -egv -pQs -pQs -egv -ccH -iXf -gAh -pQs -pQs -pQs -pQs -iXf -iXf -iXf -iXf -iXf -rja -kze -rja -fTZ -rja -rja -tDQ -xxD -xxD -xxD -rja -rja -dwI -pQs -ryj -gPf -vGc -nHO -pQs -pQs -iXf -rja -xJw -egv -egv -bQM -bQM -bQM -lHx -dSV -dSV -dQt -fuX -taj -mdj -dQt -dQt -dQt -dQt -dQt -cgp -dEY -vRb -jlk -jlk -jlk -jlk -jlk -jlk -jlk -cdq -mdj -jlk -jlk -jlk -jlk -jlk -jlk -jlk -jlk -dSV -rGq -rGq -knh -dQt -dSV -rGq -rGq -rGq -fcA -jlk -jlk -irB -itN -irB -irB -irB -itN -itN -oPU -yaC -lfk -hHj -wUe -wUe -wUe -wUe -ffu -cwX -tYl -oOz -eAg -vHG -nys -aQu -wUe -wUe -wUe -oOL -tXD -pgI -wUe -wUe -ent -wbI -wbI -wbI -itN -baC -baC -baC -bQM -bQM -bQM -bQM -baC -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(70,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bQM -bQM -bQM -cAW -bTo -pcu -iWq -cAW -cAW -agi -agi -aPD -ucY -kvX -bPK -clN -clN -clN -clN -clN -crM -uYS -uWz -fXF -fXF -fXF -fXF -fXF -hWB -lLQ -hWB -fXF -fXF -fXF -fXF -fXF -hWB -fXF -fXF -fXF -pty -hoZ -hoZ -fXF -fXF -fXF -fXF -pty -ryj -qjF -dIs -nHO -iXf -iXf -apf -iXf -iXf -lag -iXf -iXf -pQs -pQs -pQs -pQs -pQs -pQs -pQs -apf -gHy -pQs -vLJ -iXf -iXf -pQs -qQE -rja -jta -jta -rja -azP -rja -rja -rja -iXf -wlH -aOK -aOK -iTB -iXf -iXf -iXf -rja -xJw -egv -egv -egv -bQM -bQM -rZP -lHx -rZP -dQt -cdq -taj -mdj -dQt -nuw -nuw -nuw -nuw -nuw -nuw -jlk -jlk -jlk -jlk -jlk -jlk -jlk -jlk -hrS -vjX -jlk -jlk -jlk -jlk -jlk -jlk -dSV -rGq -rGq -rGq -rGq -jlk -jlk -jlk -rGq -rGq -bDU -rGq -jlk -jlk -irB -itN -irB -irB -irB -itN -itN -oPU -yaC -oTr -jgu -anu -wbI -jcv -wbI -yaC -wZm -gxF -qGM -coM -vHG -iHi -wZm -wbI -jcv -wbI -qkg -jgu -nho -wbI -wbI -wbI -wbI -wbI -wbI -itN -baC -baC -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(71,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bQM -bQM -bQM -cAW -bTo -pcu -iWq -cAW -cAW -agi -agi -aPD -vjQ -kvX -bQh -hoZ -hoZ -hoZ -hoZ -jXz -jXz -hbR -adf -jXz -gUo -gUo -gUo -jXz -kMn -pty -adf -aWV -gUo -gUo -gUo -aWV -kMn -hoZ -hoZ -hoZ -hoZ -pty -hoZ -hoZ -pty -pty -pty -iXf -ryj -mCE -acg -nHO -iXf -iXf -iXf -apf -iXf -lag -apf -apf -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -iXf -gAh -rja -rja -rja -rja -dVE -dVE -djg -rja -epi -pQs -apf -aHH -iXf -rja -vVi -vVi -rja -xJw -xJw -xJw -egv -egv -bQM -bQM -bQM -lHx -dQt -cdq -taj -mdj -dQt -dQt -ver -ver -ver -dQt -dQt -ver -ver -jlk -jlk -jlk -jlk -dSV -nkR -cdq -mdj -dSV -dSV -jlk -jlk -dSV -dSV -dSV -dSV -dSV -dYI -yio -yio -hyT -sfI -ubN -sfI -sfI -bPT -qCa -jlk -irB -irB -irB -irB -itN -itN -khK -oPU -yaC -rrS -jgu -jgu -jBQ -nAf -dLq -yaC -wZm -gxF -egi -oOz -vHG -yaC -wZm -jBQ -oRR -dLq -wbI -itN -uGT -uGT -uGT -uGT -uGT -wbI -mmp -uGT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(72,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bQM -bQM -bQM -cAW -bTo -pcu -iWq -agi -aWV -aWV -aWV -aWV -aPD -ekn -bQh -hoZ -hoZ -rfh -jXz -jXz -xrd -pty -bRJ -vaQ -qHZ -smZ -ngr -lAC -ezC -pty -bRJ -vaQ -qHZ -pkK -ngr -lAC -ezC -hoZ -lhu -qFs -qFs -hoZ -pty -qFs -qFs -jXz -jXz -pQs -wlH -aOK -aOK -iTB -pQs -rja -egv -pQs -pQs -egv -egv -iXf -dbi -pQs -pQs -gAh -iXf -iXf -iXf -iXf -pQs -pQs -vZU -pQs -gHy -pQs -iXf -iXf -iXf -rja -rja -uUz -eEG -ewC -rja -dYk -lyY -apf -iTm -apf -vVi -tOG -xlZ -pXY -ifp -cls -xJw -xJw -xJw -bQM -bQM -bQM -lHx -iKE -cdq -taj -jaq -kYy -kYy -kYy -kYy -kYy -tpc -kYy -kYy -kYy -kYy -kYy -kYy -kYy -kYy -kYy -txe -mdj -dSV -dSV -dSV -dSV -dSV -okH -dSV -rGq -dSV -nLV -wIJ -iyS -mhM -rGq -rGq -uyM -rGq -dga -lde -jlk -uGT -uGT -uGT -itN -itN -itN -xwU -oPU -yaC -iqx -vbn -kXD -wbI -rBz -wbI -kkY -wZm -sSM -sTm -sTm -uCX -yaC -wZm -wbI -rBz -wbI -uPb -itN -bQM -bQM -bQM -bQM -uGT -wbI -fAI -uGT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(73,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bQM -bQM -bQM -cAW -bTo -pcu -pbV -agi -aWV -aPD -aPD -aPD -aPD -pty -bQh -hoZ -hoZ -hoZ -jXz -sqb -fUC -pty -bRJ -hWB -ezC -lLQ -bRJ -hWB -ezC -pty -tUm -hWB -ezC -lLQ -bRJ -hWB -ezC -eSH -qFs -agi -agi -agi -agi -aWV -agi -agi -aWV -pQs -pQs -iXf -iXf -pQs -pQs -xJw -egv -egv -egv -rja -dwI -pQs -pQs -pQs -dwI -rja -vVi -vVi -vVi -rja -iXf -iXf -pQs -kds -pQs -pQs -pQs -pQs -pQs -iXf -rja -rja -rja -rja -rja -iXf -aHH -iTm -iTm -bZQ -vVi -toE -mDz -toE -mDz -toE -wXf -dFH -xJw -bQM -bQM -bQM -lHx -dQt -cdq -taj -stf -taj -taj -taj -taj -taj -taj -jjH -taj -taj -taj -taj -stf -taj -taj -nOy -taj -mdj -dSV -dSV -rGq -dSV -taj -taj -taj -dSV -dSV -bAc -hgS -hgS -lvy -eTb -sfI -sfI -sfI -dNx -siK -jlk -aNb -vOC -wxb -oVp -wxb -jHr -wxb -oPU -yaC -wZm -jmN -kXD -wbI -wbI -wbI -yaC -xru -ubH -ubH -buN -ubH -cIh -wZm -wbI -wbI -tNV -wbI -itN -uGT -uGT -uGT -bQM -uGT -oXT -mcr -uGT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(74,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bTo -pcu -pcu -agi -rxm -kiX -oZo -sph -rMg -hoZ -bQh -hoZ -pty -jXz -aWV -jXz -eEJ -pty -bRJ -vaQ -pCJ -fXF -jYW -lAC -ezC -pty -bRJ -vaQ -pCJ -fXF -tBW -lAC -ezC -agi -aWV -aWV -aWV -xJw -xJw -egv -egv -egv -egv -egv -egv -iXf -iXf -apf -xJw -xJw -xJw -xJw -xJw -rja -nkB -pQs -pQs -iXf -rja -rja -gbK -xxD -vkh -rja -vVi -rja -iXf -pQs -iXf -iXf -apf -pQs -pQs -qfg -iXf -iXf -lDv -iXf -iXf -pQs -apf -pQs -kzz -rja -rja -tDQ -xxD -xxD -xxD -xxD -xxD -kil -xJw -xJw -bQM -bQM -rZP -cWz -cdq -taj -qOB -opC -opC -opC -opC -opC -opC -opC -opC -opC -opC -opC -opC -gNN -opC -opC -opC -izy -rGq -uNM -uNM -dSV -taj -dSV -fpn -dSV -fpn -dSV -fpn -dSV -fpn -dMS -fpn -dSV -fpn -dSV -fpn -vwM -vhB -wxb -vhB -wxb -vhB -wxb -vhB -oPU -afc -wZm -ckZ -kXD -aBJ -wKb -wbI -cTk -wUe -wUe -ffu -aQu -wUe -wUe -ent -wbI -wZv -lzJ -wbI -eFa -wbI -cGR -uGT -bQM -uGT -uGT -uGT -uGT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(75,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bQM -cAW -cAW -cAW -bTo -pcu -xtP -agi -aWV -aPD -aPD -aPD -aPD -hoZ -bQh -hoZ -pty -jXz -aWV -jXz -jXz -hbR -adf -jXz -tQi -tQi -tQi -jXz -kMn -pty -adf -aWV -tQi -tQi -tQi -aWV -kMn -agi -aWV -aWV -aWV -xJw -egv -egv -egv -egv -egv -egv -egv -apf -iXf -iXf -rja -xJw -xJw -xJw -xJw -rja -eTW -pQs -pQs -iXf -rja -muC -pqG -xxD -xxD -sII -rna -rja -vVi -kze -vVi -rja -dwI -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -iXf -vVi -xxD -xxD -xxD -vyu -xxD -xxD -xxD -pqG -iGT -wFU -bQM -bQM -rZP -qCD -cdq -taj -mdj -kwP -rZP -lHx -lHx -lHx -rZP -lHx -lHx -lHx -jlk -jlk -jlk -dQt -cbn -lCp -dQt -pJD -dQt -jlk -uNM -ubN -taj -ubN -fpn -dSV -fpn -dSV -fpn -dSV -fpn -dSV -fpn -adv -fpn -dSV -fpn -vwM -vhB -wxb -vhB -wxb -vhB -wxb -vhB -oPU -yaC -wZm -ckZ -kXD -lvt -tas -tas -tTA -wbI -wbI -yaC -pJf -wbI -wbI -wbI -kxf -wbI -wbI -wbI -eFa -kbi -fLS -uGT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(76,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -bTo -pcu -agi -agi -aWV -aWV -aWV -aWV -aPD -uIF -bQh -hoZ -pty -jXz -aWV -jXz -xrd -pty -bRJ -vaQ -qHZ -pkK -ngr -lAC -ezC -pty -bRJ -vaQ -qHZ -pkK -ngr -lAC -ezC -agi -aWV -aWV -aWV -xJw -egv -egv -egv -egv -apf -apf -lag -iXf -iXf -apf -iXf -egv -egv -rja -rja -ccH -dwI -pQs -pQs -xnF -rja -irf -pqG -xxD -xxD -xxD -leF -xxD -xxD -xxD -dsW -rja -rja -iXf -pQs -pQs -puy -dAF -dAF -sMG -pQs -pQs -pQs -pQs -pQs -tob -xxD -xxD -xxD -xxD -xxD -xxD -xxD -pqG -ddc -wFU -bQM -bQM -lHx -tGI -cdq -taj -mdj -dQt -lHx -bQM -bQM -bQM -bQM -bQM -bQM -bQM -jlk -jlk -jlk -rGq -bCu -rGq -rGq -rGq -jlk -jlk -uNM -ery -dSV -xOy -fpn -dSV -fpn -dSV -fpn -dSV -fpn -dSV -fpn -dSV -fpn -dSV -fpn -vwM -vhB -wxb -vhB -wxb -vhB -wxb -vhB -oPU -yaC -wZm -ckZ -jgu -jgu -hPi -jUG -oKf -jgu -wuC -wLE -kir -xIh -itN -wbI -jcv -wbI -eFa -wZv -wbI -wbI -wbI -uGT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(77,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -bTo -pcu -agi -agi -agi -agi -agi -aPD -gXo -pty -bQh -hoZ -rwJ -jXz -aWV -mzO -fUC -pty -bRJ -hWB -ezC -lLQ -bRJ -hWB -ezC -pty -bRJ -hWB -ezC -lLQ -bRJ -wDO -ezC -agi -aWV -aWV -aWV -egv -egv -egv -egv -apf -wZN -apf -lag -egv -apf -iXf -iXf -egv -egv -qQE -iZf -dwI -pQs -pQs -pQs -iXf -rja -hYv -pqG -xxD -xxD -xxD -xxD -xxD -xxD -xxD -xxD -jta -vVi -iXf -pQs -pQs -ryj -dym -oWU -nHO -gAh -pQs -gAh -pQs -iXf -rja -rja -rja -rja -rja -tDQ -xxD -xxD -pqG -lgf -wFU -bQM -bQM -lHx -dQt -cdq -taj -mdj -dQt -lHx -bQM -bQM -bQM -bQM -bQM -bQM -jlk -jlk -jlk -jlk -sgw -sgw -diu -rGq -sgw -sgw -jlk -uNM -ubN -dSV -ubN -dMS -taj -taj -taj -taj -taj -taj -taj -taj -taj -taj -taj -taj -rZP -wxb -wxb -wxb -wxb -wxb -wxb -wxb -dmT -yaC -wZm -ove -dJe -dJe -jKJ -wxb -jmN -jgu -jgu -hPi -kRK -jgu -itN -jBQ -oRR -dLq -itN -uGT -uGT -uGT -uGT -uGT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(78,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -agi -agi -agi -agi -agi -aPD -jfZ -pty -bQk -hoZ -hoZ -jXz -aWV -jXz -eEJ -pty -bRJ -vaQ -pCJ -aTu -fpP -lAC -ezC -vik -bRJ -vaQ -pCJ -iZo -tBW -lAC -ezC -agi -aWV -aWV -aWV -egv -egv -egv -apf -apf -apf -egv -egv -egv -iXf -iXf -iXf -pQs -gAh -iXf -pQs -pQs -pQs -pQs -pQs -iXf -rja -rja -vVi -kze -vVi -rja -sdK -toE -toE -toE -xxD -jta -rja -rja -iXf -pQs -ryj -gPf -vGc -nHO -puy -dAF -dAF -sMG -pQs -iXf -rja -gCk -djg -azP -xxD -xxD -xxD -pqG -bCS -xJw -bQM -bQM -lHx -dQt -cdq -taj -mdj -dQt -lHx -bQM -bQM -bQM -bQM -jlk -jlk -jlk -jlk -jlk -rGq -rGq -rGq -rGq -bDU -fmg -jlk -jlk -uNM -gWi -dSV -lWj -taj -uRi -uRi -uRi -uRi -taj -ohY -eTb -icT -eTb -pdP -amF -rZP -rZP -gum -gum -gum -gum -ezI -hbW -wxb -oPU -cTk -ent -oPU -oPU -oPU -gAn -oPU -ove -hjO -hjO -auO -xqx -hjO -itN -wbI -qJL -wbI -itN -bQM -bQM -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(79,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -agi -agi -agi -agi -agi -aPD -xce -hoZ -bQh -hoZ -pty -hoZ -jXz -jXz -jXz -hbR -adf -jXz -lGR -uBK -lGR -jXz -kMn -pty -adf -aWV -lGR -lGR -lGR -aWV -vjm -agi -agi -dxS -agi -egv -egv -apf -apf -apf -egv -egv -eXp -eXp -iXf -iXf -iXf -iXf -iXf -pQs -pQs -pQs -pQs -pQs -pQs -pQs -dwI -rja -iXf -pQs -iXf -rja -vVi -rja -fyy -toE -xxD -xxD -soN -rja -iXf -pQs -wlH -aOK -aOK -iTB -ryj -dym -oWU -nHO -pQs -iXf -rja -rja -rja -rja -rja -dTx -dTx -rja -rja -xJw -xJw -xJw -xJw -ogC -ogC -ogC -ogC -ogC -cEw -cEw -cEw -cEw -cEw -cEw -cEw -cEw -cEw -ogC -ogC -feM -okv -ogC -feM -ogC -aTo -aTo -rZP -rZP -rZP -rZP -rZP -eJm -eJm -eJm -eJm -rZP -rZP -rZP -rZP -rZP -rZP -rZP -rZP -rZP -oxa -oxa -oxa -oxa -itN -itN -itN -itN -aZz -gum -vhB -vhB -gum -vhB -vhB -gum -vhB -vhB -gum -gum -vhB -itN -itN -itN -itN -itN -bQM -bQM -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(80,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -agi -agi -agi -agi -agi -agi -hoZ -hoZ -bUw -hoZ -pty -hoZ -jXz -jXz -xrd -lLQ -hWB -pkK -pkK -pkK -pkK -pkK -hWB -lLQ -hWB -pkK -pkK -pkK -pkK -pkK -hWB -ezC -agi -agi -agi -egv -egv -qlf -qlf -egv -egv -eXp -itS -kiR -ugd -iXf -gAh -iXf -iXf -pQs -pQs -pQs -pQs -sAp -pQs -pQs -pQs -iXf -pQs -pQs -pQs -iXf -iXf -vVi -bQy -rja -azP -rja -rja -rja -dYk -wbP -puy -dAF -dAF -sMG -ryj -gPf -vGc -nHO -pQs -pQs -iXf -iXf -iXf -nip -apf -apf -apf -apf -apf -ojv -apf -apf -nip -ogC -cAn -eWW -eWW -ogC -bnA -amE -vBX -vBX -eyC -bnA -eWW -eWW -wit -ogC -iiw -awL -awL -awL -xDq -naf -naf -cqz -ggd -tsc -hQk -tsc -awL -hoJ -hoJ -hoJ -hoJ -awL -tcW -awL -awL -awL -awL -awL -tcW -awL -hoJ -hoJ -hoJ -hoJ -awL -tsc -bEk -tsc -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -tsc -bEk -tsc -bEk -ogf -ogf -bEk -ogf -ogf -ogf -ogf -mRM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(81,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -agi -agi -agi -agi -agi -agi -hoZ -bNP -hoZ -hoZ -pty -hoZ -jXz -hEm -fUC -pty -lLQ -pty -pty -pty -pty -pty -lLQ -vha -viL -pty -qEU -pty -pty -pty -lLQ -ezC -pty -agi -agi -bGY -gYT -vcJ -vcJ -bke -hTs -eXp -iXf -pQs -apf -oGu -pQs -pQs -gnQ -pQs -pQs -iXf -iXf -iXf -iXf -pQs -pQs -pQs -qfg -pQs -pQs -pQs -iXf -rja -rja -rja -dVE -dVE -vcQ -rja -iXf -pQs -ryj -dym -oWU -nHO -wlH -aOK -aOK -iTB -dPn -pQs -tpY -pQs -iXf -nip -apf -apf -apf -apf -apf -apf -apf -apf -nip -ogC -eWW -vBX -eWW -ogC -uLJ -sUc -vBX -xOS -vBX -wAn -eWW -eWW -wit -ogC -gcx -okv -okv -okv -xme -ygw -kEy -sDL -fiq -vzB -fiq -vzB -okv -uSA -uSA -uSA -uSA -okv -okv -okv -aVd -okv -okv -okv -okv -okv -uSA -uSA -uSA -uSA -okv -vzB -fiq -vzB -lzJ -lzJ -lzJ -lzJ -lzJ -lzJ -lzJ -lzJ -lzJ -lzJ -lzJ -lzJ -lzJ -lzJ -vzB -fiq -vzB -kPz -bQM -bQM -kPz -bQM -bQM -bQM -bQM -bmT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(82,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -agi -agi -agi -agi -agi -agi -hoZ -pty -hoZ -hoZ -hoZ -hoZ -jXz -jXz -eEJ -lLQ -hWB -agi -agi -agi -agi -agi -hWB -lLQ -hWB -fXF -fXF -fXF -fXF -fXF -hWB -bIS -pty -agi -agi -whf -wQz -bEv -bEv -xwr -whf -apf -iXf -oDh -vzh -oGu -pma -oJm -pQs -oDh -iXf -rja -rja -rja -rja -iXf -gAh -pQs -pQs -pQs -kds -pQs -gAh -dwI -rja -rja -uUz -ewC -rja -rja -iXf -pQs -ryj -gPf -vGc -nHO -gAh -pQs -gAh -pQs -pQs -pQs -pQs -vZU -iXf -rja -rja -gAh -gAh -rja -rja -gAh -gAh -rja -rja -ogC -eWW -eWW -eWW -ogC -uXw -vBX -lyd -vBX -vBX -bnA -eWW -eWW -wit -ogC -gcx -okv -iiw -awL -iBP -vcf -vcf -lku -mzT -tsc -wtm -tsc -awL -hoJ -hoJ -hoJ -hoJ -awL -exW -awL -awL -awL -awL -awL -exW -awL -hoJ -hoJ -hoJ -hoJ -awL -tsc -bEk -tsc -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -tsc -bEk -tsc -bEk -ogf -ogf -bEk -ogf -ogf -ogf -ogf -fWI -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(83,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -agi -agi -agi -agi -agi -agi -hoZ -hoZ -hoZ -hoZ -hoZ -hoZ -jXz -jXz -jXz -lLQ -lLQ -jXz -agi -agi -tQi -jXz -ezC -pty -agi -aWV -gUo -hWB -iPR -aWV -hoZ -ezC -pty -bRJ -hWB -hWe -bEv -vcJ -jLd -bEv -mDX -apf -pQs -apf -pma -pma -pQs -pma -pQs -qfg -xnF -rja -rby -pzt -rja -dwI -iXf -pQs -pQs -pQs -pQs -pQs -pQs -mTs -uip -rja -rja -rja -rja -dwI -pQs -pQs -wlH -aOK -aOK -iTB -pQs -apf -vZU -apf -pQs -apf -pQs -iXf -rja -rja -rja -rja -rja -rja -rja -rja -rja -rja -rja -bnA -kiv -ogC -ogC -uSy -bnA -kiv -rnl -vBX -ogC -bnA -uDU -eWW -wit -ogC -gcx -pLQ -gcx -ogC -ogC -ogC -ogC -cfD -cEw -cEw -cEw -cEw -tRH -eXP -eXP -eXP -eXP -tRH -tRH -tRH -tRH -nvD -tRH -tRH -tRH -tRH -oxa -oxa -oxa -oxa -itN -itN -itN -itN -eOJ -cmQ -vhB -vhB -cmQ -vhB -vhB -cmQ -vhB -vhB -cmQ -cmQ -vhB -itN -itN -itN -itN -itN -itN -bQM -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(84,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -agi -agi -agi -agi -agi -pty -pty -pty -lhu -pty -hoZ -hoZ -hoZ -pty -moW -lLQ -lLQ -vaQ -agi -pkK -ngr -lAC -ezC -pty -agi -vaQ -qHZ -pkK -qLx -lAC -rPZ -ezC -pty -bRJ -hWB -vcJ -vcJ -vcJ -vcJ -vcJ -fFx -apf -nre -pQs -pQs -pma -pQs -pQs -pQs -pQs -iXf -rja -mlL -dVE -rja -rja -rja -iXf -jsH -iXf -iXf -pQs -pQs -pQs -pQs -oyN -pGw -vDB -oyN -pQs -pQs -pQs -pQs -pQs -iXf -iXf -gJL -iXf -iXf -apf -pQs -pQs -dPn -apf -rja -rja -rja -rja -rja -rja -rja -rja -rja -rja -rja -bnA -bOT -ykw -xVR -bOT -bnA -jbU -xZD -bnA -bgc -bnA -eWW -uTT -wit -ogC -gcx -okv -gcx -ogC -eWW -uSA -uSA -pOh -bnA -rkx -ogC -tJI -wrR -rFa -ylD -ylD -uSo -ipd -tew -hRP -tfQ -fxG -fxG -iTs -dnD -fmq -ftW -cmQ -cmQ -cmQ -wxb -wxb -wxb -wxb -drD -wCb -oPU -oPU -mpb -oPU -oPU -oPU -oPU -oPU -drD -wCb -oPU -oPU -oPU -wQW -oPU -oPU -itN -itN -itN -itN -itN -itN -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(85,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -bQM -bQM -bQM -cAW -agi -agi -agi -agi -agi -agi -hoZ -vjT -gFg -iLW -pty -hoZ -hoZ -hoZ -pty -hoZ -lLQ -lLQ -hWB -ezC -lLQ -bAP -hWB -ezC -jcy -bRJ -hWB -ezC -hoZ -bRJ -gHf -hoZ -ezC -pty -bRJ -hWB -vcJ -vcJ -uHp -vcJ -vcJ -mDX -tfX -vuS -vuS -pQs -pQs -gAh -oDh -pQs -pQs -iXf -rja -rja -azP -rja -jta -rja -vVi -vVi -vVi -rja -iXf -mTs -pQs -pQs -sry -qra -mku -aeQ -pQs -pQs -pQs -iXf -iXf -bis -bis -bis -bis -bis -dBy -mNh -ycC -nac -rSy -dBy -bis -bis -bis -bis -bis -bis -wFr -vzX -nkP -qGU -xvB -ogC -nkT -vBX -mpJ -ogC -nkT -vBX -mpJ -ogC -xvB -nkT -xNn -hbr -ogC -gcx -pLQ -gcx -ogC -eWW -yeX -uRB -byT -bnA -muW -ogC -muW -wrR -xvv -xvv -xvv -rLA -ipd -tew -gJr -jdq -jdq -jdq -iQz -jdq -xkT -wxb -vhB -vhB -wxb -vhB -vhB -wxb -vhB -yaC -wZm -jgu -jgu -oPU -oPU -fZD -wbI -wbI -agG -gVO -lcN -nKX -wbI -wbI -wbI -wbI -wbI -wbI -wbI -oPU -jgu -jgu -itN -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(86,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -agi -agi -dxS -agi -hoZ -gFg -hoZ -gFg -adu -gzb -gzb -gzb -adu -hoZ -lLQ -lLQ -vaQ -pCJ -fXF -tBW -fEk -ezC -pty -cDx -hWB -pCJ -uBK -tBW -lAC -hoZ -ezC -pty -bRJ -hWB -bEv -bEv -vcJ -vcJ -vrW -fuC -apf -pQs -umZ -jIz -pQs -vuS -pQs -pQs -sAp -pQs -iXf -vVi -xxD -pVc -xxD -bCS -bsQ -tcN -mvj -rja -jte -pQs -iXf -iXf -oyN -orj -tTk -oyN -iXf -iXf -iXf -bis -bis -bis -bis -bis -bis -bis -wGM -ycC -rSy -ycC -mNh -dDU -qxJ -bis -bis -bis -fbi -vuc -nkP -nkP -nkP -qGU -okv -ogC -nkT -vBX -mpJ -ogC -nkT -vBX -mpJ -ogC -okv -nkT -ojk -uSA -ogC -gcx -okv -gcx -ogC -eWW -uSA -uSA -giw -noz -nSh -vBX -ogC -eMG -xvv -xvv -xvv -rLA -ipd -lvU -gJr -jdq -kyE -pau -jFh -vKF -rkn -hjD -wxb -wxb -wxb -wxb -wxb -wxb -sOu -yaC -wZm -kXD -wDM -vhB -bED -wbI -ksx -nrj -vtl -yaC -rRx -ivz -edj -nrj -wbI -bNT -edj -nrj -vtl -oPU -lgS -jgu -itN -itN -itN -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(87,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -agi -agi -dxS -dxS -dxS -dxS -agi -hoZ -vjT -gFg -vjT -pty -lrA -lrA -lrA -pty -hoZ -lLQ -lLQ -jXz -tQi -tQi -tQi -jXz -ezC -pty -bRJ -eSH -fQf -gHf -gHf -aWV -pty -ezC -pty -mbC -dxS -whf -uwK -sET -bEv -wuJ -fFx -oGu -uHl -nWC -jgA -gAh -oGu -gAh -iXf -vuS -pQs -pQs -tob -xxD -xxD -xxD -pqG -pqG -xZP -pVv -rja -dYk -iXf -puy -dAF -dAF -dAF -dAF -dAF -dAF -dAF -sMG -bis -bis -tpt -nuG -nuG -rZz -eTc -eED -ycC -lqq -ycC -lqq -ujJ -ycC -ycC -dgw -elU -elU -elU -aQv -bHD -nkP -qGU -okv -ogC -nkT -ppQ -mpJ -ogC -nkT -iHu -mpJ -ogC -okv -nkT -ojk -uSA -ogC -gcx -pLQ -gcx -ogC -eWW -vBX -vBX -vBX -uSA -kfY -vBX -ogC -bPG -xvv -xvv -xvv -rLA -ipd -lvU -gJr -lke -xkT -wrR -ipd -ipd -nvD -hcC -vhB -vhB -wxb -vhB -vhB -wxb -vhB -yaC -wZm -kXD -fYy -vhB -oPU -aRT -gYC -ehd -oyC -yaC -wZm -aRT -gYC -ehd -tfx -qaO -aYI -eas -oyC -oPU -oPU -jgu -jgu -jgu -itN -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(88,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -agi -agi -agi -agi -agi -dxS -agi -hoZ -gGx -hoZ -hoZ -pty -lrA -agi -lrA -pty -hoZ -lLQ -lLQ -vaQ -qHZ -pkK -ngr -lAC -ezC -pty -uVj -hWB -qHZ -pYJ -ngr -lAC -pty -ezC -pty -gAh -eXp -vTv -heO -gYT -vcJ -bke -bIZ -eXp -oGu -iXf -iqj -oGu -iXf -moB -iXf -pQs -pQs -iXf -rja -rja -mfR -xxD -xxD -xxD -xxD -xxD -vVi -puy -dAF -cwN -iXf -iXf -iXf -iXf -iXf -iXf -iXf -nHO -bis -bis -qsW -lqq -mxR -lqq -kqQ -pYc -lqq -lqq -geL -nkP -ycC -glO -pko -elU -nkP -nkP -ycC -nkP -qGU -nkP -qGU -okv -ogC -nkT -yeX -uRB -ofw -cBN -hGn -mpJ -ogC -okv -nkT -ojk -eWW -ogC -gcx -aVd -gcx -ogC -eWW -vBX -vBX -vBX -uSA -kfY -vBX -ogC -bPG -xvv -xvv -xvv -rLA -ipd -whK -gJr -jdq -xeV -fxG -iTs -dnD -fmq -jKJ -wxb -wxb -sOu -wxb -wxb -wxb -wxb -yaC -wZm -jgu -eOj -oPU -oPU -bNT -gYC -ehd -oRR -xHn -wZm -aRT -gYC -ehd -fQB -wbI -cCt -wbI -wbI -oPU -oPU -dGw -iwQ -jgu -itN -itN -itN -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -"} -(89,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -agi -agi -agi -agi -agi -dxS -hoZ -hoZ -fqF -hoZ -hoZ -pty -lrA -agi -lrA -pty -hoZ -lLQ -lLQ -hWB -ezC -lLQ -bRJ -hWB -ezC -pty -bRJ -hoZ -hoZ -lLQ -bRJ -wDO -pty -ezC -pty -gAh -nga -eXp -eXp -apf -apf -apf -apf -eXp -iXf -iXf -iXf -rja -dZH -ccH -iXf -gAh -pQs -pQs -dwI -rja -rja -toE -toE -hqc -xxD -xxD -tob -igG -iXf -iXf -iXf -iXf -iXf -iXf -iXf -iXf -iXf -dKA -bis -bis -tMI -lqq -lqq -lqq -kqQ -ycC -lqq -lqq -ycC -lqq -sBA -fhb -voG -erA -erA -erA -uSa -nkP -qGU -vAg -bis -bnA -wQR -eWW -eWW -eWW -hjR -eWW -eWW -eWW -tSY -bnA -uDU -ojk -eWW -ogC -gcx -okv -gcx -ogC -eWW -uSA -uSA -qLv -gyy -dpn -vBX -ogC -bPG -xvv -xvv -xvv -rLA -ipd -jCE -xRC -pau -wsx -jdq -iQz -jdq -xkT -wxb -hCc -vhB -wxb -vhB -vhB -jHr -vhB -afc -wZm -kXD -jQM -vhB -oPU -bNT -gYC -sSZ -vtl -yaC -jat -lls -gYC -ehd -wbI -bNT -edj -nrj -vtl -oPU -oPU -oPU -dGw -jgu -jgu -jgu -itN -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -"} -(90,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -agi -agi -agi -agi -agi -dxS -hoZ -hoZ -vjT -gFg -vjT -pty -lrA -lrA -lrA -pty -hoZ -uUY -lLQ -vaQ -pCJ -fXF -tBW -dhV -ezC -pty -bRJ -hoZ -uUY -kWi -tBW -lAC -agi -ezC -pty -egv -nga -nga -nga -nIW -apf -huD -nga -nga -apf -apf -qQE -rja -rja -rbQ -iXf -iXf -pQs -pQs -mCH -iXf -vVi -fyy -toE -toE -pxk -bJb -rja -igG -vYo -aOK -aOK -aOK -vVs -aOK -aOK -oWm -iXf -nHO -bis -bis -jMI -puw -lqq -rle -iyy -bis -bis -wMi -wMi -wMi -bis -bis -nkP -nkP -nkP -uXB -glO -nkP -ksb -vAg -bis -bnA -wQR -eWW -eWW -eWW -vBX -eWW -eWW -eWW -tSY -bnA -uDU -ojk -upL -ogC -gcx -okv -gcx -ogC -eWW -yeX -uRB -byT -bnA -tJI -poH -tJI -wrR -tkP -uBA -uBA -tGv -wrR -wrR -wrR -wrR -gJr -kyE -jFh -vKF -rkn -hjD -wxb -nWT -wxb -wxb -wxb -wxb -wxb -yaC -wZm -kXD -gnq -itd -oPU -bNT -aYI -grI -oyC -xFZ -eIg -pIt -aYI -eas -hFH -bNT -aYI -eas -oyC -oPU -oPU -oPU -oPU -dGw -iwQ -jgu -itN -itN -itN -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -"} -(91,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -agi -agi -agi -agi -agi -dxS -hoZ -hoZ -gFg -iKg -gFg -adu -gzb -gzb -gzb -adu -hoZ -lLQ -lLQ -jXz -lGR -lGR -lGR -jXz -aUc -pty -bRJ -eSH -gHf -ira -lGR -aWV -agi -pCJ -fXF -qdJ -apf -nIW -apf -apf -nIW -nIW -nIW -wCF -nIW -eYT -eXp -eXp -eXp -rja -iXf -gAh -pQs -pQs -pQs -iXf -vVi -sha -pNj -tDB -rja -rja -rja -igG -nHO -iXf -iXf -iXf -iXf -iXf -iXf -igG -iXf -nHO -bis -ycC -fAZ -nuG -nuG -gdt -gSP -bis -bis -gUT -nuG -nuG -bis -bis -nkP -xut -ycC -nkP -glO -nkP -qGU -nkP -qGU -xvB -ogC -nkT -yeX -uRB -pdc -cBN -hGn -mpJ -ogC -xvB -nkT -ojk -eWW -ogC -gcx -okv -gcx -ogC -wpx -vJn -vJn -asE -bnA -mEs -ogC -muW -wrR -tvg -lIu -lIu -lIu -lIu -whK -ipd -pOz -gJr -xkT -jmV -jmV -pTI -itN -itN -itN -itN -jgu -wxb -wxb -wxb -yaC -wZm -jgu -jgu -oPU -oPU -agv -rPI -qJf -gfL -lQM -jaO -doq -wbI -tmx -gfj -wbI -wbI -weX -wbI -oPU -oPU -oPU -gAn -oPU -rma -jgu -jgu -jgu -itN -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -"} -(92,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -agi -agi -agi -agi -agi -dxS -hoZ -hoZ -vjT -gFg -vjT -pty -hoZ -hoZ -hoZ -hoZ -hoZ -lLQ -uUY -hoZ -pkK -pkK -pkK -pkK -hWB -pty -hWB -pkK -pkK -pkK -pkK -aWV -jXz -pty -pty -qdJ -apf -ybg -dft -lbO -nIW -nIW -nIW -nIW -nIW -eXp -eXp -eXp -gAh -rja -iXf -iXf -pQs -pQs -pQs -iXf -rja -vVi -rja -rja -rja -puy -dAF -cwN -nHO -iXf -oyN -pGw -dLF -oyN -iXf -igG -iXf -vZU -ycC -nkP -ycC -lqq -lqq -bis -bis -bis -lQd -geL -wdT -cCF -tMI -bis -bis -dje -nkP -nkP -glO -lMd -qGU -nkP -qGU -okv -ogC -nkT -vBX -mpJ -ogC -nkT -ppQ -mpJ -ogC -okv -nkT -ojk -uSA -ogC -gcx -okv -gcx -ogC -xzn -wrR -ipd -ipd -wrR -wrR -wrR -wrR -wrR -lIu -lIu -lIu -lIu -lIu -hzK -ipd -wrr -gJr -xkT -jmV -jmV -dxs -tRH -bQM -bQM -itN -sEA -oPU -oPU -wxb -yaC -xru -xRT -ubH -ubH -ubH -iKj -wdZ -buN -iBS -cIh -tYB -wjO -oPU -eFR -oPU -ccY -oPU -sBj -oPU -mpb -oPU -oPU -oPU -oPU -oPU -dGw -sRF -jgu -itN -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -"} -(93,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -pty -pty -pty -aPD -hoZ -hoZ -hoZ -pty -itv -pty -hoZ -hoZ -hoZ -hoZ -hoZ -lLQ -uUY -pty -pty -pty -pty -pty -ezC -pty -hoZ -pty -pty -pty -pty -pty -pty -pty -pty -egv -nga -nIW -nIW -nIW -qdJ -qdJ -qdJ -qdJ -qdJ -rja -rja -rja -gAh -puy -rWk -dAF -dAF -rOX -dAF -dAF -dAF -dAF -dAF -mtS -dAF -cwN -iXf -iXf -nHO -iXf -sry -qra -mku -aeQ -iXf -igG -iXf -nHO -rSy -mNh -lqq -mxR -nzI -bis -bis -ujh -cLA -ylf -nuG -efk -rYX -ujh -dje -ycC -hNY -ycC -glO -nkP -qGU -nkP -pGj -okv -ogC -nkT -vBX -sBv -ogC -nkT -vBX -mpJ -ogC -okv -nkT -ojk -uSA -ogC -gcx -okv -gcx -ogC -byT -waO -cis -hRP -vmJ -fxG -fxG -fxG -fxG -fxG -fxG -fxG -fxG -hrj -jCE -ipd -xFk -gJr -xkT -jmV -jmV -qkF -tRH -bQM -bQM -itN -aDp -oPU -oPU -wxb -cTk -wUe -wUe -oxc -wUe -wUe -hAW -wUe -wUe -wtn -xVg -mzI -exa -oPU -dkl -oPU -oPU -qVW -vtk -oPU -oPU -oPU -oPU -oPU -oPU -oPU -tmX -wVb -jgu -itN -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -"} -(94,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -pty -aWV -agi -agi -hoZ -hoZ -pty -hoZ -hoZ -hoZ -pty -hoZ -agi -agi -aWV -agi -jXz -fXF -fXF -fXF -fXF -hWB -hoZ -pty -bRJ -hWB -fXF -fXF -fXF -fXF -hWB -pty -pty -egv -nga -apf -nIW -nIW -qdJ -oDx -apf -nLv -oyN -puy -dAF -dAF -dAF -cwN -iXf -apf -iXf -iXf -iXf -iXf -iXf -iXf -iXf -iXf -iXf -iXf -iXf -iXf -nHO -iXf -oyN -orj -tTk -oyN -iXf -igG -nHO -dWB -nkP -rSy -ycC -lqq -geL -sBA -vHn -lqq -woE -ane -vvp -amd -aFA -puw -uWC -dyB -mNh -dDU -glO -ycC -qGU -nkP -qGU -okv -ogC -nkT -yeX -uRB -pdc -cBN -hGn -mpJ -ogC -okv -nkT -aje -wHh -ogC -gcx -okv -gcx -enf -xzn -waO -cis -bbB -pau -pau -pau -twl -pau -pau -pau -pau -wsx -xkT -vto -ipd -liU -gJr -xkT -jmV -jmV -jmV -tRH -tRH -bQM -itN -jgu -uax -wxb -wxb -wbI -wbI -wbI -fZD -oPU -oPU -hbo -jJS -occ -qBB -eiF -haz -rwu -wbI -uep -wbI -icS -lFc -rAK -oPU -oPU -aBZ -oPU -vhB -vhB -oPU -jgu -jgu -jgu -itN -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -"} -(95,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -aWV -fAC -gZU -dxS -agi -hoZ -hoZ -hoZ -hoZ -hoZ -bRJ -pty -kAO -agi -agi -agi -agi -jXz -aWV -jXz -jXz -jXz -adu -hoZ -pty -hoZ -adu -jXz -jXz -jXz -cvL -hWB -hoZ -pty -lns -apf -nIW -nIW -nIW -qdJ -apf -iTm -wuy -dAF -cwN -iXf -iXf -iXf -iXf -apf -vYo -aOK -aOK -aOK -aOK -aOK -aOK -aOK -aOK -aOK -aOK -aOK -aOK -iTB -rja -rja -rja -rja -rja -rja -igG -iXf -nHO -bis -ycC -nzI -ycC -lqq -sBA -nuG -nuG -kqQ -rgg -bxV -hMf -ycC -ycC -nuG -dje -ddG -ddG -biR -nkP -xez -bis -bis -bnA -uDU -eWW -eWW -eWW -vBX -eWW -eWW -eWW -tSY -bnA -uDU -uTT -wit -ogC -gcx -okv -gcx -sSd -xzn -wrR -wrR -kXg -jdq -jmV -pGy -eYN -eYN -ybx -qZb -jdq -gJr -qeI -csz -ipd -hqq -gJr -xkT -qDv -jmV -gOK -gOK -gEx -bQM -uGT -wxb -oPU -oPU -wxb -bNT -wez -pdM -wbI -oPU -oPU -bNT -edj -fSd -vtl -yaC -wZm -bNT -edj -uqm -lDl -uqm -nrj -wbI -mpb -oPU -jgu -jgu -nUe -cDl -itN -itN -itN -itN -itN -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -"} -(96,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -aWV -wsU -vMj -dxS -dxS -hoZ -bmV -hoZ -ezC -hoZ -bRJ -pty -hoZ -agi -agi -agi -agi -jXz -jXz -hPV -hPV -hWB -hWB -vTY -hWB -hWB -qGs -xGG -vwe -lct -lfh -hWB -hoZ -pCX -iXf -iPx -apf -orA -egv -qdJ -nLv -iTm -iTm -lns -iXf -iXf -vYo -aOK -aOK -hVx -iTB -eXp -diy -amX -oyN -oyN -oyN -iXf -diy -eXp -dTx -eXp -eXp -eXp -rja -ubc -gVs -lex -lex -rja -igG -kMq -nHO -bis -bis -hPY -lqq -lqq -sBA -kqQ -jpc -eAy -lqq -qbW -dOE -woE -lqq -drP -eFD -glO -nkP -hNY -nkP -qGU -nkP -nkP -bnA -cxn -eWW -eWW -eWW -vBX -kwN -eWW -eWW -vBX -bnA -vBX -eWW -wit -ogC -gcx -okv -gcx -enf -xzn -wrR -jaw -oJs -pIr -iWk -tgs -etF -eYl -bOW -wNV -eBJ -gJr -xkT -fOO -ipd -whK -gJr -xkT -jmV -wSL -hLS -hLS -gEx -bQM -uGT -bUE -yky -oAv -jgu -bNT -aYI -eas -wbI -oPU -oPU -wbI -dCh -ehd -oyC -cyJ -nHi -wbI -lGG -dzz -dzz -dzz -jsd -wbI -oPU -oPU -eLu -djY -uMt -uMt -iHZ -eLu -twb -twb -kPz -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -"} -(97,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -aWV -aak -avI -uTl -mAv -dxS -hoZ -hoZ -pty -hoZ -hoZ -hoZ -pty -hoZ -agi -agi -agi -agi -aWV -jXz -ipr -lLQ -hWB -fXF -hWB -lLQ -hWB -gKw -gKw -hWB -gKw -rTO -pty -hoZ -hoZ -iXf -nga -esS -apf -egv -qdJ -oyN -igG -apf -vYo -aOK -hVx -iTB -rja -rja -rja -rja -eXp -uRc -iXf -oyN -oyN -oyN -iXf -mxq -eXp -pTR -apf -hjV -hjV -apf -apf -apf -apf -apf -rja -igG -kMq -dKA -bis -bis -bis -wlG -bis -bis -bis -ujh -erx -gis -gdt -iiN -nuG -ujh -bis -bis -bBM -nkP -glO -nkP -qGU -dje -nkP -bnA -ogC -nkT -yeX -uRB -ofw -cBN -hGn -mpJ -ogC -vBX -vBX -uTT -bem -ogC -gcx -okv -gcx -ogC -byT -wrR -qqg -cTm -eBJ -kGz -bSM -bSM -bSM -bSM -ihr -fET -gJr -xkT -wrr -ipd -hzK -gJr -xkT -jmV -hLS -wHo -hLS -gEx -bQM -uGT -uGT -uGT -uGT -itN -wbI -mtj -wbI -wbI -gum -gum -bNT -gYC -rAC -nFB -iGY -wZm -vLH -gez -cXN -gez -gez -hyh -wbI -oPU -oPU -eLu -oHe -uMt -uMt -vnG -eLu -twb -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(98,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -aWV -agi -dcI -iLh -dxS -pty -hoZ -pty -hoZ -hoZ -bRJ -hoZ -hoZ -agi -agi -agi -agi -aWV -jXz -hWB -hWB -qHZ -lLQ -ngr -hWB -vum -gKw -gKw -hWB -gKw -gKw -pty -pty -pty -apf -uQE -iXf -apf -rja -rja -puy -cwN -iXf -nHO -gJZ -rja -rja -eXp -eXp -eXp -eXp -eXp -diy -iXf -oyN -oyN -oyN -amX -diy -eXp -eXp -eXp -eXp -eXp -eXp -apf -apf -apf -wvY -rja -igG -iXf -nHO -bis -ewE -ewE -ycC -xIx -bis -bis -bis -uMd -mxR -uYF -lqq -tMI -bis -bis -bis -bis -bis -glO -nkP -qGU -nkP -nkP -bht -hTM -okv -rHv -mpJ -ogC -nkT -ppQ -mpJ -ogC -vBX -vBX -eWW -bem -rwh -gcx -tER -gcx -ogC -byT -wrR -vaE -aDl -nLm -jSo -tPo -tPo -tPo -tPo -ikG -eBJ -gJr -rcm -wQO -ipd -jCE -gJr -xkT -jmV -jmV -orP -orP -gEx -bQM -bQM -bQM -bQM -bQM -itN -itN -jgu -jgu -jgu -fGh -fGh -jgu -kVw -ehd -vtl -yaC -wZm -bNT -edj -lDl -lDl -lDl -nrj -vtl -oPU -oPU -eLu -vMW -uMt -uMt -vnG -uhP -twb -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(99,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -lAh -aMg -dxS -pty -pty -pty -ezC -hoZ -bRJ -hoZ -hoZ -aWV -aWV -agi -pty -aWV -jXz -hWB -lfO -jlb -pty -ifw -mko -hWB -hOV -hOV -hWB -hOV -cAr -egv -gAh -iXf -apf -apf -apf -uQE -apf -lag -igG -aEy -iXf -nHO -ehT -rja -eXp -oyN -pGw -ahY -jqW -eXp -tBJ -aaJ -oyN -oyN -oyN -mxy -lqQ -eXp -oyN -pGw -dLF -oyN -jOM -apf -apf -apf -apf -jOM -igG -iXf -nHO -wpD -lpr -ycC -ycC -ycC -bis -pcK -bis -bis -gdt -nuG -mHj -nuG -vgv -uKi -hiu -nkP -vgv -glO -nkP -qGU -jrD -hNY -omI -ogC -nkT -vBX -mpJ -ogC -nkT -vBX -mpJ -ogC -vBX -vBX -eWW -wit -bAt -kJf -okv -gcx -ogC -xzn -wrR -wrR -kjH -waC -jmV -vSl -vSl -jmV -jmV -kHx -jdq -gJr -xkT -wrR -wrR -wrR -vpH -xkT -orP -jmV -lCR -nvD -tRH -tRH -bQM -bQM -bQM -bQM -bQM -twb -lXs -hsZ -pBb -jJb -cME -eLu -kVw -ehd -oyC -yaC -wZm -bNT -aYI -dzz -dzz -hwo -eas -oyC -oPU -vhB -ayX -fjZ -gfo -qPr -iHZ -vnG -nON -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(100,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -bQM -bQM -azZ -agi -qRg -aWV -adu -hoZ -hoZ -hoZ -adu -agi -agi -agi -hoZ -jev -pty -jXz -hWB -gCB -wMh -wPP -lEk -fdh -hWB -qHZ -ngr -lLQ -qHZ -ngr -egv -iXf -iXf -apf -apf -apf -apf -apf -lag -igG -iXf -iXf -nHO -cvW -rja -eXp -sry -ptO -ygi -wKs -oWb -pGI -uws -uzy -uzy -uzy -iAq -pGI -iXf -sry -qra -mku -aeQ -rja -apf -esS -apf -xYe -rja -igG -iXf -nHO -bis -xIx -ycC -trS -ycC -wpD -ycC -bis -bis -wMi -wMi -wMi -bis -bis -fhb -vgv -jfW -bis -glO -nkP -qGU -nkP -dje -fvO -okv -dJD -vBX -mpJ -ogC -nkT -ppQ -mpJ -wLB -iuz -vBX -eWW -wit -bAt -uEj -okv -gcx -ogC -xzn -waO -cis -hRP -fxG -fnJ -fxG -fxG -fxG -fxG -vmJ -fxG -okA -xeV -fxG -fxG -fxG -hjv -xeV -fxG -fxG -fxG -fxG -jNu -gEx -bQM -bQM -bQM -bQM -bQM -tPN -wXR -apd -pBb -cME -jJb -eLu -esb -ehd -oyJ -yaC -uGN -wbI -gez -gez -cPc -gez -aHR -wbI -oPU -vhB -ayX -uMt -gfo -gfo -iHZ -vnG -ybq -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(101,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -bQM -bQM -bQM -bQM -bQM -agi -aWV -agi -hWB -ezC -hoZ -bRJ -hWB -agi -adu -pty -hoZ -hoZ -pty -hoZ -dxG -bRJ -lLQ -pty -lLQ -ezC -hWB -ezC -bRJ -lLQ -ezC -bRJ -egv -apf -apf -apf -apf -pKY -qlf -hcv -hds -xxB -gRp -iXf -nHO -eXp -eXp -eXp -oyN -orj -sMG -drS -iXf -iXf -iXf -oyN -oyN -oyN -iXf -iXf -iXf -oyN -orj -tTk -oyN -rja -rja -rja -rja -rja -rja -igG -kMq -nHO -bis -ewE -ycC -ycC -bis -bis -wlG -bis -nOz -lqq -mxR -lqq -nOz -bis -bis -bis -bis -bis -glO -nkP -qGU -bis -bis -bnA -bnA -cEw -bnA -bnA -bnA -ulA -eWW -eWW -eWW -hjA -vBX -eWW -bem -bAt -jji -vjG -gcx -ogC -byT -waO -cis -ivv -pau -pau -pau -pau -pau -pau -pau -wfg -wsx -kyE -pau -pau -wsx -jdq -jdq -kyE -pau -pau -wsx -xkT -gEx -bQM -bQM -bQM -bQM -bQM -twb -iaC -reP -pBb -cME -cME -eLu -jgu -iSu -vtl -yaC -wZm -bNT -vHp -lDl -lDl -lDl -rYI -wbI -oPU -oPU -eLu -djY -uMt -uMt -iHZ -gSC -ybq -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(102,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -bQM -bQM -bQM -bQM -bQM -agi -agi -agi -hWB -ezC -pCX -bRJ -hWB -agi -adu -jev -hoZ -hoZ -hoZ -adu -wOH -bRJ -neT -qol -lLQ -ezC -hWB -mBB -bRJ -lLQ -ezC -iuq -iXf -apf -iLJ -apf -iXf -iXf -iXf -iXf -rja -igG -iXf -iXf -bDA -dAF -dAF -dAF -dAF -dUN -paa -hod -fbf -dAF -fMT -dAF -dAF -dAF -dAF -dAF -dAF -dAF -dAF -dAF -dAF -dAF -dAF -dAF -dAF -dAF -dAF -cwN -kMq -dKA -bis -ewE -ycC -kCI -bis -kSV -hlf -xiy -lqq -mxR -lqq -lqq -lqq -xxW -hlf -dKu -bis -bFr -wKo -nkP -qGU -bHt -bFr -cEw -cEw -cEw -cEw -bnA -bCh -eWW -eWW -uSA -eWW -hjA -vBX -uTT -bem -ogC -gcx -okv -gcx -ogC -byT -wrR -oKP -pXx -wrR -wrR -wzI -jmV -iQh -wrR -ipd -wrR -vFG -mmZ -jdq -jmV -pGy -eYN -eYN -ybx -jmV -jdq -gJr -xkT -tRH -tRH -tRH -tRH -tRH -twb -twb -nzU -lvg -pBb -cME -uzw -eLu -jgu -jgu -fic -yaC -wZm -bNT -aYI -rno -hLd -rno -eas -wbI -oPU -oPU -eLu -eap -uMt -uMt -sye -vnG -nON -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(103,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -bQM -bQM -bQM -bQM -lAh -bQM -aWV -fXL -fXL -dmE -jPJ -iDq -iDq -dmE -fXL -agi -pty -hoZ -hoZ -hoZ -adu -wOH -hWB -pCJ -sxk -tBW -hWB -hWB -ezC -kSg -lLQ -ezC -bRJ -uQE -apf -apf -iXf -gAh -egv -egv -rja -rja -igG -iXf -iXf -iqj -iXf -iXf -iXf -iXf -iXf -pzP -piy -iXf -iXf -iXf -iXf -iXf -iXf -iXf -iXf -iXf -iXf -iXf -iXf -iXf -kMq -kMq -iXf -iXf -iXf -kMq -kMq -iXf -nHO -bis -kCI -ycC -bis -bis -njM -jkY -gtY -lqq -lqq -lqq -epV -lqq -sAl -nod -iNE -bis -bis -sxa -nkP -xez -bis -bFr -cEw -cEw -cEw -cEw -bnA -hBa -uSA -uSA -eWW -eWW -eys -vBX -eWW -wit -ogC -gcx -kEj -gcx -ogC -xzn -waO -qLK -cis -ipd -crF -cis -jdq -cis -jdq -eQi -ipd -gJr -xkT -eBJ -iWk -bPF -etF -eYl -bOW -wNV -eBJ -gJr -xkT -wrR -jmV -jmV -qZb -wrR -eLu -eLu -eLu -eLu -eLu -rIE -usg -eLu -kVw -ehd -msu -tHO -ofx -fbo -wbI -fZD -wbI -wbI -wbI -wbI -oPU -oPU -eLu -jEb -uMt -uMt -vnG -psF -twb -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(104,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -bQM -bQM -bQM -bQM -lAh -bQM -agi -agi -agi -hWB -ezC -hoZ -bRJ -hWB -agi -pty -pty -hoZ -hoZ -hoZ -jXz -sdp -lLQ -hWB -pkK -hWB -lLQ -eoF -pCJ -tBW -agi -pCJ -tBW -apf -esS -iXf -egv -egv -egv -egv -eXp -rja -puy -sMG -aOK -mmq -aOK -hVx -aOK -puy -dAF -dAF -sMG -aOK -hVx -aOK -aOK -aOK -aOK -aOK -hVx -aOK -puy -dAF -dAF -sMG -aOK -aOK -hVx -aOK -aOK -aOK -aOK -aOK -iTB -bis -tgB -tgB -bis -nOz -bbS -wRp -xst -lqq -lqq -lqq -lqq -lqq -vrT -bbS -wRp -nOz -bis -glO -oGV -qGU -bHt -bFr -cEw -cEw -cEw -cEw -bnA -agk -eWW -eWW -uSA -eWW -eWW -vBX -uTT -wit -ogC -gcx -okv -gcx -ogC -xzn -waO -cis -cis -ipd -kCo -cis -jdq -cis -jdq -kvP -ipd -gJr -vIh -eBJ -kGz -bSM -bSM -bSM -bSM -ihr -eBJ -gJr -xkT -wrR -wzI -jmV -kFH -wrR -qzo -neE -iTK -uMc -eLu -cME -cME -eLu -dzz -dYK -fZD -yaC -wZm -oPU -oPU -oPU -oPU -oPU -oPU -oPU -mpb -vhB -ayX -uMt -gfo -gfo -uMt -qEN -twb -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(105,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -bQM -bQM -bQM -bQM -bQM -lAh -azZ -agi -agi -hoZ -hWB -ezC -hoZ -bRJ -hWB -hoZ -hoZ -hsc -hoZ -bmV -aWV -jXz -ruE -eoF -hWB -hWB -rtt -hWB -hWB -agi -agi -agi -agi -agi -apf -apf -iXf -egv -egv -tel -ioM -ioM -ioM -sKu -iXs -ioM -ioM -ioM -ioM -ioM -sKu -chx -chx -iXs -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -ioM -sKu -chx -chx -iXs -ioM -ioM -hVI -hVI -hVI -mMM -mMM -hVI -hVI -hVI -nXj -nXj -sJu -lqq -bbS -wRp -qMe -wxy -nOz -pVR -nOz -qiM -wuE -bbS -wRp -lqq -wpD -glO -nkP -qGU -bis -bFr -cEw -cEw -cEw -cEw -cEw -bnA -uMz -eWW -eWW -eWW -eWW -vBX -xNn -hbr -ogC -gcx -okv -gcx -ogC -xzn -waO -cis -cis -ipd -jTx -cis -eTE -cis -jdq -iCd -ipd -gJr -xkT -eBJ -jSo -tPo -tPo -tPo -tPo -ikG -eBJ -gJr -xeV -aMM -fxG -fxG -fxG -aMM -inX -ubP -ubP -cAo -liA -cME -cME -liA -gez -gez -wbI -yaC -wZm -oPU -mpb -oPU -oPU -oPU -oPU -oPU -oPU -vhB -ayX -uMt -gfo -gfo -uMt -xQz -twb -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(106,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -bQM -bQM -bQM -bQM -bQM -lAh -azZ -agi -agi -agi -hWB -ezC -pCX -bRJ -hWB -hoZ -hoZ -hsc -hoZ -hoZ -aWV -aWV -aWV -lqO -lqO -lqO -jXz -aWV -agi -agi -agi -agi -agi -agi -apf -apf -gAh -egv -egv -tel -ioM -ioM -ioM -wxH -cOK -ioM -hVI -hVI -yiK -uDJ -vjH -uBy -uBy -twL -lav -hVI -hVI -hVI -hVI -hVI -hVI -hVI -aLW -vjH -uBy -uBy -twL -guX -sJu -hbd -gZF -hVI -bmE -bmE -hVI -sVU -mEO -mEO -mEO -hVI -nOz -bbS -wRp -eTc -kWl -rfu -rfu -rfu -nnR -eTc -bbS -wRp -nOz -bis -glO -nkP -qxJ -nUd -cvn -bQM -bQM -bQM -kPz -wyT -eWW -bLT -ogC -nkT -eWW -eWW -vBX -ojk -vBX -ogC -gcx -okv -gcx -ogC -xzn -wrR -oKP -pXx -wrR -wrR -wzI -jmV -iQh -wrR -ipd -wrR -vFG -xkT -jdq -jmV -wLs -jmV -kxw -jmV -jmV -jdq -gJr -kyE -aMM -pau -pau -pau -aMM -inX -ubP -ubP -ubP -phe -uJg -cME -eLu -lDl -rYI -wbI -yaC -wZm -oPU -eLu -eLu -eLu -eLu -eLu -eLu -eLu -eLu -eLu -bhE -uMt -uMt -wGm -eLu -twb -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(107,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -lAh -azZ -azZ -bQM -bQM -bQM -bQM -lAh -azZ -agi -agi -agi -aWV -lqO -lqO -lqO -jXz -adu -adu -agi -agi -pty -pty -jXz -bYO -bYO -bYO -bYO -bYO -jXz -xLi -osF -rlO -azZ -xLi -rja -apf -apf -rja -rja -egv -ioM -ioM -ioM -ioM -sKu -iXs -ioM -hVI -cPj -aLW -aLW -aLW -aLW -aLW -aLW -aLW -cPj -hVI -hVI -hVI -hVI -hVI -cPj -aLW -mXb -ixB -aLW -aLW -guX -sJu -cyV -cyV -gZF -cyV -cyV -sJu -mEO -mEO -mJk -svh -hVI -bis -bbS -jaj -hlf -hlf -hlf -hlf -hlf -hlf -hlf -izO -wRp -bis -bis -glO -nkP -nkP -qGU -cvn -kPz -kPz -kPz -cEw -wyT -eWW -mpJ -ogC -nkT -eWW -eWW -vBX -ojk -vBX -ogC -gcx -okv -gcx -ogC -epf -cKU -jdq -hRP -fxG -fxG -fxG -fxG -fxG -fxG -fxG -fxG -hjv -xeV -fxG -fxG -fxG -fxG -fxG -fxG -fxG -fxG -hjv -xkT -wrR -jmV -jmV -jmV -wrR -ubP -ubP -ubP -iTK -eLu -cME -cME -eLu -rno -eas -wbI -yaC -wZm -lgS -eLu -eLu -eLu -iYQ -iYQ -eLu -iYQ -iYQ -eLu -eLu -ppI -ppI -eLu -eLu -twb -twb -kPz -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(108,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -lAh -azZ -azZ -bQM -bQM -bQM -azZ -lAh -azZ -azZ -azZ -azZ -bYO -bYO -bYO -bYO -bYO -bYP -rEL -azZ -xLi -ddL -ddL -xLi -bYP -bYP -bYP -uVd -bYP -sRk -bYP -bYP -bYP -azZ -azZ -aLW -aLW -aLW -mEO -aLW -aSu -hVI -tZI -qbm -pwf -vjH -twL -aLW -hsV -bdc -tXM -lhj -aLW -aLW -tMY -bdc -eJE -nVD -nVD -lfA -oqD -gMj -tXM -aLW -aLW -bPq -oGG -dda -eJE -ioM -hVI -cyV -cyV -gZF -cyV -mbg -ioM -yaJ -mEO -mrX -mrX -pkM -bis -qBF -niD -niD -niD -nod -nkP -sPY -niD -niD -niD -xFi -bis -lRs -wHa -uSa -hqw -qGU -cvn -bQM -bQM -bQM -wyT -eWW -yeX -uRB -ofw -cBN -hGn -jQg -vBX -aje -wHh -ogC -gcx -okv -gcx -ogC -vBX -evT -jdq -gJr -jdq -jdq -jdq -ljy -jdq -jdq -jdq -jdq -jdq -jdq -jdq -jdq -jdq -jdq -jdq -jdq -jdq -jdq -jdq -uwA -wrR -wrR -jRh -wrR -wrR -rfQ -eIQ -ubP -neE -eLu -eLu -eLu -eLu -sGI -szK -wbI -cTk -ent -oPU -eLu -mTM -gyJ -cME -cME -rJh -cME -cME -cME -gyJ -cME -cME -eLu -nOD -bDC -twb -twb -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(109,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -lAh -lAh -lAh -lAh -lAh -lAh -lAh -azZ -azZ -lHX -lHX -vXu -kBQ -mJe -iwW -twP -bYP -vXf -lHX -lHX -mZi -lHX -lHX -lHX -lHX -lHX -lHX -lHX -lHX -lHX -lHX -lHX -lHX -azZ -azZ -azZ -upV -bdc -bdc -mEO -bdc -mEO -mEO -aLW -cOK -tMY -bdc -tXM -wxH -wVl -cOK -tMY -bdc -tXM -wxH -aLW -tIM -tMY -bdc -tXM -wxH -aLW -cOK -tMY -cMq -tXM -nzS -aLW -lnq -ioM -hVI -gZF -gZF -hVI -gZF -gZF -ioM -ioM -bmE -aFZ -aFZ -aFZ -bFr -jUs -nuG -qAU -eTc -rhC -nkP -wRp -eTc -nuG -qAU -iwf -bFr -cvn -cvn -glO -nkP -qGU -cvn -bFr -cvn -cvn -cEw -eWW -eWW -mpJ -ogC -nkT -eWW -eWW -vBX -uTT -wit -ogC -gcx -okv -gcx -ogC -wpx -sVd -jdq -xRC -pau -pau -pau -pau -pau -pau -pau -pau -wsx -kyE -pau -pau -pau -pau -pau -pau -pau -pau -wsx -xkT -wrR -jmV -jmV -jmV -wrR -ubP -ubP -ubP -ubP -fXB -dGw -dGw -vhB -oPU -oPU -oPU -oPU -oPU -wgM -liA -cME -cME -cME -cME -cME -cME -cME -cME -xno -cME -cME -ayX -ozQ -xzP -cmn -aUH -twb -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(110,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -lAh -azZ -azZ -azZ -bQM -azZ -azZ -azZ -hQb -hQb -hzy -iti -bYP -bYO -lny -orq -bYP -aAO -iFO -hQb -vhz -hQb -hQb -hQb -hQb -hQb -geB -hQb -jiI -hzy -iFO -hQb -jKZ -hQb -azZ -azZ -azZ -uBy -uBy -uBy -uBy -mEO -vjH -uBy -twL -wxH -aLW -cOK -vjH -uBy -twL -wxH -aLW -cOK -vjH -uBy -cHs -wxH -hTH -lnq -vjH -uBy -twL -lrx -aLW -cOK -vjH -uBy -dmZ -guX -sJu -cyV -cyV -gZF -cyV -cyV -gZF -gZF -cyV -tQB -bQM -bQM -cvn -kqQ -tna -umW -kqQ -bbS -nkP -wRp -kqQ -tna -umW -kqQ -cvn -bQM -cvn -iKs -iKs -iKs -ikq -wtp -tQK -tEl -oCF -gxC -eWW -mpJ -ogC -nkT -eWW -eWW -vBX -bnA -bem -ogC -pCH -awL -wSt -ogC -xzn -wrR -cis -xkT -jdq -jmV -pGy -eYN -eYN -ybx -jmV -jdq -brF -xkT -buo -kVi -pGy -eYN -eYN -ybx -qZb -jdq -gJr -xeV -aMM -fxG -fxG -fxG -aMM -inX -ubP -ubP -ubP -fXB -dGw -dGw -vhB -oPU -oPU -oPU -oPU -oMu -oPU -eLu -cME -cPq -cME -cME -cME -cME -cME -cME -cPq -cME -cME -ayX -ozQ -mHC -gfo -xQp -twb -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(111,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -uzW -iti -bYP -lDc -sxd -xmK -bYP -nbE -iti -azZ -azZ -bYP -bYP -bYP -bYP -bYP -bYP -bYP -bYP -aAO -iti -uHu -bYP -bYP -erj -azZ -azZ -azZ -azZ -iXa -aSu -hVI -aSu -aLW -aLW -vjH -uBy -twL -aLW -aLW -aLW -vjH -uBy -twL -aLW -aLW -bPq -oAF -uBy -rFD -aLW -lAb -aLW -bPg -fzU -twL -aLW -aLW -aLW -xlT -sJu -cyV -cyV -gZF -kvx -cyV -gZF -gZF -cyV -tQB -bQM -bQM -cvn -kqQ -tna -umW -yaZ -bbS -nkP -wRp -uYF -tna -umW -kqQ -cvn -bQM -cvn -xcQ -nkP -oGV -elU -elU -elU -elU -evt -eWW -yeX -uRB -ofw -cBN -hGn -jQg -tSY -bnA -wit -ogC -ogC -ogC -ogC -ogC -xzn -wrR -cis -xkT -acq -iWk -bPF -etF -eYl -bOW -wNV -eBJ -gJr -xkT -mJt -iWk -bPF -etF -eYl -bOW -wNV -eBJ -gJr -kyE -aMM -pau -pau -pau -aMM -inX -ubP -iwu -ubP -fXB -dGw -dGw -vhB -gum -oPU -oPU -oPU -oPU -lgS -eLu -eLu -eLu -iYQ -iYQ -eLu -iYQ -iYQ -eLu -eLu -cME -cME -eLu -ipT -fVS -gfo -xzP -qtG -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(112,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -iti -bYO -ekX -bYO -bYO -bYO -uzW -iti -azZ -xLi -xLi -xLi -hBd -hBd -aeA -xLi -vDr -bYP -aAO -iti -urN -bYP -bYP -erj -azZ -azZ -azZ -azZ -azZ -aFZ -ioM -ioM -ioM -xUn -xUn -xUn -xUn -xUn -aFZ -aFZ -tQB -tQB -tQB -tQB -tQB -aFZ -aFZ -aLW -aLW -aLW -hVI -hVI -hVI -hVI -hVI -feF -wLe -feF -ioM -hVI -gZF -gZF -gZF -gZF -bZS -hVI -qek -oJf -tQB -bQM -bQM -cvn -kqQ -tna -umW -kqQ -bbS -nkP -wRp -kqQ -tna -umW -kqQ -cvn -bQM -cvn -iKs -iKs -iKs -nkP -iKs -iKs -iKs -eWW -eWW -eWW -mpJ -ogC -nkT -eWW -eWW -vBX -bnA -oyD -stI -vov -vBX -qLv -stI -jvt -wrR -oKP -xkT -eBJ -kGz -bSM -bSM -bSM -bSM -aTW -eBJ -gJr -xkT -oat -kGz -bSM -bSM -bSM -bSM -ihr -eBJ -gJr -xkT -wrR -wzI -jmV -kFH -wrR -ubP -ubP -ubP -aTx -eLu -eLu -eLu -eLu -tLC -eLu -eLu -pdB -vhB -xck -twb -twb -twb -tPN -tPN -twb -tPN -tPN -twb -twb -tPN -twb -twb -twb -plI -uMt -uMt -twY -twb -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(113,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -iti -azZ -azZ -azZ -azZ -azZ -aAO -azZ -azZ -xLi -drf -hBd -vXf -lHX -vXu -gyw -bYP -bYP -aAO -iti -cwe -bYP -wwp -azZ -azZ -azZ -azZ -azZ -azZ -aFZ -ioM -ioM -ioM -gZF -byY -byY -byY -oiL -aFZ -bQM -bQM -bQM -bQM -bQM -bQM -bQM -aFZ -hVI -jjs -hVI -hVI -hgt -vXv -aif -jcI -vXv -vXv -vXv -ioM -wGI -iyz -gZF -gZF -gZF -gBo -hVI -qek -oJf -tQB -bQM -bQM -cvn -kqQ -tna -umW -uYF -bbS -nkP -wRp -kqQ -tna -umW -kqQ -cvn -bQM -cvn -glO -nkP -nkP -erA -voG -erA -erA -uNi -eWW -eWW -mpJ -ogC -nkT -eWW -eWW -lNP -bnA -bnA -jFx -aqj -fpN -bQj -mtF -wrR -wrR -cis -xkT -eBJ -jSo -tPo -tPo -tPo -tPo -ikG -eBJ -gJr -xkT -jfy -jSo -tPo -tPo -tPo -lWD -ikG -eBJ -gJr -xkT -wrR -jmV -jmV -jmV -wrR -axA -ubP -ubP -ubP -eLu -iuZ -cME -nUJ -cME -cME -eLu -dGw -dGw -wVb -itN -swg -fQV -fQV -fyC -qOk -mKS -fyC -qOk -mKS -fQV -fQV -erT -twb -txW -kMU -gfo -xQp -twb -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(114,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -azZ -phz -azZ -azZ -xLi -uyQ -vXf -lHX -vXu -cKP -ndX -bYP -bYP -aAO -iti -bYP -bYP -bYP -azZ -azZ -azZ -bQM -dPZ -ogf -ogf -tsc -bEk -tsc -tii -tii -tii -tii -tii -bTI -bEk -hEb -hzG -hzG -hay -vmj -bQM -aFZ -drG -vXv -vXv -hVI -rIe -mVa -hVI -kUB -vXv -vXv -aXe -ioM -gZF -cyV -ndZ -gZF -cyV -cyV -gZF -gZF -cyV -tQB -bQM -bQM -cvn -kqQ -tna -umW -kqQ -bbS -nkP -wRp -kqQ -tna -umW -kqQ -cvn -bQM -cvn -iKs -iKs -iKs -ikq -abP -qKm -aPT -oCF -vUN -cEw -wyT -wyT -wyT -eWW -eWW -vBX -vBX -ogC -vBX -vBX -vBX -vBX -bXA -lIu -jdq -cis -xkT -jdq -jmV -jmV -jmV -qZb -qZb -jmV -jdq -gJr -xkT -jdq -jmV -jmV -jmV -jmV -jmV -jmV -jdq -gJr -xkT -wrR -wrR -jRh -wrR -wrR -xiF -ubP -ubP -cAo -liA -cME -utA -cME -cME -cME -eLu -dGw -dGw -vGI -uGT -bTo -xeG -xeG -xeG -hkh -xeG -xeG -hkh -xeG -xeG -xeG -iWq -tPN -jhs -uMt -uMt -kTI -goM -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(115,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -xLi -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -azZ -kBE -azZ -azZ -xLi -hPZ -mlK -bYP -iti -bBO -uyQ -bYP -bYP -aAO -hMZ -sRk -lAh -lAh -azZ -azZ -bQM -bQM -bmT -bQM -bQM -ozh -lxH -ozh -qdQ -xag -xag -xag -xag -bTI -bQM -bFA -anm -qFi -hXZ -aLp -aLp -aFZ -mSW -vXv -vXv -hVI -iPF -vXv -hVI -arc -kjr -vXv -vXv -sJu -gZF -lwd -ndZ -gZF -cyV -cyV -gZF -gZF -cyV -aFZ -aFZ -aFZ -bFr -jUs -nuG -nuG -eTc -bbS -mXI -wRp -eTc -nuG -nuG -iwf -bFr -cvn -cvn -glO -cVv -qGU -cvn -bFr -cvn -cvn -cEw -cEw -cEw -bQM -bQM -wyT -eWW -eWW -vBX -nJu -ogC -vBX -vBX -vBX -vBX -vBX -lIu -jdq -jdq -hRP -fxG -fxG -fxG -fxG -fxG -fxG -fxG -fxG -hjv -xeV -fxG -fxG -fxG -iQa -fxG -fxG -fxG -fxG -hjv -xkT -wrR -qQt -cME -dkb -uGY -axA -ubP -ubP -aTx -eLu -eLu -eLu -eLu -tLC -eLu -eLu -hpd -fXB -fXB -dCM -bTo -xeG -xeG -xeG -pcu -xeG -xeG -pcu -xeG -xeG -xeG -iWq -tPN -cvA -dKX -gfo -mMO -qhu -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(116,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -xLi -bYP -gBj -nDg -bBO -hBd -gyw -bYP -bYP -aAO -iti -bYP -jKR -lAh -azZ -azZ -bQM -bQM -bmT -bQM -bQM -usF -knz -usF -mMM -mMM -mMM -rMl -mMM -bTI -bQM -bFA -rYY -ePq -mzS -lEp -wWW -nyX -jcI -nap -vXv -tEH -vXv -vXv -hVI -kDd -kDd -vXv -vXv -ioM -hVI -hVI -hVI -hVI -ioM -bmE -ioM -hVI -bmE -hVI -hVI -ioM -bis -kSV -hlf -hlf -utq -tKA -nkP -jaj -hlf -iKG -hlf -dKu -bis -lRs -nIS -dCz -cVv -qGU -cvn -kPz -kPz -kPz -kPz -kPz -kPz -kPz -kPz -wyT -nbM -eWW -eWW -eWW -mbM -eWW -eWW -eWW -eWW -eWW -lIu -git -jdq -xRC -pau -vXP -pau -pau -pau -pau -vXP -wsx -jdq -jdq -kyE -jZI -pau -pau -pau -pau -pau -pau -pau -gjZ -wrR -bcf -cME -cME -uGY -ubP -ubP -ubP -ubP -ubP -vnG -vnG -vnG -lvA -ubP -ubP -ubP -ubP -ubP -dCM -bTo -xeG -xeG -xeG -hkh -xeG -xeG -hkh -xeG -xeG -xeG -iWq -tPN -fsp -uMt -uMt -iUn -aVo -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(117,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -lAh -lAh -lAh -lAh -lAh -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -xLi -xLi -drf -uyQ -txK -wmv -xLi -aeA -bYP -aAO -iti -bYP -efT -lAh -azZ -azZ -bQM -bQM -qmv -ogf -ogf -tsc -bEk -tsc -tii -tii -tii -tii -tii -bTI -bEk -eHC -uVX -uVX -nHZ -tHL -sTu -aFZ -jcI -vXv -vXv -hVI -uwV -uwV -hVI -hVI -kDd -vXv -vXv -gZF -kji -gGa -nQS -usx -ioM -xag -ioM -hVI -byY -nfZ -qmj -ioM -bis -bbS -sPY -niD -niD -wrK -nkP -sPY -niD -niD -nod -wRp -bis -bis -glO -nkP -nkP -qGU -cvn -bQM -bQM -bQM -kPz -bQM -bQM -bQM -bQM -wyT -wyT -wyT -wyT -nqN -uGY -uuL -uuL -uuL -nYi -nYi -nqN -nqN -nqN -tRH -tRH -tRH -tRH -tRH -tRH -nqN -ceC -dCn -dCn -dCn -wIk -ceC -nqN -tRH -tRH -tRH -tRH -wrR -wrR -wrR -wrR -eLu -cME -cME -ggk -mOX -ubP -eIQ -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -nqN -aKA -jlH -jlH -tWI -llQ -jKI -tWI -llQ -jKI -jlH -jlH -bUB -twb -rqM -gfo -gfo -xQp -twb -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(118,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -lAh -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -xLi -xLi -xLi -xLi -azZ -lAh -lAh -lAh -lAh -lAh -lAh -bYP -bYP -aAO -iti -xLi -xLi -azZ -azZ -azZ -azZ -bQM -bQM -bQM -aFZ -aFZ -aFZ -aSS -gZF -byY -duW -byY -gZF -aFZ -bQM -bQM -bQM -bQM -bQM -bQM -bQM -aFZ -cmi -kjr -vXv -tEH -jrp -fhW -dVs -aif -hfE -tMY -fjh -bdc -bdc -bdc -hOf -bdc -tPl -tXM -ioM -dTX -mEO -mEO -mEO -ioM -nOz -bbS -wRp -eTc -nuG -qBF -jht -xFi -nuG -eTc -bbS -wRp -nOz -bis -glO -nkP -kzV -qGU -cvn -bQM -bQM -bQM -kPz -bQM -bQM -bQM -bQM -kPz -bQM -bQM -bQM -dCM -dgH -uIh -uIh -uIh -uIh -uIh -uIh -uIh -dCM -bQM -kPz -bQM -bQM -kPz -bQM -dCM -eRp -aDR -eoc -ubP -cUJ -inX -dCM -bQM -kPz -bQM -tPN -hOA -pJK -pJK -eLu -kNY -cME -dkS -uGY -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -uGY -aWk -aWk -pRG -pRG -aWk -pRG -pRG -aWk -pRG -pRG -aWk -twb -twb -plI -uMt -uMt -sWR -twb -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(119,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -xLi -xLi -xLi -xLi -xLi -xLi -xLi -xLi -xLi -xLi -dGL -lHG -bYP -aAO -iti -lAh -lAh -lAh -lAh -azZ -azZ -tel -tel -tel -aFZ -aFZ -mIu -ioM -xUn -xUn -xUn -xUn -xUn -aFZ -fQV -fQV -fQV -aFZ -tQB -tQB -aFZ -aFZ -iDx -swZ -swZ -tEH -brf -dVs -bFR -hVI -iIm -vjH -oHU -gGF -uBy -uBy -kAS -uBy -oHU -cOK -ioM -ihp -mEO -mEO -mEO -sJu -lqq -bbS -wRp -kqQ -nOz -dnz -kNB -bPl -nOz -kqQ -bbS -wRp -lqq -wpD -glO -oGV -nkP -qGU -bFr -bFr -kPz -kPz -kPz -kPz -kPz -kPz -kPz -kPz -kPz -kPz -kPz -dCM -noO -uIh -ozG -aDR -inX -chV -fPU -uIh -dCM -bQM -kPz -kPz -kPz -kPz -bQM -dCM -inX -aDR -ubP -srg -chV -inX -dCM -bQM -kPz -bQM -tPN -cME -cME -cME -xno -cME -cME -uzw -uGY -inX -xmw -nqN -nqN -nqN -ujE -inX -xmw -nqN -nqN -nqN -ujE -inX -xmw -uGY -vZX -vZX -vZX -vZX -oly -vZX -vZX -oly -vZX -vZX -jwc -bUP -lvT -qkQ -gfo -pNr -qhA -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(120,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -lAh -azZ -azZ -lAh -lAh -lAh -lAh -lAh -xLi -xLi -xLi -urN -uHu -xLi -xLi -oks -plG -xLi -xLi -xLi -xLi -bYP -aAO -iti -xLi -vab -kZD -xLi -fHx -azZ -tel -tel -tel -hVI -xLS -mEO -ioM -gZF -aLW -vXv -aLW -gZF -tQB -pcu -pcu -pcu -tQB -hjz -xVH -pVG -gZF -vXv -vXv -vXv -hVI -tEH -tEH -hVI -hVI -tEH -hVI -wxH -cOK -wQX -bdc -bdc -tXM -doj -dDR -ioM -pNG -mEO -mEO -byY -ioM -nOz -bbS -wRp -eTc -nuG -kSV -hlf -dKu -nuG -eTc -bbS -wRp -nOz -bFr -glO -iKs -iKs -qGU -bFr -bFr -bQM -bQM -kPz -bQM -bQM -bQM -bQM -kPz -bQM -bQM -bQM -dCM -noO -uIh -inX -aDR -inX -chV -inX -uIh -dCM -bQM -kPz -bQM -bQM -kPz -bQM -dCM -inX -aDR -wAz -eoc -chV -ffE -dCM -bQM -kPz -bQM -tPN -cME -cME -cME -cME -cME -cME -cME -gIB -jZV -jZV -dCM -bQM -dCM -jZV -jZV -jZV -dCM -bQM -dCM -jZV -jZV -jZV -ovr -vZX -vZX -vZX -vZX -fvL -vZX -vZX -vZX -vZX -vZX -jwc -ozQ -uMt -gfo -gfo -xQp -twb -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(121,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -lAh -lAh -lAh -lAh -azZ -azZ -azZ -azZ -xLi -xLi -cwe -bYP -bYP -bYP -gcd -bYP -bYP -vDr -vBY -xLi -xLi -jrh -aAO -iti -rrT -hPw -rGj -ddL -ejw -ejw -ejw -rBr -rxa -hVI -xLS -mEO -sJu -mMM -aLW -vXv -aLW -mMM -tQB -jlH -jlH -jlH -tQB -gZF -gZF -nUf -gZF -vXv -dWM -vXv -tMY -bdc -bdc -bdc -ioK -bdc -nlU -tDJ -cOK -wxH -rEO -qCL -bfs -sDX -vXv -sJu -mEO -mEO -mEO -vXl -ioM -bis -njM -jaj -hlf -hlf -tKA -nkP -jaj -hlf -hlf -tKA -iNE -bFr -bFr -sxa -nkP -nkP -qGU -bFr -bFr -bFr -bFr -bFr -bFr -eqs -eqs -eqs -bFr -eqs -eqs -eqs -dCM -dgH -uIh -inX -aDR -inX -chV -inX -uIh -nqN -nqN -nqN -nqN -nqN -nqN -nqN -nqN -ceC -dCn -dCn -dCn -lpM -ceC -nqN -nqN -nqN -nqN -twb -cME -wJw -cME -cME -cME -cME -cME -gIB -uIh -uIh -dCM -bQM -dCM -uIh -uIh -uIh -dCM -bQM -dCM -uIh -uIh -kKJ -nqN -aWk -aWk -aWk -vZX -nbb -gXu -rAm -qkN -vZX -vZX -aWk -xhS -vJM -kls -sIZ -lxM -twb -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(122,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -xLi -pdU -bYP -vXf -lHX -lHX -lHX -lHX -lHX -lHX -lHX -xZR -lHX -lHX -oNv -iti -sBt -hBd -jXS -ddL -bYP -hBd -bYP -fHx -phz -hVI -qeX -mEO -hVI -rsH -udG -vXv -aLW -byY -aFZ -tQB -tQB -tQB -aFZ -gZF -dGQ -qgf -amu -vXv -vXv -vXv -wxH -vXv -vXv -vXv -vXv -vXv -vXv -vXv -cOK -wxH -dtG -cfY -cOK -ijS -fNF -aFZ -hVI -hVI -bmE -hVI -aFZ -bFr -qBF -niD -niD -niD -nod -nkP -sPY -niD -niD -niD -xFi -bFr -bis -fTn -hXX -hXX -byc -bFr -bFr -bFr -bFr -bFr -bFr -iKs -iKs -iKs -bFr -iKs -iKs -iKs -uGY -uGY -uIh -inX -aDR -inX -chV -inX -uIh -hVG -ubP -ubP -ubP -ubP -ubP -nEI -ubP -fYo -fou -uxZ -qHc -fou -aNk -ubP -ubP -ubP -uGY -gKl -cME -klC -cME -rJh -nNJ -kNY -rmh -ceC -ubP -ubP -nqN -bQM -nqN -ubP -ubP -ubP -nqN -bQM -nqN -tEY -ubP -ubP -dCM -bQM -bQM -pRG -vZX -vZX -wHq -qQj -qkN -vZX -vZX -aWk -twb -twb -twb -twb -twb -twb -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(123,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -bQM -bQM -azZ -azZ -lAh -lAh -lAh -lAh -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -xLi -hSU -bYP -aAO -iFO -hQb -geB -hQb -hQb -hQb -hQb -xZR -hQb -hQb -hzy -iti -xLi -qzz -lQG -ddL -bYP -hBd -bYP -wfY -fHx -hVI -hVI -mEO -hVI -gZF -qLy -vXv -aLW -gZF -hVI -wDB -wuj -sAL -hVI -hVI -hVI -aIe -wLZ -gZF -vXv -gZF -vjH -fIS -aZZ -uBy -uBy -kAS -uBy -oHU -mEO -wxH -gng -lfo -cOK -wxH -cOK -hVI -eFP -qyU -wxH -cOK -riw -bFr -bFr -uIS -uIS -bis -bbS -nkP -wRp -bis -uIS -uIS -bis -bFr -hDo -bbS -dBy -dBy -wRp -nkP -hlf -hlf -nkP -dBy -dBy -wRp -kSV -hlf -hlf -hlf -hlf -dKu -bbS -ggk -uIh -inX -aDR -inX -chV -kbu -uIh -hVG -ubP -ubP -rAY -ubP -ubP -ubP -qRC -sYP -uIh -msk -bSX -fuf -uIh -uIh -ubP -ubP -uGY -cFq -xno -klC -cME -cME -twb -twb -twb -nqN -ubP -ubP -nqN -bQM -nqN -ubP -ubP -ubP -nqN -bQM -nqN -ubP -ubP -ubP -dCM -bQM -bQM -pRG -fvL -vZX -vZX -vZX -vZX -vZX -vZX -aWk -kPz -kPz -kPz -kPz -kPz -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(124,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -bQM -bQM -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -xLi -xLi -bYP -aAO -iti -bYP -bYP -bYP -bYP -bYP -vBY -xLi -xLi -jrh -aAO -iti -xLi -ddL -ddL -ddL -ejw -ejw -ejq -gAA -phz -hVI -hVI -mEO -hVI -cMY -mfk -vXv -aLW -bEK -hVI -uHR -aLW -aLW -aLW -aLW -hVI -hVI -hVI -gZF -tbQ -gZF -hVI -mNt -dSP -oIG -qYT -jhr -mEO -wxH -tIM -wxH -vAG -aYL -cOK -wxH -cOK -hVI -nOk -aLW -aLW -aLW -mkG -wxs -hVI -cTX -hDo -bis -wMi -wMi -wMi -bis -wah -dDX -bis -bFr -hDo -bbS -iKs -iKs -aBR -nkP -iKs -iKs -nkP -clb -dBy -dBy -dBy -iKs -iKs -iKs -dFh -dBy -dBy -ggk -uIh -inX -aDR -inX -chV -inX -uIh -hVG -bLE -ubP -ubP -ubP -dNM -ubP -qRC -wWs -wWs -inX -mrQ -wWs -wWs -uIh -glZ -cAo -ggk -cME -cME -cME -rJh -cME -tPN -bQM -bQM -dCM -uIh -uIh -dCM -bQM -dCM -uIh -uIh -uIh -dCM -bQM -dCM -uIh -uIh -uIh -dCM -bQM -bQM -pRG -vZX -vZX -qDs -nbb -vZX -vZX -tlV -aWk -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(125,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -azZ -azZ -xLi -xLi -bYP -tBE -iti -bYP -xLi -xLi -ddL -ddL -ddL -xLi -xLi -bYP -aAO -iti -bmh -wkE -bYP -bYP -bYP -bYP -phz -phz -phz -mEO -mEO -mEO -hVI -byY -aLW -vXv -aLW -byY -hVI -pSc -vXv -vXv -vXv -vXv -vXv -aif -vXv -vXv -vXv -uKU -hVI -vAj -mPj -xxX -iAA -aRt -nUb -cbD -cOK -wxH -rEO -qpQ -wrx -wxH -vXv -aif -aLW -pCj -wxH -cOK -twL -qHx -hVI -nkP -nkP -nkP -bbS -dBy -wRp -nkP -nkP -lwF -nkP -nkP -nkP -bbS -dBy -dBy -wRp -nkP -mfy -niD -nkP -dBy -dBy -wRp -qBF -niD -niD -niD -niD -xFi -bbS -ggk -uIh -inX -aDR -inX -chV -ozG -kKJ -ceC -xGt -xGt -ceC -ubP -cRe -ubP -uIh -wWs -wWs -inX -inX -wWs -wWs -uIh -cUf -cAo -ggk -cME -cME -cME -cME -oQI -tPN -bQM -bQM -dCM -beV -tVS -dCM -bQM -dCM -tVS -tVS -tVS -dCM -bQM -dCM -tVS -tVS -tVS -dCM -bQM -bQM -pRG -vZX -vZX -ePB -ePB -oWF -ePB -aWk -aWk -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(126,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -azZ -azZ -xLi -vDr -bYP -aAO -iti -vBY -xLi -nUB -sRB -wgu -jel -ksN -fzx -sRk -aAO -iti -bYP -bYP -bYP -sRk -bYP -bYP -bYP -bYP -phz -ecu -mEO -hVI -hVI -mMM -aLW -vXv -aLW -mMM -vWe -hVI -vXv -aLW -wUI -hVI -hVI -hVI -hVI -hVI -hVI -hVI -wkd -hVI -kTL -mEO -mEO -tUS -azv -nUb -mEO -uza -hHm -uBy -twL -wxH -dDR -hVI -hVI -hVI -tEH -tEH -tEH -hVI -hVI -dBy -dBy -nkP -bbS -iKs -wRp -nkP -kSV -hlf -hlf -hlf -hlf -tKA -iKs -sPY -xFi -hDo -bis -bis -bis -oLV -nxq -dBy -clb -bFr -cvn -cvn -bFr -dBy -dBy -uGY -mWz -uIh -uIh -uIh -uIh -uIh -uIh -buz -pwZ -qSa -dCM -ubP -ubP -ubP -uIh -wWs -wWs -eoc -ubP -wWs -wWs -uIh -ubP -ubP -uGY -obz -lAV -cME -cME -eLu -nqN -nqN -nqN -nqN -inX -fCD -nqN -nqN -nqN -ujE -inX -xmw -nqN -nqN -nqN -ujE -inX -xmw -nqN -nqN -nqN -nqN -vZX -waU -ePB -wbB -nbb -vZX -ykX -pRG -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(127,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -azZ -azZ -fHx -bYP -bYP -aAO -iti -bYP -ddL -lXO -nId -ykO -pCc -kHo -pxK -bYP -aAO -jGP -lHX -lHX -lHX -lHX -lHX -lHX -vXu -bYP -phz -mEO -mEO -hVI -aSu -aLW -omA -vXv -aLW -aLW -aLW -egW -vXv -aLW -pSk -pUj -cPj -aLW -lfA -aLW -nVD -voK -roJ -aLW -oGG -bdc -mEO -bdc -utC -axW -rFj -jkE -bdc -bdc -bdc -tDJ -cOK -aLW -aLW -aLW -aLW -aLW -aLW -aLW -sJu -jxW -dBy -nkP -bbS -iKs -wRp -nkP -bbS -iKs -iKs -dBy -dBy -iKs -sPY -xFi -hDo -bis -bis -cME -bis -bis -gXd -dBy -owd -cvn -bQM -bQM -cvn -dBy -aSM -uGY -uGY -uGY -uGY -uGY -nqN -ksL -eip -gpG -uIh -ydx -ceC -cxy -ubP -ubP -uIh -wWs -wWs -eHc -ubP -wWs -wWs -uIh -ubP -aTx -nqN -uGY -uxv -uxv -uGY -uGY -vlS -psm -ubP -nXu -ubP -ubP -ubP -iGv -cjS -ubP -eIQ -ubP -ubP -ubP -ubP -ubP -ubP -eIQ -ubP -fYo -ubP -nqN -vZX -vZX -xLQ -vZX -vZX -vZX -iIS -pRG -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(128,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -azZ -azZ -xLi -fHx -aeA -aAO -iti -bYP -ddL -ntH -nMZ -oHX -pFP -jXp -oXP -bYP -aAO -iFO -hQb -hQb -hQb -hQb -hQb -hzy -iti -bYP -phz -mEO -hVI -hVI -vdt -vXv -vXv -vXv -vXv -vXv -vXv -vXv -vXv -aLW -lav -dAC -aLW -vXv -vXv -vXv -nqz -ikL -aLW -aLW -mEO -gGF -uBy -mEO -uBy -uBy -uBy -qEn -uBy -uBy -uBy -oHU -cOK -aLW -aLW -aLW -aLW -aLW -aLW -aLW -sJu -jxW -sWl -nkP -bbS -iKs -wRp -nkP -qBF -niD -niD -niD -niD -niD -xFi -hDo -bis -bis -cME -cME -wpD -iKs -oeY -dBy -nxq -bFr -cvn -cvn -bFr -dBy -dBy -eLu -eLu -fdf -rQd -rOu -twb -oZy -nfA -gpG -kGO -uIh -hVG -fZz -dNM -uRZ -uIh -wWs -wWs -inX -inX -wWs -wWs -uIh -dNM -scc -jZV -jZV -jZV -jZV -vLT -pCq -ubP -ubP -ubP -ubP -ubP -ubP -ubP -aDR -chV -sYP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -sYP -ubP -cAo -ggk -vZX -vZX -xLQ -vZX -vZX -vZX -iIS -pRG -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(129,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -lAh -lAh -lAh -lAh -lAh -lAh -lAh -azZ -lAh -lAh -lAh -lAh -lAh -lAh -lAh -azZ -lAh -lAh -lAh -lAh -azZ -azZ -xLi -xLi -xLi -fHx -bYP -aAO -iti -lLK -ddL -oIq -nOw -oXR -pHh -mtE -jQp -bYP -aAO -iti -bYP -bYP -bYP -bYP -bYP -aAO -iti -bYP -hVI -hVI -hVI -gbT -aLW -vXv -ocl -vWe -fGX -vXv -aLW -wPq -vXv -aLW -mDM -hVI -vSo -vXv -vXv -vXv -nqz -ikL -gSv -jyP -wxH -frI -hVI -cBe -cBe -cBe -emW -hVI -tEH -tEH -hVI -dHr -gvu -hVI -tEH -tEH -hVI -hVI -hVI -hVI -hVI -nkP -oGr -nkP -qBF -niD -xFi -nkP -dUd -nkP -nkP -nkP -baV -dBy -dBy -dBy -bis -cME -cME -cME -bis -bis -gXd -szh -kSV -hlf -geg -hlf -hlf -dKu -bbS -rHu -bnL -cME -cME -cME -liA -nyS -scZ -ceC -led -bzi -ceC -ubP -cRe -ubP -uIh -wWs -wWs -inX -inX -wWs -wWs -uIh -cRe -ajU -tVS -tVS -tVS -xGk -tVS -snd -ubP -ubP -ubP -ubP -ubP -daY -vYH -aDR -chV -ubP -ubP -inX -jZV -jZV -jZV -jZV -inX -ubP -ubP -ubP -cAo -ggk -vZX -vZX -ePB -xjm -vZX -vZX -ykX -pRG -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(130,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -xLi -xLi -xLi -xLi -phz -phz -phz -aAO -iti -vBY -xLi -fzi -iuR -lid -tUn -kuT -iJL -bYP -aAO -aEP -mqH -kjn -lHX -vXu -ljh -aAO -iti -vBY -hVI -hVI -hVI -eUZ -jIZ -vXv -vlD -dOK -cIl -vXv -gBl -dAC -vXv -aLW -tzl -boB -vva -aLW -vXv -aLW -nVD -cbF -rGR -aLW -wxH -hUQ -aif -aLW -aLW -aLW -njw -hVI -cIy -aLW -hVI -wxH -vXv -aif -ovJ -aLW -sJu -nCt -yeA -olg -aFZ -cvn -bFr -bFr -cvn -cvn -cvn -bFr -bFr -cvn -cvn -bFr -twb -eLu -tLC -tLC -eLu -cME -cME -cME -eLu -tIn -dwP -dBy -dBy -iKs -iKs -iKs -iKs -dBy -dBy -rHu -xPG -cME -eLu -eLu -twb -wLA -nqN -ceC -xGt -xGt -ceC -ubP -ubP -ubP -uIh -uIh -uIh -uIh -uIh -uIh -uIh -uIh -ubP -xGD -nqN -dCM -dCM -dCM -nqN -lkQ -ubP -ktv -ubP -hPN -ubP -pTj -ubP -aDR -chV -vYH -ubP -pRr -gmF -txh -txh -afO -pRr -ubP -ubP -ubP -ubP -plK -plK -wHw -plK -plK -oWF -ePB -aWk -aWk -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(131,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -xLi -lny -lny -phz -phz -fEn -kEZ -aAO -iti -bYP -xLi -ddL -ddL -ddL -xLi -xLi -ioC -bYP -aAO -xFv -bYP -fPC -xLi -kqe -bYP -aAO -iti -bYP -hVI -hVI -hVI -dvq -aLW -vXv -cPj -guR -jGU -sdI -lav -uHV -vXv -aLW -lUb -pUj -vyx -aoY -vXv -aLW -nVD -wAA -vlp -hxy -aNN -mcO -hVI -wKJ -jYD -aLW -uQj -hVI -sqk -ovJ -hWi -vXv -cOK -hVI -nqY -nsL -hVI -fIq -mEO -oou -aFZ -wIG -ugv -qOk -tIp -lml -hVS -lDC -qOk -nYT -vPM -bQM -tPN -ecL -cME -cME -tIU -aQn -tIU -cME -eLu -cbd -dBy -wRp -qBF -niD -niD -niD -niD -xFi -bbS -rHu -rJu -uzw -kqC -uJX -bIY -bIY -nRS -abJ -mkM -mkM -abJ -ubP -ubP -ubP -kJU -psm -ubP -ubP -ubP -ubP -ubP -ubP -ubP -nEI -dCM -bQM -kPz -bQM -dCM -ubP -ubP -ubP -aTx -uGY -uGY -uGY -uGY -gIB -uGY -lkQ -ubP -inX -tVS -tVS -tVS -tVS -inX -ubP -ubP -wxZ -qeC -bLA -aqa -rMs -aqa -plK -vZX -vZX -aWk -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(132,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -xLi -xLi -fHx -phz -ctD -phz -phz -bYP -aAO -iti -bYP -bYP -bYP -bYP -bYP -xLi -rfd -bYP -bYP -aAO -aEP -mqH -vei -hQb -bBO -bYP -aAO -iti -bYP -uno -ciA -lsn -uno -aLW -vXv -iQS -hVI -nOk -rIV -tnZ -dAC -hPI -aLW -iXa -guR -cIl -aLW -vXv -vlD -qHs -apz -imh -aLW -wxH -cOK -nQq -hVI -hVI -hVI -hVI -hVI -hVI -hVI -mrI -wxH -dDR -vWe -hVI -hVI -hVI -lyJ -nBt -kwT -tQB -tqP -xeG -xeG -xeG -xdt -tzN -xeG -xeG -xeG -rxL -fQV -tPN -ecL -cME -cME -ptv -pJc -iLr -cME -eLu -eLu -eLu -eLu -twb -wCn -wCn -wCn -eLu -eLu -eLu -eLu -kfW -cME -kqC -atn -lkb -upY -eoj -vRA -mkM -mkM -vRA -ubP -nXX -ubP -ubP -ejL -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -dCM -bQM -kPz -bQM -dCM -fou -ubP -fou -ePM -gIB -aCp -sxq -uNu -nze -hjE -ubP -ubP -ubP -inX -inX -inX -inX -ubP -ubP -ubP -kjP -otC -dkn -qPB -qPB -iNS -plK -vZX -waU -aWk -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(133,1,1) = {" -bQM -bQM -bQM -bQM -bQM -lAh -lAh -lAh -lAh -lAh -lAh -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -xLi -xLi -lny -phz -phz -phz -xLi -azZ -aAO -jGP -lHX -lHX -lHX -lHX -lHX -lHX -xZR -lHX -lHX -qZx -iti -bYP -bYP -bYP -bYP -bYP -aAO -iti -bYP -cyV -aLW -aLW -cyV -aLW -vXv -aLW -bZk -aLW -jaI -hVQ -iXa -vXv -aLW -kAY -wrQ -wzc -vXv -vXv -vlD -yiK -apz -imh -aLW -wxH -cOK -hVI -mga -aLW -aLW -aLW -hVI -sFJ -yic -hVI -wxH -cOK -whT -sFJ -hVI -xKn -mEO -lLE -xoi -tQB -urJ -xeG -hkh -xeG -tCZ -urJ -xeG -hkh -xeG -tCZ -pcu -tPN -jSE -cME -cME -tIU -joc -tIU -cME -cME -cME -qIq -eLu -uvF -uJX -bIY -nRS -cME -wQT -eLu -cME -cME -cME -oFI -atn -qRa -upY -kIt -kqC -dyb -eWb -kqC -sOj -uye -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -aTx -nqN -dCM -dCM -dCM -nqN -lkQ -fou -ubP -ksy -gIB -hUA -rVV -inX -uIh -hsC -ubP -ubP -ubP -inX -inX -inX -inX -ubP -ubP -ubP -lAY -dkn -dkn -qPB -qPB -qPB -plK -vZX -vZX -aWk -kPz -kPz -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(134,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -xLi -xLi -lny -phz -phz -lny -azZ -azZ -aAO -mgB -hQb -hQb -hQb -hQb -hQb -hQb -xZR -hQb -hQb -nrM -iti -bYP -bYP -bYP -bYP -bYP -aAO -iti -bYP -cyV -aLW -aLW -cyV -aLW -vXv -vlD -fGX -pSb -aQP -hxu -aLW -npg -vXv -vXv -vXv -vXv -aLW -aLW -vlD -yiK -apz -imh -kwz -wxH -cOK -hVI -uQj -rEh -aLW -aLW -hVI -sqk -ovJ -hWi -vXv -cOK -aLW -aLW -sJu -wRb -mNB -byY -fUX -tQB -mpB -xeG -xeG -xeG -eze -bHU -xeG -xeG -xeG -hxG -jlH -twb -twb -twb -cME -cME -cME -cME -bgy -cME -cME -cME -cME -liA -rcs -beS -eoj -xno -dTf -uvF -cME -ljd -cME -oFI -atn -upY -upY -qNL -abJ -mkM -mkM -abJ -aUg -ubP -ubP -ubP -szD -cns -cns -cns -cns -cns -wzd -ubP -scc -jZV -jZV -jZV -jZV -jZV -pCq -nWv -ubP -iIE -gIB -ubP -pkg -ubP -woS -vUv -ubP -ubP -inX -jZV -jZV -jZV -jZV -inX -ubP -ubP -cri -hfc -tGY -tOD -alJ -jAu -plK -wHw -plK -aPH -aPH -aPH -aPH -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(135,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -lAh -lAh -lAh -lAh -lAh -xLi -fHx -phz -phz -phz -azZ -xLi -azZ -aAO -iti -sRk -bYP -bYP -bYP -bYP -xLi -rfd -bYP -bYP -aAO -aEP -mqH -kjn -lHX -vXu -bYP -aAO -iti -bYP -cyV -aLW -aLW -cyV -aLW -vXv -aLW -pJN -wPq -vXv -aLW -aLW -ryp -aLW -aLW -vXv -vXv -pFk -pFk -lZZ -lZZ -ogB -hhZ -fNs -nHu -qjN -hVI -tEH -tEH -jzI -nDr -hVI -tEH -tEH -hVI -ats -gCW -aLW -rUg -vWe -hVI -hVI -erD -wyl -aFZ -xKA -xQC -llQ -viX -bsk -lSS -lcq -llQ -jaB -bsk -bQM -bQM -kPz -twb -aLT -cME -cME -cME -cME -cME -cME -cME -cME -kaO -pyn -beS -afw -daS -cME -cME -cME -cME -eLu -kqC -atn -upY -laC -lOF -vRA -mkM -mkM -vRA -ubP -ubP -ubP -ubP -qqd -uIh -uIh -uIh -uIh -uIh -unu -ubP -ajU -tVS -tVS -tVS -tVS -tVS -snd -ubP -ubP -mNc -gIB -inX -aTx -uGY -gIB -uGY -lHE -ubP -pRr -gmF -txh -txh -afO -pRr -ubP -ubP -ubP -plK -vox -dkn -qPB -gCR -plK -nFY -gRT -vHU -eki -duM -aPH -kPz -bQM -kPz -kPz -kPz -kPz -kPz -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(136,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -lAh -azZ -azZ -azZ -lAh -xLi -lny -phz -irD -phz -azZ -azZ -azZ -aAO -iti -bYP -xLi -ddL -ddL -ddL -xLi -xLi -ioC -sRk -aAO -xFv -iIB -fPC -xLi -kqe -bYP -aAO -iti -bYP -tji -azK -nWx -uno -jMx -vXv -pWG -xmv -vsN -vXv -pUj -jRo -aLW -aLW -aLW -vXv -ipL -pFk -aSS -wLY -fJl -fJl -qoh -bdc -tDJ -hUQ -jAL -bdc -bdc -bdc -vXv -bdc -bdc -bdc -bdc -tDJ -cOK -aLW -eDz -hVI -hVI -hVI -kEq -hVI -aFZ -sKY -sKY -iYw -iYw -iYw -iYw -iYw -iYw -sKY -sKY -iYw -kPz -kPz -twb -twb -twb -twb -cME -cME -cME -cME -rJh -eLu -eLu -atn -beS -eoj -cME -vZD -cME -cME -cME -eLu -kqC -atn -upY -fxQ -uGY -ceC -xGt -xGt -ceC -ubP -ubP -kJU -ubP -ibz -uIh -inX -inX -inX -uIh -dVx -dod -spm -ceC -ceC -xNm -ceC -ceC -eyy -ubP -ubP -bZY -uGY -uxv -uGY -uGY -uIh -uIh -ubP -qHi -inX -tVS -tVS -tVS -tVS -inX -ubP -ubP -ozC -plK -png -dkn -qPB -bYT -dkn -aqa -pSU -dKo -rJO -rJO -aPH -kPz -kPz -kPz -aPH -aPH -aPH -aPH -aPH -oUP -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(137,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -lAh -lAh -lAh -lAh -lAh -azZ -azZ -lAh -xLi -lny -phz -phz -phz -phz -ixF -azZ -aAO -iti -vBY -xLi -nUB -jel -wYL -iaP -ksN -sRb -bYP -aAO -aEP -mqH -vei -hQb -bBO -bYP -aAO -iti -bYP -hVI -rIS -hVI -dvq -aLW -vXv -tEm -aLW -ptb -vXv -cIl -kso -vva -aLW -dLa -vXv -vXv -nVD -voK -naE -aLW -ohe -wxH -gGF -uBy -uBy -lZD -uBy -uBy -uBy -lgC -uBy -uBy -vXv -lhK -uBy -twL -aLW -yiK -hVI -bLJ -bLJ -frv -bLJ -ouS -hCh -suX -pxQ -iUB -hCh -hCh -pxQ -jcF -hCh -hCh -iYw -iYw -cAW -bQM -bQM -bQM -twb -qkn -uzw -eLu -mrk -cME -jkg -cME -atn -beS -eoj -xno -cME -uvF -cME -cME -cME -kqC -atn -upY -eoj -uGY -dsh -vFx -uMF -ceC -ubP -ubP -ubP -ubP -ceC -wCd -tpa -tpa -tpa -wCd -ceC -ceC -ceC -ceC -xqU -bMR -sDa -ceC -ceC -hYx -vYH -pTj -iGv -uNm -nEI -ubP -aDR -chV -ubP -ubP -ubP -inX -inX -inX -inX -ubP -ubP -ubP -ubP -vFs -qPB -qPB -qPB -pIX -dkn -aqa -gPs -iMo -rJO -fYW -aPH -aPH -aPH -aPH -aPH -tXV -uMw -uMw -vXT -vXT -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(138,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -lAh -lAh -lAh -lAh -lAh -lAh -lAh -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -xLi -azZ -phz -phz -phz -phz -lny -bYP -aAO -iti -bYP -ddL -lXO -nId -ykO -pCc -ufg -pxK -bYP -aAO -iti -bYP -bYP -bYP -bYP -bYP -aAO -iti -vBY -hVI -hVI -hVI -bbY -aLW -vXv -sJZ -aLW -czH -vXv -aLW -fGX -pUj -wQM -guR -vXv -kPj -nqz -ikL -xLK -hGA -aLW -wxH -cOK -xEI -kEB -hVI -hVI -hVI -hVI -nDr -hVI -hVI -nDr -hVI -vWe -vfZ -vfZ -ixA -vWe -eqZ -iVT -knr -suX -pxQ -pxQ -pxQ -pxQ -pxQ -pxQ -pxQ -pxQ -pxQ -pxQ -pxQ -suX -iYw -yli -iYw -bQM -bQM -twb -nSU -cME -cME -cME -cME -eLu -jkg -atn -beS -eoj -cME -wQT -eLu -cYP -qso -gsN -kqC -atn -upY -eoj -hVG -bxn -cZV -qTs -hVG -ubP -ubP -ubP -ubP -ceC -azm -inX -inX -inX -qWG -ceC -guN -ibD -lEA -ibD -kwr -wWG -sWu -ceC -wDz -pTj -ubP -pTj -sJB -eIQ -ubP -aDR -chV -ubP -ubP -ubP -inX -inX -inX -inX -ubP -ubP -ubP -ubP -vFs -qPB -qPB -qPB -xJt -dkn -aqa -bWg -tKv -wxX -rJO -plK -wKH -wKH -aPH -nGy -rJO -wMz -rJO -vKP -vXT -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(139,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -phz -phz -phz -phz -irD -phz -bYP -aAO -iti -bYP -ddL -ntH -nUr -oHX -pFP -fhu -oXP -bYP -aAO -jGP -lHX -lHX -lHX -lHX -lHX -oNv -iti -bYP -hVI -hVI -hVI -oym -aLW -vXv -aLW -aLW -aLW -vXv -aLW -cPj -qUk -aLW -tMN -exA -vXv -tho -ikL -eXu -aLW -hBz -wxH -cOK -aLW -jVq -hVI -cRn -aLW -aLW -aLW -aLW -hVI -tMY -kaY -xLn -epQ -aLW -aLW -eHt -suX -lcf -lcf -lcf -lcf -lcf -lcf -lcf -pxQ -pxQ -pxQ -lcf -lcf -lcf -lcf -pxQ -pxQ -suX -egk -iYw -bQM -twb -uts -cME -cME -cME -cME -cME -liA -atn -beS -dHv -kqC -kqC -kqC -kqC -kqC -kqC -kqC -mrY -dip -jQB -uGY -gER -vdy -vdy -ceC -qbI -rVV -rVV -qbI -ceC -pcG -ubP -ubP -ubP -inX -hVG -oZi -bcq -vIi -jOG -wYy -xpx -vAD -ceC -fxi -ubP -gop -ubP -eoc -sYP -fGA -aDR -chV -ubP -ubP -inX -jZV -jZV -jZV -jZV -inX -ubP -ubP -ozC -plK -upX -dkn -qPB -bYT -dkn -aqa -uMw -rJO -rJO -rJO -ipa -rJO -rJO -ipa -rJO -anP -omb -rJO -fny -vXT -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(140,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -xLi -phz -lny -phz -phz -phz -fHx -bYP -aAO -iti -gqG -ddL -oIq -nOw -oXR -pHh -gYG -jQp -bYP -aAO -iFO -hQb -hQb -hQb -hQb -hQb -hQb -bBO -bYP -mEO -mEO -hVI -hVI -pBP -vXv -vXv -vXv -vXv -vXv -vXv -cbD -vXv -ifa -vXv -vXv -vXv -jAC -ikL -qiX -aLW -aLW -wxH -cOK -pBP -wQw -hVI -eRP -rTi -aLW -aLW -aLW -hWi -vjH -dPX -dhZ -aLW -aLW -aLW -stP -suX -lcf -mRh -lcf -lcf -lcf -lcf -lcf -pxQ -pxQ -pxQ -lcf -lcf -lcf -lcf -lcf -lcf -pxQ -shH -iYw -iYw -twb -eLu -eLu -cME -srI -dTf -cME -eLu -atn -beS -eoj -mkM -goS -goS -kqC -rOZ -ewy -kqC -mkM -mkM -mkM -uGY -xGt -xGt -xGt -ceC -ceC -ceC -ceC -ceC -ceC -paM -ubP -ubP -ubP -inX -hVG -ljV -oZi -qHX -jbu -yfq -tir -pCY -ceC -kIA -psm -ubP -pTj -ubP -nEI -ubP -aDR -chV -ubP -ubP -pRr -gmF -txh -txh -afO -pRr -ubP -ubP -aTx -plK -xTL -dkn -qPB -pIX -dkn -aqa -uMw -rJO -rJO -rJO -ipa -rJO -rJO -ipa -cJW -rTH -bMh -ewx -eki -vXT -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(141,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -xLi -xLi -fHx -phz -hoQ -phz -fHx -xLi -bYP -aAO -iti -azZ -xLi -fzi -xcK -lid -tUn -kuT -fzx -sRk -aAO -iti -bYP -bYP -bYP -bYP -bYP -bYP -bYP -bYP -mEO -mEO -mEO -hVI -pBP -aLW -jdO -vXv -aLW -aLW -aLW -eeA -aLW -aLW -qUk -dFn -agd -nVD -cbF -uRG -aLW -tMY -iGK -hUQ -tXM -mKU -hVI -mei -oZz -hVI -hVI -hVI -hVI -hVI -hVI -hVI -aLW -aLW -pWC -bLJ -xXl -lcf -lcf -lcf -lcf -sIw -lcf -lcf -pxQ -pxQ -pxQ -lcf -lcf -lcf -lcf -lcf -lcf -lcf -pxQ -suX -jEX -liA -igO -tmo -gfo -cME -wQT -cME -kqC -atn -beS -eoj -mkM -mkM -goS -kqC -qcl -pHw -kqC -uJX -bIY -bIY -bIY -wEw -keP -keP -keP -lJH -xGt -cwW -uIh -cwW -uIh -inX -inX -inX -uIh -ceC -obh -obh -ceC -bxc -gzJ -bBK -ceC -ceC -uGY -uGY -uGY -uGY -uGY -uGY -uGY -uGY -uGY -uGY -uGY -inX -tVS -tVS -tVS -tVS -inX -ubP -ubP -ubP -plK -pIX -dkn -qPB -xJt -dkn -aqa -uMw -rJO -rJO -rJO -ipa -rJO -rJO -ipa -rJO -rJO -iqB -rJO -kmN -vXT -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(142,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -lAh -lAh -lAh -lAh -lAh -lAh -azZ -azZ -azZ -lAh -azZ -azZ -azZ -xLi -xLi -fHx -phz -phz -phz -phz -xLi -bYP -aAO -iti -azZ -xLi -xLi -ddL -ddL -ddL -xLi -xLi -fUv -aAO -iti -bYP -mwb -kDG -jhu -fHx -lny -lAh -lAh -aFZ -aFZ -bmE -hVI -hVI -kWB -mUC -vXv -aLW -xag -aFZ -hVI -hVI -vXv -vXv -hVI -hVI -hVI -yhR -sdj -bdc -tDJ -vXv -vXv -hUQ -vpJ -cPf -bdc -bdc -bdc -nqx -ykQ -hVI -khi -rKo -tMY -tXM -aLW -eXu -pXE -tWf -lcf -lcf -lcf -lcf -lcf -lcf -lcf -pxQ -hCh -pxQ -bwi -lcf -rFQ -lcf -lcf -sIw -lcf -pxQ -suX -jEX -liA -igO -tmo -gfo -cME -cME -eLu -kqC -flv -beS -eoj -mkM -mkM -eWb -kqC -ryJ -end -kqC -atn -wbW -upY -ufE -ugg -upY -upY -gmG -dwp -xGt -mOH -wGH -mOH -uIh -inX -inX -inX -uIh -oWI -eGp -nJs -hVG -oZi -ubP -ubP -hVG -inX -aUg -rvu -uGY -fRt -uIh -uIh -xGt -qgQ -lWi -cht -uGY -ubP -ubP -ubP -ubP -ubP -inX -inX -inX -inX -plK -xJt -dkn -qPB -qPB -qPB -aqa -uMw -rJO -rJO -rJO -plK -wKH -wKH -eYV -lvi -rJO -xmj -rJO -voq -vXT -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(143,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -lAh -lAh -lAh -azZ -azZ -azZ -azZ -xLi -xLi -fHx -phz -phz -phz -phz -bYP -aAO -iti -azZ -azZ -bYP -bYP -bYP -vBY -xLi -xLi -jrh -aAO -iti -bYP -mhj -xLi -pnk -azZ -azZ -azZ -ohF -pcu -tQB -wGP -gah -hVI -wfu -aLW -vXv -aLW -byY -tEH -aLW -aLW -aLW -wPq -wPq -aLW -hVI -hVI -xym -vXv -vXv -buL -vXv -vXv -rSG -nap -vXv -vXv -vXv -miD -cBt -hVI -nCA -cOK -wxH -cOK -aLW -eXu -uwm -hGy -lcf -tkA -lcf -lcf -lcf -lcf -bAv -pxQ -hCh -pxQ -lcf -lcf -lcf -lcf -lcf -lcf -lcf -lcf -pxQ -bLJ -iYw -wzE -hZR -hZR -hZR -wzE -wzE -kqC -flv -lXQ -eoj -mkM -uJX -bIY -bIY -bIY -nRS -dSj -atn -upY -upY -hMj -upY -dQe -upY -kge -cGu -xGt -ogw -qKQ -lGc -tdx -inX -udt -ope -qER -guu -axU -giJ -ceC -nJQ -bsj -rfr -ceC -lyi -ubP -hYI -uGY -nTx -ubP -inX -hVG -uIh -eUL -uIh -hVG -inX -inX -inX -inX -inX -inX -inX -inX -xmw -plK -fpu -dkn -dkn -dkn -qPB -aqa -gHz -aJX -uMw -sYn -aPH -aPH -aPH -aPH -aPH -mho -uMw -uMw -vXT -vXT -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(144,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -bQM -bQM -azZ -azZ -lAh -lAh -lAh -azZ -lAh -azZ -lAh -azZ -azZ -azZ -azZ -xLi -xLi -xLi -phz -phz -phz -phz -bYP -aAO -jGP -lHX -lHX -lHX -lHX -lHX -lHX -xZR -lHX -lHX -vbw -iti -bYP -gyz -oIj -dSo -azZ -azZ -azZ -bTo -pcu -aFZ -hNJ -vXv -hVI -xag -aLW -vXv -xgv -xag -tEH -aLW -lyN -dyn -wQM -wWt -aLW -aif -rKa -uTu -lhh -geX -vHj -vXv -vXv -rSG -vXv -vXv -oRy -vXv -cDS -hVI -hVI -vSb -twL -fib -yaa -sfd -aGV -uzT -tWf -lcf -lcf -lcf -lcf -lcf -lcf -lcf -pxQ -suX -pxQ -lcf -lcf -lcf -lcf -lcf -lcf -lcf -lcf -pxQ -hCh -sKY -bQM -bQM -bQM -bQM -bQM -wzE -kqC -atn -beS -eoj -mkM -qcl -bIi -bIi -bIi -lOF -dSj -tcE -upY -hlB -upY -upY -vYX -ugg -dwp -ceC -ceC -cds -uIh -jlh -dPU -inX -czO -uGY -uGY -uGY -uGY -uGY -ceC -ceC -ceC -ceC -ceC -bZC -inX -xjx -uGY -xwA -ubP -uIh -xGt -inW -lQO -psM -uGY -sEO -sEO -sEO -vpN -sXt -sXt -sXt -sXt -sXt -plK -plK -plK -plK -plK -dwT -dwT -plK -plK -iUI -piI -aPH -kPz -kPz -kPz -aPH -vXT -vXT -vXT -vXT -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(145,1,1) = {" -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -bQM -bQM -azZ -azZ -lAh -azZ -azZ -azZ -lAh -azZ -lAh -azZ -azZ -azZ -azZ -xLi -xLi -xLi -xLi -xLi -phz -fHx -bYP -gBj -hQb -hQb -hQb -hQb -hQb -hQb -hQb -xZR -hQb -hQb -hzy -iti -bYP -bYP -bYP -bYP -azZ -bQM -bQM -bTo -pcu -aFZ -gZy -vXv -aif -byY -aLW -vXv -aLW -byY -tEH -agd -iXa -iXa -aLW -aLW -agd -hVI -hVI -xym -dAz -vXv -vXv -vXv -mlB -rSG -ipL -vXv -uHe -vXv -cjf -bLJ -bLJ -bLJ -bLJ -bLJ -bLJ -bLJ -bLJ -bLJ -xXl -lcf -aSa -lcf -lcf -lcf -voL -lcf -pxQ -hCh -pxQ -lcf -voL -lcf -lcf -lcf -slK -lcf -lcf -pxQ -shH -iYw -iYw -sKY -sKY -sKY -iYw -iYw -nUn -atn -beS -kIt -kqC -ryJ -end -kqC -ryJ -end -kqC -aWd -upY -upY -elc -upY -upY -eNr -dwp -xGt -cwW -uIh -cwW -uIh -uIh -ubP -ubP -pTj -inX -djh -guN -wBK -xjI -ceC -oVi -oVi -uGY -uGY -uxv -uGY -uGY -kUd -ubP -uIh -uGY -xGt -xGt -xGt -uGY -jwK -jnd -jwK -pHO -fAf -pHO -pHO -fAf -pHO -okg -jnd -mpf -hLz -pHO -fAf -fAf -pHO -aPH -aPH -aPH -aPH -kPz -bQM -kPz -kPz -kPz -kPz -kPz -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(146,1,1) = {" -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -lAh -lAh -azZ -azZ -azZ -azZ -azZ -azZ -azZ -xLi -xLi -xLi -xLi -bYP -bYP -bYP -bYP -bYP -bYP -bYP -bYP -vBY -xLi -xLi -jrh -aAO -iti -bYP -bYP -bYP -azZ -azZ -bQM -bQM -bTo -pcu -aFZ -hVI -hVI -hVI -qSy -aLW -vXv -aLW -byY -aFZ -hVI -hVI -hVI -bmE -hVI -hVI -hVI -hVI -xym -vXv -vXv -vXv -vXv -yfk -wwI -aXe -vXv -vXv -vXv -hCg -wfP -pxQ -qwc -knr -knr -eDl -chr -pxQ -pxQ -suX -lcf -lcf -lcf -lcf -lcf -lcf -aSa -pxQ -hCh -cre -lcf -lcf -slK -lcf -lGS -lcf -lcf -lcf -pxQ -pxQ -srp -roj -knr -knr -knr -pxQ -srp -xhI -uey -beS -nky -kqC -uJX -ltu -kqC -uJX -pmW -kqC -atn -upY -upY -upY -ufE -wbW -fxS -dwp -xGt -mOH -oxG -mOH -uIh -uIh -ubP -ubP -pTj -pkg -dFB -hrB -sYP -xjI -uGY -nLA -uIh -pMr -uIh -inX -rcU -uGY -dDs -ubP -uIh -uGY -lJx -fAf -fAf -fAf -fAf -mxc -fAf -fAf -jwK -pHO -pHO -jwK -fAf -gsd -fAf -lKr -hLz -dby -jwK -jwK -bSP -wly -kPz -kPz -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(147,1,1) = {" -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -bQM -bQM -azZ -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -azZ -xLi -xLi -xLi -xLi -xLi -xLi -xLi -xLi -afv -lny -lny -lny -hCi -hCi -xLi -xLi -phz -aAO -iti -rBr -bYP -azZ -azZ -azZ -bQM -bQM -bTo -pcu -aFZ -inQ -vXv -aif -byY -aLW -vXv -aLW -qtP -aFZ -fIT -hVI -mEO -mEO -ddD -hVI -lmn -tYm -fmm -arc -fIc -arc -ejW -nQq -nQq -oRy -vXv -vXv -vXv -hvN -hSC -suX -jyQ -hCh -hCh -suX -fNA -hCh -tDz -tDz -koV -pxQ -pxQ -pxQ -pxQ -pxQ -pxQ -pxQ -suX -pxQ -pxQ -pxQ -pxQ -pxQ -pxQ -pxQ -tKY -mki -mki -hCh -mGr -suX -hCh -hCh -hCh -suX -mGr -upY -atn -beS -nky -kqC -oCz -iZD -kqC -oCz -iZD -kqC -atn -upY -sRv -upY -wam -upY -tnF -cGu -xGt -ogw -gVJ -ogw -uIh -uIh -ubP -ubP -pTj -xLw -xLw -inX -inX -xjI -cCB -uIh -ubP -ubP -eLQ -ubP -uIh -cCB -uIh -ubP -uIh -uGY -hLz -hpY -pHO -pHO -pHO -pHO -pHO -pHO -pHO -pHO -pHO -pHO -pHO -pHO -fAf -uKS -xUo -pHO -jwK -jwK -pHO -ckm -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(148,1,1) = {" -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -bQM -bQM -azZ -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -azZ -xLi -ijs -xLi -xLi -xLi -xLi -xLi -iwm -bYP -hBd -lny -hBd -bYP -bYP -bYP -phz -phz -aAO -iti -azZ -azZ -azZ -azZ -azZ -azZ -bQM -bTo -pcu -aFZ -jwD -vXv -hVI -byY -aLW -vXv -aLW -byY -sJu -mEO -sJu -mEO -mEO -akW -hVI -gZf -aLW -wxH -aXe -vXv -vXv -xci -hVI -hVI -wBY -oRy -vXv -vXv -nqz -rfg -suX -suX -suX -bEA -suX -fNA -hCh -bXj -fCL -fDZ -pxQ -hCh -hCh -bkU -hCh -hCh -suX -bqX -suX -hCh -jXV -suX -hCh -hCh -pxQ -vJy -pLg -pLg -hCh -mGr -suX -suX -suX -suX -suX -mGr -upY -atn -beS -kIt -kqC -kqC -kqC -kqC -kqC -kqC -mCF -uWn -upY -upY -vRA -upY -upY -dwp -ceC -ceC -cds -uIh -cds -uIh -uIh -inX -smg -uGY -nPm -nPm -uGY -nPm -rUc -uGY -mbL -kyZ -uIh -uIh -ubP -inX -hVG -inX -ubP -uIh -uGY -jEr -pHO -pHO -pHO -pHO -pHO -pHO -pHO -pHO -pHO -pHO -pHO -pHO -pHO -fAf -pHO -xUo -pHO -jwK -jwK -pHO -ckm -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(149,1,1) = {" -bQM -bQM -bQM -azZ -azZ -azZ -azZ -bQM -bQM -bQM -bQM -iVv -bQM -bQM -bQM -bQM -azZ -azZ -azZ -lAh -lAh -azZ -eRz -fnn -phz -guf -guf -xLi -ijs -xLi -xLi -xLi -xLi -xLi -xLi -sVz -hBd -lny -hBd -bYP -bYP -bYP -phz -phz -aAO -iti -pPd -azZ -azZ -azZ -azZ -azZ -tuf -bTo -pcu -tQB -aFN -vXv -hVI -ncj -pdu -vXv -aLW -egT -aFZ -hVI -hVI -mEO -mEO -bWy -hVI -gZf -aLW -wxH -vXv -vXv -cXs -pex -nQq -nQq -lKM -vXv -vXv -vXv -maa -eYm -suX -lFQ -aCZ -hCh -suX -fNA -hCh -tlG -tlG -xkk -pxQ -jvA -pxQ -pxQ -pxQ -pxQ -jvA -suX -pxQ -mCc -pxQ -pxQ -pxQ -pxQ -pxQ -gom -lbk -lbk -hCh -mGr -suX -hCh -hCh -hCh -suX -mGr -upY -atn -beS -eoj -mkM -mkM -mkM -kqC -rOZ -vgq -kqC -atn -upY -upY -vRA -cKH -joJ -dwp -xGt -bjo -uIh -uIh -uIh -uIh -uIh -kfL -uGY -uGY -lvA -lvA -uGY -lvA -rky -xGt -uIh -ubP -cTY -hIP -ljV -inX -hVG -inX -ubP -uIh -uGY -lMh -pHO -pHO -pHO -pHO -dFT -pHO -pHO -pHO -pHO -pHO -pHO -pHO -uKS -fAf -pHO -xUo -pHO -jwK -jwK -pHO -ckm -kPz -kPz -kPz -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(150,1,1) = {" -bQM -bQM -bQM -azZ -azZ -azZ -bQM -bQM -bQM -bQM -bQM -iVv -bQM -bQM -bQM -bQM -azZ -azZ -azZ -ejq -lAh -azZ -phz -phz -fRo -gwM -gCn -xLi -inA -xLi -xLi -fEn -fEn -fiI -fiI -bYP -oil -lny -hBd -bYP -bYP -bYP -rBr -phz -aAO -iti -bYP -lny -fHx -azZ -azZ -azZ -lAh -lAh -aFZ -aFZ -hVI -hVI -hVI -byY -aLW -vXv -aLW -byY -aFZ -hVI -hZf -mEO -mEO -hVI -hVI -gZf -aLW -wxH -aXe -vXv -hQN -vXv -vuH -wrQ -aXe -vXv -vXv -vXv -gHV -nFU -pxQ -cZF -rap -urf -rfM -vIw -pxQ -pxQ -lcf -lcf -lcf -lcf -lcf -lcf -lcf -lcf -pxQ -hCh -pxQ -lcf -lcf -lcf -lcf -lcf -lcf -lcf -lcf -pxQ -pxQ -oTS -hHF -urf -urf -urf -pxQ -oTS -dxm -atn -beS -eoj -mkM -mkM -mkM -kqC -qcl -smT -kqC -atn -upY -vRA -vZL -upY -upY -dwp -xGt -mEJ -uIh -uIh -uIh -uIh -uIh -tkd -cCB -inX -inX -inX -inX -inX -xjI -xGt -uIh -ubP -hgO -wwM -ubP -uIh -uGY -uIh -uIh -aJm -uGY -hLz -pHO -pHO -fAf -fAf -aXx -fAf -fAf -jwK -pHO -pHO -jwK -fAf -gsd -fAf -gkK -hLz -dby -fAf -fAf -bSP -wly -ckm -ckm -ckm -wly -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(151,1,1) = {" -bQM -bQM -bQM -azZ -azZ -bQM -bQM -bQM -jvy -bQM -bQM -azZ -bQM -bQM -bQM -bQM -bQM -azZ -azZ -ejw -fHx -etL -phz -phz -fRo -gxj -gDx -xLi -xLi -xLi -lny -fEn -fEn -jbr -jbr -eil -hBd -lny -hBd -aeA -xLi -xLi -lny -phz -aAO -iti -irD -trl -phz -lny -azZ -azZ -lAh -mnd -oYs -nCh -byY -byY -uno -byY -aLW -cXs -aLW -byY -eVm -hVI -tgL -mEO -xgF -hVI -nrS -sIU -aLW -wxH -vXv -vXv -klb -vXv -dAz -vXv -vXv -dAz -vXv -vXv -vhT -iYw -egk -sKY -sKY -sKY -iYw -iYw -sOM -pxQ -lcf -hwF -lcf -lcf -lcf -lcf -voL -lcf -pxQ -hCh -pxQ -lcf -voL -lcf -tkA -lcf -kKi -ekq -lcf -pxQ -shH -iYw -iYw -sKY -sKY -sKY -iYw -iYw -nUn -atn -beS -eoj -mkM -mkM -eWb -kqC -ryJ -end -kqC -sUA -upY -vRA -upY -upY -ejf -dwp -xGt -izN -ruf -uIh -yhn -tFy -uIh -vuK -uGY -inX -inX -inX -inX -inX -xjI -xGt -pCn -ubP -tKa -uIh -ubP -uIh -uGY -ceC -uGY -uGY -uGY -qQd -jwK -jwK -fAf -sEO -sEO -sEO -fAf -fAf -jwK -jwK -pHO -pHO -okg -liZ -uSQ -hLz -hLz -xja -xja -hLz -hLz -dAv -dAv -dAv -wly -wly -kPz -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(152,1,1) = {" -bQM -bQM -bQM -azZ -azZ -bQM -bQM -bQM -bQM -bQM -azZ -azZ -bQM -bQM -bQM -bQM -bQM -azZ -azZ -lAh -lAh -ezV -azZ -azZ -phz -phz -phz -xLi -xLi -xLi -phz -lny -lny -xLi -xLi -iRE -hBd -lny -hBd -bYP -azZ -azZ -azZ -bvW -aAO -iti -phz -fHx -phz -lny -fEn -bYP -bYP -fEn -byY -byY -hVI -iWg -aLW -aLW -aLW -vXv -aLW -byY -aFZ -hVI -fQY -mEO -mEO -sJu -aLW -aLW -aLW -xLp -vXv -vXv -vXv -eYi -vXv -vXv -vXv -vXv -vXv -vXv -ejH -aFZ -aFZ -fPB -bQM -bQM -bQM -sKY -hCh -pxQ -lcf -lcf -lcf -lcf -lcf -lcf -lcf -hwF -pxQ -suX -pxQ -lcf -lcf -hwF -lcf -aSa -lcf -ekq -lcf -pxQ -hCh -sKY -cAW -cAW -cAW -cAW -cAW -wzE -kqC -exj -beS -eoj -mkM -uJX -bIY -bIY -gfv -nRS -dSj -tcE -gQc -upY -upY -upY -upY -dwp -ceC -ceC -nqN -dCM -dCM -dCM -nqN -uGY -uGY -uxv -ceC -ceC -aPr -cYD -kxB -uGY -sDd -ubP -ubP -ubP -ubP -uIh -wXB -ceC -hLz -byE -hLz -fAf -jwK -jwK -fAf -sEO -sEO -sEO -fAf -fAf -jwK -jwK -fAf -fAf -hLz -hLz -hLz -hLz -aQW -aQW -wSm -qxN -qxN -fAf -fAf -fAf -fAf -ybj -wly -wly -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(153,1,1) = {" -bQM -bQM -bQM -azZ -azZ -azZ -bQM -bQM -bQM -azZ -azZ -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -lAh -eAY -lAh -azZ -azZ -azZ -phz -xZR -phz -bYP -phz -bYP -irD -xwK -mui -nWL -hBd -lny -hBd -pUV -azZ -xLi -xLi -bYP -aAO -iti -phz -phz -phz -kEZ -fEn -bYP -bYP -fEn -byY -byY -hVI -qav -aLW -aLW -aLW -vXv -aLW -byY -aFZ -hVI -fQY -mEO -mEO -hVI -kEB -aLW -aLW -vjH -uqG -uBy -gzP -uBy -bKP -uBy -drL -gIw -uBy -vXv -uEG -aFZ -aFZ -fPB -bQM -bQM -bQM -sKY -lqa -pxQ -lcf -lcf -lcf -nUp -hJM -lcf -lcf -lcf -pxQ -hCh -pxQ -lcf -hwF -lcf -lcf -lcf -lcf -lcf -lcf -pxQ -hCh -sKY -cAW -cAW -cAW -wzE -wzE -wzE -kqC -sUA -beS -eoj -mkM -tDA -bIi -bIi -bIi -lOF -dSj -tcE -upY -upY -vRA -osN -xdb -rCN -tqJ -lJH -hZR -kPz -kPz -kPz -dCM -lza -qTs -qTs -xFd -xGt -lPr -lPr -lPr -gIB -kGe -sbt -uIh -inX -uIh -cwW -qVi -ceC -ikF -hpY -fAf -fAf -pHO -pHO -fAf -pHO -nQN -fAf -pHO -pHO -fAf -pHO -pHO -fAf -fAf -nyO -fAf -oRA -pHO -wSm -pBV -qKT -qbl -wSm -pHO -hpY -fAf -wly -wly -wly -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(154,1,1) = {" -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -ezV -phz -fwr -fTz -xLi -xLi -xLi -xLi -jrh -phz -bYP -utH -qRQ -mTX -nWL -hBd -lny -hBd -phz -xLi -xLi -azZ -bYP -aAO -phz -bYP -fHx -wNi -lny -fEn -bYP -bYP -dvB -mpY -xCv -xCv -xCv -gHC -kHc -vat -aLW -aLW -lDo -aFZ -aFZ -aFZ -aFZ -bmE -aFZ -sta -sta -sta -jmG -jmG -tOp -tOp -tOp -tOp -tOp -jmG -sta -sta -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -cKa -cKa -rMT -lcf -lcf -lcf -lcf -lcf -lcf -tkA -pxQ -hCh -pxQ -pxQ -pxQ -pxQ -fpo -fpo -fpo -pxQ -pxQ -bVE -iYw -iYw -cAW -cAW -wzE -wzE -xHE -beS -hXd -atn -beS -eoj -mkM -mkM -eWb -kqC -ryJ -end -kqC -sUA -upY -upY -upY -upY -siW -bEm -upY -dwp -hZR -kPz -bQM -kPz -dCM -oMb -qTs -cZV -jNZ -xGt -qBH -qBH -qBH -gIB -uiK -fOj -uGY -dFj -uGY -hVE -dDs -ceC -gjs -fAf -fAf -fAf -pHO -pHO -fAf -cSn -txT -dUi -pHO -pHO -fAf -pHO -pHO -fAf -aSA -cvv -dUi -hpY -pHO -ppG -qbl -qbl -wSm -jxc -pHO -pHO -fAf -wly -wly -wly -bce -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(155,1,1) = {" -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -phz -phz -fwr -fUm -xLi -xLi -xLi -xLi -uHu -phz -bYP -bYP -feb -mTX -nWL -lTM -lny -hBd -phz -lAh -lAh -lAh -bYP -aAO -iti -bYP -lAh -lAh -beW -fEn -doB -bYP -ckA -jmG -mvl -mvl -mvl -jmG -fer -byY -byY -byY -byY -tOp -xjf -btC -cMR -pNg -tOp -noy -ayC -dJI -cKa -cKa -aiP -dMK -aiP -dMK -aiP -hqD -noy -jnE -pNg -nhg -cKa -sUU -iWw -cKa -rdD -dMK -miC -nss -jYs -kID -lcf -lcf -lcf -ekq -lcf -lcf -lcf -pxQ -tMT -pxQ -slK -lcf -hGz -ckH -dKT -mki -jfe -pxQ -bVE -iYw -cAW -cAW -cAW -wzE -aCj -beS -beS -hXd -cAm -beS -eoj -mkM -mkM -mkM -kqC -uJX -lzr -kqC -qcl -bIi -bIi -bIi -bIi -bIi -bIi -bIi -cGu -hZR -kPz -kPz -kPz -dCM -otR -nNu -hkm -ogK -xGt -cHW -cHW -cHW -uGY -njK -cHF -uGY -fAf -uGY -gIB -gIB -ceC -lCk -fAf -fAf -fAf -pHO -pHO -fAf -pHO -pHO -fAf -pHO -pHO -fAf -pHO -pHO -fAf -pHO -pHO -avJ -pHO -pHO -fAf -wSm -wSm -fAf -jxc -pHO -pHO -fAf -wly -tan -tan -tan -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(156,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -vcC -bQM -bQM -bQM -sPF -azZ -azZ -eVq -fFE -azZ -xLi -xLi -xLi -xLi -gkI -lny -bYP -bYP -eut -mui -nWL -hBd -sLj -hBd -bYP -lAh -lAh -lAh -bYP -aAO -iti -lAh -lAh -lAh -lny -fEn -bYP -bYP -ckA -lIG -mwp -jWb -wHp -mvl -eqJ -byY -iEl -gBR -gBR -jmG -thd -noy -pNg -pNg -tOp -dRM -uKP -oEG -cKa -bRc -dMK -rdD -dMK -dTI -dMK -hqD -tBd -jxT -joi -nhg -hqD -jzm -qWK -cKa -aBm -dMK -miC -sWX -jYs -kID -cdW -lcf -lcf -lcf -lcf -lcf -lcf -tKY -ulh -mki -lcf -lcf -hGz -cCu -pxQ -cCu -jfe -suX -aPv -iYw -iYw -iYw -cAW -wzE -beS -beS -beS -mkM -atn -beS -eoj -mkM -mkM -mkM -kqC -oCz -iZD -kqC -bDD -mkM -bDD -kqC -kqC -nAu -nAu -nAu -kqC -wzE -hZR -hZR -hZR -nqN -xGt -xGt -ceC -xGt -ceC -pHO -pHO -pHO -nFQ -fAf -fAf -nFQ -fAf -nFQ -fAf -fAf -nFQ -pHO -fAf -uNI -fAf -fwy -qky -grA -vls -fwy -qky -osD -vls -fwy -qky -osD -vls -fwy -qky -osD -vls -fwy -qky -grA -vls -fwy -fAf -pHO -pHO -pHO -pHO -vzB -fiq -vzB -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(157,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -enY -sPF -azZ -azZ -azZ -azZ -xLi -xLi -xLi -xLi -xLi -phz -xLi -lny -xLi -xLi -iRE -hBd -lny -hBd -bYP -lAh -lAh -jZc -bYP -bYP -bYP -uOu -uOu -uOu -lny -lny -bYP -bYP -gyo -cKa -ePu -xlp -unv -mvl -sKu -chx -rDu -dCg -hXN -jmG -txO -vth -joi -nbA -tOp -jzm -qgK -qxf -cKa -bRc -dMK -wjc -dMK -jxF -dMK -cKa -nXc -jxT -joi -nhg -cKa -kzh -tOp -cKa -bsu -dMK -miC -avc -cKa -pyz -suX -pxQ -pxQ -lcf -lcf -lcf -lcf -pqx -pSM -lbk -lcf -aSa -hGz -pqx -cCu -rsS -jfe -shH -cmy -wId -vOZ -iYw -sKY -wzE -beS -beS -beS -mkM -atn -oGJ -eoj -mkM -mkM -mkM -kqC -kqC -kqC -mCF -dku -tqJ -lJH -kqC -wiT -qNl -qNl -qNl -kWV -kqC -uJX -bIY -nRS -abJ -mkM -mkM -abJ -tZs -tZs -tZs -fAf -oqz -oLs -oLs -oLs -oLs -pHO -oLs -oLs -oLs -oLs -pHO -pHO -pHO -uAO -wQN -xnU -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -xnU -kHG -wSm -wSm -wSm -wSm -wSm -wSm -wSm -xnU -wQN -eAM -wSm -wSm -wSm -wSm -vzB -fiq -vzB -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(158,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cBK -bQM -bQM -bQM -fiq -xgi -ePv -ePv -xgi -azZ -lAh -xLi -xLi -xLi -azZ -phz -phz -kEZ -phz -xLi -lUc -hBd -lny -hBd -bYP -lAh -sDp -bYP -vXf -jDN -lHX -tqw -kQH -tqw -bYP -bYP -bYP -rch -bYP -rSr -qVh -qVh -qVh -mvl -byY -byY -byY -byY -nFc -jmG -tiF -tiF -joi -dSy -jmG -sta -sta -sta -jmG -cKa -aiP -dMK -aiP -dMK -aiP -cKa -tBd -pdk -joi -aiP -dTm -jnE -aLV -jnE -jnE -pNg -aiP -aiP -jmG -egk -iYw -suX -suX -pxQ -pxQ -pxQ -uGF -pqx -pSM -lbk -pxQ -tMT -pxQ -slp -slp -slp -pxQ -jEX -dNk -kID -hCh -ufL -hCh -oFI -mrB -beS -piG -mkM -atn -beS -eoj -mkM -mkM -mkM -kqC -rOZ -ewy -kqC -atn -lCS -kIt -kqC -ewu -ceO -uHI -qNl -aNm -kqC -sUA -beS -eoj -vRA -mkM -mkM -vRA -fAf -fAf -pHO -bSP -sEO -cCy -cvv -cvv -dUi -pHO -aSA -cvv -cvv -dUi -pHO -pHO -pHO -jhV -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -eSF -seF -ojq -ojq -ojq -tsc -bEk -tsc -ogf -ogf -ogf -ogf -mRM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(159,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -yaY -bQM -kPz -tan -fiq -fiq -fiq -fiq -fiq -xgi -lny -lAh -lAh -lAh -azZ -lAh -phz -phz -phz -xLi -sLj -lny -lny -lny -lny -lAh -lAh -jZc -aAO -iFO -bsG -tqw -tqw -tqw -bYP -bYP -bYP -bYP -bYP -jmG -mvl -mvl -mvl -jmG -wfu -byY -byY -byY -hVI -jmG -tiF -tiF -joi -cex -fSq -noy -jnE -pNg -fSq -aiP -noy -jnE -jnE -jnE -pNg -rxk -tiF -jxT -joi -aiP -eCb -qgK -qgK -qgK -qgK -pno -aiP -aiP -jmG -bQM -iYw -sKY -iYw -hCh -hCh -lBb -vWN -hCh -hCh -hCh -nFa -pOU -rUF -pxQ -nFa -pxQ -pxQ -jEX -dNk -kID -hCh -efR -hCh -oFI -mrB -beS -beS -mkM -atn -beS -eoj -mkM -mkM -mkM -kqC -qcl -vKZ -kqC -atn -beS -eoj -kqC -thn -bGV -kqC -thn -bGV -kqC -atn -beS -eoj -kqC -mkM -mkM -kqC -eLk -eLk -fAf -pHO -clo -clo -clo -clo -clo -pHO -clo -clo -clo -clo -nlW -pHO -pHO -lLG -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -xrH -axn -wSm -wSm -wSm -vzB -fiq -vzB -bQM -bQM -bQM -bQM -bmT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(160,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -bQM -kPz -bQM -bQM -bQM -bQM -kPz -bQM -bQM -kPz -bil -nTu -nTu -azZ -azZ -azZ -azZ -azZ -azZ -kny -phz -bYP -bYP -bYP -bYP -hWV -bYP -bYP -bYP -bYP -bYP -ppM -iti -wgx -ygs -ygs -kBX -lny -gFi -blM -bYP -bYP -lZA -aiP -aiP -aiP -lZA -byY -byY -byY -byY -byY -lZA -tiF -tiF -joi -joi -fSq -tiF -nDp -joi -fSq -aiP -rRE -jxT -jxT -jxT -joi -xnY -tiF -jyZ -joi -cKa -kzh -tOp -cKa -kzh -tOp -cKa -noy -pNg -jmG -kPz -eHa -pcu -iYw -sKY -sKY -iYw -imI -oEH -oEH -oEH -vkt -bLJ -rcg -ndq -urf -uRv -urf -ujj -iYw -iYw -sKY -sKY -sKY -wzE -btW -beS -beS -mkM -oyB -beS -eoj -mkM -mkM -eWb -kqC -ryJ -end -kqC -wpF -beS -eoj -cao -qNl -qNl -wSp -tSF -qNl -cao -atn -beS -eoj -abJ -mkM -mkM -abJ -fAf -fAf -pHO -pHO -pHO -uIw -uPA -uWQ -pHO -ghz -pHO -uPA -uWQ -pHO -pHO -fAf -fAf -eZr -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -fZd -axn -wSm -wSm -wSm -vzB -fiq -vzB -bQM -bQM -bQM -bQM -bmT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(161,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -axb -bQM -kPz -bQM -bQM -kPz -bQM -sKG -hlg -azZ -azZ -azZ -azZ -azZ -azZ -azZ -phz -azZ -lHX -lHX -lHX -lHX -lHX -lHX -lHX -lHX -lHX -oNv -iti -bYP -aHC -iJW -gzR -fEn -gDI -dXx -bYP -bYP -wef -aiP -aiP -aiP -wef -byY -byY -byY -byY -byY -wef -jzm -jzm -pno -pno -fSq -jzm -qgK -pno -fSq -aiP -jzm -qgK -qgK -qgK -pno -rxk -tiF -jxT -joi -cKa -noy -fUZ -cKa -mHI -fUZ -cKa -tiF -joi -uwk -swg -fyC -qOk -sHO -erT -kPz -iYw -hre -fCG -jRF -xIk -eUK -bLJ -bLJ -frv -frv -bLJ -frv -frv -iYw -cAW -bce -bce -bce -wzE -kqC -mkM -mkM -kqC -uoI -beS -uSZ -bIY -bIY -erS -bIY -bIY -nRS -mkM -atn -beS -eoj -cao -qNl -qNl -uHI -qNl -qNl -cao -atn -beS -eoj -vRA -mkM -mkM -vRA -fAf -fAf -pHO -pHO -pHO -pHO -nKl -qfc -pHO -fAf -pHO -nKl -qfc -pHO -pHO -pHO -pHO -uAO -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -kHG -eAM -axn -wSm -wSm -wSm -vzB -fiq -vzB -bQM -bQM -bQM -bQM -bmT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(162,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -kPz -bQM -kPz -bQM -bQM -kPz -bQM -bil -pmV -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -hBd -hBd -hBd -bou -hBd -hBd -hBd -oil -hBd -hBd -iti -bYP -knM -mTX -gzR -fEn -fEn -xDG -bYP -bYP -cKa -jxT -jxT -jxT -cKa -tOp -tOp -cKa -tOp -cKa -cKa -jzm -jzm -pno -pno -jmG -jmG -jmG -jmG -jmG -cKa -kzh -tOp -cKa -kzh -tOp -cKa -aep -nIi -joi -cKa -usn -szz -cKa -usn -tLi -cKa -tiF -joi -uwk -daD -xeG -xeG -xeG -ghg -gef -sKY -qTe -red -mqJ -qJQ -myj -rtc -idS -rcg -wvL -hys -rcg -rcg -sKY -cAW -bce -cAW -cAW -wzE -nFL -bXr -bIY -bIY -hrI -bKE -beS -beS -ugB -laC -bIi -bIi -lOF -mkM -atn -beS -eoj -kqC -arR -bGV -kqC -thn -bGV -kqC -atn -beS -eoj -kqC -mkM -mkM -kqC -tZs -tZs -fAf -pHO -oLs -oLs -oLs -oLs -oLs -pHO -oLs -oLs -oLs -oLs -oLs -pHO -pHO -jhV -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -xYg -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -eSF -axn -wSm -wSm -wSm -vzB -fiq -vzB -bQM -bQM -bQM -bQM -bmT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(163,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -yaY -bQM -vcC -bQM -bQM -qgC -bQM -bQM -vcC -kPz -nTu -fiq -jeg -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -hQb -hQb -hQb -hQb -hQb -hQb -hQb -hQb -hzy -iti -bJV -pnf -wdR -gzR -fEn -gDI -dXx -bYP -bYP -lZA -aiP -aiP -aiP -lZA -noy -jnE -jnE -jnE -jnE -ubp -jnE -jnE -jnE -jnE -abg -jnE -ubp -jnE -pNg -cKa -noy -fUZ -cKa -vAP -dYZ -cKa -bFz -jxT -joi -hEs -cKa -cKa -cKa -cKa -cKa -cKa -tiF -joi -uwk -urJ -xeG -hkh -xeG -tCZ -pcu -sKY -aso -ber -rcg -aso -aso -rtc -idS -imI -sPt -hys -imI -sPt -sKY -bce -bce -cAW -cAW -wzE -atn -tMp -wVa -aPe -beS -beS -beS -imw -beS -bnr -kqC -ryJ -end -kqC -sUA -beS -kIt -kqC -ewu -qNl -wSp -qNl -aNm -kqC -sUA -beS -eoj -abJ -mkM -mkM -abJ -fAf -fAf -pHO -bSP -sEO -cCy -cvv -cvv -dUi -pHO -aSA -cvv -cvv -dUi -pHO -pHO -pHO -lLG -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -xrH -axn -wSm -wSm -wSm -vzB -fiq -vzB -bQM -bQM -bQM -bQM -bmT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(164,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -nPj -bQM -bQM -dxb -bQM -bQM -kPz -bQM -bQM -kPz -vcC -bQM -nTu -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -bYP -bYP -azZ -bYP -azZ -bYP -bYP -bYP -aAO -iti -bYP -sxH -sxH -aaR -lny -gib -uWW -bYP -bYP -wef -aiP -aiP -aiP -wef -tiF -jxT -jxT -riI -jxT -jxT -jxT -jxT -jxT -jxT -jxT -jxT -jxT -riI -joi -cKa -usn -szz -cKa -usn -szz -cKa -xir -jxT -joi -cKa -sUU -iWw -cKa -sUU -iWw -cKa -tiF -joi -uwk -mdJ -xeG -xeG -xeG -xMW -ssJ -sKY -gzp -gPk -rmZ -sFY -jEX -rtc -fOi -fac -ehO -hys -unF -ehO -sKY -cAW -bce -bce -bce -wzE -mxn -beS -oOv -eyq -beS -tWv -beS -beS -beS -uJX -kqC -uJX -qTY -kqC -bwg -beS -tMo -kqC -kRV -qNl -qNl -ceO -hoy -kqC -atn -beS -eoj -vRA -mkM -mkM -vRA -eLk -eLk -eLk -fAf -tFK -clo -clo -nlW -clo -pHO -clo -clo -clo -clo -pHO -fAf -fAf -klB -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -fZd -axn -wSm -wSm -wSm -vzB -fiq -vzB -bQM -bQM -bQM -bQM -bmT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(165,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -kPz -kPz -tan -tan -kPz -kPz -kPz -tan -kPz -tan -tan -azZ -lAh -lAh -lAh -lAh -azZ -azZ -lAh -lAh -lAh -lAh -azZ -azZ -azZ -lAh -lAh -lAh -xvI -aAO -eWk -lHX -tqw -tqw -tqw -bYP -bYP -bYP -bYP -bYP -cKa -mvl -mvl -mvl -cKa -jzm -qgK -qgK -qvr -jxT -wPi -qgK -qgK -qgK -qgK -qgK -qgK -qvr -jxT -fkL -cKa -cKa -cKa -cKa -cKa -cKa -cKa -hZW -qgK -pno -cKa -wzt -sqV -cKa -jzm -sqV -cKa -jzm -pno -uwk -aKA -tWI -llQ -eOF -bUB -kPz -iYw -pxQ -jRF -nzi -suX -anp -bLJ -izZ -wTW -wTW -izZ -wTW -wTW -ecM -cAW -bce -cAW -cAW -wzE -iah -nRS -beS -beS -beS -bBV -aPe -beS -uJX -atn -kqC -oCz -tXa -kqC -mSX -beS -eoj -kqC -kqC -cao -cao -cao -kqC -kqC -atn -beS -eoj -vMK -goG -goG -vMK -goG -vMK -gjs -fAf -fAf -nFQ -fAf -fAf -nFQ -fAf -nFQ -fAf -fAf -nFQ -pHO -pHO -pHO -uAO -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -eAM -cAO -wSm -wSm -wSm -vzB -fiq -vzB -bQM -bQM -bQM -bQM -bmT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(166,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -sDp -bYP -gBj -hQb -hQb -tqw -tqw -tqw -bYP -bYP -bYP -bYP -bYP -mvl -vNT -jWb -hTd -mvl -djN -aiP -aiP -tiF -jxT -fkL -aSz -uwk -uwk -uwk -uwk -aSz -txO -jxT -joi -cKa -sUU -dMo -cKa -sUU -iWw -cKa -sqa -aiP -aiP -cKa -kzh -tOp -cKa -kzh -tOp -cKa -aiP -aiP -jmG -jmG -mlC -mlC -mlC -mlC -ecM -iYw -imI -oEH -oEH -oEH -vkt -bLJ -xKX -wGr -wGr -tZO -wGr -wGr -ecM -mlC -wzE -wzE -wzE -wzE -wbU -eoj -beS -beS -hvx -beS -beS -beS -atn -wtf -kqC -kqC -kqC -kqC -xID -beS -rCN -bjy -bjy -bIY -bIY -bIY -fBN -bjy -hrI -beS -eoj -goG -qBz -mjI -uIX -pcd -goG -fAf -fAf -fAf -fAf -fAf -fAf -mxQ -lPr -mxQ -fAf -fAf -fAf -fAf -pHO -pHO -jhV -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -eSF -due -ojq -ojq -ojq -tsc -bEk -tsc -ogf -ogf -ogf -ogf -fWI -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(167,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xWc -bQM -bQM -cZq -bQM -bQM -bQM -bQM -yaY -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -lAh -jZc -bYP -bYP -bYP -cYd -cYd -cYd -lny -lny -uVd -bYP -lny -mvl -cwg -xlp -qVh -cKa -cKa -cKa -cKa -tiF -jxT -fXp -uwk -bQM -bQM -bQM -bQM -uwk -jzm -qgK -pno -cKa -jzm -sqV -cKa -jzm -sqV -cKa -txq -jnE -jnE -jnE -jnE -jnE -hid -jnE -jnE -jnE -jnE -jnE -kxD -aBC -ouw -ouw -kOw -kOw -kOw -gDq -kOw -kOw -kOw -kOw -kOw -kBc -kOw -kOw -kOw -kOw -kOw -kOw -kBc -kOw -kqC -mkM -mkM -mkM -mkM -mkM -beS -beS -beS -beS -sFq -beS -qcl -atn -kqC -tYb -nqy -kqC -atn -beS -krB -beS -lCS -beS -krB -beS -beS -beS -beS -beS -eoj -goG -aTi -lmY -bsg -qRz -goG -fAf -rpL -fAf -fAf -fAf -qsc -mxQ -iyf -mxQ -gjs -fAf -fAf -fAf -pHO -pHO -lLG -wQN -xnU -wSm -wSm -wSm -wSm -wSm -wSm -wSm -wSm -xnU -wSm -wSm -kHG -wSm -wSm -wSm -wSm -wSm -xnU -wQN -xrH -wSm -wSm -wSm -wSm -vzB -fiq -vzB -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(168,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -kPz -bQM -bQM -cZq -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -azZ -lAh -lAh -lAh -lAh -lAh -eWP -lAh -lAh -lAh -fEn -fEn -bYP -bYP -fEn -cKa -tYT -fyi -qVh -mvl -aiP -aiP -aiP -tiF -jxT -fkL -aSz -uwk -uwk -uwk -uwk -aSz -mjX -aiP -aiP -cKa -kzh -tOp -cKa -kzh -tOp -cKa -txO -jxT -jxT -riI -jxT -jxT -jxT -jxT -jxT -jxT -jxT -sGD -joi -fSq -kOw -qBe -syh -kOw -jqE -qBe -qBe -miU -qkZ -xKX -eXz -qBe -qBe -qBe -eUP -qBe -qBe -qBe -qBe -iIf -wpO -mkM -mkM -mkM -lOF -beS -aPe -tWv -beS -imw -tMp -beS -beS -qcl -kqC -qcl -lOF -kqC -qcl -bIi -fYe -bIi -bIi -bIi -bIi -bIi -vht -bIi -bIi -bIi -lOF -goG -kkk -xAI -xAI -jEw -goG -fAf -fAf -fAf -fAf -fAf -fAf -mxQ -tUs -mxQ -mxQ -iyf -iyf -mxQ -vMK -fAf -fAf -vOv -pBc -iGo -oBv -vOv -bIz -iGo -oBv -vOv -pBc -iGo -oBv -vOv -pBc -iGo -oBv -vOv -pBc -iGo -oBv -vOv -pHO -pHO -pHO -pHO -pHO -vzB -fiq -vzB -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(169,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -azZ -lAh -azZ -azZ -lAh -azZ -azZ -lAh -azZ -azZ -azZ -azZ -azZ -lAh -lAh -lAh -nMI -fEn -bYP -bYP -fEn -rSr -qVh -qVh -qVh -rSr -noy -jnE -jnE -vPz -jxT -joi -aiP -noy -jnE -jnE -jnE -pNg -rye -noy -jnE -jnE -jnE -jnE -jnE -jnE -jnE -jnE -vPz -jxT -wef -jxT -pys -qgK -qgK -qgK -qgK -qgK -qgK -qgK -pno -fSq -bHS -nOe -qBe -qBe -azI -cuE -ccZ -uOP -tZb -qBe -ccZ -qBe -qBe -qBe -qBe -qBe -qBe -qBe -lFv -iIf -wpO -mkM -mkM -mkM -atn -dPK -beS -beS -aPe -clY -beS -tWv -qCb -kIt -kqC -qRi -end -wzE -wzE -wzE -kqC -mkM -mkM -mkM -mkM -dhN -kqC -jTJ -goG -goG -goG -vMK -gJb -xAI -xAI -vhO -vMK -vMK -gjs -fAf -fAf -fAf -fAf -mxQ -tUs -mxQ -vzQ -itA -uvW -vzQ -vMK -gjs -pHO -pHO -pHO -fAf -fAf -fAf -fAf -fAf -fAf -pHO -pHO -pHO -fAf -pHO -pHO -pHO -fAf -pHO -pHO -pHO -fAf -pHO -pHO -pHO -pHO -fAf -wly -tan -tan -tan -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(170,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -azZ -azZ -azZ -lAh -azZ -azZ -lAh -bQM -bQM -lAh -azZ -azZ -azZ -lAh -lAh -lAh -lAh -lAh -ixF -fEn -bYP -bYP -fEn -cKa -cKa -cKa -cKa -cKa -tiF -jxT -wPi -qgK -qgK -pno -aiP -jzm -qgK -qgK -qgK -pno -aiP -tiF -jxT -riI -jxT -jxT -jxT -jxT -jxT -jxT -wef -jxT -jxT -jxT -fkL -jpN -uwk -uwk -uwk -lIG -aiP -gJN -aiP -cKa -kOw -qBe -qBe -qBe -iXO -usY -oyS -qBe -qBe -qBe -oyS -qBe -qBe -qBe -qBe -eUP -qBe -qBe -qBe -kOw -wpO -mkM -mkM -mkM -qcl -xpS -beS -beS -beS -beS -clY -beS -beS -rCN -bIY -bIY -nRS -hZR -bQM -hZR -wzn -uJX -bIY -bIY -bIY -xod -uOA -duF -fjR -wSs -qgb -xAI -xAI -xAI -xAI -xAI -tMm -vMK -goG -goG -goG -vMK -lPr -mxQ -deR -mxQ -vzQ -itA -uvW -vzQ -vMK -fAf -pHO -pHO -pHO -fAf -wly -wly -wly -wly -aSA -cvv -dUi -fAf -fAf -pHO -pHO -fAf -fAf -fAf -pHO -fAf -fAf -fAf -fAf -pHO -fAf -fAf -wly -wly -wly -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(171,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -lAh -bQM -bQM -lAh -lAh -lAh -lAh -bQM -bQM -bQM -jmG -cAW -cAW -jmG -jmG -jmG -wef -lSj -wef -lSj -cKa -cKa -nKr -pNg -deq -jxT -jxT -fkL -cKa -kzh -tOp -cKa -kzh -tOp -cKa -kzh -tOp -arn -txO -jxT -wPi -qgK -qgK -qgK -qgK -qgK -qgK -qvr -jxT -jxT -jxT -joi -uwk -bQM -kPz -bQM -jmG -hul -cKa -cKa -cKa -hrz -qBe -qBe -qBe -dJw -dJw -jlI -qBe -qBe -qBe -jlI -qBe -qBe -qBe -kOw -kOw -pvb -umv -paL -vGh -kqC -kqC -ecd -kqC -kqC -atn -beS -beS -vau -beS -laC -bIi -bIi -bIi -bIi -bIi -lOF -hZR -kPz -hZR -dQK -atn -krB -beS -beS -eoj -uOA -duF -paX -xsS -tOM -tOM -tOM -kor -kor -tOM -tOM -tOM -tOM -tOM -wZH -mxQ -iyf -mxQ -tUs -mxQ -vzQ -itA -uvW -vzQ -vMK -hhu -bOp -jEQ -slT -mSk -wly -kPz -bQM -wly -lhS -nXE -ibA -fAf -fAf -fAf -fAf -fAf -fAf -fAf -fAf -fAf -fAf -fAf -fAf -fAf -fAf -wly -wly -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(172,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -lAh -bQM -bQM -lAh -bQM -bQM -lAh -lAh -jmG -cAW -cAW -cAW -cAW -jmG -bQM -jmG -aiP -noy -jnE -pNg -jxT -cKa -qQg -joi -uwk -tiF -jxT -joi -cKa -noy -fUZ -cKa -ect -fUZ -cKa -rgR -fUZ -cKa -tiF -jxT -fkL -cKa -cKa -rHw -rHw -cKa -jmG -gHh -jxT -jxT -jxT -joi -uwk -kPz -kPz -kPz -uwk -qVh -qVh -cnz -lzm -qBe -qBe -qBe -qBe -smr -cuE -dvg -qBe -qBe -qBe -dvg -qBe -eXz -qBe -kOw -kqC -kqC -dAd -hbp -kqC -kqC -rCq -vRA -vRA -kqC -iCh -loG -beS -beS -beS -uQP -kqC -cRB -end -kqC -cRB -end -wzE -bQM -hZR -flH -atn -laC -ncW -xpS -eoj -fWt -duF -qRz -tOM -tOM -tOM -tOM -aMx -vBN -tOM -tOM -tOM -tOM -tOM -wZH -mxQ -vzQ -tUs -tUs -vDO -iSA -itA -uvW -vzQ -bzO -bzO -ybj -ckm -ckm -ckm -wly -kPz -bQM -wly -dUn -rpL -fwY -fAf -jEr -byE -wly -ckm -ckm -ckm -wly -ckm -ckm -wly -ckm -ckm -ckm -wly -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(173,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -bQM -lAh -bQM -bQM -lAh -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -jmG -jmG -jmG -aiP -tiF -jxT -joi -aiP -cKa -usn -szz -uwk -tiF -jxT -joi -cKa -usn -szz -cKa -usn -szz -cKa -iTy -iBj -cKa -xbP -jxT -joi -cKa -jVe -yeE -yeE -atq -cKa -tiF -jxT -jxT -yjJ -joi -uwk -bQM -kPz -bQM -uwk -qVh -fyi -pPn -qva -xbm -smj -qBe -qBe -tgu -usY -ccZ -qBe -qBe -qBe -ccZ -qBe -qBe -qBe -paL -kqC -kqC -vRA -blG -kqC -kqC -kqC -tVV -arl -oFI -nUO -gmu -bIi -xpS -beS -eoj -kqC -uJX -wth -kqC -uJX -mFI -wzE -kPz -jTJ -iGc -atn -eoj -cRD -atn -eoj -bot -jTJ -vHJ -tOM -tOM -tOM -bkg -xsS -xsS -tOM -tOM -uwT -tOM -tOM -wZH -mxQ -bFx -vfz -tUs -mxQ -vzQ -itA -uvW -vzQ -vEK -bzO -wly -kPz -bQM -kPz -bQM -kPz -bQM -wly -ckm -ckm -ckm -ckm -ckm -ckm -wly -bQM -bQM -bTo -pcu -iWq -bTo -pcu -iWq -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(174,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -lAh -bQM -bQM -lAh -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -uwk -aiP -jzm -qgK -pno -aiP -hEs -cKa -cKa -cKa -kpn -jUD -saN -hEs -cKa -cKa -cKa -cKa -cKa -cKa -cKa -cKa -cKa -txO -jxT -joi -cKa -dII -dll -yeE -cRS -cKa -tiF -jxT -wef -jxT -joi -jmG -bQM -kPz -bQM -uwk -pfq -fyi -lJW -cKa -iOi -smj -wrT -qBe -qBe -qBe -qBe -qBe -sWw -qBe -iFn -qBe -qBe -qBe -pXN -qQM -abJ -uJX -bIY -nRS -kKj -kqC -vRA -tiX -kqC -kqC -kqC -kqC -atn -beS -eoj -kqC -oCz -iZD -kqC -oCz -iZD -wzE -bQM -hZR -cRD -atn -eoj -cRD -atn -eoj -cRD -duF -iMA -tOM -tOM -tOM -tOM -tOM -tOM -tOM -ffZ -mxQ -mxQ -iyf -mxQ -mxQ -vzQ -ndl -aZN -mxQ -vzQ -itA -uvW -vzQ -lTW -bzO -bzO -rzt -rzt -tan -bQM -kPz -bQM -kPz -bQM -kPz -bQM -kPz -bQM -bQM -dhi -qFE -qFE -fyC -qOk -pbV -fyC -qOk -pbV -qFE -qFE -lml -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(175,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -lAh -bQM -bQM -bQM -bQM -bQM -cAW -bQM -bQM -cAW -cAW -cAW -cAW -cAW -bQM -uwk -noy -jnE -pNg -aiP -aiP -wef -sUU -iWw -rJk -aEL -jxT -pRI -cKa -sUU -iWw -cKa -sUU -iWw -cKa -sUU -iWw -cKa -tiF -jxT -joi -cKa -kVZ -cKa -dII -yeE -rHw -tiF -jxT -jxT -wef -joi -uwk -bQM -kPz -bQM -jmG -quc -fyi -xaR -mvl -iOi -smj -xJb -qBe -xJb -qBe -xJb -paL -vGh -mtO -bno -bno -bno -bno -oNa -jOb -vRA -atn -ihk -eoj -kKj -oFI -vRA -glD -kqC -eKl -mFI -kqC -atn -beS -uQP -mCF -kqC -kqC -kqC -kqC -kqC -wzE -kPz -hZR -cRD -atn -eoj -cRD -atn -hzu -cRD -duF -mvx -dPm -tOM -tOM -bfw -tOM -hoT -tOM -mxQ -nmT -tUs -rbK -tUs -tUs -dWH -tUs -tUs -ffZ -vzQ -itA -uvW -vzQ -vzQ -mxQ -jXE -mja -rSV -bzO -rzt -rzt -bzO -bzO -bQM -kPz -bQM -kPz -bQM -bQM -bTo -xeG -xeG -xeG -hkh -xeG -xeG -hkh -xeG -xeG -xeG -iWq -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(176,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -bQM -bce -bce -bce -bce -bce -bce -uwk -uwk -tiF -jxT -joi -qHp -aiP -rJk -jzm -pno -wef -tiF -jxT -nDK -cKa -jzm -pno -cKa -jzm -pno -cKa -jzm -cjj -cKa -tiF -flg -dXd -cKa -dII -jdj -xyP -yeE -rHw -tiF -jxT -jMf -wef -joi -uwk -kPz -kPz -kPz -jmG -fas -jEK -qVh -jce -iOi -smj -qBe -qBe -qBe -qBe -qBe -eyb -ecM -piW -fWv -sdo -uTx -sxj -qwo -kqC -kqC -sUA -beS -eoj -kKj -kqC -kqC -kqC -kqC -ryJ -end -kqC -sUA -beS -eoj -kqC -rOZ -ewy -kqC -kPt -ewy -wzE -bQM -hZR -cRD -qcl -lOF -cRD -qcl -lOF -cRD -duF -mjI -tOM -tOM -tOM -lyI -tOM -tOM -tOM -vDO -tUs -mxQ -tUs -mxQ -mxQ -xUw -mxQ -tUs -mxQ -vzQ -itA -uvW -xAI -xAI -rXg -lYO -sGR -vzQ -uLa -tOM -vzQ -dxa -bzO -bQM -kPz -bQM -kPz -bQM -bQM -bTo -xeG -xeG -xeG -pcu -xeG -xeG -pcu -xeG -xeG -xeG -iWq -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(177,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -bQM -bce -swg -fQV -vBP -fQV -erT -uwk -qCo -jzm -qgK -pno -aiP -fLh -cKa -rJk -wef -wef -dPc -wwD -uyU -cKa -kzh -tOp -cKa -kzh -tOp -cKa -kzh -tOp -cKa -txO -jxT -joi -cKa -dII -cRS -cKa -dII -rHw -tiF -jxT -bJn -aTM -joi -uwk -bQM -kPz -bQM -jmG -pJO -trs -nZa -uhm -bHS -iUS -xJb -qBe -xJb -qBe -xJb -rtu -ecM -gDD -dJw -dJw -dJw -dJw -dJw -kqC -kbZ -tmY -beS -uQP -kqC -kqC -qhR -gBb -bIY -bIY -bIY -nRS -atn -beS -eoj -kqC -qcl -smT -kqC -qcl -smT -wzE -wzE -wzE -kqC -ecd -ecd -kqC -ecd -ecd -kqC -jTJ -vMK -mGZ -tOM -bkg -nwY -tOM -tOM -lom -mxQ -jXj -mxQ -rsp -mxQ -vzQ -vzQ -mxQ -tUs -mxQ -vzQ -iHs -uvW -vzQ -vzQ -mxQ -sGR -tfU -sGR -sXa -kLE -sXa -mja -bzO -bQM -kPz -bQM -kPz -bQM -bQM -bTo -xeG -xeG -xeG -hkh -xeG -xeG -hkh -xeG -xeG -xeG -iWq -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(178,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -bQM -bce -bTo -xeG -xeG -xeG -ghg -uwk -oBx -aiP -noy -jnE -pNg -aiP -eXn -noy -lfS -ogl -vPz -fwu -xpb -jnE -jnE -pNg -aiP -nKr -ogl -jnE -jnE -pNg -aiP -tiF -qCV -joi -cKa -dII -yeE -jdj -cRS -cKa -tiF -jxT -wef -jxT -fkL -jmG -uwk -uwk -uwk -jmG -mvl -mvl -uhm -cKa -xrc -umv -qBe -qBe -qBe -qBe -kOw -eyb -ecM -bEX -bEX -izZ -kOw -kOw -kOw -kqC -okK -atn -beS -eoj -abJ -mkM -uJX -bIY -bIY -bIY -nRS -lOF -atn -beS -uQP -kqC -ryJ -end -kqC -ryJ -end -kqC -wzE -pah -vNQ -beS -jai -qOq -beS -beS -pah -bhu -goG -tOM -tOM -tOM -meP -tOM -tOM -wtk -mxQ -tUs -tUs -oBj -mxQ -vzQ -mxQ -mxQ -msj -mxQ -vzQ -itA -uvW -vzQ -vEK -mxQ -mxQ -jjg -jjg -jjg -jjg -jjg -jjg -bzO -bzO -bzO -bzO -bzO -bzO -bQM -aKA -jlH -jlH -tWI -llQ -jKI -tWI -llQ -jKI -jlH -jlH -bUB -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(179,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -bQM -bce -ajx -xeG -hkh -xeG -tCZ -uwk -wak -aiP -tiF -jxT -joi -jxT -jxT -jzm -fTH -qgK -qgK -qgK -qgK -qgK -qgK -pno -sTQ -jzm -sbn -fTH -qgK -pno -aiP -tiF -jxT -joi -cKa -twc -xyP -yeE -gaK -hEs -tiF -jxT -jxT -wef -joi -jYs -jrq -dJw -azI -dWC -dJw -dJw -lYL -lyu -pwG -dAd -ode -ode -ode -ode -ode -cry -qBe -qBe -qBe -wKm -qBe -qBe -kOw -kqC -twO -atn -beS -eoj -vRA -mkM -qcl -bIi -bIi -bIi -lOF -nRS -pMc -beS -eoj -mkM -uJX -bIY -bIY -bIY -nRS -mkM -duF -hQv -gsL -sQu -beS -qOq -beS -beS -gFj -sNN -goG -tOM -tOM -tOM -wiX -mzJ -tOM -nbf -mxQ -xCa -pjT -cHm -mxQ -eWj -hvF -tUs -tUs -lhY -vzQ -itA -uvW -vzQ -vEK -mxQ -mxQ -kGZ -sBW -sBW -sBW -sBW -sBW -sBW -bzO -bzO -bzO -bzO -bzO -bQM -bQM -bQM -bQM -aKA -jlH -bUB -aKA -jlH -bUB -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(180,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -bQM -bce -bTo -xeG -xeG -xeG -xMW -uwk -wak -aiP -jzm -qgK -pno -jid -eov -efl -fDQ -eov -tzy -wef -wef -iNy -aiP -djN -wef -wef -tOp -cKa -kzh -tOp -cKa -txO -jxT -fkL -aSz -aSz -aSz -hul -aSz -aSz -hZW -qgK -qgK -qgK -pno -jYs -dJw -usY -tgu -usY -tgu -fBv -rmO -dBM -pnm -qBe -kOw -kOw -chs -qBe -qBe -qBe -qBe -qBe -qBe -qBe -qBe -qBe -kOw -kqC -kbZ -lwt -beS -uQP -kqC -kqC -mkM -qcl -bIi -bIi -bIi -lOF -atn -beS -eoj -mkM -qcl -bIi -bIi -bIi -lOF -cIs -hBF -xgm -kGM -beS -beS -qOq -pAX -beS -pah -rmJ -goG -tOM -tOM -tOM -kVA -tOM -tOM -rRq -mxQ -tUs -mxQ -tUs -tUs -vzQ -rbK -tUs -mxQ -mxQ -vzQ -itA -uvW -vzQ -vEK -rKx -kGZ -cdy -xAI -iSA -xAI -tOM -tOM -vzQ -vzQ -bzO -bQM -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(181,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -cAW -bQM -bce -aKA -jlH -eJQ -jlH -bUB -uwk -nxR -noy -jnE -pNg -aiP -jxT -eov -xCt -xRU -eov -uKO -lnr -jAW -aiP -qsn -aiP -wef -noy -pNg -cKa -noy -fUZ -cKa -tiF -jxT -joi -aiP -cKa -sXe -wef -sXe -aSz -jmG -jmG -uwk -uwk -jmG -jmG -usY -rUq -kOw -kOw -kOw -kOw -kOw -kOw -kOw -kOw -kOw -kOw -qBe -qBe -qBe -qBe -qBe -qBe -qBe -qBe -qBe -qBe -ngm -kqC -kqC -sUA -beS -eoj -kKj -kqC -ryJ -end -kqC -ryJ -end -kqC -atn -beS -uQP -kqC -ryJ -end -kqC -ryJ -end -kqC -wzE -kqC -kqC -ecd -ecd -kqC -ecd -ecd -kqC -jTJ -vMK -pFW -tOM -tOM -tOM -tOM -tOM -tOM -vDO -tUs -mxQ -vrF -hvF -vzQ -hvF -oBj -tUs -vDO -iSA -itA -ctg -vzQ -vzQ -lYO -xhQ -waN -sfW -sfW -sfW -sfW -sfW -qRW -dij -bzO -tan -tan -tan -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(182,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -qdd -kPz -bce -bce -bce -bce -bce -bce -uwk -uwk -tiF -jxT -joi -aiP -ual -eov -mSj -eMu -eov -usn -jtr -hqD -jwG -aiP -gwF -hqD -usn -szz -cKa -usn -nlN -cKa -tiF -jxT -joi -aiP -glj -sXe -wef -sXe -odQ -uwk -bQM -bQM -bQM -bQM -uwk -tgu -kOw -iax -kOw -kOw -kOw -kOw -kOw -kOw -kOw -jxE -kOw -qBe -azI -jnq -ecM -mlC -mlC -mlC -ecM -okE -qBe -pXN -qQM -abJ -atn -beS -eoj -kKj -kqC -qcl -smT -kqC -qcl -smT -kqC -sUA -beS -eoj -kqC -uJX -mFI -kqC -uJX -mFI -kqC -cHv -tOM -jch -itA -uvW -tHZ -itA -uvW -vzQ -xXt -vMK -bRC -tOM -tOM -tOM -sbU -tOM -aXv -mxQ -tUs -tUs -jXj -mxQ -vzQ -mxQ -tUs -hvF -mxQ -vzQ -itA -afS -flm -flm -wuz -cdy -hfd -fIW -htt -htt -qpM -vjq -fHb -fHb -fHb -tsc -bEk -tsc -ogf -mRM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(183,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -qdd -bQM -bce -cAW -cAW -cAW -cAW -cAW -bQM -uwk -jzm -qgK -pno -aiP -mxL -eov -dRO -pvD -eov -cKa -cKa -cKa -dFa -aiP -fLh -hEs -cKa -cKa -cKa -cKa -cKa -cKa -txO -jxT -joi -aiP -glj -sXe -wef -sXe -vJh -uwk -kPz -kPz -kPz -kPz -uwk -qBe -ldR -kOw -cuE -ccZ -tgu -usY -cuE -ccZ -tgu -kOw -kOw -qBe -wjD -kXr -mlC -kPz -kPz -kPz -mlC -qBe -eUP -paL -jOb -vRA -qcl -oBc -lOF -mkM -kqC -kqC -kqC -mCF -kqC -kqC -kqC -atn -beS -eoj -kqC -oCz -iZD -kqC -oCz -iZD -kqC -sXT -gLk -vzQ -itA -uvW -xAI -itA -uvW -vzQ -bRC -vMK -goG -iyf -goG -vMK -vMK -vMK -vMK -mxQ -mxQ -uZX -mxQ -mxQ -dVb -mxQ -uZX -mxQ -mxQ -kdF -itA -vzQ -vzQ -vzQ -arT -tOM -hfd -vfM -oEK -lEy -gfh -tUs -tUs -tUs -tUs -vzB -fiq -vzB -bQM -bmT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(184,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -qdd -rkH -rkH -cAW -cAW -cAW -cAW -cAW -bQM -uwk -aiP -noy -jnE -pNg -aCa -eov -doe -cAW -eov -sUU -iWw -cKa -ovw -aiP -aiP -cKa -sUU -iWw -cKa -sUU -iWw -cKa -tiF -riI -joi -aiP -cKa -dcv -wef -sXe -lMi -uwk -bQM -bQM -bQM -bQM -uwk -cuE -lBY -kOw -dGR -jRL -mlC -mlC -mlC -ecM -iCE -kOw -kOw -qBe -uWs -eOS -mlC -bQM -bQM -bQM -mlC -eUP -qBe -dbX -kqC -kqC -vRA -blG -kqC -kqC -kqC -beS -beS -beS -fNo -beS -beS -atn -beS -uQP -kqC -kqC -kqC -kqC -kqC -kqC -kqC -mxQ -tOM -vzQ -itA -uvW -xAI -itA -uvW -vzQ -tOM -vuV -xAI -xAI -xAI -mxQ -oXS -fUr -wcW -wjT -mxQ -vzQ -dWH -gly -vzQ -mxQ -tUs -tUs -bMu -cif -itA -xSV -bgB -bgB -qzb -nZb -hfd -ucj -bBA -bBA -rZi -eMU -fHb -fHb -fHb -tsc -bEk -tsc -ogf -fWI -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(185,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -cAW -bQM -bQM -cAW -cAW -cAW -cAW -jmG -jmG -jmG -jrA -tiF -pdk -joi -dHy -eov -ivb -cAW -eov -jzm -pno -cKa -mHq -wLV -aiP -cKa -jzm -sqV -cKa -jzm -sqV -cKa -tiF -jxT -joi -cKa -cKa -cKa -hul -cKa -cKa -jmG -vnr -hxq -hxq -vnr -vnr -usY -kOw -kOw -tgu -mlC -bQM -kPz -bQM -mlC -cuE -kOw -kOw -qBe -erk -vAQ -mlC -kPz -kPz -kPz -mlC -qBe -qBe -qBe -kqC -kqC -jva -gEX -wzE -kqC -tBn -fNo -yke -xzD -lfi -mkM -fNo -lcV -beS -eoj -kqC -rOZ -ewy -kqC -rOZ -ewy -kqC -vwi -ijd -vzQ -itA -uvW -oUa -itA -xFC -vzQ -vRP -anR -pca -pca -pca -vDO -tUs -rbK -tUs -tUs -uZX -xAI -xAI -mEA -xAI -xAI -tUs -vjl -mxQ -vzQ -itA -uvW -vzQ -vzQ -rKx -xhQ -tuX -vEi -vEi -vEi -vEi -vEi -faD -xUj -bzO -tan -tan -tan -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xDq -naf -naf -cqz -ggd -bQM -bQM -bQM -bQM -"} -(186,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -cAW -cAW -cAW -cAW -jmG -cAW -jmG -aiP -jzm -qgK -pno -biW -eov -hxJ -qgd -eov -kzh -tOp -cKa -eOK -aiP -fLh -cKa -kzh -tOp -cKa -kzh -tOp -cKa -txO -jxT -fkL -cKa -aiP -aiP -aiP -cKa -xRl -cPz -ixl -kJz -ixl -bjf -vNq -bai -kOw -kOw -qBe -mlC -kPz -kPz -kPz -mlC -azI -kOw -kOw -qBe -tgu -gjB -ecM -mlC -mlC -mlC -ecM -eLU -qBe -qBe -qBe -jis -dQV -nGp -dQV -kqC -tBn -fNo -tsM -xzD -lZn -mkM -bQK -atn -beS -eoj -kqC -qcl -smT -kqC -qcl -smT -kqC -sXT -hnh -vzQ -itA -uvW -pIg -itA -uvW -vzQ -vzQ -vzQ -wpZ -vzQ -tOM -mxQ -gga -gga -gga -gga -uZX -vzQ -sUs -lLw -xoP -vzQ -mxQ -mxQ -mxQ -vzQ -itA -uvW -vzQ -vEK -lYO -lUv -vzQ -xAI -iSA -xAI -tOM -tOM -vzQ -vzQ -bzO -bQM -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xme -dBq -pZm -mbp -bQM -bQM -bQM -bQM -bQM -"} -(187,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -eov -eov -eov -eov -aiP -wef -aiP -tBR -aiP -aiP -klA -noy -jnE -yhw -ogl -pNg -aiP -tiF -jxT -joi -lZA -noy -jnE -pNg -lZA -ixl -ixl -ghS -hHH -hHH -ixl -rmX -qBe -kOw -kOw -cuE -mlC -bQM -kPz -bQM -mlC -tgu -kOw -kOw -qBe -qBe -gbk -qBe -eUP -qBe -qBe -qBe -qBe -qBe -azI -cuE -qBe -qBe -qBe -fjg -kqC -tBn -fNo -biU -xzD -ajT -xzD -beS -atn -beS -uQP -kqC -ryJ -end -kqC -ryJ -end -kqC -kqC -pFW -hEp -itA -yiz -oyi -dSf -afS -flm -flm -flm -csT -vzQ -aXv -bzO -rzt -rzt -rzt -rzt -bzO -xAI -xAI -foU -xAI -xAI -mxQ -xCM -xCM -mzP -itA -uvW -vzQ -vzQ -rKx -xhQ -waN -sfW -sfW -sfW -sfW -sfW -qRW -dij -bzO -tan -tan -tan -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -iBP -vcf -vcf -lku -mzT -bQM -bQM -bQM -bQM -"} -(188,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -jmG -cAW -jmG -cAW -cAW -cAW -cAW -jmG -cKa -cKa -cKa -ffs -aiP -aiP -aiP -aiP -ocp -aiP -djN -jzm -sbn -fTH -qgK -lXH -aiP -tiF -jxT -joi -wef -tiF -jxT -joi -wef -ixl -ixl -ixl -ixl -ixl -gpr -nnr -kOw -kOw -kOw -dGR -ecM -mlC -mlC -mlC -ecM -iCE -kOw -kOw -qBe -qBe -qBe -qBe -qBe -qBe -qBe -qBe -qBe -qBe -nrO -usY -qBe -qBe -qBe -jLe -kqC -kqC -xGS -lZn -coj -mkM -mkM -beS -atn -beS -eoj -mkM -uJX -bIY -bIY -bIY -nRS -mkM -ntv -tOM -vzQ -itA -vzQ -vzQ -vzQ -vzQ -vzQ -vzQ -vzQ -uvW -vzQ -tOM -bzO -bQM -kPz -kPz -bQM -bzO -mxQ -mxQ -iyf -mxQ -mxQ -mxQ -jkW -tOM -cOV -itA -afS -flm -flm -wuz -cdy -hfd -fIW -htt -htt -qpM -vjq -fHb -fHb -fHb -tsc -bEk -tsc -ogf -mRM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(189,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -cKa -cKa -cKa -cKa -aiP -aiP -aiP -jfc -wef -wef -wef -wef -wef -rPS -wef -wef -jfc -tiF -jxT -joi -lZA -tiF -jxT -joi -lZA -ixl -ixl -ixl -ixl -ixl -ixl -nnr -kOw -kOw -kOw -tgu -mdV -cuE -qBe -tgu -mdV -cuE -kOw -kOw -azI -cuE -qBe -qBe -azI -cuE -qBe -qBe -qBe -qBe -hYs -uou -qBe -mrW -qBe -vJX -tHl -wfZ -lIJ -wfZ -mkM -oDX -mkM -beS -qcl -bIi -lOF -mkM -qcl -bIi -bIi -bIi -lOF -mkM -ntv -tOM -vzQ -lba -bgB -bgB -bgB -bgB -bgB -bgB -gfF -uvW -vzQ -kbt -bzO -rzt -rzt -rzt -rzt -bzO -tJR -xAI -vzQ -xAI -wcW -mxQ -tOM -tOM -vzQ -itA -qNN -vzQ -vzQ -arT -tOM -hfd -vfM -oEK -lEy -gfh -tUs -tUs -tUs -tUs -vzB -fiq -vzB -bQM -bmT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(190,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -jmG -cKa -cKa -cKa -ffs -noy -jnE -pNg -hqD -noy -vby -wef -noy -pNg -jfc -noy -pNg -rPS -tiF -jxT -joi -wef -jzm -qgK -pno -wef -ixl -ixl -ixl -ixl -ghS -ixl -lpS -aEz -kOw -kOw -kOw -kOw -kOw -kOw -kOw -kOw -kOw -kOw -kOw -tgu -usY -qBe -eUP -tgu -usY -qBe -qBe -qBe -qBe -hYs -qBe -qBe -qBe -oHi -miU -sgt -vRA -upY -vRA -vRA -mkM -xzD -beS -vRA -beS -beS -kqC -ryJ -end -kqC -kqC -ecd -kqC -kqC -pFW -vzQ -vzQ -vzQ -vzQ -vzQ -vzQ -vzQ -vzQ -itA -uvW -vzQ -aLq -vDO -wwW -wwW -wwW -tOK -vzQ -tUs -xAI -mEA -xAI -tUs -vDO -iSA -tOM -vzQ -itA -xSV -bgB -bgB -qzb -nZb -hfd -ucj -bBA -bBA -rZi -eMU -fHb -fHb -fHb -tsc -bEk -tsc -ogf -fWI -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(191,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -jmG -cKa -cKa -cKa -cKa -tiF -jxT -joi -hqD -kRT -szz -hqD -usn -szz -jfc -usn -szz -wef -tiF -jxT -joi -cKa -aiP -aiP -aiP -cKa -xRl -ixl -ixl -ixl -ixl -bjf -vNq -lRy -aEz -usY -cuE -fyL -pvj -pee -dTS -gGc -hEK -pee -hFO -qBe -qBe -fyL -gGc -gGc -tzM -azI -cuE -qBe -kHH -cCG -lBh -qBe -qBe -qBe -qBe -oPN -vRA -eSV -vRA -wfZ -lIJ -vRA -upY -upY -upY -wIl -kqC -uJX -mFI -mxQ -fCZ -nZQ -sso -mxQ -bkg -gga -tOM -xsS -xsS -tOM -tOM -tOM -vzQ -itA -uvW -vzQ -tOM -bzO -bzO -mxQ -tUs -rVM -vzQ -vzQ -bFx -aFh -xVG -hYj -vDO -iSA -tOM -vzQ -itA -uvW -tOM -tOM -rKx -xhQ -tuX -vEi -vEi -vEi -vEi -vEi -faD -xUj -bzO -tan -tan -tan -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(192,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -jmG -cKa -cKa -cKa -cKa -kpn -jxT -joi -hEs -cKa -cKa -cKa -cKa -cKa -cKa -cKa -cKa -cKa -txO -jxT -joi -jmG -uwk -uwk -uwk -jmG -vnr -ixl -ixl -ixl -ixl -ixl -vNq -vNq -dAd -ode -ode -cry -vNq -vNq -vnr -mlC -mlC -ecM -kgH -hEv -hEv -hbp -ecM -nSx -gVc -ldn -eoL -qBe -qBe -tgu -usY -qBe -qBe -ooO -faw -uPG -wjH -ria -icf -enO -dtg -mkM -upY -upY -upY -wIl -kqC -oCz -iZD -mxQ -gRW -ssO -tUs -mxQ -mxQ -iyf -mxQ -pte -bzO -qtY -qtY -qtY -vzQ -itA -uvW -vzQ -qtY -bzO -bzO -mxQ -tUs -uZX -vzQ -tUs -xAI -foU -xAI -tUs -mxQ -xCM -tOM -qNN -itA -uvW -tOM -aRk -rKx -lUv -vzQ -xAI -iSA -xAI -tOM -tOM -vzQ -vzQ -bzO -bQM -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(193,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -jmG -cKa -sUU -mne -cKa -tiF -jxT -ogJ -cKa -sUU -iWw -cKa -sUU -iWw -cKa -sUU -bom -cKa -tiF -jxT -joi -uwk -bQM -kPz -kPz -bQM -hxq -ixl -ixl -ixl -ixl -ixl -ixl -bcX -ixl -ixl -ixl -ixl -tjp -ixl -ezn -kPz -kPz -hxq -cWB -sbM -nEM -xfI -ecM -nSx -gux -eio -qBe -qBe -qBe -qBe -qBe -wKm -qBe -qBe -faw -tHl -jMZ -beS -eAS -ibG -beS -mqo -beS -beS -cmR -beS -kqC -kqC -kqC -mxQ -tUs -tUs -tUs -tUs -tUs -tUs -mxQ -bzO -bzO -vzQ -vzQ -vzQ -lYO -lba -dBi -lYO -vzQ -vzQ -vzQ -mxQ -iyf -mxQ -hvF -hvF -jXj -hvF -mxQ -mxQ -mxQ -fob -rxM -vzQ -itA -uvW -tOM -rbW -ukj -xhQ -waN -sfW -sfW -sfW -sfW -sfW -qRW -dij -bzO -tan -tan -tan -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(194,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -jmG -cKa -jzm -rWR -cKa -tiF -jxT -joi -cKa -jzm -utv -cKa -jzm -rWz -cKa -jzm -sqV -cKa -jzm -qgK -pno -uwk -bQM -kPz -kPz -bQM -hxq -ixl -ixl -ixl -ixl -ixl -ixl -ixl -ghS -ixl -ixl -ghS -ixl -ixl -vnr -hxq -hxq -vnr -oue -lgu -ixl -gHb -ecM -nSx -eqI -scF -bvv -qBe -azI -cuE -bvv -qBe -qBe -qBe -hQT -jTJ -jTJ -kqC -kqC -kqC -jTJ -jTJ -vRA -blG -jTJ -jTJ -jTJ -kaT -gqC -ffZ -tUs -fgU -sOf -noa -mxQ -mxQ -mxQ -stl -xAI -tOM -tOM -vzQ -vzQ -xAI -xAI -vzQ -vzQ -tOM -tOM -xAI -bIU -mxQ -mxQ -mxQ -aCI -djm -mxQ -pRx -tOM -wDy -lUv -vzQ -itA -afS -flm -flm -wuz -cdy -hfd -fIW -htt -htt -qpM -vjq -fHb -fHb -fHb -tsc -bEk -tsc -ogf -mRM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(195,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -jmG -cKa -kzh -tOp -cKa -tiF -jxT -joi -cKa -kzh -tOp -cKa -kzh -tOp -cKa -kzh -tOp -cKa -mjX -aiP -aiP -uwk -bQM -kPz -kPz -bQM -hxq -sbM -nEM -rVw -nEM -nEM -nEM -nEM -nEM -nEM -skC -nEM -nEM -nEM -nEM -nEM -awS -nEM -nEM -jKX -cEu -gTo -nSx -cVV -bGC -xKX -cQn -bvv -tgu -azI -cuE -bvv -qBe -qBe -uud -oAR -ntv -lTA -bIY -bIY -uFa -qIf -mkM -mkM -gJg -duF -cgW -rCt -jfR -mxQ -tUs -kZy -mxQ -mxQ -mxQ -xAI -xAI -eTr -tOM -vzQ -vzQ -tOM -vzQ -xAI -xAI -vzQ -tOM -vzQ -vzQ -tOM -tOM -xAI -twQ -mxQ -mxQ -mxQ -mxQ -uLr -tUs -brl -kyh -vzQ -itA -vzQ -vzQ -vzQ -arT -tOM -hfd -vfM -oEK -lEy -gfh -tUs -tUs -tUs -tUs -vzB -fiq -vzB -bQM -bmT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(196,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -jmG -cKa -noy -jnE -jnE -vPz -jxT -xpb -jnE -jnE -ogl -wef -jnE -jnE -jnE -jnE -pNg -aiP -noy -jnE -pNg -uwk -bQM -kPz -kPz -bQM -hxq -lgu -cWB -cWB -bju -cWB -cWB -cWB -cWB -cWB -cWB -cWB -cWB -cWB -cWB -cWB -cWB -cWB -cWB -cWB -cWB -gHb -nSx -nSx -xKX -rGf -xKX -tEJ -bvv -tgu -usY -cuE -qBe -qBe -qBe -kqC -kqC -kqC -aYT -upY -uFa -kGM -mkM -mkM -kqV -kqC -hqZ -caF -bOl -mxQ -cLu -wBX -mxQ -stl -xAI -tOM -tOM -vzQ -vzQ -tOM -tOM -tOM -vzQ -wgz -xAI -vzQ -tOM -tOM -tOM -vzQ -vzQ -tOM -tOM -xAI -wnC -mxQ -mxQ -mWY -tUs -arT -tOM -vzQ -itA -xSV -bgB -bgB -qzb -nZb -hfd -ucj -bBA -bBA -rZi -eMU -fHb -fHb -fHb -tsc -bEk -tsc -ogf -fWI -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(197,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -jmG -cKa -tiF -jxT -jxT -jxT -jxT -jxT -jxT -jxT -jxT -wef -jxT -jxT -jxT -jxT -joi -aiP -tiF -jxT -joi -uwk -bQM -kPz -kPz -bQM -hxq -lgu -cWB -oWv -jhg -jhg -jhg -jhg -jhg -jhg -kmu -cWB -oWv -jhg -jhg -jhg -jhg -jhg -jhg -kmu -cWB -gHb -cVV -nSx -nVE -xKX -prl -usY -qBe -bvv -tgu -usY -qBe -qBe -uud -mIg -ntv -lTA -bIY -bIY -jTJ -jTJ -vRA -blG -jTJ -jTJ -kqC -ssY -kqC -mxQ -tUs -mxQ -mxQ -xAI -tOM -vzQ -vzQ -iXT -tOM -tOM -dXT -ayq -chh -saV -miN -rwI -ayq -xBu -tOM -tOM -csT -vzQ -vzQ -tOM -xAI -mxQ -mxQ -uSY -tUs -qzb -rxM -ihG -itA -uvW -vzQ -vzQ -lYO -xhQ -tuX -vEi -vEi -vEi -vEi -vEi -faD -xUj -bzO -tan -tan -tan -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(198,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -jmG -cKa -hQH -qgK -qgK -qgK -qgK -qgK -qgK -qgK -qgK -ljc -qgK -qgK -qgK -qgK -pno -aiP -jzm -hfw -pno -uwk -bQM -kPz -kPz -bQM -hxq -lgu -cWB -nBL -vnr -hxq -vnr -vnr -hxq -vnr -hur -cWB -nBL -oUg -owW -owW -oUg -oUg -oUg -htZ -cWB -nBL -nSx -nSx -ott -cuE -bvv -qBe -azI -xCo -nSx -okE -qBe -qBe -qBe -kqC -kqC -kqC -beS -upY -sqC -vVx -qQb -qQb -tlF -hfT -vOe -lZh -xsv -vDO -tUs -vDO -xAI -tOM -vzQ -tOM -tOM -tOM -xoZ -ayq -dad -mxQ -mxQ -kKQ -vhk -mxQ -mxQ -pXC -ayq -eYQ -tOM -tOM -tOM -vzQ -tOM -xAI -mxQ -xCM -tOM -tNQ -lUv -vzQ -itA -uvW -vzQ -vEK -lYO -lUv -vzQ -xAI -iSA -xAI -vzQ -vzQ -vzQ -vzQ -bzO -bQM -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(199,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -jmG -cKa -cKa -cKa -cKa -sHF -dMK -aiP -dMK -aiP -jxT -jxT -jxT -aiP -dMK -eSc -eSc -eSc -cKa -cKa -cKa -jmG -bQM -kPz -kPz -bQM -hxq -lgu -cWB -gHb -hxq -hoH -bQM -bQM -bQM -hxq -lgu -owW -gHb -jrX -cWB -aCH -jIh -ssp -oUg -lgu -aXu -gHb -gzt -qKP -tgu -azI -cuE -bvv -tgu -azI -oNX -nSx -okE -qBe -uud -oAR -ntv -lTA -bIY -bIY -ntv -aFw -eiI -hDI -oYp -jCO -hAx -lZh -xsv -bzO -mxQ -mxQ -xAI -tOM -vzQ -tOM -rko -ayq -dad -mxQ -jjg -mxQ -jch -xAI -xAI -rDA -mxQ -jjg -mxQ -mtf -ayq -sGg -tOM -vzQ -tOM -xAI -mxQ -mxQ -mxQ -sBW -kyh -vzQ -itA -uvW -vzQ -mxk -mxQ -mxQ -tOM -tOM -tOM -tOM -tOM -tOM -tOM -bzO -bzO -bzO -bzO -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(200,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -jmG -jmG -cKa -cKa -cKa -ooc -jxT -jxT -jxT -jxT -aiP -jxT -jxT -jxT -aiP -jxT -jxT -bau -aiP -aiP -tBP -vNq -vnr -bQM -kPz -kPz -bQM -hxq -lgu -cWB -gHb -hxq -bQM -bQM -bQM -bQM -hxq -lgu -cWB -mcb -jrX -jrX -mts -cWB -hnQ -oUg -lgu -cWB -gHb -cWB -qKP -bvv -tgu -usY -cuE -bvv -tgu -rqS -cuE -bvv -qBe -qBe -kqC -kqC -kqC -tLn -upY -ntv -aFw -eiI -hDI -gmY -sWr -eiI -iBr -hDI -bzO -mxQ -xAI -eTr -vzQ -iXT -tOM -dQf -mxQ -jjg -mxQ -tVY -xSV -vzQ -xAI -xAI -vzQ -mfZ -fDW -mxQ -jjg -mxQ -xhQ -tOM -csT -flh -eTr -xAI -bzO -bzO -aGR -tOM -vzQ -itA -uvW -vzQ -tOM -mxQ -mxQ -mxQ -mxQ -bzO -bzO -bzO -bzO -bzO -bzO -bQM -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(201,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -jmG -jmG -cKa -cKa -cKa -cKa -jxT -cKo -cKo -kxu -bXx -bXx -cVp -bXx -sLs -cCJ -jxT -jxT -aiP -aiP -tBP -vNq -vnr -bQM -kPz -kPz -bQM -hxq -lgu -cWB -gHb -hxq -bQM -bQM -bQM -bQM -hxq -lgu -cWB -gRy -mts -jrX -dte -hga -hGT -oUg -lgu -msP -gHb -cWB -qKP -cuE -bvv -tgu -azI -xCo -nSx -iqh -azI -cuE -bvv -uud -gVf -ntv -lTA -bIY -bIY -ntv -aFw -eiI -hDI -hPU -jfT -mGe -baN -rBc -bzO -bzO -xAI -tOM -vzQ -tOM -xoZ -dad -jjg -mQz -fps -hCZ -uvW -vzQ -xAI -veC -vzQ -itA -afS -wcE -coi -jjg -mtf -eYQ -tOM -vzQ -tOM -twQ -bzO -bzO -pFW -tOM -vzQ -itA -uvW -ugS -tOM -vzQ -tOM -vzQ -tOM -bzO -bzO -bQM -bQM -bzO -bQM -bQM -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(202,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -jmG -jmG -jmG -jmG -pbD -aiP -jxT -cKo -cKo -ijE -phk -itC -phk -phk -qib -pNg -bau -jxT -aiP -aiP -tBP -vNq -vnr -bQM -kPz -kPz -bQM -hxq -lgu -cWB -gHb -hxq -bQM -bQM -bQM -bQM -hxq -fiS -lti -gHb -xkN -dWS -rFb -dWS -hiM -oUg -lgu -clQ -gHb -cWB -qKP -usY -cuE -bvv -tgu -usY -pSN -nSx -bai -usY -cuE -bvv -kqC -kqC -kqC -beS -upY -jTJ -veW -vVN -vVN -uYo -rBF -rBF -nhY -mny -bzO -vzQ -tOM -vzQ -tOM -tOM -dQf -mxQ -mxQ -fps -vzQ -vzQ -xSV -vzQ -xAI -xAI -vzQ -rOm -bMb -lWC -vcS -mxQ -mxQ -xhQ -tOM -tOM -vzQ -tOM -jzg -vzQ -tOM -mxQ -vzQ -itA -uvW -vzQ -mlh -mlh -kQS -tOM -vzQ -bzO -bzO -bzO -bzO -bzO -bzO -bzO -bzO -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(203,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -fwn -jmG -rfl -aiP -jxT -cKo -gwz -iKf -phk -syH -phk -phk -qib -joi -jxT -jxT -xYL -qxj -vNq -vNq -vNq -vNq -vNq -vNq -vNq -vNq -lgu -cWB -nBL -vnr -hxq -vnr -vnr -hxq -vnr -htZ -cWB -nBL -oUg -vTO -pAq -oUg -oUg -oUg -htZ -cWB -gHb -pHa -nSx -jZP -tgu -cuE -bvv -tgu -azI -cuE -bvv -tgu -azI -cuE -dHC -ruV -ruV -uJX -nRS -jTJ -tId -eiI -hDI -gmY -wPb -lCL -gmY -uPz -bzO -vzQ -tOM -vzQ -tOM -rko -dad -jjg -tVY -nXH -vzQ -vzQ -oJt -kgC -xAI -xAI -vjR -doQ -upM -vjR -afS -fDW -jjg -mtf -rxM -tOM -vzQ -tOM -jzg -vzQ -bkg -ivN -vzQ -itA -uvW -dzQ -uVL -uVL -sqR -lTW -tOM -xNV -rzt -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(204,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -tan -geF -jmG -seL -aiP -jxT -cKo -cKo -eVe -phk -gdT -phk -gLW -qib -pno -jxT -hVj -oUg -oUg -oUg -oUg -oUg -oUg -oUg -oUg -oUg -oUg -lgu -bah -wiK -mUU -nEM -nEM -nEM -nEM -nEM -jKX -eRe -wiK -nEM -nEM -qrC -nEM -lxh -nEM -jKX -qZJ -pEo -qnw -qKP -bvv -tgu -usY -xCo -nSx -bai -usY -cuE -bvv -tgu -usY -dHC -upY -ruV -qcl -lOF -jTJ -etI -eiI -hDI -gmY -scG -iBr -iBr -iBr -arV -vzQ -vzQ -tOM -tOM -dQf -mxQ -mxQ -ndz -bgB -xSV -duN -eVD -cHv -gOP -xAI -bMb -pAy -hTP -sRr -bgB -mfZ -mxQ -mxQ -oGL -tOM -tOM -vzQ -jzg -vzQ -tOM -lDG -vzQ -itA -uvW -vzQ -gXD -flm -yfQ -tOM -vzQ -xNV -rzt -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(205,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -kPz -cAW -jmG -uwk -jmG -jxT -dfu -itr -lse -phk -phk -phk -phk -qib -aiP -jxT -jxT -oUg -oUg -oUg -oUg -oUg -oUg -oUg -oUg -fQq -eeN -lgu -cWB -cWB -cWB -jrX -cWB -fGF -bge -cWB -cWB -cWB -aXu -cWB -lti -bge -cWB -szc -cWB -dRN -cWB -gHb -gzt -qKP -cuE -bvv -tgu -azI -xCo -nSx -bai -tqL -izZ -jZP -vao -kqC -tcF -ruV -mCF -kqC -jTJ -xqG -eiI -hDI -gmY -gmY -utg -gmY -gmY -gmY -lYO -wwz -vzQ -vzQ -jlG -mxQ -gHD -vzQ -vzQ -vzQ -tSP -cHv -hZv -wpL -rqs -bzO -vzQ -raa -vzQ -vzQ -vzQ -xQn -mxQ -hri -vzQ -vzQ -wwz -lYO -vzQ -vzQ -vzQ -vzQ -itA -uvW -vzQ -mlh -oXz -bgB -tOM -vzQ -bzO -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(206,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -uwk -jxT -jxT -jxT -sTn -oBC -jNl -vrp -mTa -jmD -byW -jxT -jxT -oUg -kSh -wPz -wPz -wPz -wPz -ofq -oUg -fQq -eeN -vqz -jhg -jhg -jhg -pQX -jhg -jhg -jhg -teF -tBZ -cWB -flK -jhg -rGP -foj -lyk -jhg -jhg -lIL -sHw -gHb -cWB -qKP -usY -cuE -bvv -tgu -usY -cuE -bvv -tgu -fVR -bvv -bvv -iBr -iBr -iBr -iBr -iBr -qdf -xqG -eiI -hzV -lZh -lZh -lZh -lZh -lZh -lZh -quD -xAI -xAI -xAI -eEY -eGm -xAI -xAI -xAI -xAI -wpL -xAI -xAI -xAI -xAI -xAI -xAI -xAI -sBn -xAI -xAI -xAI -jJO -eFm -xAI -xAI -xAI -iXT -flm -flm -flm -flm -fps -uvW -dzQ -nMn -icu -ugP -lTW -tOM -xNV -rzt -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(207,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -tan -cAW -cAW -cAW -jmG -jxT -jxT -jxT -ctO -ubQ -okF -fis -lUs -syH -byW -jxT -jxT -mPW -cpP -wMb -eeN -eeN -wMb -fnD -oUg -oUg -vLk -rod -rod -bUJ -oUg -oUg -oUg -sZp -wsA -oUg -htZ -tMR -nBL -oUg -oSq -fhR -brM -jtY -ggh -iCc -tHu -bit -tHu -bvv -tgu -usY -fBv -usY -bvv -bvv -qhQ -bvv -brG -bvv -sPx -iBr -iBr -iBr -iBr -iBr -iBr -xqG -eiI -dMa -baN -baN -baN -baN -baN -baN -gIb -xAI -xAI -xAI -miN -jYV -xAI -xAI -gOP -xAI -xAI -xAI -xAI -xAI -xAI -xAI -xAI -xAI -xAI -xAI -xAI -xAI -qzb -saV -xAI -xAI -xAI -lba -bgB -bgB -bgB -bgB -bgB -eVD -vzQ -bFQ -vkp -qKl -tOM -vzQ -xNV -rzt -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(208,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -eeI -cAW -cAW -cAW -uwk -jxT -tqp -jxT -ctO -hpz -hxM -fHK -iwT -phk -byW -spk -jxT -puE -lVd -eeN -kLG -kLG -eeN -fgX -eeN -fgX -eeN -lgu -gKy -gHb -oUg -ara -kdA -bju -cWB -xkN -lgu -cWB -gHb -dPD -fkc -syP -ipe -cgO -rsV -lgu -cWB -gRy -pHa -nSx -bai -usY -bvv -nKI -izZ -bEX -bEX -bEX -iCU -bvv -bvv -iBr -qdf -iBr -iBr -iBr -iBr -xqG -eiI -xJH -nqT -nqT -gmY -gmY -gmY -kkv -lYO -vzQ -wwz -vzQ -jlG -mxQ -ePF -vzQ -vzQ -vzQ -wmf -wmf -mxQ -bsg -xAI -ajf -qfY -dFS -vzQ -vzQ -vzQ -xQn -mxQ -saZ -vzQ -wwz -vzQ -lYO -vzQ -vzQ -tOM -vzQ -vzQ -vzQ -vzQ -mlh -oHo -bgB -tOM -vzQ -xNV -rzt -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(209,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -kPz -cAW -cAW -cAW -jmG -jxT -jxT -cKo -lse -xwY -beQ -phk -phk -qib -aiP -jxT -wef -puE -aVy -kLG -kLG -kLG -kLG -kLG -kLG -kLG -kLG -lgu -gKy -gHb -oUg -lwi -cWB -hnQ -sSH -mLA -lgu -lti -nlg -dPD -eGu -mEi -bfb -dqr -rsV -nUu -tHu -bit -tHu -azI -suS -qwQ -ttn -usY -izZ -mNw -pYA -hkV -bEX -phS -bvv -bhX -iBr -xMO -iDg -urv -avT -bHy -eiI -xJH -gmY -xyw -iZR -iBr -iBr -arV -vzQ -vzQ -tOM -tOM -dQf -mxQ -mxQ -qHt -bHh -xAI -xAI -bgG -vzQ -xAI -xAI -kkO -qpi -fps -fps -xJd -evj -mxQ -mxQ -xhQ -tOM -tOM -vzQ -jzg -vzQ -tOM -tOM -tOM -tOM -vzQ -lTW -uVL -hUj -dWp -lTW -tOM -xNV -rzt -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(210,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -emC -cAW -cAW -cAW -uwk -jxT -cKo -cKo -ijE -phk -phk -rzQ -phk -qib -pNg -wef -jxT -qrz -puE -wut -kLG -kgU -kLG -kLG -kLG -kLG -kLG -lgu -gKy -gHb -eUi -ieN -lti -cWB -kGg -cWB -lgu -cWB -gHb -dPD -uzD -wOh -vpO -bHr -rsV -lgu -cWB -gHb -wKM -tgu -tgu -usY -bvv -bvv -izZ -hef -gWq -hkV -bEX -krl -xKX -iyc -bhX -iBr -qdf -iDg -iBr -xqG -eiI -hDI -gmY -iBr -fdC -iBr -iBr -mSu -vzQ -tOM -vzQ -tOM -rdt -lvj -mxQ -gtX -vzQ -vzQ -flh -xAI -vzQ -xAI -lmY -bQm -fps -xoP -vzQ -xSV -pRx -jjg -laT -kyh -tOM -vzQ -tOM -jzg -vzQ -eWj -qbY -tOM -tOM -vzQ -uSX -vkp -flm -flm -tOM -vzQ -bzO -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(211,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -cAW -jmG -jxT -cKo -cKo -lYg -phk -phk -phk -phk -qib -joi -jxT -spk -puE -kLG -eeN -kLG -kLG -eeN -eeN -eeN -eeN -eeN -lgu -gKy -gHb -oUg -hiM -rzo -lti -cWB -ara -osV -cWB -gHb -dPD -fsE -hoj -gKy -gKy -rsV -hTI -dWU -rPF -cWB -bvv -suS -qwQ -bvv -bvv -izZ -eoa -tOc -tOc -bgd -bvv -bvv -bhX -mhR -bhX -iBr -dfA -iBr -xqG -eiI -hDI -gmY -qKq -iZR -iBr -aTL -iUR -vzQ -tOM -vzQ -tOM -tOM -dQf -mxQ -mxQ -tOM -gjr -vzQ -ahM -raa -xAI -xAI -vzQ -fps -vzQ -vzQ -qYO -mxQ -mxQ -xhQ -tOM -tOM -vzQ -tOM -jzg -vzQ -bMb -qbY -rVQ -tOM -vzQ -mPg -bgB -dxr -mlh -tOM -vzQ -aFi -rzt -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(212,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -cAW -cAW -uwk -jxT -cKo -cKo -uHE -phk -jAl -phk -phk -wFm -pno -jxT -jxT -mPW -wJO -kTR -niG -eeN -kTR -fnD -oUg -oUg -vLk -rod -rod -bUJ -oUg -oUg -oUg -cWB -uIT -oUg -iCc -tHu -mTY -oUg -qdz -oOF -lOp -skc -oUg -pQR -cWB -gHb -cWB -cWB -tgu -usY -bvv -rEC -izZ -bEX -mrG -bEX -izZ -jZP -xTe -oZx -bhX -ahm -xMO -rSU -iBr -xqG -eiI -hDI -gmY -iBr -iBr -iBr -aco -bzO -bzO -xAI -tOM -vzQ -tOM -weI -lvj -mxQ -tOM -tOM -vzQ -xAI -vzQ -xAI -xAI -vzQ -itA -xSV -qYO -muy -jjg -laT -rTr -tOM -vzQ -tOM -twQ -bzO -bzO -pFW -yfE -uBq -baE -tOM -lTW -lsO -uVL -iRG -lTW -vzQ -aFi -rzt -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(213,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bce -kPz -bce -cAW -jmG -jxT -cKo -dfu -kxu -xMi -lqV -lZW -lqV -kvp -aiP -jxT -jxT -jqt -pTU -wPz -wPz -wPz -wPz -jPK -oUg -fQq -eeN -sbM -nEM -nEM -nEM -nEM -skC -flV -nEM -aAx -jKX -cWB -wiK -nEM -odL -nEM -nEM -pUe -jSk -jKX -cWB -hZP -wlc -cWB -cWB -cWB -xqG -xqG -xqG -vpS -xqG -vpS -xqG -vpS -xqG -uEw -xqG -bpR -gnW -vmh -xqG -xqG -eiI -xJH -gmY -xyw -iZR -iBr -ume -bzO -bzO -xAI -eTr -vzQ -lba -tOM -dQf -mxQ -mxQ -mxQ -asN -xAI -wTK -xAI -xAI -vzQ -kgq -nEP -mxQ -jjg -mxQ -xhQ -tOM -dBi -vzQ -tOM -xAI -bzO -bzO -vzQ -qbY -rVQ -tOM -vzQ -tOM -flm -vkp -flm -tOM -eTr -bzO -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(214,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -fiq -cAW -cAW -uwk -jxT -jxT -jxT -jxT -jxT -jxT -jxT -jxT -jxT -jxT -jxT -jxT -oUg -oUg -oUg -oUg -oUg -oUg -oUg -oUg -fQq -eeN -lgu -gKy -gKy -gKy -gKy -gKy -gKy -ken -ujq -gKy -pIT -rVS -gKy -ujq -gKy -gKy -yiV -gKy -gKy -yiV -gKy -qgN -nEM -skC -nEM -lZh -jPI -lZh -hJS -ftq -qmh -lZh -qmh -gDi -xvx -lZh -dpw -lZh -ecI -lZh -lZh -fnM -xJH -gmY -iBr -iBr -iBr -dcy -bzO -bzO -mxQ -xAI -tOM -vzQ -tOM -rdt -fUp -lvj -mxQ -mxQ -mxQ -cWE -xAI -xAI -aoj -mxQ -jjg -mxQ -laT -fUp -kyh -tOM -vzQ -tOM -xAI -mxQ -mxQ -mxQ -vzQ -vzQ -vzQ -vzQ -tOM -vzQ -vzQ -tOM -vzQ -lNR -vzQ -xAV -bzO -bzO -bzO -bzO -bzO -bzO -bzO -bzO -bzO -bzO -bzO -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(215,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -fiq -fiq -tan -jmG -jxT -jxT -jxT -jxT -jxT -aiP -aiP -aiP -aiP -jxT -jxT -jxT -oUg -oUg -oUg -oUg -oUg -oUg -oUg -oUg -oUg -oUg -vqz -jhg -jhg -jhg -jhg -jhg -hJz -jhg -eSe -jhg -jhg -jhg -jhg -eSe -jhg -uYs -jhg -jhg -jhg -jhg -jhg -jhg -mAX -mAX -jhg -eam -baN -baN -mmY -baN -mmY -rDQ -mmY -baN -jrr -baN -baN -baN -baN -baN -baN -baN -sTL -gmY -xyw -iZR -iBr -xJi -vDO -tUs -mxQ -xAI -tOM -vzQ -tOM -tOM -tOM -weI -fUp -lvj -mxQ -mxQ -rqh -iAr -mxQ -mxQ -laT -fUp -rTr -tOM -tOM -tOM -vzQ -eTr -xAI -mxQ -tUs -vDO -iSA -vzQ -vzQ -tOM -eTr -gLk -gLk -gLk -gLk -tOM -tOM -rff -bzO -bzO -bzO -bzO -bQM -bzO -bQM -bQM -bQM -bQM -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(216,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -tan -tan -tan -tan -tan -tan -jmG -jmG -uwk -jmG -uwk -jmG -wef -kmL -wef -kmL -jmG -jmG -jmG -vnr -vnr -vnr -vnr -vnr -vnr -vnr -vnr -vnr -vnr -vnr -vnr -vnr -vnr -hxq -hxq -hxq -hxq -hxq -vnr -abR -rod -rod -vNq -lgu -ixl -cCh -qby -ixl -gtP -ixl -ixl -ixl -ixl -gHb -oHt -hsL -oHt -xss -xqG -nAC -xqG -vpS -xqG -vJw -xqG -xqG -xqG -xqG -xqG -vEH -aZv -aZv -xqG -iBr -iBr -iBr -iBr -mxQ -tUs -mxQ -mxQ -xAI -tOM -vzQ -vzQ -lba -tOM -tOM -rdt -fUp -rQt -eFm -eEY -rJg -fUp -kyh -tOM -tOM -dBi -vzQ -vzQ -tOM -xAI -mxQ -mxQ -tUs -bzO -tOM -tOM -vzQ -tOM -mxQ -mLP -uap -mmy -jiV -mxQ -iyf -bzO -bzO -hMK -bQM -bQM -bQM -bzO -bQM -bQM -bQM -bQM -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(217,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -fiq -cAW -tan -tan -tan -pWm -efJ -lds -lRT -jHv -cpt -cpt -jwf -lRT -cAW -vnr -cAW -cAW -vnr -vnr -vnr -vnr -vnr -vnr -vnr -vnr -vnr -bQM -bQM -bQM -kPz -bQM -bQM -bQM -kPz -xDw -kLP -ymh -uYI -dOX -fsh -sLv -kpP -hGC -sLv -bxG -iOk -bxG -vlU -xSz -vUK -lRT -dzl -dzl -dzl -dzl -dzl -dzl -dzl -nie -rSU -iBr -rhG -ere -iWZ -mJa -xqG -mJa -ere -kGx -mJa -ksY -iBr -bnJ -mxQ -cLu -kVk -mxQ -stl -xAI -tOM -tOM -vzQ -vzQ -tOM -tOM -tOM -vzQ -xAI -xAI -vzQ -tOM -tOM -tOM -vzQ -vzQ -tOM -tOM -xAI -fsS -mxQ -cZr -tUs -bzO -tOM -tOM -vEK -tOM -jjg -iXT -wQr -flm -flm -flm -flm -flm -bvD -rzt -bQM -bQM -bQM -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(218,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -fiq -cAW -cAW -pcu -nfF -wUh -ruD -jzJ -taY -pSK -nGZ -nGZ -vUK -lRT -cAW -vnr -cAW -cAW -vnr -vnr -vnr -vnr -vnr -vnr -vnr -kPz -bQM -bQM -bQM -xDw -xDw -xDw -xDw -xDw -xDw -lRT -vRx -bxG -kZg -sIJ -dZr -kqF -pSd -dWl -bmc -dWl -ljq -vvB -dWl -uYI -vUK -xDw -cAW -bQM -bTo -pcu -sVv -bQM -rBF -dzl -urv -xMO -vHa -bhM -nSv -tJk -xqG -vHa -oHf -pyd -vdR -iBr -fRz -mxQ -mxQ -tUs -cFX -mxQ -mxQ -mxQ -gga -xAI -eTr -tOM -vzQ -vzQ -tOM -vzQ -xAI -xAI -vzQ -tOM -vzQ -vzQ -tOM -eTr -xAI -xAI -mxQ -iyf -mxQ -eoW -tUs -bzO -bzO -tOM -vEK -tOM -jjg -itA -vzQ -vzQ -dvh -jBR -vzQ -vzQ -lFO -rzt -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(219,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -fiq -fiq -fiq -pcu -fiq -wUh -wUh -wUh -taY -dZr -nGZ -nGZ -vUK -lRT -cAW -vnr -cAW -cAW -vnr -bQM -bQM -vnr -bQM -bQM -bQM -kPz -bQM -bQM -xDw -xDw -sda -qeN -wSD -bHP -vlU -fsi -dZr -hED -vUK -dOX -kvr -cpN -kLP -pSd -rUv -dWl -pSd -ymh -tiK -vUK -huQ -xDw -dhi -fQV -fyC -qOk -sHO -fQV -erT -dzl -mQV -iBr -mJa -bGg -syF -mJa -vmh -mJa -bGg -syF -mJa -iBr -iBr -ffZ -tUs -tlQ -tUs -tUs -vFn -mxQ -iyf -mxQ -stl -xAI -tOM -tOM -vzQ -vzQ -xAI -xAI -vzQ -vzQ -tOM -tOM -xAI -xAI -mxQ -mxQ -mxQ -tUs -tUs -hpW -tUs -tUs -bzO -tOM -vEK -tOM -jjg -lba -bgB -bgB -bgB -bgB -bgB -bgB -aSZ -rzt -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(220,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -bce -bce -bce -cAW -cAW -hob -pcu -fiq -nfF -nfF -lRT -dZr -sDH -sDH -vUK -lRT -cAW -bce -cAW -cAW -bce -bQM -bQM -kPz -cAW -bQM -bQM -kPz -bQM -xDw -xDw -qeN -wSD -nGZ -nGZ -nGZ -nGZ -fsi -dZr -bxG -vUK -dOX -rJy -hxZ -cPH -kLP -dWl -dWl -dWl -flD -anF -vUK -xJK -lRT -ajx -xeG -xeG -hkh -xeG -xeG -iWq -dzl -iBr -iBr -xqG -xqG -xqG -xqG -xqG -xqG -xqG -xqG -xqG -gmY -xJi -vDO -tUs -tUs -tUs -tUs -tDE -tUs -tUs -mxQ -mxQ -bzO -vzQ -vzQ -vzQ -lYO -iXT -csT -lYO -vzQ -vzQ -xQn -bzO -mxQ -mxQ -tUs -tUs -tUs -tUs -tUs -tUs -tUs -vDO -iSA -vEK -tOM -mxQ -vuP -nLr -ron -mxQ -syV -iyf -bzO -bzO -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(221,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -fiq -cAW -pcu -atp -cAW -lRT -vRx -hjW -hjW -eMA -lRT -cAW -bce -cAW -cAW -bce -bQM -bQM -kPz -cAW -cAW -bQM -kPz -bQM -xDw -ssC -vlU -nGZ -nGZ -wSD -nGZ -kNk -nmn -mlc -vVa -cNg -dOX -hBB -wqj -dZr -eVZ -sDH -sDH -gwS -cNg -jDT -vUK -pJS -xDw -ajx -xeG -xeG -pcu -xeG -xeG -iWq -dzl -iBr -iBr -mJa -ere -kGx -mJa -xqG -mJa -ere -kGx -mJa -gmY -gmY -mxQ -mxQ -mxQ -mxQ -mxQ -mxQ -mxQ -iyf -mxQ -xRo -bzO -bzO -bzO -myV -vzQ -itA -uvW -vzQ -myV -bzO -bzO -bzO -mxQ -mxQ -iyf -mxQ -bzO -bzO -cZr -eoW -tUs -bzO -tOM -vEK -tOM -mxQ -tcI -wUH -iaM -bzO -cEX -ycD -mxW -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(222,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -pcu -pcu -rxr -pcu -pcu -fiq -cAW -lRT -dZr -dWl -dWl -vUK -lRT -cAW -bce -cAW -cAW -lRT -xDw -xDw -xDw -xDw -lRT -bQM -kPz -bQM -xDw -nGZ -nGZ -nGZ -vlU -xDw -xDw -xDw -lRT -hir -hir -hir -dOX -xqJ -vIo -gfq -sDH -gwS -sDH -rWI -sDH -cNg -vUK -nRt -xDw -ajx -xeG -xeG -hkh -xeG -xeG -iWq -dzl -ksY -iBr -vHa -tWR -cgV -vdR -xqG -vHa -bhM -vHC -vdR -gmY -gmY -xAI -lYO -qNN -rDA -vzQ -rDA -vzQ -wwW -tOM -tOM -rzt -bQM -rzt -tOM -vzQ -itA -uvW -vzQ -aXv -mxQ -cZr -eoW -tUs -tUs -tUs -bzO -bQM -bzO -bzO -bzO -bzO -bzO -tOM -vEK -tOM -mxQ -nnI -kOm -gAG -bzO -uJn -gPB -mxW -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(223,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -pcu -cAW -cAW -xDw -dZr -sDH -sDH -vUK -lRT -lRT -lRT -cAW -cAW -lRT -hBo -hBo -hBo -hBo -lRT -bQM -kPz -bQM -xDw -nGZ -ipz -nGZ -xDw -xDw -bQM -bQM -xDw -dst -tfO -kAM -bxG -dZr -ilN -sDH -sDH -sDH -hVw -sDH -sDH -sDH -cNg -tMh -xDw -fdV -jlH -tWI -llQ -eOF -jlH -bUB -rBF -lwn -iBr -mJa -bGg -syF -mJa -xqG -mJa -bGg -syF -mJa -gmY -gmY -xAI -flm -flm -flm -flm -flm -csT -vzQ -tOM -tOM -rzt -kPz -rzt -tOM -vzQ -itA -uvW -vzQ -aLq -vDO -tUs -tUs -rJZ -uvc -tUs -bzO -bQM -bQM -kPz -bQM -bQM -bzO -tOM -gga -lKI -mxQ -uos -qVp -idh -bzO -rzt -rzt -rzt -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(224,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -fiq -cAW -cAW -pcu -cAW -cAW -xDw -dZr -hjW -hjW -vUK -nGZ -gsX -lRT -lRT -lRT -lRT -rFw -nQF -rFw -nQF -lRT -lRT -lRT -lRT -xDw -nGZ -nGZ -nGZ -xDw -bQM -bQM -bQM -lRT -ltO -hva -pJu -bxG -dZr -bxG -bqo -wQQ -bxG -bxG -bxG -cwH -dmQ -nGZ -olS -xDw -cAW -bQM -bTo -pcu -sVv -bQM -bQM -rBF -iBr -iBr -iBr -iBr -iBr -xqG -xqG -xqG -iBr -gmY -iBr -gmY -gmY -xAI -bgB -bgB -bgB -bgB -gfF -uvW -vzQ -tOM -tOM -rzt -bQM -rzt -tOM -vzQ -itA -uvW -vzQ -tOM -mxQ -bzO -bzO -bzO -tUs -bzO -bzO -bQM -bQM -kPz -bQM -bQM -bzO -bzO -iyf -bzO -bzO -bzO -rzt -bzO -bzO -bQM -bQM -bQM -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(225,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -fiq -cAW -cAW -cAW -cAW -cAW -xDw -dZr -dWl -dWl -cbT -uYI -nGZ -nGZ -nGZ -fNN -gsX -nGZ -nGZ -nGZ -nGZ -aEj -aEj -iFj -aEj -fsi -fsi -fsi -cQA -xDw -bQM -bQM -bQM -xDw -dBv -apc -wEh -bxG -ijN -sDH -sDH -sDH -sDH -sDH -sDH -sDH -sDH -fSI -cNg -lRT -xDw -xDw -xDw -xDw -lRT -bQM -omh -lRT -iRa -iRa -iRa -iRa -dOX -qqU -fsi -fsi -fjd -gmY -rVP -gmY -wPE -xAI -lYO -vzQ -aoj -vzQ -itA -uvW -vzQ -tOM -eTr -bzO -rzt -bzO -pFW -vzQ -itA -uvW -qNN -tOM -uMn -rzt -kPz -rzt -tUs -rzt -kPz -kPz -kPz -kPz -kPz -kPz -kPz -bzO -tUs -bzO -bQM -bQM -bQM -kPz -bQM -bQM -bQM -bQM -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(226,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -xDw -dZr -vOD -nGZ -nGZ -kLP -uYI -nGZ -kLP -dWl -uYI -nGZ -kLP -dWl -uYI -nGZ -kLP -alO -uYI -dZr -nGZ -nGZ -nGZ -lRT -sJN -lRT -lRT -lRT -hir -hir -hir -dOX -iIl -cEb -cEb -cEb -cEb -cEb -cEb -vBZ -dOX -sIJ -dOX -lRT -kyW -dNh -dNh -dNh -xDw -bQM -xAl -xDw -oAh -oAh -oAh -oAh -oAh -oAh -oAh -oAh -fjd -gmY -dIq -gmY -rBF -rzt -rzt -rzt -bzO -vzQ -itA -uvW -vzQ -qNN -vzQ -vzQ -vzQ -vzQ -flh -vzQ -itA -uvW -vzQ -bkg -iBs -rzt -bQM -rzt -tUs -rzt -bQM -bQM -bQM -kPz -bQM -bQM -kPz -bzO -tUs -bzO -kPz -kPz -kPz -kPz -bQM -bQM -bQM -bQM -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(227,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -lRT -xSK -rFg -lPA -nGZ -dZr -vUK -fsi -dZr -fsi -vUK -fsi -dZr -fsi -vUK -fsi -dZr -fsi -vUK -dZr -nGZ -nGZ -nGZ -nGZ -jiq -nGZ -vzp -nGZ -nGZ -vSW -nGZ -hQR -nGZ -nGZ -nGZ -dZr -vUK -nGZ -nGZ -nGZ -rnn -nGZ -mrD -szP -edY -xeO -dNh -dNh -xDw -bQM -bQM -xDw -oAh -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -oAh -lRT -rBF -rBF -dzl -rBF -bQM -bQM -bQM -bzO -vzQ -itA -afS -flm -flm -flm -flm -flm -flm -flm -flm -fps -uvW -vzQ -eTr -axL -rzt -bQM -rzt -qpB -rzt -bQM -bQM -bQM -kPz -bQM -bQM -kPz -bzO -tUs -bzO -bQM -bQM -bQM -kPz -kPz -kPz -kPz -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(228,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -xDw -xDw -gfq -rFg -nGZ -gfq -cNg -nGZ -gfq -sDH -cNg -nGZ -gfq -sDH -cNg -nGZ -gfq -sDH -cNg -dZr -nGZ -nGZ -aHj -nGZ -hjW -hjW -nGZ -wnq -hjW -nGZ -hjW -hQR -vlU -nGZ -nGZ -dZr -vUK -nGZ -hjW -hjW -vlU -hjW -nGZ -kLP -lWS -dWl -xeO -smv -xDw -bQM -bQM -xDw -oAh -oAh -oAh -oAh -oAh -oAh -oAh -oAh -xDw -kPz -kPz -kPz -kPz -kPz -kPz -kPz -bzO -qgE -itA -xSV -bgB -bgB -bgB -bgB -bgB -bgB -bgB -bgB -bgB -dBi -vzQ -tOM -lfR -rzt -kPz -rzt -tUs -rzt -kPz -kPz -kPz -kPz -kPz -kPz -kPz -bzO -tUs -bzO -bQM -bQM -bQM -kPz -bQM -bQM -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(229,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -xDw -xDw -gfq -sDH -tsX -nGZ -nGZ -nGZ -nGZ -rJW -ruB -ruB -ruB -hhF -ruB -ruB -slz -ruB -dZr -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -mSP -nGZ -nGZ -dZr -vUK -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -dZr -nGZ -bxG -hlA -nGZ -lRT -xDw -xDw -lRT -qqU -fsi -fsi -fsi -lRT -fjd -lRT -xDw -lRT -kPz -bQM -bQM -bQM -bQM -bQM -kPz -bzO -vzQ -itA -uvW -vzQ -vzQ -vzQ -vzQ -vzQ -vzQ -vzQ -vzQ -vzQ -vzQ -vzQ -tOM -mxQ -bzO -bzO -bzO -tUs -bzO -rzt -rzt -rzt -rzt -rzt -rzt -rzt -bzO -tUs -bzO -bzO -bzO -bzO -bzO -bzO -bzO -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(230,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -xDw -xDw -xDw -xDw -xDw -xDw -lRT -lRT -lRT -taY -taY -taY -taY -lRT -lRT -lRT -lRT -uUg -dWl -dWl -dWl -dWl -dWl -dWl -dWl -dWl -dWl -dWl -dWl -dWl -dWl -dWl -dWl -dWl -dWl -dWl -dWl -dWl -dWl -dWl -dWl -dWl -uYI -bxG -vUK -xeO -fcF -oAh -oAh -oAh -oAh -nGZ -nGZ -nGZ -lRT -xeO -lRT -bQM -bQM -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bzO -vzQ -itA -uvW -vzQ -tOM -tOM -aAk -tOM -tOM -tOM -tOM -tOM -tOM -tOM -aLq -vDO -tUs -tUs -tUs -tUs -tUs -tlQ -tUs -tUs -tUs -tlQ -tUs -tUs -tUs -qON -tUs -rzt -bQM -bQM -bQM -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(231,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -vzB -gws -vzB -dZr -nGZ -fsi -lzt -nZp -qFj -uew -lzt -nZp -qFj -uew -lzt -nZp -qFj -uew -lzt -nZp -qFj -uew -lzt -nZp -qFj -uew -lzt -fsi -vUK -sDH -cNg -nGZ -gtg -nGZ -nGZ -nGZ -nGZ -nGZ -vlU -nGZ -lRT -xeO -lRT -kPz -kPz -kPz -kPz -kPz -kPz -kPz -kPz -kPz -bzO -vzQ -itA -uvW -wTK -tOM -tOM -tOM -tOM -eTr -tOM -tOM -tOM -vEK -vEK -fTs -mxQ -bzO -rzt -rzt -rzt -bzO -rzt -rzt -rzt -rzt -rzt -rzt -rzt -bzO -tUs -bzO -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(232,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -vzB -gws -vzB -dZr -nGZ -lmz -iOa -cCx -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -cCx -mUA -xeO -xeO -xeO -xeO -xeO -xeO -xeO -cCx -iOa -rMO -vUK -nGZ -nGZ -nGZ -oAh -oAh -oAh -oAh -oAh -oAh -oAh -oAh -lRT -xeO -lRT -bQM -bQM -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bzO -qgE -itA -uvW -vzQ -xAI -xAI -xAI -xAI -qwj -xAI -xAI -bzO -rzt -rzt -rzt -bzO -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bzO -rzt -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(233,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -cAW -cAW -cAW -bQM -bQM -dPZ -ogf -ogf -ogf -ogf -tsc -bEk -tsc -plH -pYD -ffQ -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -cfC -vUK -nGZ -ieA -hQh -hQh -hQh -hQh -hQh -hQh -bxG -bxG -lRT -lRT -fjd -lRT -lRT -bQM -kPz -bQM -bQM -bQM -bQM -cAW -bzO -bzO -ofA -axx -axx -lbK -bzO -bzO -bzO -bzO -bzO -bzO -bzO -bzO -bQM -bQM -kPz -bQM -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(234,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bmT -bQM -bQM -bQM -bQM -vzB -gws -vzB -dZr -czf -oPk -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -jvo -vUK -hjW -ieA -xeO -bym -uKx -uKx -xew -vem -sOI -sOI -paI -tsc -paI -tsc -bEk -ogf -bEk -ogf -ogf -ogf -ogf -ogf -tsc -kSD -hHA -tMQ -tMQ -mou -cUU -mvF -kkU -kkU -kkU -xDq -naf -naf -cqz -ggd -ogf -mRM -bce -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(235,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bmT -bQM -bQM -bQM -bQM -vzB -gws -vzB -dZr -czf -eBw -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -qmV -vUK -hjW -ieA -xeO -lpl -jVE -vzn -wRP -xeO -hjW -hjW -xeO -vzB -xeO -vzB -kPz -bQM -kPz -bQM -bQM -bQM -bQM -bQM -vzB -ojK -qQl -qQl -rGt -qQl -ojK -vzB -cAW -cAW -bce -xme -ygw -kEy -sDL -bQM -bQM -bmT -bce -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(236,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bmT -bQM -bQM -bQM -bQM -vzB -gws -vzB -dZr -czf -lmz -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -mUA -rMO -vUK -hjW -ieA -xeO -fSz -lIv -lIv -xFP -sov -sOI -sOI -paI -tsc -paI -tsc -bEk -ogf -bEk -ogf -ogf -ogf -ogf -ogf -tsc -vmt -tMQ -tMQ -tMQ -tMQ -vmt -mvF -kkU -kkU -kkU -iBP -vcf -vcf -lku -mzT -ogf -fWI -bce -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bzO -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(237,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bmT -bQM -bQM -bQM -bQM -vzB -gws -vzB -dZr -czf -ffQ -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -dYp -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -cfC -vUK -nGZ -ieA -xeO -xeO -xeO -xeO -xeO -xeO -hjW -hjW -lRT -tan -fjd -lRT -lRT -bQM -kPz -bQM -bQM -bQM -cAW -scM -scM -scM -qQl -qQl -qQl -ucS -scM -scM -scM -cAW -cAW -bQM -cAW -cAW -cAW -bQM -kPz -kPz -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(238,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bmT -bQM -bQM -bQM -bQM -vzB -gws -vzB -dZr -czf -oPk -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -jvo -vUK -hjW -ieA -xeO -bym -uKx -uKx -xew -vem -sOI -sOI -paI -tsc -paI -tsc -bEk -ogf -xDq -naf -naf -cqz -cQv -ogf -tsc -vmt -tMQ -tMQ -tMQ -tMQ -vmt -mvF -kkU -kkU -kkU -ogf -kkU -ogf -ogf -ogf -ogf -mRM -cAW -bce -bce -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bzO -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(239,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -bQM -bQM -bQM -bmT -bQM -bQM -bQM -bQM -vzB -gws -vzB -dZr -czf -eBw -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -qmV -vUK -hjW -ieA -xeO -lpl -jVE -vzn -wRP -xeO -hjW -hjW -xeO -vzB -xeO -vzB -kPz -bQM -xme -ygw -kEy -sDL -bQM -bQM -vzB -pXH -qQl -rGt -qQl -qQl -ojK -vzB -cAW -cAW -bce -bQM -cAW -bQM -bQM -bQM -bQM -bmT -cAW -cAW -bce -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(240,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -bQM -bQM -bQM -bmT -bQM -bQM -bQM -bQM -vzB -gws -vzB -dZr -czf -lmz -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -dsf -vUK -hjW -ieA -xeO -fSz -lIv -lIv -xFP -sov -sOI -sOI -paI -tsc -paI -tsc -bEk -ogf -iBP -vcf -vcf -lku -vev -ogf -tsc -vmt -tMQ -tMQ -tMQ -tMQ -vmt -mvF -kkU -kkU -kkU -ogf -kkU -ogf -ogf -ogf -ogf -fWI -cAW -cAW -bce -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(241,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -bQM -bQM -bQM -qmv -ogf -ogf -ogf -ogf -tsc -bEk -tsc -plH -pqY -ffQ -doA -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -gOn -vUK -nGZ -ieA -giX -giX -giX -giX -giX -giX -bxG -bxG -scM -scM -xkv -scM -scM -bQM -kPz -bQM -bQM -scM -scM -scM -scM -scM -pFi -qQl -qQl -xte -scM -scM -scM -scM -scM -cAW -cAW -cAW -cAW -bQM -bQM -bQM -kPz -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(242,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -vzB -gws -vzB -dZr -nGZ -oPk -iOa -cCx -xeO -xeO -xeO -xeO -xeO -xeO -xeO -xeO -cCx -xeO -xeO -mUA -xeO -xeO -xeO -xeO -xeO -cCx -iOa -jvo -vUK -nGZ -nGZ -fBD -rFw -joU -rFw -pCG -nGZ -nGZ -nGZ -lnK -kWf -rlA -kWf -scM -xdE -xdE -xdE -xdE -scM -xoV -rlA -rbY -lnK -uFs -hqb -hqb -nuX -lnK -vJL -iSI -qKx -scM -scM -cAW -cAW -cAW -bQM -cAW -bQM -bQM -bQM -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(243,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -vzB -gws -vzB -dZr -nGZ -fsi -aVr -pGR -cBl -qrw -aVr -pGR -cBl -qrw -aVr -pGR -cBl -qrw -aVr -pGR -cBl -qrw -aVr -pGR -cBl -qrw -aVr -fsi -vUK -dWl -uYI -nGZ -nGZ -kdR -hjW -nGZ -hjW -hjW -nGZ -eVj -wdj -szS -qQl -kmZ -nHD -nHD -nHD -sAg -nHD -ssb -wdj -szS -imy -ssb -qQl -qQl -ssb -kmZ -epY -hrl -jBv -kmZ -xdE -cAW -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(244,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -lRT -lRT -lRT -xSK -sDH -sDH -sDH -sDH -sDH -sDH -sDH -sDH -sDH -sDH -sDH -sDH -sDH -aho -sDH -sDH -sDH -sDH -sDH -sDH -sDH -sDH -sDH -sDH -cNg -bxG -vUK -dWl -dWl -dWl -dWl -dWl -dWl -dWl -dWl -rNU -qPW -wdj -szS -ssb -wdj -wdj -qgL -qgL -qgL -wdj -szS -cKN -kmZ -qQl -wdj -yll -qQl -kmZ -wdj -qgL -adw -ssb -xdE -bce -bce -cAW -bQM -bce -kPz -bQM -bQM -kPz -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(245,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -lRT -lRT -lRT -jiq -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -dZr -bxG -bxG -vUK -sDH -sDH -sDH -sDH -sDH -sDH -sDH -sDH -kqG -qPW -oyX -bzH -ssb -oyX -oyX -ocz -ocz -ocz -oyX -bzH -cKN -kmZ -qQl -oyX -bzH -qQl -kmZ -oyX -ocz -bzH -ssb -xdE -cAW -bce -bce -bQM -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(246,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -lRT -nGZ -nGZ -hjW -hjW -nGZ -oyk -wzK -wbL -rSN -mGN -prG -cpv -sjd -cEb -nFJ -cEb -cEb -hjC -iUO -iUO -iUO -iUO -iUO -wzT -gfq -sDH -sDH -cNg -nGZ -nGZ -hjW -hjW -nGZ -hjW -hjW -nGZ -fWs -oyX -bzH -qQl -kmZ -kWp -kWp -kWp -kWp -kWp -sZt -oyX -bzH -kmZ -ssb -qQl -qQl -ssb -kmZ -epY -hrl -jBv -kmZ -xdE -cAW -cAW -bce -kPz -kPz -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(247,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -lRT -nGZ -nGZ -hjW -hjW -nGZ -vwx -xeO -xeO -xeO -mUA -xeO -xeO -mUA -xeO -xeO -xeO -xeO -mUA -xeO -xeO -xfb -yat -xeO -eXY -nGZ -nGZ -rJW -nGZ -nGZ -rJW -nGZ -nGZ -rJW -nGZ -nGZ -tpw -lnK -nUE -xiK -slZ -scM -xdE -xdE -xdE -xdE -scM -scM -kWf -kWf -kmZ -kmZ -kmZ -kmZ -kmZ -lnK -vJL -ssb -qKx -scM -scM -bce -bce -bce -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(248,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -lRT -lRT -ntZ -nGZ -nGZ -nGZ -vwx -bym -uKx -uKx -rcl -rcl -paI -paI -paI -dRx -xeO -sTd -xeO -mUA -xeO -cAU -uyp -xeO -vUf -nGZ -lRT -lRT -atl -aZD -lRT -atl -aZD -lRT -atl -aZD -lRT -scM -scM -scM -scM -scM -bQM -bTo -pcu -iWq -bQM -scM -aOC -dKB -vRX -kWp -kWp -kWp -tRw -scM -scM -scM -scM -scM -bQM -cAW -bce -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(249,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -lRT -lRT -lRT -lRT -hTo -vwx -lpl -jVE -vzn -laJ -xeO -xeO -mUA -xeO -fxa -bHv -ylu -xeO -xeO -xeO -mQB -aTE -xeO -aRv -nGZ -lRT -lRT -xDw -xDw -lRT -xDw -xDw -lRT -xDw -xDw -lRT -bQM -bQM -bQM -bQM -bQM -bQM -bTo -pcu -iWq -bQM -scM -uSm -pNl -scM -xdE -xdE -xdE -xdE -scM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(250,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -xDw -oEN -vwx -fSz -lIv -lIv -xFP -sov -paI -paI -paI -eeH -dFM -sov -xeO -xeO -xeO -fCW -myf -xeO -tOP -nGZ -xDw -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bTo -pcu -iWq -bQM -scM -xdE -xdE -scM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -cAW -cAW -cAW -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(251,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -lRT -lRT -piw -tFA -tFA -tFA -tFA -tFA -uiV -tFA -tFA -tFA -tFA -tFA -tFA -jmr -tFA -tFA -tFA -tFA -nnG -lRT -lRT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -swg -fQV -fQV -fyC -qOk -mKS -fyC -qOk -mKS -fQV -fQV -erT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(252,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -lRT -lRT -xDw -xDw -xDw -xDw -lRT -lRT -xDw -xDw -xDw -xDw -xDw -lRT -lRT -xDw -xDw -xDw -xDw -lRT -lRT -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bTo -xeG -xeG -xeG -hkh -xeG -xeG -hkh -xeG -xeG -xeG -iWq -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(253,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bTo -xeG -xeG -xeG -pcu -xeG -xeG -pcu -xeG -xeG -xeG -iWq -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(254,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bTo -xeG -xeG -xeG -hkh -xeG -xeG -hkh -xeG -xeG -xeG -iWq -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} -(255,1,1) = {" -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -aKA -jlH -jlH -tWI -llQ -jKI -tWI -llQ -jKI -jlH -jlH -bUB -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -bQM -"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/.gitkeep b/maps/map_files/FOP_v3_Sciannex/sprinkles/.gitkeep deleted file mode 100644 index 8b137891791f..000000000000 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/.gitkeep +++ /dev/null @@ -1 +0,0 @@ - diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/10.podholder.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/10.podholder.dmm deleted file mode 100644 index 916fe313fb33..000000000000 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/10.podholder.dmm +++ /dev/null @@ -1,175 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1; - name = "\improper ambulance pod hatch" - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"b" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy25" - }, -/area/template_noop) -"e" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy27" - }, -/area/template_noop) -"g" = ( -/obj/structure/blocker/invisible_wall, -/turf/closed/shuttle/ert{ - icon_state = "rightengine_1"; - opacity = 0 - }, -/area/template_noop) -"h" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_1" - }, -/area/template_noop) -"l" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/filtration/console{ - pixel_y = 22; - can_block_movement = 0 - }, -/obj/item/trash/used_stasis_bag, -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/plating/prison, -/area/template_noop) -"n" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer{ - icon_state = "security_det"; - name = "Shuttle control deck"; - pixel_y = 6 - }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/item/ashtray/plastic{ - pixel_x = 8; - pixel_y = -7 - }, -/obj/item/clothing/mask/cigarette/cigar{ - desc = "Manufactured in New Space Cuba, a product of Castro LTD."; - name = "comically large cigar"; - pixel_x = 14; - pixel_y = 1 - }, -/obj/item/tool/weldingtool{ - pixel_x = -12; - pixel_y = 6 - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"o" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8; - pixel_x = 7 - }, -/turf/closed/shuttle/ert{ - icon_state = "wy4" - }, -/area/template_noop) -"w" = ( -/obj/item/trash/cigbutt/ucigbutt, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/structure/barricade/metal/wired, -/turf/open/floor/plating/prison, -/area/template_noop) -"y" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy_rightengine" - }, -/area/template_noop) -"F" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy_leftengine" - }, -/area/template_noop) -"H" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy2" - }, -/area/template_noop) -"K" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull, -/area/template_noop) -"P" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy20" - }, -/area/template_noop) -"T" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer_hull, -/area/template_noop) -"V" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/prison, -/area/template_noop) -"Z" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4; - pixel_x = -7 - }, -/turf/closed/shuttle/ert{ - icon_state = "wy5" - }, -/area/template_noop) - -(1,1,1) = {" -P -o -o -F -h -"} -(2,1,1) = {" -e -n -V -H -K -"} -(3,1,1) = {" -e -l -w -a -T -"} -(4,1,1) = {" -b -Z -Z -y -g -"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm deleted file mode 100644 index 391adb456400..000000000000 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm +++ /dev/null @@ -1,977 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aE" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/template_noop) -"aN" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan20" - }, -/area/template_noop) -"aW" = ( -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"bh" = ( -/turf/closed/wall/strata_ice/jungle{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - name = "synthetic vegetation" - }, -/area/template_noop) -"bw" = ( -/obj/structure/machinery/filtration/console{ - pixel_y = 22 - }, -/turf/open/floor/almayer, -/area/template_noop) -"bC" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/almayer/plate, -/area/template_noop) -"eF" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/template_noop) -"fE" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"fI" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_y = 8; - pixel_x = -9 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_y = -3; - pixel_x = -9 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_y = 8; - pixel_x = 8 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_y = -3; - pixel_x = 7 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_y = 7; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/template_noop) -"fN" = ( -/obj/structure/largecrate/random/barrel{ - pixel_x = -1; - pixel_y = 17 - }, -/obj/structure/largecrate/random/barrel{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/structure/largecrate/random/barrel{ - pixel_x = -18; - pixel_y = -1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/template_noop) -"ga" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/template_noop) -"gi" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating/prison, -/area/template_noop) -"hP" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"iT" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/obj/item/tool/pen/blue{ - pixel_x = -15; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/template_noop) -"iU" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/template_noop) -"jZ" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_1"; - opacity = 0 - }, -/area/template_noop) -"kA" = ( -/obj/structure/bed/chair/dropship/pilot, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/almayer/plate, -/area/template_noop) -"kO" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/structure/largecrate/supply/weapons/pistols, -/turf/open/floor/almayer/plate, -/area/template_noop) -"kR" = ( -/obj/structure/machinery/light/small{ - dir = 4; - pixel_x = 11; - pixel_y = 10 - }, -/obj/structure/sign/poster/safety{ - pixel_y = 29; - pixel_x = 5 - }, -/turf/open/floor/almayer/plate, -/area/template_noop) -"lI" = ( -/obj/structure/largecrate/random/barrel{ - pixel_y = 12; - layer = 3.1; - pixel_x = -6 - }, -/obj/structure/largecrate/random/barrel{ - layer = 3.1; - pixel_x = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/template_noop) -"mz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/accessory/storage/webbing, -/obj/item/clothing/under/marine/veteran/mercenary/support{ - layer = 2.9; - pixel_y = 6 - }, -/obj/item/clothing/head/helmet/marine/veteran/mercenary/support/engineer{ - pixel_y = 8; - armor_bio = 25; - armor_bomb = 10; - armor_bullet = 20; - armor_energy = 0; - armor_internaldamage = 20; - armor_melee = 20; - armor_rad = 10; - desc = "A sturdy helmet worn by an unknown mercenary group. Features a toggleable welding screen for eye protection. This one has seen better days, don't count on the protection you've heard from the rumors!" - }, -/obj/item/clothing/suit/storage/marine/veteran/mercenary/support{ - pixel_y = -4; - armor_bio = 25; - armor_bullet = 20; - armor_energy = 0; - armor_internaldamage = 25; - armor_melee = 25; - armor_rad = 15; - desc = "A set of blue armor with yellow highlights built for protection while building or carrying out medical treatment in highly dangerous environments. It is a specialized uniform of an unknown mercenary group working in the sector. This one has seen better days, don't count on the protection you've heard from the rumors!" - }, -/obj/structure/machinery/defenses/sentry/premade/dumb{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/template_noop) -"nF" = ( -/turf/closed/shuttle/ert, -/area/template_noop) -"nV" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/almayer, -/area/template_noop) -"od" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/plating_catwalk, -/area/template_noop) -"oh" = ( -/turf/open/floor/plating/prison, -/area/template_noop) -"om" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/structure/largecrate/black_market/secured_wildlife, -/turf/open/floor/almayer, -/area/template_noop) -"oH" = ( -/turf/open/floor/plating/plating_catwalk, -/area/template_noop) -"pw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/template_noop) -"pV" = ( -/obj/structure/machinery/light/small{ - dir = 4; - pixel_x = 11; - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/template_noop) -"qn" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/template_noop) -"qI" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan22" - }, -/area/template_noop) -"rv" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/almayer, -/area/template_noop) -"rK" = ( -/obj/structure/largecrate/random/barrel{ - pixel_x = -6; - pixel_y = 21 - }, -/obj/structure/largecrate/random/barrel{ - pixel_x = 12; - pixel_y = 17 - }, -/obj/structure/largecrate/random/barrel{ - pixel_x = -7; - pixel_y = -1 - }, -/turf/open/floor/almayer/plate, -/area/template_noop) -"tp" = ( -/turf/open/floor/almayer, -/area/template_noop) -"tD" = ( -/obj/structure/lattice, -/turf/open/space, -/area/template_noop) -"tZ" = ( -/obj/item/tool/extinguisher/mini{ - pixel_x = 14; - pixel_y = -14 - }, -/turf/open/floor/almayer, -/area/template_noop) -"vI" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer/plate, -/area/template_noop) -"wO" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_leftengine" - }, -/area/template_noop) -"xR" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan5" - }, -/area/template_noop) -"xS" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_white_t_up" - }, -/area/template_noop) -"xW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/syndicate{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/item/storage/toolbox/syndicate{ - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/template_noop) -"yv" = ( -/obj/structure/sign/poster{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/template_noop) -"BC" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan9" - }, -/area/template_noop) -"Cc" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/sentry/premade/dumb{ - pixel_x = -11; - pixel_y = 3 - }, -/obj/item/ammo_magazine/sentry/premade/dumb{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/template_noop) -"CG" = ( -/obj/structure/sign/poster/clf{ - pixel_y = 30; - pixel_x = -2 - }, -/turf/open/floor/almayer, -/area/template_noop) -"CM" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_1"; - opacity = 0 - }, -/area/template_noop) -"DS" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan27" - }, -/area/template_noop) -"EF" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/organic/grass/astroturf, -/area/template_noop) -"EW" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_3"; - opacity = 0 - }, -/area/template_noop) -"Fd" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/template_noop) -"FV" = ( -/turf/open/organic/grass/astroturf, -/area/template_noop) -"Gu" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"Hb" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/almayer, -/area/template_noop) -"HH" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_l_w" - }, -/area/template_noop) -"Ia" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan8" - }, -/area/template_noop) -"Iu" = ( -/obj/structure/sign/safety/bulkhead_door, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/template_noop) -"Jg" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan1" - }, -/area/template_noop) -"Jv" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/obj/structure/barricade/plasteel/wired{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/template_noop) -"JA" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/plating_catwalk/prison, -/area/template_noop) -"JE" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; - icon_state = "fullgrass_2"; - name = "Fiberbush(tm) tubers" - }, -/turf/open/organic/grass/astroturf, -/area/template_noop) -"JP" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/template_noop) -"Ki" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/plating_catwalk, -/area/template_noop) -"Ks" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/item/clothing/head/soft/ferret{ - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/template_noop) -"Ky" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/effect/landmark/wo_supplies/guns/common/m41a, -/turf/open/floor/almayer, -/area/template_noop) -"KC" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/template_noop) -"KG" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan2" - }, -/area/template_noop) -"Ld" = ( -/turf/open/space, -/area/template_noop) -"Lz" = ( -/obj/structure/prop/invuln/fire{ - pixel_y = -15 - }, -/turf/closed/shuttle/ert{ - icon_state = "stan22" - }, -/area/template_noop) -"LG" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan23" - }, -/area/template_noop) -"Nm" = ( -/obj/structure/prop/invuln/fire{ - pixel_y = -15 - }, -/turf/closed/shuttle/ert{ - icon_state = "stan23" - }, -/area/template_noop) -"NV" = ( -/turf/closed/wall/mineral/bone_resin, -/area/template_noop) -"Ok" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/storage/firstaid/adv, -/obj/item/device/healthanalyzer{ - pixel_y = -9 - }, -/turf/open/floor/almayer/plate, -/area/template_noop) -"ON" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_inner_w_1" - }, -/area/template_noop) -"OP" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -22; - pixel_y = -2 - }, -/obj/structure/barricade/metal/wired, -/turf/open/floor/plating/plating_catwalk, -/area/template_noop) -"QZ" = ( -/turf/open/floor/almayer/plate, -/area/template_noop) -"Sh" = ( -/obj/structure/machinery/light/small{ - dir = 4; - pixel_x = 11; - pixel_y = 10 - }, -/obj/structure/surface/rack, -/obj/item/tank/oxygen, -/turf/open/floor/plating/plating_catwalk, -/area/template_noop) -"ST" = ( -/obj/structure/surface/table/reinforced/prison{ - icon_state = "prisonflip2"; - dir = 4 - }, -/turf/open/floor/almayer, -/area/template_noop) -"TS" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/almayer/plating/northeast, -/area/template_noop) -"Uh" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan3" - }, -/area/template_noop) -"UJ" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_inner_w_2" - }, -/area/template_noop) -"UQ" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_inner_t_right" - }, -/area/template_noop) -"Vg" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/template_noop) -"Vh" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/template_noop) -"VB" = ( -/obj/structure/machinery/light/small, -/obj/structure/machinery/defenses/sentry/premade/dumb{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/template_noop) -"VD" = ( -/obj/structure/bed, -/obj/item/bedsheet/rd, -/obj/item/toy/katana, -/obj/structure/sign/poster/pinup{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/template_noop) -"VW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer{ - icon_state = "security_det"; - name = "Shuttle control deck"; - pixel_y = 6 - }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/item/coin/uranium{ - desc = "You found one of the three uranium coins. It is entirely worthless." - }, -/obj/item/storage/fancy/cigar/tarbacks{ - pixel_x = -11 - }, -/obj/structure/prop/invuln/fire{ - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/template_noop) -"Wd" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_3"; - opacity = 0 - }, -/area/template_noop) -"Wt" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_rightengine" - }, -/area/template_noop) -"WN" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan25" - }, -/area/template_noop) -"Xf" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_inner_s_w" - }, -/area/template_noop) -"Xm" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/prison, -/area/template_noop) -"Yj" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_r_w" - }, -/area/template_noop) -"YV" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 25 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = -11 - }, -/turf/open/floor/plating/plating_catwalk, -/area/template_noop) - -(1,1,1) = {" -NV -Ld -Ld -Ld -NV -NV -tD -Ld -aN -nF -nF -Yj -nF -nF -Jg -Ld -Ld -Ld -Ld -Ld -Ld -"} -(2,1,1) = {" -NV -NV -Ld -Ld -NV -NV -tD -Ld -DS -aE -Cc -ON -rK -fI -KG -Ld -Ld -Ld -Ld -Ld -Ld -"} -(3,1,1) = {" -NV -NV -Ld -NV -NV -NV -NV -Ld -DS -Ki -tp -JP -fN -lI -UQ -nF -Jg -Ld -Ld -Ld -Ld -"} -(4,1,1) = {" -NV -NV -NV -NV -aN -nF -nF -Yj -qI -od -bC -xS -UJ -UJ -Xf -om -Ia -Jg -Ld -Ld -Ld -"} -(5,1,1) = {" -NV -NV -NV -aN -qI -Ok -eF -ON -kO -QZ -tp -ON -qn -Ks -ON -ga -Fd -Ia -wO -EW -CM -"} -(6,1,1) = {" -NV -NV -aN -qI -kA -pw -oH -ON -yv -oH -QZ -KC -oH -oH -KC -oH -QZ -BC -Wt -Wd -jZ -"} -(7,1,1) = {" -aN -nF -Lz -bw -oH -tp -tp -ON -QZ -xW -nV -ON -VD -Ky -ON -tp -QZ -KG -NV -NV -Ld -"} -(8,1,1) = {" -DS -VW -rv -tZ -oH -oH -QZ -ON -YV -mz -QZ -xS -UJ -UJ -qI -CG -VB -KG -NV -NV -NV -"} -(9,1,1) = {" -WN -xR -Nm -bw -QZ -tp -tp -KC -Vg -ST -OP -JP -tp -tp -Hb -Jv -Vg -KG -NV -NV -NV -"} -(10,1,1) = {" -NV -NV -WN -LG -kR -oH -oH -ON -iT -pV -Vg -ON -Sh -oH -oH -oH -oH -Ia -wO -EW -CM -"} -(11,1,1) = {" -NV -NV -NV -WN -LG -vI -BC -HH -TS -xR -TS -HH -LG -QZ -Vg -Vg -QZ -BC -Wt -Wd -jZ -"} -(12,1,1) = {" -bh -NV -NV -NV -WN -xR -Uh -hP -iU -aW -iU -hP -WN -xR -TS -TS -xR -Uh -NV -NV -NV -"} -(13,1,1) = {" -bh -NV -NV -NV -NV -NV -Gu -hP -JA -aW -iU -hP -Gu -oh -oh -oh -oh -Gu -NV -NV -NV -"} -(14,1,1) = {" -JE -NV -FV -EF -FV -aW -aW -Iu -fE -Vh -fE -Iu -Xm -oh -oh -gi -oh -oh -oh -bh -bh -"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm deleted file mode 100644 index 4013f2605422..000000000000 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm +++ /dev/null @@ -1,211 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"b" = ( -/obj/item/reagent_container/food/drinks/bottle/gin{ - pixel_y = -6; - pixel_x = -9 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"e" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/obj/item/clothing/head/cakehat{ - pixel_x = -10 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"h" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/reagent_container/food/drinks/bottle/pwine{ - pixel_y = 15; - pixel_x = 6 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = -1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"i" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"o" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"s" = ( -/obj/item/weapon/broken_bottle{ - pixel_x = 5; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"u" = ( -/turf/closed/wall/prison, -/area/template_noop) -"A" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"B" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"C" = ( -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"E" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/trash/plate{ - pixel_y = 14; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"G" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"H" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"K" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1; - pixel_x = 10; - pixel_y = 16 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"L" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/reagent_container/food/snacks/sliceable/birthdaycake{ - pixel_y = 23; - pixel_x = 15 - }, -/obj/item/trash/plate{ - pixel_y = 2; - pixel_x = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"N" = ( -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"P" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"U" = ( -/obj/structure/prop/souto_land/pole{ - pixel_x = 16; - pixel_y = 17 - }, -/obj/structure/sign/banners/happybirthdaysteve{ - pixel_x = 12; - pixel_y = 19 - }, -/obj/item/weapon/broken_bottle{ - pixel_x = 8; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"Y" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"Z" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) - -(1,1,1) = {" -u -o -Z -Z -Y -u -"} -(2,1,1) = {" -i -U -H -e -b -a -"} -(3,1,1) = {" -i -C -h -L -C -a -"} -(4,1,1) = {" -i -K -E -G -C -a -"} -(5,1,1) = {" -i -C -C -C -s -a -"} -(6,1,1) = {" -u -B -P -N -A -u -"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm deleted file mode 100644 index e569ea379326..000000000000 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm +++ /dev/null @@ -1,287 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/closed/wall/r_wall/prison, -/area/template_noop) -"b" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/template_noop) -"c" = ( -/turf/open/floor/prison, -/area/template_noop) -"d" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison/redfull, -/area/template_noop) -"e" = ( -/turf/closed/wall/prison, -/area/template_noop) -"g" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"i" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"k" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/clothing/shoes/galoshes{ - pixel_y = -6 - }, -/turf/open/floor/prison/redfull, -/area/template_noop) -"l" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/clothing/shoes/dress/commander{ - pixel_y = -9 - }, -/turf/open/floor/prison/redfull, -/area/template_noop) -"m" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/box/flashbangs, -/turf/open/floor/prison/redfull, -/area/template_noop) -"n" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"r" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/redfull, -/area/template_noop) -"s" = ( -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/prison, -/area/template_noop) -"t" = ( -/obj/structure/window/reinforced, -/turf/open/floor/prison, -/area/template_noop) -"u" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/clothing/accessory/storage/holster, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/prison/redfull, -/area/template_noop) -"v" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison, -/area/template_noop) -"w" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"x" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/template_noop) -"y" = ( -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"z" = ( -/obj/item/clothing/shoes/black{ - pixel_x = -1; - pixel_y = -17 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison, -/area/template_noop) -"B" = ( -/obj/item/tool/kitchen/knife{ - pixel_x = -7; - pixel_y = -15 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"C" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/template_noop) -"D" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison, -/area/template_noop) -"E" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/prison, -/area/template_noop) -"F" = ( -/obj/item/prop/helmetgarb/riot_shield, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"I" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/effect/spawner/random/gun/pistol/lowchance, -/turf/open/floor/prison/redfull, -/area/template_noop) -"J" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/prison, -/area/template_noop) -"K" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"L" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/prison, -/area/template_noop) -"R" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison, -/area/template_noop) -"S" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - pixel_y = 9 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/template_noop) -"U" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"V" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/template_noop) -"W" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/clothing/shoes/black{ - pixel_x = 2; - pixel_y = -9 - }, -/turf/open/floor/prison/redfull, -/area/template_noop) -"X" = ( -/obj/item/frame/rack, -/turf/open/floor/prison/redfull, -/area/template_noop) -"Z" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison, -/area/template_noop) - -(1,1,1) = {" -s -S -a -a -R -a -a -C -"} -(2,1,1) = {" -a -a -a -I -d -k -a -a -"} -(3,1,1) = {" -n -K -y -B -y -y -X -a -"} -(4,1,1) = {" -D -z -I -d -r -c -X -a -"} -(5,1,1) = {" -Z -b -J -E -I -v -X -a -"} -(6,1,1) = {" -L -L -V -t -l -c -a -e -"} -(7,1,1) = {" -w -U -i -v -x -v -i -y -"} -(8,1,1) = {" -g -F -V -d -W -I -a -u -"} -(9,1,1) = {" -V -V -V -a -V -V -a -m -"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm deleted file mode 100644 index 6743dfbef7ec..000000000000 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm +++ /dev/null @@ -1,210 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/template_noop) -"b" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/item/weapon/telebaton, -/turf/open/floor/wood, -/area/template_noop) -"c" = ( -/turf/open/floor/carpet, -/area/template_noop) -"d" = ( -/obj/effect/decal/hefa_cult_decals/d96, -/obj/item/device/flashlight/lamp/candelabra, -/turf/open/floor/carpet, -/area/template_noop) -"e" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/faxmachine, -/turf/open/floor/wood, -/area/template_noop) -"j" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/carpet, -/area/template_noop) -"s" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/wood, -/area/template_noop) -"t" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/box/matches{ - pixel_x = -6 - }, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/template_noop) -"w" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/device/flashlight/lamp/candelabra, -/turf/open/floor/carpet, -/area/template_noop) -"x" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/template_noop) -"y" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/carpet, -/area/template_noop) -"A" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet, -/area/template_noop) -"E" = ( -/turf/open/floor/wood, -/area/template_noop) -"K" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/wood, -/area/template_noop) -"L" = ( -/obj/structure/lattice, -/turf/open/space, -/area/template_noop) -"O" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/floor/carpet, -/area/template_noop) -"R" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/weapon/unathiknife{ - name = "ceremonial knife"; - pixel_x = 7; - pixel_y = -2 - }, -/obj/item/organ/heart{ - pixel_x = -5 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet, -/area/template_noop) -"S" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/machinery/power/apc/power/west, -/turf/open/floor/wood, -/area/template_noop) -"T" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/obj/item/clothing/head/helmet/warden{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/template_noop) -"U" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/weapon/gun/pistol/highpower/tactical, -/turf/open/floor/plating, -/area/template_noop) -"W" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2; - name = "Warden's Office"; - req_access = null - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"Z" = ( -/obj/item/device/flashlight/lamp/candelabra, -/turf/open/floor/carpet, -/area/template_noop) - -(1,1,1) = {" -L -a -a -a -a -a -L -"} -(2,1,1) = {" -a -a -S -E -E -x -x -"} -(3,1,1) = {" -a -E -c -R -c -E -x -"} -(4,1,1) = {" -W -c -w -c -d -b -x -"} -(5,1,1) = {" -W -y -c -T -O -s -x -"} -(6,1,1) = {" -W -c -Z -j -Z -K -x -"} -(7,1,1) = {" -a -E -c -c -A -E -x -"} -(8,1,1) = {" -a -a -U -e -t -x -x -"} -(9,1,1) = {" -L -a -x -x -x -x -L -"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm deleted file mode 100644 index eb7b53bac0de..000000000000 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm +++ /dev/null @@ -1,584 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ah" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkpurple2/northeast, -/area/template_noop) -"aA" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison, -/area/template_noop) -"da" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/template_noop) -"dv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/prison, -/area/template_noop) -"fi" = ( -/turf/open/floor/prison/darkpurple2, -/area/template_noop) -"gB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4; - icon_state = "commb"; - layer = 4 - }, -/obj/item/reagent_container/food/drinks/cans/boda{ - pixel_y = 9; - pixel_x = 9 - }, -/turf/open/floor/prison, -/area/template_noop) -"hT" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/darkpurple2/north, -/area/template_noop) -"jh" = ( -/obj/item/trash/pistachios, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"ji" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4; - icon_state = "commb" - }, -/obj/item/holder/mouse{ - pixel_x = 4; - pixel_y = 18; - desc = "Wait, why won't it work with my computer?" - }, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"kU" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/plating/prison, -/area/template_noop) -"lm" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"mN" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"na" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison, -/area/template_noop) -"np" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4; - icon_state = "commb"; - layer = 4 - }, -/obj/item/reagent_container/food/drinks/cans/dr_gibb{ - pixel_y = 10 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/template_noop) -"nZ" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"pq" = ( -/obj/structure/prop/dam/crane, -/turf/open/floor/prison/floor_marked/west, -/area/template_noop) -"sl" = ( -/turf/open/floor/prison/darkpurple2/southeast, -/area/template_noop) -"sF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb" - }, -/obj/item/device/encryptionkey/WY{ - pixel_x = 4; - pixel_y = -8 - }, -/turf/open/floor/prison/floor_marked/west, -/area/template_noop) -"tg" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"tn" = ( -/turf/open/floor/prison/floor_marked/west, -/area/template_noop) -"tH" = ( -/turf/open/floor/prison/darkpurple2/north, -/area/template_noop) -"uf" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_marked/west, -/area/template_noop) -"ur" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"uD" = ( -/obj/item/trash/wy_chips_pepper, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"uO" = ( -/obj/item/stock_parts/manipulator/pico, -/turf/open/floor/prison/darkpurple2, -/area/template_noop) -"va" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/darkpurple2/east, -/area/template_noop) -"wj" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkpurple2/northwest, -/area/template_noop) -"xH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"yS" = ( -/turf/closed/wall/prison, -/area/template_noop) -"zv" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"zL" = ( -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"CE" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison/darkpurple2/southwest, -/area/template_noop) -"CO" = ( -/turf/open/floor/prison/darkpurple2/northwest, -/area/template_noop) -"CV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb" - }, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"DF" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/prison/darkpurple2, -/area/template_noop) -"DV" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"El" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison, -/area/template_noop) -"Ep" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"Fp" = ( -/turf/open/floor/prison, -/area/template_noop) -"Ft" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"Jv" = ( -/obj/item/trash/chunk, -/turf/open/floor/prison/floor_marked/west, -/area/template_noop) -"Kd" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"Mn" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"MZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb"; - layer = 2.99 - }, -/turf/open/floor/prison/darkpurple2/southwest, -/area/template_noop) -"Ng" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison/darkpurple2/southeast, -/area/template_noop) -"Ot" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4; - icon_state = "commb" - }, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"Oy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/chips, -/turf/open/floor/prison/darkpurple2/northeast, -/area/template_noop) -"OG" = ( -/turf/closed/wall/mineral/bone_resin, -/area/template_noop) -"OH" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison, -/area/template_noop) -"Qw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/obj/item/holder/mouse{ - pixel_x = 12; - pixel_y = 12; - desc = "Wait, why won't it work with my computer?" - }, -/turf/open/floor/prison, -/area/template_noop) -"QB" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"QF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"QG" = ( -/turf/open/floor/prison/darkpurple2/northeast, -/area/template_noop) -"Rd" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison/darkpurple2/west, -/area/template_noop) -"RW" = ( -/turf/open/floor/bluegrid, -/area/template_noop) -"Ss" = ( -/turf/open/floor/prison/darkpurple2/southwest, -/area/template_noop) -"SF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb"; - layer = 4 - }, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"Tl" = ( -/obj/structure/computer3frame, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"TI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"Vc" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"VZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb" - }, -/obj/item/reagent_container/food/drinks/cans/classcola{ - pixel_x = -10; - pixel_y = 17 - }, -/turf/open/floor/prison, -/area/template_noop) -"Wu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4; - icon_state = "commb" - }, -/turf/open/floor/prison/darkpurple2/southeast, -/area/template_noop) -"WV" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/template_noop) -"XD" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison/darkpurple2, -/area/template_noop) -"Yj" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/darkpurple2, -/area/template_noop) -"Za" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/golden_cup{ - pixel_y = 11 - }, -/turf/open/floor/prison, -/area/template_noop) -"Zj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"Zn" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison/cell_stripe/east, -/area/template_noop) - -(1,1,1) = {" -da -yS -yS -yS -Kd -kU -nZ -kU -Kd -yS -yS -yS -yS -"} -(2,1,1) = {" -yS -mN -lm -jh -lm -lm -lm -lm -zL -zL -Mn -ur -QF -"} -(3,1,1) = {" -yS -Vc -Fp -lm -va -Ft -El -xH -uf -tn -lm -tn -pq -"} -(4,1,1) = {" -yS -Tl -lm -wj -VZ -MZ -SF -CV -sF -Jv -lm -tn -tn -"} -(5,1,1) = {" -yS -lm -fi -Za -RW -RW -RW -RW -RW -WV -lm -WV -Zn -"} -(6,1,1) = {" -yS -tg -Yj -Qw -RW -RW -RW -RW -RW -Ss -Fp -CO -CE -"} -(7,1,1) = {" -kU -lm -DF -dv -RW -RW -RW -RW -RW -fi -Fp -tH -XD -"} -(8,1,1) = {" -Kd -lm -uO -na -RW -RW -RW -RW -RW -fi -aA -tH -XD -"} -(9,1,1) = {" -Kd -lm -lm -Oy -gB -Wu -ji -Ot -np -fi -Fp -hT -XD -"} -(10,1,1) = {" -yS -QB -Fp -lm -Rd -TI -OH -zv -ah -sl -OG -QG -Ng -"} -(11,1,1) = {" -yS -Zj -tg -lm -lm -DV -lm -uD -OG -OG -OG -OG -OG -"} -(12,1,1) = {" -da -da -Ep -Ep -Ep -yS -da -OG -OG -OG -OG -OG -OG -"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm deleted file mode 100644 index ce8071106172..000000000000 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm +++ /dev/null @@ -1,1791 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aj" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/template_noop) -"az" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/wood, -/area/template_noop) -"bD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/template_noop) -"bO" = ( -/obj/item/storage/belt/marine/quackers, -/turf/open/gm/river/pool, -/area/template_noop) -"cb" = ( -/obj/item/trash/barcardine{ - pixel_y = -9; - pixel_x = -15 - }, -/turf/open/floor/wood, -/area/template_noop) -"ci" = ( -/obj/item/toy/gun, -/turf/open/floor/wood, -/area/template_noop) -"cj" = ( -/obj/item/trash/crushed_cup{ - pixel_y = -7; - pixel_x = -1 - }, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"cq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/cueball{ - pixel_x = 32; - pixel_y = -2 - }, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/tuxedo{ - pixel_x = -9; - pixel_y = 9 - }, -/turf/open/floor/wood, -/area/template_noop) -"cK" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"cU" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/wood, -/area/template_noop) -"dB" = ( -/turf/open/floor/prison/darkbrown2/northwest, -/area/template_noop) -"ef" = ( -/obj/item/toy/beach_ball, -/turf/open/gm/river/pool, -/area/template_noop) -"el" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/darkbrown2/north, -/area/template_noop) -"fv" = ( -/obj/item/toy/crossbow_ammo{ - pixel_x = -16 - }, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/template_noop) -"fL" = ( -/obj/structure/grille, -/obj/item/reagent_container/food/snacks/carpmeat{ - pixel_x = -5; - pixel_y = 13 - }, -/obj/item/reagent_container/food/snacks/carpmeat{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/structure/prop/invuln/fire{ - layer = 2.9 - }, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/template_noop) -"fN" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"fX" = ( -/turf/closed/wall/mineral/bone_resin, -/area/template_noop) -"gs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrown2/west, -/area/template_noop) -"gV" = ( -/turf/open/space, -/area/template_noop) -"hf" = ( -/turf/open/gm/river/pool, -/area/template_noop) -"hP" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/template_noop) -"hY" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/wood, -/area/template_noop) -"ij" = ( -/obj/item/toy/crossbow_ammo{ - pixel_y = 18; - pixel_x = 24; - layer = 2.5 - }, -/turf/open/floor/wood, -/area/template_noop) -"ik" = ( -/obj/item/trash/syndi_cakes{ - pixel_x = -13; - pixel_y = -11 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/template_noop) -"is" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown2/southeast, -/area/template_noop) -"iC" = ( -/obj/item/tool/mop{ - pixel_x = 11; - layer = 2.9; - pixel_y = 3 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 9; - pixel_y = -5 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/template_noop) -"iK" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/darkbrown2/north, -/area/template_noop) -"iY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 15; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/template_noop) -"jt" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/wood, -/area/template_noop) -"jW" = ( -/obj/item/trash/crushed_cup{ - pixel_y = 6; - pixel_x = 6 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/template_noop) -"kb" = ( -/obj/item/trash/crushed_cup{ - pixel_y = -65; - pixel_x = 29 - }, -/turf/open/gm/river/pool, -/area/template_noop) -"kA" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"lc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck, -/obj/item/toy/dice{ - pixel_x = 11; - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/template_noop) -"lh" = ( -/obj/item/trash/cigbutt{ - pixel_x = 31; - pixel_y = -16 - }, -/turf/open/floor/wood, -/area/template_noop) -"ly" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison, -/area/template_noop) -"lS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cheeseburger{ - pixel_x = -6; - pixel_y = 12 - }, -/obj/item/reagent_container/food/snacks/cheeseburger{ - pixel_x = 9; - pixel_y = 12 - }, -/obj/item/reagent_container/food/snacks/cheeseburger{ - pixel_x = 9; - pixel_y = 1 - }, -/obj/item/reagent_container/food/snacks/cheeseburger{ - pixel_x = -6; - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/template_noop) -"mc" = ( -/obj/item/trash/kepler{ - pixel_x = 13 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/template_noop) -"mj" = ( -/obj/structure/prop/souto_land/pole, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"mk" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/item/trash/crushed_cup{ - pixel_y = -7; - pixel_x = 7 - }, -/turf/open/floor/wood, -/area/template_noop) -"mq" = ( -/turf/open/floor/prison/darkbrowncorners2/north, -/area/template_noop) -"mu" = ( -/turf/open/floor/plating/prison, -/area/template_noop) -"nf" = ( -/turf/open/floor/wood, -/area/template_noop) -"ng" = ( -/obj/item/trash/cigbutt{ - pixel_x = 31; - pixel_y = -16 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/template_noop) -"ni" = ( -/turf/closed/wall/prison, -/area/template_noop) -"nC" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"nS" = ( -/obj/structure/prop/souto_land/pole, -/turf/open/floor/wood, -/area/template_noop) -"or" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/turf/open/floor/wood, -/area/template_noop) -"ou" = ( -/obj/structure/platform, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"oL" = ( -/obj/structure/lattice, -/turf/open/space, -/area/template_noop) -"pt" = ( -/obj/structure/bed/chair/comfy{ - layer = 2.9 - }, -/turf/open/floor/wood, -/area/template_noop) -"pB" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/template_noop) -"pG" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/template_noop) -"pH" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/template_noop) -"ql" = ( -/obj/item/trash/sosjerky{ - pixel_x = -14; - pixel_y = -20 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/darkbrown2/north, -/area/template_noop) -"qm" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/template_noop) -"qG" = ( -/obj/item/trash/crushed_cup{ - pixel_y = 16 - }, -/obj/item/trash/hotdog{ - pixel_x = 7; - pixel_y = -8 - }, -/obj/item/trash/hotdog{ - pixel_x = -4; - pixel_y = -11 - }, -/obj/item/trash/hotdog{ - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/wood, -/area/template_noop) -"ro" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"rp" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/prison, -/area/template_noop) -"rq" = ( -/obj/item/trash/semki{ - pixel_x = 15 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/template_noop) -"rt" = ( -/obj/item/trash/crushed_cup{ - pixel_x = -2; - pixel_y = 36 - }, -/turf/open/gm/river/pool, -/area/template_noop) -"rU" = ( -/obj/structure/grille, -/obj/item/reagent_container/food/snacks/bearmeat{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/reagent_container/food/snacks/meat/human{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/structure/prop/invuln/fire{ - layer = 2.9 - }, -/turf/open/floor/prison/darkbrowncorners2, -/area/template_noop) -"rW" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/wood, -/area/template_noop) -"so" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/wood, -/area/template_noop) -"tb" = ( -/obj/item/trash/wy_chips_pepper{ - pixel_x = 18; - layer = 2.5 - }, -/turf/open/floor/wood, -/area/template_noop) -"tw" = ( -/obj/item/toy/crossbow_ammo{ - pixel_x = -7; - pixel_y = -11 - }, -/turf/open/floor/wood, -/area/template_noop) -"ty" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison, -/area/template_noop) -"tz" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/wood, -/area/template_noop) -"tD" = ( -/obj/item/trash/plate{ - pixel_x = -9 - }, -/turf/open/floor/prison/darkbrowncorners2, -/area/template_noop) -"tM" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/darkbrowncorners2/east, -/area/template_noop) -"tT" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/wood, -/area/template_noop) -"uw" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/template_noop) -"vd" = ( -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/obj/item/toy/plush/barricade{ - pixel_x = 1; - pixel_y = -9 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/darkbrown2/west, -/area/template_noop) -"vf" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"vU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/hotdog{ - pixel_x = 6; - pixel_y = 16 - }, -/obj/item/reagent_container/food/snacks/hotdog{ - pixel_x = -7; - pixel_y = 16 - }, -/obj/item/reagent_container/food/snacks/hotdog{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/item/reagent_container/food/snacks/hotdog{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/item/reagent_container/food/snacks/hotdog{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/reagent_container/food/snacks/hotdog{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/reagent_container/food/snacks/hotdog{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/reagent_container/food/snacks/hotdog{ - pixel_x = 6; - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/template_noop) -"vX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/streamer{ - dir = 9 - }, -/obj/item/tool/hand_labeler{ - pixel_x = -5; - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/template_noop) -"wS" = ( -/turf/open/floor/prison/darkbrown2/southeast, -/area/template_noop) -"wV" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"xz" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9 - }, -/turf/open/floor/wood, -/area/template_noop) -"xQ" = ( -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"xS" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/wood, -/area/template_noop) -"yx" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/darkbrown2/west, -/area/template_noop) -"yL" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"zc" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"zR" = ( -/obj/item/trash/cigbutt{ - pixel_x = 10; - pixel_y = -11 - }, -/turf/open/floor/wood, -/area/template_noop) -"Aj" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison, -/area/template_noop) -"Ao" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/wood, -/area/template_noop) -"Bf" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/template_noop) -"Bj" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"Bm" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/obj/item/toy/plush/barricade{ - pixel_x = -3; - pixel_y = -9 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/template_noop) -"Bv" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9 - }, -/obj/item/toy/gun_ammo{ - pixel_y = 66 - }, -/turf/open/floor/wood, -/area/template_noop) -"BK" = ( -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/streamer{ - dir = 6 - }, -/turf/open/floor/wood, -/area/template_noop) -"BY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/mono{ - pixel_x = 6; - pixel_y = 5; - layer = 3.1 - }, -/obj/item/toy/plush/farwa{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = 11 - }, -/turf/open/floor/wood, -/area/template_noop) -"Ci" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/beer_pack{ - pixel_y = 5; - layer = 4 - }, -/turf/open/floor/wood, -/area/template_noop) -"Cq" = ( -/obj/item/toy/crossbow_ammo{ - pixel_x = -17; - pixel_y = 41 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/template_noop) -"Cx" = ( -/obj/item/weapon/baseballbat/metal, -/turf/open/floor/wood, -/area/template_noop) -"Dd" = ( -/obj/item/trash/crushed_cup{ - pixel_x = -20 - }, -/turf/open/gm/river/pool, -/area/template_noop) -"DN" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/darkbrowncorners2, -/area/template_noop) -"DT" = ( -/obj/structure/platform, -/turf/open/gm/river/pool, -/area/template_noop) -"Fj" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/wood, -/area/template_noop) -"Fl" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/storage/pill_bottle/kelotane/skillless, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/template_noop) -"Fo" = ( -/turf/open/floor/prison/darkbrown2/east, -/area/template_noop) -"Fy" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/template_noop) -"Fz" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/template_noop) -"FD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/plush/therapy/blue{ - pixel_y = 4 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 10; - pixel_y = 4 - }, -/obj/item/clothing/head/bowlerhat{ - pixel_y = 16; - layer = 3.1 - }, -/turf/open/floor/wood, -/area/template_noop) -"FN" = ( -/obj/item/toy/crossbow{ - pixel_x = 11; - pixel_y = -8 - }, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"Gi" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"Gp" = ( -/obj/effect/landmark/objective_landmark/medium, -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = -7 - }, -/obj/item/trash/plate{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/trash/plate{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/trash/plate{ - pixel_x = 7 - }, -/obj/item/trash/plate{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/trash/plate{ - pixel_x = 7; - pixel_y = 9 - }, -/turf/open/floor/wood, -/area/template_noop) -"Gu" = ( -/obj/item/trash/crushed_cup{ - pixel_y = -2; - pixel_x = -12 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/template_noop) -"GO" = ( -/obj/item/toy/crossbow_ammo{ - pixel_y = -14; - pixel_x = -15 - }, -/turf/open/floor/prison/darkbrown2/north, -/area/template_noop) -"Hn" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"HP" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 6 - }, -/obj/item/trash/crushed_cup{ - pixel_y = 3; - pixel_x = -4 - }, -/turf/open/floor/wood, -/area/template_noop) -"ID" = ( -/obj/item/trash/crushed_cup{ - pixel_y = -6; - pixel_x = -8 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/template_noop) -"IU" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/wood, -/area/template_noop) -"Jf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -17; - pixel_y = -21 - }, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ - pixel_x = 10; - pixel_y = 20 - }, -/turf/open/floor/wood, -/area/template_noop) -"Jr" = ( -/turf/open/floor/prison/darkbrowncorners2/east, -/area/template_noop) -"Jw" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/wood, -/area/template_noop) -"JQ" = ( -/obj/item/clipboard, -/turf/open/floor/prison, -/area/template_noop) -"JR" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkbrown2/east, -/area/template_noop) -"Ke" = ( -/obj/item/toy/crossbow_ammo{ - pixel_x = 19; - pixel_y = 9 - }, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"Kx" = ( -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"KL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -12; - pixel_y = -1 - }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -21; - pixel_y = -1 - }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -16; - pixel_y = -6 - }, -/turf/open/floor/wood, -/area/template_noop) -"KM" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrown2/east, -/area/template_noop) -"KO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -8; - layer = 3.2 - }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -13; - pixel_y = 6; - layer = 3.1 - }, -/turf/open/floor/wood, -/area/template_noop) -"La" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/pool, -/area/template_noop) -"Ls" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/streamer{ - dir = 9 - }, -/turf/open/floor/wood, -/area/template_noop) -"LI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_y = 11; - pixel_x = 9 - }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_y = 11; - pixel_x = 1 - }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_y = 11; - pixel_x = -7 - }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_y = 4; - pixel_x = 9 - }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_y = 4; - pixel_x = 1 - }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_y = 4; - pixel_x = -7 - }, -/turf/open/floor/wood, -/area/template_noop) -"LW" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/template_noop) -"Mn" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"MS" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"ND" = ( -/turf/open/floor/prison/darkbrown2/northeast, -/area/template_noop) -"NQ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrown2/southwest, -/area/template_noop) -"Oz" = ( -/obj/item/trash/crushed_cup{ - pixel_y = 5; - pixel_x = 11 - }, -/turf/open/gm/river/pool, -/area/template_noop) -"PA" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown2/northeast, -/area/template_noop) -"PR" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkbrowncorners2, -/area/template_noop) -"Qn" = ( -/turf/open/floor/prison, -/area/template_noop) -"QF" = ( -/turf/open/floor/prison/darkbrowncorners2/west, -/area/template_noop) -"QO" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"Rg" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"Ro" = ( -/obj/item/toy/bikehorn/rubberducky{ - pixel_x = -2; - pixel_y = -15 - }, -/turf/open/gm/river/pool, -/area/template_noop) -"Rr" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"Rs" = ( -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"RW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 6; - layer = 3.2 - }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 15; - layer = 3.2 - }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 11; - pixel_y = 6; - layer = 3.1 - }, -/turf/open/floor/wood, -/area/template_noop) -"Sg" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkbrowncorners2/north, -/area/template_noop) -"SC" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison/darkbrown2/north, -/area/template_noop) -"SO" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/streamer{ - dir = 6 - }, -/obj/item/trash/cigbutt{ - pixel_x = 31; - pixel_y = -16 - }, -/turf/open/floor/wood, -/area/template_noop) -"SW" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/obj/item/toy/plush/barricade{ - pixel_x = 1; - pixel_y = -9 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/template_noop) -"Th" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkbrown2/north, -/area/template_noop) -"Tq" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/template_noop) -"TO" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 6 - }, -/turf/open/floor/wood, -/area/template_noop) -"TS" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/template_noop) -"Us" = ( -/obj/item/toy/syndicateballoon{ - pixel_x = 14; - pixel_y = -5 - }, -/turf/open/floor/wood, -/area/template_noop) -"UN" = ( -/obj/item/trash/crushed_cup{ - pixel_x = -13; - pixel_y = 48 - }, -/turf/open/gm/river/pool, -/area/template_noop) -"Vi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/cognac{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = -3; - pixel_y = 13; - layer = 4 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = -10; - pixel_y = 1; - layer = 4 - }, -/turf/open/floor/wood, -/area/template_noop) -"Vx" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/item/weapon/gun/shotgun/merc{ - pixel_x = 1; - pixel_y = 25 - }, -/turf/open/floor/wood, -/area/template_noop) -"VV" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison, -/area/template_noop) -"Wa" = ( -/obj/structure/closet/basketball{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/weapon/gun/pistol/heavy, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/wood, -/area/template_noop) -"We" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison, -/area/template_noop) -"Wh" = ( -/turf/open/floor/prison/darkbrown2/north, -/area/template_noop) -"Wx" = ( -/obj/structure/platform, -/obj/item/trash/crushed_cup{ - pixel_y = 13; - pixel_x = 45 - }, -/turf/open/gm/river/pool, -/area/template_noop) -"WY" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"Xn" = ( -/obj/item/storage/belt/shotgun/full/quackers{ - layer = 3.1 - }, -/obj/item/trash/crushed_cup{ - pixel_y = 6; - pixel_x = -30 - }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_y = 4; - pixel_x = 1 - }, -/turf/open/gm/river/pool, -/area/template_noop) -"Xu" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrown2, -/area/template_noop) -"Xw" = ( -/obj/item/toy/beach_ball/holoball{ - pixel_x = -10; - pixel_y = -7 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/template_noop) -"XM" = ( -/turf/open/floor/prison/darkbrown2/west, -/area/template_noop) -"XS" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/wood, -/area/template_noop) -"XU" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/obj/item/toy/plush/barricade{ - pixel_x = -1; - pixel_y = -9 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/template_noop) -"XX" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"Yd" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/wood, -/area/template_noop) -"Yh" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/wood, -/area/template_noop) -"YB" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/template_noop) -"YG" = ( -/obj/structure/platform, -/turf/open/floor/prison, -/area/template_noop) -"YP" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/template_noop) -"Zr" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/wood, -/area/template_noop) -"ZB" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/template_noop) - -(1,1,1) = {" -Rs -Qn -Fl -Qn -rp -fX -fX -fX -fX -Wh -cK -hP -hP -ly -Qn -Qn -Qn -Aj -Qn -Wh -Rs -Fy -"} -(2,1,1) = {" -Rs -Qn -JQ -Qn -VV -fN -fX -ni -ni -YP -TS -ni -ni -kA -Kx -XX -hP -hP -ly -Wh -Rs -so -"} -(3,1,1) = {" -Rs -Qn -VV -fN -MS -ni -aj -ni -SO -el -mj -hY -ni -YP -Rr -TS -ni -ni -kA -Wh -Rs -dB -"} -(4,1,1) = {" -Rs -Qn -ZB -ni -aj -ni -nf -nf -nf -ql -Rs -nf -BK -TO -HP -nS -Wa -aj -kA -Wh -Rs -mu -"} -(5,1,1) = {" -Rs -VV -MS -aj -jt -az -dB -yx -XM -tM -QF -XM -Xw -NQ -nf -IU -nf -aj -kA -Wh -mu -fX -"} -(6,1,1) = {" -Rs -ZB -ni -ni -XS -nf -GO -PR -Fo -Fo -jW -Fo -mq -Ke -lh -nf -Cx -aj -kA -ND -Fo -fX -"} -(7,1,1) = {" -cK -MS -aj -nf -tz -nf -Th -Rs -pG -Gi -Gi -qm -Wh -Rs -nf -tz -nf -aj -Hn -Fj -nf -fX -"} -(8,1,1) = {" -ou -ni -ni -Zr -FD -az -Wh -xQ -La -kb -hf -DT -Wh -Rs -Zr -Ci -az -ni -ni -kA -nf -Wh -"} -(9,1,1) = {" -Xu -ni -mk -nf -rW -nf -Cq -Rs -La -Dd -ef -DT -Wh -Rs -nf -rW -nf -Yd -ni -wV -nf -Wh -"} -(10,1,1) = {" -uw -SW -ng -yx -yx -mc -Jr -Rs -La -bO -rt -DT -Wh -fL -XM -yx -yx -vd -pB -pH -XM -Jr -"} -(11,1,1) = {" -DN -XU -JR -Fo -Fo -Fo -Sg -Bj -La -hf -UN -Wx -Wh -rU -KM -Fo -Gu -Bm -yL -LW -Fo -Fo -"} -(12,1,1) = {" -Xu -ni -Jw -nf -tz -nf -Wh -Rs -La -Oz -Xn -DT -SC -Rs -nf -tz -nf -Yd -ni -xS -nf -nf -"} -(13,1,1) = {" -ou -ni -ni -pt -LI -Vx -Wh -FN -La -Ro -hf -DT -Wh -cj -Zr -BY -az -cb -Fy -Bf -Bf -Bf -"} -(14,1,1) = {" -WY -Mn -aj -nf -rW -nf -rq -Rs -nC -Rr -Rr -TS -Wh -QO -nf -rW -nf -cU -Fy -gV -gV -gV -"} -(15,1,1) = {" -Rs -ZB -aj -nf -ij -tT -iK -fv -gs -XM -XM -XM -Jr -Rs -nf -tb -nf -nf -Fy -Bf -Bf -Bf -"} -(16,1,1) = {" -Rs -YG -aj -lc -ci -tT -ND -iC -ID -mq -tD -Fo -ik -wS -iY -cq -RW -nf -nf -nf -Gp -Bf -"} -(17,1,1) = {" -Rs -YG -aj -Ls -xz -Bv -or -zR -nf -Th -Rs -nf -tw -XS -KL -Jf -KO -bD -nf -nf -lS -Bf -"} -(18,1,1) = {" -Rs -YG -ni -ni -pG -Gi -qm -ni -vX -Fz -Rg -Ao -Fy -nf -lh -nf -nf -nf -nf -qG -vU -Bf -"} -(19,1,1) = {" -Rs -We -ty -ty -vf -Kx -ZB -ni -ni -pG -zc -ni -Fy -Zr -Vi -az -Fy -Bf -Bf -Bf -Bf -Bf -"} -(20,1,1) = {" -wS -Qn -Qn -Qn -Aj -Qn -We -ro -ro -PA -is -ro -Fy -nf -Yh -Us -Fy -gV -gV -oL -gV -gV -"} -(21,1,1) = {" -Tq -YB -YB -Tq -YB -YB -Tq -YB -YB -Tq -Tq -YB -Fy -Fy -Fy -Fy -Fy -gV -gV -oL -gV -gV -"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.yardbasketball.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.yardbasketball.dmm deleted file mode 100644 index ce60474959f1..000000000000 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.yardbasketball.dmm +++ /dev/null @@ -1,337 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/wood, -/area/template_noop) -"b" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/wood, -/area/template_noop) -"d" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/wood, -/area/template_noop) -"e" = ( -/obj/item/trash/cigbutt{ - pixel_x = 5; - pixel_y = -6 - }, -/turf/open/floor/wood, -/area/template_noop) -"f" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/effect/decal/cleanable/blood, -/obj/item/restraint/handcuffs/zip{ - pixel_y = -12 - }, -/turf/open/floor/wood, -/area/template_noop) -"g" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/wood, -/area/template_noop) -"i" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor/wood, -/area/template_noop) -"j" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor/wood, -/area/template_noop) -"k" = ( -/obj/item/ammo_casing{ - dir = 6; - icon_state = "casing_10_1" - }, -/turf/open/floor/wood, -/area/template_noop) -"l" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/wood, -/area/template_noop) -"n" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/turf/open/floor/wood, -/area/template_noop) -"p" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor/wood, -/area/template_noop) -"r" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/wood, -/area/template_noop) -"s" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/wood, -/area/template_noop) -"u" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/item/spacecash/c100{ - pixel_x = -11; - pixel_y = -6 - }, -/turf/open/floor/wood, -/area/template_noop) -"w" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/trash/barcardine, -/turf/open/floor/wood, -/area/template_noop) -"x" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/wood, -/area/template_noop) -"C" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/wood, -/area/template_noop) -"G" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/wood, -/area/template_noop) -"H" = ( -/obj/item/trash/chunk, -/turf/open/floor/wood, -/area/template_noop) -"J" = ( -/obj/item/weapon/gun/smg/mac15{ - pixel_x = 12 - }, -/turf/open/floor/wood, -/area/template_noop) -"L" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/wood, -/area/template_noop) -"M" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/obj/effect/decal/warning_stripes, -/obj/structure/holohoop{ - dir = 8 - }, -/turf/open/floor/wood, -/area/template_noop) -"Q" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/wood, -/area/template_noop) -"R" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes, -/obj/structure/holohoop{ - dir = 4 - }, -/turf/open/floor/wood, -/area/template_noop) -"S" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/wood, -/area/template_noop) -"T" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/wood, -/area/template_noop) -"U" = ( -/obj/item/ammo_magazine/smg/uzi{ - current_rounds = 0; - pixel_x = 5; - pixel_y = 12 - }, -/turf/open/floor/wood, -/area/template_noop) -"W" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/template_noop) -"Y" = ( -/turf/open/floor/wood, -/area/template_noop) -"Z" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/wood, -/area/template_noop) - -(1,1,1) = {" -Q -G -R -G -a -"} -(2,1,1) = {" -w -s -Y -Y -l -"} -(3,1,1) = {" -s -d -C -T -S -"} -(4,1,1) = {" -s -Y -Y -Y -L -"} -(5,1,1) = {" -s -Y -Y -H -L -"} -(6,1,1) = {" -s -Y -e -Y -L -"} -(7,1,1) = {" -r -n -Z -n -g -"} -(8,1,1) = {" -s -J -U -Y -L -"} -(9,1,1) = {" -s -k -W -Y -L -"} -(10,1,1) = {" -u -f -Y -Y -L -"} -(11,1,1) = {" -p -b -C -G -i -"} -(12,1,1) = {" -s -Y -Y -Y -L -"} -(13,1,1) = {" -d -j -M -j -x -"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm deleted file mode 100644 index ddf166738112..000000000000 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm +++ /dev/null @@ -1,1100 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"aU" = ( -/obj/structure/sign/poster{ - icon_state = "poster12"; - pixel_x = 6; - pixel_y = 8 - }, -/turf/open/space/basic, -/area/template_noop) -"bz" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/template_noop) -"bO" = ( -/turf/open/floor/prison/floorscorched1, -/area/template_noop) -"bZ" = ( -/turf/open/floor/prison/floorscorched2, -/area/template_noop) -"cz" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"cL" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"cM" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/whitepurple/southwest, -/area/template_noop) -"dR" = ( -/obj/structure/bookcase/manuals/research_and_development{ - pixel_y = 10 - }, -/turf/open/floor/prison/whitepurple/north, -/area/template_noop) -"eG" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/prop/helmetgarb/riot_shield, -/obj/item/prop/helmetgarb/riot_shield, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"eQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"fg" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitepurple, -/area/template_noop) -"fk" = ( -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 8; - pixel_y = 7 - }, -/turf/open/space/basic, -/area/template_noop) -"gy" = ( -/turf/open/floor/prison/whitepurple/west, -/area/template_noop) -"gB" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"gR" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/obj/structure/machinery/door/airlock/prison/horizontal{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"hq" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - dir = 4; - icon_state = "door_open" - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"jt" = ( -/obj/structure/barricade/metal/wired{ - dir = 4; - health = 150 - }, -/turf/open/floor/prison/whitepurple/north, -/area/template_noop) -"jM" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/turf/open/floor/prison/whitepurple/southeast, -/area/template_noop) -"ke" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"ks" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/card/id/visa, -/turf/open/floor/prison/whitepurple/northwest, -/area/template_noop) -"kx" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"kY" = ( -/turf/open/floor/prison/platingdmg1, -/area/template_noop) -"me" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/prison/whitepurple/southeast, -/area/template_noop) -"mu" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison/whitepurple/southwest, -/area/template_noop) -"mz" = ( -/obj/item/tool/kitchen/utensil/pspoon, -/turf/open/space/basic, -/area/template_noop) -"no" = ( -/obj/structure/barricade/metal/wired{ - dir = 4; - health = 200 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"nw" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/whitepurple/southwest, -/area/template_noop) -"on" = ( -/obj/structure/barricade/metal/wired{ - dir = 1; - health = 55 - }, -/turf/open/floor/prison/whitepurple/southwest, -/area/template_noop) -"oR" = ( -/turf/open/floor/prison/whitepurple/southeast, -/area/template_noop) -"pp" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison/damaged1/southwest, -/area/template_noop) -"pP" = ( -/turf/open/floor/prison/whitepurplecorner/west, -/area/template_noop) -"qk" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/whitepurple/southeast, -/area/template_noop) -"qu" = ( -/turf/open/floor/prison/damaged1/southwest, -/area/template_noop) -"qL" = ( -/turf/open/floor/prison/panelscorched, -/area/template_noop) -"rb" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/blood/writing{ - dir = 6 - }, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison/whitepurple/northeast, -/area/template_noop) -"sa" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitepurple/southwest, -/area/template_noop) -"tc" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/toy/deck, -/turf/open/floor/prison/whitepurple/southeast, -/area/template_noop) -"tr" = ( -/turf/open/floor/prison/whitepurple/east, -/area/template_noop) -"tB" = ( -/obj/structure/barricade/metal/wired{ - dir = 1; - health = 65 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"tD" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitepurple, -/area/template_noop) -"tI" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison/whitepurple/north, -/area/template_noop) -"tN" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"ux" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison/whitepurple/southwest, -/area/template_noop) -"uF" = ( -/obj/effect/decal/prints{ - pixel_y = 3; - pixel_x = -10 - }, -/turf/open/floor/prison/whitepurple/west, -/area/template_noop) -"uM" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison/whitepurple/southeast, -/area/template_noop) -"we" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"wv" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"wy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/implant/loyalty{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/implant/loyalty{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/implanter{ - pixel_x = -4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"xy" = ( -/obj/structure/grille, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"yv" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison/whitepurple/southeast, -/area/template_noop) -"zj" = ( -/obj/item/stack/sheet/metal{ - pixel_y = -9; - pixel_x = 8 - }, -/turf/open/floor/prison/whitepurple/southwest, -/area/template_noop) -"zA" = ( -/turf/open/floor/prison/whitepurple/northeast, -/area/template_noop) -"zT" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/whitepurple/northwest, -/area/template_noop) -"Bl" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/whitepurple/southeast, -/area/template_noop) -"Bx" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/prison/whitepurple/west, -/area/template_noop) -"Dq" = ( -/obj/structure/barricade/metal/wired{ - dir = 4; - health = 50 - }, -/obj/item/stack/sheet/metal{ - pixel_y = 4; - pixel_x = -10 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"Dt" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/prison/whitepurple/southeast, -/area/template_noop) -"DE" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 - }, -/turf/open/floor/prison/whitepurple/northwest, -/area/template_noop) -"DV" = ( -/turf/open/floor/prison/whitepurple/north, -/area/template_noop) -"EQ" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/prison/whitepurple/northeast, -/area/template_noop) -"ES" = ( -/turf/open/floor/prison/whitepurple/southwest, -/area/template_noop) -"Fc" = ( -/turf/open/floor/prison/whitepurple/northwest, -/area/template_noop) -"FP" = ( -/obj/structure/barricade/metal/wired{ - dir = 4; - health = 55 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"Gy" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"GR" = ( -/turf/closed/wall/r_wall/prison_unmeltable{ - desc = "A huge chunk of metal used to seperate rooms."; - name = "metal wall" - }, -/area/template_noop) -"Hf" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints, -/turf/open/floor/prison/whitepurple/north, -/area/template_noop) -"Hp" = ( -/turf/open/floor/prison/whitepurple, -/area/template_noop) -"Hw" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/turf/open/floor/prison/whitepurple/northeast, -/area/template_noop) -"HN" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"Id" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"Ig" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"Io" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison/floorscorched1, -/area/template_noop) -"Ix" = ( -/obj/structure/machinery/door/airlock/prison/horizontal, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"IN" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/whitepurple/north, -/area/template_noop) -"IW" = ( -/turf/open/floor/prison/damaged2, -/area/template_noop) -"Jm" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison/whitepurple/southeast, -/area/template_noop) -"JQ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison/whitepurple/southwest, -/area/template_noop) -"Kc" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"Kj" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/prison/whitepurple/east, -/area/template_noop) -"KF" = ( -/turf/open/floor/prison/damaged3, -/area/template_noop) -"LM" = ( -/turf/closed/wall/prison, -/area/template_noop) -"LQ" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"Mj" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/fancy/crayons, -/turf/open/floor/prison/whitepurple/southeast, -/area/template_noop) -"Mo" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/plating/prison, -/area/template_noop) -"MD" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"MI" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/core, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"MO" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"Nr" = ( -/obj/structure/machinery/light/double/blue, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison/whitepurple, -/area/template_noop) -"Ns" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/item/restraint/handcuffs{ - pixel_x = -3; - pixel_y = 10 - }, -/obj/item/restraint/handcuffs{ - pixel_x = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"NI" = ( -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"Oo" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/space/basic, -/area/template_noop) -"Pd" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints, -/turf/open/floor/prison/whitepurple/east, -/area/template_noop) -"Pk" = ( -/obj/effect/decal/cleanable/spiderling_remains, -/turf/open/floor/prison/whitepurple/southeast, -/area/template_noop) -"PS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"Qc" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/whitepurple/northwest, -/area/template_noop) -"Qn" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/whitepurple/east, -/area/template_noop) -"QF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ - icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"QU" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"Sx" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/floorscorched2, -/area/template_noop) -"TD" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints, -/turf/open/floor/prison/whitepurple, -/area/template_noop) -"TE" = ( -/obj/structure/barricade/metal/wired{ - dir = 1; - health = 150 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/template_noop) -"TH" = ( -/turf/open/floor/prison/platingdmg3, -/area/template_noop) -"VP" = ( -/obj/structure/barricade/metal/wired{ - dir = 8; - health = 200 - }, -/turf/open/floor/prison/whitepurple/northwest, -/area/template_noop) -"VQ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison/whitepurple/west, -/area/template_noop) -"Wo" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitepurple/northeast, -/area/template_noop) -"Yw" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/prison, -/area/template_noop) -"Yx" = ( -/obj/structure/barricade/metal/wired{ - dir = 8; - health = 55 - }, -/turf/open/floor/prison/whitepurple, -/area/template_noop) -"YY" = ( -/turf/open/floor/prison/platingdmg2, -/area/template_noop) -"Zi" = ( -/turf/open/space/basic, -/area/template_noop) -"Zw" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/fancy/cigar/tarbacks, -/turf/open/floor/prison/whitepurple/southeast, -/area/template_noop) - -(1,1,1) = {" -LM -LM -ks -ES -Ix -aa -NI -tD -LM -LQ -Mo -LM -LQ -Mo -LM -LQ -Mo -LM -"} -(2,1,1) = {" -NI -LM -dR -Hp -Mo -DV -Sx -Yx -LM -Fc -nw -LM -Qc -nw -LM -Fc -nw -LM -"} -(3,1,1) = {" -cL -LM -Hw -yv -Mo -jt -no -Hp -LM -Hw -yv -LM -Hw -yv -LM -Hw -yv -LM -"} -(4,1,1) = {" -cL -Yw -LM -LM -LM -DV -NI -Nr -Yw -LM -LM -LM -LM -LM -LM -LM -LM -LM -"} -(5,1,1) = {" -cL -LM -DE -JQ -LM -DV -qL -Hp -LM -DE -JQ -LM -DE -JQ -LM -DE -JQ -LM -"} -(6,1,1) = {" -cL -LM -zA -qk -LM -IN -NI -Hp -LM -zA -qk -LM -zA -qk -LM -zA -uM -LM -"} -(7,1,1) = {" -tN -LM -LQ -Mo -LM -DV -NI -fg -LM -hq -Mo -LM -LQ -Mo -LM -LQ -Mo -LM -"} -(8,1,1) = {" -Kc -QF -Fc -VQ -gy -Io -NI -pP -gy -uF -ES -gB -KF -gy -gy -TH -ES -TE -"} -(9,1,1) = {" -MO -NI -pp -tr -tr -tr -tr -Kj -tr -qu -Pk -cL -zA -Pd -tr -Qn -oR -tB -"} -(10,1,1) = {" -MD -GR -hq -Mo -GR -gR -Mo -LM -cL -cL -kx -LM -hq -Mo -LM -LQ -Mo -LM -"} -(11,1,1) = {" -NI -GR -Fc -cM -GR -Fc -nw -LM -cL -YY -cL -LM -zT -mu -LM -Fc -nw -LM -"} -(12,1,1) = {" -PS -GR -Hw -yv -GR -Hw -yv -LM -eQ -cL -cL -LM -rb -yv -LM -Hw -Bl -LM -"} -(13,1,1) = {" -Ig -GR -GR -GR -GR -LM -LM -LM -Ns -cL -tN -Yw -LM -LM -LM -LM -LM -LM -"} -(14,1,1) = {" -cz -GR -mz -Zi -GR -DE -JQ -LM -wy -cL -bZ -LM -DE -JQ -LM -DE -JQ -LM -"} -(15,1,1) = {" -Gy -GR -Oo -Zi -GR -zA -jM -LM -eG -HN -cL -LM -zA -qk -LM -zA -tc -LM -"} -(16,1,1) = {" -wv -GR -aU -fk -GR -LQ -Mo -LM -we -cL -Id -LM -LQ -Mo -LM -LQ -Mo -LM -"} -(17,1,1) = {" -bz -GR -GR -GR -GR -cL -cL -cL -cL -YY -cL -cL -Fc -Bx -gy -bO -zj -QU -"} -(18,1,1) = {" -bz -LM -LM -LM -xy -kY -cL -ke -cL -cL -MI -cL -EQ -YY -tr -tr -me -Dq -"} -(19,1,1) = {" -bz -LM -LM -LM -LM -cL -cL -cL -LM -LQ -Mo -LM -LQ -Mo -LM -hq -Mo -LM -"} -(20,1,1) = {" -bz -LM -LM -LM -xy -VP -gy -on -LM -Fc -nw -LM -Fc -nw -LM -Fc -nw -LM -"} -(21,1,1) = {" -bz -LM -LM -LM -LM -DV -aa -Hp -LM -Wo -yv -LM -Hw -yv -LM -Hw -Jm -LM -"} -(22,1,1) = {" -bz -LM -LM -LM -LM -Hf -FP -Hp -Yw -LM -LM -LM -LM -LM -LM -LM -LM -LM -"} -(23,1,1) = {" -bz -LM -DE -sa -LM -DV -NI -Hp -LM -DE -JQ -LM -DE -JQ -LM -DE -ux -LM -"} -(24,1,1) = {" -bz -LM -zA -Dt -LM -tI -IW -TD -LM -zA -Zw -LM -zA -Mj -LM -zA -qk -LM -"} -(25,1,1) = {" -bz -LM -LQ -Mo -LM -DV -NI -Hp -LM -LQ -Mo -LM -LQ -Mo -LM -LQ -Mo -LM -"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm deleted file mode 100644 index 1f23f9fb037d..000000000000 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm +++ /dev/null @@ -1,247 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/closed/wall/prison, -/area/template_noop) -"e" = ( -/turf/open/floor/plating/prison, -/area/template_noop) -"h" = ( -/turf/open/floor/prison/greenfull/east, -/area/template_noop) -"k" = ( -/obj/structure/sign/poster/hero/voteno{ - pixel_y = 29 - }, -/turf/open/floor/prison/greenfull/east, -/area/template_noop) -"n" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/prison/greenfull/east, -/area/template_noop) -"o" = ( -/turf/closed/wall/mineral/bone_resin, -/area/template_noop) -"s" = ( -/turf/open/floor/prison/greenfull/northwest, -/area/template_noop) -"t" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"x" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/cell/super{ - pixel_y = 12 - }, -/obj/item/cell/super, -/obj/item/storage/pill_bottle/happy{ - layer = 2.8; - pixel_y = -7 - }, -/turf/open/floor/prison/greenfull/east, -/area/template_noop) -"z" = ( -/obj/structure/coatrack, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/item/clothing/suit/storage/bomber, -/obj/item/clothing/head/beret/centcom/officer{ - pixel_x = -2; - pixel_y = 13 - }, -/turf/open/floor/prison/greenfull/east, -/area/template_noop) -"D" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/greenfull/east, -/area/template_noop) -"E" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/item/paper{ - desc = "The image appears to be someone's backside, the page number is labled as 259." - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"F" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/electrical{ - pixel_x = -1; - pixel_y = 11 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 5; - pixel_x = -1 - }, -/obj/item/storage/toolbox/syndicate{ - pixel_x = -1 - }, -/obj/structure/sign/poster/music{ - pixel_y = 29 - }, -/obj/item/weapon/butterfly{ - pixel_x = 17 - }, -/turf/open/floor/prison/greenfull/east, -/area/template_noop) -"O" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - icon_state = "mwo"; - pixel_y = 6 - }, -/turf/open/floor/prison/greenfull/east, -/area/template_noop) -"Q" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "Residential Apartment" - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"S" = ( -/obj/item/storage/firstaid/regular/empty{ - pixel_x = 14 - }, -/turf/open/floor/prison/greenfull/east, -/area/template_noop) -"T" = ( -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"V" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/close, -/obj/item/pamphlet/engineer, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"X" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/effect/landmark/objective_landmark/medium, -/obj/item/storage/backpack/marine/engineerpack/satchel, -/turf/open/floor/prison/greenfull/east, -/area/template_noop) -"Z" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/beret/eng{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/book/manual/engineering_guide{ - pixel_x = -4 - }, -/turf/open/floor/prison/greenfull/east, -/area/template_noop) - -(1,1,1) = {" -a -a -a -a -a -a -a -"} -(2,1,1) = {" -Q -h -n -a -F -S -Q -"} -(3,1,1) = {" -a -O -D -a -x -z -a -"} -(4,1,1) = {" -a -a -a -a -a -a -a -"} -(5,1,1) = {" -Q -h -Z -a -V -h -Q -"} -(6,1,1) = {" -a -k -X -a -t -E -a -"} -(7,1,1) = {" -a -a -a -a -a -a -a -"} -(8,1,1) = {" -o -o -o -o -o -e -e -"} -(9,1,1) = {" -T -o -T -s -s -s -s -"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm deleted file mode 100644 index f9816fe31821..000000000000 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm +++ /dev/null @@ -1,430 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/structure/kitchenspike, -/turf/open/floor/prison/kitchen, -/area/template_noop) -"b" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison/blue/southwest, -/area/template_noop) -"c" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 6 - }, -/turf/open/floor/prison/kitchen, -/area/template_noop) -"d" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/sliceable/pizza/meatpizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/meatpizza{ - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/sliceable/pizza/meatpizza{ - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/sliceable/pizza/meatpizza{ - pixel_y = 10 - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"e" = ( -/obj/effect/decal/cleanable/flour, -/turf/open/floor/prison/blue/northwest, -/area/template_noop) -"f" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/chem_dispenser/soda, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"g" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/sliceable/flatdough{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/snacks/sliceable/flatdough{ - pixel_y = -2 - }, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison/kitchen, -/area/template_noop) -"i" = ( -/turf/open/space, -/area/template_noop) -"j" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 9 - }, -/obj/item/reagent_container/food/snacks/tomatomeat{ - pixel_x = -6 - }, -/obj/item/reagent_container/food/snacks/tomatomeat{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/tomatomeat{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/prison/blue/southeast, -/area/template_noop) -"k" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sink{ - pixel_y = 32 - }, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/prison/kitchen, -/area/template_noop) -"l" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/prison/kitchen, -/area/template_noop) -"m" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/effect/landmark/objective_landmark/close, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/turf/open/floor/prison/kitchen, -/area/template_noop) -"o" = ( -/obj/effect/landmark/corpsespawner/pizza/burst, -/turf/open/floor/prison/kitchen, -/area/template_noop) -"p" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/dr_gibb{ - pixel_x = 8; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/space_mountain_wind{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/space_up{ - pixel_x = -9; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/classcola{ - pixel_x = 8 - }, -/obj/item/reagent_container/food/drinks/cans/cola, -/obj/item/reagent_container/food/drinks/cans/starkist{ - pixel_x = -9 - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"q" = ( -/obj/item/reagent_container/food/snacks/cheesewedge/verymature{ - pixel_y = -16; - pixel_x = 9 - }, -/turf/open/floor/prison/kitchen, -/area/template_noop) -"r" = ( -/turf/open/floor/prison/blue/west, -/area/template_noop) -"s" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/template_noop) -"t" = ( -/turf/open/floor/prison/blue/northeast, -/area/template_noop) -"u" = ( -/obj/effect/decal/cleanable/flour, -/turf/open/floor/prison/blue/east, -/area/template_noop) -"v" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/template_noop) -"w" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/template_noop) -"x" = ( -/obj/structure/machinery/reagentgrinder/industrial{ - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/kitchen, -/area/template_noop) -"y" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, -/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, -/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, -/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, -/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, -/turf/open/floor/prison/kitchen, -/area/template_noop) -"z" = ( -/turf/closed/wall/prison, -/area/template_noop) -"A" = ( -/turf/open/floor/prison/blue/north, -/area/template_noop) -"B" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/storage/box/cups, -/obj/item/toy/deck{ - pixel_x = 12; - pixel_y = -2 - }, -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"C" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ - pixel_y = -8 - }, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ - pixel_y = -3 - }, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ - pixel_y = 2 - }, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ - pixel_y = 7 - }, -/turf/open/floor/prison/kitchen, -/area/template_noop) -"D" = ( -/obj/item/stool, -/turf/open/floor/prison/blue/west, -/area/template_noop) -"E" = ( -/obj/structure/machinery/gibber, -/obj/effect/decal/cleanable/egg_smudge, -/turf/open/floor/prison/kitchen, -/area/template_noop) -"G" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/pizzabox/margherita, -/obj/item/pizzabox/mystery{ - pixel_y = 3 - }, -/obj/item/pizzabox/vegetable{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_y = 13; - pixel_x = -7 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 6; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"H" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/turf/open/floor/prison/kitchen, -/area/template_noop) -"I" = ( -/obj/effect/decal/cleanable/egg_smudge, -/turf/open/floor/prison/kitchen, -/area/template_noop) -"K" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/item/tool/kitchen/pizzacutter, -/turf/open/floor/prison/kitchen, -/area/template_noop) -"L" = ( -/turf/open/floor/prison/kitchen, -/area/template_noop) -"M" = ( -/obj/structure/sign/safety/fridge, -/turf/closed/wall/prison, -/area/template_noop) -"N" = ( -/turf/open/floor/prison/blue/east, -/area/template_noop) -"O" = ( -/obj/item/card/id/pizza, -/turf/open/floor/prison/blue/east, -/area/template_noop) -"P" = ( -/obj/structure/lattice, -/turf/open/space, -/area/template_noop) -"Q" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/prison/kitchen, -/area/template_noop) -"S" = ( -/obj/effect/decal/cleanable/blood/writing{ - icon_state = "u_psycopath_l"; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/blood/writing{ - icon_state = "u_ketchup_l"; - pixel_x = 8; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/blood/writing{ - icon_state = "u_guilty_l"; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/flour, -/turf/open/floor/prison/kitchen, -/area/template_noop) -"T" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/template_noop) -"U" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/pizzabox/mystery/stack, -/obj/item/reagent_container/food/snacks/vegetablepizzaslice{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/reagent_container/food/snacks/vegetablepizzaslice{ - pixel_x = 5; - pixel_y = 7 - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"X" = ( -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"Y" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison/blue, -/area/template_noop) - -(1,1,1) = {" -z -U -d -G -p -z -s -T -T -T -"} -(2,1,1) = {" -v -e -D -r -r -r -r -r -b -w -"} -(3,1,1) = {" -v -A -X -X -B -f -X -X -Y -w -"} -(4,1,1) = {" -v -t -O -N -N -u -N -N -j -w -"} -(5,1,1) = {" -z -l -I -a -z -M -s -T -T -T -"} -(6,1,1) = {" -z -k -o -C -T -m -L -y -T -i -"} -(7,1,1) = {" -z -x -S -c -T -K -q -H -T -i -"} -(8,1,1) = {" -z -E -g -Q -T -w -w -w -T -i -"} -(9,1,1) = {" -T -T -w -T -T -i -i -i -P -i -"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm deleted file mode 100644 index bba4398e4d95..000000000000 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm +++ /dev/null @@ -1,402 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/turf/open/space, -/area/template_noop) -"b" = ( -/obj/item/stock_parts/subspace/filter{ - pixel_y = 6 - }, -/turf/open/space, -/area/template_noop) -"c" = ( -/obj/structure/cargo_container/grant/left{ - desc = "A huge industrial shipping container. This one is in space." - }, -/turf/open/space, -/area/template_noop) -"d" = ( -/obj/item/clothing/head/helmet/space{ - pixel_x = -7; - pixel_y = -8 - }, -/turf/open/space/basic, -/area/template_noop) -"e" = ( -/turf/open/floor/prison/floor_plate, -/area/template_noop) -"f" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison, -/area/template_noop) -"g" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/turf/open/space, -/area/template_noop) -"h" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/item/stack/sheet/metal, -/turf/open/space, -/area/template_noop) -"i" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/space, -/area/template_noop) -"j" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/plating/prison, -/area/template_noop) -"l" = ( -/obj/item/limb/head/synth{ - pixel_x = -9; - icon_state = "scandinavian_head_m" - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/space/basic, -/area/template_noop) -"m" = ( -/turf/open/floor/almayer_hull, -/area/template_noop) -"n" = ( -/obj/structure/cargo_container/grant/right{ - desc = "A huge industrial shipping container. You're not sure how it got here." - }, -/turf/open/space, -/area/template_noop) -"p" = ( -/turf/open/floor/prison, -/area/template_noop) -"q" = ( -/turf/open/floor/plating/prison, -/area/template_noop) -"s" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/space, -/area/template_noop) -"t" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/space, -/area/template_noop) -"u" = ( -/turf/open/space, -/area/template_noop) -"v" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/item/book/manual/engineering_construction, -/turf/open/space/basic, -/area/template_noop) -"w" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty"; - name = "solar lattice"; - pixel_y = 6 - }, -/turf/open/floor/almayer_hull, -/area/template_noop) -"x" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/template_noop) -"y" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison/darkyellow2/west, -/area/template_noop) -"z" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/item/clothing/head/cardborg, -/turf/open/space, -/area/template_noop) -"A" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/space/basic, -/area/template_noop) -"B" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/space, -/area/template_noop) -"D" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"E" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison, -/area/template_noop) -"F" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/template_noop) -"G" = ( -/turf/open/floor/prison/darkyellow2/north, -/area/template_noop) -"H" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank, -/turf/open/space, -/area/template_noop) -"I" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/effect/spawner/random/tool{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/effect/spawner/random/tool{ - pixel_x = 9 - }, -/turf/open/space, -/area/template_noop) -"J" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/item/stack/sheet/metal, -/turf/open/space, -/area/template_noop) -"L" = ( -/turf/open/floor/prison/darkyellow2/west, -/area/template_noop) -"M" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/space, -/area/template_noop) -"N" = ( -/turf/open/floor/solarpanel, -/area/template_noop) -"O" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/space, -/area/template_noop) -"P" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/almayer_hull, -/area/template_noop) -"Q" = ( -/turf/open/auto_turf/sand/layer1, -/area/template_noop) -"R" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/space/basic, -/area/template_noop) -"S" = ( -/turf/open/space/basic, -/area/template_noop) -"T" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison/darkyellow2, -/area/template_noop) -"U" = ( -/obj/item/stack/sheet/metal, -/turf/open/space, -/area/template_noop) -"V" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/item/circuitboard/solar_tracker, -/turf/open/space, -/area/template_noop) -"W" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/almayer_hull, -/area/template_noop) -"X" = ( -/turf/open/floor/prison/darkyellow2/northwest, -/area/template_noop) -"Y" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/space, -/area/template_noop) -"Z" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/space, -/area/template_noop) - -(1,1,1) = {" -x -F -F -F -F -F -F -F -p -"} -(2,1,1) = {" -F -S -H -M -m -Z -u -x -F -"} -(3,1,1) = {" -F -A -I -t -W -J -s -i -F -"} -(4,1,1) = {" -F -R -N -N -w -N -N -g -F -"} -(5,1,1) = {" -F -v -N -N -m -N -N -g -F -"} -(6,1,1) = {" -F -R -N -N -w -N -N -g -F -"} -(7,1,1) = {" -F -l -V -O -P -Y -a -B -x -"} -(8,1,1) = {" -F -d -u -h -m -z -u -b -x -"} -(9,1,1) = {" -x -F -F -F -F -x -u -c -x -"} -(10,1,1) = {" -x -j -Q -Q -Q -F -u -n -F -"} -(11,1,1) = {" -f -E -q -Q -Q -F -u -u -F -"} -(12,1,1) = {" -X -y -L -q -D -F -U -u -F -"} -(13,1,1) = {" -G -p -e -T -p -x -F -F -x -"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/unused/20.medicalhold.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/unused/20.medicalhold.dmm deleted file mode 100644 index 8ec3365773a2..000000000000 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/unused/20.medicalhold.dmm +++ /dev/null @@ -1,934 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aG" = ( -/obj/structure/bed/chair{ - layer = 2.7; - dir = 4 - }, -/turf/open/floor/prison/whitegreen, -/area/template_noop) -"aZ" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/obj/item/bedsheet/medical, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"bl" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/whitegreen/east, -/area/template_noop) -"bm" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/obj/structure/inflatable/door, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"bs" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/template_noop) -"bv" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"bN" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/template_noop) -"cO" = ( -/obj/structure/machinery/door/airlock/almayer/marine{ - icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi'; - icon_state = "door_open" - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"dg" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"dp" = ( -/turf/open/floor/prison/whitegreen/east, -/area/template_noop) -"dK" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/prison/whitegreen/southeast, -/area/template_noop) -"eb" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"eO" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/prison/whitegreen, -/area/template_noop) -"fn" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/whitegreen, -/area/template_noop) -"go" = ( -/obj/structure/sign/prop3{ - desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." - }, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/template_noop) -"gC" = ( -/obj/structure/largecrate/supply/medicine/medkits, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"ir" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/whitegreen/west, -/area/template_noop) -"it" = ( -/turf/open/floor/prison/whitegreen/northeast, -/area/template_noop) -"iK" = ( -/obj/structure/janitorialcart, -/turf/open/floor/prison, -/area/template_noop) -"jy" = ( -/turf/open/floor/prison/whitegreen/west, -/area/template_noop) -"kE" = ( -/turf/closed/wall/prison, -/area/template_noop) -"kG" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"kK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"kY" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/obj/structure/inflatable/door, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"kZ" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"lm" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/obj/structure/inflatable/popped, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"nj" = ( -/obj/structure/bed/chair/janicart, -/turf/open/floor/prison, -/area/template_noop) -"no" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/plating/prison, -/area/template_noop) -"nx" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor/prison/whitegreencorner/east, -/area/template_noop) -"nJ" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"nR" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison/whitegreen/north, -/area/template_noop) -"nX" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/obj/item/bedsheet/medical, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"of" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/item/storage/beer_pack{ - pixel_y = 6; - layer = 3.1 - }, -/turf/open/floor/prison/whitegreen/southeast, -/area/template_noop) -"oy" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/template_noop) -"ph" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/template_noop) -"pR" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/whitegreen/east, -/area/template_noop) -"qb" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison/whitegreen/east, -/area/template_noop) -"qe" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/whitegreen/west, -/area/template_noop) -"qS" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/template_noop) -"sk" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/obj/item/bedsheet/medical, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"tE" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"tL" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/whitegreencorner, -/area/template_noop) -"uE" = ( -/turf/open/floor/prison/whitegreen/southwest, -/area/template_noop) -"uG" = ( -/obj/effect/decal/prints{ - pixel_y = -10 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"uU" = ( -/obj/item/storage/pill_bottle/tramadol/skillless, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"vA" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"xC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery{ - pixel_y = 4 - }, -/obj/item/storage/surgical_tray, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/template_noop) -"xY" = ( -/obj/structure/largecrate/random/case/double{ - pixel_y = 8; - pixel_x = -5 - }, -/obj/structure/largecrate/random/case/double{ - pixel_y = -4; - pixel_x = -5 - }, -/obj/structure/largecrate/random/case/double{ - pixel_y = -17; - pixel_x = -5 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"zm" = ( -/obj/structure/machinery/optable, -/obj/item/bedsheet/rainbow, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/whitegreen, -/area/template_noop) -"zG" = ( -/turf/open/floor/prison/whitegreencorner/west, -/area/template_noop) -"Be" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/template_noop) -"BS" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison/whitegreen/north, -/area/template_noop) -"Cr" = ( -/obj/structure/largecrate/random/barrel/yellow{ - pixel_x = 6; - pixel_y = -11; - layer = 2.8 - }, -/obj/structure/largecrate/random/barrel/yellow{ - pixel_x = -13; - pixel_y = -4; - layer = 2.9 - }, -/obj/structure/largecrate/random/barrel/yellow{ - pixel_x = 6; - pixel_y = 6; - layer = 2.7 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"CA" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/template_noop) -"Df" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/prison/whitegreen/west, -/area/template_noop) -"Es" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/prison, -/area/template_noop) -"EB" = ( -/obj/structure/bed/chair{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"ES" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" - }, -/obj/structure/inflatable, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/template_noop) -"EZ" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/template_noop) -"Gl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"GI" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/inflatable/door, -/turf/open/floor/plating/prison, -/area/template_noop) -"GL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/template_noop) -"GT" = ( -/obj/structure/machinery/cryo_cell, -/turf/open/floor/plating/plating_catwalk/prison, -/area/template_noop) -"Hq" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" - }, -/obj/structure/inflatable, -/turf/open/floor/prison/whitegreen/northwest, -/area/template_noop) -"Hw" = ( -/obj/item/ammo_casing{ - icon_state = "cartridge_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/template_noop) -"HS" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/whitegreen/east, -/area/template_noop) -"IK" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.8 - }, -/obj/structure/largecrate/random/barrel{ - pixel_x = -8; - layer = 2.9 - }, -/obj/structure/largecrate/random/barrel{ - pixel_x = 13; - layer = 2.9 - }, -/obj/structure/largecrate/random/barrel{ - pixel_x = 3; - layer = 2.9; - pixel_y = -8 - }, -/turf/open/floor/prison/whitegreen/north, -/area/template_noop) -"JJ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 4; - layer = 2.8 - }, -/turf/open/floor/prison/whitegreen/north, -/area/template_noop) -"JL" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/inflatable, -/turf/open/floor/prison/whitegreen, -/area/template_noop) -"JW" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/obj/structure/inflatable/popped, -/turf/open/floor/prison/whitegreen/west, -/area/template_noop) -"Kk" = ( -/obj/structure/machinery/door/airlock/almayer/marine{ - icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"Kp" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomright" - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_y = 13 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/template_noop) -"Ky" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/whitegreencorner, -/area/template_noop) -"KF" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"KJ" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/whitegreencorner/east, -/area/template_noop) -"Mi" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/prison/whitegreen/southwest, -/area/template_noop) -"NV" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/structure/largecrate/supply/medicine/blood, -/turf/open/floor/prison/whitegreen/east, -/area/template_noop) -"Od" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/template_noop) -"Ou" = ( -/obj/structure/bed/chair{ - dir = 8; - layer = 2.7 - }, -/obj/effect/decal/cleanable/mucus{ - pixel_x = -16 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"OH" = ( -/obj/structure/largecrate/random/case/double{ - pixel_y = 8 - }, -/obj/structure/largecrate/random/case/double{ - pixel_y = -4 - }, -/obj/structure/largecrate/random/case/double{ - pixel_y = -18 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"Pa" = ( -/obj/structure/largecrate/supply/weapons/pistols, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/template_noop) -"Pd" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/prison/whitegreen/southwest, -/area/template_noop) -"Pt" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/template_noop) -"PE" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/template_noop) -"PS" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/obj/structure/inflatable, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"PV" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison/whitegreencorner/west, -/area/template_noop) -"QG" = ( -/turf/open/floor/prison/whitegreen/north, -/area/template_noop) -"Ro" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/template_noop) -"RG" = ( -/obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"Sz" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel, -/obj/structure/largecrate/random/barrel{ - pixel_x = 16; - layer = 3.1; - pixel_y = -4 - }, -/turf/open/floor/prison/whitegreen/north, -/area/template_noop) -"Tb" = ( -/obj/structure/bed/chair{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"TF" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/obj/structure/inflatable, -/turf/open/floor/prison/whitegreen/north, -/area/template_noop) -"TV" = ( -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"UI" = ( -/turf/open/floor/prison/whitegreen, -/area/template_noop) -"US" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/obj/structure/inflatable, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"Va" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/prison, -/area/template_noop) -"Vp" = ( -/turf/open/floor/prison/whitegreen/northwest, -/area/template_noop) -"VD" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreen, -/area/template_noop) -"WP" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/template_noop) -"WY" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"Xl" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) -"Yy" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/template_noop) -"Yz" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/plating/prison, -/area/template_noop) -"Zg" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, -/turf/closed/wall/prison, -/area/template_noop) -"Zp" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/machinery/defenses/bell_tower/md, -/turf/open/floor/prison/sterile_white/southwest, -/area/template_noop) - -(1,1,1) = {" -Hw -oy -bs -bv -WP -Be -Vp -nx -zG -uE -Kp -kE -Gl -no -Va -kE -kE -kE -"} -(2,1,1) = {" -kE -kE -kE -go -Hq -qe -KJ -kG -WY -PV -JW -ir -qe -qe -Df -Mi -Pa -kE -"} -(3,1,1) = {" -bN -Be -kE -kE -IK -TV -TV -TV -TV -TV -lm -TV -TV -TV -TV -eO -Yy -kE -"} -(4,1,1) = {" -GL -Be -eb -GI -JJ -TV -Zp -nJ -kK -TV -bm -TV -TV -TV -kK -UI -kE -kE -"} -(5,1,1) = {" -Be -oy -kE -kE -Sz -dg -TV -TV -TV -TV -bm -kK -TV -TV -TV -VD -kE -kE -"} -(6,1,1) = {" -kE -kE -kE -kE -nR -dg -TV -TV -TV -Cr -PS -EB -EB -EB -TV -JL -xC -Od -"} -(7,1,1) = {" -iK -kE -Ro -ES -TF -Xl -kY -US -US -Zg -Zg -aZ -TV -aZ -TV -PV -jy -Pd -"} -(8,1,1) = {" -nj -kE -EZ -Be -QG -TV -TV -uG -tE -kE -kE -sk -TV -aZ -TV -kZ -nJ -UI -"} -(9,1,1) = {" -Es -kE -GT -Be -QG -TV -kK -KF -RG -Zg -Zg -aZ -TV -nX -TV -Ky -TV -zm -"} -(10,1,1) = {" -kE -kE -GT -Be -BS -OH -TV -TV -TV -gC -WY -Ou -Tb -Tb -dg -fn -uU -UI -"} -(11,1,1) = {" -kE -Be -Be -Be -QG -xY -dg -TV -TV -TV -kZ -TV -TV -kK -dg -tL -dp -dK -"} -(12,1,1) = {" -PE -ph -Be -qS -QG -kK -TV -TV -TV -TV -vA -TV -TV -TV -TV -aG -CA -Od -"} -(13,1,1) = {" -kE -Be -Pt -bs -it -bl -pR -pR -pR -pR -pR -NV -qb -HS -pR -of -Od -Od -"} -(14,1,1) = {" -Od -Kk -cO -Kk -Od -Od -Yz -Yz -Yz -Yz -Yz -Od -cO -Kk -Kk -Od -Od -Od -"} diff --git a/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm b/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm deleted file mode 100644 index 98b92955e2dd..000000000000 --- a/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm +++ /dev/null @@ -1,1966 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"am" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box{ - pixel_y = 6 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"aE" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"aK" = ( -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/prison, -/area/fiorina/station/security) -"aX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"bb" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"bl" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"bm" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"bC" = ( -/obj/effect/landmark/survivor_spawner/fiorina_armory_riot_control, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"bO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"ce" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"ch" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"cn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"co" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"cr" = ( -/obj/structure/sign/poster/clf, -/turf/closed/wall/prison, -/area/fiorina/station/security) -"cI" = ( -/obj/structure/platform, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/security) -"cZ" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"do" = ( -/obj/structure/coatrack, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"dT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"eK" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"fd" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/prison, -/area/fiorina/station/security) -"fh" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"fs" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/prison, -/area/fiorina/station/security) -"fy" = ( -/obj/item/explosive/grenade/flashbang, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"fX" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"fZ" = ( -/obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison, -/area/fiorina/station/security) -"gk" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/reagent_container/glass/bottle/robot/antitoxin, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"gl" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"gI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"gT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_27"; - layer = 3.1; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"gV" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"hg" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"hI" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"hY" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"is" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"iK" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"jb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"ji" = ( -/obj/item/device/flash, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"jI" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"jJ" = ( -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"jL" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/lz/near_lzII) -"jW" = ( -/obj/item/frame/table/almayer, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"ke" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"kX" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/storage/belt/shotgun, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"lv" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/security) -"lA" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/lz/near_lzII) -"lE" = ( -/obj/structure/window/reinforced, -/turf/open/floor/prison, -/area/fiorina/station/security) -"lF" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"lO" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/lz/near_lzII) -"lP" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/storage/box/pillbottles, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"lR" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"lZ" = ( -/obj/item/clothing/under/marine/ua_riot, -/obj/item/weapon/gun/rifle/m16, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"ma" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"mf" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/prison, -/area/fiorina/station/security) -"mn" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"mt" = ( -/obj/effect/spawner/random/gun/shotgun/midchance, -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison, -/area/fiorina/station/security) -"mD" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"nf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/nade_box/tear_gas, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"nl" = ( -/turf/template_noop, -/area/template_noop) -"np" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"nD" = ( -/obj/structure/platform, -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"nN" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"oi" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - locked = 1 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"on" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/launcher/grenade/m81, -/obj/item/storage/pill_bottle/kelotane, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"oE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"oS" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"pa" = ( -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = -7; - pixel_y = 11 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"pd" = ( -/obj/item/ammo_magazine/handful/shotgun/beanbag, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"pn" = ( -/obj/effect/acid_hole, -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/security) -"pp" = ( -/obj/item/ammo_casing, -/turf/open/floor/prison, -/area/fiorina/station/security) -"pE" = ( -/obj/item/clothing/glasses/sunglasses/blindfold, -/turf/open/floor/prison, -/area/fiorina/station/security) -"pN" = ( -/obj/item/ammo_box/magazine/shotgun/beanbag, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"pR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"pV" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/obj/item/tool/kitchen/utensil/knife, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"qd" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"qw" = ( -/obj/effect/landmark/survivor_spawner/fiorina_armory_riot_control, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"qQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black_random, -/obj/item/folder/red{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"qX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"qY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 10 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"rg" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"rl" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/prison, -/area/fiorina/station/security) -"rP" = ( -/obj/item/reagent_container/spray/pepper, -/turf/open/floor/prison, -/area/fiorina/station/security) -"rR" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/storage/belt/marine, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"sj" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"sq" = ( -/turf/open/floor/prison, -/area/fiorina/station/security) -"sA" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"tf" = ( -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison, -/area/fiorina/station/security) -"th" = ( -/obj/item/weapon/baton, -/turf/open/floor/prison, -/area/fiorina/station/security) -"tl" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/red/west, -/area/fiorina/station/security) -"tv" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"ty" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"tS" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/clothing/accessory/storage/holster, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"uh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flash, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"uQ" = ( -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"uX" = ( -/obj/item/ammo_magazine/shotgun/beanbag, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"vf" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/fiorina/lz/near_lzII) -"vq" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/security) -"vS" = ( -/obj/structure/filingcabinet, -/obj/structure/filingcabinet{ - pixel_x = 16 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"wi" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"wF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp{ - pixel_x = -6; - pixel_y = 16 - }, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"wH" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/item/circuitboard/airlock, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"wJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/prison, -/area/fiorina/station/security) -"wW" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison, -/area/fiorina/station/security) -"xp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"xv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/security_space_law{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"xI" = ( -/obj/effect/landmark/survivor_spawner/fiorina_armory_cmb, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"xM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/phone{ - pixel_x = 7; - pixel_y = -16 - }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 16 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"xW" = ( -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"yf" = ( -/obj/item/frame/table/reinforced, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"yn" = ( -/obj/item/weapon/classic_baton, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"yv" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/lz/near_lzII) -"yP" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"zb" = ( -/obj/structure/machinery/light/double/blue, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"zx" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/ammo_magazine/shotgun/beanbag, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"zA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 10 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"zI" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"Ac" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"Ai" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"AD" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"AM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/security_space_law{ - pixel_x = 8; - pixel_y = 1 - }, -/obj/item/book/manual/security_space_law{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/security_space_law{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"AY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 10 - }, -/obj/item/phone{ - pixel_x = 9; - pixel_y = -10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"Bd" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison, -/area/fiorina/station/security) -"BJ" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"Cb" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"CO" = ( -/obj/item/ammo_magazine/handful/shotgun/beanbag, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"De" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_y = 7 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"DH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"Ek" = ( -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/item/shard{ - icon_state = "large" - }, -/obj/item/stack/rods, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"ER" = ( -/obj/effect/landmark/survivor_spawner/fiorina_armory_riot_control, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"EV" = ( -/obj/item/frame/rack, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"Fj" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"Fr" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/lz/near_lzII) -"Fw" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison, -/area/fiorina/station/security) -"FH" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"FK" = ( -/obj/item/frame/rack, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"FQ" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/item/weapon/gun/energy/taser, -/turf/open/floor/prison, -/area/fiorina/station/security) -"FZ" = ( -/obj/item/weapon/shield/riot, -/turf/open/floor/prison, -/area/fiorina/station/security) -"Gd" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/storage/pill_bottle/alkysine, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"Gl" = ( -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"GH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/phone{ - pixel_y = -4 - }, -/obj/item/phone{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/tool/pen, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"GZ" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"Ho" = ( -/obj/structure/window_frame/prison/reinforced, -/obj/item/shard, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"HF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/pepper, -/obj/item/clothing/glasses/sunglasses/sechud, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"HH" = ( -/obj/item/weapon/gun/launcher/grenade/m81/riot, -/turf/open/floor/prison, -/area/fiorina/station/security) -"HL" = ( -/obj/item/clothing/under/color/orange, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/prison/floor_marked/southwest, -/area/fiorina/lz/near_lzII) -"HW" = ( -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/obj/item/tool/screwdriver{ - pixel_x = 5; - pixel_y = -4 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"Ie" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"Iz" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/box/flashbangs, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"IG" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/prison, -/area/fiorina/station/security) -"IK" = ( -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/lz/near_lzII) -"JR" = ( -/obj/item/ammo_casing, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"Kb" = ( -/obj/item/weapon/baton, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"KU" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"Lj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"Mg" = ( -/obj/structure/sign/poster/clf, -/turf/closed/wall/prison, -/area/fiorina/lz/near_lzII) -"Mp" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/obj/item/explosive/grenade/custom/teargas, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"MX" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"Ne" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/smg/mp5, -/obj/item/storage/belt/marine, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"NL" = ( -/obj/structure/platform, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/security) -"NN" = ( -/obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"Ox" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"OA" = ( -/obj/item/implanter/compressed, -/obj/structure/safe, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"OE" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"OV" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"Pt" = ( -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"PA" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"Qv" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"QC" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"QF" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"QJ" = ( -/turf/closed/wall/prison, -/area/fiorina/station/security) -"QV" = ( -/obj/item/frame/rack, -/obj/item/clothing/under/marine/ua_riot, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"Re" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"RR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/emeraldgreen, -/obj/item/tool/lighter, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"Sd" = ( -/obj/item/poster, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"Sl" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/security) -"Sm" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"Sn" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/security) -"Sp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"Su" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/rods, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"SD" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"SE" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"Tn" = ( -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/prison, -/area/fiorina/station/security) -"Tp" = ( -/obj/item/paper/crumpled, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"TO" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"UE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"UU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"Va" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"Vb" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"Vd" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"Vs" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"VF" = ( -/turf/closed/wall/prison, -/area/fiorina/lz/near_lzII) -"VG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"Wc" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"Wp" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/weapon/classic_baton, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"Ws" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"Wy" = ( -/obj/item/weapon/shield/riot, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"WB" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/fiorina/station/security) -"WG" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"WI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/phone{ - pixel_x = 6; - pixel_y = -15 - }, -/obj/item/phone{ - pixel_y = 7 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"WW" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"Xj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/handcuffs{ - pixel_x = 6; - pixel_y = 1 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = -7; - pixel_y = 1 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = -2; - pixel_y = 11 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"XA" = ( -/obj/item/storage/belt/marine, -/turf/open/floor/prison, -/area/fiorina/station/security) -"XO" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/lz/near_lzII) -"XV" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/security) -"Yt" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/security) -"YH" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/item/weapon/gun/energy/taser, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) -"YI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio{ - pixel_x = -6; - pixel_y = 16 - }, -/obj/item/device/radio{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"YL" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"YS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/clothing/mask/cigarette, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_y = 8 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 - }, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"YZ" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/item/shard/shrapnel, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) -"Zg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - pixel_y = 9 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/security) -"Zi" = ( -/obj/structure/machinery/line_nexter, -/obj/item/stack/cable_coil, -/turf/open/floor/prison/red/west, -/area/fiorina/station/security) -"Zo" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/redfull, -/area/fiorina/station/security) - -(1,1,1) = {" -nl -nl -nl -nl -nl -Fj -xW -FH -FH -FH -xW -Ie -Tn -Zg -vq -vq -Sl -vq -vq -nl -nl -nl -nl -nl -nl -nl -nl -nl -nl -nl -nl -"} -(2,1,1) = {" -nl -nl -nl -nl -nl -vq -Ac -is -is -is -Ac -vq -vq -vq -vq -on -yP -Vs -vq -vq -nl -nl -nl -nl -nl -nl -nl -nl -nl -nl -nl -"} -(3,1,1) = {" -nl -nl -nl -nl -nl -pn -yf -ch -ch -hI -do -vq -FH -jJ -FH -jJ -NN -lZ -EV -vq -nl -nl -nl -nl -nl -nl -nl -nl -nl -nl -nl -"} -(4,1,1) = {" -nl -nl -nl -nl -nl -vq -sA -sq -HH -sq -FH -PA -sq -tf -Gd -lP -Va -XA -FK -vq -nl -nl -nl -nl -nl -nl -nl -nl -nl -nl -nl -"} -(5,1,1) = {" -vq -vq -vq -vq -vq -vq -qQ -wW -sq -sq -FH -PA -sq -sq -wJ -mf -gk -fZ -QV -vq -nl -nl -nl -nl -nl -nl -nl -nl -nl -nl -nl -"} -(6,1,1) = {" -nl -nl -YL -lR -xW -lR -xW -FH -ER -pN -xW -vq -fd -fd -vq -lE -kX -aK -vq -vq -QJ -QJ -QJ -QJ -QJ -QJ -QJ -QJ -QJ -QJ -cr -"} -(7,1,1) = {" -nl -nl -YL -dT -GH -dT -xW -jI -FH -FH -bm -Su -YH -hg -PA -sq -sq -sq -PA -FH -sq -OA -QJ -YS -xW -ke -YL -FH -pV -Vb -QJ -"} -(8,1,1) = {" -nl -nl -YL -DH -xM -cn -HW -fy -Bd -tl -Zi -bO -WW -Pt -vq -BJ -rR -Ne -vq -tS -sq -Wp -QJ -Ai -sq -fh -PA -xW -hY -WG -wH -"} -(9,1,1) = {" -nl -vq -vq -qd -uX -sj -Tp -ER -mD -QJ -QJ -QJ -QJ -QJ -vq -vq -vq -vq -vq -Iz -FH -zx -QJ -Ws -sq -iK -YL -wF -jW -oE -QJ -"} -(10,1,1) = {" -nl -YL -lR -qw -lR -xW -pd -sq -sq -lF -Wy -Sd -FH -TO -Ox -vq -xW -xW -QJ -QJ -Qv -QJ -QJ -RR -sq -xW -QJ -YL -Ho -YL -cr -"} -(11,1,1) = {" -nl -YL -dT -WI -dT -xW -xI -rP -th -bC -FH -mt -rl -MX -Ox -QJ -Mp -xW -xW -xW -FH -xW -QJ -zA -sq -xW -QJ -pR -uQ -uQ -uQ -"} -(12,1,1) = {" -nl -YL -DH -AY -DH -xW -xW -FZ -sq -CO -hI -FH -FH -Sm -nD -IG -xW -wW -sq -sq -sq -xW -IG -xW -sq -xW -QJ -Mg -aE -nN -nN -"} -(13,1,1) = {" -vq -vq -qd -xW -xW -Kb -xW -ER -gI -QJ -Yt -Yt -XV -Yt -cI -QJ -Xj -sq -xW -xW -sq -QC -PA -FH -sq -xW -QJ -wi -nN -nN -nN -"} -(14,1,1) = {" -YL -Fw -ji -xW -pd -qw -JR -pp -QJ -QJ -lv -lv -XV -lv -NL -YL -Zo -sq -AM -YI -FQ -QC -PA -FH -sq -xW -QJ -SD -nN -nN -nN -"} -(15,1,1) = {" -YL -fs -xW -qw -xW -xW -xW -sq -IG -FH -FH -FH -vS -FH -Ox -YL -bl -sq -uh -am -sq -xW -QJ -xW -xW -xW -QJ -Mg -nN -nN -uQ -"} -(16,1,1) = {" -YL -zI -cZ -xW -UU -jb -YZ -pE -QJ -Cb -FH -fh -gl -FH -Ox -YL -nf -sq -HF -AD -sq -xW -QJ -vq -QJ -QJ -QJ -qY -Fr -Fr -uQ -"} -(17,1,1) = {" -vq -vq -XV -eK -eK -eK -XV -QJ -QJ -Qv -vq -vq -SE -ma -bb -QJ -qX -sq -sq -sq -sq -oS -oS -vq -VF -OE -Mg -uQ -Fr -Fr -uQ -"} -(18,1,1) = {" -nl -nl -nl -nl -nl -nl -eK -mn -Gl -Gl -fX -YL -jL -lA -jL -gV -VG -rg -xW -pa -GZ -lR -UE -vq -gT -aE -uQ -uQ -nN -nN -uQ -"} -(19,1,1) = {" -nl -nl -nl -nl -nl -nl -eK -Sn -Gl -WB -Re -YL -vf -HL -vf -gV -tv -zb -QJ -oi -QJ -aX -zA -vq -Wc -uQ -uQ -uQ -nN -nN -uQ -"} -(20,1,1) = {" -nl -nl -nl -nl -nl -nl -eK -co -De -Lj -xv -YL -IK -lO -yv -QJ -Sp -Ek -cr -OV -cr -gV -gV -vq -ty -uQ -uQ -uQ -nN -nN -uQ -"} -(21,1,1) = {" -nl -nl -nl -nl -nl -nl -XV -YL -YL -vq -YL -vq -nN -Vd -nN -xp -KU -uQ -xp -yn -xp -uQ -uQ -xp -nN -uQ -ce -uQ -XO -QF -np -"} diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm deleted file mode 100644 index ce2e3d97ac5d..000000000000 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ /dev/null @@ -1,129482 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/open/space, -/area/space) -"aab" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "tele_ground1"; - teleport_x = 180; - teleport_x_offset = 200; - teleport_y = 50; - teleport_y_offset = 80; - teleport_z = 1; - teleport_z_offset = 1 - }, -/turf/open/space, -/area/space) -"aag" = ( -/turf/open/floor/almayer_hull, -/area/space) -"aak" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "tele_ground1"; - teleport_x = 180; - teleport_x_offset = 200; - teleport_y = 50; - teleport_y_offset = 80; - teleport_z = 1; - teleport_z_offset = 1 - }, -/turf/open/space/basic, -/area/space) -"aau" = ( -/turf/closed/wall/almayer/reinforced/temphull, -/area/almayer/living/pilotbunks) -"aax" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_y = -21; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/structure/sign/safety/stairs{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"aaC" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"aaK" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full{ - pixel_y = 8 - }, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/suit/storage/hazardvest/black, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"aaX" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"aaY" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space) -"abf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"abg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"abh" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/lifeboat_pumps/north2) -"abi" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/lifeboat_pumps/north2) -"abj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"abk" = ( -/obj/structure/window/reinforced/toughened, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"abn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"abs" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/lifeboat_pumps/north1) -"abw" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/lifeboat_pumps/north1) -"abA" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"abB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"abE" = ( -/turf/closed/wall/almayer, -/area/almayer/living/basketball) -"abK" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"acf" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/living/starboard_garden) -"acj" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 - }, -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/holohoop{ - dir = 4; - id = "basketball"; - side = "left" - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"acl" = ( -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"acm" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 16; - pixel_y = -16 - }, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"acn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 16; - pixel_y = -16 - }, -/obj/structure/holohoop{ - dir = 8; - id = "basketball"; - side = "right" - }, -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 16 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"acq" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"acr" = ( -/obj/structure/orbital_cannon{ - density = 0 - }, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"acu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/vending/cola, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"acv" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/living/starboard_garden) -"acx" = ( -/turf/closed/wall/almayer, -/area/almayer/lifeboat_pumps/north2) -"acI" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"acK" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"acL" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"acQ" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"acR" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/nanopaste{ - pixel_x = -3; - pixel_y = 14 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"acW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"adb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/medical_science) -"ade" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"adj" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/stair_clone/upper) -"adm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) -"adq" = ( -/turf/closed/wall/almayer, -/area/almayer/lifeboat_pumps/north1) -"adu" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"adG" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/starboard_missiles) -"adM" = ( -/obj/structure/machinery/computer/orbital_cannon_console, -/obj/structure/bed/chair/ob_chair, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"adO" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/starboard_atmos) -"adT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"adW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"adZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_20" - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/port) -"aea" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"aef" = ( -/turf/open/floor/almayer, -/area/almayer/living/basketball) -"aej" = ( -/turf/closed/wall/almayer, -/area/almayer/living/officer_study) -"aek" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"ael" = ( -/turf/closed/wall/almayer, -/area/almayer/living/cafeteria_officer) -"aep" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/airmix) -"aer" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices/flight) -"aet" = ( -/turf/closed/wall/almayer, -/area/almayer/living/starboard_garden) -"aex" = ( -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 6; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"aeA" = ( -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"aeE" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/shipboard/starboard_missiles) -"aeF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"aeH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/basketball) -"aeJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices/flight) -"aeN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices/flight) -"aeU" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower) -"aeW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"aeX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"afj" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"afk" = ( -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"afs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/basketball) -"afy" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"afB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -29 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"afC" = ( -/obj/structure/platform, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"afF" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices/flight) -"afK" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/living/cafeteria_officer) -"afQ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/engineering/starboard_atmos) -"aga" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"agc" = ( -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"agd" = ( -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"agj" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/commandbunks) -"agn" = ( -/obj/structure/barricade/handrail/medical{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"agr" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"agu" = ( -/turf/open/floor/almayer, -/area/almayer/living/officer_study) -"agy" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/ce_room) -"agA" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/basketball) -"agM" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 8; - name = "Waste Air Injector" - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"agN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"agP" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/command/lifeboat) -"aha" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"ahc" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/wy_mre, -/obj/item/storage/box/wy_mre, -/turf/open/floor/almayer, -/area/almayer/living/cafeteria_officer) -"ahg" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering South Hall" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"ahh" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/starboard_atmos) -"ahk" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/upper/midship_hallway) -"aho" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/offices/flight) -"ahy" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/closed/wall/almayer, -/area/almayer/living/starboard_garden) -"ahJ" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/starboard_atmos) -"ahL" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ - pixel_x = 7; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"ahN" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"ahR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"ahU" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/hydroponics) -"ahX" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"aik" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop/hangar) -"aiq" = ( -/turf/open/floor/almayer, -/area/almayer/living/cafeteria_officer) -"air" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/cafeteria_officer) -"aiw" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/starboard_atmos) -"aix" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/securestorage) -"aiK" = ( -/obj/item/tool/wet_sign, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"aiP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/airoom) -"aiW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"aiX" = ( -/turf/closed/wall/almayer, -/area/almayer/living/pilotbunks) -"aje" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"ajf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"ajj" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/general_equipment) -"ajk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"ajl" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/upper_medical) -"aju" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"ajv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"ajw" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north2) -"ajD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"ajE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"ajH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"ajL" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"ajM" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/plating, -/area/almayer/living/offices/flight) -"ajS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/starboard) -"ajT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"ajV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"akm" = ( -/obj/structure/surface/rack, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/spawner/random/facepaint, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"ako" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"akt" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"akz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"akC" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/starboard_missiles) -"alg" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"alh" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"alk" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 1"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple, -/area/almayer/medical/containment/cell) -"alq" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = -9; - pixel_y = 3 - }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"alu" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"aly" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/starboard_missiles) -"alz" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"alB" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/living/cryo_cells) -"alF" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"alK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"alL" = ( -/turf/closed/wall/almayer, -/area/almayer/command/telecomms) -"alO" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/upper_engineering) -"alQ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"alU" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/navigation) -"alX" = ( -/turf/open/floor/almayer, -/area/almayer/command/cic) -"alY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/alpha) -"amb" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"amg" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"amx" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"amz" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/starboard_missiles) -"amF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"amH" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"amN" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"amQ" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"amY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"and" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"ani" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/basketball) -"anj" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/medium_stack{ - amount = 40; - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/stack/sheet/plasteel/small_stack{ - amount = 15 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"anD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/item/tool/warning_cone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"anM" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"anN" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"anP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"anW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"aoa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"aoc" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/briefing) -"aoe" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/morgue) -"aog" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"aoi" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"aok" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"aoy" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"aoC" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"aoJ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 1"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"aoL" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"aoN" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"aoP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"apa" = ( -/obj/structure/surface/rack, -/obj/item/tool/screwdriver, -/obj/item/device/analyzer, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"api" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"apk" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/stair_clone/upper) -"apF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/squads/delta) -"apO" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"apP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) -"apU" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 2"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 8 - }, -/area/almayer/medical/containment/cell) -"aqf" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"aqn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"aqs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"aqu" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/weapon_room) -"aqB" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"aqD" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 35 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"aqH" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"aqU" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/airoom) -"aqY" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering) -"aqZ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_stern) -"ara" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"arb" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"arx" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/structure/machinery/door_control{ - id = "Firing_Range_2"; - name = "range shutters"; - pixel_x = 9; - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) -"arM" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft"; - pixel_x = 20 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 28 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"arS" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/lower) -"arT" = ( -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"arV" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"asb" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"asd" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." - }, -/obj/item/storage/beer_pack, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"asj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"asn" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/plating, -/area/almayer/medical/upper_medical) -"asA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"asE" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"asM" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/stair_clone/upper) -"asS" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/closet/secure_closet/brig/prison_uni, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/perma) -"asT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"asY" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"ata" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/ladder{ - height = 2; - id = "cicladder1" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) -"atb" = ( -/obj/structure/ladder{ - height = 2; - id = "cicladder2" - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) -"atg" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"atm" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"atn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"atp" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"atq" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"atr" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"atA" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"atC" = ( -/turf/open/floor/almayer/emeraldcorner/north, -/area/almayer/living/briefing) -"atD" = ( -/obj/structure/disposalpipe/up/almayer{ - dir = 8; - id = "almayerlink_med_req" - }, -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/hydroponics) -"atT" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"aub" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/shipboard/brig/cic_hallway) -"aue" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"auf" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/command/airoom) -"aug" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/hallways/lower/port_midship_hallway) -"aul" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 12 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"auu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"auy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"auA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"auC" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"auK" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"auQ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/command/cic) -"auW" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/port_point_defense) -"ava" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"avc" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"avd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"ave" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"avf" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_p) -"avo" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/powered/agent) -"avs" = ( -/turf/closed/wall/biodome, -/area/almayer/powered/agent) -"avw" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/weapon_room) -"avx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"avz" = ( -/turf/open/floor/almayer/uscm/directional/east, -/area/almayer/command/lifeboat) -"avA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"avD" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/squads/delta) -"avU" = ( -/obj/effect/landmark/start/crew_chief, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"avY" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"avZ" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"awd" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/pilotbunks) -"awe" = ( -/turf/open/floor/plating/almayer, -/area/almayer/living/starboard_garden) -"awu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"awy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"awz" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/cichallway) -"awC" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/port_missiles) -"awE" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"awF" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/numbertwobunks) -"awW" = ( -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"axc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/item/tool/warning_cone{ - pixel_x = -20; - pixel_y = 18 - }, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"axd" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"axi" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"axo" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/command/telecomms) -"axH" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_umbilical) -"axK" = ( -/obj/structure/surface/table/almayer, -/obj/item/shard, -/obj/item/tool/extinguisher, -/obj/item/stock_parts/scanning_module, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"axP" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/navigation) -"axR" = ( -/obj/structure/machinery/shower, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/tinted{ - dir = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"ayj" = ( -/obj/effect/landmark/start/cargo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"ayl" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"ayu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"ayB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"ayJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"ayK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"ayL" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"ayN" = ( -/obj/structure/machinery/firealarm{ - pixel_x = 6; - pixel_y = 28 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/obj/structure/transmitter{ - name = "CE Office Telephone"; - phone_category = "Offices"; - phone_id = "CE Office"; - pixel_x = -8; - pixel_y = 29 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/ce_room) -"azm" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"azs" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/rods{ - amount = 40 - }, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"azu" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"azw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"azE" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"azG" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"azJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - req_one_access_txt = "3;19;22" - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"azL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"azW" = ( -/obj/structure/machinery/door/window/westright{ - dir = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"azZ" = ( -/obj/structure/machinery/keycard_auth, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aAd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aAf" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"aAi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/engineering/port_atmos) -"aAk" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-5"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"aAn" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"aAq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"aAt" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie_delta_shared) -"aAw" = ( -/obj/structure/bed/chair/comfy/alpha, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"aAF" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel" - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aAK" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"aAP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/obj/structure/machinery/door_control{ - id = "cic_exterior"; - name = "CIC Door Control"; - normaldoorcontrol = 1; - pixel_y = -14; - req_one_access_txt = "19" - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aBe" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 2"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 4 - }, -/area/almayer/medical/containment/cell) -"aBh" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"aBk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"aBn" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"aBo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"aBp" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"aBr" = ( -/obj/structure/ladder{ - height = 2; - id = "engineeringladder" - }, -/turf/open/floor/plating/almayer, -/area/almayer/engineering/upper_engineering) -"aBt" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/item/device/radio/marine{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"aBx" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"aBE" = ( -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"aBH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"aBI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aBR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/glass, -/obj/item/storage/fancy/cigarettes/kpack, -/obj/item/device/whistle, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"aCd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"aCe" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Disposals" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_p) -"aCj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aCA" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"aCE" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_p) -"aCH" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/chief_mp_office) -"aCM" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"aDf" = ( -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -29 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"aDt" = ( -/obj/structure/machinery/cm_vending/clothing/military_police_warden, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/warden_office) -"aDw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"aDE" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"aDQ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/command/lifeboat) -"aDY" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"aEl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"aEt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/working_joe{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"aEz" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"aEM" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails, -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"aES" = ( -/turf/closed/wall/almayer, -/area/almayer/living/bridgebunks) -"aET" = ( -/turf/closed/wall/almayer, -/area/almayer/living/captain_mess) -"aEW" = ( -/turf/closed/wall/almayer, -/area/almayer/living/numbertwobunks) -"aFd" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper Computer Lab"; - req_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/computerlab) -"aFe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"aFg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/briefcase, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"aFi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"aFj" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"aFC" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north2) -"aFM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"aGh" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/upper/midship_hallway) -"aGr" = ( -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"aGs" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"aGA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"aGF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"aGM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"aGN" = ( -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"aHd" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"aHe" = ( -/turf/closed/wall/almayer, -/area/almayer/command/lifeboat) -"aHg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"aHl" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"aHn" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/door/window/westleft, -/obj/structure/window/reinforced/tinted/frosted, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/numbertwobunks) -"aHq" = ( -/turf/closed/wall/almayer, -/area/almayer/command/computerlab) -"aHs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"aHE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_windoor"; - name = "Windoor Shutters"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "28" - }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1; - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/sign/safety/biohazard{ - pixel_y = -32 - }, -/obj/structure/sign/safety/ref_bio_storage{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_se_2"; - name = "Window Shutters"; - pixel_x = -7; - pixel_y = 4; - req_access_txt = "28" - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/medical_science) -"aHL" = ( -/obj/structure/machinery/door/window/eastleft{ - req_one_access_txt = "2;21" - }, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby1"; - name = "\improper RO Line 1" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/surface/table/reinforced/almayer_blend/north, -/obj/item/desk_bell{ - anchored = 1; - pixel_x = -6; - pixel_y = -8 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"aHS" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 8; - name = "Mixed Air Injector" - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"aHZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"aIb" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"aId" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"aIf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aIt" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_aft_hallway) -"aIx" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"aIB" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"aIR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - access_modified = 1; - dir = 1; - name = "\improper Kitchen Hydroponics"; - req_one_access_txt = "30;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"aJd" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"aJA" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south1) -"aJB" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"aJJ" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/bed/chair, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"aJQ" = ( -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"aJY" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/largecrate/random/barrel/red, -/obj/item/reagent_container/food/drinks/cans/cola{ - pixel_x = -2; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"aKa" = ( -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"aKg" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"aKk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"aKm" = ( -/obj/structure/sign/safety/storage{ - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"aKq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"aKs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - indestructible = 1; - name = "ARES Chamber Lockdown"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/door_control{ - id = "ARES Railing"; - indestructible = 1; - name = "ARES Chamber Railings"; - needs_power = 0; - pixel_x = 24; - req_one_access_txt = "91;92" - }, -/obj/structure/machinery/door/poddoor/railing{ - closed_layer = 4.1; - density = 0; - dir = 2; - id = "ARES Railing"; - layer = 2.1; - open_layer = 2.1; - pixel_x = -1; - pixel_y = -1; - unacidable = 0; - unslashable = 0 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"aKv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"aKE" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"aKQ" = ( -/turf/closed/wall/almayer/outer, -/area/space) -"aKR" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/starboard_point_defense) -"aKZ" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"aLg" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"aLl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"aLs" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"aLE" = ( -/obj/docking_port/stationary/emergency_response/external/hangar_starboard{ - dwidth = 8 - }, -/turf/open/space, -/area/space) -"aLJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"aLL" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/starboard_point_defense) -"aLM" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aLT" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/alpha) -"aLW" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_point_defense) -"aMk" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"aMo" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"aMt" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"aMz" = ( -/turf/open/floor/almayer, -/area/almayer/squads/alpha) -"aMD" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/toy/deck, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"aME" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/airmix) -"aMH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/landmark/start/marine/smartgunner/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"aMI" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/marine/spec/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"aMK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/cic) -"aML" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"aMM" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"aMQ" = ( -/obj/structure/machinery/cm_vending/clothing/tl/alpha{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"aNf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"aNi" = ( -/turf/closed/wall/almayer, -/area/almayer/living/chapel) -"aNl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"aNm" = ( -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"aNq" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"aNr" = ( -/obj/effect/landmark/start/chef, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"aNv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"aNK" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/north1) -"aNQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"aNT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"aNU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/computer/emails, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"aOk" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"aOu" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"aOJ" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"aOL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/surface/table/almayer, -/obj/item/facepaint/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"aOO" = ( -/obj/structure/sign/safety/analysis_lab{ - pixel_y = 26 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = 26 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/upper/midship_hallway) -"aOR" = ( -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"aPa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"aPc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) -"aPe" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"aPf" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"aPw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/command/lifeboat) -"aPC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"aPJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/corner2, -/area/almayer/medical/containment/cell) -"aPK" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer, -/area/almayer/squads/alpha) -"aPN" = ( -/obj/structure/ladder{ - height = 2; - id = "ForeStarboardMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/s_bow) -"aPO" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"aPP" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/atmospipes{ - pixel_y = 9 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"aPT" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"aQa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"aQb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"aQe" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"aQu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"aQC" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/item/paper_bin/uscm{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = -8; - pixel_y = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"aQF" = ( -/turf/closed/wall/almayer, -/area/almayer/living/offices) -"aQI" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"aQJ" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"aQL" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/bravo) -"aQM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/engineering_guide{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"aQN" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer, -/area/almayer/squads/bravo) -"aRi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"aRm" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/chapel) -"aRo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"aRp" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 3; - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"aRu" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"aRy" = ( -/turf/open/floor/almayer, -/area/almayer/living/offices) -"aRA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"aRJ" = ( -/obj/structure/ladder{ - height = 2; - id = "med1" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/refridgeration{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/upper_medical) -"aRK" = ( -/obj/structure/ladder{ - height = 2; - id = "med2" - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/upper_medical) -"aRR" = ( -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) -"aRT" = ( -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"aSf" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"aSo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/hydroponics) -"aSE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"aSI" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"aSL" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"aSQ" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"aST" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/hydroponics) -"aSU" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"aSV" = ( -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_lobby) -"aTa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"aTg" = ( -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"aTk" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"aTl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"aTm" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"aTJ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 8 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"aTM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"aTT" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 4 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -2 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"aTU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"aTW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"aUj" = ( -/obj/structure/machinery/cm_vending/clothing/tl/bravo{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"aUs" = ( -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/command/cic) -"aUt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/hallways/hangar) -"aUu" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) -"aUF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/medical_science) -"aUH" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/port_atmos) -"aUT" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/sign/safety/twilight_zone_terminator{ - pixel_x = 8; - pixel_y = -24 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"aVb" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"aVo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"aVq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"aVs" = ( -/obj/structure/bed/chair/comfy/delta, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"aVz" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"aVM" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"aVP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"aVS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"aWj" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "\improper Pilot's Office"; - req_one_access_txt = "3;22;19" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices/flight) -"aWo" = ( -/obj/structure/pipes/unary/outlet_injector, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"aWp" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - id_tag = "waste_lower_out" - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"aWD" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/offices) -"aWV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"aWW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"aWZ" = ( -/obj/structure/pipes/standard/simple/visible, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/airmix) -"aXb" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"aXc" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_x = 6; - pixel_y = 4 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_x = -9; - pixel_y = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"aXd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"aXv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/reinforced{ - dir = 2; - name = "\improper Brig Permanent Confinement" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "perma_lockdown_1"; - name = "\improper Perma Lockdown Shutter" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"aXC" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/device/taperecorder{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -9; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"aXD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"aXK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"aXU" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"aXV" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/repair_bay) -"aYr" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"aYt" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"aYH" = ( -/obj/structure/safe/cl_office, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"aYO" = ( -/obj/structure/machinery/smartfridge/chemistry{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/containment) -"aYZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"aZe" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"aZp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/storage/fancy/cigar/tarbacks, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ - pixel_x = -4; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"aZq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"aZr" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"aZy" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"aZz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"aZT" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/lower/port_fore_hallway) -"bad" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cichallway) -"bau" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/energy/taser, -/obj/item/weapon/gun/energy/taser{ - pixel_y = 8 - }, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"baw" = ( -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"baG" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"baI" = ( -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"baO" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/aicore/no_build/ai_cargo, -/area/almayer/command/airoom) -"baP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/port_fore_hallway) -"baR" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"baW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"baZ" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/lower_medical_lobby) -"bbe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"bbj" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"bbo" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"bbr" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"bbs" = ( -/turf/closed/wall/almayer, -/area/almayer/living/cryo_cells) -"bbv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D4"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"bbB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"bbN" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"bbO" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"bbQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering) -"bbS" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/starboard_point_defense) -"bbV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"bbW" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"bbZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"bcf" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"bcm" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/hangar) -"bdd" = ( -/turf/closed/wall/almayer, -/area/almayer/living/briefing) -"bdf" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"bdg" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/briefing) -"bdj" = ( -/turf/open/floor/almayer, -/area/almayer/squads/req) -"bdl" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"bdr" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"bdu" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_fore_hallway) -"bdH" = ( -/turf/open/space/basic, -/area/space) -"bdI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bdK" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bdL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bdV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bed" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_1"; - name = "treadmill" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"bee" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/squads/alpha) -"beh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 - }, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_x = 10; - pixel_y = 14 - }, -/obj/item/trash/USCMtray{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/hotdog{ - pixel_x = -7; - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"beE" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"beH" = ( -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"beP" = ( -/obj/item/stack/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/almayer, -/area/almayer/squads/alpha_bravo_shared) -"beQ" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/living/briefing) -"beV" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/marine/leader/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"beX" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"beZ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"bfp" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"bfs" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/l_f_s) -"bft" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"bfy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"bfJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/handheld1, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bfK" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/comp_closed, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bfO" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"bfT" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) -"bfY" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/comp_open, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bgi" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"bgo" = ( -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"bgw" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "or2privacyshutter"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/medical/operating_room_two) -"bgx" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/medical) -"bgD" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"bgE" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/southeast, -/area/almayer/living/cryo_cells) -"bgF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bgH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) -"bgO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"bgX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"bha" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"bhb" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/black, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"bhd" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_a_s) -"bhn" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/door_control{ - id = "bot_uniforms"; - name = "Uniform Vendor Lockdown"; - pixel_x = -24; - pixel_y = 18; - req_access_txt = "31" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/cic) -"bhq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"bhE" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"bhQ" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4 - }, -/obj/item/seeds/wheatseed, -/obj/item/seeds/wheatseed, -/turf/open/floor/almayer/green/southeast, -/area/almayer/shipboard/brig/cells) -"bhT" = ( -/obj/structure/cargo_container/lockmart/mid{ - layer = 3.1; - pixel_y = 5 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bhU" = ( -/obj/structure/cargo_container/lockmart/right{ - layer = 3.1; - pixel_y = 5 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bif" = ( -/obj/structure/machinery/flasher{ - id = "Perma 2"; - pixel_y = 24 - }, -/obj/structure/machinery/camera/autoname/almayer/brig, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"bik" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/fire_alarm, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower) -"bin" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"biA" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/operating_room_three) -"biK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"biV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/starboard_garden) -"biY" = ( -/obj/structure/machinery/photocopier, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"biZ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"bjg" = ( -/obj/item/trash/chips, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"bjk" = ( -/obj/structure/machinery/door_control{ - id = "perma_lockdown_2"; - name = "Maint Lockdown Shutters"; - pixel_y = -20; - req_one_access_txt = "24;31" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -34 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"bjr" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"bjv" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"bjw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/structure/transmitter/rotary{ - name = "Brig Wardens's Office Telephone"; - phone_category = "MP Dept."; - phone_id = "Brig Warden's Office"; - pixel_x = 15 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/warden_office) -"bjN" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"bjQ" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"bjR" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bjZ" = ( -/obj/effect/landmark/start/marine/engineer/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"bka" = ( -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"bkc" = ( -/obj/docking_port/stationary/emergency_response/port1, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"bkf" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = 13; - pixel_y = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"bkm" = ( -/obj/structure/bookcase/manuals/medical, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"bkA" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/chemistry) -"bkE" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "or1privacyshutter"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/medical/operating_room_one) -"bkS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"bld" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"blg" = ( -/obj/structure/machinery/power/apc/almayer/hardened/north, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"bli" = ( -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 6"; - name = "Cell 6" - }, -/obj/structure/sign/safety/six{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"blm" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/morgue) -"bls" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/living/basketball) -"bly" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"bma" = ( -/obj/structure/platform, -/obj/structure/largecrate/random/case/double{ - layer = 2.98 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"bmr" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"bmE" = ( -/obj/item/toy/deck{ - pixel_y = 12 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 32 - }, -/obj/structure/surface/table/woodentable/poor, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"bmF" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"bmG" = ( -/obj/structure/sign/safety/storage{ - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bnc" = ( -/turf/open/floor/almayer/uscm/directional/northeast, -/area/almayer/command/cic) -"bnh" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer/emerald, -/area/almayer/living/port_emb) -"bnk" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-6"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"bno" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"bnq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"bnt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"bnx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/storage/box/donkpockets, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cafeteria_officer) -"bnD" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"bnH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/tool/warning_cone, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bog" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/folder/black, -/obj/item/folder/black, -/obj/item/folder/white, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_medbay) -"bol" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"bon" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/secure{ - pixel_x = -5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"bos" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/s_bow) -"bow" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"boz" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"boK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 5 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"boV" = ( -/obj/structure/cargo_container/wy/left, -/obj/structure/prop/almayer/minigun_crate{ - pixel_x = 1; - pixel_y = 39 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"boZ" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"bpl" = ( -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/engineering/port_atmos) -"bpC" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"bpQ" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"bpR" = ( -/turf/open/floor/almayer/empty/requisitions, -/area/supply/station) -"bpS" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"bqc" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"bqh" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/repair_bay) -"bqo" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/obj/structure/catwalk{ - health = null - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"bqu" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/chief_mp_office) -"bqT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"bqW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/cmcap{ - pixel_x = 8; - pixel_y = -1 - }, -/obj/item/ammo_box/magazine/misc/mre{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/prop/helmetgarb/helmet_nvg/cosmetic{ - pixel_x = 5; - pixel_y = 7 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"brb" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"brc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/maint/upper/u_a_s) -"brg" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"brp" = ( -/obj/structure/supply_drop/bravo, -/turf/open/floor/plating, -/area/almayer/squads/req) -"brv" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha) -"brz" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"brA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"brO" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"brQ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/starboard_missiles) -"brT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/starboard_fore_hallway) -"brY" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bst" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/operating_room_one) -"bsw" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/chapel) -"bsy" = ( -/obj/structure/closet/medical_wall{ - pixel_x = 30 - }, -/obj/item/reagent_container/food/drinks/cans/souto/blue, -/obj/item/reagent_container/food/drinks/cans/souto/blue, -/obj/item/reagent_container/food/drinks/cans/souto/classic, -/obj/item/reagent_container/food/drinks/cans/souto/diet/peach, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"bsB" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigwarden"; - dir = 1; - name = "\improper Warden's Office" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"bsK" = ( -/obj/effect/landmark/supply_elevator, -/turf/open/floor/almayer/empty/requisitions, -/area/supply/station) -"btn" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"btv" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"btB" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"btD" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"btG" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"btM" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"btN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"btO" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bun" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/crowbar, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"buw" = ( -/turf/open/floor/almayer/uscm/directional/southwest, -/area/almayer/command/lifeboat) -"buz" = ( -/obj/structure/supply_drop/charlie, -/turf/open/floor/plating, -/area/almayer/squads/req) -"buG" = ( -/obj/structure/sign/poster/blacklight{ - pixel_y = 35 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/reagent_dispensers/beerkeg/alt_dark{ - anchored = 1; - chemical = null; - density = 0; - pixel_x = -7; - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"bvb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"bvf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bvm" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp{ - pixel_y = 8 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/device/flash, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"bvo" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_fore_hallway) -"bvy" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bvG" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"bvL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"bvR" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/squads/delta) -"bvX" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/window, -/turf/open/floor/plating, -/area/almayer/command/corporateliaison) -"bwb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower) -"bwf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"bwn" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bwv" = ( -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"bwA" = ( -/obj/structure/disposalpipe/up/almayer{ - dir = 8; - id = "almayerlink_med1_req" - }, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"bwG" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_s) -"bwJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/hallways/lower/port_midship_hallway) -"bwW" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"bxg" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"bxj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/port_fore_hallway) -"bxt" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/warhead, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"bxv" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"bxy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Basketball Court" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/basketball) -"bxB" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"bxN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) -"bxS" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"bxY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"byf" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"byk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"byn" = ( -/obj/effect/landmark/start/marine/leader/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"byv" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"byz" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"byG" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/cholula, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"byI" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/protein_pack, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"byV" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/obj/structure/sign/safety/security{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"byZ" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/device/radio, -/obj/item/device/flashlight, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"bzn" = ( -/obj/item/device/assembly/mousetrap/armed, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/living/port_emb) -"bzu" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"bzz" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"bzQ" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bzT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Secondary Processors"; - dir = 8 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"bzX" = ( -/obj/structure/machinery/door_control{ - id = "OuterShutter"; - name = "Outer Shutter"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "1;3" - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "OfficeSafeRoom"; - name = "Office Safe Room"; - pixel_x = 5; - pixel_y = 5; - req_one_access_txt = "1;3" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"bAh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bAi" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bAs" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/weapon_room) -"bAy" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = -32 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"bAR" = ( -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"bAS" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bAV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/intel{ - dir = 4 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/computerlab) -"bBl" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"bBm" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"bBp" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bBA" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/weapon_room) -"bBC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"bBL" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"bBN" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bBR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bBS" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"bBU" = ( -/obj/structure/sign/safety/security{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"bCc" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/northeast, -/area/almayer/living/cryo_cells) -"bCd" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/medical/lower_medical_lobby) -"bCh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/briefing) -"bCi" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/command/lifeboat) -"bCk" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"bCs" = ( -/obj/docking_port/stationary/escape_pod/cl, -/turf/open/floor/plating, -/area/almayer/command/corporateliaison) -"bCv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"bCz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"bCA" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"bCE" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/starboard) -"bCG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/living/cryo_cells) -"bDa" = ( -/obj/structure/prop/almayer/name_stencil, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"bDd" = ( -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"bDh" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/upper_engineering) -"bDj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) -"bDn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/closed/wall/almayer, -/area/almayer/hallways/hangar) -"bDu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"bDI" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bEi" = ( -/obj/structure/supply_drop/alpha, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"bEl" = ( -/obj/structure/machinery/computer/supply_drop_console/limited, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"bEm" = ( -/obj/structure/supply_drop/delta, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"bEw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"bEx" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/weapon_room) -"bEy" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/morgue) -"bEz" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"bFk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/weapon_room) -"bFr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/auxiliary_officer_office) -"bFB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bFD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"bFF" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"bFJ" = ( -/obj/docking_port/stationary/marine_dropship/almayer_hangar_2, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"bFP" = ( -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bFR" = ( -/obj/docking_port/stationary/marine_dropship/almayer_hangar_1, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"bGd" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "south_central_checkpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"bGg" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"bGi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/vents/scrubber, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"bGo" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby1"; - name = "\improper RO Line 1" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/turf/open/floor/plating, -/area/almayer/squads/req) -"bGu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bGU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"bGW" = ( -/turf/open/floor/almayer/test_floor5, -/area/almayer/command/computerlab) -"bHu" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/warden_office) -"bHB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bHI" = ( -/obj/structure/anti_air_cannon, -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"bHO" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"bHP" = ( -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"bHY" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"bIe" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bIf" = ( -/obj/structure/largecrate/random/case{ - layer = 2.98 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"bIl" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/stamp/ro{ - name = "spare requisitions officer's rubber stamp"; - pixel_x = -7; - pixel_y = 11 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"bIr" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/living/briefing) -"bIy" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/navigation) -"bIM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/hydroponics) -"bIW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"bJf" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_2"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"bJt" = ( -/turf/closed/wall/almayer, -/area/almayer/living/grunt_rnr) -"bJu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"bJB" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/squad_changer{ - pixel_x = -9 - }, -/obj/structure/machinery/computer/card{ - pixel_x = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bJC" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/charlie) -"bJD" = ( -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"bJH" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/black{ - pixel_x = -4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"bJS" = ( -/obj/structure/surface/rack, -/obj/item/tool/wrench, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"bJT" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"bJV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/starboard) -"bJX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"bJY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"bKk" = ( -/obj/item/tool/wrench{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/prop/mech/hydralic_clamp, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"bKs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"bKu" = ( -/obj/structure/cargo_container/arious/mid, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bKC" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/green, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"bKE" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bKI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/starboard_hallway) -"bKM" = ( -/obj/effect/landmark/start/marine/medic/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"bKP" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"bKQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"bKS" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"bLb" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"bLh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"bLi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"bLs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"bLx" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 1; - id_tag = "oxygen_lower_out" - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"bLy" = ( -/turf/open/floor/engine/nitrogen, -/area/almayer/engineering/airmix) -"bLz" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 1; - id_tag = "nit_lower_out" - }, -/turf/open/floor/engine/nitrogen, -/area/almayer/engineering/airmix) -"bLA" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 1 - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"bLB" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_aft_hallway) -"bLC" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 1; - id_tag = "mixed_lower_out" - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"bLO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"bLP" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"bLT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bMf" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bMl" = ( -/obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"bMJ" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"bMK" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine/nitrogen, -/area/almayer/engineering/airmix) -"bML" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"bMM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"bMP" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"bNf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"bNg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"bNl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"bNo" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"bNs" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"bNG" = ( -/obj/structure/machinery/cm_vending/clothing/tl/charlie{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"bNV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/uscm_mre, -/obj/item/storage/box/uscm_mre, -/obj/item/book/manual/chef_recipes, -/obj/structure/sign/safety/coffee{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"bOp" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Execution Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/execution) -"bOG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"bOL" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/tl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"bOQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"bPe" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"bPi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"bPp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"bPq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"bPr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bPs" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"bPu" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/lower_medical_medbay) -"bPF" = ( -/turf/closed/wall/almayer/white/outer_tile, -/area/almayer/medical/medical_science) -"bPL" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer, -/area/almayer/living/cryo_cells) -"bPY" = ( -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) -"bQg" = ( -/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"bQi" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"bQC" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"bQN" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"bQQ" = ( -/obj/structure/sign/ROsign{ - layer = 3 - }, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"bQT" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"bQU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"bQX" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"bQZ" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer, -/area/almayer/squads/charlie) -"bRc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"bRe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"bRo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"bRp" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_three) -"bRq" = ( -/obj/structure/machinery/ares/processor/apollo, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"bRw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"bRC" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"bRG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical{ - pixel_y = 9 - }, -/obj/item/storage/toolbox/mechanical/green, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"bRJ" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"bRM" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"bRU" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"bSc" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"bSf" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/port_point_defense) -"bSk" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_lobby) -"bSv" = ( -/turf/closed/wall/almayer, -/area/almayer/living/tankerbunks) -"bSB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/trash/USCMtray, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"bSJ" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/delta) -"bSK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/item/tool/wrench, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"bSL" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer, -/area/almayer/squads/delta) -"bSX" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/barricade/handrail/medical{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"bTb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "cryo curtain" - }, -/turf/open/floor/plating, -/area/almayer/squads/bravo) -"bTe" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/almayer/squads/req) -"bTg" = ( -/obj/docking_port/stationary/emergency_response/external/hangar_port{ - dwidth = 8 - }, -/turf/open/space, -/area/space) -"bTj" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"bTq" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock PL-3"; - req_access = null - }, -/turf/open/floor/plating, -/area/almayer/powered) -"bTt" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2; - pixel_y = 21 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -2; - pixel_y = -4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"bTv" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/cic) -"bTx" = ( -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"bTA" = ( -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"bTD" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cic) -"bTH" = ( -/turf/open/floor/almayer, -/area/almayer/living/tankerbunks) -"bTI" = ( -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/surface/rack, -/turf/open/floor/almayer/red/northeast, -/area/almayer/maint/upper/u_a_p) -"bTL" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"bTO" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/port_point_defense) -"bTT" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/shipboard/weapon_room) -"bTX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - closeOtherId = "astroladder_n"; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"bTY" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/port) -"bTZ" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/part_fabricator/dropship, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"bUg" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"bUn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - dir = 2; - name = "\improper Execution Equipment" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/execution_storage) -"bUp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"bUq" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"bUu" = ( -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space) -"bUN" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"bUU" = ( -/obj/structure/machinery/cm_vending/clothing/tl/delta{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"bUX" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"bUZ" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - SynthBay"; - dir = 8 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"bVa" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bVs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"bVv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"bVI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "south_central_checkpoint"; - name = "South Checkpoint Shutters"; - req_one_access_txt = "3;12;19" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bVM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bVR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"bVS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"bVU" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/port_point_defense) -"bVV" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/chapel) -"bWm" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/mousetraps, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower) -"bWu" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"bWz" = ( -/turf/open/floor/almayer/blue/northwest, -/area/almayer/squads/delta) -"bWJ" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/structure/machinery/door/window/eastright, -/obj/structure/window/reinforced/tinted/frosted, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/auxiliary_officer_office) -"bWQ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"bXe" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"bXg" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"bXh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"bXu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"bXz" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"bXE" = ( -/obj/structure/closet/secure_closet/brig/restraints, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/perma) -"bXJ" = ( -/obj/structure/machinery/vending/snack{ - pixel_x = -7 - }, -/obj/structure/machinery/vending/coffee{ - pixel_x = 14 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"bYi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/hallways/lower/repair_bay) -"bYn" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/upper_engineering/port) -"bYr" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"bYs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"bYw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"bYE" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/hallways/upper/midship_hallway) -"bYF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"bYW" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/panic) -"bYX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"bZc" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/notunnel) -"bZj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bZm" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"bZo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bZq" = ( -/obj/effect/projector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"bZs" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"bZu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/port) -"bZw" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/combat_correspondent) -"bZE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/navigation) -"bZJ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/landmark/map_item, -/obj/item/device/binoculars, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"cak" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/evidence_storage) -"cam" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"can" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"caq" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"caE" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/bed/chair, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"caH" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/prop/helmetgarb/helmet_nvg/cosmetic, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"cbb" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cbF" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - pixel_x = 1; - pixel_y = 17; - req_access = null - }, -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"cbK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"cbL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"cbM" = ( -/obj/structure/closet/crate, -/obj/item/clothing/glasses/welding, -/obj/item/circuitboard, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"cbO" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"cbU" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/soft/purple, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"cbW" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - name = "Telecommunications"; - req_access_txt = "6" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"cck" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"ccl" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/device/megaphone, -/obj/structure/window/reinforced/ultra, -/obj/structure/window/reinforced/ultra{ - dir = 4 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/living/briefing) -"ccz" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"ccL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"ccQ" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"ccR" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"ccX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/command/telecomms) -"cdc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/telecomms/broadcaster/preset_left, -/obj/structure/sign/safety/laser{ - pixel_y = 32 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"cdf" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"cdg" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/intercom{ - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"cdp" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_2"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"cdv" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"cdy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/containment) -"cdA" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"cdB" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"cdH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cdI" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"cdJ" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/structure/sign/poster{ - icon_state = "poster14"; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"cdN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"cdS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"cea" = ( -/obj/structure/machinery/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"cei" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/shipboard/brig/cic_hallway) -"cev" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cex" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/cic) -"ceC" = ( -/obj/structure/prop/almayer/ship_memorial, -/turf/open/floor/plating/almayer, -/area/almayer/living/starboard_garden) -"ceE" = ( -/turf/closed/wall/almayer, -/area/almayer/command/cichallway) -"ceF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"ceH" = ( -/turf/open/floor/almayer/emerald, -/area/almayer/command/cic) -"ceR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"ceU" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"ceW" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"ceY" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"cfl" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"cfo" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"cfs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"cft" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"cfC" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"cfF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering) -"cfL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"cge" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda/beer, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"cgo" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie_delta_shared) -"cgy" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"cgz" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"cgE" = ( -/turf/open/floor/almayer, -/area/almayer/living/cryo_cells) -"cgT" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"cha" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"chp" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"chv" = ( -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"chJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/hallways/upper/midship_hallway) -"chM" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"chR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"ciB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"ciP" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"ciQ" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"ciW" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"cjc" = ( -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"cjw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = -29 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"ckg" = ( -/obj/structure/machinery/vending/cigarette, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"ckh" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"ckx" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"ckJ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"ckL" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ckN" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate{ - dir = 1; - name = "Corporate Liaison's Bedroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"ckW" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/engineering/lower) -"clg" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"clh" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"cll" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"cls" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/port_point_defense) -"cmd" = ( -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Shutters"; - pixel_x = -30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/living/briefing) -"cme" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"cmr" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"cmt" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"cmz" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/access_button/airlock_exterior, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"cmD" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/storage/firstaid/rad, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"cmM" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/medical) -"cmR" = ( -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"cmY" = ( -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"cmZ" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"cnh" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"cnm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"cnS" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/command/computerlab) -"cnY" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north1) -"coh" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = -11; - pixel_y = 5 - }, -/obj/item/tool/pen{ - pixel_x = -10; - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"cok" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"coo" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"cop" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/tankerbunks) -"cot" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"coD" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 12 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"cpa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"cpg" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"cpk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/port_point_defense) -"cpp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"cpv" = ( -/obj/effect/landmark/start/marine/engineer/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"cpy" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"cpJ" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "or3privacyshutter"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/medical/operating_room_three) -"cpK" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby2"; - name = "\improper RO Line 2" - }, -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/turf/open/floor/plating, -/area/almayer/squads/req) -"cqh" = ( -/obj/item/trash/candle, -/obj/item/tool/match/paper, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"cqm" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/folder/white{ - pixel_y = 6 - }, -/obj/item/folder/white{ - pixel_x = 5; - pixel_y = 6 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"cqz" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/black, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"cqB" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"cqH" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_m_s) -"cqJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/general_equipment) -"cqN" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_aft_hallway) -"cqQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"cqY" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigar/tarbacktube, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"crf" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"crk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"cro" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/alpha) -"crB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 1"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"crT" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/s_bow) -"crV" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"crW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"crX" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"csb" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) -"csd" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"csg" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"csk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"csr" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha_bravo_shared) -"csy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"csL" = ( -/obj/structure/machinery/cm_vending/clothing/engi/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"csM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/shipboard/brig/cic_hallway) -"csV" = ( -/obj/structure/closet/cabinet, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"cta" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/starboard) -"ctp" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"cts" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"ctv" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"ctH" = ( -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 - }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"ctM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"cuf" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"cuq" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"cuv" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"cuC" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/upper_engineering/starboard) -"cuE" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc04"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = 28; - pixel_y = 23 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"cuL" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"cuM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/port) -"cvd" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"cvg" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"cvl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door_control{ - access_modified = 1; - id = "OTStore"; - name = "Shutters"; - pixel_y = -24; - req_one_access_txt = "35" - }, -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"cvo" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/maint/upper/mess) -"cvx" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/cryo_cells) -"cvC" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"cvH" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"cvI" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"cvK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"cvP" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"cvS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower/workshop) -"cvT" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"cwa" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"cwo" = ( -/obj/structure/largecrate/random/mini/chest{ - pixel_x = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"cwu" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"cwv" = ( -/obj/structure/machinery/chem_master{ - vial_maker = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"cwN" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/mp_bunks) -"cwS" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"cwX" = ( -/obj/structure/ladder{ - height = 1; - id = "cicladder1" - }, -/turf/open/floor/plating/almayer, -/area/almayer/living/briefing) -"cwY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" - }, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/box/drinkingglasses, -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_y = 30 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"cxc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"cxk" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"cxv" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile, -/area/almayer/medical/upper_medical) -"cxI" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"cxN" = ( -/obj/structure/machinery/cryopod/right{ - dir = 4; - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/aicore/no_build/ai_cargo, -/area/almayer/command/airoom) -"cxW" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Officer's Quarters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"cxY" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"cyg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/lower/port_fore_hallway) -"cyt" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/command/cichallway) -"cyH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"cyK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"cyR" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"cyV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"cyY" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cyZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"czE" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/port) -"czI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"czP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"czR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"czV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"cAh" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/processing) -"cAu" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"cAw" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice10"; - pixel_x = -16; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"cAy" = ( -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"cAG" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"cAR" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/mp_bunks) -"cBb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"cBk" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/basketball) -"cBv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"cBw" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"cBz" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet{ - density = 0; - desc = "An outlet for the pneumatic delivery system."; - icon_state = "delivery_outlet"; - name = "take-ins"; - pixel_x = 7; - pixel_y = 28; - range = 0 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"cBG" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/upper/midship_hallway) -"cBT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/upper/fore_hallway) -"cBW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/containment) -"cCa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"cCi" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access_txt = "200"; - req_one_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"cCk" = ( -/obj/structure/ship_ammo/rocket/banshee, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"cCm" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"cCp" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"cCC" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"cCL" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"cCQ" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." - }, -/obj/item/reagent_container/food/snacks/mre_pack/xmas2, -/obj/item/reagent_container/food/snacks/mre_pack/xmas1, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"cCV" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"cCX" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/cichallway) -"cDe" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"cDl" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"cDm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"cDF" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"cDG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer/brig, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"cDI" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"cDJ" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"cDN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"cEa" = ( -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"cEe" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"cEi" = ( -/obj/structure/sign/poster, -/turf/closed/wall/almayer, -/area/almayer/living/grunt_rnr) -"cEk" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"cEE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/squads/bravo) -"cFg" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_AresUp2"; - vector_x = -102; - vector_y = 61 - }, -/obj/structure/machinery/door_control{ - id = "ARES ReceptStairs2"; - name = "ARES Reception Stairway Shutters"; - pixel_x = 24; - req_one_access_txt = "91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"cFu" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"cFx" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) -"cFz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"cFI" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cFS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/squads/bravo) -"cFW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"cGd" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_s) -"cGm" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"cGr" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"cGy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - closeOtherId = "containment_n"; - dir = 8; - name = "\improper Containment Airlock" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"cGA" = ( -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"cGR" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"cGY" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"cHe" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/living/offices/flight) -"cHk" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/warden_office) -"cHp" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"cHs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = -32 - }, -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"cHu" = ( -/turf/closed/wall/almayer/research/containment/wall/south, -/area/almayer/medical/containment/cell/cl) -"cHG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"cIe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"cIq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/starboard) -"cIr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"cIt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/port_fore_hallway) -"cIv" = ( -/obj/effect/step_trigger/ares_alert/terminals, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ARES Operations Left"; - name = "\improper ARES Operations Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"cIO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"cJk" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"cJs" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"cJv" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_AresDown2"; - vector_x = 102; - vector_y = -61 - }, -/turf/open/floor/plating, -/area/almayer/command/airoom) -"cJy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -14; - pixel_y = 28 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"cJA" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/port_midship_hallway) -"cJE" = ( -/obj/structure/sign/prop2, -/turf/closed/wall/almayer, -/area/almayer/shipboard/sea_office) -"cJJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "37" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) -"cJR" = ( -/obj/item/tool/weldpack{ - pixel_y = 15 - }, -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/welding, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"cJS" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/tool/pen, -/obj/item/tool/pen{ - pixel_y = 3 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"cKk" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"cKm" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -8 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_y = 12 - }, -/obj/item/clothing/head/militia/bucket{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 8; - pixel_y = -1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"cKn" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cKs" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"cKu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"cLl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/storage/fancy/cigar, -/obj/item/tool/lighter/zippo, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"cLn" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"cLC" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"cLF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic/press{ - dir = 1; - name = "\improper Combat Correspondent Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/combat_correspondent) -"cLO" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"cLS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/transmitter{ - name = "CMO Office Telephone"; - phone_category = "Offices"; - phone_id = "CMO Office"; - pixel_y = 29 - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 23; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"cLW" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"cMb" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"cMl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/processing) -"cMq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"cMx" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_a_s) -"cMz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"cMH" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"cMI" = ( -/obj/item/clothing/head/helmet/marine{ - pixel_x = 16; - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/grown/poppy, -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"cMQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"cMV" = ( -/obj/structure/sign/prop1{ - pixel_x = -32; - pixel_y = 2 - }, -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"cMW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/processing) -"cMZ" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"cNb" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/p_bow) -"cNz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"cNC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"cNF" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"cNO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"cNP" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"cNX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"cOf" = ( -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"cOh" = ( -/obj/item/stool{ - pixel_x = 15; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"cOr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"cOt" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"cOx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"cOy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = 33 - }, -/obj/item/toy/deck{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = 9; - pixel_y = 12 - }, -/obj/item/ashtray/plastic{ - pixel_y = -4 - }, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) -"cOF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Briefing Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"cOJ" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"cOV" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = -24; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"cOZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/ids{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/device/flash, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) -"cPj" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/p_bow) -"cPL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/bed/sofa/south/white/left{ - pixel_y = 16 - }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/maint/upper/u_m_p) -"cQf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/hydroponics) -"cQk" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"cQv" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/general_equipment) -"cQw" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"cQC" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -8; - pixel_y = 28 - }, -/obj/structure/sign/safety/intercom{ - pixel_x = 14; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"cQG" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) -"cQL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/lobby) -"cQM" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/req) -"cQW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"cQZ" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 1"; - locked = 1; - name = "\improper Containment Cell 1" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Containment Cell 1"; - name = "\improper Containment Cell 1"; - unacidable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"cRd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"cRg" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"cRr" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south1) -"cRs" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"cRu" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"cRx" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"cRG" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_lobby) -"cRK" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"cRL" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/starboard) -"cRX" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - isopen = 1; - starting_helmet_type = null; - starting_mask_type = null; - starting_suit_type = null; - starting_tank_type = null - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"cSm" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"cSn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"cSp" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"cSH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"cSL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) -"cTg" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"cTU" = ( -/turf/open/floor/almayer/red, -/area/almayer/command/cic) -"cTY" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"cUe" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"cUq" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_s) -"cUz" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cichallway) -"cUI" = ( -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/interrogation) -"cUJ" = ( -/obj/structure/closet/crate, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"cUK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"cUM" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"cUR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"cUS" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "n_engi" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"cUU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"cUW" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/flare, -/obj/item/mortar_shell/flare, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"cVg" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"cVj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_x = -1; - pixel_y = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"cVE" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "7;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/weapon_room) -"cVM" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"cVU" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"cVZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"cWo" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) -"cWC" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"cXh" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"cXi" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/sign/safety/water{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = -17; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"cXs" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/silver/north, -/area/almayer/living/auxiliary_officer_office) -"cXE" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig Maintenance" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/p_bow) -"cXP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"cXV" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/mp_bunks) -"cXX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"cYg" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"cYm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"cYt" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"cYF" = ( -/obj/structure/sign/safety/terminal{ - layer = 2.5; - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/chem_simulator{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"cYJ" = ( -/obj/structure/machinery/sentry_holder/almayer/mini/aicore, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"cYQ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower/engine_core) -"cYT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"cZe" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_f_s) -"cZh" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" - }, -/turf/open/floor/plating, -/area/almayer/command/cichallway) -"cZp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"cZq" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) -"cZL" = ( -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"cZO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"cZV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigarettes/wypacket, -/obj/item/tool/lighter, -/turf/open/floor/almayer, -/area/almayer/living/pilotbunks) -"cZZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/pilotbunks) -"dal" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"dat" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"daz" = ( -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/command/airoom) -"daM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - access_modified = 1; - name = "\improper Flight Crew Quarters"; - req_one_access_txt = "19;22" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"daT" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/living/gym) -"daX" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"daZ" = ( -/obj/structure/machinery/cryopod/right, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"dbn" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c200{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = 9 - }, -/obj/item/reagent_container/pill/happy, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/open/floor/plating, -/area/almayer/living/port_emb) -"dby" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/upper/midship_hallway) -"dbz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"dbJ" = ( -/obj/structure/morgue, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"dbT" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"dbU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/port_umbilical) -"dcb" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"dcd" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"dcj" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-3"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"dcp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"dcx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"dcE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"dcR" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"dcT" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"ddi" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) -"ddy" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"ddz" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"ddL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"ddM" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"ddU" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"deh" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"dej" = ( -/turf/open/floor/almayer/plating_striped/north, -/area/almayer/command/lifeboat) -"deo" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"dey" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"deB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"deD" = ( -/obj/structure/machinery/prop/almayer/CICmap{ - pixel_x = -5 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"deF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"deH" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"deW" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/living/cryo_cells) -"dfa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"dfh" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north2) -"dfl" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"dfo" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 4 - }, -/obj/item/trash/USCMtray{ - pixel_y = 6 - }, -/obj/item/trash/USCMtray{ - pixel_y = 8 - }, -/obj/item/trash/USCMtray{ - pixel_y = 10 - }, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"dfF" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/basketball) -"dfY" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"dga" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"dgt" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_y_offset = 0 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"dgv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump{ - pixel_y = 9; - starting_attachment_types = list(/obj/item/attachable/stock/shotgun) - }, -/obj/item/stack/sheet/cardboard/small_stack{ - layer = 3.01 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"dgw" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 - }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"dgF" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"dhc" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/engine_core) -"dhl" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 4"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"dhm" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"dhP" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"dhQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"dhV" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"dio" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 8 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/reagent_scanner{ - pixel_x = -16; - pixel_y = 5 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"dix" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/processing) -"diK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"diL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"diV" = ( -/obj/structure/sink{ - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_two) -"djk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"djr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"djw" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"djx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 13 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/chief_mp_office) -"djP" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17; - pixel_y = 8 - }, -/obj/structure/machinery/door_control/brbutton{ - id = "engie_store"; - name = "Emergency Storage"; - pixel_x = -2; - pixel_y = 26; - req_one_access_txt = "6" - }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4; - pixel_x = -17; - pixel_y = -6 - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/ce_room) -"dkb" = ( -/obj/structure/machinery/door_control{ - id = "crate_room2"; - name = "storage shutters"; - pixel_y = 26 - }, -/obj/structure/machinery/recharge_station{ - desc = "Where the cargo department's Working Joe used to charge before it tragically fell into the ASRS elevator three years ago. The replacement still hasn't arrived."; - name = "Working Joe charging station" - }, -/obj/structure/sign/safety/synth_storage{ - pixel_x = 8; - pixel_y = 36 - }, -/obj/item/frame/light_fixture/small{ - pixel_y = 17 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"dkr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - dir = 8; - layer = 3.2; - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = 27; - serial_number = 11 - }, -/obj/item/trash/pistachios{ - layer = 2; - pixel_x = 6; - pixel_y = -6 - }, -/obj/structure/machinery/recharger{ - layer = 3.1; - pixel_y = 22 - }, -/obj/item/ammo_magazine/rifle/incendiary{ - current_rounds = 0; - desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; - pixel_x = 10; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/port_emb) -"dlf" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/medical/lockerroom) -"dln" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"dlo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"dls" = ( -/obj/item/tool/surgery/circular_saw, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/retractor, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/morgue) -"dlz" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"dlD" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"dlP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"dlV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"dlW" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha) -"dmb" = ( -/obj/effect/landmark/start/marine/engineer/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"dmw" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"dmA" = ( -/turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"dmH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"dmL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/prop/ice_colony/tiger_rug{ - desc = "A beat up beer stained, incredibly garish, polyester tiger rug. No one knows how it got here. Written on the wash tag are the words 'From Thedus, with love <3', in Sharpie."; - icon_state = "HotlineAlt"; - layer = 2.9; - name = "Richard the tiger" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/living/port_emb) -"dmM" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie_delta_shared) -"dmR" = ( -/obj/effect/glowshroom, -/obj/effect/glowshroom{ - pixel_y = 16 - }, -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"dmY" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/morgue) -"dnt" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) -"dny" = ( -/obj/structure/barricade/plasteel/metal{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"dnA" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"dnP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"dnQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/starboard) -"dnV" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"doh" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/squads/bravo) -"doj" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"doq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"dor" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"doz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/starboard) -"doO" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"doU" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"dpb" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"dph" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/cryo) -"dpp" = ( -/obj/effect/projector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"dpq" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = 13; - pixel_y = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"dpC" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/morgue) -"dpH" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"dpU" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south2) -"dpX" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_p) -"dqb" = ( -/obj/structure/sign/safety/security{ - pixel_x = -16 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"dqw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/weapon_room/notunnel) -"dqN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/landmark/late_join, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/start/senior, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"dqP" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"dqR" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"drg" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"drv" = ( -/obj/structure/dropship_equipment/paradrop_system, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"drz" = ( -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_medbay) -"drB" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/command/cic) -"drX" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) -"dsz" = ( -/obj/item/stack/tile/carpet{ - amount = 12 - }, -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"dsJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"dsR" = ( -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/fore_hallway) -"dsT" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/folder/black, -/obj/item/folder/black, -/obj/item/folder/white, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"dtw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"dtD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/briefing) -"dtH" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"dtO" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"dtR" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/command/cic) -"dtU" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - indestructible = 1; - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - layer = 3.3; - pixel_y = 6 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"dtX" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"dtY" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = -25; - req_one_access_txt = "3" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"dtZ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"due" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"duv" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"duz" = ( -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"duH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"duY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/living/cryo_cells) -"duZ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"dvn" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"dvq" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"dvM" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"dvT" = ( -/turf/open/floor/almayer/uscm/directional/southwest, -/area/almayer/command/cic) -"dwd" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dwj" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"dwl" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"dwr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/centrifuge{ - layer = 3.1; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"dws" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/constr) -"dwE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_y = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"dwK" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/starboard_hallway) -"dwO" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"dwR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"dwS" = ( -/obj/structure/machinery/brig_cell/cell_1{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"dxj" = ( -/obj/structure/sign/poster{ - icon_state = "poster14"; - pixel_x = -27 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"dxk" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered/agent) -"dxq" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"dxr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"dxP" = ( -/obj/structure/filingcabinet/security, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"dxT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"dxV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"dxY" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"dyc" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"dyj" = ( -/obj/structure/closet/secure_closet/commander, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/device/whistle, -/obj/item/device/megaphone, -/obj/item/device/radio, -/obj/item/clothing/shoes/laceup, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"dym" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/obj/item/device/taperecorder, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/interrogation) -"dyD" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "n_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"dyH" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/dogtag{ - desc = "A blank marine's information dog tag. The word ranger and a pawprint is scratched into it." - }, -/obj/item/device/megaphone, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"dyJ" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Computer Lab" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/computerlab) -"dzp" = ( -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"dzq" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/blue, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"dzG" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 26 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"dzI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) -"dzM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"dzP" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"dzT" = ( -/turf/open/floor/almayer/emerald, -/area/almayer/living/briefing) -"dzV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/weapons/m39{ - pixel_x = 2 - }, -/obj/structure/largecrate/supply/weapons/m41a{ - layer = 3.1; - pixel_x = 6; - pixel_y = 17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"dzX" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"dAl" = ( -/obj/item/paper_bin/wy, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/pen/clicky, -/obj/item/tool/pen/clicky, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/desk_bell{ - anchored = 1; - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"dAn" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/req) -"dAy" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"dAA" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"dAB" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"dBf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) -"dBp" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"dBw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"dBA" = ( -/obj/structure/machinery/cm_vending/clothing/medical_crew{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/medical/hydroponics) -"dBB" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"dBE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop/hangar) -"dBH" = ( -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/almayer/medical/lower_medical_medbay) -"dBS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"dBT" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 27 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"dCd" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"dCn" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"dCr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"dCu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"dCw" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) -"dCy" = ( -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"dCz" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"dCH" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"dCK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"dCL" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"dCW" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." - }, -/obj/item/storage/beer_pack, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"dCY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"dCZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"dDf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"dDk" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"dDp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"dDt" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"dDx" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/platform_decoration, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"dDA" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"dDU" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Cryogenics Bay" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cryo) -"dDV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) -"dEa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"dEn" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"dEp" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) -"dEw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) -"dEK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"dEL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"dEP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/upper/midship_hallway) -"dEX" = ( -/obj/structure/closet/secure_closet/guncabinet/riot_control, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"dFe" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"dFf" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/gym) -"dFg" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/starboard_fore_hallway) -"dFA" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/hallways/lower/repair_bay) -"dFF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"dFN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Liasion's Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"dFY" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/hangar) -"dGi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/l42a, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"dGp" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/firealarm, -/obj/item/circuitboard, -/obj/item/clipboard, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"dGE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - access_modified = 1; - name = "\improper XO's Quarters"; - req_access = null; - req_access_txt = "1" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/numbertwobunks) -"dGH" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"dGM" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"dGQ" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"dHb" = ( -/obj/structure/prop/cash_register/broken, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"dHd" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"dHk" = ( -/obj/structure/closet{ - name = "boxing attire" - }, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/green, -/obj/item/clothing/under/shorts/green, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/grey, -/obj/item/clothing/under/shorts/grey, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"dHu" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2; - pixel_y = 23 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 2; - pixel_y = -4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"dHA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"dHJ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"dHK" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"dHO" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/squads/req) -"dHU" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/device/binoculars, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"dHZ" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/plating, -/area/almayer/living/bridgebunks) -"dIh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"dIi" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating/plating_catwalk/aicore, -/area/almayer/command/airoom) -"dIn" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"dIp" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"dIs" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/squads/req) -"dIt" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/processing) -"dIG" = ( -/turf/open/floor/almayer/uscm/directional/northwest, -/area/almayer/command/cic) -"dIT" = ( -/obj/item/tool/warning_cone, -/obj/item/tool/warning_cone, -/obj/item/tool/warning_cone, -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"dIZ" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 5; - pixel_y = -2 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) -"dJi" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/sea_office) -"dJl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"dJq" = ( -/obj/structure/sign/safety/rad_shield{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/engine_core) -"dJE" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"dJG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"dJJ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/execution_storage) -"dJL" = ( -/obj/structure/machinery/cm_vending/clothing/pilot_officer{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"dJR" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 - }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"dKk" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south2) -"dKm" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"dKo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"dKq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/blue, -/area/almayer/living/pilotbunks) -"dKs" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 29 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/captain_mess) -"dKu" = ( -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"dKG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"dKK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"dKL" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/airmix) -"dKS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"dKW" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering) -"dKY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"dLd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 8 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"dLf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"dLL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dLP" = ( -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"dLX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"dMj" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"dMs" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_lobby) -"dMz" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cafeteria_officer) -"dMA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/fore_hallway) -"dMK" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 8 - }, -/area/almayer/medical/containment/cell) -"dMN" = ( -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"dNd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"dNe" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"dNh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"dNi" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"dNj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"dNm" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"dNt" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_1"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"dNA" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"dNS" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer4" - }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"dNW" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"dNX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"dOp" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"dOq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"dOt" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Core Chamber"; - dir = 8 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"dOw" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"dOG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"dOS" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"dPn" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"dPq" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"dPr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"dPw" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/starboard_atmos) -"dPC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"dPE" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"dPJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Mixed Air Control" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"dPM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"dPO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"dPP" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/command/cic) -"dPR" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"dPU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D2"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"dQa" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"dQd" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -6; - pixel_y = 28 - }, -/obj/structure/machinery/firealarm{ - pixel_x = 8; - pixel_y = 28 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/transmitter/rotary{ - name = "Intelligence Center Telephone"; - phone_category = "Almayer"; - phone_id = "Intelligence Center Telephone" - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"dQv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"dQE" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 1; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/containment) -"dQF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"dQJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/commandbunks) -"dQU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"dQV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dRh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/hydroponics) -"dRx" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"dRG" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 4; - name = "Dropship Remote Control Console" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"dRK" = ( -/turf/open/floor/almayer/blue, -/area/almayer/command/cic) -"dRL" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"dRP" = ( -/obj/structure/bed/chair/comfy/orange, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"dRT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"dSj" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered/agent) -"dSy" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/flashbangs{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/restraint/handcuffs, -/obj/item/storage/firstaid/regular, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"dSC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"dSG" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/squads/charlie) -"dSJ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -28 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"dSQ" = ( -/obj/structure/machinery/door_control{ - id = "pobunk2"; - name = "PO2 Privacy Shutters"; - pixel_x = -24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"dTg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"dTk" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"dTr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) -"dTw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/port) -"dTI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"dUg" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/structure/prop/server_equipment/laptop{ - pixel_x = -2; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"dUq" = ( -/turf/open/floor/almayer/orange, -/area/almayer/squads/alpha_bravo_shared) -"dUD" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"dUH" = ( -/turf/open/floor/almayer/greencorner/north, -/area/almayer/squads/req) -"dUU" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"dUX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/structure/sign/catclock{ - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"dVg" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"dVs" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"dVL" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"dVM" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/clothing/gloves/yellow, -/obj/item/device/multitool, -/obj/item/tool/screwdriver{ - icon_state = "screwdriver7" - }, -/obj/item/tool/crowbar/red, -/obj/item/book/manual/engineering_hacking, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"dVR" = ( -/obj/structure/ladder{ - height = 2; - id = "AftPortMaint" - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/u_a_p) -"dWb" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"dWc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"dWg" = ( -/obj/effect/landmark/start/cargo, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"dWs" = ( -/turf/open/floor/almayer/silver, -/area/almayer/living/briefing) -"dWv" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) -"dWA" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"dWB" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"dWO" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_2"; - name = "treadmill" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"dXa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"dXc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/item/pizzabox/mushroom{ - pixel_y = 11 - }, -/obj/item/poster, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/shipboard/brig/cic_hallway) -"dXi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"dXy" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"dXV" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"dYb" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"dYc" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"dYg" = ( -/turf/open/floor/almayer/uscm/directional/north, -/area/almayer/command/lifeboat) -"dYp" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/smart, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"dYq" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - access_modified = 1; - name = "\improper Senior Enlisted Advisor's Office"; - req_access = null; - req_access_txt = "19;29" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/sea_office) -"dYu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"dYG" = ( -/obj/docking_port/stationary/emergency_response/port2, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"dYH" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "Perma 2"; - name = "\improper cell shutter" - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Isolation Cell" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"dYK" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/rewire{ - pixel_y = -32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"dYO" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"dYR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"dZg" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 - }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"dZj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"dZn" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = -18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"dZo" = ( -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"dZq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/port) -"dZu" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"dZv" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"dZw" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"dZE" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/boonie, -/obj/item/trash/chunk/hunk, -/obj/item/trash/crushed_cup, -/obj/item/trash/uscm_mre, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"dZQ" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) -"dZW" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"eac" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cic) -"ean" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 3"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 4 - }, -/area/almayer/medical/containment/cell) -"eat" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"eaw" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item{ - pixel_x = 5 - }, -/obj/item/facepaint/black{ - pixel_x = -10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"eaC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"eaR" = ( -/obj/structure/machinery/door_control{ - id = "or1privacyshutter"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_one) -"ebd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"ebI" = ( -/obj/item/clothing/shoes/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"ebN" = ( -/turf/closed/wall/almayer/aicore/reinforced, -/area/almayer/command/airoom) -"ebX" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or03"; - name = "Operating Theatre 3" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_three) -"ecb" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"ecf" = ( -/obj/structure/machinery/cm_vending/clothing/maintenance_technician, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"ecr" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/captain_mess) -"ecC" = ( -/turf/open/floor/almayer/green, -/area/almayer/living/offices) -"ecD" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/s_bow) -"ecY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil{ - icon_state = "dropship2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"edJ" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell/cl) -"edN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/starboard) -"edQ" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/command/cichallway) -"edV" = ( -/obj/structure/machinery/power/terminal, -/turf/open/floor/almayer, -/area/almayer/maint/upper/mess) -"eee" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"eeG" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/door_control{ - id = "officers_mess"; - name = "Privacy Shutters"; - pixel_y = -19 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"eeR" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"eeW" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"efl" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/squads/charlie_delta_shared) -"efq" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"eft" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"efw" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) -"efJ" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"efV" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"egf" = ( -/obj/structure/machinery/computer/arcade, -/obj/item/prop/helmetgarb/spacejam_tickets{ - pixel_x = 4; - pixel_y = 12 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/grunt_rnr) -"egg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"egp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/platform_decoration, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"egB" = ( -/obj/structure/machinery/cm_vending/gear/synth, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"egL" = ( -/obj/structure/machinery/atm{ - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"egN" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"egQ" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"eha" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ehf" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/cichallway) -"ehg" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/squads/alpha) -"ehh" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"ehi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"ehj" = ( -/obj/item/stack/catwalk, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"ehl" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/interrogation) -"ehx" = ( -/obj/effect/landmark/start/marine/tl/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"ehz" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"ehM" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"ehO" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMO Shutters"; - name = "\improper CMO Office Shutters" - }, -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/almayer/medical/upper_medical) -"eic" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/upper/midship_hallway) -"eig" = ( -/turf/open/floor/almayer/uscm/directional/northeast, -/area/almayer/command/lifeboat) -"eii" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"eil" = ( -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - layer = 2.9; - pixel_x = 7; - pixel_y = 16 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - layer = 2.9; - pixel_x = -8; - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/containment) -"ein" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"eiq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/prop/magazine/dirty, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"eis" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"eit" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/tankerbunks) -"eiA" = ( -/obj/structure/surface/table/almayer, -/obj/item/pipe{ - dir = 9 - }, -/obj/item/tool/screwdriver{ - layer = 3.6; - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/tool/crowbar/red{ - pixel_x = 17 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/hallways/lower/repair_bay) -"eiC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Officer's Study" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"ejc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"ejh" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_medbay) -"ejH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"ekd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/living/cryo_cells) -"eki" = ( -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"ekm" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"eko" = ( -/obj/structure/morgue/crematorium, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"ekp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/shipboard/brig/cic_hallway) -"ekr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - access_modified = 1; - dir = 2; - name = "Firing Range"; - req_access = null; - req_one_access_txt = "2;4;7;9;21" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) -"ekt" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"eky" = ( -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"ekB" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"ekJ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/mono, -/area/almayer/command/computerlab) -"ekM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"ekQ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Interior"; - name = "\improper ARES Inner Chamber Shutters"; - plane = -7 - }, -/obj/effect/step_trigger/ares_alert/core, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"ekV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ela" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"elj" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"elq" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"elv" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/port) -"elx" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"elA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"elD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"elM" = ( -/obj/structure/sign/safety/south{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) -"elR" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"elS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/mp_bunks) -"emg" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"emp" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/processing) -"emr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"emw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"emA" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_s) -"emC" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_p) -"emD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/midship_hallway) -"emF" = ( -/turf/open/floor/almayer/uscm/directional/east, -/area/almayer/command/cic) -"emY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"end" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"enq" = ( -/obj/structure/largecrate/supply/supplies/mre, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"eny" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"enP" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/living/port_emb) -"enY" = ( -/obj/item/storage/firstaid, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"eod" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"eor" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"eox" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"eoD" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"eoG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) -"eoJ" = ( -/obj/structure/machinery/fuelcell_recycler, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"eoP" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_fore_hallway) -"eoX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_one) -"epj" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"epn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"epy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"epE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"epF" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"epJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"epK" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"epW" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ - dir = 8; - vent_tag = "Synth Bay" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"eqb" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/stamp/denied{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/item/device/eftpos{ - eftpos_name = "Cargo Bay EFTPOS scanner"; - pixel_x = -10 - }, -/obj/item/tool/stamp/ro{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/storage/fancy/cigar{ - pixel_x = 6 - }, -/obj/item/ashtray/glass{ - pixel_x = 11; - pixel_y = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"eqp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"eqq" = ( -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/living/cryo_cells) -"eqN" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) -"eqR" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"ern" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"erG" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/obj/effect/landmark/start/marine/smartgunner/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"erH" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"erJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/living/cryo_cells) -"erZ" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) -"esk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"esm" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"esB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"esC" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = -3 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/item/prop/magazine/dirty{ - pixel_x = -6; - pixel_y = -10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/captain_mess) -"esI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"esK" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"esM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/gym) -"esX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"esZ" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"eth" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"etm" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/tool/pen, -/obj/item/book/manual/marine_law{ - pixel_x = 15; - pixel_y = 5 - }, -/obj/item/book/manual/security_space_law{ - pixel_x = 16; - pixel_y = 9 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/auxiliary_officer_office) -"ett" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"etN" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"etY" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/starboard_missiles) -"euc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"eue" = ( -/obj/structure/largecrate/supply/supplies/mre, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"eui" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"euj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"euq" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"euE" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"euN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door_control{ - id = "ARES Mainframe Left"; - name = "ARES Mainframe Lockdown"; - pixel_x = 24; - pixel_y = 24; - req_one_access_txt = "200;91;92" - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"euT" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/machinery/cm_vending/sorted/medical, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"evi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = -16 - }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"evj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"evn" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - access_modified = 1; - dir = 1; - name = "\improper Flight Crew Quarters"; - req_one_access_txt = "19;22" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"evw" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"evz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/hallways/upper/midship_hallway) -"evV" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - id_tag = "or03"; - name = "Lobby" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"evX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"ewc" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"ewn" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/briefing) -"ewr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"ewu" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"ewA" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/squads/delta) -"ewP" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"exb" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"exf" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"exi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"exl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"exv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"exH" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 4"; - pixel_x = -24 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) -"exK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"eyf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/medical_science) -"eyk" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"eyn" = ( -/obj/structure/machinery/door_control{ - id = "ARES JoeCryo"; - name = "ARES WorkingJoe Bay Shutters"; - pixel_x = 24; - req_one_access_txt = "91;92" - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Comms" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"eyr" = ( -/obj/structure/machinery/door_control{ - id = "safe_armory"; - name = "Hangar Armory Lockdown"; - pixel_y = 24; - req_access_txt = "4" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"eyD" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/starboard_hallway) -"eyP" = ( -/turf/open/floor/almayer/uscm/directional/logo_c/west, -/area/almayer/command/lifeboat) -"eyZ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"ezi" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"ezq" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"ezC" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"ezM" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"ezS" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"ezU" = ( -/obj/item/storage/box/matches{ - pixel_x = -11; - pixel_y = -3 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/item/reagent_container/food/drinks/cans/dr_gibb{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"ezV" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/processing) -"ezW" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ezX" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"eAf" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/hidden{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell/cl) -"eAh" = ( -/obj/item/frame/light_fixture{ - anchored = 1; - desc = "A broken fluorescent tube light."; - dir = 8; - icon_state = "tube-broken"; - name = "broken light fixture" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"eAm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"eAB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"eAK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"eAN" = ( -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"eAY" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/obj/structure/machinery/door_control{ - id = "Secretroom"; - indestructible = 1; - layer = 2.5; - name = "Shutters"; - use_power = 0 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"eBe" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"eBg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"eBo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"eBy" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"eBE" = ( -/obj/structure/machinery/photocopier{ - anchored = 0 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"eBQ" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"eCg" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/command/cic) -"eCj" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"eCm" = ( -/obj/structure/cargo_container/arious/left, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"eCL" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"eCY" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"eDf" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"eDj" = ( -/obj/item/tool/warning_cone{ - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"eDs" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) -"eDu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"eDz" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"eDJ" = ( -/obj/structure/disposalpipe/down/almayer{ - dir = 4; - id = "almayerlink_med_req" - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"eDS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"eDW" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"eDY" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"eEj" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/red, -/obj/item/tool/pen, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"eEo" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"eEw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"eET" = ( -/obj/structure/machinery/camera/autoname/almayer/brig{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"eFa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"eFy" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PL-2"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"eFJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"eFN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"eFT" = ( -/obj/structure/bed/sofa/vert/grey, -/obj/structure/bed/sofa/vert/grey{ - pixel_y = 11 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"eFU" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/maint/upper/mess) -"eFV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) -"eFY" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/ashtray/bronze{ - pixel_x = 2; - pixel_y = 9 - }, -/obj/structure/machinery/door_control/cl/office/window{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/structure/machinery/door_control/cl/office/door{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/spacecash/c500{ - pixel_x = -10; - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"eGj" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Laundry Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) -"eGB" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"eGD" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"eGZ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"eHl" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"eHE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"eHF" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/computerlab) -"eHK" = ( -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"eHN" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/squads/req) -"eHW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Conference and Office Area" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"eHZ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/squads/bravo) -"eIg" = ( -/obj/structure/machinery/vending/cola/research{ - pixel_x = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"eIh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"eIj" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/stair_clone/upper) -"eIp" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"eIt" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"eIy" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"eIM" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"eIR" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"eIT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"eIY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"eJb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"eJe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/greencorner, -/area/almayer/squads/req) -"eJl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"eJm" = ( -/obj/structure/closet, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/newspaper, -/obj/item/clothing/gloves/yellow, -/obj/item/stack/tile/carpet{ - amount = 20 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"eJy" = ( -/turf/open/floor/almayer_hull/outerhull_dir/northwest, -/area/space) -"eJB" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"eJC" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"eJH" = ( -/obj/structure/machinery/cm_vending/gear/intelligence_officer{ - density = 0; - pixel_x = -32 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) -"eJJ" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = -17 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/upper/u_m_p) -"eJM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"eJV" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"eJX" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/ce_room) -"eKl" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/item/tool/screwdriver, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"eKo" = ( -/turf/open/floor/almayer/silverfull, -/area/almayer/living/cryo_cells) -"eKq" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"eKr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/living/port_emb) -"eKw" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"eKH" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"eKK" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal/delivery{ - density = 0; - desc = "A pneumatic delivery unit."; - icon_state = "delivery_engi"; - name = "Returns"; - pixel_x = 25; - pixel_y = 28 - }, -/obj/structure/surface/rack, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"eKQ" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"eKS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/photocopier, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"eLb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"eLn" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ - access_modified = 1; - dir = 1; - name = "\improper Auxiliary Combat Support Secondary Preparations"; - req_one_access_txt = "19;27;22" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) -"eLv" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"eLx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"eLz" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 9; - pixel_y = 15 - }, -/obj/item/trash/cigbutt{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"eLA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"eLH" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/beer_pack, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -27; - serial_number = 11 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"eLM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"eMr" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"eMx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"eMK" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/ce_room) -"eML" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"eMZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"eNd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"eNi" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/ce_room) -"eNq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"eNJ" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, -/obj/item/weapon/baseballbat/metal{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/starboard) -"eNR" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/processing) -"eOx" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"eOE" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"eOP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"eOU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"ePf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"ePu" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"ePz" = ( -/obj/structure/largecrate/supply/weapons/pistols, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"ePB" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_missiles) -"ePC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"ePM" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"ePW" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"eQa" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 11 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"eQd" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"eQh" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"eQJ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/sign/poster/ad{ - pixel_x = 30 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"eQL" = ( -/obj/structure/machinery/door_control{ - id = "pobunk1"; - name = "PO1 Privacy Shutters"; - pixel_x = -24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"eQS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"eRg" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"eRi" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/folder/black{ - pixel_y = 8 - }, -/obj/item/folder/yellow, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -16; - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"eRl" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = -17 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/transmitter/rotary/no_dnd{ - name = "Charlie Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Charlie Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"eRx" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"eRE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_four) -"eRX" = ( -/obj/item/device/radio/marine{ - pixel_x = 6 - }, -/obj/item/device/radio/marine{ - pixel_x = 3 - }, -/obj/item/device/radio/marine, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"eSg" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/squads/alpha) -"eSi" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/cell/high, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"eSl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"eSp" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -16 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"eSu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_one) -"eSH" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"eSO" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_medbay) -"eST" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"eSW" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"eSX" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"eTb" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/stern) -"eTd" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/boonie{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/item/trash/popcorn, -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"eTv" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"eTY" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/tomatoseed, -/turf/open/floor/almayer/green/north, -/area/almayer/shipboard/brig/cells) -"eUe" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"eUl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"eUv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/upper_medical) -"eUH" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/engineering/port_atmos) -"eUP" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"eUW" = ( -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"eVd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"eVo" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/upper/fore_hallway) -"eVH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"eVQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"eWa" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"eWe" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"eWh" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"eWm" = ( -/obj/structure/machinery/door_control{ - id = "Interrogation Shutters"; - name = "\improper Shutters"; - pixel_x = 24; - pixel_y = 12; - req_access_txt = "3" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/interrogation) -"eWo" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"eWs" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"eWt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/storage/box/masks{ - pixel_x = 5 - }, -/obj/structure/closet/secure_closet/surgical{ - pixel_y = 30 - }, -/obj/item/reagent_container/glass/minitank{ - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_medbay) -"eWx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"eWI" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/securestorage) -"eWS" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"eXc" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"eXq" = ( -/turf/closed/wall/almayer, -/area/almayer/living/offices/flight) -"eXr" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"eXs" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"eXt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/shipboard/brig/medical) -"eXF" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/pillbottles{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/storage/box/pillbottles{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/box/pillbottles, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"eXG" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"eXL" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"eYn" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"eYw" = ( -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_lobby) -"eYy" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"eYz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv, -/obj/item/device/defibrillator, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"eYM" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2; - pixel_y = -22 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 2; - pixel_y = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"eYN" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"eYQ" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_x = -32 - }, -/obj/effect/landmark/start/synthetic, -/turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"eYT" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"eYU" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/vehiclehangar) -"eYV" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"eYW" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/hangar) -"eZm" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/p_stern) -"eZo" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"eZH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"eZR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"eZU" = ( -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer/red/north, -/area/almayer/living/cryo_cells) -"fag" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"faj" = ( -/obj/structure/closet, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"faC" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = -17 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"faE" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - name = "law and engineering manuals bookcase"; - opacity = 0 - }, -/obj/item/book/manual/marine_law, -/obj/item/book/manual/detective, -/obj/item/book/manual/security_space_law, -/obj/item/book/manual/engineering_guide, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/orbital_cannon_manual, -/obj/item/book/manual/ripley_build_and_repair, -/obj/item/book/manual/engineering_hacking, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"faO" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"faP" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - access_modified = 1; - dir = 2; - name = "Firing Range"; - req_access = null; - req_one_access_txt = "2;4;7;9;21" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) -"faR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"fbg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/scalpel{ - pixel_x = -1; - pixel_y = 10 - }, -/obj/item/stack/cable_coil{ - pixel_x = 8; - pixel_y = 1 - }, -/obj/item/stack/sheet/cardboard/small_stack{ - layer = 3.01; - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"fbs" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"fby" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"fbI" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/starboard) -"fbW" = ( -/obj/structure/barricade/metal{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"fbZ" = ( -/obj/structure/sign/safety/three{ - pixel_x = 31; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/hallways/lower/port_midship_hallway) -"fca" = ( -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"fcd" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"fcf" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"fcD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/groundside_operations{ - dir = 4; - pixel_y = 8 - }, -/obj/structure/machinery/door/window/westright, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"fcZ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_three) -"fde" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"fdt" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/aft_hallway) -"fdx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"fdF" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"fdT" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/perma) -"feb" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/brig/execution) -"feh" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"fel" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"feo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"fet" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) -"feE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/midship_hallway) -"feG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"feI" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"feW" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"ffg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/perma) -"ffp" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "Storage"; - req_one_access_txt = "19;21" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"ffq" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_y = 15 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 7; - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"fgb" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/north1) -"fgd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/processor{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"fge" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"fgi" = ( -/obj/structure/machinery/cm_vending/clothing/engi/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"fgr" = ( -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) -"fgy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"fgE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/machinery/vending/cigarette, -/obj/item/ashtray/plastic{ - layer = 3.4; - pixel_x = 7; - pixel_y = 11 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 7; - pixel_y = 19 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"fgF" = ( -/turf/open/floor/almayer/red, -/area/almayer/living/briefing) -"fgK" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/command/lifeboat) -"fgR" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "courtyard window"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/cells) -"fgY" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"fhc" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"fhf" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"fhn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"fhA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"fhJ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/transmitter{ - dir = 4; - name = "Port Railgun Control Telephone"; - phone_category = "Command"; - phone_id = "Port Railgun Control"; - pixel_x = -26 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"fhR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/command/airoom) -"fhT" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"fib" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OTStore"; - name = "\improper Secure Storage"; - unacidable = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) -"fic" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"fix" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"fiy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"fiE" = ( -/obj/structure/machinery/computer/cameras/containment/hidden{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/photo_album, -/obj/item/device/camera_film, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"fjn" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/lighter/random, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"fjD" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/processing) -"fjV" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/almayer/sterile, -/area/almayer/medical/upper_medical) -"fkc" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Rest and Relaxation Area" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"fkd" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"fkv" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/obj/structure/closet/crate/trashcart, -/obj/item/reagent_container/food/drinks/cans/souto, -/obj/item/reagent_container/food/snacks/margheritaslice{ - desc = "A slice of classic pizza ruined by the corps."; - name = "dirty margherita slice"; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/trash/cigbutt/ucigbutt{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8 - }, -/obj/item/bananapeel{ - desc = "Ew."; - gender = "plural"; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "\improper finger nails"; - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/stack/medical/ointment{ - layer = 3.5; - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/clothing/gloves/latex, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 11; - pixel_y = 7 - }, -/obj/item/trash/uscm_mre, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"fkF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"fkW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/starboard) -"fkX" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 8 - }, -/area/almayer/medical/containment/cell/cl) -"fkY" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"fld" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"flm" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/lower/port_fore_hallway) -"flo" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 26 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"flJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"flK" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/command/cic) -"flR" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"flV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/chief_mp_office) -"fmh" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"fmv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"fmK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cic) -"fnh" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) -"fnk" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"fnq" = ( -/obj/structure/closet/crate/internals, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"fnt" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 32 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_lobby) -"fnv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"fnB" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"fnD" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Tool Closet" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"fnH" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"fnP" = ( -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/port_midship_hallway) -"foa" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"foe" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"foj" = ( -/obj/structure/sign/safety/rewire{ - pixel_y = 32 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/mp_bunks) -"fov" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 - }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"foz" = ( -/obj/structure/machinery/telecomms/receiver/preset_left, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/radio_rad{ - pixel_x = 16; - pixel_y = 32 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"foN" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer, -/area/almayer/living/tankerbunks) -"foP" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/machinery/door_control{ - id = "containmentlockdown_S"; - name = "Containment Lockdown"; - pixel_x = 29; - pixel_y = 3; - req_one_access_txt = "28" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"foQ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"foW" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/officer_study) -"foZ" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_three) -"fpa" = ( -/obj/effect/landmark/railgun_computer{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"fpn" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"fpp" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/starboard_atmos) -"fpv" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"fpH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"fpM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"fpQ" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_2"; - name = "treadmill" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"fqa" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/medical_science) -"fqm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"fqs" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/squads/alpha) -"fqw" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"fqy" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Gym" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/gym) -"fqF" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"fqL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"fqO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"fqU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"fre" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/prop/dam/crane{ - bound_height = 32; - climbable = 1; - layer = 3.5; - pixel_y = -23 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"frk" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"frM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"frS" = ( -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"frU" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"frW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/processing) -"frY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"fsc" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/squads/bravo) -"fsd" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"fsh" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"fsi" = ( -/obj/structure/prop/almayer/missile_tube, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_missiles) -"fsw" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"fsD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"fsO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"fsQ" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/chemistry) -"fsR" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"fsY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"ftj" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"ftm" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"ftp" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"ftz" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"ftX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"fun" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"fuy" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"fuK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 12; - pixel_y = -24 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/chief_mp_office) -"fvk" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -16 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"fvu" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"fvw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"fvA" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"fvF" = ( -/obj/structure/closet/secure_closet/fridge/dry, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"fvM" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/item/weapon/gun/rifle/l42a{ - pixel_x = 17; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"fvN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/port_point_defense) -"fvV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"fwl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_two) -"fwH" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"fwI" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_aft_hallway) -"fwK" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hallways/lower/starboard_umbilical) -"fwS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"fwY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie_delta_shared) -"fxg" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/engineering/laundry) -"fxk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/lower/port_fore_hallway) -"fxs" = ( -/obj/docking_port/stationary/emergency_response/port3, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"fxz" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge4" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) -"fxB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"fxJ" = ( -/obj/structure/closet/secure_closet/guncabinet/riot_control, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"fyj" = ( -/obj/structure/machinery/cryopod/right, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"fyl" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/golden_cup{ - desc = "A golden cup, won in the championship final against the USS Sulaco ca. 2172"; - pixel_x = -4; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"fyD" = ( -/obj/structure/machinery/light, -/obj/structure/ladder{ - height = 1; - id = "cicladder2" - }, -/turf/open/floor/plating/almayer, -/area/almayer/living/briefing) -"fyI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"fzd" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/hallways/lower/port_midship_hallway) -"fzs" = ( -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3_4range, -/area/almayer/command/airoom) -"fzO" = ( -/obj/structure/bed/chair/comfy/alpha, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"fzP" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/item/folder/black, -/obj/item/storage/fancy/cigarettes/kpack, -/obj/structure/machinery/door_control{ - id = "CE Office Shutters"; - name = "CE Office Shutters"; - pixel_x = -6; - pixel_y = 18; - req_access_txt = list(); - req_one_access_txt = "1;6" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/ce_room) -"fAd" = ( -/turf/open/floor/almayer/orange, -/area/almayer/command/cic) -"fAg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"fAr" = ( -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"fAu" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"fAw" = ( -/obj/structure/machinery/atm{ - pixel_y = 32 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"fAy" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/orangeseed, -/turf/open/floor/almayer/green/north, -/area/almayer/shipboard/brig/cells) -"fAz" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -7 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -10; - pixel_y = 14 - }, -/obj/item/storage/xeno_tag_case/full{ - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"fAB" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"fAS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"fAU" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/containment) -"fAV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fBn" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"fBA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"fBG" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/tool/crowbar, -/obj/item/clothing/head/helmet/marine/pilot{ - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/device/camera{ - pixel_x = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"fBT" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/living/basketball) -"fBX" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 7 - }, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"fCa" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/command/lifeboat) -"fCd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"fCg" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"fCp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"fCx" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"fCG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"fCJ" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/starboard_missiles) -"fCL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"fCN" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"fCQ" = ( -/obj/structure/machinery/door/poddoor/almayer/blended{ - id = "RoomDivider"; - layer = 3.1; - name = "\improper Room Divider" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"fCS" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"fCV" = ( -/turf/open/floor/almayer/blue/west, -/area/almayer/command/cichallway) -"fCW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"fDs" = ( -/obj/item/prop/almayer/box, -/obj/item/prop{ - desc = "This M57 smartgun was utilized in field testing by the greatest smartgunner the USS Almayer ever had, Larry A.W Lewis, until he was fatally and tragically decapitated from a single clean shot to the head by a CLF sniper. As he didn't wear a helmet, it took weeks to find the body."; - icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'; - icon_state = "m56c"; - item_state = "m56c"; - name = "broken M57 'Larry's Will' smartgun"; - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/frame/light_fixture/small{ - pixel_y = 17 - }, -/obj/structure/machinery/door_control{ - id = "crate_room4"; - name = "storage shutters"; - pixel_y = 26 - }, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/obj/item/packageWrap, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"fDN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Holding Cell" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"fDT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"fDW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"fEa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"fEl" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/marine, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"fEt" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north2) -"fEF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fEH" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = -3 - }, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"fEK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"fEZ" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fFo" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"fFp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"fFt" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"fFu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"fFE" = ( -/obj/structure/surface/table/almayer, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_lobby) -"fFJ" = ( -/obj/structure/closet/secure_closet/bar{ - name = "Success Cabinet"; - req_access_txt = "1" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"fFU" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"fFV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Nitrogen Control Console" - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"fFZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/tool/crowbar/red, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) -"fGg" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"fGh" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"fGC" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"fGK" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"fGN" = ( -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) -"fGY" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/alamo{ - layer = 2.9 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"fHb" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"fHs" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"fHB" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/cups{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"fHD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha_bravo_shared) -"fHK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"fHN" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"fHQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"fIc" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/clothing/suit/space/compression/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"fId" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"fIk" = ( -/obj/structure/stairs, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fIp" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"fIy" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"fIz" = ( -/obj/item/tool/warning_cone, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"fID" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) -"fIF" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"fIK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"fIM" = ( -/obj/effect/landmark/start/marine/tl/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"fIO" = ( -/obj/structure/surface/rack, -/obj/item/facepaint/sniper, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"fIT" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"fIW" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/item/bedsheet/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"fIY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - indestructible = 1; - name = "ARES Chamber Lockdown"; - pixel_x = 24; - pixel_y = 8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/door/poddoor/railing{ - closed_layer = 4; - density = 0; - id = "ARES Railing"; - layer = 2.1; - open_layer = 2.1; - unacidable = 0; - unslashable = 0 - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"fJd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"fJg" = ( -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "hypersleep curtain" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_p) -"fJh" = ( -/obj/structure/stairs, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fJu" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"fJy" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/almayer, -/area/almayer/living/pilotbunks) -"fJH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"fJO" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_1"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"fKf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -6; - pixel_y = 28 - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 - }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/obj/structure/machinery/firealarm{ - pixel_x = 8; - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"fKg" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/hallways/hangar) -"fKs" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"fKB" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"fKI" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe{ - pixel_x = -4 - }, -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/obj/item/tool/minihoe{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -2 - }, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/almayer/green/southwest, -/area/almayer/living/grunt_rnr) -"fKS" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_p) -"fKX" = ( -/obj/structure/surface/rack{ - desc = "A bunch of metal shelves stacked on top of eachother. Excellent for storage purposes, less so as cover. One of the shelf legs is damaged, resulting in the rack being propped up by what appears to be circuit boards." - }, -/obj/structure/machinery/light/small{ - dir = 4; - icon_state = "bulb-burned"; - status = 3 - }, -/obj/effect/decal/cleanable/blood, -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag" - }, -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag" - }, -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag" - }, -/obj/item/prop{ - desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged."; - icon = 'icons/obj/items/circuitboards.dmi'; - icon_state = "id_mod"; - layer = 2.78; - name = "circuit board"; - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/prop{ - desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged."; - icon = 'icons/obj/items/circuitboards.dmi'; - icon_state = "id_mod"; - layer = 2.79; - name = "circuit board"; - pixel_x = 8; - pixel_y = 7 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_medbay) -"fLe" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) -"fLf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"fLl" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/s_stern) -"fLn" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"fLs" = ( -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"fLt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"fLz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"fLF" = ( -/obj/structure/machinery/brig_cell/perma_2{ - pixel_x = -32 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"fLN" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"fMv" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Emergency Air Storage" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"fME" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"fMK" = ( -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/living/briefing) -"fMT" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 4 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"fMU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"fNi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/bed/chair/office/dark, -/obj/item/clothing/head/cmcap{ - pixel_x = -2; - pixel_y = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"fNj" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"fNm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"fNn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"fNq" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/cic) -"fNs" = ( -/obj/structure/machinery/camera/autoname/almayer/brig{ - dir = 4 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/shipboard/brig/cells) -"fNE" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"fNI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"fNT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) -"fNU" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"fNZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"fOb" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/squads/bravo) -"fOe" = ( -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/tool/weldingtool, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, -/obj/item/clothing/head/welding, -/obj/item/device/reagent_scanner, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"fOk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"fOq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) -"fOv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"fOx" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/structure/machinery/door_control{ - id = "Firing_Range_1"; - name = "range shutters"; - pixel_x = 9; - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) -"fOC" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/containment) -"fOD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - indestructible = 1; - name = "ARES Chamber Lockdown"; - pixel_x = -24; - pixel_y = 8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/door/poddoor/railing{ - closed_layer = 4; - density = 0; - id = "ARES Railing"; - layer = 2.1; - open_layer = 2.1; - unacidable = 0; - unslashable = 0 - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"fOE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-y" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"fOG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/cryo_cells) -"fOH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/view_objectives{ - dir = 4 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) -"fON" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"fOT" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"fOV" = ( -/obj/vehicle/powerloader, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"fPl" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"fPv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"fPx" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"fPA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"fPJ" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"fPZ" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext"; - name = "Window Shutters"; - pixel_x = -26; - pixel_y = 6; - req_access_txt = "28" - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_door"; - name = "Door Shutters"; - pixel_x = -26; - pixel_y = 1; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"fQq" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"fQF" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - layer = 3.2; - pixel_x = 4; - pixel_y = 17 - }, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = -10; - pixel_y = 1 - }, -/obj/item/reagent_container/food/snacks/grown/orange{ - layer = 3.3; - pixel_x = 1; - pixel_y = 13 - }, -/obj/item/prop/magazine/book/starshiptroopers{ - pixel_x = 8; - pixel_y = -3 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/living/port_emb) -"fQK" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"fQM" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_lobby) -"fQR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/engine_core) -"fQS" = ( -/obj/structure/bed/chair/comfy/orange, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"fQY" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/obj/structure/catwalk{ - health = null - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"fRb" = ( -/turf/closed/wall/almayer/reinforced/temphull, -/area/almayer/living/gym) -"fRo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) -"fRC" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"fRL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"fRS" = ( -/obj/effect/landmark/start/warden, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cryo) -"fRT" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"fSh" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"fSx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"fSy" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"fSD" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"fSH" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/south1) -"fSY" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer/blue, -/area/almayer/living/port_emb) -"fTc" = ( -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - closeOtherId = "astroladder_s"; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"fTl" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_a_s) -"fTm" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"fTn" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"fTr" = ( -/obj/structure/machinery/power/apc/almayer/east, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"fTs" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"fTt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/processing) -"fTw" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/starboard_missiles) -"fTB" = ( -/obj/structure/machinery/disposal/broken, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"fTN" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 - }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"fTR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"fTS" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"fUc" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_door"; - name = "Door Shutters"; - pixel_y = 29; - req_access_txt = "28" - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"fUn" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"fUA" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"fUN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"fVa" = ( -/obj/item/stack/catwalk, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_a_p) -"fVd" = ( -/obj/effect/step_trigger/ares_alert/terminals, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ARES Operations Right"; - name = "\improper ARES Operations Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"fVe" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_a_p) -"fVf" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_one) -"fVn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/ce_room) -"fVF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"fVK" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"fVL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"fVM" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"fVR" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/plating, -/area/almayer/command/cic) -"fWi" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/tinted{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"fWr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/shipboard/brig/cic_hallway) -"fWt" = ( -/obj/structure/sign/poster/pinup{ - pixel_x = -30 - }, -/obj/structure/sign/poster/hunk{ - pixel_x = -25; - pixel_y = 10 - }, -/obj/item/trash/buritto, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"fWy" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"fWA" = ( -/obj/item/clothing/under/shorts/black, -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"fWB" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"fWH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) -"fWR" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"fXg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"fXl" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - closeOtherId = "ciclobby_s"; - id_tag = "cic_exterior"; - name = "\improper Combat Information Center" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"fXt" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer/red/southeast, -/area/almayer/maint/upper/u_a_p) -"fXv" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/req) -"fXK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"fXN" = ( -/obj/effect/landmark/start/marine/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"fXX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/medical_science) -"fYa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"fYc" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"fYf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"fYg" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"fYD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"fYG" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"fYQ" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 16; - pixel_y = 26 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"fYZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"fZa" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"fZe" = ( -/turf/open/floor/almayer/uscm/directional/southeast, -/area/almayer/command/cic) -"fZj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"fZn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"fZo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"fZq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"fZv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"fZy" = ( -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"fZz" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha_bravo_shared) -"fZD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 6"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"fZE" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fZO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"fZR" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"fZX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"fZY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 16 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/starboard_hallway) -"fZZ" = ( -/obj/effect/landmark/start/marine/medic/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"gaf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/squads/charlie) -"gaj" = ( -/obj/structure/coatrack, -/obj/structure/sign/poster/clf{ - pixel_x = -28 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"gak" = ( -/obj/structure/machinery/light/containment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"gam" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) -"gay" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lockerroom) -"gaH" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"gaJ" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/cryo) -"gaR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"gaT" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"gaW" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_y_offset = 0 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"gba" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command{ - department = "AI Core"; - pixel_y = 8 - }, -/obj/structure/transmitter/rotary{ - name = "AI Core Telephone"; - phone_category = "ARES"; - phone_color = "blue"; - phone_id = "AI Core"; - pixel_x = 8; - pixel_y = -8 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"gbk" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = list(36) - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/synthcloset) -"gbq" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"gbA" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"gbF" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering) -"gbQ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) -"gbS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"gca" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"gci" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"gcl" = ( -/obj/structure/bed/chair/bolted{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/processing) -"gcL" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"gdg" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/clothing/head/helmet/marine/tech/tanker, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"gdJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"gdN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"geb" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"gel" = ( -/turf/closed/wall/almayer/research/containment/wall/west, -/area/almayer/medical/containment/cell/cl) -"geu" = ( -/obj/structure/machinery/light, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"geY" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/shipboard/starboard_missiles) -"gfc" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"gfo" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"gfu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"gfw" = ( -/obj/structure/sign/safety/ref_bio_storage{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17; - pixel_y = -7 - }, -/obj/structure/medical_supply_link, -/obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"gfx" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"gfA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"gfC" = ( -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"gfK" = ( -/obj/item/stack/sheet/cardboard{ - amount = 50 - }, -/obj/structure/surface/rack, -/obj/item/packageWrap, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"gfW" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/lockerroom) -"ggf" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"ggh" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"ggB" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"ggD" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"ggF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door/window/westright, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"ggN" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 3"; - pixel_x = -24 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) -"ggQ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/airmix) -"ggX" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/vehiclehangar) -"ghe" = ( -/turf/open/floor/almayer/blue/southeast, -/area/almayer/squads/delta) -"ghk" = ( -/turf/open/floor/almayer/mono, -/area/almayer/command/securestorage) -"ghs" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"ghF" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"ghH" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"ghM" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"ghO" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"ghR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"ghS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) -"ghW" = ( -/obj/structure/machinery/door_control{ - id = "ARES JoeCryo"; - name = "ARES WorkingJoe Bay Shutters"; - pixel_x = -24; - req_one_access_txt = "91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"gid" = ( -/obj/structure/closet/l3closet/general, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"gig" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/co2_knife{ - pixel_x = 8; - pixel_y = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"gij" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"giu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"gix" = ( -/obj/structure/machinery/prop/almayer/CICmap, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 16 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"giC" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"giM" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/req) -"giN" = ( -/obj/structure/ladder{ - height = 1; - id = "med2" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_lobby) -"giU" = ( -/obj/structure/closet, -/obj/structure/sign/safety/med_cryo{ - pixel_x = -17 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/lower_medical_medbay) -"giV" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"gja" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"gjc" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"gjj" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/offices/flight) -"gjk" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"gjn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/body_scanconsole{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"gjv" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"gjL" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/lower/engine_core) -"gjR" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/processing) -"gjT" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"gjY" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) -"gkb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/hallways/lower/repair_bay) -"gkj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) -"gkp" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/computerlab) -"gkA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"gkG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"gkP" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"gkS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"gld" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cic) -"gle" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"glh" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Armory" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -2; - pixel_y = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/armory) -"glR" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"glX" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"gmD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/power/apc/almayer/west, -/obj/item/storage/briefcase{ - pixel_y = 15 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"gmI" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/perma) -"gnc" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/starboard_atmos) -"gnq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"gns" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"gnu" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/green, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"gnx" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;21" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"gnz" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = 25; - req_one_access_txt = "3" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"gnB" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"gnK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"gnS" = ( -/obj/structure/surface/rack, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/folded_tent/cmd, -/obj/item/flag/plantable/ua, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"god" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"gof" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"gon" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"gou" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"goF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"goY" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/panic) -"gpD" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"gpJ" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cic) -"gpO" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"gpU" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/hangar) -"gpW" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - indestructible = 1; - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "ARES ReceptStairs1"; - name = "ARES Reception Shutters"; - pixel_y = 24; - req_one_access_txt = "91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"gpY" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/lifeboat_pumps/north1) -"gqe" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie_delta_shared) -"gql" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/intercom{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"gqp" = ( -/obj/structure/closet/crate{ - desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; - name = "special operations crate" - }, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"gqt" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"gqy" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"gqz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"gqD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"gqL" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"gqN" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"gqQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 - }, -/obj/structure/sign/poster/hero/voteno{ - pixel_y = 32 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"gri" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"grk" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"grr" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/north2) -"gru" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"grv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"grB" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"grM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/upper/midship_hallway) -"grT" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/tool/wet_sign{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"grU" = ( -/obj/structure/ladder{ - height = 1; - id = "engineeringladder" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/workshop) -"grZ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"gsm" = ( -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"gss" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/delta) -"gsZ" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2; - pixel_y = -21 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -2; - pixel_y = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"gth" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/ashtray/glass{ - pixel_x = -6 - }, -/obj/item/clothing/mask/cigarette/weed{ - name = "cigarette"; - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/weed{ - name = "cigarette"; - pixel_y = 7 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 7; - pixel_y = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"gtw" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"gtD" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"gtJ" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/squads/delta) -"gtK" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/hangar) -"gtM" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"gtQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"gtX" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Briefing Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"gua" = ( -/obj/structure/machinery/power/apc/almayer/hardened/south, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"gup" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/upper/midship_hallway) -"guK" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"guL" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/tapes{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/storage/box/tapes{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/box/tapes{ - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/evidence_storage) -"guO" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - dir = 1; - name = "\improper Auxiliary Support Officers Quarters"; - req_one_access_txt = "37" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) -"guW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sign/prop3{ - pixel_x = 28 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/clothing/mask/gas{ - pixel_y = 7 - }, -/obj/item/clothing/mask/gas{ - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"gvn" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"gvr" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"gvs" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/almayer/plate, -/area/almayer/living/tankerbunks) -"gvy" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) -"gvK" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"gvV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/unary/freezer{ - dir = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"gwd" = ( -/obj/structure/bed/chair/bolted{ - dir = 8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/interrogation) -"gwf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/living/port_emb) -"gwk" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = 9 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = -9; - pixel_y = -4 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_y = -2 - }, -/obj/item/reagent_container/pill/happy, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/hallways/lower/repair_bay) -"gwy" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"gwH" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/processing) -"gwR" = ( -/obj/item/device/flashlight/lamp/green, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"gwX" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"gxf" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower/engine_core) -"gxl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/maint/upper/u_m_p) -"gxm" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/stairs) -"gxu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"gxw" = ( -/turf/open/floor/almayer/green/southwest, -/area/almayer/hallways/lower/starboard_midship_hallway) -"gxz" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"gxA" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/clothing/mask/cigarette{ - pixel_y = 8 - }, -/obj/item/clothing/mask/cigarette{ - pixel_x = 4; - pixel_y = 11 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"gxI" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/s_bow) -"gxK" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/stair_clone/upper) -"gya" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"gye" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_one) -"gym" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/mp_bunks) -"gyn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"gyv" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"gyz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/fore_hallway) -"gyH" = ( -/obj/item/tool/warning_cone{ - pixel_x = -12; - pixel_y = 16 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"gyJ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access = null; - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 18 - }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"gyK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/weapon_room) -"gyU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"gyZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) -"gzb" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"gzd" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/weapon_room) -"gzj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"gzq" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"gzs" = ( -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"gzv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/basketball) -"gzw" = ( -/obj/structure/closet/hydrant{ - pixel_x = 30 - }, -/obj/item/reagent_container/hypospray/autoinjector/skillless, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"gzB" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"gzI" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "pobunk1"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/living/pilotbunks) -"gzK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"gzN" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"gAl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"gAo" = ( -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"gAA" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha_bravo_shared) -"gAE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "7;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/weapon_room) -"gAG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"gAT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_point_defense) -"gBd" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"gBn" = ( -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"gBo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"gBy" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/obj/structure/catwalk{ - health = null - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"gBR" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"gBZ" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/gear/sea, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/sea_office) -"gCg" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Officer's Quarters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"gCl" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/starboard) -"gCm" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"gCr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"gCw" = ( -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 10 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"gCC" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 29 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/auxiliary_officer_office) -"gCJ" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/maint/upper/u_m_p) -"gCM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"gCO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"gDb" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Brig Equipment" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/general_equipment) -"gDl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/biolab{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/water{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"gDm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) -"gDp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"gDv" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"gDH" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"gDR" = ( -/obj/structure/largecrate, -/obj/item/folded_tent/reqs{ - pixel_x = -3; - pixel_y = 10 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"gDT" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"gDU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"gDV" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/command/lifeboat) -"gDX" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"gEb" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) -"gEg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices/flight) -"gEh" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"gEp" = ( -/obj/structure/largecrate/supply, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"gEs" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigmaint_s"; - dir = 1; - name = "\improper Brig Maintenance" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown_2"; - name = "\improper Perma Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"gEw" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"gEx" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/item/toy/plush/therapy/red{ - desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; - force = 15; - layer = 4.1; - name = "Sergeant Huggs"; - pixel_y = 15; - throwforce = 15 - }, -/obj/item/clothing/head/cmcap{ - layer = 4.1; - pixel_x = -1; - pixel_y = 22 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer/blue, -/area/almayer/living/port_emb) -"gEE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"gEM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"gEP" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"gEV" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"gEY" = ( -/obj/item/tool/soap, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"gFa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_point_defense) -"gFK" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/command/cic) -"gFP" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/stern_point_defense) -"gFU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"gGs" = ( -/obj/item/tool/crowbar/red{ - pixel_x = -13; - pixel_y = -13 - }, -/obj/item/stack/cable_coil{ - pixel_x = 7 - }, -/obj/item/tool/wirecutters{ - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/bed{ - can_buckle = 0; - desc = "A lightweight support lattice."; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "latticefull"; - layer = 2.1; - name = "lattice" - }, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"gGt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"gGG" = ( -/obj/structure/machinery/door_control{ - id = "dccbunk"; - name = "DCC Privacy Shutters"; - pixel_x = 24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"gGL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = -29 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"gGO" = ( -/obj/structure/machinery/cm_vending/clothing/marine/snowflake, -/turf/open/floor/almayer/cargo, -/area/almayer/living/gym) -"gGR" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"gHh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"gHl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"gHH" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"gIg" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) -"gIi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/living/port_emb) -"gIo" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/largecrate, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"gIu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"gIA" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cic) -"gID" = ( -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/port) -"gII" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"gIM" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"gIO" = ( -/obj/structure/bed/chair/bolted{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/interrogation) -"gIP" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/cafeteria_officer) -"gIQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/squads/delta) -"gIS" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"gIV" = ( -/turf/open/floor/almayer/uscm/directional/west, -/area/almayer/command/lifeboat) -"gIX" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"gIY" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"gJa" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"gJf" = ( -/obj/structure/bed/sofa/south/grey/left{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"gJj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/item/cell/apc, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"gJv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) -"gJB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/command/lifeboat) -"gJF" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/s_stern) -"gJG" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/aft_hallway) -"gJO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/window/southleft{ - desc = "A window, that is also a door. A windoor if you will. This one is stronger."; - health = 500; - name = "Reinforced Glass door"; - req_one_access_txt = "2;35" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"gJT" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/gym) -"gKk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"gKm" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"gKo" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"gKw" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"gLc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/hydroponics) -"gLl" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_f_s) -"gLu" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"gLA" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/starboard) -"gLD" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"gLN" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"gLW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"gMc" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"gMk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"gMC" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"gML" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"gMN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - indestructible = 1; - name = "ARES Chamber Lockdown"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/door/poddoor/railing{ - closed_layer = 4.1; - density = 0; - dir = 2; - id = "ARES Railing"; - layer = 2.1; - open_layer = 2.1; - pixel_x = -1; - pixel_y = -1; - unacidable = 0; - unslashable = 0 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"gNL" = ( -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"gNN" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"gNR" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"gNT" = ( -/obj/structure/largecrate/supply/medicine/medivend{ - pixel_x = 3 - }, -/obj/structure/largecrate/random/mini/med{ - density = 1; - pixel_x = 3; - pixel_y = 11 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"gNZ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"gOk" = ( -/obj/structure/largecrate/guns/merc{ - name = "\improper dodgy crate" - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"gOz" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) -"gOI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - closeOtherId = "containment_n"; - dir = 8; - name = "\improper Containment Airlock" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment) -"gOR" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"gPh" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"gPi" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"gPj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"gPl" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/maint/upper/u_a_s) -"gPs" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"gPz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"gPE" = ( -/obj/structure/machinery/keycard_auth{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/chief_mp_office) -"gPH" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/franks, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"gPM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/starboard_atmos) -"gQk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/obj/structure/machinery/faxmachine/corporate/liaison, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"gQr" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"gQv" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"gQw" = ( -/obj/structure/machinery/door/window/westright{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"gQB" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"gQF" = ( -/obj/structure/bed/chair/comfy{ - buckling_y = 2; - dir = 8; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"gQT" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"gQU" = ( -/turf/open/floor/almayer/greencorner/west, -/area/almayer/shipboard/brig/cells) -"gQX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/squads/bravo) -"gRc" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"gRd" = ( -/obj/structure/platform, -/obj/structure/target{ - desc = "'Such an insult (referring to Canton) can only be repaid in American blood. Mark my words, this will happen'-Kolonel Ganbaatar UPP Armed Forces"; - name = "Kolonel Ganbaatar" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"gRt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) -"gRO" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"gSy" = ( -/obj/item/frame/rack{ - layer = 3.1; - pixel_y = 19 - }, -/obj/structure/surface/rack, -/obj/item/tool/weldpack{ - pixel_x = 5 - }, -/obj/item/tool/weldpack{ - pixel_x = -2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"gSz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/mp_bunks) -"gSC" = ( -/turf/open/floor/almayer/greencorner/north, -/area/almayer/living/grunt_rnr) -"gSP" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/obj/structure/machinery/meter, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/lower) -"gTa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/port) -"gTm" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"gTq" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"gTF" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"gTG" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; - name = "dip cup"; - pixel_x = -4; - pixel_y = 8 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"gTJ" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"gTN" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"gTT" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"gUa" = ( -/obj/structure/closet/firecloset, -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/bridge{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"gUl" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Execution Firearms" - }, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/ammo_box/magazine/m4ra, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"gUn" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"gUp" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/shipboard/brig/cic_hallway) -"gUu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"gUv" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"gUA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"gUL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/glass, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 6; - pixel_y = 13 - }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"gUX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"gVb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"gVf" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_aft_hallway) -"gVi" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/hallways/upper/midship_hallway) -"gVt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Deck Waste Tank Control" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"gVz" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"gVA" = ( -/obj/structure/disposalpipe/down/almayer{ - dir = 8; - id = "almayerlink_OT1_req" - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"gVF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"gVQ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"gWc" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"gWm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"gWr" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"gWu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"gWw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"gWx" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"gWE" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/marine/spec/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"gWG" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/medical/upper_medical) -"gWL" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/northwest, -/area/almayer/living/cryo_cells) -"gXe" = ( -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/upper/midship_hallway) -"gXg" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "agentshuttle"; - indestructible = 1; - unacidable = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"gXC" = ( -/obj/structure/machinery/cm_vending/gear/executive_officer{ - density = 0; - pixel_y = 30 - }, -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"gXR" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"gXY" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"gYb" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"gYc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"gYd" = ( -/obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/almayer/cargo, -/area/almayer/command/cic) -"gYi" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/starboard) -"gYj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"gYr" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"gYu" = ( -/obj/structure/bed/chair, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"gYw" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_two) -"gYJ" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"gYM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"gYO" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Nurse Office"; - req_access_txt = "20"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lockerroom) -"gYW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"gZw" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"gZE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"gZG" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha) -"gZI" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_s) -"gZK" = ( -/turf/open/floor/almayer, -/area/almayer/living/auxiliary_officer_office) -"gZU" = ( -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/tankerbunks) -"haw" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"haV" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"hbi" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 2; - no_panel = 1; - not_weldable = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"hbA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"hbK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/lower/port_midship_hallway) -"hbR" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) -"hca" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"hcF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/lifeboat_pumps/south2) -"hcG" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/turf/open/floor/almayer/green/north, -/area/almayer/shipboard/brig/cells) -"hcJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"hcM" = ( -/obj/item/device/assembly/mousetrap/armed, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"hcY" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"hdh" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/item/stack/sheet/mineral/plastic/small_stack, -/obj/item/frame/rack, -/obj/item/frame/rack, -/obj/item/frame/rack, -/obj/item/frame/rack, -/obj/item/frame/rack, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"hdC" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering) -"hee" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"heg" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"hek" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"heq" = ( -/obj/structure/machinery/cm_vending/clothing/military_police{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/general_equipment) -"heu" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"heI" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"heO" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"heQ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - desc = "These shutters seem to be pretty poorly mantained and almost wedged into the room.. you're not sure if these are official."; - dir = 4; - id = "crate_room4"; - name = "dilapidated storage shutters" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"heR" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"hfb" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"hfo" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"hft" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"hfw" = ( -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"hfM" = ( -/obj/structure/window/reinforced, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/securestorage) -"hgf" = ( -/obj/structure/sign/safety/bridge{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/hallways/upper/fore_hallway) -"hgv" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/pill/happy{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = 9 - }, -/obj/item/tool/surgery/bonegel/empty{ - pixel_x = 4; - pixel_y = 15 - }, -/obj/item/tool/surgery/bonegel/empty{ - pixel_x = -8; - pixel_y = 13 - }, -/obj/item/tool/surgery/bonegel/empty{ - layer = 3.01; - pixel_x = -5; - pixel_y = 19 - }, -/obj/item/storage/box/gloves{ - layer = 3.2; - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_medbay) -"hgE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/squads/alpha_bravo_shared) -"hgH" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/l42a, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"hgI" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_s) -"hgN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 7 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/briefing) -"hgQ" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"hgR" = ( -/obj/structure/closet/secure_closet/hydroresearch, -/obj/item/reagent_container/glass/watertank, -/obj/item/reagent_container/glass/watertank, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"hha" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"hhd" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = -9; - pixel_y = 16 - }, -/obj/item/clothing/suit/storage/hazardvest/blue{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"hhf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"hhA" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"hhC" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"hhJ" = ( -/obj/structure/transmitter/no_dnd{ - name = "Requisition Telephone"; - phone_category = "Almayer"; - phone_id = "Requisition"; - pixel_y = 30 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"hhQ" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hhR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"hic" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hiB" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "crate_room"; - name = "\improper Storage Shutters" - }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"hiG" = ( -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"hiM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"hiO" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/door_control/brbutton{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown"; - pixel_x = -12; - pixel_y = 26 - }, -/obj/structure/machinery/door_control/brbutton{ - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown Override"; - pixel_x = -2; - pixel_y = 26 - }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4 - }, -/obj/structure/machinery/aicore_lockdown{ - icon_state = "big_red_button_wallv"; - pixel_x = 8; - pixel_y = 26 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"hje" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"hjg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"hjh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"hjl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"hjq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"hjw" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"hjQ" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hkl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"hko" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"hks" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"hkB" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/port_point_defense) -"hkC" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"hkI" = ( -/obj/structure/machinery/cm_vending/clothing/combat_correspondent, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"hkX" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -7; - pixel_y = 20 - }, -/obj/item/ashtray/bronze{ - pixel_x = 4; - pixel_y = 19 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/map_item{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/item/reagent_container/spray/cleaner{ - layer = 3.04; - pixel_x = 5; - pixel_y = 22 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"hlt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/window/reinforced/ultra{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/briefing) -"hlX" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"hlZ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 26 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"hmf" = ( -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/squads/charlie) -"hmj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"hmk" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 32 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"hmp" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"hmr" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"hmA" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/p_bow) -"hmJ" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = -17 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/port_atmos) -"hmO" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"hmV" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - name = "medical manuals bookcase"; - opacity = 0 - }, -/obj/item/book/manual/surgery, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"hmZ" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"hnb" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"hnh" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"hnj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"hnn" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/squads/charlie) -"hnv" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"hnx" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/almayer/green/northwest, -/area/almayer/squads/req) -"hnH" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"hnJ" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"hnL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) -"hnO" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/offices) -"hnP" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"hnY" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/midship_hallway) -"hnZ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"hoe" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"hoE" = ( -/turf/open/floor/almayer/aicore/no_build/ai_plates, -/area/almayer/command/airoom) -"hpt" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/port_aft_hallway) -"hpD" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"hpH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) -"hpJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) -"hpK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"hpQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ - dir = 8 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"hpS" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "crate_room3"; - name = "\improper Storage Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"hpY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"hqb" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_s) -"hqf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"hqh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/research/containment/entrance, -/area/almayer/medical/containment/cell) -"hql" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"hqp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"hqK" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/morgue) -"hqU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"hqX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/upper/midship_hallway) -"hrI" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"hrN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/hand_labeler{ - pixel_x = 7 - }, -/obj/item/paper_bin/uscm{ - pixel_y = 5 - }, -/obj/item/tool/pen, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 - }, -/obj/item/device/megaphone, -/obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"hrY" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"hsf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"hsg" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/machinery/door/window/ultra{ - dir = 8; - req_access_txt = "19" - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"hsr" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"hsu" = ( -/obj/structure/bed/sofa/south/grey{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"hsy" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/lower/engine_core) -"hsC" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = -17 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"hsG" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"hsK" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"hsV" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/hallways/upper/midship_hallway) -"hte" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"htf" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"htj" = ( -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) -"htl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"htH" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"htI" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"htM" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"htO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"htX" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) -"hua" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"huj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ - access_modified = 1; - name = "\improper Requisitions Auxiliary Storage Room"; - req_one_access_txt = "19;21" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"huk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redfull, -/area/almayer/lifeboat_pumps/north2) -"hul" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/squads/bravo) -"huD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"huM" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"huP" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"huV" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"hva" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - access_modified = 1; - name = "\improper Main Kitchen"; - req_one_access_txt = "30;19" - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"hvd" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/interrogation) -"hvo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"hvv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/item/clipboard{ - base_pixel_x = 20; - pixel_x = 5 - }, -/obj/item/paper{ - pixel_x = 5 - }, -/obj/item/tool/pen{ - pixel_x = 5 - }, -/obj/structure/surface/table/reinforced/black, -/obj/structure/transmitter/rotary{ - name = "CIC Reception Telephone"; - phone_category = "Command"; - phone_id = "CIC Reception"; - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"hvw" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating, -/area/almayer/powered/agent) -"hvE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"hvH" = ( -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"hvT" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/weapon_room) -"hvZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 10 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"hwb" = ( -/obj/structure/machinery/microwave{ - pixel_y = 7 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"hwg" = ( -/obj/structure/machinery/door_control{ - id = "firearm_storage_armory"; - name = "Armory Lockdown"; - pixel_y = 24; - req_access_txt = "4" - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"hwR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"hwU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"hxe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"hxm" = ( -/obj/item/paper_bin/uscm{ - pixel_y = 4 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"hxz" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"hxG" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"hxH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/disk_reader, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) -"hxL" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"hxN" = ( -/obj/structure/transmitter{ - name = "Brig Offices Telephone"; - phone_category = "MP Dept."; - phone_id = "Brig Main Offices"; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"hyd" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"hyg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"hyl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"hym" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"hyq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"hyA" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"hyL" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/vehiclehangar) -"hyN" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"hyQ" = ( -/turf/closed/wall/almayer, -/area/almayer/living/synthcloset) -"hyT" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 - }, -/obj/structure/sign/safety/north{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"hzb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4; - icon_state = "exposed01-supply" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/combat_correspondent) -"hzc" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/upper_engineering/notunnel) -"hzg" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"hzq" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"hzx" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"hzG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) -"hzJ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/south2) -"hzN" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"hzT" = ( -/obj/structure/sign/safety/chem_lab{ - pixel_x = 5; - pixel_y = 29 - }, -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"hzW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D3"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"hAe" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"hAh" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hallways/lower/port_umbilical) -"hAl" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"hAn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"hAv" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"hBC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"hBF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"hBP" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_s) -"hCf" = ( -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"hCi" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"hCn" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"hCx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"hCB" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/repair_bay) -"hCL" = ( -/obj/structure/ladder/fragile_almayer{ - height = 2; - id = "kitchen" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"hCP" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/living/briefing) -"hDo" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"hDp" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"hDv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"hDw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"hDB" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 4 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"hDJ" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/smart, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"hDM" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/obj/structure/surface/table/almayer, -/obj/structure/transmitter/rotary{ - name = "Telephone"; - phone_category = "Almayer"; - phone_id = "Auxiliary Support Office Second Line"; - pixel_x = -5; - pixel_y = 3 - }, -/obj/structure/transmitter/rotary{ - name = "Telephone"; - phone_category = "Almayer"; - phone_id = "Auxiliary Support Office"; - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"hDZ" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"hEl" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"hEm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hEq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"hEu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/cichallway) -"hEx" = ( -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/command/cic) -"hEz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D4"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"hEB" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_s) -"hEV" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"hFa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"hFv" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/toy/deck/uno{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"hFG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"hFM" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/sl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"hFO" = ( -/obj/effect/landmark/start/intel, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 6; - pixel_y = 29; - serial_number = 12 - }, -/obj/effect/landmark/late_join/intel, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/port_atmos) -"hFQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 9 - }, -/obj/item/reagent_container/food/snacks/packaged_burger, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"hFY" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"hGy" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/hallways/lower/port_midship_hallway) -"hGz" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/fire, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"hGG" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"hGR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 9; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"hHd" = ( -/obj/item/clothing/head/welding{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"hHl" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/pouch/general/large, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"hHt" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north2) -"hHF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"hHT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/briefing) -"hIl" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/living/briefing) -"hIm" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - name = "\improper Memorial Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/starboard_garden) -"hIw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"hIx" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"hIA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/window/eastright{ - access_modified = 1; - dir = 8; - req_access_txt = "19" - }, -/obj/effect/landmark/map_item, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"hIC" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_y = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"hID" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"hIF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"hIG" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"hIH" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"hIJ" = ( -/obj/item/trash/crushed_cup, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"hIO" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"hJb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"hJk" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"hJD" = ( -/obj/structure/bed/sofa/south/grey/right{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"hJH" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "safe_armory"; - name = "\improper Hangar Armory Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"hJI" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"hJM" = ( -/turf/open/floor/almayer/uscm/directional/logo_c/west, -/area/almayer/command/cic) -"hJO" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"hKd" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hKe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"hKp" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hKL" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 28 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"hLh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"hLq" = ( -/obj/item/storage/firstaid/regular, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"hLu" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"hLw" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green/southwest, -/area/almayer/hallways/lower/port_midship_hallway) -"hLG" = ( -/obj/structure/closet/crate, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"hLU" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"hLX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) -"hMb" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"hMe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/uscm/directional/east, -/area/almayer/living/briefing) -"hMi" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"hMt" = ( -/obj/item/storage/firstaid/toxin{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"hMy" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hMz" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/lower/engine_core) -"hMA" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/obj/structure/sign/safety/med_life_support{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_medbay) -"hMG" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"hMH" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"hMV" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/port_fore_hallway) -"hNo" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hNs" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"hNw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/squads/charlie) -"hNF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering North Hall" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"hNH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -1 - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -8 - }, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"hNK" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) -"hNM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal{ - layer = 2.9; - pixel_y = 6 - }, -/obj/item/tool/shovel/etool/folded, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"hOr" = ( -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"hOK" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"hOL" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"hOO" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/port_midship_hallway) -"hOV" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/constr) -"hPj" = ( -/obj/structure/closet/secure_closet/staff_officer/gear, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"hPq" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"hPI" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/brig/perma) -"hPL" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"hPZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"hQf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"hQs" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/plastic{ - amount = 5 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"hQD" = ( -/turf/open/floor/almayer/uscm/directional/north, -/area/almayer/command/cic) -"hQK" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_p) -"hRs" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"hRu" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/brig/execution_storage) -"hRw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/port_umbilical) -"hRT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"hRW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/sign/safety/rewire{ - pixel_y = 38 - }, -/obj/structure/sign/safety/laser{ - pixel_y = 24 - }, -/obj/structure/machinery/computer/crew/alt{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 24 - }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 14; - pixel_y = 38 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"hRY" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering) -"hSk" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"hSw" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"hSC" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/squads/bravo) -"hSS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hSZ" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"hTg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"hTi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_door"; - name = "\improper Research Doorway Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"hTk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"hTl" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - desc = "A powerful server tower housing various AI functions."; - name = "server tower"; - pixel_y = 16 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"hTn" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"hTr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) -"hTz" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = 24; - pixel_y = 8; - req_one_access_txt = "90;91;92" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"hTL" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"hTS" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"hUd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutters"; - pixel_x = 6; - req_access_txt = "3" - }, -/obj/structure/machinery/door_control{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown Shutters"; - pixel_x = -6; - req_access_txt = "3" - }, -/obj/structure/machinery/door_control{ - id = "courtyard window"; - name = "Courtyard Window Shutters"; - pixel_x = -6; - pixel_y = 9; - req_access_txt = "3" - }, -/obj/structure/machinery/door_control{ - id = "Cell Privacy Shutters"; - name = "Cell Privacy Shutters"; - pixel_x = 6; - pixel_y = 9; - req_access_txt = "3" - }, -/obj/structure/machinery/computer/working_joe{ - pixel_y = 16 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/warden_office) -"hUE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"hUW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"hVe" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"hVk" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"hVl" = ( -/obj/structure/machinery/cm_vending/clothing/pilot_officer, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"hVm" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/booniebars{ - pixel_y = -4 - }, -/obj/item/reagent_container/food/snacks/wrapped/booniebars, -/obj/item/reagent_container/food/snacks/wrapped/booniebars{ - pixel_y = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"hVr" = ( -/obj/structure/machinery/cm_vending/clothing/staff_officer{ - density = 0; - pixel_x = -30 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"hVy" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"hVW" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/yellow{ - layer = 3.2 - }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/living/port_emb) -"hVZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"hWa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"hWc" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hWn" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Hallway" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"hWq" = ( -/obj/structure/platform{ - layer = 3.1 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 - }, -/obj/item/ashtray/plastic{ - layer = 3.4; - pixel_x = 4 - }, -/obj/structure/largecrate/random/case, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"hWr" = ( -/obj/effect/landmark/start/marine/smartgunner/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"hWs" = ( -/obj/structure/machinery/flasher_button{ - id = "briefing_flash"; - name = "Briefing Flasher"; - pixel_x = 32; - pixel_y = 27; - req_access_txt = "19" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"hWt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hWy" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"hWA" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"hWD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"hWE" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "officers_mess"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/captain_mess) -"hWM" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"hWW" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"hXd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_box/magazine/misc/mre{ - pixel_x = 4; - pixel_y = 15 - }, -/obj/item/storage/box/wy_mre{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = -7; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"hXm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"hXr" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"hXD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"hXK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_p) -"hYo" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"hYv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/lower/port_fore_hallway) -"hYx" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hYz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"hYE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"hYG" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"hYI" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown" - }, -/obj/effect/step_trigger/ares_alert/access_control, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"hYK" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"hYQ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "CMO Shutters"; - name = "\improper CMO Office Shutters" - }, -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/almayer/medical/upper_medical) -"hZe" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal/delivery{ - density = 0; - desc = "A pneumatic delivery unit. Sends items to the requisitions."; - icon_state = "delivery_engi"; - name = "Requisitions Delivery Unit"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"hZj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"hZm" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/securestorage) -"hZo" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south2) -"hZw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"hZC" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"hZV" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"hZZ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"iaj" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 8; - pixel_x = 16 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"iat" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"iay" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"iaI" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) -"iba" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PL-1"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"ibj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - dir = 2; - name = "\improper Brig Armoury"; - req_access = null; - req_one_access_txt = "1;3" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"ibE" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge2" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"ibJ" = ( -/obj/effect/landmark/start/marine/engineer/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"ibP" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19; - pixel_y = 6 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"ibY" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/spade{ - pixel_x = -4 - }, -/obj/item/tool/shovel/spade{ - pixel_x = 4 - }, -/obj/item/tool/shovel/spade, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket, -/obj/item/reagent_container/glass/watertank, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"icn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/living/offices) -"ict" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"icx" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"icM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"icO" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/morgue) -"icS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Reception Exterior"; - dir = 8; - pixel_y = 2 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"idD" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/intercom{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"idT" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"ieb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/containment) -"ien" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"ies" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"iez" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering South Hall" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"ieC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"ieM" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/door_control{ - id = "kitchen"; - name = "Kitchen Shutters"; - pixel_x = -25 - }, -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"ieX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"ifb" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer, -/area/almayer/living/tankerbunks) -"ifg" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) -"ifm" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/engineering_construction, -/obj/item/folder/black_random, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"ifn" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"ifH" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"ifT" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"ifY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"ifZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"igb" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"igm" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/living/briefing) -"igp" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"igu" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "Medical Storage" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"igD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"igF" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/morgue) -"igG" = ( -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"igI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"igL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) -"igM" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/upper/fore_hallway) -"igO" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"igS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"igT" = ( -/obj/item/tool/mop, -/obj/structure/surface/rack, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"igW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"ihc" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/plants{ - pixel_x = -3 - }, -/obj/item/storage/bag/plants{ - pixel_x = 3 - }, -/obj/item/storage/bag/plants{ - pixel_y = -3 - }, -/obj/item/tool/scythe, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"ihl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"ihI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"ihL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"iib" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"iip" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"iiy" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"iiH" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/adv, -/obj/item/tank/emergency_oxygen/double, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"ijw" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"ijy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc02"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = -28; - pixel_y = 23 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"ijE" = ( -/obj/structure/prop/invuln/pipe_water, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"ijN" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"ijQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SEA Office Shutters"; - name = "SEA Office Shutters"; - pixel_y = 12 - }, -/obj/item/ashtray/plastic{ - pixel_x = 8; - pixel_y = -4 - }, -/obj/structure/transmitter/rotary{ - name = "Senior Enlisted Advisor Office Telephone"; - phone_category = "Offices"; - phone_id = "Senior Enlisted Advisor's Office"; - pixel_x = -3 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"ijV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/lower/port_fore_hallway) -"ijW" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"ikf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/transmitter{ - dir = 8; - name = "Medical Telephone"; - phone_category = "Almayer"; - phone_id = "Medical Lower"; - pixel_x = 16 - }, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"iki" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"ikq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"iky" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/tool/shovel/spade{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"ikD" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/he, -/obj/item/mortar_shell/he, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"ikK" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 6"; - pixel_x = -24 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) -"ikQ" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/stamp/hop{ - name = "Commanding Officer's rubber stamp"; - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/paper_bin/uscm{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/tool/pen/red/clicky{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/tool/pen/blue/clicky{ - pixel_x = -6; - pixel_y = -3 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"ikT" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"ikW" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/starboard_missiles) -"ikX" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/offices) -"ikY" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"ila" = ( -/obj/structure/pipes/trinary/mixer{ - dir = 4; - name = "Gas mixer N2/O2" - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"ilj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"ill" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Research Armory"; - name = "\improper Armory Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"iln" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"ilu" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"ily" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"ilI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"ilJ" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"ilR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"ilT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"imi" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"imj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - no_panel = 1; - req_one_access = null; - req_one_access_txt = "2;7"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ - id = "engie_store" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"imt" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"imw" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/device/radio, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"imy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"inh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-y" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"ins" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"inw" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering) -"inM" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"inT" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"iog" = ( -/obj/structure/machinery/light/small, -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = 32 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"ioJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"ioK" = ( -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "cryo curtain" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/engineering/port_atmos) -"ioM" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"ioU" = ( -/turf/closed/wall/almayer, -/area/almayer/command/securestorage) -"ipa" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"ipe" = ( -/obj/item/toy/crayon{ - name = "chewed crayon"; - pixel_y = 20; - uses = 1 - }, -/turf/open/floor/plating, -/area/almayer/living/port_emb) -"ipg" = ( -/obj/structure/bed/chair/comfy{ - dir = 5 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"ipk" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"ipp" = ( -/obj/structure/closet, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"ipM" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/device/whistle, -/obj/item/device/megaphone, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/chief_mp_office) -"ipR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/upper/midship_hallway) -"iqd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"iqx" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "north_central_checkpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"iqA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"iqB" = ( -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/structure/surface/table/almayer, -/obj/structure/sign/poster{ - icon_state = "poster8"; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/upper_medical) -"ira" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) -"irb" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"irr" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_AresUp2"; - vector_x = -102; - vector_y = 61 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"irD" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "kitchen2"; - name = "\improper Kitchen Shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/grunt_rnr) -"irJ" = ( -/obj/item/tool/wirecutters{ - pixel_y = -7 - }, -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"irP" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/medical/chemistry) -"irS" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/almayer/lifeboat_pumps/south1) -"irT" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/floor/plating, -/area/almayer/living/port_emb) -"irX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/structure/machinery/computer/working_joe{ - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"isc" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"isj" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"isp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/starboard) -"iss" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"isY" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = -8; - pixel_y = -1 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_y = 9 - }, -/obj/item/tool/pen{ - pixel_x = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"itg" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"itm" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"ity" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"itG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"itI" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"itK" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"itP" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"itR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"iun" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"iup" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"iuu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/autopsy_scanner, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/morgue) -"iuy" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = 30 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"iuG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"iuI" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"iuP" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"iuW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"ivk" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/plate, -/area/almayer/lifeboat_pumps/north1) -"ivm" = ( -/obj/item/stack/sheet/mineral/plastic{ - amount = 15 - }, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"ivp" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue"; - req_access_txt = "25"; - req_one_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"ivs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"ivu" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"ivC" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"ivE" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"ivL" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"ivP" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"ivV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"iwf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"iwn" = ( -/obj/structure/disposalpipe/down/almayer{ - dir = 8; - id = "ares_vault_in"; - name = "aicore" - }, -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/command/airoom) -"iwV" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/armory) -"iwW" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"ixc" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"ixq" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"ixs" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/book/manual/engineering_guide, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"ixt" = ( -/obj/structure/machinery/telecomms/bus/preset_one, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"ixy" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"ixQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"iyc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"iyd" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/command/cic) -"iyj" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"iyl" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"iyn" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/chemistry) -"iyC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"iyD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) -"iyU" = ( -/obj/structure/closet/emcloset{ - pixel_x = 8 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"iyV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"iyW" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -27; - serial_number = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"iyZ" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"iza" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/pipes/vents/pump/no_boom{ - name = "Secure Reinforced Air Vent"; - welded = 1 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"izb" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"izl" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"izt" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha_bravo_shared) -"izv" = ( -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"izz" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"izI" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) -"izQ" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/chief_mp_office) -"izU" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"iAa" = ( -/obj/structure/machinery/door_control{ - id = "or2privacyshutter"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_two) -"iAe" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"iAt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"iAw" = ( -/obj/item/tool/warning_cone{ - pixel_x = -12 - }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"iAH" = ( -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"iAM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/working_joe{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"iAO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/squads/alpha) -"iAS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/lower/port_aft_hallway) -"iAY" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"iBc" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"iBn" = ( -/turf/closed/wall/almayer/aicore/white/hull, -/area/space) -"iBo" = ( -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/tool/pen, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"iBA" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/maint/hull/lower/l_m_s) -"iBB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/lobby) -"iBO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/lower/repair_bay) -"iBQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/blue, -/area/almayer/squads/charlie_delta_shared) -"iCb" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"iCr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"iCw" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/p_bow) -"iCN" = ( -/obj/docking_port/stationary/lifeboat_dock/port, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space/almayer/lifeboat_dock) -"iCO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OTStore"; - name = "\improper Secure Storage"; - unacidable = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) -"iCT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"iDg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/cryo_cells) -"iDp" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/squads/charlie_delta_shared) -"iDJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_aft_hallway) -"iEn" = ( -/obj/effect/step_trigger/ares_alert/mainframe, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Mainframe Right"; - name = "\improper ARES Mainframe Shutters"; - plane = -7 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"iEo" = ( -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/hallways/lower/port_midship_hallway) -"iEr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"iEt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"iEu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"iEz" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 3 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"iEN" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"iES" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/sign/safety/intercom{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"iFb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"iFc" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"iFl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"iFx" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = -16 - }, -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"iFB" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 8 - }, -/obj/item/paper_bin/wy{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_y = -2 - }, -/obj/item/reagent_container/dropper{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/structure/machinery/biohazard_lockdown{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"iFH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"iFL" = ( -/obj/structure/machinery/power/apc/almayer/hardened/north{ - cell_type = /obj/item/cell/hyper - }, -/turf/open/floor/plating, -/area/almayer/command/airoom) -"iGf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"iGo" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"iGq" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"iGx" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Engine Monitoring" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"iGJ" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_four) -"iGL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"iGX" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"iHc" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/notunnel) -"iHp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/containment) -"iHu" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_p) -"iHv" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/device/radio/headset, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"iHw" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/cichallway) -"iHz" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - layer = 3.1; - pixel_x = -12; - pixel_y = 14 - }, -/obj/item/toy/deck/uno{ - layer = 3.1; - pixel_x = -3; - pixel_y = -1 - }, -/obj/item/toy/handcard/uno_reverse_yellow{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 - }, -/turf/open/floor/almayer/orange, -/area/almayer/living/port_emb) -"iHA" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/s_bow) -"iHE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"iHR" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"iIa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/upper/midship_hallway) -"iIr" = ( -/obj/structure/closet/crate, -/obj/item/ammo_box/magazine/l42a, -/obj/item/ammo_box/magazine/l42a, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"iIz" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"iIA" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"iIG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/hallways/lower/port_midship_hallway) -"iIJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"iIP" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"iIR" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_x = 10; - pixel_y = 22 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"iIY" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"iJn" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"iJG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"iJT" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"iJU" = ( -/obj/structure/machinery/computer/ordercomp, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"iKf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"iKo" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge2" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) -"iKp" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/repair_bay) -"iKx" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"iKz" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 1 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"iKD" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/device/flash, -/obj/item/device/binoculars, -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"iKF" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"iKL" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"iKY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/sleep_console{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/medical_science) -"iLd" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"iLf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/disk_reader, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"iLm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"iLo" = ( -/obj/item/paper/prison_station/interrogation_log{ - pixel_x = 10; - pixel_y = 7 - }, -/obj/structure/largecrate/random/barrel/green, -/obj/item/limb/hand/l_hand{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"iLq" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"iLt" = ( -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/pilotbunks) -"iLD" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/chapel) -"iLG" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"iLI" = ( -/obj/effect/decal/cleanable/vomit, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/port) -"iLR" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/medic, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"iLS" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"iMd" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"iMm" = ( -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"iMD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"iNj" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"iNA" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"iNF" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"iNO" = ( -/turf/open/floor/almayer/blue, -/area/almayer/living/briefing) -"iNR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"iNX" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"iNY" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32; - pixel_y = 16 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"iOe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Podlocks"; - pixel_y = -26; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"iOg" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower/engine_core) -"iOh" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"iOo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"iOr" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"iOy" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"iOA" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"iOD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"iOF" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/cryo_cells) -"iOZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"iPf" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"iPq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"iPy" = ( -/obj/item/clothing/under/marine/dress, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"iPD" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"iPE" = ( -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"iPU" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/item/storage/firstaid{ - pixel_x = -13; - pixel_y = 13 - }, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"iQd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"iQk" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"iQm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"iQw" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/safety/maint{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"iQz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"iQJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"iQS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/spiderling_remains{ - pixel_x = 18; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/ash{ - pixel_x = 11; - pixel_y = 25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_medbay) -"iRp" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "Interrogation Shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/interrogation) -"iRr" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) -"iRt" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"iRy" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"iRT" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"iSd" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"iSj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"iSp" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_p) -"iSr" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"iSy" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"iSI" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"iSY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = -6 - }, -/obj/item/tool/pen/blue{ - pixel_x = -6 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"iSZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/facepaint/black, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"iTq" = ( -/obj/structure/curtain/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"iTD" = ( -/obj/effect/landmark/start/auxiliary_officer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/bridgebunks) -"iTI" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"iTM" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"iUh" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"iUq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"iUw" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -30 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/perma) -"iVg" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"iVi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"iVm" = ( -/obj/structure/surface/rack, -/obj/item/tool/kitchen/rollingpin, -/obj/item/tool/hatchet, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"iVE" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"iWa" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"iWc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"iWj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"iWm" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"iWn" = ( -/obj/item/paper/almayer_storage, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"iWx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"iWB" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"iWQ" = ( -/obj/effect/landmark/start/researcher, -/obj/effect/landmark/late_join/researcher, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"iWV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/hydroponics) -"iXc" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/tank, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"iXk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"iXA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"iXB" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"iXG" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"iXL" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"iXM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"iXO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/squads/delta) -"iXT" = ( -/obj/item/trash/uscm_mre, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"iXU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law{ - pixel_y = 3 - }, -/obj/item/book/manual/evaguide, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"iYn" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/maint/upper/mess) -"iYo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/recharge_station{ - layer = 2.9 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/lower/repair_bay) -"iYy" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"iYH" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"iYM" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Records"; - dir = 8 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"iYN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/facepaint/green, -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/squads/delta) -"iYQ" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cells) -"iYT" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"iZg" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"iZu" = ( -/obj/structure/machinery/telecomms/bus/preset_two, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"iZG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"iZI" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"iZL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"iZU" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"iZV" = ( -/obj/structure/machinery/door_control/cl/quarter/officedoor{ - pixel_x = 25 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"iZZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/starboard_umbilical) -"jak" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"jao" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"jas" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"jav" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -16 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/briefing) -"jax" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"jaC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 21 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) -"jaG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"jaI" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"jaJ" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/frame/table/wood/poor, -/obj/item/frame/table/wood/poor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"jaM" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"jaV" = ( -/obj/structure/machinery/recharge_station, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"jbo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 8; - name = "\improper Tool Closet" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"jbq" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/command/lifeboat) -"jbB" = ( -/obj/structure/target, -/turf/open/floor/almayer/redfull, -/area/almayer/living/cryo_cells) -"jbD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/autodispenser{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"jbF" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/engineer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"jbX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"jbY" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"jbZ" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"jce" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"jcf" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/processing) -"jch" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/m41a{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"jcj" = ( -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"jct" = ( -/obj/item/tool/warning_cone{ - pixel_x = 4; - pixel_y = 14 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"jcB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"jcG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"jcM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"jcR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"jcS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"jdk" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"jdr" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"jdu" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"jdC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"jdI" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"jdK" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/wy_mre, -/obj/effect/spawner/random/tool, -/obj/item/tool/hand_labeler, -/obj/item/clipboard, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"jdP" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"jdZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"jeb" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/alpha_bravo_shared) -"jef" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"jej" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"jer" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_p) -"jeC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"jeG" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"jeJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_four) -"jeW" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"jfa" = ( -/obj/structure/bed/sofa/south/white/right{ - pixel_y = 16 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/maint/upper/u_m_p) -"jfc" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"jfe" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"jfh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"jfj" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"jfl" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"jfw" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/obj/item/book/manual/orbital_cannon_manual, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"jfx" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"jfS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"jfY" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/folder/red, -/obj/structure/transmitter/rotary{ - name = "Brig CMP's Office Telephone"; - phone_category = "MP Dept."; - phone_id = "Brig CMP's Office"; - pixel_x = 15 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"jgd" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/clothing/head/beret/royal_marine, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/living/port_emb) -"jgj" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2; - name = "\improper Command Ladder" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"jgk" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"jgv" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"jgw" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/notunnel) -"jgy" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"jgD" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"jgP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"jhb" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = -6; - pixel_y = -6 - }, -/turf/closed/wall/almayer, -/area/almayer/living/cryo_cells) -"jhc" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"jhe" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"jhs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"jhx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"jhA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"jhD" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"jhQ" = ( -/obj/structure/closet, -/obj/item/clothing/under/marine, -/obj/item/clothing/suit/storage/marine, -/obj/item/clothing/head/helmet/marine, -/obj/item/clothing/head/beret/cm, -/obj/item/clothing/head/beret/cm, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"jhR" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"jhS" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "vehicle_elevator_railing_aux" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"jih" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"jir" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"jiv" = ( -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"jix" = ( -/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ - anchored = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"jiE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/snacks/toastedsandwich{ - pixel_y = 5 - }, -/obj/structure/sign/poster{ - icon_state = "poster8"; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"jiG" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"jiM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"jiN" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/heart/prosthetic{ - pixel_x = -4 - }, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"jiO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jiS" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/tankerbunks) -"jiX" = ( -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer/red, -/area/almayer/living/cryo_cells) -"jjd" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/command/lifeboat) -"jjl" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "vehicle_elevator_railing_aux" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"jjm" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"jjA" = ( -/turf/open/floor/almayer/blue/northwest, -/area/almayer/living/pilotbunks) -"jjF" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"jjQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"jjT" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/incendiary, -/obj/item/mortar_shell/incendiary, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"jjV" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/command/lifeboat) -"jjW" = ( -/obj/structure/pipes/vents/pump/no_boom{ - name = "Secure Reinforced Air Vent"; - welded = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"jkq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"jkr" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"jks" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_2"; - name = "range shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"jkC" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"jkI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"jkX" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"jkZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"jlg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ - access_modified = 1; - dir = 2; - name = "\improper Requisitions Break Room"; - req_one_access_txt = "19;21" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"jlm" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_aft_hallway) -"jlq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer/mono, -/area/almayer/squads/req) -"jlz" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south2) -"jlG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/research/containment/entrance, -/area/almayer/medical/containment/cell) -"jlN" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_x = -6 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_x = 9 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"jlQ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) -"jlT" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"jmf" = ( -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/cichallway) -"jmr" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "3" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/evidence_storage) -"jmB" = ( -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/lower/workshop/hangar) -"jmQ" = ( -/obj/effect/landmark/start/maint, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"jnj" = ( -/obj/structure/machinery/computer/supplycomp, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"jno" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"jns" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"jnw" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"jnz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"jnA" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"jnI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"jnW" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"jnX" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/command/cic) -"jnY" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"joa" = ( -/obj/item/storage/fancy/crayons{ - layer = 3.1; - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"jof" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"jor" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"jow" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"joF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"joT" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/starboard_missiles) -"jpd" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"jpq" = ( -/obj/structure/machinery/telecomms/server/presets/engineering, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"jpt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"jpz" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"jpM" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/grunt_rnr) -"jpQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/computer/crew/alt{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"jpT" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/hydroponics) -"jpW" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jqe" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"jqo" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ARES JoeCryo"; - name = "\improper ARES Synth Bay Shutters"; - plane = -7 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"jqv" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jqw" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"jqI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer/mono, -/area/almayer/squads/req) -"jqJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"jqM" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"jqT" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/intelligence_officer{ - density = 0; - pixel_x = -32 - }, -/obj/structure/machinery/light{ - alpha = 0; - dir = 8; - pixel_x = -32 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) -"jqY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"jrb" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"jrg" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/mp_bunks) -"jri" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"jrw" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/hallways/upper/fore_hallway) -"jrx" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"jrz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"jrH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 8 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"jrQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"jrX" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"jsa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"jsc" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"jsg" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"jso" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"jsv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"jsD" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/port_missiles) -"jsE" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"jsI" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/headband/red{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"jsR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) -"jtl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/power/apc/almayer/north{ - cell_type = /obj/item/cell/hyper - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"jtq" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"jtu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/starboard_aft_hallway) -"jtw" = ( -/obj/structure/machinery/autolathe/armylathe/full, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"jtL" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"jtN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"jtO" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"jtP" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/closet, -/obj/item/clothing/head/bearpelt, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"jtU" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"jui" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/medical_science) -"jul" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"juo" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"juq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10"; - pixel_y = 14 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"juB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) -"juD" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"jvc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/mp_bunks) -"jvf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"jvh" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"jvt" = ( -/obj/item/tool/warning_cone{ - pixel_x = -20; - pixel_y = 18 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"jvE" = ( -/obj/structure/machinery/cryopod/right{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build/ai_cargo, -/area/almayer/command/airoom) -"jvF" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"jvM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"jvQ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jvY" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/telecomms) -"jwj" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." - }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"jwl" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"jwq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"jwt" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"jwv" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"jwB" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"jwD" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/stack/tile/carpet{ - amount = 20 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"jwG" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_container/dropper, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/reagent_container/glass/beaker/bluespace{ - pixel_y = 12 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"jwJ" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"jwO" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/toy/deck/uno, -/obj/item/toy/deck{ - pixel_x = -9 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/mp_bunks) -"jwP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"jwX" = ( -/obj/structure/machinery/telecomms/processor/preset_three, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"jxh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"jxj" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"jxo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"jxt" = ( -/obj/structure/safe, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/securestorage) -"jxu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"jxx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"jxz" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"jxB" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/plating, -/area/almayer/living/bridgebunks) -"jxD" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/kpack, -/obj/structure/window/reinforced, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"jxF" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"jxH" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 - }, -/obj/structure/machinery/meter, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"jxN" = ( -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/briefing) -"jxQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"jxT" = ( -/obj/structure/closet/secure_closet/fridge/dry/stock, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"jya" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/red{ - pixel_x = -4 - }, -/obj/item/folder/blue{ - pixel_x = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/evidence_storage) -"jyj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"jyl" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/engineer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"jyE" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"jyG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"jyJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/ladder{ - height = 2; - id = "cicladder3" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) -"jyK" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"jyP" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"jyV" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/sign/safety/cryo{ - pixel_x = 3; - pixel_y = 25 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 15; - pixel_y = 25 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"jyZ" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"jzT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jBf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_umbilical) -"jBk" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"jBA" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"jBO" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 3"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 8 - }, -/area/almayer/medical/containment/cell) -"jBV" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"jBZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"jCg" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_s) -"jCm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/obj/item/tool/stamp/approved{ - pixel_x = -3; - pixel_y = -11 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"jCv" = ( -/obj/structure/machinery/computer/cameras/almayer/containment{ - dir = 8; - pixel_x = -4; - pixel_y = 6 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/structure/machinery/door_control{ - id = "containmentlockdown_S"; - name = "Containment Lockdown"; - pixel_x = -5; - pixel_y = -4; - req_one_access_txt = "19;28" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"jCJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"jCT" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"jCX" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) -"jDn" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"jDo" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"jDq" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"jDs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"jDy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"jDF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"jDO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"jDP" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Spare Bomb Suit"; - req_one_access = null; - req_one_access_txt = "35" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"jDQ" = ( -/obj/structure/filingcabinet/seeds, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"jDU" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"jDX" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jEu" = ( -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"jEA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"jED" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 4; - layer = 2.99; - pixel_y = 19 - }, -/obj/structure/machinery/computer/cameras/almayer_brig{ - desc = "Used to access the various cameras in the security brig."; - dir = 4; - layer = 2.99; - name = "brig cameras console"; - pixel_y = 5 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"jEF" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"jEH" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"jEN" = ( -/obj/structure/largecrate/supply/generator, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/maint/upper/u_a_p) -"jEQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"jES" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"jEU" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigarettes/wypacket, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"jEY" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"jFf" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"jFh" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/securestorage) -"jFi" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"jFt" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"jFL" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/hull/lower/l_m_s) -"jFO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/starboard) -"jGg" = ( -/obj/structure/flora/pottedplant{ - desc = "Life is underwhelming, especially when you're a potted plant."; - icon_state = "pottedplant_22"; - name = "Jerry"; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses/prescription{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"jGh" = ( -/obj/structure/morgue, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"jGm" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"jGy" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/lobby) -"jGz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"jGM" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"jGT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/snacks/boiledrice, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"jGU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"jHh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"jHm" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 8 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"jHt" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/repair_bay) -"jHz" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/starboard) -"jHQ" = ( -/obj/structure/machinery/crema_switch{ - pixel_x = -24; - req_access_txt = "25" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"jHW" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"jIc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D1"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"jIf" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south2) -"jIi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"jIl" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"jIK" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"jIN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = -25 - }, -/obj/structure/sign/prop3{ - pixel_x = -32 - }, -/obj/structure/machinery/faxmachine/uscm{ - department = "SEA" - }, -/turf/open/floor/strata/faux_metal, -/area/almayer/shipboard/sea_office) -"jIR" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_y = 14 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"jIT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm/brig/chief, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"jJf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"jJg" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"jJp" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/chapel) -"jJB" = ( -/obj/structure/window/framed/almayer/aicore/hull/black/hijack_bustable, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown{ - dir = 4; - plane = -6 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"jJS" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) -"jJX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/lower/repair_bay) -"jKb" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/starboard_hallway) -"jKi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"jKw" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/upper/u_a_s) -"jKA" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/living/gym) -"jKF" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" - }, -/turf/open/floor/plating, -/area/almayer/command/cichallway) -"jKX" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"jKZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/grunt_rnr) -"jLc" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/hallways/upper/midship_hallway) -"jLJ" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/squads/delta) -"jLX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) -"jMc" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jMn" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"jMr" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box{ - pixel_y = 4 - }, -/obj/structure/sign/safety/security{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"jMx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 11; - pixel_y = -26 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"jMJ" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/port_emb) -"jML" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"jMN" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"jMQ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"jMR" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"jNh" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"jNp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - dir = 1; - name = "\improper Engineering Bunks" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"jNt" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"jNA" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"jND" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"jNF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_1"; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"jNG" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"jNO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jNT" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/execution) -"jOg" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ - pixel_x = 5 - }, -/obj/item/reagent_container/food/snacks/mre_pack/xmas2{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/effect/landmark/map_item{ - layer = 3.03; - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"jOh" = ( -/obj/structure/closet/l3closet/general, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"jOo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/gym) -"jOt" = ( -/obj/item/trash/barcardine, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"jOz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"jOK" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Laundry Room"; - req_access = list(); - req_one_access = list(19,7) - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) -"jOP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"jOY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"jPe" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"jPk" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"jPl" = ( -/obj/structure/sign/poster/ad{ - pixel_x = 30 - }, -/obj/structure/closet, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"jPo" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/shipboard/brig/medical) -"jPO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) -"jPP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"jPS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/chief_mp_office) -"jQj" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"jQR" = ( -/turf/open/floor/almayer_hull/outerhull_dir/southeast, -/area/space) -"jQT" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/weapon_room) -"jRd" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/reagent_dispensers/ethanoltank{ - anchored = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"jRj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"jRp" = ( -/obj/structure/largecrate/supply/supplies/water, -/obj/item/toy/deck{ - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"jRz" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "tele_ground1"; - teleport_x = 180; - teleport_x_offset = 200; - teleport_y = 50; - teleport_y_offset = 80; - teleport_z = 1; - teleport_z_offset = 1 - }, -/turf/closed/wall/almayer/outer, -/area/space) -"jRG" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = -5; - pixel_y = 10 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"jRH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jRO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/offices) -"jRW" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/squads/alpha) -"jSf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/containment) -"jSy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"jSM" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/engineer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"jSP" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"jST" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"jSX" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"jTh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"jTm" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"jTr" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"jTz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 15 - }, -/obj/structure/machinery/light, -/obj/structure/transmitter/rotary/no_dnd{ - name = "Bravo Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Bravo Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"jTE" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/starboard) -"jTH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"jTU" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/warden_office) -"jUa" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"jUc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"jUd" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/perma) -"jUh" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"jUi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) -"jUs" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"jUu" = ( -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/containment) -"jUA" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) -"jUD" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/command/lifeboat) -"jUP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"jUR" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"jUV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"jVa" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"jVc" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_p) -"jVd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/trash/cigbutt, -/obj/item/ashtray/glass, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"jVg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"jVn" = ( -/obj/structure/filingcabinet, -/obj/item/folder/yellow, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"jVp" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) -"jVt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/corner3, -/area/almayer/medical/containment/cell) -"jVu" = ( -/obj/structure/machinery/door_control{ - id = "kitchen2"; - name = "Main Kitchen Shutters"; - pixel_x = -28 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"jVv" = ( -/obj/structure/machinery/computer/supplycomp, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"jVF" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"jVG" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"jVM" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_display/research_cell{ - dir = 1; - id = "Containment Cell 5"; - name = "Cell 5 Control"; - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 5"; - name = "Containment Lockdown"; - pixel_x = -8; - pixel_y = -3; - req_one_access_txt = "19;28" - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"jVQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/hangar) -"jVZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"jWh" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/upper_engineering/port) -"jWk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_aft_hallway) -"jWq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"jWr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"jWG" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"jWQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"jWS" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"jXd" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"jXg" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"jXN" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_s) -"jXX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) -"jXY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 15 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/ce_room) -"jYl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"jYq" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"jYz" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"jYH" = ( -/obj/structure/blocker/invisible_wall, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/mob/living/silicon/decoy/ship_ai{ - layer = 2.98; - pixel_y = -16 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"jYI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/hallways/upper/midship_hallway) -"jYL" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jYM" = ( -/obj/structure/ladder{ - height = 1; - id = "ForePortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/p_bow) -"jYU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"jYX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"jYY" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"jZe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"jZh" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"jZn" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"jZu" = ( -/obj/structure/machinery/door_control{ - id = "CIC_Conference"; - name = "Conference Lockdown"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "1" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"jZA" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south2) -"jZE" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/telecomms) -"jZJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"jZQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jZS" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"kab" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/living/briefing) -"kan" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/lower_medical_medbay) -"kaH" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/mess) -"kaT" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"kaY" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"kba" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/rewire{ - pixel_y = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"kbb" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/meson, -/turf/open/floor/almayer/red, -/area/almayer/maint/upper/u_a_p) -"kbd" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"kbk" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"kbv" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"kby" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Lethal Injection Locker" - }, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"kbB" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering) -"kbF" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"kbV" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"kca" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"kcj" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_s) -"kcl" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/squads/bravo) -"kco" = ( -/obj/structure/machinery/power/apc/almayer/north{ - cell_type = /obj/item/cell/hyper - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"kcp" = ( -/turf/closed/wall/almayer, -/area/almayer/living/auxiliary_officer_office) -"kcs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"kct" = ( -/turf/open/floor/almayer/uscm/directional/southeast, -/area/almayer/living/briefing) -"kcH" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/synthcloset) -"kcJ" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/structure/window/reinforced/ultra{ - dir = 1 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/living/briefing) -"kcN" = ( -/turf/closed/wall/almayer/reinforced/temphull, -/area/almayer/living/commandbunks) -"kcP" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/tool/pen, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/clipboard{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"kcS" = ( -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"kde" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"kdh" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"kdj" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"kdq" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"kdx" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"kdC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"kdN" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"kdO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"kej" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/trash/semki{ - layer = 2; - pixel_x = -13; - pixel_y = 14 - }, -/obj/item/prop/magazine/boots/n054{ - pixel_x = 29 - }, -/obj/item/prop/magazine/dirty/torn{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/port_emb) -"keo" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Security Vault"; - req_access = null; - req_one_access_txt = "91;92" - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore{ - plane = -6 - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"keC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 - }, -/obj/item/storage/xeno_tag_case/full{ - pixel_y = 15 - }, -/obj/item/device/camera{ - pixel_x = -3; - pixel_y = 22 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) -"keI" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/computerlab) -"keR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"keT" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/almayer/engineering/upper_engineering/starboard) -"kfp" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/ce_room) -"kft" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/squads/charlie) -"kfu" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ - dir = 8; - vent_tag = "Access Hall" - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"kfB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"kfC" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/snacks/packaged_burger, -/obj/item/reagent_container/food/snacks/packaged_burger, -/obj/item/reagent_container/food/snacks/packaged_burger, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"kfL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"kfP" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker, -/obj/item/reagent_container/glass/beaker, -/obj/item/reagent_container/glass/beaker, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/chemistry) -"kfT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"kfU" = ( -/turf/open/floor/plating, -/area/almayer/powered/agent) -"kfV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc04"; - name = "\improper Treatment Center" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"kfY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"kfZ" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/window, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/command/corporateliaison) -"kgc" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"kgs" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_se_2"; - name = "\improper Research Window Shutter" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/plating, -/area/almayer/medical/medical_science) -"kgt" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"kgx" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"kgC" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"kgQ" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"kgX" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"khb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"khu" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"khv" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"khw" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/hallways/lower/starboard_midship_hallway) -"khT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"khW" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/east{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"kie" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"kil" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/item/storage/belt/utility, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"kip" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"kiE" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"kjp" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"kjs" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"kjv" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"kjC" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"kjD" = ( -/obj/structure/machinery/computer/demo_sim{ - dir = 4; - pixel_x = -17; - pixel_y = 8 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"kjF" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"kjU" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"kkb" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"kkh" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/port) -"kky" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/command/cic) -"kkB" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) -"kkT" = ( -/obj/item/tool/weldingtool, -/obj/structure/surface/rack, -/turf/open/floor/almayer/red, -/area/almayer/maint/upper/u_a_p) -"kkX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"kld" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"klt" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/brown, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"klv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"klx" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/hallways/upper/midship_hallway) -"kly" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/blue, -/area/almayer/command/cichallway) -"klA" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/shipboard/brig/cic_hallway) -"klT" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"klV" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"kmd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"kmj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/hydroponics) -"kmn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"kms" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"kmB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"kmE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"knd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"kne" = ( -/obj/structure/sign/safety/bridge{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ - pixel_y = -32 - }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/hallways/upper/fore_hallway) -"knm" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"knn" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"knF" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_umbilical) -"knK" = ( -/obj/structure/kitchenspike, -/obj/effect/decal/cleanable/blood/gibs, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"knR" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/white{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/paper, -/obj/item/restraint/handcuffs, -/obj/item/clothing/mask/cigarette/cigar/classic, -/obj/item/coin/silver{ - desc = "A small coin, bearing the falling falcons insignia."; - name = "falling falcons challenge coin" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"koi" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"kol" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"koq" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) -"kor" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing{ - dir = 8 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"kov" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge1" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"kow" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"koy" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 2 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 9 - }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"koB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"koD" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/engine_core) -"koR" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"koU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/squads/charlie) -"kpj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"kpC" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"kpH" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"kpJ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/storage/firstaid/o2, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/maint/upper/mess) -"kqj" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/command/cic) -"kqm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"kqv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"kqJ" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"kra" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/upper/u_a_s) -"krF" = ( -/obj/structure/machinery/flasher{ - id = "Containment Cell 5"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, -/obj/structure/machinery/iv_drip, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) -"krJ" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"ksg" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"ksm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) -"kst" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"ksu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"ksw" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) -"ksG" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Conference Room" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"ksS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ksW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ksX" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"kti" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"kto" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"ktr" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/arcturianstopsign{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"ktY" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) -"kui" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/machinery/vending/security/riot, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"kuk" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"kul" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/living/cryo_cells) -"kum" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"kuo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"kuu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"kva" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"kvk" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/mask/cigarette/pipe{ - pixel_x = 8 - }, -/obj/structure/transmitter/rotary{ - name = "Reporter Telephone"; - phone_category = "Almayer"; - phone_id = "Reporter"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/device/toner{ - pixel_x = -2; - pixel_y = -11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"kvu" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/frag, -/obj/item/mortar_shell/frag, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"kvB" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"kvD" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_four) -"kvG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop/hangar) -"kvJ" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 3"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"kvN" = ( -/obj/structure/machinery/mech_bay_recharge_port, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"kvO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/auxiliary_officer_office) -"kvU" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"kwa" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"kwi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"kwm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"kwo" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"kwp" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 - }, -/obj/item/tool/crowbar{ - pixel_x = 6; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"kwr" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/skills{ - dir = 4; - pixel_y = 18 - }, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4; - pixel_y = -18 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"kwF" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"kwK" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_four) -"kwN" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"kxb" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north2) -"kxc" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"kxt" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kxu" = ( -/obj/structure/machinery/cm_vending/clothing/medic/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"kxy" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_s) -"kxF" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"kxI" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/navigation) -"kxR" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) -"kxV" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) -"kya" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"kyg" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_AresDown2"; - vector_x = 102; - vector_y = -61 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"kyh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"kyj" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 5; - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"kyt" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kyw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_m_s) -"kyB" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"kyO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"kyP" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_f_p) -"kyR" = ( -/obj/structure/safe/co_office, -/obj/item/weapon/pole/fancy_cane, -/obj/item/tool/lighter/zippo/gold{ - layer = 3.05; - pixel_y = 3 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"kyX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"kzb" = ( -/obj/structure/machinery/vending/walkman, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"kzs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"kzD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"kzX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kAa" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/lower) -"kAi" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"kAv" = ( -/obj/structure/largecrate/supply/ammo/shotgun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"kAD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/squads/delta) -"kAI" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south2) -"kBe" = ( -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"kBH" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"kBO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) -"kCf" = ( -/obj/item/stool, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"kCg" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer2" - }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"kCi" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/port_missiles) -"kCv" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"kCw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/lifeboat_pumps/south2) -"kCL" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/pilotbunks) -"kCQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/prop/helmetgarb/flair_io{ - pixel_x = -10; - pixel_y = 6 - }, -/obj/item/prop/magazine/boots/n160{ - pixel_x = -6; - pixel_y = -5 - }, -/obj/structure/transmitter/rotary{ - name = "Flight Deck Telephone"; - phone_category = "Almayer"; - phone_id = "Flight Deck"; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"kDd" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"kDm" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or04"; - name = "Operating Theatre 4" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_four) -"kDu" = ( -/obj/structure/machinery/power/apc/almayer/east, -/obj/structure/sign/safety/rewire{ - pixel_x = 7; - pixel_y = -30 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"kDC" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"kDG" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"kDK" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"kDX" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"kEc" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/vehicle_clamp, -/obj/item/vehicle_clamp, -/obj/item/vehicle_clamp, -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"kEn" = ( -/obj/structure/dropship_equipment/medevac_system, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"kEq" = ( -/obj/structure/machinery/door/window/ultra{ - dir = 8; - req_access_txt = "3" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"kEr" = ( -/obj/structure/machinery/cm_vending/clothing/sea, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/sea_office) -"kEE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"kEG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha_bravo_shared) -"kEI" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access_txt = "7;23;27" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"kEQ" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"kEW" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"kEZ" = ( -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"kFa" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 8; - pixel_x = 17; - pixel_y = 7 - }, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 8; - pixel_x = 17; - pixel_y = -6 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"kFq" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"kFF" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"kFJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"kFS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) -"kFU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"kFW" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/clipboard, -/obj/item/tool/pen, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"kFY" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 7 - }, -/turf/closed/wall/almayer, -/area/almayer/living/cryo_cells) -"kGa" = ( -/obj/effect/landmark/start/marine/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"kGf" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"kGi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"kHm" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"kHp" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/cryo_tubes) -"kHx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"kHB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"kHE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"kHM" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"kId" = ( -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/living/gym) -"kIf" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"kIi" = ( -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/upper/fore_hallway) -"kIk" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"kIl" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"kIp" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/candle_box, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"kIC" = ( -/obj/effect/landmark/start/marine/medic/bravo, -/obj/effect/landmark/late_join/bravo, -/obj/structure/sign/safety/cryo{ - pixel_y = 26 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"kIE" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"kIK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"kIL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/bed/stool, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"kIN" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 - }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"kIO" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or01"; - name = "Operating Theatre 1" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_one) -"kIT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/card{ - dir = 4; - layer = 3.2; - pixel_y = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/computer/secure_data{ - dir = 4; - layer = 2.99; - pixel_y = 23 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"kIU" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"kJc" = ( -/obj/structure/ladder{ - height = 1; - id = "ForeStarboardMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/s_bow) -"kJh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"kJm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"kJq" = ( -/obj/structure/machinery/cm_vending/clothing/military_police{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/general_equipment) -"kJG" = ( -/obj/item/tool/screwdriver, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"kJM" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/squads/alpha) -"kJW" = ( -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/shower{ - dir = 8; - layer = 3.10; - plane = -4 - }, -/obj/item/tool/soap{ - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/commandbunks) -"kKq" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/sign/safety/conference_room{ - pixel_x = -17 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"kKD" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/weapon_room) -"kKP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"kKQ" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera"; - pixel_y = 6 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/execution) -"kKR" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"kKV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"kLm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"kLo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"kLH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/port) -"kMb" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"kMe" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - dir = 8; - plane = -6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_medbay) -"kMk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"kMo" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering) -"kMH" = ( -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 1"; - name = "Cell 1" - }, -/obj/structure/sign/safety/one{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"kMQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"kMU" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"kMV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"kMZ" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"kNk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"kNl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"kNq" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_a_p) -"kNt" = ( -/obj/structure/machinery/brig_cell/cell_2{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"kNC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"kNE" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"kNH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"kNO" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_x = -9; - pixel_y = 4 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"kNP" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) -"kNU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"kNY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"kNZ" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_y = 13 - }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"kOh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"kOt" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"kOz" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"kOG" = ( -/obj/item/stack/catwalk, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"kOJ" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"kPb" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_medbay) -"kPf" = ( -/obj/structure/machinery/door/window/eastleft{ - req_one_access_txt = "2;21" - }, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby2"; - name = "\improper RO Line 2" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/surface/table/reinforced/almayer_blend, -/obj/item/desk_bell{ - anchored = 1; - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"kPk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/starboard) -"kPm" = ( -/obj/structure/machinery/light/containment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"kPo" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/navigation) -"kPA" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) -"kPC" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - indestructible = 1; - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - layer = 3.3 - }, -/obj/item/desk_bell/ares{ - anchored = 1; - pixel_x = -5; - pixel_y = 14 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"kPE" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/interrogation) -"kPF" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"kPH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"kPL" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "crate_room2"; - name = "\improper Storage Shutters" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"kPY" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper High Security Storage" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/securestorage) -"kPZ" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"kQq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"kQr" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/pistachios, -/obj/item/tool/lighter/random{ - pixel_x = 13 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"kQz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"kQD" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/machinery/keycard_auth{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"kQE" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/sign/safety/storage{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = -17; - pixel_y = -7 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"kQK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 4; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/chief_mp_office) -"kQL" = ( -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"kQM" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/lower) -"kRc" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"kRk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"kRu" = ( -/turf/open/floor/almayer/bluefull, -/area/almayer/living/numbertwobunks) -"kRw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"kRx" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"kRC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/squads/bravo) -"kRF" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"kRI" = ( -/obj/item/device/camera{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/camera_film{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/device/camera_film, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) -"kRJ" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"kRP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/item/prop/magazine/dirty/torn, -/obj/item/prop/magazine/dirty/torn/alt{ - pixel_x = 7; - pixel_y = 11 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"kRW" = ( -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) -"kSq" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"kSy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door_control{ - id = "ARES Mainframe Right"; - name = "ARES Mainframe Lockdown"; - pixel_x = -24; - pixel_y = 24; - req_one_access_txt = "200;91;92" - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"kSH" = ( -/obj/structure/sign/prop1{ - pixel_y = 32 - }, -/obj/structure/filingcabinet/security{ - pixel_x = -8 - }, -/obj/structure/filingcabinet/medical{ - pixel_x = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"kSN" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north2) -"kSR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"kSZ" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Main Corridor"; - dir = 8; - pixel_y = 2 - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"kTg" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"kTo" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"kTp" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/medical) -"kTx" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"kTy" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Alpha_2"; - name = "\improper Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"kTC" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"kTJ" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/starboard) -"kTP" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"kTR" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"kTT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"kTV" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"kTY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/safety/medical{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"kUA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"kUO" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"kUY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"kVb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"kVc" = ( -/obj/structure/girder/displaced, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"kVg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/bridgebunks) -"kVx" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"kVJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"kVO" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 12; - pixel_y = 25 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"kVV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"kVW" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"kVZ" = ( -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 2"; - name = "Cell 2" - }, -/obj/structure/sign/safety/two{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"kWy" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"kWF" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"kWJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Tool Closet" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"kWR" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/transmitter/rotary{ - name = "Commanding Officer's Office"; - phone_category = "Offices"; - phone_id = "Commanding Officer's Office"; - pixel_x = 16; - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"kWW" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"kWZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"kXe" = ( -/obj/structure/machinery/ares/substrate, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"kXh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"kXl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/medical_science) -"kXp" = ( -/obj/structure/machinery/cm_vending/clothing/leader/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"kXs" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"kXA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/squads/delta) -"kXC" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/port_missiles) -"kYh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"kYl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"kYp" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"kYq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 - }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/living/basketball) -"kYr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/lower/port_fore_hallway) -"kYt" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/bible{ - desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'."; - name = "Holy Bible"; - pixel_x = -3; - pixel_y = 9 - }, -/obj/item/prop/helmetgarb/rosary{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = 3; - pixel_y = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"kYu" = ( -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - name = "\improper Chief MP's Bedroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/chief_mp_office) -"kYC" = ( -/obj/item/storage/firstaid/fire, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"kYN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"kYS" = ( -/obj/structure/filingcabinet, -/obj/item/folder/yellow, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"laa" = ( -/obj/item/reagent_container/food/drinks/cans/souto, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/repair_bay) -"lai" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lao" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) -"lap" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"lat" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"laD" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_p) -"laL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"laO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"laU" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Firing_Range_1"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"laV" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/command/cic) -"lbo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/weapon_room) -"lbs" = ( -/obj/structure/sign/safety/biolab{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = -17; - pixel_y = 6 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"lbx" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"lby" = ( -/obj/structure/machinery/telecomms/hub/preset, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"lbF" = ( -/obj/structure/machinery/flasher{ - id = "Perma 1"; - pixel_y = 24 - }, -/obj/structure/machinery/camera/autoname/almayer/brig, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"lbK" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"lbL" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Under Construction Shutters"; - name = "\improper Construction Site" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/constr) -"lbN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Dropship Control Bubble"; - req_access = null; - req_one_access_txt = "3;22;2;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices/flight) -"lci" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"lcm" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/item/trash/popcorn{ - layer = 3.1; - pixel_x = -3; - pixel_y = 13 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"lcu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc01"; - name = "\improper Treatment Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"lcx" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"lcF" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"lcG" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/bed/stool, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"lcH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"lcM" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"lcP" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/cups, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/fork, -/obj/item/tool/kitchen/utensil/fork, -/obj/item/tool/kitchen/utensil/fork, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"lcV" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"lcW" = ( -/obj/item/storage/donut_box{ - pixel_y = 8 - }, -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"ldc" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/lower/workshop) -"lde" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"ldu" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/mess) -"ldv" = ( -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/squads/charlie) -"ldz" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"ldB" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ldF" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"ldH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 7; - pixel_y = 25 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"lea" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/hydroponics) -"lek" = ( -/obj/structure/machinery/seed_extractor{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"lep" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering) -"ler" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/mp_bunks) -"let" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"lew" = ( -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/cryo) -"ley" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"leE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"leG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 3 - }, -/obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"leJ" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_2"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"leT" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/execution) -"lfu" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) -"lfv" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"lfx" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"lfz" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"lfA" = ( -/obj/structure/sign/safety/rewire{ - pixel_y = 38 - }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 14; - pixel_y = 38 - }, -/obj/structure/sign/safety/laser{ - pixel_y = 24 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 24 - }, -/obj/structure/machinery/door_control{ - id = "ARES Operations Left"; - name = "ARES Operations Shutter"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"lfC" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"lfD" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"lfG" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"lfT" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 - }, -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"lfV" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"lfZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/mre_pack/meal5, -/obj/item/device/flashlight/lamp{ - pixel_x = 3; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) -"lgd" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"lgg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc03"; - name = "\improper Treatment Center" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"lgr" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"lgy" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Firing_Range_2"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"lgK" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/tool/screwdriver, -/obj/item/bananapeel{ - desc = "An experimental B8 Smart-Scope. Based on the technologies used in the Smart Gun by ARMAT, this sight has integrated IFF systems. It can only attach to the L42A Battle Rifle, M44 Combat Revolver, and M46C Pulse Rifle. This one appears to be covered in gun oil"; - icon = 'icons/obj/items/weapons/guns/attachments.dmi'; - icon_state = "iffbarrel"; - name = "Broken B8 Smart-Scope"; - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"lgU" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/engine_core) -"lhk" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/processing) -"lhp" = ( -/turf/open/floor/almayer/mono, -/area/almayer/command/computerlab) -"lhq" = ( -/turf/open/floor/almayer/greencorner/west, -/area/almayer/living/grunt_rnr) -"lhy" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"lhB" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "kitchen"; - name = "\improper Kitchen Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/grunt_rnr) -"lhX" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"lhZ" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lig" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"lih" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"lij" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"lip" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"liJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"liN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"liS" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = -7; - pixel_y = 17 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 12; - pixel_y = 28 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"liW" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"liZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, -/obj/item/toy/dice/d20, -/obj/item/toy/deck/uno, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"ljs" = ( -/obj/effect/landmark/start/marine/spec/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"ljv" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_p) -"ljw" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/revolver/m44{ - desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"ljE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"ljS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"ljZ" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"lkx" = ( -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/maint/upper/u_a_s) -"lkJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"lkN" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"lkV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"lla" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"llj" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -1; - pixel_y = 9 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"lln" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"llx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"llJ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"llS" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"lma" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15 - }, -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"lml" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"lmq" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"lms" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"lmz" = ( -/turf/closed/wall/almayer/aicore/hull, -/area/space) -"lmP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"lmQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D3"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"lnj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"lnz" = ( -/obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_medbay) -"lnN" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank{ - anchored = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"lnV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_aft_hallway) -"lnX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"loc" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"lox" = ( -/obj/structure/machinery/door_control{ - id = "agentshuttle"; - indestructible = 1; - name = "Shutters"; - pixel_y = 25; - req_one_access_txt = "201"; - use_power = 0 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"loA" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"loE" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"loP" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/laundry) -"loU" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_lobby) -"loV" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 - }, -/obj/structure/machinery/scoreboard{ - id = "basketball"; - pixel_y = 30 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"lpa" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"lpk" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-3"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"lpn" = ( -/turf/open/floor/almayer/emerald/west, -/area/almayer/hallways/lower/port_midship_hallway) -"lpq" = ( -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"lpB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"lpC" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"lpD" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/morgue) -"lpT" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"lqb" = ( -/obj/structure/machinery/smartfridge/chemistry, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"lqj" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"lqA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"lqE" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/kitchen/tray{ - pixel_y = 9 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 - }, -/obj/item/reagent_container/food/snacks/meatpizzaslice{ - pixel_x = -5; - pixel_y = 7 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"lqG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cic) -"lqT" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"lrh" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"lrj" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 2; - name = "Telecommunications"; - req_access_txt = "6" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"lrq" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/armory) -"lrr" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"lru" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"lrB" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"lrE" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/s_bow) -"lrF" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"lrG" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/yellow{ - layer = 3.2 - }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 - }, -/obj/item/toy/plush/barricade, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"lrI" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"lrP" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/containment) -"lrT" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"lrU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"lrX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"lsm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_three) -"lso" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"lsx" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"lsy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/research, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/hydroponics) -"lsF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"lsH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"lsM" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"lsT" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"ltc" = ( -/obj/effect/landmark/late_join/working_joe, -/obj/effect/landmark/start/working_joe, -/turf/open/floor/plating/plating_catwalk/aicore, -/area/almayer/command/airoom) -"ltq" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"ltw" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"ltx" = ( -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"lty" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"ltA" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"ltP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/item/folder/white{ - pixel_x = 6 - }, -/obj/item/storage/fancy/vials/empty{ - pixel_y = 10; - start_vials = 2 - }, -/obj/item/tool/pen{ - pixel_y = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"luc" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -7 - }, -/obj/item/tool/pen, -/obj/item/tool/pen{ - pixel_y = 3 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/mp_bunks) -"lut" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/starboard_hallway) -"luE" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"luK" = ( -/obj/structure/machinery/seed_extractor, -/obj/structure/sign/safety/terminal{ - pixel_x = -6; - pixel_y = -26 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 7; - pixel_y = -26 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 20; - pixel_y = -26 - }, -/turf/open/floor/almayer/green, -/area/almayer/shipboard/brig/cells) -"lvb" = ( -/obj/structure/machinery/door_control/cl/office/door{ - pixel_y = 25 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"lvk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/greencorner/west, -/area/almayer/squads/req) -"lvK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"lvR" = ( -/obj/structure/machinery/door_control{ - id = "tcomms_apc"; - name = "Telecommuncation Power"; - pixel_x = -25 - }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 2; - name = "Telecommunications"; - req_access_txt = "6" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"lvV" = ( -/turf/open/floor/almayer/orange, -/area/almayer/living/briefing) -"lvZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) -"lwb" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"lwe" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/chief_mp_office) -"lwg" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"lwi" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"lwp" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/machinery/cm_vending/sorted/tech/circuits, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"lws" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"lwu" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/crap, -/obj/item/tool/crowbar, -/obj/structure/machinery/cell_charger, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"lwz" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_s) -"lwC" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"lwM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"lxg" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/red{ - layer = 3.2 - }, -/obj/item/bedsheet/red{ - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"lxx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/lower) -"lxG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"lxU" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/transmitter{ - dir = 4; - name = "Starboard Railgun Control Telephone"; - phone_category = "Command"; - phone_id = "Starboard Railgun Control"; - pixel_x = -26 - }, -/obj/item/device/binoculars, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"lxX" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_medbay) -"lyc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"lyj" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"lyt" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"lyw" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"lyL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/basketball) -"lyW" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_m_p) -"lyY" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"lyZ" = ( -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"lza" = ( -/obj/structure/bed/sofa/vert/grey, -/obj/structure/bed/sofa/vert/grey/top{ - pixel_y = 11 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"lzg" = ( -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/upper/fore_hallway) -"lzj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) -"lzk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"lzm" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/structure/machinery/computer/emails, -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/rewire{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"lzq" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"lzs" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = -5; - pixel_y = -24; - req_one_access_txt = "91;92" - }, -/obj/structure/machinery/door_control{ - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown"; - pixel_x = 6; - pixel_y = -24; - req_one_access_txt = "91;92" - }, -/obj/structure/surface/table/reinforced/almayer_B{ - indestructible = 1; - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 4; - pixel_y = 12 - }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4; - pixel_y = -1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"lzJ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"lzL" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -5 - }, -/obj/item/clothing/head/helmet/space/compression/uscm, -/obj/item/cell/crap{ - pixel_x = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"lAa" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/toolbox/emergency, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"lAb" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"lAh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"lAs" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"lAy" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"lAP" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/processing) -"lAT" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"lAV" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"lAW" = ( -/obj/docking_port/stationary/escape_pod/east, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_p) -"lAZ" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/almayer/medical/containment/cell/cl) -"lBj" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/upper/fore_hallway) -"lBl" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"lBm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"lBp" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"lBr" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"lBL" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/squads/alpha) -"lBQ" = ( -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/starboard_hallway) -"lCb" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha) -"lCZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"lDa" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"lDh" = ( -/obj/structure/machinery/power/apc/almayer/west, -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = 17 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/perma) -"lDn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"lDo" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/living/auxiliary_officer_office) -"lDu" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/headset/almayer/mt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"lDA" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"lDR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"lDW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/transmitter{ - dir = 8; - name = "OT Telephone"; - phone_category = "Almayer"; - phone_id = "Ordnance Tech"; - pixel_x = 14 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop/hangar) -"lEe" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"lEf" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 1 - }, -/area/almayer/medical/containment/cell/cl) -"lEi" = ( -/obj/item/roller, -/obj/structure/surface/rack, -/obj/item/roller, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"lEk" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"lEx" = ( -/obj/structure/machinery/door_control{ - id = "ARES Operations Left"; - name = "ARES Operations Shutter"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"lEF" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"lEO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"lEZ" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"lFe" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"lFp" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"lFu" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"lFw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lFE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lFG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) -"lFK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"lFO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"lFQ" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"lFR" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"lFT" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"lFU" = ( -/obj/structure/ladder{ - height = 1; - id = "med1" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"lGh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"lGm" = ( -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" - }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" - }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" - }, -/obj/structure/closet/crate, -/obj/item/clothing/suit/storage/hazardvest/black, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"lGp" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/ce_room) -"lGI" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"lGS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"lGW" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"lHj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"lHk" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"lHm" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"lHR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"lHT" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/mp_bunks) -"lHZ" = ( -/obj/structure/sign/poster/propaganda{ - pixel_x = -27 - }, -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"lIa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - closeOtherId = "ciclobby_n"; - id_tag = "cic_exterior"; - name = "\improper Combat Information Center" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"lIj" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/mess) -"lIp" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"lIt" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"lIz" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"lIQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"lIV" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"lJd" = ( -/obj/structure/closet, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"lJj" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 26 - }, -/obj/structure/bedsheetbin{ - pixel_x = 26; - pixel_y = 5 - }, -/obj/item/tool/soap/syndie, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"lJn" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/airoom) -"lJz" = ( -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"lJA" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"lJE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"lJQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/almayer/living/offices) -"lJY" = ( -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"lKl" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"lKz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"lKC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"lKG" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"lKI" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"lKJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dorms" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"lKM" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"lKO" = ( -/obj/structure/sign/safety/refridgeration{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"lLn" = ( -/obj/structure/machinery/door_control{ - id = "crate_room"; - name = "storage shutters"; - pixel_x = -25; - pixel_y = -1 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"lLw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"lLC" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"lLN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/wrench{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/tool/wrench{ - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"lLO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"lLY" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"lMa" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"lMe" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"lMp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"lMy" = ( -/obj/structure/machinery/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"lMO" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"lMR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"lNk" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"lNp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"lNG" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) -"lNR" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/lower/workshop) -"lNU" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"lNV" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"lOb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"lOl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"lOn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"lOq" = ( -/obj/effect/landmark/start/intel, -/obj/effect/landmark/late_join/intel, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/port_atmos) -"lOw" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"lOz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) -"lOQ" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"lPm" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"lPq" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"lPC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"lPF" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/almayer/engineering/upper_engineering/port) -"lPH" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"lPK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"lPM" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"lQe" = ( -/obj/structure/bed/chair/comfy/delta, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"lQB" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"lQD" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"lQG" = ( -/obj/structure/machinery/computer/tech_control, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"lQM" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"lQN" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"lQX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/lower/repair_bay) -"lRf" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"lRr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/containment) -"lRt" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"lRu" = ( -/turf/open/floor/almayer/orange, -/area/almayer/maint/upper/u_a_s) -"lRy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"lRE" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"lRP" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/chaplain_patch, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"lSq" = ( -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"lSu" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/command/computerlab) -"lSv" = ( -/obj/structure/closet, -/obj/item/clothing/suit/armor/riot/marine/vintage_riot, -/obj/item/clothing/head/helmet/riot/vintage_riot, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"lSD" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"lSH" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/squads/bravo) -"lSL" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = 20; - pixel_y = -32 - }, -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link/green, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"lSN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"lSS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 3; - pixel_y = 27 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 15; - pixel_y = 27 - }, -/obj/structure/machinery/computer/cameras/almayer_brig{ - desc = "Used to access the various cameras in the security brig."; - dir = 4; - name = "brig cameras console" - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"lSX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"lTc" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/maint/upper/u_a_s) -"lTd" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/starboard_missiles) -"lTn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Railguns and Viewing Room" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"lTE" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/bible{ - desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'."; - name = "Holy Bible" - }, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"lTJ" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"lTK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"lUo" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"lUt" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"lUz" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"lVi" = ( -/obj/structure/surface/rack, -/obj/item/stock_parts/manipulator/nano{ - pixel_y = -9 - }, -/obj/item/stock_parts/scanning_module/adv{ - pixel_x = 4; - pixel_y = 15 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"lVl" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"lVm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/offices) -"lVo" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"lVu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) -"lVF" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"lVK" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/securestorage) -"lVP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/ce_room) -"lVV" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES StairsLower"; - name = "\improper ARES Core Shutters"; - plane = -7 - }, -/obj/effect/step_trigger/ares_alert/public{ - alert_id = "AresStairs"; - alert_message = "Caution: Movement detected in ARES Core."; - cooldown_duration = 1200 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"lVW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"lVZ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"lWu" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"lWA" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"lWH" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"lWO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"lXb" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"lXn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/port_missiles) -"lXq" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lXz" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/command/cic) -"lYg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"lYs" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer/orange, -/area/almayer/maint/hull/lower/l_m_s) -"lYG" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"lYS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"lYT" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SL-2"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"lYZ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dorms" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"lZb" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"lZd" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"lZp" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"lZr" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) -"lZw" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"lZH" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"lZL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"lZU" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"lZY" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"mau" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldcorner/north, -/area/almayer/squads/charlie) -"maD" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/basketball) -"maH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/toy/deck, -/turf/open/floor/almayer/red/northeast, -/area/almayer/living/offices/flight) -"maK" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"maO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"maW" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"mbc" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mbi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"mbr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_x = -13 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/living/briefing) -"mbH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/comfy/delta, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mbQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 2"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"mbR" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) -"mbW" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"mbX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/structure/machinery/door_control{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutters"; - pixel_x = 16; - req_access_txt = "3" - }, -/obj/structure/machinery/door_control{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown Shutters"; - pixel_x = 16; - pixel_y = 8; - req_access_txt = "3" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"mbZ" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/cargo, -/area/almayer/command/lifeboat) -"mck" = ( -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/living/briefing) -"mcr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"mcu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = 12; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mcJ" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/living/briefing) -"mcW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"mdf" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"mdi" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "Kitchen"; - req_one_access_txt = "30;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"mdk" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "vehicle_elevator_railing_aux" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"mdm" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/upper/midship_hallway) -"mdw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/weapon_room) -"mdO" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"mdV" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/window/reinforced/ultra, -/obj/structure/window/reinforced/ultra{ - dir = 8 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/living/briefing) -"mdW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/item/folder/white, -/obj/item/folder/white, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"mem" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"mes" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/basketball) -"met" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"meP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D1"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"meQ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"meS" = ( -/obj/structure/closet, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"meY" = ( -/turf/closed/wall/almayer{ - damage_cap = 15000 - }, -/area/almayer/squads/alpha) -"mff" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/basketball) -"mfg" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/structure/window/reinforced/ultra{ - dir = 1 - }, -/obj/structure/window/reinforced/ultra{ - dir = 8 - }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/briefing) -"mfh" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) -"mfk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"mfu" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"mfO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"mgb" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"mgs" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"mgy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"mgH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"mgI" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"mgK" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/starboard_atmos) -"mgN" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigwarden"; - name = "\improper Warden's Office" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"mgO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) -"mgR" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"mgU" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"mha" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"mhe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"mhp" = ( -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"mhr" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"mht" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"mhG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"mhL" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer5" - }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"mhO" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) -"mhT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/containment) -"mib" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"mif" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"mis" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_f_s) -"miE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"miG" = ( -/obj/structure/machinery/door_control{ - id = "or02"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_two) -"miQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1; - pixel_y = -4 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lockerroom) -"miV" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"miX" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"mjf" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) -"mjg" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"mjx" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"mjA" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - unacidable = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room/notunnel) -"mjE" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 9 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"mjS" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"mkf" = ( -/obj/item/folder/red{ - desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; - name = "folder: 28"; - pixel_x = -4; - pixel_y = 5 - }, -/obj/structure/surface/table/almayer, -/obj/item/toy/crayon{ - pixel_x = 9; - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"mkm" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/clothing/suit/chef/classic, -/obj/item/clothing/head/chefhat, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"mkx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"mkB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) -"mkC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"mkN" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/securestorage) -"mkO" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/southwest, -/area/almayer/living/cryo_cells) -"mlb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"mlQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"mmg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"mmi" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"mmo" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/analyzer, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"mmp" = ( -/obj/structure/prop/almayer/cannon_cables, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"mmz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"mmN" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_se_2"; - name = "\improper Research Window Shutter" - }, -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/plating, -/area/almayer/medical/medical_science) -"mnc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"mnk" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"mnz" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north2) -"mnA" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"mnF" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"mnJ" = ( -/obj/structure/machinery/pipedispenser/orderable, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"mnR" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mnS" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/tankerbunks) -"mnU" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"moh" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south2) -"mon" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"mor" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/tool/warning_cone{ - pixel_x = -12; - pixel_y = 16 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"mov" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"moB" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/cells) -"moI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha_bravo_shared) -"mpf" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/bravo) -"mpI" = ( -/obj/structure/machinery/door_control{ - id = "ARES Operations Right"; - name = "ARES Operations Shutter"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"mpM" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"mpS" = ( -/obj/structure/machinery/telecomms/relay/preset/telecomms{ - listening_level = 4 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"mqb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"mqi" = ( -/obj/structure/bed/chair/comfy/delta, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mqA" = ( -/obj/structure/pipes/standard/simple/visible, -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower) -"mqP" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"mqY" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES StairsUpper"; - name = "\improper ARES Core Shutters"; - plane = -7 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"mqZ" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"mrc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"mrq" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/appleseed, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/shipboard/brig/cells) -"mrs" = ( -/obj/structure/largecrate, -/obj/structure/prop/server_equipment/laptop{ - pixel_x = 1; - pixel_y = 10 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"mrx" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"mrF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) -"mrS" = ( -/obj/structure/closet/l3closet/general, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"mrT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"msa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - closeOtherId = "astroladder_n"; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"msA" = ( -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"msX" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Tanker Quarters"; - req_one_access_txt = "19;27" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/tankerbunks) -"mte" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) -"mtj" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Commanding Officer's Quarters"; - req_access = null; - req_access_txt = "31" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/commandbunks) -"mtl" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/execution) -"mtn" = ( -/obj/structure/machinery/power/apc/almayer/east, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 24 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/interrogation) -"mto" = ( -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"mts" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue Processing"; - req_access_txt = "25"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"mtB" = ( -/obj/structure/largecrate/random/case{ - layer = 2.98 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"mtJ" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"mtS" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"mtX" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/panic) -"muh" = ( -/obj/structure/machinery/conveyor_switch{ - id = "req_belt" - }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"muk" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) -"mul" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox/meat, -/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"muq" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/obj/structure/bed/sofa/vert/grey{ - pixel_y = 11 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"mut" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"muG" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"muP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/squads/charlie) -"muV" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/faxmachine/uscm/command/capt{ - name = "Commanding Officer's Fax Machine"; - pixel_x = -4; - pixel_y = 3 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"mvg" = ( -/obj/docking_port/stationary/escape_pod/west, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) -"mvo" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/lower/repair_bay) -"mvT" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/upper_engineering/starboard) -"mwc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"mwp" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"mwq" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"mwt" = ( -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"mwu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"mww" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"mwA" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"mwE" = ( -/obj/structure/machinery/computer/med_data, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"mwF" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_1"; - name = "treadmill" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"mwL" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"mwR" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/stair_clone/upper) -"mxk" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigmaint_n"; - name = "\improper Brig" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"mxo" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_f_p) -"mxA" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"mxI" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"mxO" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"mxR" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"mxV" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"mym" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/starboard) -"myn" = ( -/obj/structure/sign/poster/safety{ - pixel_x = 27 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"myx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"myz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"myM" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 7; - pixel_y = -3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"myO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1; - pixel_y = -29 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"myT" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/command/lifeboat) -"myY" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"mzb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"mzc" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"mzo" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/starboard_missiles) -"mzr" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigar/tarbacktube, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/tool/crowbar, -/obj/item/clothing/head/helmet/marine/pilottex{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"mzs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"mzv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"mzz" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"mzF" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"mzH" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"mzJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mzP" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown2"; - vector_x = 102; - vector_y = -61 - }, -/turf/open/floor/plating, -/area/almayer/command/airoom) -"mzX" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"mzZ" = ( -/turf/open/floor/almayer/mono, -/area/almayer/command/lifeboat) -"mAc" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/card{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"mAg" = ( -/obj/structure/machinery/cm_vending/clothing/engi/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"mAo" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/yellow{ - layer = 3.2 - }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"mAp" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"mAs" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"mAM" = ( -/turf/open/floor/almayer/green/southeast, -/area/almayer/hallways/upper/fore_hallway) -"mBm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_y = 30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"mBt" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"mBF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"mBJ" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"mBN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"mBP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"mBT" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"mCc" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/stern_point_defense) -"mCf" = ( -/obj/structure/sign/safety/south{ - pixel_x = -17; - pixel_y = 8 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"mCo" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"mCp" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/squads/req) -"mCL" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"mCO" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"mDc" = ( -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"mDd" = ( -/obj/structure/largecrate/random/secure, -/obj/item/weapon/baseballbat/metal{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"mDe" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"mDo" = ( -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/navigation) -"mDJ" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"mDU" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"mDZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"mEw" = ( -/obj/structure/largecrate/supply, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"mEB" = ( -/obj/item/toy/beach_ball/holoball, -/obj/structure/holohoop{ - density = 0; - pixel_y = 29 - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"mEE" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"mEO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D2"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"mEQ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"mER" = ( -/obj/structure/sign/safety/synth_storage{ - pixel_x = 8; - pixel_y = 25 - }, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/cichallway) -"mEX" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - layer = 3.3; - pixel_x = -17 - }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"mFf" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"mFg" = ( -/obj/structure/machinery/power/apc/almayer/north{ - cell_type = /obj/item/cell/hyper - }, -/obj/structure/sign/safety/rewire{ - pixel_x = -15; - pixel_y = 25 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/armory) -"mFh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"mFk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/flash, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"mFo" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mFs" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"mFu" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mFF" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north2) -"mFQ" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/s_bow) -"mFW" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/magazine/dirty{ - pixel_y = 5 - }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"mGd" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigcells"; - name = "\improper Brig Prisoner Yard" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"mGe" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"mGD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/aicore/no_build/ai_arrow, -/area/almayer/command/airoom) -"mGP" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"mGT" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/closet/cabinet, -/obj/item/clipboard, -/obj/item/storage/lockbox/loyalty, -/obj/item/storage/briefcase, -/obj/item/reagent_container/spray/pepper, -/obj/item/device/eftpos{ - eftpos_name = "Weyland-Yutani EFTPOS scanner" - }, -/obj/item/device/portable_vendor/corporate, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"mGZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter, -/obj/structure/machinery/faxmachine/uscm, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"mHc" = ( -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_x = -30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/living/briefing) -"mHs" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"mHx" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"mHz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/chief_mp_office) -"mHE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"mHM" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"mHN" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/port) -"mHQ" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"mHY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"mIb" = ( -/obj/structure/machinery/power/apc/almayer/east, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - layer = 3.33; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/upper/aft_hallway) -"mIg" = ( -/obj/structure/prop/almayer/missile_tube{ - icon_state = "missiletubesouth" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) -"mIi" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"mIn" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/port_missiles) -"mIu" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cafeteria_officer) -"mIy" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"mIB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"mIJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 6 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"mIO" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"mJb" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 - }, -/obj/structure/machinery/meter, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"mJf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) -"mJg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/pilotbunks) -"mJi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"mJj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/squads/alpha) -"mJo" = ( -/obj/structure/machinery/keycard_auth{ - pixel_x = 25 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"mJu" = ( -/turf/open/floor/almayer/uscm/directional, -/area/almayer/command/cic) -"mJE" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"mJG" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"mJO" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_p) -"mJR" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"mKe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/tool/pen, -/obj/structure/sign/safety/med_cryo{ - pixel_x = 32 - }, -/obj/item/weapon/pole/wooden_cane, -/obj/item/weapon/pole/wooden_cane, -/obj/item/weapon/pole/wooden_cane, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/lower_medical_medbay) -"mKl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - closeOtherId = "brignorth"; - dir = 2; - name = "\improper Brig Armoury"; - req_access = null; - req_one_access_txt = "1;3" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"mKm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"mKp" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_AresUp2"; - vector_x = -102; - vector_y = 61 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"mKq" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/bridgebunks) -"mKI" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"mKN" = ( -/obj/effect/landmark/start/pilot/cas_pilot, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"mLe" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/door_control/cl/quarter/backdoor{ - pixel_x = 25 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"mLg" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"mLn" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/chapel) -"mLp" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/autoinjectors{ - pixel_x = -6; - pixel_y = -1 - }, -/obj/item/device/mass_spectrometer{ - pixel_x = 8 - }, -/obj/item/storage/box/pillbottles{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/item/reagent_container/glass/beaker/cryoxadone{ - pixel_x = 8; - pixel_y = 10 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"mLF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"mLJ" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/obj/item/prop/magazine/book/bladerunner{ - pixel_x = -1; - pixel_y = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mLK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"mLN" = ( -/obj/structure/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"mLR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"mMl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"mMz" = ( -/obj/structure/machinery/computer/ordercomp, -/obj/structure/sign/safety/galley{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"mML" = ( -/obj/structure/machinery/cm_vending/clothing/medic/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"mMN" = ( -/obj/structure/machinery/prop{ - desc = "It's a server box..."; - icon_state = "comm_server"; - name = "server box" - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"mMR" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"mNm" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"mNp" = ( -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/almayer/medical/morgue) -"mNr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"mNt" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_aft_hallway) -"mOi" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/command/airoom) -"mOI" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - req_access = list(); - req_access_txt = "26" - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"mOL" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mON" = ( -/obj/structure/disposalpipe/up/almayer{ - dir = 4; - id = "ares_vault_out"; - name = "aicore" - }, -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/command/airoom) -"mOS" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/constr) -"mPc" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"mPj" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"mPl" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ - dir = 4; - id = "civ_uniforms" - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/living/gym) -"mPn" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"mPw" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"mQa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/port_missiles) -"mQq" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/almayer/command/lifeboat) -"mQw" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"mQA" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/sign/safety/storage{ - pixel_x = 32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"mQC" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/port_atmos) -"mQU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"mQV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"mRe" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/navigation) -"mRg" = ( -/obj/item/ashtray/bronze{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 7; - pixel_y = 16 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/beach_ball/holoball{ - pixel_x = -5; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"mRo" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_lobby) -"mRv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"mRy" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/auxiliary_officer_office) -"mRA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"mRG" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/prop/magazine/boots/n160{ - layer = 2.8; - pixel_x = 4; - pixel_y = -8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/commandbunks) -"mRK" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue"; - req_access_txt = "25"; - req_one_access = null - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"mRU" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_p) -"mRW" = ( -/turf/open/floor/almayer/research/containment/corner1, -/area/almayer/medical/containment/cell/cl) -"mRY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"mRZ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"mSe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"mSi" = ( -/obj/structure/bed/sofa/vert/grey/top{ - pixel_y = 11 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"mSj" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mSl" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/clothing/glasses/mgoggles, -/obj/item/clothing/glasses/mgoggles, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"mSp" = ( -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"mSr" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"mSM" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"mSR" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"mTc" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/emails{ - dir = 4; - pixel_y = 2 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"mTd" = ( -/obj/structure/machinery/smartfridge/chemistry{ - pixel_x = -3; - pixel_y = -1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"mTh" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"mTl" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"mTo" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"mTq" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"mTv" = ( -/obj/structure/machinery/cm_vending/clothing/tl/charlie{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"mTN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"mTO" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"mTX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/shipboard/port_missiles) -"mUt" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/warhead, -/obj/structure/machinery/light/built, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"mUA" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/maint/upper/u_a_p) -"mUF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - pixel_y = -29 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"mVx" = ( -/obj/structure/machinery/cm_vending/clothing/leader/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"mVA" = ( -/obj/item/reagent_container/glass/bucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"mVB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_y = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"mVG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/living/briefing) -"mVK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mVT" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"mVV" = ( -/obj/structure/reagent_dispensers/ammoniatank{ - anchored = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"mVZ" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"mWm" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"mWu" = ( -/obj/structure/platform, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"mWB" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"mWH" = ( -/obj/structure/machinery/telecomms/processor/preset_four, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"mWV" = ( -/obj/structure/bed/chair/comfy/blue, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"mWX" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"mXa" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"mXf" = ( -/obj/structure/closet/emcloset/legacy, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/starboard_hallway) -"mXj" = ( -/turf/closed/wall/almayer, -/area/almayer/living/commandbunks) -"mXm" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"mXU" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/computer/station_alert{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"mYc" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"mYd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"mYp" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering) -"mYt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) -"mYv" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - negdir = 4; - posdir = 1 - }, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"mYw" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"mYx" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/computerlab) -"mYy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mYC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"mYH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17; - pixel_y = 8 - }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 8; - pixel_x = 17; - pixel_y = -6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"mYK" = ( -/obj/structure/sign/poster/music{ - pixel_x = -27 - }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = -10; - pixel_y = -1 - }, -/obj/item/tool/pen{ - pixel_x = 3; - pixel_y = -4 - }, -/obj/item/tool/pen{ - pixel_x = -11; - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mYV" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"mZp" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"mZq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange, -/area/almayer/squads/alpha_bravo_shared) -"mZA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/engineering_materials, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"mZE" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"mZV" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"mZX" = ( -/obj/structure/machinery/telecomms/processor/preset_one, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"naa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nak" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"nan" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/almayer/engineering/upper_engineering/starboard) -"nap" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"nar" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/auxiliary_officer_office) -"nau" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"naB" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/perma) -"naC" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"naN" = ( -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/morgue) -"naS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) -"naU" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/helmet/marine/pilot, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"naY" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"nbb" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"nbd" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_three) -"nbu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"nbF" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"nbH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"nbL" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = -17 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"nci" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"ncj" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"nck" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"ncB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"nda" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/maint/upper/u_m_p) -"nde" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"ndo" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = -11; - pixel_y = -1 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"ndp" = ( -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell/cl) -"ndq" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/window/reinforced/ultra, -/turf/open/floor/almayer/silver, -/area/almayer/living/briefing) -"ndr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/dropship_equipment/fuel/cooling_system{ - layer = 3.5 - }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/lower/repair_bay) -"ndN" = ( -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space/almayer/lifeboat_dock) -"nee" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"nel" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"nen" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/optable, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"nes" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"neE" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"neS" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"neT" = ( -/obj/structure/transmitter/rotary{ - name = "CL Office Telephone"; - phone_category = "Offices"; - phone_id = "CL Office" - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"neU" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/squads/delta) -"nfu" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_two) -"nfC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"nfE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"nfQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"ngl" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"ngv" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"ngH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"ngM" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering North Hall" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"ngU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"ngY" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"nhc" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ - pixel_x = 1; - pixel_y = -5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"nhj" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/hallways/upper/midship_hallway) -"nhq" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"nhw" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"nhx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck{ - desc = "A simple deck of playing cards. You could play Caravan with these!"; - pixel_y = 12 - }, -/obj/item/toy/deck/uno{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/clothing/mask/cigarette{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"nhE" = ( -/obj/structure/sign/safety/maint{ - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nhG" = ( -/obj/item/newspaper{ - name = "character sheet" - }, -/obj/item/device/cassette_tape/heavymetal{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/toy/dice, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/door_control{ - id = "courtyard window"; - name = "Privacy Shutters"; - pixel_x = -8; - pixel_y = -6; - req_access_txt = "3" - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"nhN" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"nic" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/stern) -"nio" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"niu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"nix" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/handcuffs{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/box/ids{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/box/handcuffs, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"niy" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/item/desk_bell{ - anchored = 1 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/lobby) -"niH" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) -"niT" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"nja" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"njn" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_m_s) -"njp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - no_panel = 1; - req_one_access = null; - req_one_access_txt = "2;7"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ - id = "engie_store" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"njr" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"njs" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"njy" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"njA" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/chemistry) -"njB" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) -"njU" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"njY" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"nkg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigcells"; - dir = 1; - name = "\improper Brig Prison Yard And Offices" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"nkj" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"nkl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"nkn" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"nkw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/squads/bravo) -"nkQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"nkY" = ( -/obj/structure/machinery/cm_vending/gear/staff_officer_armory, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"nlh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"nlm" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"nlz" = ( -/obj/structure/machinery/brig_cell/cell_3{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"nlE" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/south{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"nlN" = ( -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/structure/barricade/handrail{ - dir = 4; - layer = 3.3; - pixel_y = 3 - }, -/obj/structure/barricade/handrail{ - dir = 8; - layer = 3.3; - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/engineering/port_atmos) -"nlS" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_two) -"nlT" = ( -/obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"nlU" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/starboard_missiles) -"nml" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"nmx" = ( -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"nmB" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"nmC" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - req_access = null; - req_access_txt = 37; - req_one_access = null - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"nmH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"nmQ" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"nmT" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"nmY" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/lower/workshop/hangar) -"nng" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"nnj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"nnn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"nnq" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/hallways/lower/vehiclehangar) -"nny" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"nnL" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/corporateliaison) -"nnQ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/one{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nnT" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lockerroom) -"nnZ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"noh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_door"; - name = "\improper Research Doorway Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"noi" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"nol" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"noy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"noE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"noI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"noO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"noQ" = ( -/turf/open/floor/almayer/green/northwest, -/area/almayer/hallways/upper/fore_hallway) -"nph" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/engineering/starboard_atmos) -"nps" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"npA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"npD" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 - }, -/obj/item/tool/kitchen/knife{ - pixel_x = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"npE" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"npK" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"npM" = ( -/turf/open/floor/almayer/uscm/directional/northeast, -/area/almayer/living/briefing) -"npN" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/living/auxiliary_officer_office) -"npO" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"nqa" = ( -/obj/structure/machinery/power/apc/almayer/east, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - layer = 3.33; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"nqp" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/port) -"nqw" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"nqx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"nqA" = ( -/obj/structure/closet/secure_closet/cmdcabinet{ - desc = "A bulletproof cabinet containing communications equipment."; - name = "communications cabinet"; - pixel_y = 24; - req_access = null; - req_one_access_txt = "3" - }, -/obj/item/device/radio/listening_bug/radio_linked/mp{ - pixel_y = 8 - }, -/obj/item/device/radio/listening_bug/radio_linked/mp, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/warden_office) -"nqS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) -"nqV" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"nrb" = ( -/obj/item/robot_parts/arm/l_arm, -/obj/item/robot_parts/leg/l_leg, -/obj/item/robot_parts/arm/r_arm, -/obj/item/robot_parts/leg/r_leg, -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) -"nrq" = ( -/obj/structure/window/reinforced/ultra{ - pixel_y = -12 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/brig/execution) -"nrL" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/cups{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/storage/box/cups, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"nrX" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/research, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"nsa" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/analyzer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"nsc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"nsd" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/bulbs{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"nso" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"nsC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silverfull, -/area/almayer/living/cryo_cells) -"nsW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"nsX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/squads/bravo) -"nsY" = ( -/turf/closed/wall/almayer, -/area/almayer/living/port_emb) -"ntj" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/computerlab) -"ntt" = ( -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"ntI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"ntJ" = ( -/obj/item/device/multitool, -/obj/structure/platform_decoration, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"ntT" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"nuA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha) -"nuF" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_umbilical) -"nuI" = ( -/obj/structure/target, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/living/cryo_cells) -"nuN" = ( -/obj/effect/landmark/start/marine/medic/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"nuU" = ( -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering/port) -"nvi" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"nvp" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"nvC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"nvM" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/medical/chemistry) -"nvX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/stack/cable_coil{ - pixel_x = 8; - pixel_y = -4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"nwb" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"nwB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research{ - name = "\improper Research Hydroponics Workshop" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"nxg" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"nxi" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_umbilical) -"nxt" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"nya" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"nyl" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"nyo" = ( -/turf/open/floor/almayer/silver, -/area/almayer/hallways/upper/midship_hallway) -"nyB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"nyQ" = ( -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"nyV" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 7; - pixel_y = -25 - }, -/obj/structure/surface/rack, -/obj/item/storage/box/autoinjectors{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/storage/box/beakers{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/storage/box/sprays{ - pixel_y = -3 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"nzh" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_one) -"nzp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/door_control{ - id = "bot_uniforms"; - name = "Uniform Vendor Lockdown"; - pixel_x = 8; - pixel_y = 24; - req_access_txt = "31" - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"nzt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"nzu" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"nzD" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/port) -"nzG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"nzL" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/ce_room) -"nzO" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"nzS" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/engine_core) -"nzZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/black, -/obj/item/tank/oxygen, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"nAm" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"nAn" = ( -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"nAv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"nAP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"nAY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"nBh" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"nBi" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/glasses/monocle, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -7; - pixel_y = -2 - }, -/obj/item/weapon/pole/fancy_cane{ - pixel_x = 5 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"nBl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"nBu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower/workshop) -"nBC" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"nBJ" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/s_bow) -"nBP" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/living/briefing) -"nBR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"nBY" = ( -/obj/structure/surface/rack, -/obj/item/storage/beer_pack, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"nCb" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"nCf" = ( -/obj/effect/landmark/start/marine/tl/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"nCt" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"nCv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"nCx" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - desc = "A premium double-malt whiskey, this bottle was gifted to the Captain of the USS Almayer after the completion of the ship's space trials by the VADM. himself."; - pixel_x = 3; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 11; - pixel_y = 16 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/clothing/mask/cigarette/pipe{ - layer = 2.8; - pixel_x = 14 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"nCN" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"nDb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"nDh" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"nDB" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"nDM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"nEk" = ( -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"nEl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"nEo" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"nEv" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_p) -"nEy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"nEF" = ( -/obj/structure/machinery/conveyor_switch{ - id = "gym_1"; - name = "treadmill switch" - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"nEZ" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"nFb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_y = 30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"nFr" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"nFu" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nFx" = ( -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/living/briefing) -"nFB" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"nFC" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"nFK" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"nFW" = ( -/obj/structure/machinery/cm_vending/clothing/engi/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"nGb" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"nGh" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"nGk" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"nGl" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"nGA" = ( -/turf/open/floor/almayer/plating_striped/north, -/area/almayer/engineering/upper_engineering/port) -"nGB" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/starboard_hallway) -"nGJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/morgue) -"nGK" = ( -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"nHa" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;7" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"nHf" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/command/cic) -"nHj" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) -"nHu" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"nHA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"nHG" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"nHT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"nHV" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/sl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"nHX" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"nIs" = ( -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"nIw" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"nIN" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_m_p) -"nIO" = ( -/obj/structure/machinery/computer/aa_console, -/obj/structure/bed/chair/ob_chair, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"nIS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/basketball) -"nIZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/auxiliary_officer_office) -"nJf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"nJt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"nJu" = ( -/obj/item/newspaper, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"nJQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"nJS" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"nJW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"nKf" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nKm" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"nKB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - id_tag = "CO-Office"; - name = "\improper Commanding Officer's Office"; - req_access = null; - req_access_txt = "31" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/commandbunks) -"nLf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/intel, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/computerlab) -"nLg" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/midship_hallway) -"nLi" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/living/cryo_cells) -"nLp" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_f_p) -"nLv" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"nLN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) -"nLY" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_x = 1; - pixel_y = 14; - wrenchable = 0 - }, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"nMa" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "crate_room"; - name = "\improper Storage Shutters" - }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"nMd" = ( -/obj/structure/machinery/chem_storage/medbay{ - dir = 1 - }, -/obj/structure/machinery/chem_storage/research{ - dir = 1; - layer = 3; - pixel_y = 18 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"nMq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/maint/upper/u_a_s) -"nME" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"nMY" = ( -/obj/structure/closet/crate/ammo, -/obj/structure/machinery/light/small, -/obj/item/ammo_box/magazine/empty, -/obj/item/ammo_box/magazine/empty, -/obj/structure/machinery/door_control{ - id = "crate_room3"; - name = "storage shutters"; - pixel_x = -26 - }, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"nNc" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"nNg" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"nNm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"nNF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/airlock{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"nNS" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/hallways/upper/midship_hallway) -"nNT" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"nOf" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"nOh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"nOs" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"nOx" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"nOy" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/engine_core) -"nOC" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"nOK" = ( -/turf/open/floor/almayer/uscm/directional/northwest, -/area/almayer/command/lifeboat) -"nOM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/multitool{ - desc = "A large handheld tool used to override various machine functions. Primarily used to pulse Airlock and APC wires on a shortwave frequency. It contains a small data buffer as well. This one is comically oversized. Made in Texas."; - icon_state = "multitool_big"; - name = "\improper Oversized Security Access Tuner"; - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/stack/sheet/cardboard/medium_stack{ - layer = 3.01; - pixel_x = -7; - pixel_y = -6 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"nOU" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"nPb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"nPs" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) -"nPz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"nPA" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/storage/hazardvest/blue, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) -"nPD" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"nPH" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"nPL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - closeOtherId = "brignorth"; - name = "\improper Brig Lobby" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"nPZ" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/starboard) -"nQf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"nQm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/line_nexter_control{ - id = "line2"; - pixel_x = -4; - pixel_y = 10; - req_one_access_txt = "1;21" - }, -/obj/structure/machinery/door_control{ - id = "ROlobby2"; - name = "RO Line 2 Shutters"; - pixel_x = 5; - pixel_y = 10; - req_one_access_txt = "1;21" - }, -/obj/item/paper_bin/uscm{ - pixel_y = -4 - }, -/obj/item/tool/pen{ - pixel_y = -5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"nQo" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"nQx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"nQz" = ( -/obj/structure/window/reinforced/ultra{ - pixel_y = -12 - }, -/obj/structure/bed/chair/bolted, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/brig/execution) -"nQA" = ( -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"nQF" = ( -/obj/structure/machinery/gel_refiller, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"nQJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"nQZ" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/midship_hallway) -"nRq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"nRE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"nRF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "northcheckpoint"; - name = "North Checkpoint Shutters"; - req_one_access_txt = "3;12;19" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"nRO" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"nRV" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/north{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"nRX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"nRY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/squads/bravo) -"nSb" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/machinery/cm_vending/clothing/medical_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/medical/hydroponics) -"nSd" = ( -/obj/effect/landmark/start/marine/medic/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"nSf" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera"; - pixel_y = 6 - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"nSn" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 24 - }, -/obj/structure/sign/safety/laser{ - pixel_y = 24 - }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 14; - pixel_y = 38 - }, -/obj/structure/sign/safety/rewire{ - pixel_y = 38 - }, -/obj/structure/machinery/door_control{ - id = "ARES Operations Right"; - name = "ARES Operations Shutter"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"nSq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"nSu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"nSz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"nSF" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"nSG" = ( -/obj/structure/machinery/door_control{ - id = "tcomms"; - name = "Telecommunications Entrance"; - pixel_y = 25 - }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"nSS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"nSV" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/storage/firstaid/regular, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/shipboard/brig/medical) -"nSZ" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"nTc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"nTg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 5 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = -4; - pixel_y = 19 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 4; - pixel_y = 16 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"nTs" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"nTA" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"nTH" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"nTR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"nTV" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"nUi" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) -"nUn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"nUu" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"nUH" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/obj/item/reagent_container/food/snacks/grown/banana{ - pixel_x = 18; - pixel_y = 5 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"nUM" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/greencorner/west, -/area/almayer/hallways/lower/port_midship_hallway) -"nUN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"nUW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"nUZ" = ( -/turf/open/floor/almayer/uscm/directional/west, -/area/almayer/command/cic) -"nVg" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"nVn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"nVt" = ( -/obj/structure/machinery/vending/security, -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"nVB" = ( -/turf/open/floor/almayer, -/area/almayer/command/securestorage) -"nVM" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"nVO" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"nVQ" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/security{ - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nVR" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/perma) -"nVZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"nWj" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"nWp" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/sign/safety/storage{ - pixel_x = 33; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"nWw" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"nWD" = ( -/obj/structure/closet, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"nWN" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"nWR" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"nWT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) -"nXc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) -"nXe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/lower_medical_medbay) -"nXH" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"nXO" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigar{ - layer = 3.04; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -11; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -2; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 7; - pixel_y = 16 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"nYd" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"nYe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"nYj" = ( -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/space) -"nYn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"nYu" = ( -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"nYz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"nZc" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"nZg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"nZh" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/machinery/space_heater, -/obj/item/ashtray/glass{ - pixel_x = 3; - pixel_y = 6 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"nZw" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"nZy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/facepaint/black, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"nZF" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/living/briefing) -"nZG" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"nZI" = ( -/obj/structure/surface/table/almayer, -/obj/item/stock_parts/matter_bin, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/cell/high, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"nZK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"nZW" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"nZY" = ( -/obj/structure/machinery/door_control{ - id = "engidorm"; - pixel_x = 25; - pixel_y = 2 - }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"oad" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) -"oaj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"oaK" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"oaP" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet, -/obj/item/clothing/under/marine, -/obj/item/clothing/suit/storage/marine, -/obj/item/clothing/head/helmet/marine, -/obj/item/clothing/head/cmcap, -/obj/item/clothing/head/cmcap, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"oaS" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north2) -"obg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"obs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"obH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"obJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/cichallway) -"obQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"ocb" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/p_bow) -"ocg" = ( -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/upper/midship_hallway) -"ocs" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"ocB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 24 - }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 14; - pixel_y = 38 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 - }, -/obj/structure/sign/safety/laser{ - pixel_y = 24 - }, -/obj/structure/sign/safety/rewire{ - pixel_y = 38 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"ocG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "30;19" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"odc" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"odh" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access_txt = "5" - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"odl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"odo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"odN" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "SEA Office Shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/sea_office) -"oer" = ( -/turf/closed/wall/almayer{ - damage_cap = 15000 - }, -/area/almayer/squads/delta) -"oes" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"oeu" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"oez" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"oeQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"oeZ" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/medical) -"ofj" = ( -/obj/structure/machinery/power/apc/almayer/north{ - cell_type = /obj/item/cell/hyper - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/mp_bunks) -"ofJ" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/hallways/upper/midship_hallway) -"ogn" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"ogo" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/smg/m39{ - pixel_y = 6 - }, -/obj/item/weapon/gun/smg/m39{ - pixel_y = -6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"ogt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera_film{ - layer = 3.03; - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/stack/sheet/cardboard/small_stack{ - layer = 3.02; - pixel_x = -5; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"ogG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"ogH" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"ogI" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/squads/delta) -"ogK" = ( -/obj/structure/bed/bedroll{ - desc = "A bed of cotton fabric, purposely made for a cat to comfortably sleep on."; - name = "cat bed" - }, -/obj/structure/machinery/firealarm{ - pixel_x = -1; - pixel_y = 28 - }, -/mob/living/simple_animal/cat/Jones{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"ogT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"ohc" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = 10 - }, -/obj/item/reagent_container/food/snacks/hotchili, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"ohs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"ohw" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"ohz" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"ohI" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/stack/cable_coil{ - pixel_x = -7; - pixel_y = 11 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"ohJ" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"ohL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"ohP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/lower/engine_core) -"ohX" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Reception Interior"; - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"oib" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"oif" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"oii" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_two) -"oiw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop/hangar) -"oiO" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south2) -"oiQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"oiX" = ( -/obj/docking_port/stationary/vehicle_elevator/almayer, -/turf/open/floor/almayer/empty/vehicle_bay, -/area/almayer/hallways/lower/vehiclehangar) -"ojh" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"ojk" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"ojl" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/medical_science) -"ojp" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) -"ojs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"ojy" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"ojQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_x = -5; - pixel_y = 10 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"ojT" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"ojX" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_f_p) -"ojZ" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/medical/lower_medical_medbay) -"okf" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"okm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"okC" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering Lounge" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"okG" = ( -/obj/item/stack/tile/carpet{ - amount = 20 - }, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"okI" = ( -/obj/structure/stairs, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"okT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_three) -"olc" = ( -/obj/structure/closet/crate/freezer/cooler{ - pixel_x = -7 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = 10; - pixel_y = -4 - }, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/structure/sign/safety/storage{ - pixel_x = -24 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"old" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"olw" = ( -/obj/item/tool/screwdriver, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"olJ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Storage" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"olM" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"olO" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"olQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"omt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"omy" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"omB" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north1) -"omE" = ( -/turf/open/floor/almayer/blue/southeast, -/area/almayer/hallways/upper/midship_hallway) -"omH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"onc" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"oni" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"onm" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"onn" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"onp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"ons" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) -"onv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"onz" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/constr) -"onA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"onG" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 32 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"onK" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"onN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/toy/deck{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"onR" = ( -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 - }, -/obj/structure/surface/rack{ - layer = 2.5 - }, -/obj/item/storage/fancy/candle_box{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"onS" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"onU" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"oob" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -34 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"oog" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"ooh" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"ooo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"oos" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"oov" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"ooA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"ooF" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/magazine/boots/n150{ - pixel_x = -5; - pixel_y = 6 - }, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"ooO" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"opi" = ( -/obj/structure/transmitter{ - dir = 8; - name = "RO Office Telephone"; - phone_category = "Offices"; - phone_id = "RO Office"; - pixel_x = 16 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"opp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"opD" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/gym) -"opE" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"opI" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"opJ" = ( -/obj/docking_port/stationary/emergency_response/external/port4, -/turf/open/space/basic, -/area/space) -"oqi" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"oqj" = ( -/obj/item/trash/USCMtray{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"oqp" = ( -/obj/structure/target, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/living/cryo_cells) -"oqt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"oqv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"oqE" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/lower/repair_bay) -"oqI" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"oqM" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/window/reinforced, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"oqS" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"oqY" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" - }, -/obj/structure/plasticflaps, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"orb" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/containment/cell) -"orr" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm{ - pixel_x = 8; - pixel_y = 12 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"ort" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"orL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/glasses/welding{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/tool/weldingtool{ - pixel_x = -11; - pixel_y = 5 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"osc" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"osi" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"osk" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_point_defense) -"osl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"osp" = ( -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/starboard) -"osO" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"osT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/ice_colony/hula_girl{ - pixel_x = 10; - pixel_y = -4 - }, -/turf/open/floor/almayer, -/area/almayer/living/pilotbunks) -"osZ" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"ota" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering) -"otq" = ( -/obj/structure/machinery/line_nexter{ - dir = 1; - id = "MTline"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"otu" = ( -/turf/closed/wall/almayer/research/containment/wall/connect_w, -/area/almayer/medical/containment/cell) -"otC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"otN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/delta) -"otU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/lobby) -"otV" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"ouh" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"oui" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oum" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"ouo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"our" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"ouB" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"ouL" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"ove" = ( -/obj/structure/airlock_assembly, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"ovm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"ovu" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"ovB" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"ovE" = ( -/obj/item/stack/cable_coil{ - pixel_x = 1; - pixel_y = 10 - }, -/obj/item/trash/pistachios, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/repair_bay) -"ovJ" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) -"ovL" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/fridge/groceries/stock, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"ovQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"ovS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Chapel" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/chapel) -"ovT" = ( -/obj/item/reagent_container/food/snacks/grown/poppy{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"ovV" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/surface/rack, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"owo" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"owt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"owB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/midship_hallway) -"owD" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) -"owO" = ( -/obj/structure/machinery/smartfridge/chemistry, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/chemistry) -"owU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"oxc" = ( -/obj/structure/bed, -/obj/item/toy/plush/farwa{ - pixel_x = 5 - }, -/obj/item/clothing/under/redpyjamas, -/obj/item/bedsheet/orange, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"oxe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"oxf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"oxu" = ( -/obj/structure/sign/safety/galley{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"oxy" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"oxz" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"oxU" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"oxY" = ( -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"oyh" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"oyu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"oyw" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"oyA" = ( -/obj/item/trash/uscm_mre, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"oyC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/starboard_hallway) -"oyO" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"ozb" = ( -/obj/structure/machinery/cm_vending/clothing/leader/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"ozf" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/squads/alpha) -"ozo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"ozs" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"ozJ" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"ozK" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/starboard_hallway) -"ozQ" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"oAd" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - damage_cap = 50000; - name = "\improper Chief Engineer's Bunk"; - no_panel = 1; - req_access = list(); - req_one_access_txt = "1;6" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/ce_room) -"oAf" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/basketball) -"oAi" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"oAj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"oAl" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown" - }, -/obj/effect/step_trigger/ares_alert/access_control, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"oAI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"oAK" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"oAP" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - dir = 2; - name = "\improper Brig Lobby"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/lobby) -"oAS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"oAU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"oBd" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/upper/midship_hallway) -"oBe" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"oBr" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_s) -"oBu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) -"oBR" = ( -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/upper/fore_hallway) -"oBT" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/item/folder/black_random, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"oCd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"oCk" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"oCw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_four) -"oCK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"oCQ" = ( -/obj/structure/cargo_container/lockmart/left{ - layer = 3.1; - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"oCY" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"oDh" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"oDm" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"oDy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"oDP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"oDS" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"oEj" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"oEm" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering/port) -"oEo" = ( -/obj/effect/landmark/start/marine/medic/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"oEw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_x = 7; - pixel_y = 14 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_x = -5; - pixel_y = 10 - }, -/obj/structure/sign/safety/medical{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"oEy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"oEE" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"oET" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"oFi" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"oFp" = ( -/obj/structure/largecrate/machine/bodyscanner, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"oFz" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"oFB" = ( -/obj/structure/closet/secure_closet/fridge/meat/stock, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"oFO" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"oFV" = ( -/obj/structure/sign/poster{ - pixel_x = -32; - serial_number = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"oFY" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/lobby) -"oGf" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"oGg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/upper/midship_hallway) -"oGj" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"oGk" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/vehiclehangar) -"oGp" = ( -/obj/structure/surface/table/almayer, -/obj/item/card/id/visa, -/obj/item/tool/crew_monitor, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"oGC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"oGF" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"oGJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"oGY" = ( -/obj/item/device/flashlight/lamp/green{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/door_control/cl/office/evac{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/structure/machinery/door_control/cl/office/divider{ - pixel_x = -5; - pixel_y = -3 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"oHe" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"oHn" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/offices/flight) -"oHo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oHt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"oHu" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"oHw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"oHF" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Auxiliary Support Officer's Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) -"oHI" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"oHV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - closeOtherId = "briglobby"; - dir = 2; - name = "\improper Brig Lobby" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"oHX" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"oIb" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/midship_hallway) -"oIn" = ( -/obj/effect/landmark/start/liaison, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"oIp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"oIt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"oIB" = ( -/turf/closed/wall/almayer, -/area/almayer/command/combat_correspondent) -"oIL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_three) -"oIM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - name = "\improper Brig Cells" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"oIS" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"oJg" = ( -/turf/open/floor/almayer/greencorner/east, -/area/almayer/living/grunt_rnr) -"oJj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"oJk" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/lower/workshop) -"oJp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/bed/chair/office/dark, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"oJJ" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/living/offices) -"oJM" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "tcomms_apc"; - name = "\improper Telecommunications Power Storage" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"oJS" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"oJU" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) -"oJX" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"oKa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"oKt" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/device/radio, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"oKJ" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/starboard) -"oKK" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 16; - pixel_y = 27 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"oKU" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"oLa" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"oLh" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"oLj" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"oLk" = ( -/obj/structure/reagent_dispensers/water_cooler/walk_past{ - pixel_x = 10; - pixel_y = 3 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"oLr" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"oLt" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) -"oLw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"oLD" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/computerlab) -"oLG" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"oLR" = ( -/obj/structure/pipes/unary/freezer, -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/sign/safety/autodoc{ - pixel_x = 20; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/cryo_tubes) -"oLT" = ( -/obj/structure/window/reinforced/ultra{ - pixel_y = -12 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/brig/execution) -"oMk" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"oMn" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"oMG" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ - dir = 1; - vent_tag = "Records" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"oMQ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"oNf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"oNg" = ( -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/starboard_fore_hallway) -"oNh" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"oNj" = ( -/obj/structure/sign/prop1{ - pixel_x = -32; - pixel_y = 2 - }, -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"oNl" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - access_modified = 1; - dir = 2; - name = "\improper Chief Engineer's Office"; - req_one_access = null; - req_one_access_txt = "1;6" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "CE Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/ce_room) -"oNm" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/upper/u_a_s) -"oNH" = ( -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"oNY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 7 - }, -/obj/structure/machinery/door_control/cl/quarter/officedoor{ - pixel_x = -25 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"oOn" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"oOF" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"oOI" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"oOY" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"oPc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"oPf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"oPr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"oPu" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"oPw" = ( -/obj/structure/machinery/power/apc/almayer/hardened/north{ - cell_type = /obj/item/cell/hyper - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"oPx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"oPI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"oPP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/hydroponics) -"oQo" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/engine_core) -"oQq" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) -"oQG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"oQJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"oQX" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"oQZ" = ( -/obj/structure/machinery/cm_vending/clothing/intelligence_officer{ - density = 0; - pixel_x = -32 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/securestorage) -"oRd" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"oRg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"oRi" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"oRq" = ( -/obj/structure/closet/toolcloset, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"oRP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/almayer/greencorner/west, -/area/almayer/hallways/lower/port_fore_hallway) -"oRV" = ( -/obj/structure/blocker/invisible_wall, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"oSa" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"oSe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/almayer/west, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 3 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/chemistry) -"oSq" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel" - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"oSt" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build/ai_arrow/east, -/area/almayer/command/airoom) -"oSv" = ( -/obj/structure/sign/safety/medical{ - pixel_x = -17; - pixel_y = 6 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -9 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/lobby) -"oSC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"oSJ" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"oSM" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"oSW" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/living/pilotbunks) -"oTa" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/cichallway) -"oTh" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"oTi" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"oTw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"oTB" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_lobby) -"oTN" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/upper/midship_hallway) -"oTQ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/north2) -"oTS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"oTT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"oTV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Evidence Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/evidence_storage) -"oUd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"oUi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oUr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"oUs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"oUt" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"oUF" = ( -/obj/structure/sign/safety/rewire{ - layer = 2.4; - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/reagent_container/glass/beaker/large{ - pixel_x = -6; - pixel_y = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"oUR" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"oVe" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"oVq" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"oVr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/command/lifeboat) -"oVw" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south1) -"oVD" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) -"oVY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"oWb" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"oWc" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/obj/structure/platform_decoration, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"oWi" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/starboard_aft_hallway) -"oWq" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"oWu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"oWF" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"oWS" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/carrotseed, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/shipboard/brig/cells) -"oWW" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"oXa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/aft_hallway) -"oXb" = ( -/obj/effect/landmark/start/marine/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"oXd" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/device/multitool{ - pixel_x = 8 - }, -/obj/item/tool/screwdriver{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"oXp" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"oXu" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = 4 - }, -/obj/item/storage/fancy/cigarettes/lady_finger{ - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"oXv" = ( -/turf/open/floor/almayer/bluecorner, -/area/almayer/hallways/upper/midship_hallway) -"oXy" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"oXB" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"oXN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"oXZ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"oYc" = ( -/obj/effect/landmark/start/marine/medic/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"oYi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"oYl" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"oYC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"oYE" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"oYH" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/basketball) -"oYJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"oYM" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"oYQ" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_aft_hallway) -"oYU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"oYZ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"oZr" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"oZv" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/evidence{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/storage/box/evidence{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"oZy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"oZz" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 14 - }, -/obj/structure/janitorialcart, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"oZB" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"oZG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - name = "\improper Upper Engineering" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"oZK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"pae" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"paf" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"par" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"pau" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"paZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"pba" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"pbn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Primary Processors"; - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"pbC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"pbJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/hemostat, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/morgue) -"pbN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Brig Breakroom" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/mp_bunks) -"pbS" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/chief_mp_office) -"pcf" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"pch" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - access_modified = 1; - dir = 8; - req_access_txt = "8" - }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"pcm" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) -"pcs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"pcP" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/living/port_emb) -"pcQ" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/navigation) -"pcV" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or02"; - name = "Operating Theatre 2" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_two) -"pcY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"pdn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"pdq" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"pds" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"pdx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"pdy" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"pdI" = ( -/obj/structure/stairs, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"pdJ" = ( -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/living/cryo_cells) -"pdP" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"pdY" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/mp_bunks) -"pej" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"pek" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/s_bow) -"pep" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_p) -"pex" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/containment) -"peN" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"peU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"pfa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"pfd" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/starboard_hallway) -"pfg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_missiles) -"pfo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) -"pfw" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/photocopier/wyphotocopier, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"pfD" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"pfF" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/cups, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"pfK" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"pfL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"pfM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"pfZ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"pgk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/shipboard/port_missiles) -"pgD" = ( -/turf/closed/wall/almayer, -/area/almayer/lifeboat_pumps/south1) -"pgE" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) -"pgJ" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"pgP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"phe" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"phB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/port_missiles) -"phD" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/delta) -"phN" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/processing) -"phO" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bedsheetbin{ - pixel_y = 6 - }, -/obj/item/clothing/under/marine/dress, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"phX" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"phZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_medbay) -"pig" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"pij" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"pin" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pip" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"pis" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"piu" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"piy" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Workshop Vendors" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/repair_bay) -"piB" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/machinery/recycler, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_a_p) -"piJ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"piK" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "Perma 1"; - name = "\improper cell shutter" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/perma) -"piZ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) -"pjc" = ( -/obj/structure/machinery/telecomms/relay/preset/telecomms{ - listening_level = 6 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"pje" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"pjq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) -"pjt" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer/test_floor5, -/area/almayer/engineering/lower/engine_core) -"pjz" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/p_bow) -"pjC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"pjI" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_two) -"pjK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/uniform_supply, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"pjP" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"pjR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"pjT" = ( -/obj/structure/machinery/seed_extractor, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/grunt_rnr) -"pjU" = ( -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/sea_office) -"pjY" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"pku" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - desc = "Do you remember who you are?"; - icon_state = "mirror_broke"; - name = "broken mirror"; - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/item/device/cassette_tape/nam{ - layer = 2.9; - pixel_x = -6; - pixel_y = 11 - }, -/obj/structure/machinery/door_control{ - id = "Delta_2"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 - }, -/obj/item/prop{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8; - pixel_y = 29 - }, -/obj/item/prop{ - desc = "A bunch of tiny bits of shattered metal."; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "piece of shrapnel"; - pixel_x = -1; - pixel_y = 24 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"pkO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/containment) -"pkP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/midship_hallway) -"plf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/upper/aft_hallway) -"plg" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) -"plo" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"plr" = ( -/obj/structure/machinery/computer/cryopod{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"plv" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) -"plw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "\improper Officer's Cafeteria" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cafeteria_officer) -"ply" = ( -/obj/structure/closet/secure_closet/fridge/groceries, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"plB" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "civ_uniforms"; - name = "Uniform Vendor Lockdown"; - pixel_x = -24; - pixel_y = -7; - req_access_txt = "31" - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"plK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"plV" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"pme" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/cargo, -/area/almayer/command/telecomms) -"pmz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"pmQ" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_y = 30 - }, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"pmZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"png" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pnh" = ( -/obj/structure/ladder{ - height = 2; - id = "ForePortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/p_bow) -"pnn" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"pno" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"pnr" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/hallways/upper/midship_hallway) -"pns" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"pnB" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/maint/upper/u_a_p) -"pnI" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/grunt_rnr) -"pnU" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"pob" = ( -/obj/structure/machinery/telecomms/server/presets/security, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"pou" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"poy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"poD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"poF" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/tank, -/obj/structure/sign/safety/life_support{ - pixel_x = -17 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"poN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/numbertwobunks) -"poV" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "Perma 1"; - name = "\improper cell shutter" - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Isolation Cell" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"ppe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/living/auxiliary_officer_office) -"ppi" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"ppp" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/stair_clone/upper) -"ppq" = ( -/obj/structure/machinery/line_nexter/med{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"ppB" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/plantspray/weeds, -/obj/structure/sign/safety/hvac_old{ - pixel_y = -26 - }, -/turf/open/floor/almayer/green, -/area/almayer/shipboard/brig/cells) -"ppF" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/obj/structure/surface/table/almayer, -/obj/item/clipboard{ - pixel_x = -4 - }, -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/camera, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"ppM" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"ppU" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"pql" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) -"pqq" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - name = "\improper Requisitions Storage" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"pqw" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"pqy" = ( -/obj/structure/sink{ - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_one) -"pqB" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"pqF" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/cigarbutt, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"pqU" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"pqX" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"pqY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"pqZ" = ( -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/starboard) -"prf" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"pri" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"prv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"prD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"prN" = ( -/obj/structure/machinery/photocopier, -/obj/item/paper{ - color = "grey"; - info = "This is seemingly a photocopy of an image, containing.. OH GOD, WHY, GET IT OUT OF MY SIGHT"; - name = "photocopied image"; - pixel_y = 5 - }, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"prP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"prR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -12; - pixel_y = 28 - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 - }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"prX" = ( -/obj/structure/ladder{ - height = 2; - id = "AftStarboardMaint" - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/u_a_s) -"prY" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray, -/obj/item/tool/kitchen/utensil/pknife, -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"psf" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"psj" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"psy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"pta" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) -"ptd" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"ptv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"ptw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"ptK" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"ptS" = ( -/obj/structure/machinery/photocopier{ - density = 0; - layer = 2.9; - pixel_x = -3; - pixel_y = 16 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = -19; - pixel_y = 5 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/offices) -"pug" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"pum" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"pun" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/shipboard/port_missiles) -"puv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/almayer{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"puF" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/item/tool/soap, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"puI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"puM" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler{ - pixel_x = 7 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = -6 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"puO" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"puS" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"puT" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"puW" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"pvh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/item/tool/warning_cone{ - pixel_x = -21; - pixel_y = -9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"pvk" = ( -/obj/structure/reagent_dispensers/watertank{ - anchored = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"pvq" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"pvu" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower) -"pvw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"pwg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"pwG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"pwJ" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"pwR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"pwT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/toy/crayon/blue{ - pixel_x = -9; - pixel_y = -5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"pxc" = ( -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"pxG" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"pxH" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"pyg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"pyj" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"pyk" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"pyn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"pyq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/rollingpin, -/obj/item/tool/kitchen/knife, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"pyu" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/lower/starboard_fore_hallway) -"pyx" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 4; - id = "Containment Cell 4"; - name = "Control Panel"; - pixel_x = -15; - req_access_txt = "200" - }, -/obj/item/storage/fancy/cigarettes/blackpack{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/tool/lighter/zippo/gold{ - pixel_x = 2 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"pyD" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"pyK" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/south1) -"pyW" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/living/pilotbunks) -"pyX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/tool/hand_labeler{ - pixel_x = -8; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"pzF" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"pzW" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/hallways/lower/vehiclehangar) -"pzY" = ( -/turf/open/floor/almayer/plate, -/area/almayer/lifeboat_pumps/north1) -"pAi" = ( -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/sea_office) -"pAm" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"pAn" = ( -/obj/structure/closet, -/obj/item/stack/sheet/glass/large_stack, -/obj/item/device/lightreplacer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/stack/rods{ - amount = 40 - }, -/obj/item/tool/weldingtool, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"pAo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"pAy" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"pAI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/armory) -"pAK" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"pAV" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/item/tool/mop, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"pBd" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"pBj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"pBG" = ( -/turf/closed/wall/almayer, -/area/almayer/command/corporateliaison) -"pBO" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "7;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/vehiclehangar) -"pBT" = ( -/obj/structure/machinery/cm_vending/clothing/medic/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"pCc" = ( -/obj/structure/pipes/vents/scrubber, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"pCq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"pCx" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/hallways/lower/port_umbilical) -"pCD" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"pCE" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"pCV" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"pCX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"pDl" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pDr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"pDs" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"pDA" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"pDJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) -"pDS" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Secretroom"; - indestructible = 1; - unacidable = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"pDZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/aft_hallway) -"pEg" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"pEz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/computer{ - pixel_x = 7 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 1; - pixel_y = 25 - }, -/obj/item/prop/magazine/book/borntokill{ - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"pEB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"pET" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"pFa" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link/green, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lockerroom) -"pFf" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"pFh" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"pFE" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/securestorage) -"pFH" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pGh" = ( -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -9; - pixel_y = 19 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"pGw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/medical_science) -"pGB" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES StairsUpper"; - name = "\improper ARES Core Shutters"; - plane = -7 - }, -/obj/structure/disposalpipe/up/almayer{ - dir = 2; - id = "ares_vault_in"; - name = "aicore" - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"pGG" = ( -/obj/effect/landmark/start/doctor, -/obj/structure/sign/safety/maint{ - pixel_y = 26 - }, -/obj/effect/landmark/late_join/doctor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"pGL" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"pGR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"pGT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"pGW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced/ultra{ - dir = 1 - }, -/obj/structure/window/reinforced/ultra{ - dir = 4 - }, -/obj/item/device/flashlight/lamp/on, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/living/briefing) -"pGX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"pHj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"pHp" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/perma) -"pHq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigmaint_n"; - dir = 1; - name = "\improper Brig" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/s_bow) -"pHA" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"pHC" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"pHF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"pHO" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/shipboard/brig/cic_hallway) -"pHP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pHR" = ( -/obj/structure/machinery/cm_vending/clothing/commanding_officer, -/turf/open/floor/almayer/cargo, -/area/almayer/living/commandbunks) -"pHT" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/upper/midship_hallway) -"pId" = ( -/obj/item/storage/box/nade_box/tear_gas, -/obj/item/storage/box/nade_box/tear_gas{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"pIs" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"pIz" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"pIL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/port) -"pIO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"pIV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"pJa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"pJl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"pJm" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"pJo" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"pJp" = ( -/obj/structure/closet/boxinggloves, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"pJA" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 5"; - locked = 1; - name = "\improper Containment Cell 5" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Containment Cell 5"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"pJJ" = ( -/obj/structure/machinery/cryopod/right{ - dir = 2 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"pJS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"pKd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"pKh" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/effect/landmark/start/nurse, -/obj/effect/landmark/late_join/nurse, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"pKk" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_one) -"pKx" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"pKD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/starboard) -"pKQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - closeOtherId = "containment_s"; - dir = 8; - name = "\improper Containment Airlock" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment) -"pKU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/mp_bunks) -"pLi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/hallways/lower/vehiclehangar) -"pLj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"pLH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Starboard Railguns and Viewing Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"pLJ" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering) -"pLO" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 5"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"pLV" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"pMn" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"pMq" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/lower/repair_bay) -"pMx" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox/margherita{ - pixel_y = 8 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"pMH" = ( -/obj/item/tool/wet_sign, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"pMJ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"pMW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/starboard) -"pNn" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, -/obj/structure/machinery/light, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"pNr" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"pNx" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"pNz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/fire{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"pNC" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"pNL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/accessory/red, -/obj/item/clothing/head/bowlerhat{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/item/clothing/suit/storage/webbing, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"pNR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"pOc" = ( -/obj/structure/largecrate/random, -/obj/item/reagent_container/food/snacks/cheesecakeslice{ - pixel_y = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"pOi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"pOm" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light/small, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/chief_mp_office) -"pOE" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lockerroom) -"pOG" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"pOT" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"pOV" = ( -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/structure/surface/rack, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"pOW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"pPe" = ( -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"pPh" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) -"pPl" = ( -/obj/structure/sign/prop2{ - pixel_y = 29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"pPr" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/yellow, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"pPt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pPy" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"pPK" = ( -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"pPO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"pQg" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/bombcloset, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"pQl" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/morgue) -"pQu" = ( -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"pQx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pQy" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/bridgebunks) -"pQB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/hallways/lower/starboard_aft_hallway) -"pQM" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/command/cichallway) -"pQN" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/franks, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"pQO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"pRq" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/weapon_room) -"pRs" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"pRw" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = -4 - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"pRA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"pRV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"pRZ" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/engineering/lower/workshop) -"pSu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"pSz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/reagent_container/food/snacks/cheesewedge{ - pixel_x = -10; - pixel_y = 7 - }, -/mob/living/simple_animal/mouse/white/Doc, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"pSB" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera_film, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"pSG" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"pSL" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft"; - pixel_x = 20 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"pTC" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"pTN" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"pTQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) -"pTT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"pUg" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "ARES ReceptStairs2"; - name = "ARES Reception Stairway Shutters"; - pixel_x = 24; - req_one_access_txt = "91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"pUh" = ( -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/squads/charlie) -"pUj" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"pUn" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"pUB" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"pUE" = ( -/obj/effect/landmark/railgun_computer, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"pUV" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/morgue) -"pUZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"pVf" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) -"pVh" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"pVo" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"pVr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pVA" = ( -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 2; - pixel_y = 18 - }, -/obj/item/tool/warning_cone{ - pixel_x = -12 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"pVD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1; - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -9; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"pVF" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c1000/counterfeit, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/atm{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"pVT" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"pVU" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"pWb" = ( -/obj/effect/landmark/start/marine/tl/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"pWE" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"pWI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"pWQ" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"pWR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"pXf" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"pXp" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/req) -"pXv" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"pXN" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"pXT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"pXZ" = ( -/obj/effect/landmark/start/marine/spec/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"pYb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"pYi" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"pYl" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/cargo, -/area/almayer/command/lifeboat) -"pYu" = ( -/obj/item/tool/warning_cone{ - pixel_x = -12; - pixel_y = 16 - }, -/obj/structure/sign/safety/security{ - pixel_x = -16 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"pYF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"pYI" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pYQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"pZd" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pZo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"pZw" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"pZA" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/starboard_missiles) -"pZH" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/door/window/westright, -/obj/structure/window/reinforced/tinted/frosted, -/obj/item/tool/soap/deluxe, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/corporateliaison) -"pZY" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"qac" = ( -/obj/effect/landmark/start/marine/medic/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"qae" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"qan" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"qap" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_four) -"qas" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"qat" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"qax" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) -"qaN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"qaQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"qaU" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 2; - no_panel = 1; - not_weldable = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"qbq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"qbw" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"qbx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"qbA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/squads/req) -"qbE" = ( -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"qbN" = ( -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/roller/medevac, -/obj/item/roller/medevac, -/obj/item/roller/medevac, -/obj/structure/machinery/power/apc/almayer/west, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"qbY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/port_umbilical) -"qck" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/cameras/wooden_tv/almayer{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"qcv" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"qcC" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"qcL" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"qcO" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/power/apc/almayer/west, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"qdd" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/chemistry) -"qdf" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"qdg" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"qdn" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -25 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"qds" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"qdJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"qdQ" = ( -/obj/structure/bed/sofa/vert/grey/top{ - pixel_y = 11 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"qdV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"qel" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"qem" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - id = "medcryobeds"; - id_tag = "medcryobeds"; - name = "Medical Hypersleep Access"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"qez" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/lower/engine_core) -"qeY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"qfa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"qfc" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command, -/obj/item/device/megaphone, -/obj/structure/machinery/computer/cameras/almayer_brig{ - desc = "Used to access the various cameras in the security brig."; - dir = 8; - layer = 2.99; - name = "brig cameras console"; - pixel_x = 17; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"qfr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/lower) -"qfD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"qfJ" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qfV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door_control{ - id = "DeployWorkR"; - name = "Workshop Shutters"; - pixel_x = -7; - pixel_y = -26; - req_one_access_txt = "3;22;2;19;7" - }, -/obj/structure/surface/rack, -/obj/item/parachute{ - pixel_y = 8 - }, -/obj/item/parachute, -/obj/item/parachute{ - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/hallways/lower/repair_bay) -"qgm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"qgq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/captain_mess) -"qgr" = ( -/obj/item/trash/plate{ - pixel_x = 9; - pixel_y = 11 - }, -/obj/item/reagent_container/food/snacks/carpmeat{ - layer = 3.3; - pixel_x = 8; - pixel_y = 11 - }, -/obj/item/reagent_container/food/snacks/carpmeat{ - layer = 3.3; - pixel_x = 8; - pixel_y = 11 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"qgN" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"qgP" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"qhi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 4; - pixel_y = 10 - }, -/obj/structure/machinery/computer/cameras/almayer_brig{ - desc = "Used to access the various cameras in the security brig."; - dir = 4; - name = "brig cameras console"; - pixel_y = -11 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/warden_office) -"qht" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"qhz" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"qhG" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/ash, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -7; - pixel_y = 14 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -13; - pixel_y = 8 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -6; - pixel_y = 9 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"qhJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha) -"qhY" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"qib" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"qid" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"qit" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"qiy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"qiG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"qiL" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/lower/port_midship_hallway) -"qiQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/aicore_lockdown, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"qjb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"qjx" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/shipboard/brig/general_equipment) -"qjD" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"qjT" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/blue, -/obj/effect/landmark/map_item, -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"qjZ" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/stern_point_defense) -"qki" = ( -/obj/effect/landmark/start/marine/smartgunner/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"qkt" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/closet/firecloset, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"qkx" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"qkK" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north1) -"qkN" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"qkS" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/hallways/upper/midship_hallway) -"qle" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder/industrial{ - pixel_y = 8 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"qlm" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"qlp" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/prop/tableflag/uscm{ - pixel_x = -5 - }, -/obj/item/prop/tableflag/uscm2{ - pixel_x = 5 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"qlz" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "SEA Office Shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/sea_office) -"qlI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"qlR" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"qlZ" = ( -/obj/item/trash/uscm_mre, -/obj/structure/bed/chair/comfy/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"qmh" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/hallways/lower/repair_bay) -"qmo" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"qmG" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = -24; - pixel_y = 8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Main Staircase"; - dir = 4; - pixel_y = -8 - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"qmP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"qmT" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/port) -"qmU" = ( -/obj/item/vehicle_clamp, -/obj/item/vehicle_clamp, -/obj/item/vehicle_clamp, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"qmY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"qnd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"qnh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"qnk" = ( -/obj/structure/sign/safety/intercom{ - layer = 2.9; - pixel_x = -6; - pixel_y = 29 - }, -/obj/structure/machinery/botany/extractor{ - density = 0; - pixel_x = 15; - pixel_y = 16 - }, -/obj/item/device/flashlight/pen{ - pixel_x = 14; - pixel_y = 15 - }, -/obj/structure/machinery/vending/hydroseeds{ - density = 0; - pixel_x = -7; - pixel_y = 16; - req_access_txt = "28" - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"qnn" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/morgue) -"qnA" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/tool/crowbar{ - pixel_x = 6; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"qnL" = ( -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "cryo curtain" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/port_atmos) -"qnN" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular/empty, -/obj/item/storage/firstaid/regular/empty, -/obj/item/storage/firstaid/regular/empty, -/obj/structure/sign/safety/outpatient{ - pixel_x = -17; - pixel_y = -6 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"qnS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/hangar{ - dir = 4; - pixel_y = 12 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 4; - name = "Remote dropship navigation computer"; - pixel_y = -12 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"qof" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigmaint_s"; - dir = 1; - name = "\improper Brig Maintenance" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown_2"; - name = "\improper Perma Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"qog" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"qoh" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/starboard) -"qok" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"qoK" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"qoW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"qpf" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha_bravo_shared) -"qpk" = ( -/obj/structure/bed, -/obj/item/bedsheet/green, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"qpy" = ( -/obj/structure/surface/rack, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"qpJ" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qpP" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cic) -"qpV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"qpW" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/obj/structure/catwalk{ - health = null - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"qqf" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qqn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"qqp" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"qqB" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"qqD" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"qrb" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"qry" = ( -/obj/docking_port/stationary/lifeboat_dock/starboard, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space/almayer/lifeboat_dock) -"qrH" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qsp" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"qsq" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"qsG" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"qsK" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/l42a, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = -6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"qsL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/ce_room) -"qsN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 16 - }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"qtb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"qth" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"qtA" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"qtJ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"qtK" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/clothing/accessory/storage/webbing, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"qtL" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/regular, -/obj/item/clothing/glasses/regular, -/obj/item/clothing/glasses/regular, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"qtP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/squads/charlie) -"qtW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/upper_medical) -"quf" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/mp_bunks) -"quj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"quq" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"quA" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"quH" = ( -/turf/open/floor/almayer/emerald/east, -/area/almayer/hallways/lower/port_midship_hallway) -"quJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"qve" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qvk" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/machinery/cryo_cell{ - dir = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"qvr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"qvA" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"qvI" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"qvS" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"qvT" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - closeOtherId = "brigmed"; - name = "\improper Brig Medbay"; - req_access = null; - req_one_access = null; - req_one_access_txt = "20;3" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/medical) -"qwc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"qwe" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/s_bow) -"qwn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"qwp" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" - }, -/turf/open/floor/plating, -/area/almayer/command/cichallway) -"qwq" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"qws" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/alpha) -"qwB" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"qwJ" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"qwN" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"qwZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/lower/repair_bay) -"qxm" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 5"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple, -/area/almayer/medical/containment/cell) -"qxw" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"qxJ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"qxS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) -"qya" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/hallways/hangar) -"qyb" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"qyd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"qyk" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/item/tool/screwdriver, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"qym" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/medical_science) -"qyG" = ( -/obj/structure/sign/safety/hazard{ - desc = "A sign that warns of a hazardous environment nearby"; - name = "\improper Warning: Hazardous Environment" - }, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_p) -"qyI" = ( -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/squads/charlie) -"qyK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"qyM" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"qyS" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"qyX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qzv" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/lower/engine_core) -"qzK" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"qzM" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"qzR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"qzU" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"qAd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"qAf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/hallways/upper/midship_hallway) -"qAl" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32; - pixel_y = 6 - }, -/obj/structure/sign/safety/reduction{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"qAo" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qAp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/squads/alpha) -"qAC" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/circuitboard/apc, -/obj/item/tool/screwdriver, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"qAD" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/briefing) -"qAF" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/effect/landmark/map_item, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/cell_charger, -/obj/item/cell/apc{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"qAH" = ( -/obj/structure/bed/chair/comfy/charlie, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"qAN" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/almayer/red, -/area/almayer/maint/upper/u_a_p) -"qBh" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"qBm" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) -"qBr" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"qBw" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"qBJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"qBK" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qBZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"qCb" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = 30 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"qCc" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"qCg" = ( -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"qCo" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"qCs" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_one_access_txt = "7;23;27" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"qCy" = ( -/obj/effect/landmark/start/captain, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/bridgebunks) -"qCA" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/execution) -"qCG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"qCL" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "containmentlockdown_S"; - name = "\improper Containment Lockdown" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment) -"qCS" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer/red/north, -/area/almayer/maint/upper/u_a_p) -"qDe" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/starboard_garden) -"qDi" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/starboard_missiles) -"qDq" = ( -/obj/effect/landmark/start/marine/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"qDL" = ( -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"qDQ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 2 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"qEh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) -"qEs" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/starboard_atmos) -"qEy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/processing) -"qEB" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"qEO" = ( -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/hallways/lower/port_midship_hallway) -"qEY" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"qFd" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - indestructible = 1; - unacidable = 1; - unslashable = 1 - }, -/obj/structure/transmitter/rotary{ - name = "AI Reception Telephone"; - phone_category = "ARES"; - phone_color = "blue"; - phone_id = "AI Reception" - }, -/turf/open/floor/almayer/no_build/ai_floors, -/area/almayer/command/airoom) -"qFi" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"qFk" = ( -/obj/structure/machinery/cm_vending/gear/vehicle_crew, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/vehiclehangar) -"qFm" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"qFt" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lockerroom) -"qFu" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Cell Privacy Shutters"; - name = "\improper Cell Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/cells) -"qFE" = ( -/obj/structure/machinery/brig_cell/cell_5{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"qFM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_three) -"qFP" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"qFX" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/mp_bunks) -"qGb" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"qGi" = ( -/obj/structure/closet/secure_closet/fridge/fish/stock, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"qGv" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/living/officer_study) -"qGB" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/shipboard/brig/cic_hallway) -"qGC" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"qGE" = ( -/obj/structure/bed/chair/comfy/delta, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"qGG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"qHh" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"qHk" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"qHm" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) -"qHp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qHw" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 5"; - pixel_x = -24 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) -"qHT" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"qIf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"qIu" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"qIv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"qIA" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"qIJ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/lights/tubes{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/ash{ - pixel_y = 19 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"qJj" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 - }, -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"qJH" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"qJI" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qJR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"qJU" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/mgoggles/prescription, -/obj/item/clothing/glasses/mbcg, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"qJZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"qKb" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/tubes{ - pixel_x = -8 - }, -/obj/item/storage/box/lights/tubes{ - pixel_x = 5 - }, -/obj/item/storage/box/lights/tubes{ - pixel_y = 10 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"qKv" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/obj/structure/machinery/flasher{ - id = "briefing_flash"; - range = 12 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/uscm/directional/west, -/area/almayer/living/briefing) -"qKR" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 32 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"qLh" = ( -/obj/structure/pipes/binary/pump/high_power/on{ - dir = 1 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"qLs" = ( -/obj/effect/landmark/start/maint, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"qLB" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"qLH" = ( -/obj/structure/bed/chair{ - buckling_y = 6; - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"qLR" = ( -/obj/item/tool/screwdriver{ - layer = 2.9; - pixel_x = -21; - pixel_y = -14 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"qLY" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"qMh" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown" - }, -/obj/effect/step_trigger/ares_alert/access_control, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet{ - density = 0; - desc = "An outlet for the pneumatic delivery system."; - icon_state = "delivery_outlet"; - name = "returns outlet"; - pixel_x = -7; - pixel_y = 28; - range = 0 - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"qMA" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"qMD" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/flashbangs, -/obj/item/storage/box/flashbangs{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/storage/box/flashbangs{ - pixel_x = -8; - pixel_y = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"qMG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"qML" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"qMR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"qMU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"qMX" = ( -/obj/structure/filingcabinet, -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/squads/req) -"qMZ" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 8; - has_wall_divider = 1; - id = "Containment Cell 3"; - layer = 3.2; - name = "Cell 3 Control"; - pixel_x = 16; - pixel_y = -16 - }, -/obj/structure/machinery/door_display/research_cell{ - dir = 8; - has_wall_divider = 1; - id = "Containment Cell 2"; - layer = 3.2; - name = "Cell 2 Control"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 2"; - name = "Containment Lockdown"; - pixel_x = 13; - pixel_y = 7; - req_one_access_txt = "19;28" - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 3"; - name = "Containment Lockdown"; - pixel_x = 13; - pixel_y = -6; - req_one_access_txt = "19;28" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"qNj" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"qNk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"qNo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/window/westright{ - dir = 4; - req_access_txt = "28" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "researchlockdownext_windoor"; - name = "\improper Research Windoor Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"qNr" = ( -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"qNC" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"qNI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"qNJ" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/cryo_cells) -"qNR" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"qNS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 7 - }, -/obj/item/storage/box/cups{ - pixel_x = 3 - }, -/obj/item/storage/box/donkpockets{ - pixel_y = 19 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"qNT" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - SecVault"; - dir = 8 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"qNW" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"qNY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"qOp" = ( -/obj/structure/disposalpipe/junction, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/gym) -"qOr" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) -"qOv" = ( -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"qOA" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"qOE" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"qON" = ( -/obj/structure/closet{ - name = "backpack storage" - }, -/obj/item/storage/backpack/marine/grenadepack, -/obj/item/storage/backpack/marine/grenadepack, -/obj/item/storage/backpack/marine/mortarpack, -/obj/item/storage/backpack/marine/mortarpack, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"qPh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/squads/delta) -"qPi" = ( -/obj/structure/sign/safety/security{ - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qPk" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qPD" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"qPL" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_p) -"qPM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"qPN" = ( -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"qPU" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"qPZ" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"qQd" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"qQs" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/port_emb) -"qQu" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"qQx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/hvac_old{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"qQy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"qQC" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"qQG" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/item/storage/pill_bottle/tramadol/skillless{ - layer = 2.9; - pill_type_to_fill = null; - pixel_y = 14 - }, -/obj/structure/machinery/door_control{ - id = "Delta_1"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"qQI" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"qQM" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"qQP" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/almayer/red/southwest, -/area/almayer/maint/upper/u_a_p) -"qQQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/port) -"qQR" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 10 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"qQS" = ( -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"qRa" = ( -/obj/structure/window/reinforced/ultra{ - pixel_y = -12 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/brig/execution) -"qRb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qRo" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) -"qRu" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"qRx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/maint/upper/mess) -"qRH" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/shipboard/brig/medical) -"qRJ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"qRV" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light/small, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"qSm" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_point_defense) -"qSD" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"qSH" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"qSK" = ( -/obj/item/stack/sheet/metal{ - layer = 2.9; - pixel_x = 4; - pixel_y = 21 - }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/plating, -/area/almayer/living/port_emb) -"qTd" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"qTS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"qTY" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"qUd" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"qUx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"qUA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"qUB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/syringe_case{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/syringe_case, -/obj/item/storage/syringe_case{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"qUM" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"qUO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"qUY" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Crew Chief's Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"qVj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"qVr" = ( -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"qVx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"qVY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"qWh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"qWo" = ( -/obj/structure/pipes/valve/digital/open{ - dir = 4 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"qWD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"qWI" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"qWL" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/item/frame/rack, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"qWN" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"qWR" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 4 - }, -/area/almayer/medical/containment/cell/cl) -"qXi" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"qXs" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/maint/upper/mess) -"qXt" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"qXD" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"qXE" = ( -/obj/structure/machinery/brig_cell/perma_1{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"qXY" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"qYa" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/squads/bravo) -"qYh" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/squads/alpha) -"qYn" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/upper_medical) -"qYx" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"qYC" = ( -/obj/structure/disposalpipe/down/almayer{ - dir = 4; - id = "almayerlink_OT_req" - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"qYP" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters/clippers, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 - }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/shipboard/brig/cells) -"qYV" = ( -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"qYZ" = ( -/obj/structure/sign/safety/security{ - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"qZr" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"qZE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"qZK" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"qZV" = ( -/obj/structure/machinery/door_control{ - id = "containmentlockdown_S"; - name = "Containment Lockdown"; - pixel_y = 28; - req_one_access_txt = "28" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) -"qZW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) -"raa" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"rab" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"rad" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/packageWrap, -/turf/open/floor/almayer/green/northwest, -/area/almayer/squads/req) -"rae" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"raf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"rai" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/blend, -/turf/closed/wall/almayer{ - opacity = 0 - }, -/area/almayer/squads/req) -"rax" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"raF" = ( -/obj/structure/machinery/computer/telecomms/monitor, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"raJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) -"raL" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"raZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"rbf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"rbg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"rbm" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/squads/charlie_delta_shared) -"rbp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"rbt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/delta) -"rbw" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"rby" = ( -/obj/structure/machinery/door_control{ - id = "ARES Mainframe Left"; - name = "ARES Mainframe Lockdown"; - pixel_x = 24; - pixel_y = -24; - req_one_access_txt = "200;91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"rbD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"rbF" = ( -/obj/effect/landmark/late_join, -/obj/effect/landmark/ert_spawns/distress_cryo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"rcb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"rce" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"rcG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"rcR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"rdb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/chief_mp_office) -"rde" = ( -/obj/structure/sign/prop1, -/turf/closed/wall/almayer, -/area/almayer/living/grunt_rnr) -"rdg" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"rdh" = ( -/obj/structure/machinery/light{ - dir = 1; - pixel_x = 16 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"rdi" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"rdo" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"rds" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/squads/alpha) -"rdt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/corner4, -/area/almayer/medical/containment/cell) -"rdA" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17; - pixel_y = -34 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"rdG" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"rdK" = ( -/obj/structure/machinery/vending/sea, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/sea_office) -"rdN" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"rdZ" = ( -/turf/open/floor/plating, -/area/almayer/command/corporateliaison) -"rer" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"reu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"reD" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"reJ" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) -"rfb" = ( -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 8; - icon_state = "containment_window_h" - }, -/area/almayer/medical/containment/cell/cl) -"rfm" = ( -/turf/open/floor/almayer_hull/outerhull_dir/northeast, -/area/space) -"rfu" = ( -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering) -"rfx" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"rfB" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"rfH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"rfU" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"rgr" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/item/storage/firstaid/fire, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"rgt" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/port_umbilical) -"rgy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"rgL" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_p) -"rgO" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"rgY" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"rhb" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"rhd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"rhm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"rhv" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/offices) -"rhE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/starboard_umbilical) -"rhQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"rhS" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north2) -"rij" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/flight_recorder{ - pixel_x = 9 - }, -/obj/item/tool/weldingtool{ - pixel_x = -7; - pixel_y = 3 - }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"riq" = ( -/obj/structure/sign/safety/north{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cichallway) -"rix" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"riB" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"riD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"riG" = ( -/obj/structure/machinery/door/window/westleft{ - dir = 2 - }, -/obj/structure/machinery/shower, -/obj/item/tool/soap, -/turf/open/floor/almayer/sterile, -/area/almayer/medical/upper_medical) -"riH" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/upper_medical) -"riK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/chief_mp_office) -"rjj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/port_atmos) -"rjl" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = null; - req_one_access_txt = "19;34;30" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"rjs" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/atmospipes, -/obj/item/circuitboard/airalarm, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"rjC" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/telecomms) -"rjD" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"rke" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/ares_console{ - pixel_x = 9 - }, -/obj/structure/machinery/computer/view_objectives{ - pixel_x = -9 - }, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"rkj" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"rkz" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"rkI" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"rkM" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"rkQ" = ( -/obj/structure/machinery/telecomms/receiver/preset, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"rkV" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/warden_office) -"rlp" = ( -/turf/open/floor/almayer/plating_striped/north, -/area/almayer/squads/req) -"rlS" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"rmn" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/disposal/delivery{ - density = 0; - desc = "A pneumatic delivery unit."; - icon_state = "delivery_engi"; - name = "Security Vault"; - pixel_x = -24; - pixel_y = 28 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = -32; - pixel_y = 40; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"rmr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/lower/port_midship_hallway) -"rmv" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"rmz" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = 14; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"rmC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"rmG" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"rmL" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"rmS" = ( -/obj/structure/girder, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"rna" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"rng" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 3; - pixel_y = 27 - }, -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"rno" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/paper_bin/wy, -/obj/structure/machinery/computer/cameras/containment{ - dir = 4; - layer = 2.981; - name = "Research Cameras"; - pixel_y = 16 - }, -/obj/item/clothing/accessory/stethoscope, -/obj/structure/closet/secure_closet/professor_dummy{ - pixel_x = -32 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/upper_medical) -"rnv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"rnz" = ( -/obj/structure/machinery/power/apc/almayer/hardened/south, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"rnD" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/uscm_mre, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/grape{ - pixel_x = -7; - pixel_y = 10 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"rnH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/computer/crew/alt{ - dir = 8; - pixel_x = 17 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"rob" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"rop" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "35" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) -"roL" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/lighter, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"roU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"roX" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"rpe" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"rpf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"rpp" = ( -/obj/effect/landmark/start/executive, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/bridgebunks) -"rpq" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"rpu" = ( -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_medbay) -"rpB" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = 26 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"rpO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/ammo_magazine/pistol{ - current_rounds = 0 - }, -/obj/item/weapon/gun/pistol/m4a3{ - current_mag = null - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/living/offices/flight) -"rqe" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/crowbar, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/storage/bible, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"rqg" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/medical/lockerroom) -"rqj" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"rqq" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"rqv" = ( -/obj/structure/sign/poster/safety, -/turf/closed/wall/almayer, -/area/almayer/maint/lower/s_bow) -"rqz" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 - }, -/obj/structure/sign/safety/water{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"rqD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"rqJ" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/briefing) -"rqK" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"rqO" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"rqQ" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "vehicle_elevator_railing_aux" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"rrb" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"rrn" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"rrp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) -"rrr" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"rrz" = ( -/obj/structure/sign/safety/four{ - pixel_x = -17 - }, -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 4"; - name = "Cell 4" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"rrK" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"rrU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rrV" = ( -/obj/structure/machinery/computer/supplycomp, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"rsx" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/machinery/door_control{ - id = "Alpha_1"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"rsy" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"rsI" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge3" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 24; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) -"rsK" = ( -/obj/structure/sign/safety/hvac_old, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"rsM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"rsO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"rsP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"rsT" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/lower/workshop/hangar) -"rsV" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"rsW" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/command/cic) -"rsZ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/offices) -"rtd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"rth" = ( -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"rti" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"rtm" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"rtx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"rtz" = ( -/obj/structure/machinery/door_control{ - id = "InnerShutter"; - name = "Inner Shutter"; - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/toy/deck{ - pixel_x = -9 - }, -/obj/item/ashtray/plastic, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/intercom{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"rtA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/pen{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -5; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"rtD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/securestorage) -"rtR" = ( -/obj/structure/machinery/cm_vending/clothing/synth, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"rtT" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop) -"rtV" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"rtY" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/bronze, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 6; - pixel_y = 13 - }, -/turf/open/floor/almayer, -/area/almayer/living/pilotbunks) -"rui" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"ruw" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) -"ruA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"ruH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4; - pixel_y = 5 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"ruJ" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ruL" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/turf/open/floor/plating, -/area/almayer/engineering/lower/workshop/hangar) -"ruN" = ( -/obj/structure/surface/rack, -/obj/item/stack/cable_coil, -/obj/item/attachable/flashlight/grip, -/obj/item/ammo_box/magazine/l42a{ - pixel_y = 14 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"rvl" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "or4privacyshutter"; - name = "Privacy Shutters"; - pixel_y = -25 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_four) -"rvr" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"rvu" = ( -/obj/item/ammo_box/magazine/misc/mre, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"rvA" = ( -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"rvB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/morgue) -"rvR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"rvS" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"rwe" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"rwh" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "CIC Lockdown"; - name = "CIC Lockdown"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "1" - }, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - pixel_x = -7; - pixel_y = 2; - req_access_txt = "1" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4; - icon_state = "exposed01-supply" - }, -/obj/structure/machinery/door_control{ - id = "bot_armory"; - name = "Armory Lockdown"; - pixel_x = -7; - pixel_y = -5; - req_one_access_txt = "1;4" - }, -/obj/structure/transmitter/rotary/no_dnd{ - name = "Combat Information Center Telephone"; - phone_category = "Command"; - phone_id = "Combat Information Center"; - pixel_x = 5; - pixel_y = 4 - }, -/obj/structure/machinery/door/window/westright{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"rwq" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 7; - pixel_y = -26 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"rwu" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/computer/squad_changer{ - dir = 8; - layer = 2.99; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"rwB" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"rwC" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"rwF" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"rwY" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "pobunk2"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/living/pilotbunks) -"rwZ" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_f_p) -"rxa" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"rxf" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/largecrate/random, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"rxk" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_four) -"rxC" = ( -/obj/structure/closet/basketball, -/turf/open/floor/almayer/plate, -/area/almayer/living/basketball) -"rxD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Hydroponics Garden" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"rxK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"rxQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"rxS" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"ryh" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"ryn" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/command/securestorage) -"ryq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"ryX" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/grunt_rnr) -"ryY" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/disposalpipe/down/almayer{ - dir = 1; - id = "almayerlink" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"rza" = ( -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/port) -"rze" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"rzq" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/almayer/uscm/directional/southwest, -/area/almayer/living/briefing) -"rzy" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"rzD" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/squads/alpha) -"rAg" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) -"rAh" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"rAk" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/pilotbunks) -"rAn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"rAo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"rAq" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/bed/chair, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"rAw" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 8 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = -7 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"rAA" = ( -/obj/structure/machinery/cryopod, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"rAC" = ( -/obj/docking_port/stationary/emergency_response/external/port5, -/turf/open/space/basic, -/area/space) -"rAK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rAS" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"rAY" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"rBb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"rBj" = ( -/obj/structure/machinery/processor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"rBl" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"rBC" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Interrogation Observation" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/interrogation) -"rBF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"rBY" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/item/tool/soap, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"rBZ" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_lobby) -"rCe" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"rCG" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/hallways/lower/port_umbilical) -"rCO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"rCZ" = ( -/obj/docking_port/stationary/escape_pod/east, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_s) -"rDb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"rDf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"rDH" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"rDO" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"rDR" = ( -/obj/structure/machinery/vending/coffee, -/obj/item/toy/bikehorn/rubberducky{ - desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; - name = "Quackers"; - pixel_x = 5; - pixel_y = 17 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"rDV" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"rDY" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"rEf" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"rEg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) -"rEj" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/clipboard, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"rEk" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rEm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"rEI" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"rEK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"rEP" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade/three, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"rER" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/door, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"rEU" = ( -/turf/open/floor/almayer/mono, -/area/almayer/engineering/port_atmos) -"rFe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/squads/charlie) -"rFh" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/starboard_hallway) -"rFj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/port_aft_hallway) -"rFu" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/shipboard/brig/cic_hallway) -"rFY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/lower/port_midship_hallway) -"rGb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop) -"rGf" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge4" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"rGr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"rGt" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/lungs/prosthetic, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"rGH" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"rGQ" = ( -/obj/item/prop/helmetgarb/gunoil{ - layer = 4.2; - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/prop/helmetgarb/gunoil{ - layer = 4.2; - pixel_x = -10; - pixel_y = 10 - }, -/obj/item/prop/helmetgarb/gunoil{ - layer = 4.2; - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/weapon/broken_bottle{ - layer = 4.51; - pixel_x = 9; - pixel_y = 1 - }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"rGS" = ( -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"rGU" = ( -/obj/structure/machinery/computer/skills{ - req_one_access_txt = "200" - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"rHb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"rHc" = ( -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"rHq" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"rHB" = ( -/obj/item/ammo_box/magazine/misc/mre/empty{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/cans/aspen{ - pixel_x = 11; - pixel_y = -3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) -"rHE" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"rHH" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"rHJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"rHS" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "7;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/weapon_room) -"rHX" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - pixel_x = -2; - pixel_y = 7 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"rIn" = ( -/obj/structure/machinery/sleep_console{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"rIq" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"rIw" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"rIE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"rIH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"rII" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"rIJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"rIX" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"rJe" = ( -/obj/effect/decal/cleanable/ash, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -13; - pixel_y = 8 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/hallways/hangar) -"rJg" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/mp_bunks) -"rJk" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"rJo" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/largecrate/random/mini/wooden{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"rJp" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/starboard_hallway) -"rJw" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"rJD" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/machinery/cm_vending/own_points/experimental_tools, -/turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"rJK" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"rJM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/upper/midship_hallway) -"rJU" = ( -/obj/item/trash/chips{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/trash/cheesie, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"rJW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"rJX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"rKa" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"rKD" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/req) -"rKJ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Warden's Office" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"rKM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) -"rKO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"rLp" = ( -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 20 - }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"rLs" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"rLv" = ( -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 4; - icon_state = "containment_window_h" - }, -/area/almayer/medical/containment/cell/cl) -"rLJ" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"rLQ" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Oxygen Supply Console" - }, -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"rLW" = ( -/turf/open/floor/almayer/silver/northeast, -/area/almayer/living/cryo_cells) -"rLZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"rMc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"rMn" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"rMC" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"rME" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/hallways/hangar) -"rMH" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"rMT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"rMU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"rNa" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin/uscm{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/item/tool/pen/clicky{ - pixel_x = -13; - pixel_y = -1 - }, -/obj/item/tool/pen/clicky{ - pixel_x = -13; - pixel_y = 5 - }, -/obj/structure/machinery/door_control{ - id = "CO-Office"; - name = "Door Control"; - normaldoorcontrol = 1; - pixel_y = 7; - req_access_txt = "31" - }, -/obj/item/ashtray/bronze{ - pixel_x = 12; - pixel_y = 1 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"rNe" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"rNq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"rNt" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/living/port_emb) -"rNy" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"rNB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_one) -"rNG" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/living/cryo_cells) -"rNL" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"rNR" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) -"rNS" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/almayer/uscm/directional/northwest, -/area/almayer/living/briefing) -"rNU" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" - }, -/obj/structure/machinery/door_control{ - id = "medicalemergency"; - name = "Medbay Lockdown"; - pixel_y = -23; - req_one_access_txt = "2;3;12;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"rOi" = ( -/obj/structure/machinery/door_control{ - access_modified = 1; - id = "OTStore"; - name = "Shutters"; - pixel_y = 24; - req_one_access_txt = "35" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"rOj" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"rOy" = ( -/obj/structure/machinery/prop/almayer/computer{ - pixel_y = 20 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"rOD" = ( -/obj/structure/dropship_equipment/fuel/fuel_enhancer, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"rOI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"rOR" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 1"; - name = "Containment Lockdown"; - pixel_x = -7; - pixel_y = 1; - req_one_access_txt = "19;28" - }, -/obj/structure/machinery/door_display/research_cell{ - id = "Containment Cell 1"; - name = "Cell 1 Control"; - pixel_x = 5; - pixel_y = 2 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"rOW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"rOZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"rPd" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Conference Room" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"rPm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/squads/bravo) -"rPo" = ( -/obj/vehicle/powerloader, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/shipboard/weapon_room) -"rPt" = ( -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"rPu" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_s) -"rPy" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"rPz" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/clothing/mask/rebreather/scarf, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"rPC" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"rPD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"rPR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -16 - }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/living/briefing) -"rPU" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"rQc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"rQe" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"rQt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"rQy" = ( -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/hydroponics) -"rQD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"rQO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"rQZ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/squads/delta) -"rRa" = ( -/obj/structure/machinery/light/containment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) -"rRq" = ( -/turf/closed/wall/almayer, -/area/almayer/lifeboat_pumps/south2) -"rRu" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"rRy" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/upper_medical) -"rRH" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/morgue) -"rRL" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"rRN" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"rRO" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/command/lifeboat) -"rSl" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"rSm" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"rSp" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/command/securestorage) -"rSr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"rSs" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cichallway) -"rSu" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"rSw" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer3" - }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"rSx" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/rods/plasteel{ - amount = 36 - }, -/obj/item/stack/catwalk{ - amount = 60; - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"rSE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"rSG" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"rSH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"rSR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) -"rSZ" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/machinery/door_control{ - id = "Alpha_2"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"rTk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"rTm" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"rTv" = ( -/obj/structure/machinery/cm_vending/clothing/medic/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"rTD" = ( -/obj/structure/machinery/door_control{ - id = "CMO Shutters"; - name = "Office Shutters"; - pixel_y = -20; - req_access_txt = "5" - }, -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/upper_medical) -"rTF" = ( -/obj/structure/machinery/door_control{ - id = "or03"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_three) -"rTH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"rTX" = ( -/obj/structure/sign/safety/security{ - pixel_x = -17; - pixel_y = 6 - }, -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"rUk" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"rUp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"rUq" = ( -/obj/effect/landmark/start/nurse, -/obj/effect/landmark/late_join/nurse, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"rUE" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"rUM" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"rUN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"rUR" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"rUW" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"rUX" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"rVq" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "s_engi" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"rVz" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) -"rVA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/item/frame/fire_alarm, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"rWj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"rWl" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"rWn" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMP Office Shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/chief_mp_office) -"rWp" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Hallway" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"rWr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/l42a, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"rWs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"rWv" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"rWz" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_s) -"rWJ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"rWT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"rXc" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"rXj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"rXm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/offices) -"rXw" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/crowbar, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"rXD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"rXG" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"rXK" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "or3privacyshutter"; - name = "Privacy Shutters"; - pixel_y = -25 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_three) -"rXX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"rYa" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"rYf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_y = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rYh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) -"rYt" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"rYN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer/mono, -/area/almayer/squads/req) -"rZc" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/machinery/cm_vending/gear/staff_officer_armory, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"rZk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagent_analyzer{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"rZK" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock SU-2"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"rZN" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"rZZ" = ( -/obj/structure/sign/poster{ - desc = "It says DRUG."; - icon_state = "poster2"; - pixel_y = 30 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"sab" = ( -/obj/effect/landmark/start/doctor, -/obj/effect/landmark/late_join/doctor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"sao" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"saE" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/condiment/coldsauce, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"saI" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"saU" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"sba" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"sbg" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/hallways/lower/repair_bay) -"sbp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"sbr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/containment) -"sbw" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/maint/hull/lower/l_m_s) -"sbx" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Armourer's Workshop"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_s) -"sbB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil{ - icon_state = "dropship2" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"sbE" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"sbG" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north2) -"sbJ" = ( -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/powered/agent) -"sbN" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"sbP" = ( -/obj/effect/landmark/start/police, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cryo) -"sce" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) -"sco" = ( -/obj/structure/sign/prop1{ - layer = 3.1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"scs" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/starboard_atmos) -"scu" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"scH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"scI" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"scP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"scR" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/gym) -"scX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/toy/deck{ - pixel_x = -9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"sda" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/upper_medical) -"sdc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"sde" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"sdF" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer6" - }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"sdT" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/port) -"sei" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = -17; - pixel_y = -7 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"ser" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 9 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"seE" = ( -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - closeOtherId = "containment_s"; - dir = 8; - name = "\improper Containment Airlock" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"seL" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"seR" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"seS" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/lobby) -"seU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"sfe" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"sfk" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - name = "Autopsy"; - req_access_txt = "25"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"sfA" = ( -/obj/structure/machinery/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"sfD" = ( -/obj/structure/reagent_dispensers/pacidtank{ - anchored = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"sfM" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cichallway) -"sfT" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/port) -"sfV" = ( -/obj/structure/machinery/alarm/almayer, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"sga" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access_txt = "200"; - req_one_access = null - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/backdoor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"sge" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"sgf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate/random/case/double, -/obj/item/cell/crap{ - pixel_y = 14 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"sgi" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/processing) -"sgx" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/squads/delta) -"sgH" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"sgJ" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"sgN" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - closeOtherId = "ciclobby_n"; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"sgU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"shd" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_two) -"she" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"shh" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"shk" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"sht" = ( -/turf/open/floor/almayer, -/area/almayer/living/pilotbunks) -"shS" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/magazine/boots/n117{ - pixel_x = 2; - pixel_y = 5 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"shT" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"sih" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"sij" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"sim" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"sio" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"sit" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"siv" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"siF" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"siH" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"siR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_umbilical) -"sje" = ( -/turf/open/floor/almayer/empty/vehicle_bay, -/area/almayer/hallways/lower/vehiclehangar) -"sjt" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"sjK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) -"sjM" = ( -/obj/effect/landmark/start/reporter, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"sjO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"sjX" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"sjZ" = ( -/obj/item/clothing/mask/rebreather/scarf, -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"skj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"skL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) -"skR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/closet/secure_closet/cmdcabinet{ - desc = "A bulletproof cabinet containing communications equipment."; - name = "communications cabinet"; - pixel_y = 24; - req_access = null; - req_one_access_txt = "207;203" - }, -/obj/item/device/radio, -/obj/item/device/radio/listening_bug/radio_linked/wy, -/obj/item/device/radio/listening_bug/radio_linked/wy{ - pixel_x = 4; - pixel_y = -3 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"skV" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"skW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - density = 0; - pixel_y = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"skX" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"slc" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"slf" = ( -/obj/structure/machinery/brig_cell/cell_6{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"slh" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 5"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"slj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"slo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"slw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"sly" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/living/cryo_cells) -"slH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin{ - pixel_x = -7 - }, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/tool/pen{ - pixel_y = 3 - }, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"slI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha_bravo_shared) -"slM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"slV" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/upper/mess) -"smc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"smj" = ( -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"smq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"smB" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"smD" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/structure/sign/safety/fridge{ - pixel_x = 32 - }, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"smW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"smZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"snb" = ( -/obj/structure/ladder{ - height = 1; - id = "cicladder3" - }, -/turf/open/floor/plating/almayer, -/area/almayer/living/briefing) -"snk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"snl" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"snp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha) -"sns" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/yellow, -/obj/structure/machinery/keycard_auth{ - pixel_x = -8; - pixel_y = 25 - }, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 26 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"snx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"snC" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/almayer/engineering/upper_engineering/port) -"snK" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"soc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/lower/engine_core) -"som" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"sou" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/disposalpipe/up/almayer{ - dir = 8; - id = "almayerlink" - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/port_midship_hallway) -"soA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"soF" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/photo_album{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/folder/black{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/device/camera_film{ - pixel_x = -5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"soG" = ( -/obj/structure/curtain/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"soP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) -"spa" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 1 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"spE" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/aft_hallway) -"spF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"spL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"spO" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"spR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"sqd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"sqf" = ( -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/upper_medical) -"sqg" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/lower) -"sqr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"sqU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "perma_lockdown_1"; - name = "\improper Perma Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"sqY" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/camera, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"srp" = ( -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/chemistry) -"srz" = ( -/obj/structure/filingcabinet, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_y = 14 - }, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"srO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"ssh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"ssn" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"ssB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"ssC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lockerroom) -"ssD" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/research, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"ssE" = ( -/obj/structure/barricade/plasteel/metal, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"ssL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) -"ssS" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/shipboard/brig/cic_hallway) -"ssX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"ssZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"sta" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"stg" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/port_missiles) -"stm" = ( -/obj/structure/closet/secure_closet/fridge/organic/stock, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"stx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"stA" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"stR" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"stS" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/s_stern) -"sud" = ( -/obj/structure/machinery/atm{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"suy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"suD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/starboard) -"suE" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/living/gym) -"suI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"suL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/lifeboat_pumps/south2) -"svf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"svp" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock SU-1"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"svq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"svw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"swm" = ( -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/bridge{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"swv" = ( -/obj/structure/sign/safety/ammunition{ - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"swx" = ( -/obj/effect/projector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"swz" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice13"; - pixel_x = 16; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"swF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/entrance/west, -/area/almayer/medical/containment/cell) -"swI" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/engineer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"swT" = ( -/obj/structure/prop/server_equipment/broken, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"swU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"sxd" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/basketball) -"sxF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_2"; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"sxS" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"syd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) -"syj" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"syB" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"syF" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"syH" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"syO" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"syP" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"syY" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.5; - pixel_x = 5; - pixel_y = 14 - }, -/obj/item/attachable/bayonet{ - pixel_x = -14; - pixel_y = 3 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/auxiliary_officer_office) -"szd" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) -"szf" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/coatrack{ - pixel_x = -5; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"szD" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"szG" = ( -/obj/item/stack/sheet/glass/reinforced{ - amount = 50 - }, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"szI" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"szU" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/numbertwobunks) -"sAg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_y = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"sAl" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sAr" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"sAu" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/living/offices/flight) -"sAD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"sAS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"sAZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"sBe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"sBf" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"sBg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"sBq" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"sBC" = ( -/turf/open/floor/almayer/blue, -/area/almayer/command/cichallway) -"sCe" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"sCf" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"sCC" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"sCW" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/surface/table/almayer, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"sCX" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"sCY" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) -"sDb" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"sDf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_aft_hallway) -"sDo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/bridgebunks) -"sDx" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"sDy" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/starboard_hallway) -"sDB" = ( -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/port_midship_hallway) -"sDC" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"sEq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"sEu" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"sEv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cafeteria_officer) -"sEy" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/farwacube{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/neaeracube{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/stokcube{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/yirencube{ - pixel_x = 4; - pixel_y = -4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"sEC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"sEE" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"sEH" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"sEI" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"sEJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) -"sEK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"sFw" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"sFK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_three) -"sFM" = ( -/obj/effect/spawner/random/tool, -/obj/structure/surface/rack, -/obj/item/cell/high, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"sFO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"sFP" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/obj/structure/sign/safety/chem_lab{ - pixel_x = -17 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/chemistry) -"sFQ" = ( -/obj/structure/sign/poster{ - desc = "It says DRUG."; - icon_state = "poster2"; - pixel_x = -27 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"sFR" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"sFS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "Interrogation Shutters"; - name = "\improper Shutters"; - pixel_x = -6; - pixel_y = -6; - req_access_txt = "3" - }, -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/interrogation) -"sFT" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/starboard_missiles) -"sFU" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"sGh" = ( -/turf/open/floor/almayer/uscm/directional, -/area/almayer/command/lifeboat) -"sGw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_f_s) -"sGG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/case/small{ - pixel_y = 5 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"sGK" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"sGM" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"sGU" = ( -/obj/structure/mirror, -/turf/closed/wall/almayer, -/area/almayer/living/gym) -"sHe" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"sHf" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Alpha_1"; - name = "\improper Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"sHl" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 7; - pixel_y = 29 - }, -/obj/structure/filingcabinet, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"sHm" = ( -/obj/structure/disposalpipe/up/almayer{ - id = "almayerlink_OT_req" - }, -/turf/closed/wall/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"sHo" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 8; - name = "Mixed Air Injector" - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"sHp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/case/small, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"sHr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/ladder/fragile_almayer{ - height = 1; - id = "kitchen" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 24 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"sHy" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"sHA" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Interrogation Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Interrogation" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/interrogation) -"sHL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"sIb" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"sIq" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"sIr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"sIt" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"sIu" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"sIH" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"sIK" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "Research Armory"; - name = "Research Armory"; - pixel_x = -27; - req_one_access_txt = "4;28" - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/upper_medical) -"sIX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"sJa" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = -26 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"sJb" = ( -/obj/structure/barricade/handrail, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"sJh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/squads/bravo) -"sJG" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"sJQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"sJT" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south2) -"sKd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"sKs" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/plating, -/area/almayer/living/port_emb) -"sKu" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"sKC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie_delta_shared) -"sKI" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha_bravo_shared) -"sKY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"sLc" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"sLk" = ( -/obj/structure/ladder{ - height = 2; - id = "cicladder4" - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) -"sLo" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"sLA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"sLH" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = -15 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"sLJ" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"sLL" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"sLS" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"sMd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/fridge/organic, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"sMo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/toy/handcard/uno_reverse_red{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/toy/deck/uno, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"sMM" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"sMQ" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/living/officer_study) -"sNd" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"sNn" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"sNq" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"sNr" = ( -/obj/structure/machinery/botany/editor{ - density = 0; - pixel_x = 5; - pixel_y = 16 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 5; - pixel_y = 24 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"sNt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"sNw" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/fore_hallway) -"sNE" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/blue/north, -/area/almayer/command/cichallway) -"sNF" = ( -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"sNO" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 2 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"sNR" = ( -/turf/closed/wall/almayer/research/containment/wall/corner, -/area/almayer/medical/containment/cell/cl) -"sNU" = ( -/turf/open/floor/almayer/uscm/directional/north, -/area/almayer/living/briefing) -"sOh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"sOm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"sOs" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"sOv" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/machinery/door_control/cl/quarter/windows{ - pixel_x = 11; - pixel_y = 37 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"sOy" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"sOA" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"sOB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"sOD" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"sOI" = ( -/obj/structure/machinery/recharger, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"sOK" = ( -/obj/structure/disposalpipe/down/almayer{ - dir = 2; - id = "ares_vault_out"; - name = "wycomms" - }, -/turf/closed/wall/almayer/outer, -/area/almayer/command/airoom) -"sOR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"sPj" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/processing) -"sPs" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/aft_hallway) -"sPA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/iv_drip, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"sPC" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build/ai_plates, -/area/almayer/command/airoom) -"sPF" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"sPO" = ( -/obj/structure/machinery/vending/snack, -/obj/item/clothing/head/cmcap/boonie/tan{ - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"sPR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering) -"sPW" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"sPY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"sQd" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cichallway) -"sQg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) -"sQp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"sQs" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link/green, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"sQA" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_p) -"sQL" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/effect/landmark/yautja_teleport, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"sRb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"sRg" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 - }, -/obj/structure/machinery/meter, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"sRj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastleft{ - req_access = list(19) - }, -/obj/structure/machinery/door/window/westright, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/computerlab) -"sRA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"sRR" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"sSm" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"sSF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - pixel_y = 29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"sSH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4 - }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -4 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"sSI" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 2; - name = "Morgue Waiting Room"; - req_one_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"sTm" = ( -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"sTw" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"sTy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"sTB" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Interior"; - name = "\improper ARES Inner Chamber Shutters"; - plane = -7 - }, -/obj/effect/step_trigger/ares_alert/core, -/obj/structure/sign/safety/laser{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 6 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"sTD" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"sTU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"sTZ" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/armory) -"sUk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"sUr" = ( -/obj/structure/bed, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"sUs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"sUz" = ( -/turf/open/floor/almayer/red, -/area/almayer/living/cryo_cells) -"sUD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "southcheckpoint"; - name = "South Checkpoint Shutters"; - req_one_access_txt = "3;12;19" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"sUF" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"sUK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-y" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"sUN" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"sUS" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"sUV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"sUW" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"sVd" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"sVh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"sVk" = ( -/turf/open/floor/almayer/blue, -/area/almayer/living/pilotbunks) -"sVq" = ( -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/mp_bunks) -"sVD" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"sVK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/living/offices) -"sVQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"sVV" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/starboard) -"sWh" = ( -/obj/structure/machinery/line_nexter/med{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"sWq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"sWr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"sWw" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"sWD" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"sWE" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"sWG" = ( -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"sXq" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"sXw" = ( -/obj/effect/landmark/start/marine/engineer/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"sXD" = ( -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_lobby) -"sXG" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -25 - }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"sXI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"sYa" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/starboard_atmos) -"sYk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"sYt" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"sYB" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sYK" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"sYQ" = ( -/obj/structure/pipes/vents/pump, -/obj/item/tool/soap, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/cells) -"sYR" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge1" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 24; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) -"sZc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"sZw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"sZS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19; - pixel_y = 6 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"sZY" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"taf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"tan" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"tat" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"taw" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_a_s) -"tax" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/structure/largecrate/random/mini/wooden{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/uscm_mre, -/obj/item/storage/box/uscm_mre, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"taI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"taM" = ( -/turf/open/floor/almayer_hull/outerhull_dir/north, -/area/space) -"taN" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"tba" = ( -/obj/structure/machinery/computer/cameras/almayer_network, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"tbs" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"tbM" = ( -/obj/structure/machinery/line_nexter{ - id = "line2"; - pixel_x = -2 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"tcd" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio{ - pixel_x = -6; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tcn" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"tcv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"tcG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"tcK" = ( -/obj/structure/sign/safety/fibre_optics{ - pixel_y = 32 - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"tcM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"tcO" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_p) -"tcS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"tdi" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tdm" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"tdn" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/upper_medical) -"tdq" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/navigation) -"tdu" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"tdx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"tdN" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_p) -"tdT" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"tdX" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"tea" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"tee" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"ter" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"tey" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_x = 3; - pixel_y = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"tez" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer, -/area/almayer/living/cryo_cells) -"teD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/case/small{ - pixel_y = 5 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"teE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"teS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/command/cichallway) -"teW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "19;29" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/sea_office) -"tfg" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"tfP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"tfQ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"tfR" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 28 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"tgc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/morgue) -"tgm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"tgo" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"tgz" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"tgB" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"tgE" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"tgJ" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"tgP" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"thb" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"the" = ( -/obj/effect/step_trigger/ares_alert/mainframe, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Mainframe Left"; - name = "\improper ARES Mainframe Shutters"; - plane = -7 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"thi" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"thk" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"thq" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"thH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_x = 2; - pixel_y = 5 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"thL" = ( -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"thO" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"thW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -15 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/port) -"tid" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"tig" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 14; - pixel_y = 20 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha) -"tih" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"tiq" = ( -/obj/structure/bed/chair/comfy/ares{ - dir = 1 - }, -/obj/structure/pipes/vents/pump/no_boom/gas{ - vent_tag = "Core Chamber" - }, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"tiX" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"tjb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/command/cichallway) -"tjw" = ( -/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer, -/area/almayer/living/tankerbunks) -"tkb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) -"tkd" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 - }, -/obj/structure/sign/safety/south{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"tkm" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/briefing) -"tkq" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/weapon_room) -"tkA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"tkB" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/securestorage) -"tkO" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars, -/obj/item/device/whistle{ - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"tle" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/knife, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = 7 - }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"tlk" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/general_equipment) -"tlt" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/lower/port_midship_hallway) -"tlw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"tlC" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/port_atmos) -"tlY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"tml" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tmm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"tmp" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - req_access = list(1) - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/commandbunks) -"tmB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"tmD" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/offices/flight) -"tmE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"tmQ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"tmX" = ( -/obj/effect/landmark/start/professor, -/obj/effect/landmark/late_join/cmo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"tnk" = ( -/obj/structure/surface/rack, -/obj/item/device/taperecorder, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"tnm" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"tnn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/weapon_room) -"tnp" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"tnr" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"tnD" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"tnH" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"tnP" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - name = "\improper Passenger Cryogenics Bay" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_p) -"toa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"tob" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"toe" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/living/briefing) -"tof" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"toj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm/brig, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/brig/processing) -"top" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"toq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"tor" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ - dir = 1; - vent_tag = "Comms" - }, -/turf/open/floor/almayer/aicore/no_build/ai_plates, -/area/almayer/command/airoom) -"tov" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"toy" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"toA" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/shipboard/brig/medical) -"tpd" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"tpm" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"tpn" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/evidence_storage) -"tpu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/starboard) -"tpR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tqf" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"tqm" = ( -/obj/structure/closet/basketball, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/basketball) -"tqu" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "ARES ReceptStairs1"; - name = "ARES Reception Shutters"; - pixel_y = -24; - req_one_access_txt = "91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"trb" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/lifeboat_pumps/south1) -"trg" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"trj" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"trl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"trz" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"trU" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen/blue/clicky{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/tool/pen/red/clicky{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/tool/pen/clicky{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/paper_bin/wy{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"trX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/living/offices/flight) -"tsa" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/knife/butcher, -/obj/item/clothing/suit/chef/classic, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"tsf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie_delta_shared) -"tsn" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"tsr" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/upper/mess) -"tss" = ( -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) -"tsE" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"tsQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"tsT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/obj/item/reagent_container/food/snacks/grilledcheese{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/prop/magazine/boots/n055{ - pixel_x = -9; - pixel_y = 5 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/living/offices/flight) -"tsW" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"tsX" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/lobby) -"tsY" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/whistle{ - pixel_y = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"ttc" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"tte" = ( -/obj/structure/pipes/vents/pump/no_boom{ - welded = 1 - }, -/turf/open/floor/plating, -/area/almayer/powered/agent) -"tti" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/delta) -"ttk" = ( -/obj/structure/machinery/telecomms/server/presets/command, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"ttn" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/perma) -"ttB" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"ttC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) -"ttS" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"tue" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -8; - pixel_y = 3 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/shipboard/brig/cic_hallway) -"tuh" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"tuA" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/port_missiles) -"tuR" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES ReceptStairs2"; - name = "\improper ARES Reception Stairway Shutters"; - plane = -7 - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"tuX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"tva" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-6"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"tvl" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tvm" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"tvt" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_f_s) -"tvv" = ( -/turf/open/floor/almayer/blue, -/area/almayer/squads/charlie_delta_shared) -"tvA" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"tvF" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"tvL" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/red, -/area/almayer/living/cryo_cells) -"tvO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"twp" = ( -/obj/structure/ladder{ - height = 1; - id = "AftStarboardMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/l_a_s) -"twq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"tww" = ( -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) -"twz" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"twJ" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/port) -"twQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"twS" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_umbilical) -"twW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/item/tool/warning_cone{ - pixel_x = -21; - pixel_y = 3 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"txf" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"txl" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"txp" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"txy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"tya" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"tyb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"tym" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"typ" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/chemistry) -"tyx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldcorner/north, -/area/almayer/squads/charlie) -"tyG" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/offices) -"tyH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"tyR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/port_fore_hallway) -"tyX" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"tzd" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/processing) -"tzu" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"tzw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"tzz" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/port) -"tzK" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"tzN" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = 9 - }, -/obj/item/tool/kitchen/tray{ - pixel_y = 12 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"tzT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_one) -"tzZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) -"tAa" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"tAb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"tAm" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Officer's Bunk" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"tAr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"tAJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 8 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/processing) -"tAM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/emerald, -/area/almayer/living/port_emb) -"tAW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tBb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"tBc" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "tcomms" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"tBd" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"tBe" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"tBq" = ( -/obj/item/tool/crowbar, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"tBr" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"tBL" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/living/briefing) -"tCr" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/lower/engine_core) -"tCs" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/chemistry) -"tCu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"tCz" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"tCA" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"tCK" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"tCP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/starboard_hallway) -"tCQ" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) -"tDi" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"tDy" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"tDM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"tEc" = ( -/obj/item/trash/c_tube{ - pixel_x = 16; - pixel_y = 7 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"tEh" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"tEn" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 6 - }, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"tEr" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/clipboard{ - pixel_x = 12 - }, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/structure/sign/ROcreed{ - pixel_y = 30 - }, -/obj/item/device/flashlight/lamp{ - pixel_y = -11; - pixel_x = 7 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"tED" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_missiles) -"tEF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"tEI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"tEJ" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/living/cryo_cells) -"tEL" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tEO" = ( -/obj/effect/landmark/start/marine/medic/charlie, -/obj/effect/landmark/late_join/charlie, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"tES" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_one) -"tEY" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Field Surgery Equipment"; - req_access_txt = "20"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"tFc" = ( -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"tFy" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/normandy{ - layer = 3.5 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"tFz" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"tFD" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_y = -32 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = -32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"tGi" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"tGp" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/medic, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"tGq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - closeOtherId = "astroladder_s"; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"tGH" = ( -/obj/structure/sign/safety/restrictedarea, -/obj/structure/sign/safety/security{ - pixel_x = 15 - }, -/turf/closed/wall/almayer, -/area/almayer/shipboard/panic) -"tGI" = ( -/obj/structure/prop/almayer/cannon_cable_connector, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"tGJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - name = "\improper Engineering Reception" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"tGT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/poster/art{ - pixel_y = 32 - }, -/obj/structure/machinery/photocopier/wyphotocopier, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"tHk" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"tHl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/hydroponics) -"tHp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) -"tHE" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"tHG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"tHI" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"tHL" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"tHQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"tHS" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/cells) -"tHX" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/gear/commanding_officer, -/turf/open/floor/almayer/cargo, -/area/almayer/living/commandbunks) -"tIj" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"tIs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"tIv" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"tIC" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"tIK" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 4 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 2 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"tIN" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"tIR" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"tIS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"tIW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_p) -"tIY" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/squads/alpha_bravo_shared) -"tIZ" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"tJj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_one) -"tJq" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"tJs" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"tJw" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"tJz" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"tJE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cichallway) -"tJL" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"tJO" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"tJR" = ( -/obj/structure/machinery/vending/cigarette, -/obj/structure/sign/safety/medical{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"tJY" = ( -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"tKi" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"tKu" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"tKW" = ( -/obj/structure/machinery/telecomms/bus/preset_three, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"tKX" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"tLd" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 4"; - layer = 2.1; - name = "Mounted Flash"; - pixel_x = -15; - pixel_y = 30 - }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell/cl) -"tLr" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"tLv" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"tLI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"tLK" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"tLT" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"tLX" = ( -/obj/structure/machinery/ares/processor, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"tMd" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock PU-2"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"tMk" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"tMq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"tMr" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock PU-1"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"tMv" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - id = "engidorm"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) -"tMw" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"tMz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = -11; - pixel_y = 16 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = 4; - pixel_y = 16 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/medical_science) -"tMA" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_y = 11 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"tMZ" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/starboard_atmos) -"tNk" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tNp" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_2"; - name = "range shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"tNA" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"tNJ" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"tNQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"tNR" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha) -"tNS" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/command/computerlab) -"tOh" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"tOm" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"tOw" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering) -"tOD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/basketball) -"tOF" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"tON" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"tOS" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"tOT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"tOV" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"tOZ" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/plasticflaps, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_a_p) -"tPc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"tPs" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"tPI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"tPK" = ( -/obj/structure/machinery/vending/security, -/obj/structure/machinery/light, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"tPL" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/reagent_container/glass/rag, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"tPU" = ( -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"tQd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"tQi" = ( -/obj/effect/landmark/start/warrant, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cryo) -"tQt" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"tQy" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"tQL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"tQV" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/lifeboat_pumps/south1) -"tRc" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"tRw" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"tRG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/box/bodybags, -/obj/structure/machinery/light/small{ - dir = 4; - pixel_y = -12 - }, -/obj/structure/machinery/power/apc/almayer/east, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"tSd" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"tSg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer/mono, -/area/almayer/squads/req) -"tSm" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool{ - pixel_x = 6; - pixel_y = -16 - }, -/obj/item/clothing/head/welding, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tSp" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/obj/structure/kitchenspike, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"tSE" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"tSI" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"tSR" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"tTe" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"tTg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/cichallway) -"tTk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"tTl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_two) -"tTm" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/computerlab) -"tTC" = ( -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tTF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Port Viewing Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"tTG" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"tTZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"tUb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"tUh" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"tUo" = ( -/obj/item/clipboard, -/obj/structure/surface/table/reinforced/black, -/obj/item/tool/pen, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"tUp" = ( -/obj/structure/machinery/camera/autoname/almayer/brig{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"tUs" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"tUw" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/almayer/command/lifeboat) -"tUx" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"tUC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"tUJ" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south2) -"tVf" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"tVk" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "n_engi_ext" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"tVn" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"tVx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"tVF" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = -6; - pixel_y = -3 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = 5; - pixel_y = -3 - }, -/obj/structure/noticeboard{ - desc = "The note is haphazardly attached to the cork board by what looks like a bent firing pin. 'The order has come in to perform end of life service checks on all L42A service rifles, any that are defective are to be dis-assembled and packed into a crate and sent to to the cargo hold. L42A service rifles that are in working order after servicing, are to be locked in secure cabinets ready to be off-loaded at Chinook. Scheduled end of life service for the L42A - Complete'"; - pixel_y = 29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"tVM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/starboard_hallway) -"tWa" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext"; - name = "\improper Research Window Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/plating, -/area/almayer/medical/medical_science) -"tWd" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tWe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"tWi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"tWy" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/medical_science) -"tWJ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/squads/charlie) -"tWK" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"tWR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"tWV" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_two) -"tXc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"tXe" = ( -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper CMO's Bedroom"; - req_one_access_txt = "1;5" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"tXi" = ( -/obj/structure/machinery/conveyor_switch{ - id = "gym_2"; - name = "treadmill switch" - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"tXp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/starboard_aft_hallway) -"tXF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"tXI" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"tXM" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"tYb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/basketball) -"tYo" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"tYp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/freezer/industry, -/obj/item/reagent_container/glass/beaker/silver, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"tYA" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/offices/flight) -"tYL" = ( -/obj/structure/machinery/autolathe/medilathe/full, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"tYM" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"tYR" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"tYV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"tZk" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"tZo" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"tZv" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"tZF" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"tZP" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"tZV" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/lower/workshop/hangar) -"uac" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"uaG" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"uaU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - layer = 3.1; - pixel_y = 11 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"uaV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"ubb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"ubi" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"ubk" = ( -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"ubv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"uby" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) -"ubz" = ( -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"ubA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"ubG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"ubI" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/tool/stamp{ - name = "Corporate Liaison's stamp"; - pixel_x = -8; - pixel_y = 6 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"ubL" = ( -/obj/structure/surface/table/almayer, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"ubP" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"ubQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"ucp" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/starboard) -"uct" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_aft_hallway) -"ucw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"ucx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"ucy" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_p) -"ucM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"ucO" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"udc" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"udf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"udg" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"udl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"udE" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 32 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"udY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"udZ" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"uec" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"uew" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"ueG" = ( -/obj/item/bedsheet/orange, -/obj/structure/bed{ - icon_state = "psychbed" - }, -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - density = 0; - pixel_y = 30; - req_access = list(); - req_access_txt = "6" - }, -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"ueS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/green, -/area/almayer/living/offices) -"ueX" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/upper/midship_hallway) -"ueY" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"ufb" = ( -/obj/structure/machinery/computer/cameras/almayer{ - dir = 8; - pixel_x = 17 - }, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"ufh" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"ugc" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"uge" = ( -/obj/structure/machinery/cm_vending/clothing/intelligence_officer{ - density = 0; - pixel_x = -32 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) -"ugf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/sign/safety/bridge{ - pixel_y = 32 - }, -/obj/structure/sign/safety/reception{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"ugi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/starboard) -"ugp" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ugu" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"ugB" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/aft_hallway) -"ugI" = ( -/obj/structure/platform, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"ugQ" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/surface/rack, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"uhk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"uhm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"uhu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"uhE" = ( -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"uhG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"uhM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"uhY" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "researchlockdownext_windoor"; - name = "\improper Research Windoor Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/medical/medical_science) -"uio" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/commandbunks) -"uiw" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"uiB" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"uiO" = ( -/obj/structure/machinery/door_control/cl/quarter/backdoor{ - pixel_x = -25; - pixel_y = 23 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"uiU" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"ujp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Conference and Office Area" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"ujy" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/folder/black, -/obj/item/tool/pen, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"ujA" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/mess) -"ujD" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/auxiliary_officer_office) -"ujR" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"uka" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"ukq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"uky" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) -"ukK" = ( -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 27; - serial_number = 12 - }, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"ukV" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"ukW" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) -"uli" = ( -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"ulj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/hallways/lower/port_fore_hallway) -"ulk" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Dropship Control Bubble"; - req_access = null; - req_one_access_txt = "3;22;2;19" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices/flight) -"ulo" = ( -/obj/structure/toilet{ - dir = 8; - layer = 2.9; - pixel_y = 8 - }, -/obj/structure/window{ - layer = 2.95; - pixel_y = -2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/commandbunks) -"ult" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"ulH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"ulO" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"umk" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"umt" = ( -/obj/structure/sign/safety/refridgeration{ - pixel_y = -32 - }, -/obj/structure/sign/safety/medical{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"umC" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"umH" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/storage/box/cups, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"umR" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_x = 2; - pixel_y = 5 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"umW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/vending/cigarette/free{ - pixel_y = 16 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"una" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"und" = ( -/obj/structure/machinery/cm_vending/clothing/leader/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"une" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/hydroponics) -"ung" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"unr" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) -"unA" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"unE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -15 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/starboard) -"unJ" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"unW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"unY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/computer/research{ - dir = 4; - pixel_y = 4 - }, -/obj/item/tool/hand_labeler{ - pixel_x = -6; - pixel_y = -5 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"uod" = ( -/obj/structure/surface/rack, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) -"uoh" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters/clippers, -/obj/item/restraint/handcuffs/zip, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"uoo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "30;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"uow" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"uoA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/starboard_point_defense) -"uoO" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"uoU" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"upi" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"upp" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/command/cic) -"upP" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/surface/table/reinforced/black, -/obj/item/storage/toolbox/mechanical, -/obj/item/stack/cable_coil{ - pixel_x = -7; - pixel_y = 11 - }, -/obj/item/device/helmet_visor{ - pixel_x = 8; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"upS" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"upW" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"uqg" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"uqh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"uqm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"uqo" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"uqt" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_p) -"uqy" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"uqI" = ( -/obj/structure/machinery/light{ - pixel_x = 16 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"uqJ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"urg" = ( -/obj/structure/machinery/vending/cola{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"urj" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"uru" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"urD" = ( -/obj/structure/reagent_dispensers/fueltank/gas/methane{ - anchored = 1 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"urN" = ( -/obj/effect/landmark/start/marine/leader/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"urR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"urU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/medical_science) -"urV" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"ush" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"usC" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/upper/midship_hallway) -"usL" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"usW" = ( -/obj/item/stack/folding_barricade/three, -/obj/item/stack/folding_barricade/three, -/obj/structure/surface/rack, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/panic) -"usX" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"uth" = ( -/obj/structure/platform_decoration, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"utp" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) -"utq" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"utu" = ( -/obj/structure/window{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"utC" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"utX" = ( -/turf/closed/wall/almayer/research/containment/wall/connect_e2{ - icon_state = "containment_wall_connect_e" - }, -/area/almayer/medical/containment/cell) -"utY" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"uuj" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 - }, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_x = -8; - pixel_y = 22 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"uuu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 1; - layer = 2.7; - pixel_y = 2 - }, -/obj/structure/largecrate/random/case, -/obj/effect/spawner/prop_gun/m41aMK1{ - pixel_y = 7 - }, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -10; - pixel_y = 1 - }, -/obj/item/tool/screwdriver{ - pixel_x = 7; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"uuA" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/port) -"uuR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"uvb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"uvf" = ( -/obj/structure/machinery/cm_vending/clothing/tl/delta{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"uvn" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"uwa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"uwe" = ( -/obj/structure/machinery/chem_master/industry_mixer, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"uwp" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/magazine/boots/n117{ - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"uwv" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room/notunnel) -"uwy" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"uwC" = ( -/obj/item/stool, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"uwF" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"uwH" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/shipboard/weapon_room) -"uwN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"uwW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/red, -/area/almayer/living/cryo_cells) -"uxa" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"uxb" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"uxt" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"uxu" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/hallways/upper/midship_hallway) -"uxw" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"uxx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/upper_medical) -"uxC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"uxD" = ( -/obj/structure/machinery/door_control{ - id = "or01"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_one) -"uxF" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"uxG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"uxO" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -16; - pixel_y = 16 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"uxX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"uya" = ( -/turf/open/floor/almayer/uscm/directional/southeast, -/area/almayer/command/lifeboat) -"uym" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/command/cichallway) -"uyr" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/emerald/north, -/area/almayer/living/port_emb) -"uys" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/squads/req) -"uyC" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/lifeboat_pumps/south2) -"uyE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"uyH" = ( -/turf/closed/wall/almayer/research/containment/wall/divide, -/area/almayer/medical/containment/cell) -"uyR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/transmitter/rotary{ - name = "Researcher Office Telephone"; - phone_category = "Almayer"; - phone_id = "Research"; - pixel_y = 6 - }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/reagent_container/glass/beaker/large{ - pixel_x = -6 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"uzn" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/living/briefing) -"uzo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard, -/obj/item/device/binoculars, -/obj/item/storage/bible, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"uzv" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"uzy" = ( -/obj/item/reagent_container/glass/bucket, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"uzE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/ce_room) -"uzP" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"uzT" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"uAb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"uAc" = ( -/obj/item/coin/silver{ - desc = "A small coin, bearing the falling falcons insignia."; - name = "falling falcons challenge coin" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"uAe" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"uAi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/command/cichallway) -"uAm" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"uAr" = ( -/obj/structure/disposaloutlet{ - density = 0; - desc = "An outlet for the pneumatic delivery system."; - icon_state = "delivery_outlet"; - name = "delivery outlet"; - pixel_x = -1; - pixel_y = 25; - range = 0 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"uAu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"uAL" = ( -/obj/structure/bed/chair/wood/normal, -/obj/item/bedsheet/brown, -/obj/item/toy/plush/farwa, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"uBb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"uBi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"uBj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"uBx" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"uBF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"uBJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/port) -"uBL" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"uBM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/combat_correspondent) -"uBN" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"uBO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/item/storage/toolbox/emergency{ - pixel_x = -3 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"uBP" = ( -/obj/structure/machinery/cm_vending/clothing/tl/alpha{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"uBS" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"uCa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"uCk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"uCq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_two) -"uCs" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/upper/mess) -"uCw" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"uCD" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/weapon_room) -"uCO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"uCQ" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"uCR" = ( -/obj/item/tool/warning_cone{ - pixel_y = 13 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"uCU" = ( -/obj/structure/bed/chair/bolted{ - dir = 8 - }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/processing) -"uCW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"uDg" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/s_bow) -"uDq" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_y = 32 - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = -32 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"uDx" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/clipboard, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) -"uDG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/donut_box, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"uDQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/upper_engineering/starboard) -"uEi" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/hull/lower/l_m_s) -"uEt" = ( -/turf/open/floor/almayer/plating_striped, -/area/almayer/engineering/upper_engineering/starboard) -"uEz" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/command/lifeboat) -"uEE" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"uEO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"uFb" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"uFg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"uFl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/port) -"uFq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"uFt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"uFw" = ( -/turf/open/floor/almayer/green/southwest, -/area/almayer/living/grunt_rnr) -"uFH" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"uGg" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) -"uGj" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_p) -"uGv" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"uGD" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"uGF" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"uGM" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"uGN" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/general_equipment) -"uGY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_aft_hallway) -"uGZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"uHq" = ( -/obj/structure/dropship_equipment/fulton_system, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"uHI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"uHR" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) -"uHZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/megaphone, -/obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"uIe" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"uIn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"uIA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"uII" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"uJn" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_point_defense) -"uJt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 8; - req_access_txt = "8" - }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" - }, -/obj/item/desk_bell{ - anchored = 1; - pixel_x = -6; - pixel_y = 10 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_medbay) -"uJD" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/p_stern) -"uJM" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"uJT" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"uJX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"uKa" = ( -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/containment) -"uKm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = 32 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"uKH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"uKL" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"uKV" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/food_storage{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"uLi" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"uLn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_point_defense) -"uLo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"uLs" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"uLV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/cells) -"uMc" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/starboard) -"uMf" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"uMj" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/port_missiles) -"uMp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 8 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"uMq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"uME" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) -"uMG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"uMO" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = 24; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"uNa" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"uNc" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"uNe" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/squads/bravo) -"uNf" = ( -/obj/structure/sign/safety/conference_room{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"uNp" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"uNy" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/living/briefing) -"uNz" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"uNE" = ( -/obj/structure/pipes/standard/tank/oxygen, -/obj/structure/sign/safety/med_cryo{ - pixel_x = -6; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/cryo_tubes) -"uNV" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"uOb" = ( -/obj/structure/machinery/telecomms/processor/preset_two, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"uOi" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/lifeboat_pumps/south2) -"uON" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"uOP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"uOX" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"uPx" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-4"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"uPC" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/firingrange{ - pixel_x = 32; - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) -"uPE" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"uPF" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/squads/bravo) -"uPK" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/ce_room) -"uPQ" = ( -/obj/item/weapon/dart/green, -/obj/structure/dartboard{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"uPV" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/computerlab) -"uPW" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"uPX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"uQb" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"uQc" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 12; - pixel_y = -5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"uQm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"uQo" = ( -/obj/structure/machinery/disposal, -/obj/item/reagent_container/food/drinks/cans/beer{ - layer = 3.3; - pixel_x = -4; - pixel_y = 15 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"uQw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/bed/chair/comfy/delta, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"uQE" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"uQH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/toolbox, -/obj/item/stack/sheet/metal{ - desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; - icon = 'icons/obj/structures/props/semiotic_standard.dmi'; - icon_state = "coffee"; - name = "coffee semiotic"; - pixel_x = 20; - pixel_y = 12; - singular_name = "coffee semiotic" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"uQJ" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"uQX" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer/red/north, -/area/almayer/maint/upper/u_a_p) -"uRe" = ( -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell/cl) -"uRh" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/paper{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/tool/pen/red/clicky{ - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"uRm" = ( -/obj/structure/janitorialcart, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/hangar) -"uRo" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha) -"uRz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"uRB" = ( -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"uRD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"uRM" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/red{ - layer = 3.2 - }, -/obj/item/bedsheet/medical{ - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/almayer/living/port_emb) -"uRX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/morgue) -"uSj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 4; - layer = 2.99; - pixel_y = 4 - }, -/obj/structure/machinery/computer/almayer_control{ - dir = 4; - layer = 2.99; - pixel_y = 26 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"uSq" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"uSv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"uSz" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"uSB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/fore_hallway) -"uSC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 4; - pixel_y = -3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"uSN" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"uSU" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"uSX" = ( -/obj/item/tank/phoron, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"uSZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"uTh" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"uTk" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"uTv" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"uTz" = ( -/obj/structure/closet/crate/internals, -/obj/item/restraint/adjustable/cable/blue, -/obj/item/restraint/adjustable/cable/blue, -/obj/item/restraint/adjustable/cable/cyan, -/obj/effect/spawner/random/toolbox, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"uTE" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"uTG" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = -30; - pixel_y = 6; - serial_number = 12 - }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/living/port_emb) -"uTK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"uUi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"uUk" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/repair_bay) -"uUz" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - dir = 4; - id = "engidorm"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) -"uUH" = ( -/obj/structure/machinery/cm_vending/clothing/maintenance_technician, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"uUI" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/item/clothing/head/ushanka{ - layer = 3.3 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/port_emb) -"uUO" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"uUS" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/crushed_cup, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/ashtray/plastic{ - pixel_x = 5; - pixel_y = -10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"uUT" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/medic, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"uUU" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"uVc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) -"uVi" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"uVv" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"uVw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light/small, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"uVI" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"uVM" = ( -/obj/item/clothing/glasses/sunglasses/aviator{ - pixel_x = -1; - pixel_y = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"uVT" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering) -"uVV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"uWf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"uWj" = ( -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/engineering/port_atmos) -"uWn" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/upper_engineering/starboard) -"uWq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"uWV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) -"uXm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"uXv" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SL-1"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"uXJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"uXO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"uXP" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"uXU" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"uXY" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) -"uYg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"uYF" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/frame/light_fixture, -/obj/item/frame/light_fixture, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"uYH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) -"uYK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMO Shutters"; - name = "\improper CMO Office Shutters" - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - name = "\improper CMO's Office"; - req_one_access = null; - req_one_access_txt = "1;5" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"uYL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"uYY" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"uZd" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"uZf" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/hallways/lower/port_midship_hallway) -"uZj" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"uZm" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"uZr" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 2 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 9 - }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"uZJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"uZX" = ( -/obj/structure/prop/almayer/missile_tube{ - icon_state = "missiletubesouth" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) -"vaj" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/stair_clone/upper) -"vaq" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"vaA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"vaJ" = ( -/obj/structure/machinery/line_nexter{ - id = "line1"; - pixel_x = -2 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) -"vaS" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/mp_bunks) -"vaV" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"vbk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/aft_hallway) -"vbn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) -"vbw" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"vbB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"vbJ" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"vbW" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"vce" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal/delivery{ - density = 0; - desc = "A pneumatic delivery unit. Sends items to the requisitions."; - icon_state = "delivery_med"; - name = "Requisitions Delivery Unit"; - pixel_y = 28 - }, -/obj/structure/machinery/xenoanalyzer, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"vcf" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"vcu" = ( -/obj/effect/landmark/start/engineering, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"vcv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"vcG" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"vcI" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"vcL" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - id = "Containment Cell 2"; - locked = 1; - name = "\improper Containment Cell 2" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - dir = 4; - id = "Containment Cell 2"; - name = "\improper Containment Cell 2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"vcP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"vdo" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"vdv" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"vdz" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"vdA" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"vdH" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_umbilical) -"vdJ" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"vdM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"vdQ" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"vet" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"vey" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - dir = 1; - name = "\improper Command Power Substation" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/mess) -"veN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"veO" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate{ - name = "Corporate Liaison's Closet" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"vfs" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"vfy" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/view_objectives, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"vfH" = ( -/obj/structure/cargo_container/wy/mid, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -22; - pixel_y = 3; - serial_number = 11 - }, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 6; - pixel_y = 8; - serial_number = 12 - }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - name = "'Miss July' Pinup"; - serial_number = 16 - }, -/obj/structure/sign/poster{ - desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; - icon_state = "poster10"; - name = "Koorlander Gold Poster"; - pixel_x = 29; - pixel_y = 6; - serial_number = 10 - }, -/obj/structure/bed/chair{ - dir = 1; - pixel_y = 42 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vfS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"vgi" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/general_equipment) -"vgm" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"vgw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/lower) -"vgI" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vgO" = ( -/turf/closed/wall/almayer/research/containment/wall/east, -/area/almayer/medical/containment/cell) -"vgS" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"vhe" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/folder/white, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"vhw" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"vhA" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"vhB" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/lower/workshop/hangar) -"vhL" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/hangar) -"vhN" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"vhW" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"vhX" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/medical/lower_medical_medbay) -"vhZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/industrial, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"viu" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"viB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/aicore, -/area/almayer/command/airoom) -"vjj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) -"vjn" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"vjv" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"vjB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) -"vjK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"vjZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/chief_mp_office) -"vka" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"vkc" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/engineering/port_atmos) -"vkf" = ( -/obj/structure/closet/secure_closet/cmdcabinet{ - pixel_y = 24 - }, -/obj/item/device/cotablet, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"vki" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"vkq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering) -"vkx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"vkJ" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -18 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"vkV" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"vkX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "Research Armory"; - name = "Research Armory"; - pixel_x = 27; - req_one_access_txt = "4;28" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/medical/upper_medical) -"vlg" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build/ai_arrow/west, -/area/almayer/command/airoom) -"vlw" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vlK" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_fore_hallway) -"vlL" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"vlM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"vlN" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) -"vlP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/lower/repair_bay) -"vmq" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_m_s) -"vmt" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper AI Reception"; - req_access = null; - req_one_access_txt = "91;92" - }, -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES ReceptStairs1"; - name = "\improper ARES Reception Shutters" - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"vmu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"vmz" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"vmJ" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"vnJ" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"vnY" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"voa" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"vot" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"voS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"voU" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) -"vpj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"vpm" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-4"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"vpt" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = -10; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = -10; - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"vpv" = ( -/obj/structure/machinery/shower, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/tinted{ - dir = 2 - }, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"vpB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"vpI" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"vpJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"vpO" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/living/briefing) -"vqa" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"vqi" = ( -/obj/structure/largecrate/random/mini/small_case/b{ - pixel_x = 8; - pixel_y = -1 - }, -/obj/structure/largecrate/random/mini/small_case/c{ - pixel_x = -7; - pixel_y = -1 - }, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/trash/crushed_cup{ - pixel_y = 12 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"vqs" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"vqv" = ( -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"vqC" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"vqE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"vqM" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/aluminum{ - amount = 20 - }, -/obj/item/stack/sheet/copper{ - amount = 20; - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/gold{ - amount = 3; - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/silver{ - amount = 5; - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"vqP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/surface/table/almayer{ - layer = 3 - }, -/obj/effect/landmark/map_item, -/obj/item/device/megaphone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vqZ" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/sign/safety/biolab{ - pixel_x = -9; - pixel_y = 32 - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 25; - pixel_y = 32 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80; - pixel_y = 6 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"vra" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/charlie_delta_shared) -"vrs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"vru" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"vrw" = ( -/turf/open/floor/almayer_hull/outerhull_dir/southwest, -/area/space) -"vrx" = ( -/obj/structure/machinery/status_display{ - pixel_x = -32; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"vrz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"vrO" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"vsg" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -4 - }, -/obj/item/clothing/glasses/welding{ - pixel_y = 6 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"vsh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"vsi" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"vsl" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"vsv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"vsw" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"vsy" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"vsD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"vsQ" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/coffee{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cells) -"vsT" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"vsX" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"vsZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"vtk" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"vtq" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) -"vtD" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"vtL" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"vub" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/sea_office) -"vug" = ( -/obj/effect/landmark/start/marine/engineer/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"vup" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"vuA" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/briefing) -"vuG" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"vuV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"vvh" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"vvk" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"vvp" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/sign/safety/intercom{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"vvs" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"vvC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cic) -"vvZ" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/lower/port_midship_hallway) -"vwa" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_three) -"vwg" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vwh" = ( -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell/cl) -"vwI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"vwJ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vwU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"vwY" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"vxb" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"vxo" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/hydroponics) -"vxu" = ( -/obj/structure/machinery/meter, -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"vxD" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"vxF" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"vxH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vxI" = ( -/turf/open/floor/almayer/plating_striped, -/area/almayer/command/lifeboat) -"vxK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"vxM" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/cryo) -"vxX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/wrench{ - pixel_x = 1; - pixel_y = 10 - }, -/obj/item/storage/bible{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/storage/bible{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/grape{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"vyb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie_delta_shared) -"vyi" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/processing) -"vyl" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 - }, -/obj/item/paper, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -10; - pixel_y = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"vyB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) -"vyH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"vyI" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) -"vyX" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/hallways/upper/midship_hallway) -"vyY" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"vzi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vzp" = ( -/turf/open/floor/almayer/research/containment/entrance, -/area/almayer/medical/containment/cell/cl) -"vzE" = ( -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/starboard_fore_hallway) -"vzK" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/ce_room) -"vzM" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/command/telecomms) -"vzU" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/power/apc/almayer/hardened/east, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"vAe" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"vAg" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = -32 - }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"vAl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/syringes{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/syringes, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"vAn" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"vAz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"vAB" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves{ - pixel_x = -4; - pixel_y = 13 - }, -/obj/item/storage/box/masks{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/reagent_container/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"vAG" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"vAN" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north2) -"vAO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_four) -"vBh" = ( -/obj/structure/reagent_dispensers/acidtank, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"vBj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"vBn" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Interior"; - name = "\improper ARES Inner Chamber Shutters"; - plane = -7 - }, -/obj/effect/step_trigger/ares_alert/core, -/obj/structure/sign/safety/terminal{ - pixel_x = -18; - pixel_y = -8 - }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = -18; - pixel_y = 6 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"vBs" = ( -/obj/structure/machinery/vending/coffee{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/machinery/vending/snack{ - pixel_x = -18; - pixel_y = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"vBC" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"vBO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vBS" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"vBX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_lobby) -"vCb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/maint{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/storage{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/hallways/lower/port_fore_hallway) -"vCt" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"vCE" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"vCO" = ( -/obj/effect/landmark/start/bridge, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/bridgebunks) -"vDi" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"vDm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/centrifuge{ - pixel_y = 7 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"vDo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"vDp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"vDs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"vDz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"vDL" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"vDN" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"vDT" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vDU" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vDV" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"vEj" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/effect/landmark/start/synthetic, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) -"vEm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"vEA" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc03"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = 28; - pixel_y = -23 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"vEG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"vEH" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"vEI" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"vEQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"vEZ" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"vFf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vFj" = ( -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"vFl" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"vFt" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 8 - }, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"vFu" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/squads/req) -"vFz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"vFB" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"vFV" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/bed/chair, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"vFZ" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vGh" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"vGm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"vGs" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/s_bow) -"vGC" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"vGN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/upper/midship_hallway) -"vGQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"vGS" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"vGZ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"vHh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/item/tool/warning_cone{ - layer = 3.6; - pixel_x = -16; - pixel_y = -9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"vHn" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_m_s) -"vHA" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"vHP" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) -"vHU" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/obj/structure/machinery/computer/tech_control{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/no_build/ai_floors, -/area/almayer/command/airoom) -"vId" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_s) -"vIi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/medical_science) -"vIo" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_f_p) -"vIr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"vIu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"vIP" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"vIZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"vJB" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/living/briefing) -"vJJ" = ( -/obj/structure/closet/secure_closet/quartermaster_uscm, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"vJR" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) -"vJU" = ( -/obj/item/storage/firstaid/fire/empty, -/obj/item/storage/firstaid/o2/empty, -/obj/item/storage/firstaid/rad/empty, -/obj/item/storage/firstaid/toxin/empty, -/obj/structure/surface/rack, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"vJW" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"vJZ" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"vKn" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/computerlab) -"vKo" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/obj/item/device/radio, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"vKw" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/paper, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"vKB" = ( -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"vKI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"vLr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_aft_hallway) -"vLu" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"vLz" = ( -/obj/structure/machinery/door_control{ - id = "ARES Mainframe Right"; - name = "ARES Mainframe Lockdown"; - pixel_x = -24; - pixel_y = -24; - req_one_access_txt = "200;91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"vLB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/midship_hallway) -"vLE" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"vLG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/poster/pinup{ - pixel_x = -30 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) -"vLT" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = -17; - pixel_y = 6 - }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/shipboard/brig/cells) -"vMb" = ( -/obj/item/stool{ - pixel_x = -15; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"vMd" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"vMo" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/operating_room_four) -"vMr" = ( -/obj/effect/landmark/start/otech, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"vMs" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/pilotbunks) -"vMA" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"vMB" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/upper_engineering/port) -"vMN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"vMV" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"vMX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"vNe" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/starboard_missiles) -"vNf" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"vNj" = ( -/obj/structure/surface/table/almayer, -/obj/item/attachable/lasersight, -/obj/item/reagent_container/food/drinks/cans/souto/vanilla{ - pixel_x = 10; - pixel_y = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"vNp" = ( -/obj/structure/sign/safety/three{ - pixel_x = -17 - }, -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 3"; - name = "Cell 3" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"vNw" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"vND" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"vNI" = ( -/obj/structure/machinery/keycard_auth{ - pixel_x = -7; - pixel_y = 25 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 6 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = 26 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/ce_room) -"vNX" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"vOh" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"vOk" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/obj/structure/sign/banners/maximumeffort{ - pixel_y = 30 - }, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/squads/delta) -"vOl" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"vOy" = ( -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/medical_science) -"vOG" = ( -/obj/structure/largecrate/supply/ammo/m41a/half, -/obj/structure/largecrate/supply/ammo/pistol/half{ - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"vOM" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"vOU" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"vOV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"vOW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"vPf" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "Perma 2"; - name = "\improper cell shutter" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/perma) -"vPk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"vPm" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"vPp" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/upper/midship_hallway) -"vPw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/ladder{ - height = 1; - id = "cicladder4" - }, -/turf/open/floor/plating/almayer, -/area/almayer/living/briefing) -"vPG" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"vPL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_missiles) -"vPS" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 4; - pixel_x = -16 - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/medical_science) -"vPT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"vPW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) -"vPX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"vPY" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north2) -"vQi" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"vQp" = ( -/obj/structure/machinery/line_nexter{ - id = "line1"; - pixel_x = -2 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"vQq" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"vQR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"vQV" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"vRA" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"vRC" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"vRG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/offices) -"vRN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"vSb" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/tl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"vSc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"vSr" = ( -/obj/structure/largecrate/random/case/double, -/obj/item/tool/wet_sign{ - pixel_y = 18 - }, -/obj/item/trash/cigbutt/ucigbutt{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8; - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"vSI" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/briefing) -"vSL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"vSM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/northeast, -/area/almayer/squads/charlie) -"vSX" = ( -/obj/structure/surface/rack, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"vSZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vTm" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"vTD" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Weyland-Yutani Office" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/door, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"vTN" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"vTS" = ( -/obj/structure/machinery/light{ - pixel_x = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"vTT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"vTV" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"vTX" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"vUh" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"vUB" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"vUH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"vUI" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"vUK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/command/lifeboat) -"vUL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"vUM" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/item/device/megaphone, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/upper_medical) -"vUP" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/cic_hallway) -"vUZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/medical_science) -"vVa" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/squads/alpha) -"vVd" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"vVk" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/command/airoom) -"vVr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"vVu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"vVv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - id = "Containment Cell 4"; - name = "\improper Containment Cell 4" - }, -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 4"; - locked = 1; - name = "\improper Containment Cell 4" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell/cl) -"vVy" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"vVD" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"vVT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/research/main_terminal{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"vVU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"vWf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"vWp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/port_aft_hallway) -"vWw" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"vWA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = -5 - }, -/obj/item/prop/magazine/book/theartofwar, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"vWB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/bcigbutt, -/obj/item/trash/cigbutt{ - pixel_x = -1; - pixel_y = 17 - }, -/obj/item/trash/cigbutt{ - icon_state = "ucigbutt"; - pixel_x = 2; - pixel_y = 8 - }, -/obj/item/tool/lighter/random{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/sign/prop3{ - pixel_x = 28 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"vWP" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/hallways/upper/midship_hallway) -"vWT" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"vXg" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"vXh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"vXm" = ( -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/fore_hallway) -"vXn" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south2) -"vXo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"vXt" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"vXG" = ( -/obj/structure/machinery/door/window/southleft, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/securestorage) -"vXH" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/squads/alpha) -"vXI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"vXU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/card{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"vYd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"vYg" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/squads/charlie) -"vYm" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"vYw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"vYC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"vYF" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"vYJ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/east{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"vYK" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"vYR" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south1) -"vZf" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8 - }, -/turf/closed/wall/almayer, -/area/almayer/engineering/lower) -"vZv" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"vZw" = ( -/turf/open/floor/almayer/research/containment/floor2, -/area/almayer/medical/containment/cell/cl) -"vZx" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/hallways/hangar) -"vZy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/obj/structure/sink{ - pixel_x = 1; - pixel_y = -2 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"vZM" = ( -/obj/structure/machinery/computer/crew, -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cic) -"vZR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"vZT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing{ - dir = 8; - pixel_y = 6 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 32; - pixel_y = -22 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/perma) -"wab" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 1"; - pixel_x = -24 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/cells) -"wam" = ( -/turf/open/floor/almayer/no_build/plate, -/area/almayer/living/pilotbunks) -"waK" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"waW" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"wba" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge3" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"wbi" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"wbI" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"wbJ" = ( -/obj/structure/machinery/door_control/airlock{ - id = "n_engi"; - name = "Port Engi Airlock"; - pixel_x = 28; - pixel_y = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/notunnel) -"wci" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/hallways/lower/repair_bay) -"wcl" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"wcC" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"wcP" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"wde" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"wdf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/auxiliary_officer_office) -"wdg" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"wdj" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/tool/pen{ - pixel_x = 8 - }, -/obj/item/clipboard{ - pixel_x = -8 - }, -/obj/item/folder/white{ - pixel_x = -8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"wdl" = ( -/obj/structure/machinery/computer/cryopod/eng{ - dir = 8 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"wdy" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"wdz" = ( -/obj/effect/landmark/start/marine/engineer/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"wdQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"wdS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"wee" = ( -/obj/effect/landmark/start/police, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cryo) -"weC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/port_point_defense) -"weD" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "dccbunk"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/living/pilotbunks) -"weG" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/maint{ - pixel_y = -26 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"wfE" = ( -/turf/closed/wall/almayer, -/area/almayer/living/gym) -"wfM" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/tool/kitchen/tray{ - pixel_y = 9 - }, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza{ - pixel_y = 8 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"wfZ" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"wgg" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"wgv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/starboard) -"wgw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"wgB" = ( -/obj/structure/barricade/metal, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"wgD" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -9 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/port) -"wgF" = ( -/obj/structure/machinery/door_control{ - id = "or04"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_four) -"wgL" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/port_fore_hallway) -"wgO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"whs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/crew/alt{ - dir = 4 - }, -/obj/structure/transmitter/rotary/no_dnd{ - name = "Brig Cells Telephone"; - phone_category = "MP Dept."; - phone_id = "Brig Cells"; - pixel_x = 16 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/processing) -"whA" = ( -/turf/open/floor/almayer/uscm/directional, -/area/almayer/living/briefing) -"whI" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"whO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"whQ" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/storage/donut_box{ - pixel_y = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/warden_office) -"wib" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/upper/u_m_p) -"wid" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/p_bow) -"wim" = ( -/obj/item/bedsheet/brown, -/obj/structure/bed, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"win" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"wis" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/computerlab) -"wiy" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/paper, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"wiG" = ( -/obj/structure/sign/poster{ - pixel_x = -30; - pixel_y = 4 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"wiI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/juicer{ - pixel_y = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"wiS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/upper/midship_hallway) -"wiV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"wiY" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"wjg" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - dir = 1; - name = "Storage"; - req_one_access_txt = "19;21" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"wjj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/port_midship_hallway) -"wjq" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"wjO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"wjQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"wjY" = ( -/obj/structure/closet/secure_closet/warrant_officer, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"wkb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"wkh" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"wkp" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/sl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"wkA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"wkJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"wkL" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"wkT" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"wkV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"wlh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"wlv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"wlx" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"wlE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"wlF" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"wlG" = ( -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_x = 27 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 9 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"wlK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"wlV" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"wmf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"wmA" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"wmD" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wmP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"wna" = ( -/obj/structure/machinery/cm_vending/clothing/medical_crew, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"wnf" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/living/briefing) -"wnh" = ( -/obj/structure/window/framed/almayer/aicore/hull, -/turf/open/floor/plating, -/area/almayer/command/airoom) -"wnB" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 - }, -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_y = 24; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"wnO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"wnY" = ( -/obj/item/tool/crowbar/red, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"woh" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 4 - }, -/area/almayer/medical/containment/cell) -"wol" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"woA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "\improper Officer's Study" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"woH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"woJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/table, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"woU" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_m_p) -"woZ" = ( -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/tool/pen, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"wpd" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"wpv" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"wpJ" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"wpP" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"wpV" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"wqa" = ( -/obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"wqm" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/mass_spectrometer, -/obj/item/device/mass_spectrometer, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/chemistry) -"wqn" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/cell/high, -/obj/item/clothing/glasses/welding, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"wqO" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"wqR" = ( -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/port) -"wqV" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"wqY" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"wrc" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"wrp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"wru" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"wrz" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/interrogation) -"wrC" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"wrF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"wrZ" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"wsh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/perma) -"wsi" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"wsl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"wsp" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - id = "medcryobeds"; - id_tag = "medcryobeds"; - name = "Medical Wheelchair Storage"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"wsq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"wst" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"wsz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"wsA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"wsC" = ( -/obj/structure/machinery/computer/telecomms/server, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"wsD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"wte" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"wtf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"wtk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"wtF" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_a_p) -"wtL" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 14; - pixel_y = -25 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"wtM" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"wtR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"wue" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Chemistry Laboratory"; - req_access_txt = "20"; - req_one_access = null - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/chemistry) -"wuh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 - }, -/obj/structure/sign/safety/water{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"wuk" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"wup" = ( -/obj/structure/supply_drop/echo, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"wuD" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"wuV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_27"; - layer = 3.1; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/shipboard/brig/cic_hallway) -"wuX" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"wvn" = ( -/obj/structure/largecrate/supply/generator, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - layer = 2.9; - pixel_x = -10; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"wvo" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"wvG" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"wvM" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"wvO" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -18 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"wvR" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"wwl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/clothing/glasses/hud/health, -/obj/item/device/radio/marine, -/obj/item/clothing/accessory/storage/surg_vest, -/obj/item/tool/portadialysis, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"wws" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"wwE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"wwF" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"wwL" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"wxg" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/lower/engine_core) -"wxh" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_y = 10 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"wxp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wxs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 15 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"wxu" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"wxy" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/p_stern) -"wxD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"wxM" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/two{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wyd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"wyf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/bloodsoup{ - pixel_y = 6 - }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"wyk" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) -"wym" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"wyu" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - id = "Containment Cell 3"; - locked = 1; - name = "\improper Containment Cell 3"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - dir = 4; - id = "Containment Cell 3"; - name = "\improper Containment Cell 3" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"wyw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"wyx" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_s) -"wyz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"wyH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_aft_hallway) -"wzf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"wzh" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/paper, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"wzx" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"wzy" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"wzJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"wzM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) -"wAj" = ( -/obj/structure/machinery/vending/hydronutrients, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"wAl" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/maint/upper/mess) -"wAI" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"wAK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) -"wAP" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/basketball) -"wAT" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/squads/bravo) -"wBu" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"wBz" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"wBD" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"wBH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"wBI" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/starboard) -"wBR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/upper/midship_hallway) -"wBS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"wBV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -2; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Armory" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "firearm_storage_armory"; - name = "\improper Armory Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/armory) -"wBW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/medical_science) -"wCk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/ot{ - pixel_y = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"wCp" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south1) -"wCq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"wCx" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"wCD" = ( -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"wCP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/medical_science) -"wCT" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"wCY" = ( -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"wDl" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"wDr" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/stairs) -"wDt" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"wDy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"wDz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/computer/working_joe, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"wDC" = ( -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 5"; - name = "Cell 5" - }, -/obj/structure/sign/safety/five{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"wDM" = ( -/turf/closed/wall/almayer/reinforced/temphull, -/area/almayer/engineering/upper_engineering) -"wDW" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"wEk" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"wEl" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/medbay, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/chemistry) -"wEn" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/obj/structure/machinery/power/apc/almayer/west, -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = 17 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/evidence_storage) -"wEs" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"wEw" = ( -/obj/effect/landmark/start/pilot/dropship_pilot, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"wEE" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"wEK" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wER" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/lower/port_fore_hallway) -"wEX" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"wEZ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"wFj" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"wFs" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/starboard_hallway) -"wFv" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"wFz" = ( -/obj/item/prop{ - desc = "Predecessor to the M56 the M38 was known for its extreme reliability in the field. This particular M38D is fondly remembered for its stalwart defence of the hangar bay during the Arcturian commando raid of the USS Almayer on Io."; - icon = 'icons/turf/whiskeyoutpost.dmi'; - icon_state = "M56D_gun_e"; - layer = 3.1; - name = "\improper M38D heavy machine gun 'Bess'"; - pixel_x = -3; - pixel_y = 10 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"wFC" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"wFI" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_medbay) -"wFR" = ( -/turf/open/floor/almayer, -/area/almayer/living/gym) -"wFV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller/surgical, -/obj/item/roller/surgical, -/obj/item/roller/surgical, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/folded_tent/med{ - pixel_x = -8; - pixel_y = 14 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_medbay) -"wFX" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"wGa" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"wGb" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"wGq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"wGr" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/closet, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"wGs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - closeOtherId = "briglobby"; - name = "\improper Brig Cells" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"wGE" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/marine/leader/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"wGI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"wGX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/auxiliary_officer_office) -"wHc" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"wHg" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"wHi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/observer_start, -/turf/open/floor/almayer/uscm/directional/logo_c/west, -/area/almayer/living/briefing) -"wHl" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"wHm" = ( -/obj/structure/closet/secure_closet/securecom, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"wHn" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"wHp" = ( -/obj/structure/bed/sofa/vert/grey, -/obj/structure/bed/sofa/vert/grey{ - pixel_y = 11 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"wHr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"wHE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/containment) -"wHF" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"wHW" = ( -/turf/open/floor/almayer/greencorner/west, -/area/almayer/hallways/upper/fore_hallway) -"wIc" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"wIg" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/item/clothing/head/helmet/marine/tech{ - layer = 4.1; - pixel_y = 12 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/mob/living/simple_animal/mouse/brown{ - name = "rat" - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"wIm" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"wIC" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/chief_mp_office) -"wIN" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/lobby) -"wJb" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/lower_medical_medbay) -"wJg" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"wJh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/cryo) -"wJB" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - density = 0; - pixel_y = 30 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"wJC" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"wJH" = ( -/turf/closed/wall/almayer/research/containment/wall/east, -/area/almayer/medical/containment/cell/cl) -"wJL" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"wKb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"wKe" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"wKk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "MTline"; - name = "Next button"; - pixel_x = 5; - pixel_y = 10; - req_one_access_txt = "2;7" - }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"wKt" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/panic) -"wKx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/computer/supplycomp/vehicle, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"wKJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"wKN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"wKP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/medical/containment) -"wKW" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"wLh" = ( -/obj/item/storage/fancy/cigarettes/kpack, -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"wLi" = ( -/obj/structure/machinery/door_control/airlock{ - id = "s_engi"; - name = "Starboard Engi Airlock"; - pixel_x = 28; - pixel_y = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/notunnel) -"wLk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/hangar{ - dir = 8; - pixel_y = -12 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 8; - name = "Remote dropship navigation computer"; - pixel_y = 12; - shuttleId = "dropship_alamo" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"wLo" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"wLu" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"wLx" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"wMe" = ( -/obj/structure/machinery/door_control{ - id = "ROlobby1"; - name = "RO Line 1 Shutters"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "1;21" - }, -/obj/structure/machinery/line_nexter_control{ - id = "line1"; - pixel_x = -4; - pixel_y = -2; - req_one_access_txt = "1;21" - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"wMp" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"wMA" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"wMI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"wML" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"wNu" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"wNv" = ( -/obj/item/tool/warning_cone{ - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"wNy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/hallways/lower/starboard_umbilical) -"wNF" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"wNJ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 16 - }, -/obj/structure/transmitter/rotary/no_dnd{ - name = "Alpha Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Alpha Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"wNL" = ( -/obj/structure/prop/almayer/computers/sensor_computer3{ - name = "weapon targetting computer" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"wNT" = ( -/obj/structure/platform, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"wNX" = ( -/obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"wOc" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"wOt" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"wOA" = ( -/obj/structure/surface/rack, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/item/storage/pouch/tools, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"wOH" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/sprays, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"wON" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) -"wOX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"wPJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"wPK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/fore_hallway) -"wPV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"wQj" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"wQq" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/living/basketball) -"wQx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"wQA" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"wQG" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"wQM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/medical_science) -"wRk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"wRz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"wRG" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = 30 - }, -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"wRJ" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/squads/charlie) -"wRO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"wRP" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"wSd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 4; - pixel_y = 0 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/warden_office) -"wSl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"wSm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"wSo" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"wSr" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"wSu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"wSB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"wSK" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"wSR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"wTc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south2) -"wTn" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"wTz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Pilot's Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"wTD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"wTG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/item/clipboard, -/obj/item/tool/pen{ - pixel_y = -17 - }, -/obj/item/paper_bin/uscm{ - pixel_y = -16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"wTM" = ( -/turf/closed/wall/almayer/research/containment/wall/south, -/area/almayer/medical/containment/cell) -"wTV" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/south2) -"wTY" = ( -/obj/structure/machinery/door_control{ - id = "CMP Office Shutters"; - name = "CMP Office Shutters"; - pixel_y = 32; - req_one_access_txt = "24;31" - }, -/obj/structure/machinery/door_control{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown Shutters"; - pixel_y = 24; - req_access_txt = "3" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/chief_mp_office) -"wUd" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"wUf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"wUp" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/reagent_scanner{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clipboard{ - pixel_x = 8 - }, -/obj/item/paper{ - pixel_x = 8 - }, -/obj/effect/spawner/random/toolbox{ - pixel_x = 5; - pixel_y = -3 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"wUE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"wUN" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/shipboard/brig/medical) -"wUP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"wUW" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 2"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, -/obj/structure/machinery/light/containment{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"wVe" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"wVh" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"wVm" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"wVt" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"wVu" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"wVC" = ( -/obj/structure/largecrate/supply/supplies/mre{ - desc = "A supply crate containing everything you need to stop a CLF uprising."; - name = "\improper USCM crate 'FOB supplies'" - }, -/obj/item/folded_tent/big{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/storage/box/mousetraps{ - pixel_x = 3; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"wVW" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/cic) -"wVX" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"wWc" = ( -/turf/open/floor/almayer/silver, -/area/almayer/engineering/port_atmos) -"wWg" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"wWi" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"wWt" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wWy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"wWz" = ( -/turf/closed/wall/almayer/research/containment/wall/north, -/area/almayer/medical/containment/cell) -"wWE" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"wWG" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"wWX" = ( -/obj/effect/landmark/start/marine/engineer/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"wXc" = ( -/obj/structure/pipes/vents/scrubber/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"wXs" = ( -/obj/item/trash/uscm_mre, -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"wXy" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"wXz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) -"wXH" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"wXV" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"wXW" = ( -/turf/open/floor/almayer/blue/northwest, -/area/almayer/hallways/upper/midship_hallway) -"wYe" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"wYg" = ( -/obj/structure/machinery/optable, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 29 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/shipboard/brig/medical) -"wYt" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/morgue) -"wYu" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"wYx" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/accessory/storage/black_vest/acid_harness, -/obj/item/clothing/accessory/storage/black_vest/acid_harness, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"wYy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_a_p) -"wYA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"wYY" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "CE Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/engineering/ce_room) -"wYZ" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/smart, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"wZq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"wZx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"wZz" = ( -/obj/structure/machinery/power/apc/almayer/hardened/north, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"wZK" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"wZL" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"wZM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"wZQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"wZS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door_control{ - id = "DeployWorkR"; - name = "Workshop Shutters"; - pixel_y = 26; - req_one_access_txt = "3;22;19;7" - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"wZW" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop) -"wZX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"wZY" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/lobby) -"xan" = ( -/obj/structure/machinery/scoreboard_button{ - id = "basketball"; - name = "Scoreboard Reset Button"; - pixel_x = -20 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/living/basketball) -"xau" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xaC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/reagent_container/food/snacks/mre_pack/meal5{ - desc = "How long has this been sitting here?"; - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"xaL" = ( -/obj/structure/surface/rack{ - layer = 2.5 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/storage/box/matches, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"xaM" = ( -/obj/structure/surface/table/almayer, -/obj/item/newspaper{ - name = "character sheet"; - pixel_x = -6 - }, -/obj/item/newspaper{ - name = "character sheet"; - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/toy/dice/d20, -/obj/item/toy/crayon/blue{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"xaR" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"xaZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"xba" = ( -/turf/closed/wall/almayer/reinforced/temphull, -/area/almayer/living/cryo_cells) -"xbb" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"xbc" = ( -/obj/structure/machinery/conveyor_switch{ - id = "lower_garbage" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"xbe" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"xbi" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 5; - pixel_y = 16 - }, -/obj/structure/filingcabinet/disk{ - density = 0; - pixel_x = -11; - pixel_y = 16 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"xbo" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/blue/east, -/area/almayer/squads/delta) -"xbE" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"xbG" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_1"; - name = "range shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"xbK" = ( -/obj/structure/closet, -/obj/item/device/flashlight/pen, -/obj/item/attachable/reddot, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"xbZ" = ( -/obj/structure/closet/emcloset{ - pixel_x = 8 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"xcn" = ( -/obj/structure/closet, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) -"xcw" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"xcM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"xcQ" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"xcZ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"xdd" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"xdf" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"xdk" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"xdn" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - indestructible = 1; - unacidable = 1; - unslashable = 1 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -12; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = -14 - }, -/obj/structure/machinery/aicore_lockdown{ - pixel_x = 3; - pixel_y = 4 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"xds" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/item/stack/sheet/metal{ - layer = 4.1; - pixel_x = -3; - pixel_y = 14 - }, -/obj/item/tool/weldingtool{ - layer = 4.1; - pixel_x = 5; - pixel_y = 12 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/red{ - layer = 3.2 - }, -/obj/item/bedsheet/red{ - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"xdu" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"xdv" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = 30 - }, -/obj/structure/sign/safety/debark_lounge{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"xdy" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_aft_hallway) -"xdA" = ( -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/faxmachine/uscm/command{ - density = 0; - department = "AI Core"; - pixel_y = 32 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"xdG" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"xdT" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south2) -"xdY" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"xee" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"xek" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"xey" = ( -/turf/open/floor/almayer/bluecorner, -/area/almayer/hallways/lower/port_midship_hallway) -"xeQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/port) -"xeV" = ( -/obj/structure/surface/rack, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"xeZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 3"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"xfw" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"xfD" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"xfR" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop) -"xfS" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"xga" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/upper/aft_hallway) -"xgi" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/four{ - pixel_x = 31; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/lower/port_midship_hallway) -"xgj" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"xgr" = ( -/obj/structure/ladder{ - height = 1; - id = "AftPortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/l_a_p) -"xgs" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) -"xgw" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"xgz" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"xgQ" = ( -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) -"xgW" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"xhb" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"xhj" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"xhk" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"xhl" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/cable_coil, -/obj/item/clothing/glasses/meson, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"xhp" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = -32 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/req) -"xht" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_p) -"xhx" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"xhz" = ( -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"xhJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_y = 20 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"xhU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/starboard_hallway) -"xhW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xhZ" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"xik" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/item/toy/inflatable_duck, -/obj/structure/window/reinforced, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"xit" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/starboard_hallway) -"xix" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 3; - pixel_y = 12 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 5 - }, -/obj/item/folder/white{ - layer = 2.9; - pixel_x = -8 - }, -/obj/structure/machinery/computer/working_joe{ - pixel_y = 16 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"xiD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"xiP" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"xiU" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/seeds/ambrosiavulgarisseed, -/obj/item/tool/plantspray/weeds, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"xiV" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/p_bow) -"xjp" = ( -/obj/structure/machinery/cm_vending/clothing/tl/bravo{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"xjt" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/card{ - dir = 4; - pixel_x = 2 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"xjA" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/port_missiles) -"xjL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"xjT" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/living/cryo_cells) -"xjU" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - name = "\improper Research Reception Laboratory" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"xjW" = ( -/obj/structure/sign/safety/hazard{ - desc = "A sign that warns of a hazardous environment nearby"; - name = "\improper Warning: Hazardous Environment" - }, -/turf/closed/wall/almayer, -/area/almayer/hallways/hangar) -"xka" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_point_defense) -"xkc" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"xkd" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/cells) -"xkm" = ( -/obj/structure/sign/poster{ - pixel_x = 32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/charlie_delta_shared) -"xkA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"xkC" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 1; - name = "\improper Requisitions Storage" - }, -/obj/structure/disposalpipe/up/almayer{ - dir = 4; - id = "almayerlink_OT1_req" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"xli" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/engineering/port_atmos) -"xlj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"xlk" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"xll" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"xlw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control/railings{ - pixel_y = 24 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"xlx" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"xlI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"xlJ" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"xlM" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"xlQ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"xlR" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"xlS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_four) -"xlV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"xmd" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"xmm" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xmR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio{ - pixel_x = 8; - pixel_y = 7 - }, -/obj/item/clothing/head/soft/ferret{ - pixel_x = -7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"xnd" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"xne" = ( -/obj/structure/machinery/vending/walkman, -/turf/open/floor/almayer/green/southwest, -/area/almayer/living/offices) -"xnj" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south2) -"xnk" = ( -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"xnG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"xnI" = ( -/obj/effect/landmark/start/requisition, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"xoj" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"xol" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"xos" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"xoB" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/u_f_s) -"xoD" = ( -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell/cl) -"xoF" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"xoL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) -"xoS" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"xoZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"xpj" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"xpq" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"xps" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper Officer's Bunks"; - req_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/port_atmos) -"xpu" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"xpL" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"xpO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"xpX" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/pipes/vents/pump/no_boom/gas{ - dir = 8; - vent_tag = "Reception" - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"xqb" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/medbay, -/obj/structure/sign/safety/ref_chem_storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"xqg" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"xqh" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"xqy" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "or4privacyshutter"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/medical/operating_room_four) -"xqD" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = -17 - }, -/turf/closed/wall/almayer, -/area/almayer/command/securestorage) -"xqO" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"xrd" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"xrl" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc02"; - name = "\improper Treatment Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"xry" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"xrQ" = ( -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"xrT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"xrV" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/port_umbilical) -"xsi" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp2"; - vector_x = -102; - vector_y = 61 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"xsj" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"xsr" = ( -/obj/structure/machinery/telecomms/bus/preset_four, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"xss" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) -"xsy" = ( -/obj/structure/machinery/power/apc/almayer/hardened/north{ - cell_type = /obj/item/cell/hyper - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"xsQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart/green, -/obj/item/weapon/dart/green, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"xsU" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"xti" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Commanding Officer's Mess" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/captain_mess) -"xtt" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_three) -"xtA" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/tool, -/obj/item/packageWrap, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"xtE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"xtF" = ( -/obj/structure/pipes/unary/outlet_injector, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower) -"xtL" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"xtZ" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"xub" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"xuc" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"xui" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"xuo" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/squads/req) -"xuB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"xuO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"xuQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"xuY" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"xvt" = ( -/obj/effect/landmark/start/marine/medic/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"xvC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"xvK" = ( -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"xvM" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/computerlab) -"xvV" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/spray/cleaner{ - layer = 3.2; - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 3; - pixel_y = 12 - }, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"xwe" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/squads/charlie_delta_shared) -"xwn" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"xww" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"xwD" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/weapon_room) -"xwS" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"xxg" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/silver, -/area/almayer/engineering/port_atmos) -"xxi" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -2 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"xxj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Podlocks"; - pixel_y = -26; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"xxm" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/item/clothing/shoes/marine{ - layer = 4.1; - pixel_x = -5; - pixel_y = 20 - }, -/obj/item/prop/helmetgarb/gunoil{ - layer = 4.2; - pixel_x = 3; - pixel_y = 16 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/red{ - layer = 3.2 - }, -/obj/item/bedsheet/red{ - pixel_y = 13 - }, -/turf/open/floor/plating, -/area/almayer/living/port_emb) -"xxB" = ( -/obj/structure/machinery/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"xxE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) -"xxP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"xxR" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering/starboard) -"xxW" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "officers_mess"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;30" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/mess) -"xya" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"xyb" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"xyc" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"xyk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"xyq" = ( -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"xyB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"xyJ" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"xyN" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/execution_storage) -"xyT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"xyZ" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"xzd" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"xzh" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"xzn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"xzz" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/sign/poster{ - pixel_x = -32 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"xzA" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"xzB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"xzD" = ( -/obj/structure/sign/safety/north{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xzK" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) -"xzL" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"xAe" = ( -/turf/closed/wall/almayer/research/containment/wall/corner, -/area/almayer/medical/containment/cell) -"xAg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"xAk" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "s_engi_ext" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"xAn" = ( -/obj/structure/window/reinforced/toughened, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"xAu" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"xAx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"xAN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"xAR" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Lifeboat Control Bubble"; - req_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"xAS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"xAU" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"xAY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"xBa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"xBe" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/upper_engineering) -"xBs" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_1"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"xBw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"xBA" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"xBB" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"xBM" = ( -/obj/structure/machinery/telecomms/server/presets/common, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"xBQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"xBU" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"xBW" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) -"xBX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/snacks/tofukabob, -/obj/item/reagent_container/food/snacks/tofubreadslice, -/obj/item/reagent_container/food/snacks/tofubreadslice, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"xBY" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/laundry) -"xCf" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"xCy" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19; - pixel_y = 6 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"xCB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"xCG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"xCH" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) -"xCK" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/lighter/zippo, -/obj/item/toy/dice/d20, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/toy/dice{ - pixel_x = 10; - pixel_y = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"xCT" = ( -/obj/structure/machinery/ares/processor/interface, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"xCV" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/bag/trash{ - pixel_x = -3 - }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"xDc" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"xDq" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"xDC" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"xDE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 8; - name = "\improper Chief MP's Office" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/chief_mp_office) -"xDL" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"xDU" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"xEb" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/obj/structure/window/reinforced, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - pixel_x = 12; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - pixel_x = 12 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"xEe" = ( -/obj/structure/prop/invuln/joey, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"xEh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xEs" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"xEu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"xEM" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_p) -"xEN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xFj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/lighter, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"xFr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"xFt" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"xFw" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"xFB" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"xFW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm/brig, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/perma) -"xGm" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"xGG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"xGM" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"xHa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"xHc" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"xHd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - pixel_y = -2; - req_one_access_txt = "3;22;19" - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/living/offices/flight) -"xHk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 8; - pixel_y = 6 - }, -/obj/structure/machinery/door_control{ - id = "perma_lockdown_1"; - name = "\improper Perma Cells Lockdown"; - pixel_x = -8; - pixel_y = -4; - req_access_txt = "3" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/perma) -"xHn" = ( -/obj/structure/machinery/door_control/cl/office/door{ - pixel_y = -20 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/upper/midship_hallway) -"xIg" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"xIj" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"xIp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) -"xIq" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/evidence_storage) -"xIt" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -12; - pixel_y = -28 - }, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - layer = 3.3; - pixel_x = -17 - }, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"xIQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"xIR" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES ReceptStairs2"; - name = "\improper ARES Reception Shutters"; - plane = -7 - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"xIV" = ( -/turf/open/floor/almayer, -/area/almayer/maint/upper/mess) -"xIW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/poster, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"xJc" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"xJg" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/prop/broken_arcade, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"xJj" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"xJm" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/green, -/area/almayer/shipboard/brig/cells) -"xJR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"xJT" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"xJW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"xJY" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xJZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"xKC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"xKG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door_control{ - id = "Under Construction Shutters"; - name = "shutter-control"; - pixel_x = -25 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"xKO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"xKR" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower/engine_core) -"xKX" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/obj/item/storage/firstaid/rad, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower) -"xLp" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"xLr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"xLu" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"xLD" = ( -/obj/structure/machinery/telecomms/server/presets/squads, -/obj/structure/sign/safety/commline_connection{ - pixel_y = -32 - }, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"xLG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"xLN" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"xLU" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"xMc" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - closeOtherId = "ciclobby_s"; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"xMf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_point_defense) -"xMl" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"xMp" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_four) -"xMq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xMs" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/operating_room_two) -"xME" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"xMI" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_x = 27 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"xMO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"xMR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"xNf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"xNx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"xNS" = ( -/obj/structure/machinery/telecomms/server/presets/medical, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"xNZ" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering/port) -"xOa" = ( -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"xOb" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - access_modified = 1; - name = "\improper Requisition's Office"; - req_one_access = null; - req_one_access_txt = "1;26" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"xOF" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"xOL" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"xPh" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/chief_mp_office) -"xPi" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"xPk" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"xPm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/containment) -"xPv" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/green, -/area/almayer/living/offices) -"xPL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"xPQ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"xPU" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"xQa" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"xQj" = ( -/obj/item/pipe{ - dir = 4; - layer = 3.5 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"xQr" = ( -/obj/structure/noticeboard{ - pixel_x = -10; - pixel_y = 31 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"xQs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/living/port_emb) -"xQO" = ( -/obj/item/frame/camera{ - desc = "The Staff Officer insisted he needed to monitor everyone at all times."; - layer = 2.9; - name = "broken camera"; - pixel_x = -7; - pixel_y = -6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"xQT" = ( -/obj/structure/machinery/chem_master{ - vial_maker = 1 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"xQV" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"xRc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"xRh" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link/green, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/medical_science) -"xRi" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"xRl" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"xRn" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/orbital_cannon_manual, -/turf/open/floor/almayer/red/northwest, -/area/almayer/maint/upper/u_a_p) -"xRq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc01"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = -28; - pixel_y = -23 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"xRB" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"xRG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/starboard) -"xRS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"xRT" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer1" - }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"xRU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"xRY" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/command/telecomms) -"xSn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"xSs" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"xSt" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"xSv" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/lower) -"xSw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "cryo curtain" - }, -/turf/open/floor/plating, -/area/almayer/squads/charlie) -"xSH" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north1) -"xSI" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"xSM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"xTj" = ( -/obj/structure/machinery/ares/processor/bioscan, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"xTu" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"xTx" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/u_f_p) -"xTI" = ( -/obj/structure/bed, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"xTR" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/plating, -/area/almayer/command/cichallway) -"xTX" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"xUa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"xUi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"xUn" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"xUQ" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"xVc" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = 24; - pixel_y = 24; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"xVk" = ( -/turf/open/space, -/area/space/almayer/lifeboat_dock) -"xVo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"xVF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"xVH" = ( -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"xVN" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"xVS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"xVT" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/closed/wall/almayer, -/area/almayer/living/tankerbunks) -"xWe" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"xWf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"xWp" = ( -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"xWv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"xWy" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"xWA" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/hallways/upper/midship_hallway) -"xWD" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/port) -"xWK" = ( -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/obj/structure/machinery/cm_vending/clothing/dress/corporate_liaison, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"xWT" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"xWU" = ( -/obj/item/storage/box/gloves{ - layer = 3.2; - pixel_x = 7; - pixel_y = -2 - }, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/storage/box/masks{ - layer = 3.2; - pixel_x = -7; - pixel_y = -2 - }, -/obj/item/storage/box/gloves{ - layer = 3.1; - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/storage/box/masks{ - layer = 3.1; - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/storage/box/masks{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"xXb" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/cryo_cells) -"xXg" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/oxygen/red, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"xXh" = ( -/turf/closed/wall/almayer/research/containment/wall/west, -/area/almayer/medical/containment/cell) -"xXl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"xXp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"xXy" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"xXB" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie) -"xXE" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"xXG" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/obj/item/tool/weldpack, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"xXS" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/book/manual/surgery{ - pixel_y = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"xXX" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/item/stack/sheet/mineral/uranium{ - amount = 5 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"xYh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering/starboard) -"xYj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) -"xYp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) -"xYr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"xYv" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north2) -"xYy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"xYB" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/starboard_point_defense) -"xYH" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"xYP" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"xYY" = ( -/obj/structure/sign/safety/outpatient{ - pixel_x = -17; - pixel_y = 6 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"xZm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"xZy" = ( -/obj/item/mortar_kit, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"xZB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"xZE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_s) -"xZG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/bedsheet/hop, -/obj/structure/bed, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"xZH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"xZM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"xZS" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"yam" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"yas" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/yellow{ - layer = 3.2 - }, -/obj/item/bedsheet/red{ - pixel_y = 13 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/living/port_emb) -"yat" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_a_p) -"yav" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/command/lifeboat) -"yaw" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"yaL" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) -"yaQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 9 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"yaZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"ybm" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 8; - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"ybx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"ybz" = ( -/obj/structure/machinery/brig_cell/cell_4{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"ybA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = -17 - }, -/obj/structure/transmitter/rotary/no_dnd{ - name = "Delta Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Delta Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"ybE" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/sl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"ybO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/upper_engineering/port) -"ybP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) -"ycd" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"ycl" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_s) -"ycm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"ycv" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/upper_medical) -"ycY" = ( -/obj/structure/disposalpipe/down/almayer{ - dir = 8; - id = "almayerlink_med1_req" - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"yda" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) -"ydG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"ydI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"yef" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"yei" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"yek" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"yer" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/upper/fore_hallway) -"yes" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/book/manual/chef_recipes, -/obj/item/reagent_container/food/condiment/sugar{ - pixel_x = 10 - }, -/obj/item/clothing/head/chefhat, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"yex" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"yey" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"yeG" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"yeH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"yeM" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"yeR" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - req_access = null; - req_access_txt = 19; - req_one_access = null - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"yeT" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"yeX" = ( -/obj/structure/curtain/medical, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"yeY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"yfa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) -"yfg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"yfi" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"yfj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/lobby) -"yfq" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_access = null; - req_one_access = null - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "panicroomback"; - name = "\improper Safe Room Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"yfw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"yfy" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"yfD" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) -"yfI" = ( -/obj/structure/machinery/ares/cpu, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"yfK" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 2"; - pixel_x = -24 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/cells) -"yfP" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/living/grunt_rnr) -"yfR" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"yfS" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/grunt_rnr) -"yfX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/blue, -/area/almayer/living/basketball) -"ygp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ygv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"ygX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "north_central_checkpoint"; - name = "North Checkpoint Shutters"; - req_one_access_txt = "3;12;19" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"yhC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/squads/charlie) -"yhR" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"yhZ" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/p_bow) -"yia" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"yid" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/clothing/accessory/storage/webbing, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"yij" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"yim" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"yip" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"yiu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"yiz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 6 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"yiK" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-5"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"yiQ" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"yiX" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"yjk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"yjr" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_f_s) -"yjD" = ( -/turf/open/floor/almayer/silver/southwest, -/area/almayer/hallways/upper/midship_hallway) -"yjF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"yjG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"yjW" = ( -/obj/structure/bed/chair/bolted{ - dir = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/interrogation) -"yjZ" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"ykm" = ( -/obj/structure/machinery/flasher{ - id = "Containment Cell 1"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"ykA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"ykI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"ykO" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"ykT" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"yld" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"yli" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/hallways/lower/starboard_umbilical) -"ylj" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"ylx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 8; - req_access_txt = "8" - }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"ylN" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"ylX" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/midship_hallway) -"ymf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/transmitter{ - name = "Kitchen Telephone"; - phone_category = "Almayer"; - phone_id = "Kitchen"; - pixel_x = -8; - pixel_y = 29 - }, -/obj/structure/machinery/vending/ingredients, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"ymi" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = -17 - }, -/obj/structure/bed/sofa/south/grey/left, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/lobby) - -(1,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(2,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(3,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(4,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(5,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(6,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(7,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(8,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(9,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(10,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(11,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(12,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(13,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(14,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(15,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(16,1,1) = {" -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aKQ -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -"} -(17,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(18,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(19,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(20,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(21,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(22,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(23,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(24,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(25,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(26,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(27,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(28,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(29,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(30,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(31,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(32,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(33,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(34,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -eJy -nYj -nYj -nYj -nYj -nYj -nYj -nYj -vrw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(35,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -feb -feb -feb -feb -feb -feb -feb -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(36,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -eJy -nYj -nYj -nYj -nYj -aag -feb -oLT -oog -leT -lNG -kKQ -feb -aag -nYj -nYj -nYj -nYj -vrw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(37,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -taM -hPI -hPI -hPI -hPI -hPI -feb -qRa -oog -jNT -fag -qCA -feb -hRu -hRu -hRu -hRu -hRu -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(38,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eJy -nYj -aag -hPI -naB -naB -naB -naB -mtl -nQz -nPb -fZX -dBS -nSu -cHs -xyN -kby -kYp -ftm -hRu -aag -nYj -vrw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(39,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -uDg -uDg -hPI -sUr -kOt -dWb -naB -mtl -nrq -nOC -ojp -xgQ -uPC -jqY -bUn -dJJ -dJJ -sGM -hRu -xiV -xiV -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(40,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eJy -nYj -nYj -nYj -nYj -nYj -nYj -nYj -uDg -uDg -lHk -naB -bif -pHp -lSq -dYH -fLF -kEq -mtl -mtl -mtl -mtl -bOp -xyN -gUl -tRG -jxz -xyN -igS -xiV -xiV -nYj -nYj -nYj -nYj -nYj -nYj -nYj -vrw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(41,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -uDg -uDg -uDg -uDg -uDg -uDg -uDg -uDg -aPN -lrr -naB -sUr -rAn -iBo -vPf -fvA -qPD -iUw -asS -bXE -lDh -bjk -xyN -xyN -xyN -xyN -xyN -swU -pnh -xiV -xiV -xiV -xiV -xiV -xiV -xiV -xiV -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(42,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -uDg -grk -mXa -xkc -oGj -pHq -xkc -mkC -nlh -rGr -naB -naB -naB -naB -naB -ttn -qPD -qPD -qPD -qPD -quJ -rdA -qof -oTh -gEs -rwe -qcC -hZw -xYr -rbf -qcC -cXE -iUh -qcC -qcC -nnZ -xiV -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(43,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -eJy -nYj -aag -uDg -mXa -xkc -mXa -vAg -gxI -iQw -bBU -xkc -lfV -naB -sUr -lvK -iBo -piK -fvA -qPD -wZL -ffg -ffg -wsh -jUd -xkd -xkd -xkd -xkd -xkd -xkd -lRt -tsE -gfx -hmA -hmZ -oDh -oDh -qcC -xiV -aag -nYj -vrw -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eJy -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -vrw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(44,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -uDg -uDg -mXa -xkc -hvd -hvd -hvd -hvd -hvd -mxk -eyD -naB -lbF -pHp -lSq -poV -qXE -qPD -sPF -qPD -qPD -uQm -xFW -xkd -teE -xJT -xkd -ljS -xkd -xkd -xkd -xkd -xkd -xkd -xkd -qcC -oDh -xiV -xiV -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(45,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -taM -aag -uDg -vTV -mXa -grk -hvd -cUI -sFS -yjW -hvd -cQG -rFh -naB -sUr -tbs -cDe -naB -naB -fdT -vZT -xHk -qPD -iQd -gmI -xkd -sYQ -uLV -aQa -vlM -iYQ -vsQ -moB -oWS -fNs -vLT -xkd -jwB -oDh -qcC -xiV -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(46,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -taM -aag -uDg -nFC -xkc -xyZ -hvd -wrz -ehl -ehl -sHA -cQG -iOy -naB -naB -naB -naB -naB -naB -nVR -nVR -nVR -sqU -aXv -nVR -xkd -xik -bjQ -xkd -kmd -tUx -ebd -tHS -hcG -jVa -luK -xkd -hql -oDh -qcC -xiV -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -eJy -nYj -nYj -nYj -nYj -nYj -aag -dqw -mjA -mjA -dqw -aag -aag -aag -aag -aag -aag -aag -aag -aag -dqw -mjA -mjA -dqw -aag -aag -aag -nYj -nYj -nYj -nYj -nYj -vrw -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(47,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -taM -aag -uDg -xkc -mXa -hvd -hvd -iRp -iRp -iRp -hvd -uUO -xit -drX -kRI -yaL -cOZ -sDy -wFs -ruH -kIT -ezV -pwg -phN -gjR -xkd -xkd -xkd -xkd -umW -iOD -iOD -tHS -eTY -tUx -xJm -xkd -xkd -qcC -oDh -xiV -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -nBJ -nBJ -nBJ -nBJ -aag -dqw -uwv -uwv -dqw -aag -aag -aag -aag -aag -aag -aag -aag -aag -dqw -uwv -uwv -dqw -aag -aag -aag -wid -wid -wid -wid -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(48,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -taM -aag -lrE -xkc -mXa -hvd -dym -gwd -gIO -gIO -hvd -bQN -oyC -bKI -xhU -xhU -jCX -lBQ -oIM -nEk -nEk -nEk -nEk -cMl -fjD -xkd -erZ -wab -xkd -wKJ -jVa -jVa -tHS -fAy -tUx -gQU -qYP -xkd -qcC -oDh -cPj -aag -bDa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -nBJ -kJc -jFt -bAs -bAs -bAs -mjA -mjA -bAs -bTT -bTT -bAs -aag -aag -aag -aag -aag -bAs -bAs -mjA -mjA -bAs -bTT -bTT -bTT -bAs -xME -jYM -wid -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(49,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -taM -aag -lrE -mXa -xkc -hvd -dym -eWm -kPE -mtn -rBC -cQG -cQG -tCP -rJp -rJp -lBQ -rJp -lsH -vEZ -vEZ -vEZ -cAh -cMl -dwS -kMH -tUx -iTI -crB -eZH -jVa -jVa -tHS -hcG -ycm -qCo -ppB -xkd -vdz -oDh -cPj -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -nBJ -iFl -grv -bBA -pRq -tXF -hiG -hiG -hiG -bHI -bJS -bAs -aag -aag -aag -aag -aag -bAs -bHP -qZr -qZr -hiG -acr -ilI -hvT -bBA -rXD -trl -wid -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(50,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -taM -aag -lrE -jtO -xkc -lrq -lrq -lrq -lrq -lrq -lrq -lrq -jjF -ibj -tpn -tpn -oTV -tpn -tpn -lSS -fgy -whs -wde -cMl -qyM -xkd -qFu -xkd -xkd -vdM -jVa -wtM -moB -mrq -cyZ -jVa -bhQ -xkd -rfB -qcC -cPj -aag -xRT -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -nBJ -vGs -mFQ -bBA -tZF -tXF -hiG -hiG -hiG -bHP -bJT -bAs -bAs -bAs -bAs -bAs -bAs -bAs -bNl -qZr -qZr -hiG -bHP -ilI -mGP -bBA -yhZ -ocb -wid -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(51,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -taM -aag -uDg -grk -qsp -lrq -kEc -chv -cAy -uhE -vKB -lrq -vjB -pUn -tpn -wEn -cak -jmr -tpn -ckx -uCU -dmH -wde -wSm -dUD -xkd -erZ -yfK -xkd -eZH -jVa -jVa -moB -moB -woH -rxD -moB -xkd -gNZ -qcC -xiV -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -nBJ -spO -aEz -cVE -lZY -tXF -hiG -hiG -hiG -nIO -bHP -avw -xwD -gzd -uYL -xwD -gzd -avw -bHP -qZr -qZr -hiG -adM -ilI -bTL -cVE -sGK -hLu -wid -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(52,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -taM -aag -uDg -xpj -mXa -lrq -mFg -pAI -pAI -pAI -pAI -wBV -cQG -aGF -tpn -jya -cak -jmr -tpn -toj -wde -nEk -nEk -wSm -kNt -kVZ -tUx -iTI -mbQ -eZH -tUx -vrx -tUp -lbs -eZH -tUx -cXi -xkd -ttB -qcC -xiV -aag -kCg -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -nBJ -aEz -xAu -bBA -jxj -tXF -hiG -hiG -mmp -tGI -bHP -avw -lZY -jQT -uCD -kKD -bTL -avw -bHP -qZr -qZr -mmp -tGI -ilI -mUt -bBA -aYr -sGK -wid -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(53,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -lrE -vOM -mXa -lrq -kui -uqo -pId -qMD -uqo -lrq -hwg -fkF -tpn -guL -xIq -jmr -tpn -fAw -gcl -mbX -lwi -sLA -lqT -xkd -qFu -xkd -xkd -icM -thL -thL -thL -thL -nYd -thL -jVa -fgR -bUg -oDh -cPj -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -nBJ -ldF -eox -bBA -vEQ -oYC -wZx -pbC -sOR -sOR -sOR -gAE -mdw -jbX -kNY -jbX -gyK -gAE -sOR -sOR -sOR -pmz -wZx -vsZ -bxt -bBA -vNw -uMf -wid -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(54,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -lrE -etN -xkc -lrq -sTZ -pAI -pAI -pAI -pAI -glh -cQG -pTC -tpn -tpn -tpn -tpn -tpn -cJy -kor -tAJ -wde -cMl -rIX -xkd -erZ -ggN -xkd -qJZ -ohJ -thL -thL -uAL -liZ -rUk -jVa -fgR -jbY -izl -cPj -aag -rSw -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -nBJ -ldF -aEz -bBA -gPs -aqu -aqu -tnn -tCK -tCK -tCK -avw -hnv -kDX -mwc -eEj -gtw -avw -tCK -tCK -tCK -lbo -aqu -aqu -nPD -bBA -sGK -vOG -wid -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(55,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -lrE -mXa -xkc -lrq -dEX -fxJ -fxJ -fAr -qmU -lrq -hxN -mKm -lut -cmM -wYg -jPo -cmM -oKK -tyX -tyX -dix -cMl -nlz -vNp -tUx -iTI -xeZ -eZH -ohJ -thL -thL -ezX -uaU -rUk -xaM -fgR -hIG -qcC -cPj -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -nBJ -vCE -ldF -bBA -hnJ -amg -amg -elA -alU -alU -alU -alU -alU -alU -alU -alU -alU -alU -alU -alU -alU -bzu -amg -amg -mYc -bBA -sGK -vNw -wid -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(56,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -uDg -xkc -xkc -lrq -iwV -iwV -iwV -iwV -lrq -lrq -qrb -mKm -mXf -cmM -crf -yiQ -bgx -nEk -nEk -nEk -nEk -sEC -jqM -xkd -qFu -xkd -xkd -pns -omt -omt -omt -omt -uxa -iZU -nhG -xkd -oDh -uqg -xiV -aag -dNS -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -nBJ -axd -aEz -bBA -hnJ -amg -amg -tUC -alU -oDS -lCZ -rgr -alU -kQD -pHC -aUT -alU -kvB -cLO -urj -alU -lZL -amg -amg -mYc -bBA -wJg -mEQ -wid -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(57,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -uDg -mXa -old -cQv -oZv -mFk -pyX -vFt -cQv -cQv -hlZ -xRU -cmM -cmM -efq -cOJ -cmM -tzd -tzd -sgi -wde -wSm -rIX -xkd -erZ -exH -xkd -eZo -thL -thL -thL -thL -tov -thL -sUs -xkd -gNZ -qcC -xiV -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -nBJ -bXg -aEz -bBA -vxD -aqu -tkq -elA -alU -hOL -aoi -kPo -lci -pcQ -aoi -kPo -lci -pcQ -aoi -xmd -alU -doO -tkq -aqu -jfw -bBA -uoO -vNw -wid -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(58,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -lrE -mXa -wJC -cQv -cBw -kde -kde -ajj -tPK -cQv -crV -hyg -kTp -toA -eXt -rIn -kTp -qCg -tyX -eNR -wde -wSm -ybz -rrz -tUx -iTI -dhl -lXb -thL -oXp -thL -thL -tov -thL -xhx -fgR -oDh -qcC -cPj -aag -mhL -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -nBJ -fhT -aEz -bBA -sim -amg -bEw -bFk -itI -let -bJX -bJX -bKs -cRx -wrp -dzq -bNf -bJX -bJX -let -itI -bFk -bPq -amg -mYc -bBA -sGK -hCi -wid -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(59,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -lrE -mXa -bgD -cQv -heq -qjx -quj -vgi -uQE -cqJ -ghO -hyg -kTp -bnD -hVZ -lYG -kTp -bDd -kgC -fDN -uCk -fTt -qyM -xkd -qFu -xkd -xkd -thq -ezX -pqF -rUk -thL -iFc -thL -tUx -fgR -qcC -hIG -cPj -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eJy -aag -aag -nBJ -dKS -rRL -bBA -ugQ -amg -aoa -bTL -alU -tba -bJY -aoi -bLh -rUM -bMP -wst -bLh -aoi -bNo -cOf -alU -lZY -aoa -amg -bbW -bBA -wVe -sGK -wid -aag -aag -vrw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(60,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -lrE -xkc -jtO -cQv -heq -qjx -lEe -pGT -pGT -gDb -ksm -fwS -cmM -oeZ -qvT -oeZ -oeZ -frW -vEZ -eNR -wde -cMl -dUD -xkd -erZ -qHw -xkd -cDG -ezX -prY -rUk -thL -thL -thL -tUx -fgR -qcC -aCA -cPj -aag -sdF -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -nBJ -nBJ -aEz -fpn -bBA -oVe -aqu -bEx -tSI -alU -wDz -bJY -sta -rxK -vtD -bLh -xmd -pfa -iLq -bNo -qht -alU -rPo -bEx -aqu -sGG -bBA -eCj -sGK -wid -wid -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(61,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -taM -aag -uDg -xkc -xkc -cQv -heq -qjx -vyH -ajj -uQE -cqJ -ghO -hyg -kTp -aCM -hVZ -qRH -oeZ -emp -emp -emp -flo -cMl -qFE -wDC -tUx -iTI -slh -pgP -thL -thL -thL -thL -thL -thL -tUx -xkd -qcC -vhA -xiV -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -nBJ -ldF -ldF -xiP -bBA -kwF -amg -ddz -bTL -alU -mRe -fYa -vVr -bLi -kxI -kMQ -bZE -bNg -dpb -fYG -mDo -alU -lUo -uwH -amg -iGq -bBA -gHH -sGK -hCi -wid -aag -xOa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(62,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -taM -aag -uDg -nFC -xkc -cQv -heq -qjx -sBg -uGN -uQE -cQv -jVG -hyg -kTp -eYz -hVZ -nSV -oeZ -xNx -tyX -wGs -skj -tXc -jqM -xkd -qFu -xkd -xkd -cvH -thL -thL -thL -thL -thL -thL -tUx -xkd -qcC -oDh -xiV -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eJy -nYj -nYj -nYj -aag -nBJ -nBJ -ldF -aEz -sIH -bBA -bBA -rHS -bBA -bBA -alU -bIy -alU -alU -alU -msa -alU -fTc -alU -alU -alU -pzW -pzW -pzW -pzW -pBO -pzW -pzW -iVm -vNw -sGK -wid -wid -aag -nYj -nYj -nYj -vrw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(63,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -taM -aag -uDg -mXa -qsp -cQv -kJq -qjx -kde -ajj -fAB -cQv -gQT -hyg -kTp -ftp -hVZ -wUN -oeZ -smZ -mTN -rNe -iLG -jXd -rIX -xkd -erZ -ikK -xkd -pgP -tUx -tUx -tUx -tUx -tUx -eET -oEE -xkd -gNZ -qcC -xiV -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -nBJ -nBJ -nBJ -nBJ -ldF -ldF -bos -bos -bos -boZ -mnk -mzX -kcp -bWJ -nar -alU -sYR -koi -bLs -kLo -aoi -pVo -rsI -alU -qFk -hyL -wKx -xLr -scI -uBS -sDx -sDx -sDx -vNw -sGK -wid -wid -wid -wid -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(64,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -bdH -bdH -taM -uDg -uDg -xkc -lfV -cQv -dzG -kde -fAu -cQv -tlk -cQv -jjF -mKl -oeZ -oeZ -qvT -oeZ -oeZ -qiG -oHV -emp -vpB -wSm -slf -bli -tUx -iTI -fZD -pgP -uVV -kDu -cHk -rkV -rkV -cHk -mgN -cHk -pRs -qcC -xiV -xiV -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -nBJ -nrL -ldF -aEz -ldF -oCk -bos -gpO -mnk -bKP -mnk -cSp -kcp -nIZ -gCC -alU -iKo -axP -bLs -wcl -aoi -tdq -fxz -alU -ggX -hyL -fhA -gqN -gqN -gqN -scI -vLE -sDx -vNw -fJu -vNw -rdg -fpv -wid -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(65,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -bdH -bdH -taM -uDg -hzN -mXa -oLa -cQv -iIY -qsG -byV -cqJ -fZY -oQq -jKb -hzG -eyD -ymi -cDN -oSv -otU -iBB -wZY -emp -wde -wSm -lqT -emp -emp -emp -emp -mGd -emp -emp -cHk -bjw -qhi -wSd -tZk -cHk -uxb -oDh -qcC -xiV -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -nBJ -cwu -ldF -aEz -ldF -frU -bos -gpO -kcp -kcp -cJJ -kcp -kcp -ira -kcp -alU -alU -alU -bTX -alU -tGq -alU -alU -alU -xlw -dHA -sOB -ouo -bbB -bbB -bbB -rBF -sDx -mXm -vNw -sGK -sGK -hCi -wid -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(66,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -bdH -bdH -taM -uDg -fHb -mXa -vxM -vxM -vxM -vxM -vxM -vxM -liS -cQG -cQG -hzG -eyD -seS -cDN -oFY -oFY -yjG -jGy -jcf -wde -cMl -sPj -emp -lwg -tyX -mDc -ksg -tyX -gwH -cHk -hUd -vUI -tgJ -wVh -cHk -cHk -oDh -qcC -xiV -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -nBJ -aEz -aEz -ldF -aEz -sxS -bos -gpO -kcp -hDM -sCe -sCe -deh -isc -kcp -oGk -oGk -tqf -pHF -vYd -ghF -eSp -ghF -sYt -iCr -oJU -mdk -mdk -mdk -mdk -mdk -mte -bSv -bSv -bSv -bSv -bSv -sGK -wid -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(67,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -bdH -bdH -taM -uDg -xkc -mXa -vxM -siH -gwX -iFx -dPR -wJh -ghO -cQG -cQG -hzG -nPL -wIN -cDN -oFY -cQL -npO -jGy -jcf -wde -cMW -qEy -nkg -rQc -oDy -oDy -wsq -vxK -cXP -bsB -csy -csy -bWQ -deH -szG -cHk -qcC -kIf -xiV -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -nBJ -ldF -ldF -vjn -dJE -kum -bos -mnk -kcp -vSL -ujD -etm -npN -npN -kcp -iXk -mYt -jsR -vPW -vyB -vyB -vyB -vyB -sYt -pRA -nnq -sje -sje -sje -sje -sje -jhS -msX -bTH -foN -gvs -bSv -hLu -wid -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(68,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -eJy -aag -uDg -lyj -xkc -vxM -tQi -wee -wee -fRS -wJh -cok -ksm -tVM -dwK -wBH -oSC -uFq -wsl -wSu -xIW -niy -emp -dIt -vEZ -lAP -emp -lhk -gPh -oZr -cAh -pyj -jPP -cHk -nqA -cXh -lOw -mJo -fyI -cHk -qcC -ivP -xiV -aag -vrw -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aLE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -nBJ -spO -ldF -bos -bos -bos -bos -mnk -kcp -pPl -cXs -wGX -bFr -ppe -kcp -scI -ghF -ghF -jak -jdC -jdC -jdC -jdC -tCz -rMU -ktY -sje -sje -sje -sje -sje -jhS -bSv -tjw -bTH -gZU -bSv -sGK -wid -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bTg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(69,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -uDg -oKt -qsp -vxM -dph -lew -lew -lew -dDU -wXz -ozK -nGB -eyD -eyD -tsX -tsX -yfj -oAP -tsX -tsX -emp -vyi -vyi -vyi -emp -emp -emp -emp -emp -wIC -xDE -wIC -rWn -rWn -cHk -cHk -rKJ -cHk -yam -aCA -xiV -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -nBJ -aEz -ldF -bos -pAn -udg -bos -rIw -kcp -pET -lDo -syY -mRy -kvO -guO -kQz -kQz -kQz -unW -scI -scI -scI -scI -sYt -gqN -nnq -sje -sje -oiX -sje -sje -rqQ -bSv -ifb -bTH -bSv -xVT -mEQ -wid -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(70,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -uDg -nFC -xkc -vxM -sbP -sbP -sbP -sbP -wJh -mRA -opE -eyD -eyD -dXc -kQq -sZS -vka -uwN -rTX -kaT -oAj -kaT -kaT -kaT -kaT -cDl -ajL -ssS -vUP -wIC -flV -djx -izQ -bqu -wIC -whQ -bHu -cHk -iXL -hIG -xiV -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -nBJ -ldF -aEz -bos -lBl -wCD -bos -gpO -kcp -sih -jMN -sCe -sCe -oSa -kcp -scI -ghF -ghF -pHF -scI -ghF -ghF -ghF -sYt -gqN -gOz -sje -sje -sje -sje -sje -jhS -bSv -eit -eit -bSv -xyJ -sIu -wid -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(71,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -uDg -xkc -mXa -vxM -jyV -jbZ -tBe -bHY -wJh -mRA -psf -pfd -gUp -pHO -hUW -hiM -rWs -qNR -hiM -hiM -hiM -hiM -rWs -rWs -rQt -cgT -xuc -rFu -tue -wIC -mHz -jPS -jPS -fuK -wIC -aDt -jTU -cHk -oDh -uIe -xiV -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -nBJ -ldF -aEz -rqv -gpO -gpO -bos -gpO -kcp -kcp -kcp -oHF -kcp -kcp -kcp -scI -vyB -vyB -pHF -scI -ghF -vyB -vyB -sYt -kRk -nnq -sje -sje -sje -sje -sje -jhS -bSv -cop -cop -bSv -thi -sGK -wid -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(72,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -uDg -xkc -mXa -vxM -vxM -vxM -vxM -vxM -gaJ -pbN -qFX -cAR -qsq -hUW -dHd -vka -cei -wGq -mqP -mqP -mqP -mqP -lWH -mqP -klA -xWv -aQb -vka -kEZ -wIC -lwe -qFi -vAG -vjZ -wIC -cHk -cHk -cHk -oDh -bUg -xiV -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -nBJ -ldF -aEz -bos -oZz -gpO -bos -gpO -nEZ -kcp -dyH -gZK -sCe -nmC -kcp -xsU -ghF -vyB -pHF -scI -ghF -vyB -ghF -sYt -iCr -oJU -jjl -jjl -jjl -jjl -jjl -mte -bSv -jiS -mnS -bSv -vNw -vNw -wid -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(73,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eJy -nYj -nYj -nYj -aag -aag -uDg -xpj -xkc -iHA -xkc -eyZ -cAR -cwN -ler -jvc -luc -cAR -tgo -uwN -vka -ekp -cJS -awz -awz -cZh -cZh -cZh -awz -awz -eYN -klA -mPj -omy -iIJ -wIC -kQK -jED -jfY -aCH -wIC -lyt -xyb -cNb -oDh -qcC -xiV -aag -aag -nYj -nYj -nYj -vrw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nBJ -nBJ -nBJ -nBJ -nBJ -aEz -ldF -bos -bos -ecD -bos -mnk -ncj -kcp -sUN -wdf -sCe -kcp -kcp -sDx -ghF -vyB -pHF -scI -ghF -vyB -ghF -sDx -rZN -hIw -uwC -nTc -ybx -ybx -ybx -xBB -bSv -bSv -bSv -bSv -sGK -vNw -wid -wid -wid -wid -wid -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(74,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -adG -adG -adG -adG -adG -adG -rxf -pzF -iHA -mXa -mXa -cAR -cAR -cAR -pKU -bau -cAR -tHE -mwA -cei -lcH -awz -awz -slH -iuW -uNc -aeF -vcP -awz -awz -wpv -klA -jHh -kEZ -wIC -wTY -jES -ipM -riK -wIC -oDh -qcC -cNb -qcC -pZY -tuA -tuA -tuA -tuA -tuA -tuA -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nBJ -ldF -jsE -rdN -aEz -aEz -aEz -ldF -sXq -rdN -qwe -mnk -jHW -kcp -qNS -xZm -eqR -kcp -kcp -sDx -hIF -vyB -pHF -scI -ghF -vyB -kEW -sDx -dhV -vyB -xXG -pLi -vUB -vyB -scI -xRB -eYU -vNw -jdP -sGK -vNw -vNw -vNw -sGK -gDX -sGK -wid -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(75,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -adG -ePB -ePB -fsi -lTd -akC -akC -akC -akC -gEp -mXa -cAR -sVq -lHT -jvc -gzb -cAR -ohc -wSR -pCc -awz -awz -tjb -edQ -edQ -edQ -edQ -edQ -pQM -awz -awz -dor -laO -dAy -wIC -gPE -vAG -xPh -rdb -wIC -oDh -oob -kCi -kCi -kCi -kCi -stg -sQg -sCY -mIg -tuA -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fwK -qJH -uaG -uaG -uaG -uaG -uaG -uaG -uaG -uaG -bcm -bcm -kcp -kcp -kcp -kcp -kcp -kcp -kcp -sDx -lQB -qax -jTH -xcQ -lQB -qax -lQB -sDx -sDx -sDx -sDx -sDx -sDx -sDx -sDx -sDx -sDx -rgt -rgt -kWZ -rgt -rgt -rgt -rgt -rgt -tNA -hAh -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(76,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -adG -vPL -ePB -fsi -qDi -joT -bbV -bzz -akC -qMG -mXa -cAR -ofj -gym -gSz -vrO -cAR -ett -pEB -kEZ -qwp -boK -sBC -rHc -xhZ -xhZ -xhZ -rHc -uym -kpH -qwp -ett -jHh -kEZ -wIC -wIC -kYu -wIC -wIC -wIC -oDh -fDT -kCi -scP -mTX -xjA -jsD -sQg -sCY -uZX -tuA -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fwK -oyh -uaG -eft -ifn -dNh -oov -nSF -wFv -uaG -jiO -nbb -qrH -aTU -xJY -sIt -vDT -oCQ -eCm -qBK -aYt -btO -btN -vDT -aYt -btO -aYt -mLJ -vDT -igp -png -wPJ -hhQ -xJY -kdx -vDT -hKd -rgt -nTV -qwc -pYF -aOu -lIz -nZw -rgt -iog -hAh -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(77,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -adG -ePB -ePB -fsi -vNe -etY -adu -aHZ -akC -nFC -mXa -cAR -foj -quf -vaS -umC -cAR -heR -wsD -kEZ -qwp -fHB -sBC -iwW -sTm -oSq -sTm -tdT -uym -uAm -qwp -qsq -uwN -eDf -wIC -wjY -aTg -pbS -pOm -wIC -qcC -qcC -kCi -fqF -qfa -btD -mIn -sQg -sCY -mIg -tuA -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dyD -ppU -dyD -yli -knF -axH -knF -wNy -jhc -xAx -btO -aYt -bzQ -bAS -baG -bDI -btO -bhT -bKu -btO -aYt -udl -tIv -ksW -ksW -rer -bwn -bVM -bVM -bAh -bZj -bVM -bwn -bVM -bVM -bwn -bVM -fGK -kUA -rCG -xrV -hRw -xrV -pCx -puv -eIt -jQj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(78,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -adG -adG -amz -amz -aly -brQ -bbZ -btv -akC -rxa -mXa -cAR -cAR -pdY -vaS -qcL -cAR -par -wsD -kEZ -qwp -bIl -sBC -iwW -sTm -gwR -sTm -tdT -uym -cUM -qwp -gxA -uwN -kEZ -wIC -lcW -aTg -wIC -wIC -wIC -qcC -foQ -kCi -caE -ssZ -btD -awC -uMj -uMj -tuA -tuA -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dyD -ppU -dyD -nDb -jhc -ccL -rDf -xZM -mnc -xAx -btO -aYt -aYt -aYt -aYt -bdK -aYt -bhU -bjR -aYt -aYt -udl -bHB -vDT -btO -rze -aYt -aYt -aYt -bAi -aYt -aYt -aYt -aYt -aYt -aYt -btO -pBd -wdQ -ybP -dhQ -dcx -mLg -wAK -jQj -vDs -jQj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(79,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aeE -lxU -eCY -ikW -ikW -fTw -adu -aHZ -akC -owo -qWD -thO -cAR -jwO -cXV -rNy -cAR -hJO -pEB -kEZ -awz -tsY -kly -mWV -jZu -sco -fqO -lIp -sNE -ckg -awz -dhP -jHh -iIJ -wIC -knR -aTg -jIT -wIC -aCA -qcC -qcC -kCi -muG -btD -btD -kXC -kXC -wnO -fhJ -pun -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dyD -ppU -dyD -nDb -jhc -jhc -jhc -vOV -eAm -xAx -btO -vFf -vFf -vFf -vFf -vFf -vFf -vFf -vFf -vFf -vFf -gWw -bHB -vDT -btO -pHP -vFf -vFf -vFf -vFf -vFf -vFf -vFf -vFf -vFf -vFf -btO -pBd -hbA -uky -mLg -mLg -mLg -wAK -jQj -vDs -jQj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(80,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aeE -pUE -qel -adu -adu -adu -adu -aHZ -akC -pek -crT -pek -cAR -rJg -jrg -elS -cAR -vru -pEB -kEZ -qwp -rHX -sBC -iwW -dCr -gwR -sTm -tdT -uym -pxc -qwp -eLz -laO -qQI -wIC -yeR -aTg -nNg -wIC -pjz -iCw -pjz -kCi -hmr -btD -btD -btD -btD -stA -fpa -pun -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dyD -ppU -dyD -iZZ -nxi -twS -jBf -rhE -gWm -pGR -bvf -bdL -bvf -bvf -bvf -bdL -bvf -bvf -bvf -bvf -bvf -bvf -bIe -nnn -bvf -bvf -bvf -bvf -bvf -bvf -bvf -bdL -bvf -bvf -bvf -bdL -bvf -jEQ -gKo -qbY -siR -nuF -vdH -dbU -jQj -vDs -jQj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(81,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aeE -jsv -aTJ -mzo -mzo -etY -adu -hxG -akC -ibP -loE -cmr -cAR -cAR -cAR -cAR -cAR -pWR -pEB -kEZ -qwp -skX -sBC -iwW -dCr -oSq -sTm -tdT -uym -pxc -qwp -ett -jHh -hua -wIC -wIC -wIC -wIC -wIC -hrI -ioM -xCy -kCi -wXV -vqC -btD -lXn -lXn -uMp -ekt -pun -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fwK -uDq -uaG -rJw -ifn -wjO -lZU -nSF -ifn -uaG -hSS -bHB -vDT -vDT -vDT -qfJ -vDT -vDT -vDT -vDT -vDT -vDT -vDT -vDT -vDT -vDT -vDT -vDT -vDT -vDT -vDT -kKV -vDT -vDT -vDT -bHB -nQf -rgt -udc -hYK -cMQ -xXg -lIz -nZw -rgt -qaQ -hAh -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(82,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -adG -adG -amz -amz -aly -fCJ -adu -cqQ -pfg -txy -rbp -kIK -pLH -hiM -hiM -fWr -kaT -pHO -wsD -kEZ -qwp -jeW -sBC -rHc -lAy -wjq -wjq -rHc -uym -pxc -qwp -qsq -uwN -qGB -kaT -aub -hXm -fZq -lTn -sNd -twQ -twQ -tED -bqT -vZv -vjK -awC -uMj -uMj -tuA -tuA -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fwK -qJH -uaG -uaG -uaG -uaG -uaG -uaG -hte -lma -vDT -bHB -vDT -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -puI -aYt -aYt -aYt -aYt -bfY -baR -bfJ -btO -dTI -btO -aYt -vDT -bHB -vDT -bcm -hOV -hOV -hOV -hOV -hOV -hOV -hOV -bQT -hAh -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(83,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -adG -ePB -ePB -fsi -lTd -fTw -adu -nlU -akC -oUt -cmr -iPq -hVk -vka -vka -mPj -mIy -eEw -rTk -dAy -awz -awz -teS -fCV -uAi -fCV -fCV -fCV -cyt -awz -awz -vvk -mPj -rWs -inh -ewr -lPC -mgy -xUQ -tVx -feG -pPy -kCi -hmr -btM -vjK -mQa -sQg -sCY -mIg -tuA -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -kRx -eWs -wKt -wym -fVL -hJH -kTo -tea -jJg -vDT -bHB -nUN -vFf -ecY -aYt -bfJ -btO -btO -btO -btO -aYt -bcm -bcm -btG -btO -btO -btO -btO -aYt -bBN -bcm -eJM -vFf -sbB -bHB -btO -bcm -sCW -nvX -tTC -jdu -tWd -aPe -hOV -ygv -kyP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(84,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -adG -vPL -ePB -fsi -qDi -sFT -geY -pZA -akC -akC -hVk -xVo -xoB -xoB -pnU -klA -jHh -vka -cei -vNf -csM -qwp -rHE -kBH -aAq -bJu -mGe -gZE -tAr -qwp -wuV -eUW -klA -vka -jHh -cei -pfZ -xTx -xTx -gCM -tTF -xTx -kCi -rUE -pgk -xjA -phB -sQg -sCY -uZX -tuA -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -klT -eWs -mtX -tWR -usW -goY -eyr -qoW -kXs -vDT -bHB -udl -vDT -rze -aYt -bfK -aYt -aYt -aYt -aYt -aYt -anW -aYt -aYt -aYt -aYt -aYt -aYt -aYt -btO -sEq -udl -vDT -rze -bHB -aYt -bcm -xsQ -tTC -tTC -tTC -tTC -tTC -mOS -uKH -kyP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(85,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -taM -adG -ePB -ePB -fsi -vNe -akC -akC -akC -akC -ehM -cmr -iPq -oQJ -xoB -xoB -vvk -jHh -cei -sIq -awz -awz -awz -jKF -awz -rPd -awz -ksG -awz -jKF -awz -awz -awz -fXK -klA -jHh -kEZ -xTx -xTx -hrI -tVx -feG -bxY -kCi -kCi -kCi -kCi -mIn -sQg -sCY -mIg -tuA -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -xzB -bfs -bYW -bYW -bYW -bYW -jax -exv -kXs -vDT -bHB -emY -rII -iAt -oFi -lyY -rII -syB -oFi -lyY -rII -syB -oFi -lyY -rII -syB -oFi -lyY -rII -syB -oFi -oUs -rII -cdH -bHB -bBN -bcm -uPQ -tTC -tTC -tTC -tTC -gzN -hOV -uXm -kyP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(86,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -taM -adG -adG -adG -adG -adG -adG -ltw -cmr -twq -cmr -cmr -iPq -oQJ -vSX -xoB -hJO -uwN -khW -awz -awz -awz -awz -kov -kKq -hEu -gAl -jmf -cEk -wba -awz -awz -awz -awz -vYJ -uwN -kEZ -xTx -bbN -hrI -lIQ -noy -rcG -oAU -feG -kfB -tuA -tuA -tuA -tuA -tuA -tuA -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -xzB -bfs -rEP -czP -rtz -bYW -mAc -bzX -kXs -vDT -bHB -sbN -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -jYL -bHB -aYt -bcm -vKI -tTC -hhd -ybm -ffq -rsV -hOV -mLN -kyP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(87,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -cZe -cmr -lSX -psy -snx -snx -fLt -cmr -imw -xoB -jPe -hmp -awz -awz -wyf -rrn -awz -ibE -cEk -fRo -vIu -rSs -cEk -rGf -awz -xXS -njY -awz -ceE -mmi -oLG -xTx -rgY -ioM -abn -ioM -lIQ -wkb -xZH -mSr -nLp -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -xzB -bfs -lEi -jEu -tZP -bYW -cHp -cHp -tGH -vxH -bHB -lTJ -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -ldB -bHB -btO -bcm -kQr -tTC -tTC -tTC -tTC -tTC -hOV -uKH -kyP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(88,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -cZe -cCL -vDz -kcH -kcH -kcH -kcH -kcH -kcH -kcH -mER -qnh -jmf -awz -pNx -pNx -awz -xTR -awz -vsv -awz -asb -awz -xTR -awz -pNx -pNx -awz -iHw -qnh -cCX -mKq -dHZ -dHZ -aES -aES -aES -aES -lIQ -xZH -nLp -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -onv -bfs -oQX -jEu -jEu -iEu -jEu -jEu -vIr -vDT -bHB -bvy -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -ruJ -bHB -btO -bcm -qhG -krJ -jOt -tTC -tTC -tTC -hOV -uKH -kyP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(89,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -cZe -cZe -cZe -cZe -iPq -cmr -kcH -kcH -kcH -kcH -mgI -eqN -gbk -aKa -qnh -oTa -nlE -hIx -hIx -xuO -hIx -wvO -qnh -xuO -aKa -wvO -hIx -xuO -hIx -hIx -nRV -ehf -qnh -aKa -oRg -aGr -eDu -pJJ -hXr -lHm -aES -hrI -tVx -nLp -nLp -nLp -nLp -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -xzB -bfs -slc -jEu -gnz -jWG -xMI -lKI -xPQ -vDT -bHB -oXy -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -hKp -bHB -vDT -bcm -gOk -tTC -tTC -tTC -tTC -bjg -hOV -pJa -kyP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(90,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -taM -aag -aag -cZe -ivu -gSy -ltw -iPq -cmr -kcH -pXf -lcM -eYQ -eqN -dmA -hyQ -bad -fNT -mBN -tJE -miE -dCK -dEw -uMG -uMG -xsj -kSR -bYX -pAo -pAo -tJE -fYf -uCW -ttC -mBN -sQd -niH -xpq -sDo -kVg -iTD -vCO -vCO -jxB -hrI -tVx -hrI -hrI -hrI -nLp -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -rBl -bfs -bfs -yfq -bfs -bfs -eWs -eWs -eWs -vDT -bHB -sbN -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -jYL -bHB -kca -hOV -hOV -tTC -tSm -tcd -tTC -rsV -hOV -pJa -kyP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(91,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -taM -aag -aag -cZe -nHu -sit -snx -oVY -cGA -kcH -rtR -nPs -vEj -nPs -rJD -hyQ -mgU -xWf -wVW -lOz -azL -oYZ -cUz -wVW -wVW -wVW -wVW -wVW -wVW -wVW -rNR -fTR -gII -sfM -wVW -rMc -xxP -mKq -qCy -rpp -vCO -vCO -vCO -jxB -gUu -dWc -lVW -kcs -rDH -nLp -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -jyK -eWs -dtY -xzB -hnb -yeT -jYq -nNc -eWs -wtR -bHB -lTJ -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bFJ -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -ldB -bHB -fIz -lbL -xKG -gyH -rSx -dCz -tTC -lDA -hOV -pJa -kyP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(92,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -taM -aag -aag -cZe -lSX -nRE -cmr -cmr -sWw -kcH -egB -iuy -jaV -yiX -nrb -hyQ -oEj -kHE -wVW -wVW -tvO -wVW -wVW -wVW -prR -jTz -wVW -eRl -xIt -wVW -wVW -wVW -iWj -wVW -wVW -khT -aJQ -pQy -dqP -tDy -wRG -dqP -tDy -jxB -azG -qwq -pYQ -tVx -hrI -nLp -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -rBl -wWi -xzB -rBl -ipk -rBl -xzB -rBl -qLB -udl -bHB -bvy -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -ruJ -bHB -eDj -lbL -iNR -uCR -tTC -tTC -tTC -fca -dws -xee -kyP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(93,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -taM -cZe -cZe -cZe -vfS -cmr -cmr -agj -agj -agj -agj -agj -agj -kcN -kcN -agj -nzp -kHE -wVW -qlR -fLN -wVW -fKf -wNJ -rsW -eCg -giV -kky -hEx -ybA -mEX -wVW -itG -fZv -wVW -khT -rPU -mKq -aES -aES -aES -aES -aES -aES -aES -aES -nVn -cZO -hrI -nLp -nLp -nLp -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eJy -nYj -nYj -sGw -xzB -eWs -qKR -xzB -rAw -aQJ -nNc -yeT -eWs -thk -bHB -oXy -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -hKp -bHB -wNv -lbL -iNR -uCR -rDR -tTC -wyz -gzN -hOV -uKH -kyP -nYj -nYj -vrw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(94,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -taM -tvt -hEB -kxy -jUV -cmr -agj -agj -hiO -mTc -hkX -gmD -pHR -kcN -bhn -rTm -oEj -kHE -wVW -jOY -alX -auQ -kqj -upp -flK -fAd -nHT -lXz -ceH -nHf -gFK -auQ -aIf -xdk -wVW -khT -tFz -mKq -uEE -hPj -rhd -ekm -tAm -hVr -rhd -aES -aES -fMU -hrI -kyj -dHU -rwZ -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -sGw -sGw -xzB -eWs -eWs -jXg -eWs -eWs -eWs -eWs -eWs -jvQ -bHB -sbN -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -jYL -bHB -iAw -hOV -hOV -tTC -tTC -tTC -jRp -rsV -hOV -kzs -kyP -kyP -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -"} -(95,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -taM -tvt -jhR -fix -pfL -cmr -agj -kyR -agc -qfD -agc -kJm -tHX -kcN -cex -rTm -oEj -kHE -wVW -wZz -alX -lQG -iyd -cTU -drB -aBR -tBd -bZJ -aUs -dPP -dRK -lQG -aIf -wBu -wVW -mQU -amY -gCg -hhf -aWV -aZy -ekm -aES -sNq -usL -uzo -aES -dWA -hrI -hrI -dPO -rwZ -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -sGw -rBl -xzB -eWs -hCB -ovE -oJj -mvo -ndr -eiA -jHt -ngY -bHB -lTJ -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -ldB -bHB -btO -xjW -uTk -tTC -tTC -tTC -cyR -tTC -hOV -qpV -iyZ -kyP -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(96,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -taM -tvt -rqO -vBC -rhm -she -agj -ogK -qgr -agc -agc -kJm -tmp -kcN -bTv -rTm -oEj -aKq -jBV -alX -alX -avY -alX -alX -alX -dIG -nUZ -dvT -alX -alX -alX -avY -aIf -alX -wEs -aKq -aJQ -mKq -ioJ -aWW -aGr -kWW -aES -aES -aES -aES -aES -tPc -jwq -vwU -uew -rwZ -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -sGw -rBl -xzB -eWs -irJ -bKk -kil -vnY -fCG -rij -jHt -mFo -bHB -bvy -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -ruJ -bHB -btO -bcm -xCV -tTC -tTC -efJ -tTC -sHe -hOV -uKH -wvG -kyP -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(97,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -cZe -bkm -cmr -cmr -jkq -agj -nCx -tYM -mqb -kDK -jMx -mXj -kcN -kcN -agj -oEj -aKq -peN -alX -alX -dXy -avY -alX -alX -hQD -hJM -mJu -alX -alX -avY -dXy -aIf -alX -peN -aKq -aJQ -mKq -ekm -tlw -gbq -ekm -tAm -hVr -rhd -lEZ -aES -xVH -tVx -gxz -rDH -nLp -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -sGw -nCv -qOA -eWs -bqh -laa -oxz -gnB -vnY -gyJ -jHt -cbb -bHB -btO -rUR -aog -rUR -tZo -dPE -ljZ -rUR -tZo -dPE -ljZ -rUR -tZo -dPE -mbc -mbc -mbc -pDl -oWc -hYx -uJX -dPE -sbB -bHB -aYt -bcm -ohI -tTC -tTC -tTC -tTC -tml -hOV -uKH -hZZ -kyP -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(98,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -bdH -aaa -aaa -taM -tvt -gJf -cmr -hYE -vAz -agj -nXO -hvH -bVs -hvH -hvH -dQJ -mRG -uio -agj -alQ -kHE -wVW -gIA -odc -odc -odc -bTD -dXy -bnc -emF -fZe -dXy -gpJ -odc -odc -wRz -vZM -wVW -vrs -aJQ -mKq -xJZ -vWA -cqY -ekm -aES -sNq -usL -bgi -aES -qOE -tVx -bBS -ioM -rwZ -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -sGw -rBl -nsd -eWs -kqm -vnY -xoS -oGF -dFA -gkb -jHt -uKm -bHB -vDT -puI -aYt -aYt -aYt -puI -aYt -gIY -wrc -gIY -wrc -cCk -api -aYt -vwJ -jVQ -lcV -lcV -hWq -ezW -sgf -vDT -rze -bHB -vDT -bcm -grT -tTC -tTC -ove -tTC -rsV -hOV -pJa -oKU -kyP -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(99,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -bdH -aaa -aaa -taM -tvt -hsu -cmr -tkO -iPq -agj -dyj -fnv -bVs -xZG -kYt -mXj -ulo -kJW -agj -oEj -vNX -wVW -sbp -rax -dXy -alX -rfU -abk -dRG -fcD -uSj -avY -kcS -alX -alX -mPn -mwE -wVW -ftX -aJQ -mKq -ekm -gUL -hHl -kWW -aES -aES -aES -aES -aES -ogn -cZO -hfw -ioM -rwZ -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -sGw -rBl -kFU -eWs -oqE -mqZ -mqZ -lVZ -qbE -uxG -aXV -udl -bHB -dnA -eXq -aho -aho -aho -eXq -kqv -gIY -uHq -gIY -wrc -gIY -fgE -btO -btO -btO -btO -btO -neE -mNm -anD -knd -cdH -bHB -dnA -bcm -cKm -tTC -cOh -tTC -tTC -dPq -hOV -pJa -xFt -kyP -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -"} -(100,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -bdH -aaa -aaa -taM -tvt -hJD -cmr -yef -pMH -agj -mXj -mXj -mtj -mXj -mXj -mXj -mXj -mXj -agj -oEj -kHE -wVW -wNL -mYH -qfc -jpz -rfU -azW -dXy -dZj -gQw -bPs -pNR -vXU -rwu -pyn -iJU -wVW -khT -aJQ -mKq -ekm -iip -kHm -ekm -tAm -hVr -rhd -usL -aES -dZW -tVx -oSJ -ioM -rwZ -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -sGw -xzB -itK -eWs -iYo -xrT -gYj -vnY -qbE -uxG -aXV -udl -bHB -vDT -aho -tFy -qnS -naU -aho -aYt -gIY -wrc -gIY -wrc -gIY -fNi -aYt -vDT -oib -hYG -aYt -gGs -aYt -aYt -aYt -dVL -bHB -vDT -bcm -qKb -tTC -xQj -tTC -tTC -uTk -hOV -pJa -xFt -kyP -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(101,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -taM -cZe -iKL -wXy -alF -iPq -agj -mXj -pjR -jND -aKk -aKk -szf -faE -mXj -agj -dtX -kHE -wVW -wVW -wVW -wVW -wVW -cYm -xAn -grZ -rwh -jpQ -itG -wvR -wVW -wVW -wVW -wVW -wVW -khT -aJQ -mKq -ekm -tlw -gbq -ekm -aES -pZo -sqY -sNq -aES -mZp -tVx -xCG -cDF -nLp -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -sGw -nkj -rBl -eWs -bTZ -uUk -bkS -vnY -qbE -uxG -aXV -udl -bHB -mFu -eXq -rpO -trX -tsT -eXq -vvp -kEn -mwp -rOD -wrc -gIY -vqP -fTm -yfR -oib -hYG -hYG -aYt -aYt -gCw -boV -vDT -bHB -aYt -bcm -jNG -tTC -vMb -kCv -iuI -lDA -hOV -pJa -fFU -kyP -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(102,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -bdH -aaa -taM -tvt -cfl -cmr -wKb -pri -agj -qlI -cdB -xjt -coD -agc -ako -tYM -gLN -agj -oEj -afB -wVW -gnS -nYe -vsg -wVW -vkf -avY -avY -eXc -avY -wlE -puW -wVW -nCN -spR -bQC -wVW -ovm -aJQ -mKq -ekm -ujy -jEU -kWW -aES -aES -aES -aES -aES -gBd -tVx -xHc -mEw -rwZ -xOa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -eJy -nYj -aag -aag -sGw -vEI -rBl -eWs -rOy -uUk -bkS -bfO -cUU -qfV -jHt -wZS -rgy -nnn -ulk -gEg -imy -gEg -lbN -bdV -bvf -tQL -bDn -bGu -bvf -fre -vDT -vDT -vDT -vDT -vDT -vDT -vDT -vDT -vfH -vDT -bHB -btO -bcm -bcm -bcm -bcm -bcm -hOV -onz -hOV -qpV -nGk -kyP -aag -aag -nYj -vrw -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(103,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -bdH -aaa -bdH -bdH -bdH -bdH -aaa -taM -tvt -mPw -cmr -wGa -bAy -agj -eBE -hvH -agc -rNa -pxG -fOv -agc -agc -agj -oEj -snk -wVW -rZc -fEK -aHg -bbo -dXy -dXy -nFB -nFB -nFB -itG -dXy -xUn -kyO -gYW -jdr -wVW -khT -aJQ -mKq -xJZ -kdC -xFj -ekm -tAm -hVr -rhd -mRZ -aES -imt -noE -dcT -hrI -rwZ -xOa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -sGw -oGf -rBl -eWs -vlP -lQX -qwZ -wci -xtE -fJd -iKp -ekV -hBF -idD -eXq -maH -sAu -xHd -eXq -ooh -gIY -wrc -gIY -mwp -gIY -jRH -aYt -yfR -aUt -hYG -hYG -aYt -aYt -wFz -bAi -vDT -bnH -btO -cdA -fKg -vhL -qya -bcm -qyG -oKU -oKU -pJa -oKU -kyP -aag -aag -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(104,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -bdH -aaa -bdH -bdH -bdH -bdH -bdH -taM -tvt -cmZ -cmr -cmr -mVA -agj -kSH -hvH -nTA -kWR -agc -aiW -xyk -xyk -nKB -aTl -csk -wVW -eHK -dKG -wHm -wVW -gja -alX -azZ -aAF -azZ -aIf -iAH -wVW -fde -dKG -dZo -wVW -khT -aJQ -mKq -jfc -nFr -kHm -ekm -aES -xlj -usL -sNq -aES -ioM -cZO -pfD -pfD -rwZ -xOa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -sGw -qyb -rBl -eWs -qmh -qmh -jHt -pMq -xRS -uxG -aXV -udl -bHB -vDT -aho -fGY -wLk -vWw -aho -aYt -gIY -wrc -gIY -wrc -gIY -uuu -fTm -vDT -rJe -hYG -hYG -hYG -aYt -aYt -bFP -vDT -bHB -btO -cdA -cbU -dtH -mhO -bcm -cNP -xFt -oKU -uKH -pUB -kyP -aag -aag -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(105,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -taM -cZe -cZe -cZe -tiX -vcI -agj -ikQ -hvH -agc -qlp -pxG -tTk -agc -agc -agj -bbO -kHE -wVW -eHK -dKG -oYE -wVW -cCp -alX -hxm -deD -tUo -aIf -wBu -wVW -fde -dKG -dZo -wVW -khT -aJQ -mKq -rrb -aWW -aGr -kWW -aES -aES -aES -aES -aES -nck -cZO -nLp -nLp -nLp -xOa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -sGw -iPf -klT -eWs -kCQ -ncB -qmh -pMq -xRS -uxG -aXV -udl -bHB -dnA -eXq -aho -aho -aho -eXq -kqv -gIY -wrc -gIY -drv -gIY -oJp -bvf -kRP -bvf -bvf -bvf -egp -ptv -fZn -eLM -epn -hBF -vxb -bcm -qJR -aYt -tss -pNC -xFt -xFt -oKU -uKH -npD -kyP -aag -aag -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(106,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -bdH -bdH -aaa -taM -aag -aag -cZe -cmr -oPc -agj -muV -hvH -qck -eRi -agc -tan -kDK -iEz -agj -oEj -kHE -wVW -vUH -dKG -pNn -wVW -cYm -dXy -lBr -lBr -lBr -itG -wvR -wVW -iyj -dKG -vsl -wVW -khT -aJQ -mKq -dQa -aXb -aGr -ekm -tAm -hVr -rhd -kfC -aES -hrI -tVx -nLp -aag -aag -xOa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -sGw -raL -xzB -brO -vnY -asE -qmh -pMq -bYi -sbg -jHt -raZ -bHB -vDT -anW -aYt -aYt -aYt -anW -aYt -gIY -wrc -gIY -wrc -gIY -brY -aYt -bVa -gtK -hYG -ggh -gRd -ezW -wML -vDT -fIz -bHB -btO -cdA -igT -aYt -htX -bcm -oKU -xFt -oKU -uKH -vJW -kyP -aag -aag -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(107,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -taM -aag -aag -cZe -huD -vAz -agj -mXj -fnv -hvH -hvH -iNY -hvH -hmV -mXj -agj -oEj -vNX -wVW -eHK -xBa -oYE -wVW -vvC -alX -alX -avY -alX -aIf -lqG -wVW -nkY -xBa -dZo -wVW -khT -rPU -mKq -xDc -ekm -ekm -hnh -aES -cdJ -usL -bgi -aES -luE -wgO -nLp -aag -aag -xOa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -sGw -kTg -xzB -eWs -nso -jdZ -piy -iBO -jJX -gwk -jHt -aQI -bHB -btO -xmm -aoN -xmm -pYI -jDX -qpJ -xmm -pYI -jDX -qpJ -xmm -pYI -jDX -qpJ -ugp -qJI -dDA -cev -jqv -abg -jDX -jZQ -bHB -aYt -cdA -uRm -gpU -rME -bcm -emC -xAU -tSd -uKH -xFt -kyP -aag -aag -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(108,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -taM -aag -aag -cZe -pcf -vAz -agj -agj -agj -agj -agj -agj -agj -agj -agj -agj -mgU -xWf -wVW -wVW -wVW -wVW -wVW -fVR -sgN -fVR -wVW -fVR -xMc -fVR -wVW -wVW -wVW -wVW -wVW -rMc -xxP -mKq -mKq -lbx -cxW -aES -aES -aES -aES -aES -aES -hXD -tYV -nLp -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -sGw -rBl -kxc -eWs -eXq -aWj -eXq -aho -aho -aho -eXq -vxH -bHB -hic -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -rYa -bHB -aqs -bcm -bcm -olJ -cdA -bcm -bcm -emC -emC -fFu -xFt -kyP -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(109,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -cZe -uTE -fZy -gpY -uBi -wYA -awW -awW -awW -awW -xhz -siF -raa -oEj -tTg -hIx -qSH -tEh -swm -laV -fNq -alX -alX -xQa -alX -aIf -aMK -laV -gUa -gjk -qSH -lkJ -obJ -aJQ -pba -bBm -qzK -baw -oxu -baw -baw -oaK -nUn -pgD -tVx -hrI -nLp -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -sGw -rBl -rBl -eWs -dxP -rSr -afy -xWp -cVj -aBt -ajM -qrH -bHB -vwg -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -ckL -bHB -xAY -wrc -wlK -aYt -aYt -aYt -lrX -bcm -yeY -pJa -fFU -kyP -aag -aag -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(110,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -taM -aag -aag -cZe -cmr -vAz -gpY -uac -oUr -ajf -ajf -ajf -ajf -fsO -vpj -fhn -qML -aBH -aKv -aKv -aKv -aKv -rWj -aCj -ayK -aAd -aAP -hvv -ayu -aCj -rWj -aKv -aKv -aKv -aTa -aTk -fqm -gdN -fNI -bDu -aZz -aZz -aZz -aZz -wUP -lrF -pgD -cZO -hrI -nLp -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -sGw -rBl -klT -eWs -lAb -aer -gjj -tmD -aoL -akz -ajM -hhQ -bHB -sUW -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -qAo -bHB -xAY -wrc -qCG -btO -btO -btO -uII -pNC -oWu -pJa -nGk -kyP -aag -aag -aag -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(111,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -abs -abs -abs -abs -abs -abs -abs -abs -cZe -hVk -qZE -gpY -mto -acW -awW -awW -oGC -oGC -xhz -siF -xOF -elM -iYH -unJ -oYZ -iYH -iYH -laV -rfU -ayL -aAf -aLM -wlE -alX -kcS -laV -iYH -aKa -oYZ -hmk -aKq -riq -cxY -bBm -qzK -iVE -baw -baw -baw -sgU -baw -pgD -gCM -tTF -nLp -tQV -tQV -tQV -tQV -tQV -tQV -tQV -tQV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -eJy -nYj -nYj -aag -aag -aag -aag -sGw -rBl -sZc -jxh -acq -aeJ -cHe -oHn -nak -izU -ajM -vDT -bHB -igO -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -sFU -bHB -xAY -wrc -xJR -aYt -aYt -puI -iWx -bcm -wiV -uKH -oKU -kyP -aag -aag -aag -aag -nYj -nYj -vrw -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(112,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -abs -adq -aeW -ajD -anM -oGC -cGm -eRx -bvb -wQG -sKd -pYu -awW -acW -cGm -kva -hWW -aiX -awd -awd -awd -awd -awd -awd -awd -awd -awd -wVW -gld -ikq -eac -aBI -fmK -lKC -qpP -wVW -awF -dGE -awF -ecr -xti -ecr -ecr -ecr -qgq -aET -kVb -mdf -mdf -sgU -baw -dqb -vsD -nio -mor -wkT -mdf -baw -mAp -mAp -lVl -pgD -tQV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -taM -aag -aag -aag -aag -aag -aag -sGw -rBl -iQJ -eWs -acu -rSr -afF -xWp -azJ -bLP -eXq -dIp -bHB -hic -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -rYa -bHB -tIS -bcm -bcm -olJ -cdA -bcm -bcm -bcm -emC -wuh -pJm -kyP -aag -aag -aag -aag -aag -aag -xOa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(113,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -abs -adq -aea -ajE -awW -awW -cGm -xhz -awW -eOE -sKd -awW -awW -acW -qdQ -eFT -hhA -weD -rqe -jWS -bun -aiX -aiX -fIy -osi -fIy -osi -wVW -wVW -wVW -lIa -jnX -fXl -wVW -wVW -wVW -cbF -kRu -awF -mrx -dcE -dQU -aET -esC -dKs -aET -mSi -wHp -gZw -sgU -baw -baw -vsD -mhp -baw -qzK -mdf -baw -baw -baw -cxk -pgD -tQV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -taM -aag -aag -aag -aag -aag -aag -sGw -nHX -ePC -eWs -gql -aer -gjj -tmD -xWp -umH -ajM -vDT -bHB -vwg -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bFR -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -ckL -bHB -btO -cdA -vZx -dFY -wFC -bcm -emC -osZ -oKU -uKH -iyZ -kyP -aag -aag -aag -aag -aag -aag -xOa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(114,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaC -abs -adq -aoy -awW -awW -awW -cGm -vgm -awW -jgD -sKd -awW -uzy -abB -cGm -cGm -cGm -weD -dNi -oOI -dNi -aiX -wxs -avU -avU -mKN -wEw -iSY -orr -aiX -ugf -wLo -uhk -awF -aEM -saI -rvA -aKE -awF -fFJ -pej -jcS -aET -aET -aET -aET -kVb -mdf -mdf -pIV -baw -baw -vsD -maW -baw -rWl -mdf -baw -baw -baw -ciQ -pgD -tQV -aaC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -taM -aag -aag -aag -aag -aag -aag -sGw -xzB -ryq -eWs -qAF -aeN -cHe -tYA -ozJ -akz -ajM -vDT -bHB -sUW -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -qAo -bHB -aYt -cdA -loA -aYt -qCs -bcm -tnp -xFt -oKU -uKH -fPl -kyP -aag -aag -aag -aag -aag -aag -xOa -aaY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(115,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaC -abw -vBS -awW -ajH -ajf -abf -uCO -ajf -ajf -ajf -oQG -abf -ajf -evX -jgD -xSH -vgm -weD -sjZ -oOI -oOI -aiX -aLl -lxG -lxG -lxG -lxG -rJX -btn -aiX -wPK -dMA -gyz -awF -aFg -eoD -rvA -pNL -awF -pyk -pej -jcS -pej -wUE -csV -aET -dnV -cRr -maW -gVF -aZz -cts -kXh -aZz -aZz -aZz -vFz -cts -aZz -kyX -baw -gns -trb -aaC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -taM -aag -aag -aag -aag -aag -aag -sGw -xzB -sMo -eWs -vhw -nak -azw -xWp -aAK -oBT -ajM -xJY -bHB -igO -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -sFU -bHB -vxb -bcm -sOh -aYt -gIg -bcm -umk -xFt -oKU -pJa -wrZ -kyP -aag -aag -aag -aag -aag -aag -xOa -aaY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(116,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaC -abw -aDY -awW -acW -awW -cGm -cGm -cGm -jwl -cGm -cGm -cGm -oMQ -evX -wQG -qkK -oYl -weD -rPz -gGG -jcj -qUY -oOI -jjA -pyW -pyW -oSW -bxv -aiX -aiX -uSB -oIp -sNw -awF -wJB -eoD -rvA -oXu -awF -ehz -ehz -eAK -mBP -ieC -onm -hWE -cKs -vYR -nio -sgU -baw -mdf -mdf -mdf -mMR -mdf -mdf -mdf -hEV -eBe -baw -foa -trb -aaC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -taM -aag -aag -aag -aag -aag -aag -sGw -nkj -joF -eWs -eXq -eXq -eXq -eXq -eXq -eXq -eXq -rvR -bHB -hic -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -rYa -bHB -btO -cdA -loA -aYt -kEI -bcm -iyZ -xFt -oKU -uKH -eWh -kyP -aag -aag -aag -aag -aag -aag -xOa -aaY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(117,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaC -abs -adq -tlY -sKd -cGm -cGm -snl -cnY -cnY -cnY -gKm -cGm -cGm -sKd -cGm -cGm -lPH -aiX -aiX -aiX -aiX -aiX -cCm -rVz -osT -cZV -sVk -xnG -wBD -aiX -nOs -oIp -agd -awF -gXC -slw -rvA -wim -awF -pQO -hNH -uDG -qog -pej -esX -hWE -tvm -mdf -mdf -vsD -mdf -cMb -lSD -aJA -aJA -aJA -vbW -mdf -mdf -vsD -tFD -pgD -tQV -aaC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -taM -aag -aag -aag -aag -aag -aag -sGw -xzB -oes -eWs -aRu -aRu -aRu -aRu -aRu -aRu -bcm -xJY -bHB -vwg -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -ckL -bHB -btO -cdA -eYW -gpU -mQA -bcm -emC -vJW -vJW -uKH -ijN -kyP -aag -aag -aag -aag -aag -aag -xOa -aaY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(118,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaC -abs -adq -xsy -sKd -cGm -mTq -tKu -aTm -xxB -aTm -uQb -mTq -cGm -sKd -cGm -cGm -cGm -gzI -sjZ -eQL -jcj -wTz -oOI -mfh -rtY -fJy -cZZ -oSW -fNn -aiX -cWC -oIp -sRb -awF -awF -aEW -poN -aEW -awF -jiE -qog -vDp -jGT -pej -pej -hWE -irb -mdf -mdf -vsD -mdf -hhC -cJk -iun -sfA -vPm -kPF -hhC -mdf -vsD -rnz -pgD -tQV -aaC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -taM -aag -aag -aag -aag -aag -aag -sGw -rBl -oes -eWs -aRu -aRu -aRu -aRu -aRu -aRu -bcm -vDT -bHB -sUW -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -qAo -bHB -uAb -bcm -emC -xht -emC -emC -emC -emC -emC -qpV -oKU -kyP -aag -aag -aag -aag -aag -aag -xOa -aaY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(119,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaC -abw -aNK -avd -acW -awW -auK -iRT -aTm -ahX -aTm -ezi -scu -awW -acW -jgD -xSH -vgm -gzI -dNi -wam -kFq -aiX -gvn -xYp -kCL -rAk -mJg -iLt -iqA -daM -cWo -oIp -kld -yer -awF -jaC -uby -mjf -awF -vMd -eSW -bly -fUN -xlI -eeG -aET -hjh -cRr -maW -sgU -baw -lRE -ush -vbB -aqB -vbB -hNs -sOy -baw -sgU -xVF -pyK -trb -aaC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -taM -aag -aag -aag -aag -aag -aag -sGw -rBl -iQJ -eWs -aRu -aRu -aRu -aRu -aRu -aRu -bcm -vxH -bHB -qHp -xau -tCu -uBL -fOT -xau -bld -uBL -fOT -xau -bld -uBL -fOT -xau -bld -uBL -fOT -xau -bld -uBL -xEh -xau -ilT -bHB -xAY -fVK -emC -oKU -upi -jsI -eJV -emC -wrZ -uKH -oKU -kyP -aag -aag -aag -aag -aag -aag -xOa -aaY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(120,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaY -abw -fgb -avd -acW -awW -avc -kbF -aTm -ahX -cbM -pTN -sLo -awW -acW -wQG -qkK -wHF -gzI -mzr -syP -laL -aiX -hnH -pTQ -dKq -gaR -lJE -pYb -mfk -uhu -wzM -sUS -kld -igM -awF -aHn -szU -uod -awF -eXs -pej -pej -pej -pej -esX -aET -eXG -vYR -nio -sgU -baw -hJk -eIR -vbB -aqB -vbB -eny -iLd -baw -sgU -xVF -fSH -trb -aaC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -taM -aag -aag -aag -aag -aag -aag -sGw -xzB -oes -eWs -aRu -aRu -aRu -aRu -aRu -aRu -bcm -vDT -bHB -udl -vDT -rze -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -udl -vDT -rze -bHB -xAY -fVK -emC -mDd -xFt -xFt -oKU -uGj -xFt -pJa -nGk -kyP -aag -aag -aag -aag -aag -aag -xOa -aaY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(121,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaY -abs -adq -mRv -sKd -cGm -mTq -tKu -aTm -fnk -aTm -uQb -mTq -cGm -sKd -cGm -cGm -rkj -aiX -aiX -aiX -aiX -aiX -myz -rVz -sVk -jJf -aiX -aiX -aiX -aiX -xPk -oIp -wZq -tsr -tsr -tsr -tsr -tsr -tsr -cRg -qog -qog -mkm -pej -pej -hWE -irb -mdf -mdf -vsD -mdf -hhC -cJk -vbB -aqB -tBq -kPF -hhC -mdf -vsD -yfw -pgD -tQV -aaY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -taM -aag -aag -aag -aag -aag -aag -sGw -nCv -ePC -eWs -aRu -aRu -aRu -aRu -aRu -aRu -bcm -cyY -bHB -mzJ -knd -gri -bPr -bPr -bPr -byv -bdI -rBb -ehi -mha -kTY -ehi -mha -rBb -bdI -bPr -bPr -bPr -byv -eNq -knd -cdH -bHB -uII -biZ -emC -aXC -aML -xFt -uoh -emC -jaI -pJa -xFt -kyP -aag -aag -aag -aag -aag -aag -xOa -aaY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(122,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaY -abs -adq -hEq -sKd -cGm -cGm -wFj -omB -omB -omB -eWS -cGm -cGm -sKd -cGm -cGm -cGm -rwY -sjZ -dSQ -jcj -wTz -wZQ -vMs -iLt -lRy -aiX -oOF -amb -aiX -mhr -oIp -agd -tsr -iYn -qXs -eFU -wAl -tsr -rbD -pFh -pFh -pFh -pFh -rAY -hWE -irb -mdf -mdf -vsD -mdf -mdf -ohw -oVw -oVw -oVw -cVM -mdf -mdf -vsD -qoK -pgD -tQV -aaY -bdH -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -taM -aag -aag -aag -aag -aag -aag -sGw -xzB -rsP -eWs -aRu -aRu -aRu -aRu -aRu -aRu -bcm -jNO -bHB -vDT -bkA -bkA -bkA -bkA -bkA -bkA -bkA -baZ -nWw -rNU -baZ -nWw -fby -baZ -gfW -gfW -gfW -gfW -gfW -gfW -gfW -vDT -bHB -uII -hxL -emC -iLo -ddy -gJj -ljw -emC -vvs -pJa -fFU -kyP -aag -aag -aag -aag -aag -aag -xOa -aaY -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(123,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaY -abw -aDY -awW -ajT -aoC -cGm -cGm -cGm -jwl -cGm -cGm -cGm -awW -acW -jgD -xSH -vgm -rwY -dNi -oOI -kFq -aiX -aiX -mQV -gfC -gfC -aMk -agN -and -aiX -xXE -oIp -cWo -vey -xIV -xIV -edV -cvo -tsr -cge -pFh -pFh -pFh -pFh -tLr -hWE -jDU -cRr -maW -sgU -baw -mdf -mdf -mdf -mWm -mdf -mdf -mdf -baw -sgU -baw -foa -trb -aaY -bdH -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -taM -sGw -sGw -sGw -sGw -sGw -sGw -sGw -rBl -ubG -eWs -aRu -aRu -aRu -aRu -aRu -aRu -bcm -vDT -bHB -vDT -bkA -srp -wqm -oSe -kfP -sFP -nvM -rBZ -tnm -tnm -cFu -tnm -tnm -mRo -gfW -qbN -wna -wna -wna -eRX -gfW -cyY -bHB -qnd -lFp -lFp -lFp -lFp -lFp -lFp -lFp -lGm -pJa -xFt -kyP -kyP -kyP -kyP -kyP -kyP -kyP -xOa -aaY -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(124,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaY -abw -vBS -awW -ajV -ajf -abf -uCO -ajf -ajf -ajf -uCO -abf -ajf -evX -wQG -qkK -oYl -rwY -fBG -syP -laL -aiX -hVl -fHK -sht -sXG -aiX -aiX -aiX -aiX -miX -oIp -izv -tsr -qRx -slV -uCs -kpJ -tsr -azm -pFh -eat -smD -xBX -bNV -aET -gle -wCp -nio -gVF -aZz -cts -vFz -aZz -aZz -aZz -vFz -cts -aZz -nsc -ltA -gns -trb -aaY -bdH -bdH -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -taM -sGw -lzJ -rBl -xzB -xzB -xzB -rBl -rBl -wsz -eWs -aRu -aRu -aRu -aRu -aRu -aRu -bcm -vFf -osl -mOL -bkA -lQN -cRs -cRs -cRs -typ -nvM -eWe -tnm -tnm -tnm -tnm -tnm -erH -gfW -hMt -uON -hLU -kgx -fOe -gfW -pZd -osl -vFf -lFp -gUv -gHl -kjD -gHl -qle -lFp -iyZ -pJa -xFt -oKU -oKU -jNh -oKU -cOt -uSU -kyP -xOa -aaY -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(125,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaY -abs -adq -aoy -awW -awW -awW -cGm -wQj -awW -wQG -cGm -awW -awW -abB -cGm -nOh -aiX -aiX -aau -aau -aau -aau -rHJ -jEY -sht -mQV -aMk -taf -atT -aiX -nde -oIp -xRi -tsr -tsr -kaH -tsr -tsr -tsr -lIj -xxW -lIj -lIj -lIj -lIj -lIj -pgD -kVb -mdf -pIV -baw -baw -mdf -nio -baw -nUu -mdf -baw -baw -baw -ciQ -pgD -tQV -aaY -bdH -bdH -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -taM -sGw -xzB -xzB -rBl -rBl -sZc -abj -iGL -coo -fRb -fRb -fRb -fRb -fRb -aRu -aRu -bcm -uoU -tOm -uoU -bkA -gcL -oMn -oMn -igI -eOU -wue -vcv -vcv -tYo -nRq -nRq -nRq -nRq -gYO -oTw -hqf -oTw -wWy -xWU -gfW -uoU -tOm -uoU -lFp -jtw -vhB -aId -aId -wxh -lFp -iyZ -rJW -kGi -kGi -pSu -kGi -kGi -kow -wrZ -kyP -xOa -aaY -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(126,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aaa -abs -adq -aeX -awW -awW -awW -cGm -xhz -awW -eOE -cGm -awW -awW -acW -qdQ -muq -aiX -aiX -aau -gYd -gYd -aau -hVl -iaj -mQV -jJf -aiX -uiw -atT -aiX -mhr -lSN -agd -lIj -jJS -xYj -yda -rqD -pcY -srO -srO -lWO -wjQ -aPc -aPc -ruw -pgD -lza -gZw -gVF -kuk -baw -mdf -mhp -baw -qzK -mdf -baw -baw -baw -cxk -pgD -tQV -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -taM -sGw -rBl -rBl -eWs -jri -ubG -kIl -fFt -hsK -fRb -gGO -gGO -gGO -fRb -sGU -wfE -wfE -kNH -iQz -iOe -bkA -oeu -cRs -kMZ -xnd -iyn -nvM -hha -tnm -xAS -aSV -tnm -tnm -dlP -gfW -ssC -hLU -uHZ -hLU -nnT -gfW -nFb -bPp -jVZ -lFp -kGf -aId -aId -aId -qBw -nmY -nmY -nmY -nmY -nmY -nmY -nmY -nmY -pJa -oKU -kyP -xOa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(127,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aaa -abs -adq -awW -awW -awW -oGC -kva -mut -bBl -jgD -kva -oGC -awW -acW -cGm -yeM -aiX -aiX -aiX -dtR -dtR -aiX -aiX -aiX -jRj -evn -aiX -aiX -aiX -aiX -hgf -cBT -kne -lIj -lIj -ujA -lIj -lIj -lIj -lIj -lIj -lIj -lIj -lIj -lIj -ldu -pgD -kVb -mdf -sgU -baw -baw -mdf -ivV -cIe -fSD -mdf -baw -baw -baw -baw -pgD -tQV -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -taM -sGw -rBl -rBl -wfE -wfE -gJT -wfE -wfE -wfE -wfE -mPl -mPl -mPl -wfE -dHk -pJp -wfE -qve -sYk -qve -bkA -xqb -cRs -bMl -oKa -wEl -nvM -hha -tnm -vBX -aSV -aSV -tnm -sXI -dlf -pOE -hLU -uRz -hLU -pFa -gfW -mIB -qwN -mIB -lFp -euE -rsT -aId -aId -uwe -nmY -pQg -jDP -aId -lnN -vBh -pvk -nmY -pJa -oKU -kyP -xOa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(128,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aaa -abs -adq -vpJ -xSH -yek -gLl -gLl -gLl -gLl -gLl -gLl -oGC -awW -acW -awW -awW -awW -hIO -fJH -noQ -lJz -lJz -utY -lJz -cWo -cWo -voa -lJz -hVy -lJz -lJz -llx -lJz -lJz -hVy -xIp -voa -lJz -lJz -lJz -lJz -utY -lJz -jrw -ejH -xYy -baw -fGg -baw -sgU -baw -baw -vIo -vIo -vIo -vIo -vIo -vIo -rWl -cRr -maW -pgD -tQV -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -taM -sGw -rBl -rBl -wfE -mxR -jOo -wrC -mHx -pqX -plB -jrx -wFR -wFR -bmF -wFR -jrx -scR -dzM -ceR -xxj -bkA -fsQ -njA -bGi -qdd -tCs -nvM -hha -tnm -xAS -aSV -tnm -tnm -oLw -dlf -gay -qFt -ikf -qFt -miQ -gfW -mBm -uCa -ifY -sHm -ddM -hZe -aId -aId -dtO -nmY -nmY -nmY -dZu -dKK -dKK -xry -nmY -pJa -oKU -kyP -xOa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(129,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aaa -abs -adq -wQG -qkK -wQj -gLl -mis -mis -mis -yjr -gLl -aea -oGC -gxu -ajf -ajf -ajf -fsO -pig -wSl -fSx -tTZ -tTZ -tTZ -dNj -tTZ -tTZ -pcs -fCW -fCW -tTZ -bjv -tTZ -dNj -dNj -ubv -plK -plK -tuX -plK -plK -plK -fSx -okm -jqJ -rTH -aZz -aZz -aZz -nsc -baw -cxk -vIo -ojX -ojX -ojX -mxo -vIo -gVb -vYR -uwy -pgD -tQV -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -taM -sGw -tvF -xzB -wfE -ocs -jOo -jrx -jTm -jTm -jTm -jrx -rkz -esM -esM -uUi -jrx -scR -gtD -uRD -wru -bkA -irP -irP -owO -irP -irP -bkA -vWf -ksu -ptw -tnm -tnm -tnm -wCT -gfW -rqg -pch -gfW -ylx -rqg -gfW -eWx -lLO -juo -otq -gJO -pwG -aId -aId -tZV -aik -jmB -nmY -aId -sfD -mVV -urD -nmY -uKH -oKU -kyP -xOa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(130,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aaa -abs -adq -nfC -akt -awW -gLl -mis -mis -mis -mis -gLl -oGC -sHp -oGC -awW -awW -awW -xhz -ykO -gXR -xCB -eVo -mDU -tWe -mDU -mDU -nKm -mDU -mDU -mDU -mDU -djw -mDU -nKm -mDU -mDU -mDU -mDU -mDU -tWe -mDU -lzg -xCB -aMM -mgs -qzK -baw -baw -baw -mnA -baw -baw -vIo -ojX -ojX -ojX -ojX -vIo -baw -sMM -rSH -pgD -tQV -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -taM -sGw -kTg -xzB -wfE -pfF -jOo -hAv -daT -wFR -jKA -qyS -wFR -wFR -wFR -soA -jrx -wfE -xos -uRD -qPk -bCd -fFE -mgR -sWh -agn -agn -bSX -loU -tnm -xAS -tnm -tnm -tnm -dMs -sBq -jfj -ppq -eYw -ppq -fQM -bCd -knm -lLO -knm -yfy -ruL -wKk -aId -hJI -vwY -uIA -wOH -ruL -aId -kyh -dKK -xry -nmY -qpV -euq -kyP -xOa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(131,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aaa -abs -fgb -avd -akt -awW -bnk -mis -mis -mis -mis -gLl -hgI -gLl -gLl -gLl -gLl -gLl -gLl -gLl -gXR -xCB -aMM -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aQu -xCB -lcx -vIo -vIo -vIo -vIo -vIo -vIo -uqt -vIo -vIo -ojX -ojX -ojX -ojX -tva -baw -sMM -xVF -fSH -tQV -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -taM -sGw -rJk -xzB -wfE -onS -qOp -sJb -vYm -vYm -vYm -aSU -qzU -qzU -qzU -ilR -mSe -fqy -pij -kJh -qPk -bCd -ojy -tnm -tnm -tnm -tnm -tnm -tnm -tnm -xAS -tnm -tnm -tnm -tnm -eBQ -eBQ -tnm -tnm -eBQ -pIs -bCd -knm -lLO -knm -yfy -ruL -puM -aId -oqt -wCk -aId -uXP -ruL -aId -jix -oNH -jRd -nmY -rEK -yfi -kyP -xOa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(132,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aaa -abs -adq -aVq -xSH -kMb -gLl -mis -mis -mis -mis -gLl -ctH -oqj -kCf -ijE -lfT -nWR -rce -gLl -lAT -xCB -aMM -aoe -eko -jHQ -jGh -jGh -jGh -dbJ -dSJ -iES -fjn -mcW -kIp -aoe -igF -dmY -rvB -qnn -pbJ -aoe -gXR -xCB -aMM -vIo -wuD -wuD -fcd -iHu -fcd -pep -qPL -vIo -ojX -ojX -ojX -ojX -vIo -jIK -cRr -kMk -pgD -tQV -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -taM -sGw -mxA -xzB -wfE -xFw -opD -hAv -suE -wFR -kId -qyS -iRy -esM -esM -jpt -jrx -scR -qPk -hKe -uJM -baZ -qvA -tnm -tnm -tnm -sXD -tnm -tnm -tnm -xAS -tnm -tnm -tnm -tnm -tnm -sXD -tnm -tnm -tnm -ykT -baZ -sbE -lLO -knm -yfy -ruL -jVn -aId -vjv -gOR -aId -cvl -nmY -rOi -smW -prP -xXl -nmY -fBA -cnh -kyP -xOa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(133,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aaa -abs -adq -iQm -qkK -wQj -gLl -mis -mis -mis -mis -gLl -hTL -utp -cZq -xBW -cZq -utp -hTL -gZI -cWo -nbH -aMM -aoe -ggB -arb -xyq -xyq -xyq -xyq -arb -cyK -xyq -xyq -xyq -yeX -pUV -pUV -lpD -pUV -dls -aoe -oZK -nbH -cWo -iHu -fcd -pep -pep -vIo -kwp -fcd -fcd -vIo -ojX -ojX -ojX -ojX -vIo -qXi -vYR -pmZ -pgD -tQV -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -taM -sGw -xzB -rBl -sGU -top -opD -jrx -lGI -lGI -lGI -jrx -wFR -bed -nEF -tXi -dWO -scR -qPk -hKe -qPk -sqd -tnm -tnm -wbI -erH -oTB -rxS -qyd -fge -nVO -uBF -myx -jrz -vcv -heI -oTB -rxS -wbI -tnm -tnm -rti -knm -lLO -knm -hnP -lFp -kYS -aId -oqt -iXA -aId -oZy -fib -npA -oqt -oEy -qmY -rop -pJa -lZb -kyP -xOa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(134,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abs -aNK -avd -akt -qWI -gLl -gLl -gLl -gLl -gLl -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -oZK -nbH -aMM -aoe -ara -fXg -dfa -dfa -dfa -dfa -dfa -gzK -arb -arb -arb -yeX -naN -naN -tgc -pUV -iuu -aoe -gXR -nbH -aMM -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -vIo -vIo -vIo -vIo -vIo -ehj -irS -ilJ -pyK -tQV -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -taM -sGw -xzB -rBl -wfE -hym -opD -wFR -wFR -aqn -arT -jrx -ltx -mwF -lsT -byI -fpQ -scR -qPk -ckh -gyn -jZJ -czI -czI -cfs -czI -kHB -eLv -kUY -kan -ojZ -uJt -ojZ -kan -ntt -iXM -xFr -nRq -vXI -nRq -nRq -adW -wwE -sAD -cIO -tAb -eFV -dxT -kvG -lDW -oiw -dBE -qyK -iCO -tHQ -uxX -oZy -oPI -nmY -oDP -tHk -kyP -xOa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(135,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abs -adq -nAv -akt -awW -gLl -vHP -spL -ipp -ipp -gxm -sWG -sWG -sWG -gBy -lip -lip -lip -gxm -sNn -xCB -aMM -aoe -ggB -koB -sTD -sTD -sTD -sTD -arb -vup -aoe -aoe -mNp -aoe -aoe -aoe -aoe -sfk -aoe -aoe -gXR -xCB -aMM -gxm -bRJ -bRJ -bRJ -bqo -dKu -dKu -dKu -gxm -pOG -lJA -pep -pOG -vIo -baw -sMM -noO -pgD -tQV -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -taM -sGw -nkj -rBl -wfE -tSE -opD -wFR -wFR -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -qPk -hKe -uJM -baZ -qPM -tnm -tnm -tnm -tnm -xAS -ubk -vhX -bog -mFs -phZ -vhX -nPH -xAS -tnm -tnm -tnm -tnm -puS -baZ -sbE -jZe -cbL -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -skV -oqt -oZy -qON -nmY -pJa -xFt -kyP -xOa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(136,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abs -adq -iay -xSH -shk -gLl -lfZ -fIp -hTL -hTL -gxm -sWG -sWG -sWG -fQY -lip -lip -lip -gxm -gaH -nbH -aMM -aoe -fvu -koB -jGh -jGh -jGh -jGh -arb -ort -aoe -nGJ -igF -bEy -aoe -iqB -lMR -uHI -aRJ -ajl -gXR -nbH -aMM -gxm -bRJ -bRJ -bRJ -qpW -dKu -dKu -dKu -gxm -lJA -pep -pep -njr -vIo -olw -cRr -wZK -pgD -tQV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -taM -sGw -xzB -rBl -wfE -akm -opD -oWb -aVP -wDr -sFw -sFw -sFw -oLj -dFg -dFg -dFg -wDr -mJE -toq -aKZ -bCd -rxS -ubk -sXD -arM -xll -fWR -iEN -vhX -bMM -vMV -hrN -vhX -pSL -fWR -xll -hKL -sXD -qVr -lFU -bCd -kwa -uWf -esZ -wDr -qIA -qIA -qIA -jsa -lIt -lIt -lIt -wDr -tYp -oqt -qlm -tMA -nmY -uKH -xFt -kyP -xOa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(137,1,1) = {" -aaa -aaa -aab -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -abs -adq -wQG -qkK -wQj -gLl -gLl -sOA -utp -bZm -gxm -vXm -vXm -vXm -fQY -lip -lip -lip -gxm -gXR -lYS -efw -mRK -diL -gzK -xyq -xyq -xyq -xyq -xyq -xyq -ivp -dpC -pUV -blm -mts -lOQ -aok -uHI -aRK -ajl -lap -nbH -aMM -gxm -bRJ -bRJ -bRJ -qpW -dsR -dsR -dsR -gxm -kAi -pep -fcd -vIo -vIo -nUu -vYR -nio -pgD -tQV -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -taM -sGw -xzB -esm -wfE -wfE -dFf -wfE -wfE -wDr -sFw -sFw -sFw -uZm -dFg -dFg -dFg -wDr -qPk -hKe -qPk -bCd -bSk -fnt -kan -kan -hsf -lcu -kan -kan -kan -evV -kan -kan -kan -lUz -xrl -kan -kan -cRG -giN -bCd -knm -jZe -knm -wDr -qIA -qIA -qIA -guK -lIt -lIt -lIt -wDr -mZA -rOI -aId -exf -nmY -qpV -oKU -kyP -xOa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(138,1,1) = {" -aaa -aaa -aab -bdH -eJy -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -abw -ivk -awW -akt -awW -pzY -wyx -utp -qxS -bZm -gxm -trg -trg -trg -gxm -cvd -cvd -cvd -gxm -gXR -lSN -umt -aoe -fjn -wUd -sTD -sTD -sTD -vEm -fSh -fSh -aoe -icO -rRH -wYt -aoe -vFV -aok -eUv -sda -ajl -gaH -xCB -aMM -gxm -dfY -dfY -dfY -gxm -gIS -gIS -gIS -gxm -lJA -pOG -fcd -iHu -mdf -baw -sMM -baw -aPP -trb -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -nYj -vrw -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -rBl -xzB -kjF -xzB -xzB -hrY -nAm -wDr -sFw -sFw -sFw -uZm -eJC -eJC -eJC -wDr -qPk -hKe -qqf -kan -kan -kan -kan -qnN -vMV -xRq -hVe -fCd -qth -vMV -nSf -fCd -nee -ijy -vMV -xYY -kan -kan -kan -kan -tzw -sPY -knm -wDr -sWD -sWD -sWD -guK -lIt -lIt -lIt -wDr -vqM -aId -aId -exf -nmY -uKH -oKU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -aaa -aab -aaa -aaa -"} -(139,1,1) = {" -aaa -aaa -aab -bdH -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abw -ivk -awW -akt -vCt -gLl -gLl -gLl -gLl -gLl -gxm -trg -trg -trg -gxm -cvd -cvd -cvd -gxm -gXR -nbH -wkh -sqf -sqf -sqf -sqf -sqf -sqf -sqf -ajl -ajl -ajl -pQl -uRX -hqK -aoe -uxt -crW -aok -sYK -sSI -cWo -nbH -aMM -gxm -dfY -dfY -dfY -gxm -gIS -gIS -gIS -gxm -vIo -vIo -vIo -vIo -vIo -nTH -sMM -baw -lrU -trb -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -pJo -pJo -pJo -pJo -pJo -jnW -pJo -pJo -pJo -pJo -pJo -pJo -jnW -pJo -aLL -uOX -xcZ -eWs -jEF -rJk -lzJ -uwF -wDr -ave -ave -ave -wDr -eoP -eoP -eoP -wDr -qPk -hKe -qPk -kan -hgv -iQS -igu -gNT -vMV -hjl -vMV -vMV -vMV -vMV -vMV -vMV -vMV -hjl -vMV -lFR -kan -wFI -eSO -kan -knm -sPY -knm -wDr -iBc -iBc -iBc -wDr -wkL -wkL -wkL -wDr -hQs -aId -aId -exf -nmY -fAS -xlQ -bSf -cYg -nDh -cYg -cYg -cYg -cYg -cYg -cYg -cYg -nDh -cYg -cYg -cYg -nDh -cYg -bVU -aaa -aab -aaa -aaa -"} -(140,1,1) = {" -aaa -aaa -aab -bdH -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abs -adq -jgD -xSH -vgm -gLl -mis -mis -mis -yjr -gxm -trg -trg -trg -gxm -cvd -cvd -cvd -gxm -gXR -nbH -aMM -sqf -gqy -eUl -byZ -hRs -hRs -sqf -bvm -kjs -ajl -ajl -ajl -ajl -ajl -ajl -ajl -ycv -sYK -ajl -xlR -nbH -aMM -gxm -dfY -dfY -dfY -gxm -gIS -gIS -gIS -gxm -ojX -ojX -ojX -mxo -vIo -rWl -cRr -maW -pgD -tQV -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -bkc -xcM -aLL -aLL -uJn -aLL -aLL -aLL -aLL -aLL -wDr -ave -ave -ave -wDr -eoP -eoP -eoP -wDr -qPk -hKe -qPk -kan -fKX -kMe -kan -hMA -vJU -xoL -vMV -vMV -rhb -rhb -rhb -vMV -vMV -wOX -dLP -rpu -wsp -drz -ejh -kan -knm -jZe -knm -wDr -iBc -iBc -iBc -wDr -wkL -wkL -wkL -wDr -bSf -bSf -auW -bSf -bSf -bDj -bSf -bSf -qjb -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -dYG -cYg -bVU -aaa -aab -aaa -aaa -"} -(141,1,1) = {" -aaa -aaa -aab -bdH -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abs -adq -wQG -qkK -wQj -gLl -mis -mis -mis -mis -gxm -xlJ -trg -trg -gxm -cvd -cvd -cvd -gxm -gXR -xCB -aMM -sqf -swv -ejc -eLA -eLA -eLA -sqf -juq -lZH -odh -ajl -rRy -biY -vVT -rno -ajl -dZv -sYK -ajl -met -xCB -aMM -gxm -dfY -dfY -dfY -gxm -gIS -gIS -bcf -gxm -ojX -ojX -ojX -ojX -vIo -nUu -vYR -nio -pgD -tQV -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pTT -aLL -rab -bbS -aLL -dvn -fkd -paf -lpC -wDr -ave -ave -ave -wDr -eoP -eoP -eoP -wDr -xbb -toq -aKZ -bst -bst -bst -bst -bst -bst -fHQ -vMV -vMV -vAl -qUB -ssB -vMV -vMV -hFa -biA -biA -biA -biA -biA -biA -kwa -ayB -uiU -wDr -iBc -iBc -iBc -wDr -wkL -wkL -wkL -wDr -tJw -sLS -bka -bdf -bSf -weC -imi -bSf -jYU -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -bVU -aaa -aab -aaa -aaa -"} -(142,1,1) = {" -aaa -aaa -aab -bdH -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abw -ivk -awW -akt -awW -aAk -mis -mis -mis -mis -gxm -trg -trg -trg -gxm -cvd -cvd -cvd -gxm -gXR -lSN -lcx -sqf -hca -cBv -cDm -sRA -sRA -sqf -qpk -dIh -gYM -tXe -dSC -wqY -jIi -dsT -hYQ -lOQ -sYK -gWG -gXR -xCB -aMM -gxm -dfY -dfY -dfY -gxm -gIS -gIS -gIS -gxm -ojX -ojX -ojX -ojX -yiK -baw -sMM -baw -jpd -trb -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pTT -aLL -cvC -bbS -aLL -xpu -aLW -aLW -dNm -wDr -ave -ave -ave -wDr -eoP -eoP -bdu -wDr -cvg -hKe -qPk -bst -eSu -rNB -tzT -gye -bkE -mFh -vMV -vcf -nmQ -xTI -nmQ -qhz -vMV -ngH -cpJ -fcZ -okT -sFK -qFM -biA -knm -sPY -jxu -wDr -rbw -iBc -iBc -wDr -wkL -wkL -wkL -wDr -uSz -bTO -bTO -wDl -bSf -cpk -bka -bSf -jYU -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -bVU -aaa -aab -aaa -aaa -"} -(143,1,1) = {" -aaa -aaa -aab -bdH -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abw -ivk -awW -akt -aAn -gLl -mis -mis -mis -mis -gxm -trg -trg -trg -gxm -cvd -cvd -cvd -gxm -gXR -xCB -aMM -sqf -wNu -cBv -vkX -vfs -oRd -sqf -ajl -uZd -ajl -ajl -cLS -pds -dSC -qQd -hYQ -lOQ -sYK -gWG -gXR -xCB -aMM -gxm -dfY -dfY -dfY -gxm -gIS -gIS -gIS -gxm -ojX -ojX -ojX -ojX -vIo -xuY -sMM -baw -lru -trb -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pTT -osk -bbS -bbS -osk -bbS -xka -uLn -uoA -wDr -ave -ave -ave -wDr -eoP -eoP -eoP -wDr -qPk -hKe -qPk -bst -pqy -jih -lsM -tJj -bkE -sVQ -wzf -cUR -wzf -wzf -wzf -cUR -wzf -lyc -cpJ -lsm -nvp -iAY -nbd -biA -knm -sPY -knm -wDr -iBc -iBc -iBc -wDr -wkL -wkL -wkL -wDr -hkB -bTO -qSm -cls -plg -weC -cls -vtq -jYU -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -bVU -aaa -aab -aaa -aaa -"} -(144,1,1) = {" -aaa -aaa -aab -bdH -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abs -adq -jgD -xSH -vgm -gLl -mis -mis -mis -mis -gxm -trg -trg -trg -gxm -cvd -cvd -cvd -gxm -aQu -xCB -aMM -sqf -sqf -ill -sqf -sqf -sqf -sqf -riG -fjV -cxv -ajl -vUM -qjT -rPD -rTD -ajl -cbK -sYK -ajl -oZK -xCB -aMM -gxm -dfY -dfY -dfY -gxm -gIS -gIS -gIS -gxm -ojX -ojX -ojX -ojX -vIo -rWl -cRr -maW -pgD -tQV -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -sio -aLL -pfK -xYB -aLL -oni -aLW -aLW -eKl -wDr -ave -ave -ave -wDr -eoP -eoP -eoP -wDr -qPk -hKe -tON -bst -eaR -bGg -jfh -qmo -kIO -kgX -lFR -lnz -dbT -vMV -lFR -lnz -dbT -sVd -ebX -qQM -eGD -xbe -rXK -biA -knm -sPY -knm -wDr -iBc -iBc -iBc -wDr -wkL -wkL -wkL -wDr -qtA -bTO -xMf -qyk -bSf -weC -gij -bSf -wPV -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -bVU -aaa -aab -aaa -aaa -"} -(145,1,1) = {" -aaa -aaa -aab -bdH -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abs -adq -esk -qkK -tLT -gLl -gLl -gLl -gLl -gLl -gxm -dOS -dOS -dOS -gxm -gxm -gxm -gxm -gxm -fov -nbH -xrd -ajl -xkA -aok -sIK -utq -riH -ajl -ajl -ajl -ajl -ajl -ehO -ehO -uYK -ehO -ajl -pNr -eOP -ajl -aQu -nbH -fTN -gxm -gxm -gxm -gxm -gxm -dOS -dOS -dOS -gxm -vIo -vIo -vIo -vIo -vIo -gVb -vYR -uwy -pgD -tQV -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pTT -aLL -rab -bbS -aLL -qkt -azE -aLW -gFa -wDr -ave -ave -ave -wDr -eoP -eoP -eoP -wDr -qPk -hKe -qPk -bst -fVf -jih -nqw -pKk -bkE -dnt -vMV -wNX -vMV -vMV -vMV -wNX -vMV -bjr -cpJ -foZ -aSL -iAY -bRp -biA -knm -sPY -knm -wDr -iBc -iBc -iBc -wDr -wkL -wkL -wkL -wDr -uxw -kto -kwm -wJL -bSf -fvN -imi -bSf -jYU -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -bVU -aaa -aab -aaa -aaa -"} -(146,1,1) = {" -aaa -aaa -aab -bdH -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abw -ivk -awW -awW -awW -vVD -lJz -lJz -lJz -lJz -qkx -asj -dlD -dlD -tEF -lJz -lJz -hVy -lJz -oBR -nbH -cWo -slM -tdn -aok -aok -aok -qYn -lWA -lWA -mif -lWA -lWA -lWA -lWA -rPD -lWA -lWA -tdn -qYn -slM -cWo -nbH -wHW -lJz -sLH -lJz -lJz -mZV -asj -asj -asj -eBy -lJz -lJz -lJz -lJz -vVD -eDJ -baw -qYC -kwo -trb -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -pJo -oAS -aLL -aLL -uJn -aLL -aLL -aLL -aLL -gAT -wDr -wDr -wDr -wDr -wDr -bvo -vlK -vlK -wDr -kgt -hKe -qPk -bst -tES -eoX -uxD -nzh -bkE -ijW -vMV -vMV -tPU -kRw -fgr -vMV -vMV -ojk -cpJ -vwa -rTF -oIL -xtt -biA -knm -sPY -qPU -wDr -rCe -rCe -cLW -wDr -wDr -wDr -wDr -wDr -bSf -bSf -yfa -bSf -bSf -bDj -bSf -bSf -jDF -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -cYg -bVU -aaa -aab -aaa -aaa -"} -(147,1,1) = {" -aaa -aaa -aab -bdH -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abw -ivk -awW -aTm -awW -vVD -qQu -qQu -qQu -qQu -kVW -kVW -oFz -oFz -oFz -qQu -dcR -dcR -dcR -dcR -hWa -nUi -oJS -fNm -fNm -fNm -fNm -jaG -fNm -fNm -fNm -fNm -jnz -fNm -fNm -hJb -fNm -fNm -uxx -qtW -oJS -nUi -rxQ -dcR -dcR -dcR -dcR -qQu -oFz -oFz -oFz -kVW -kVW -qQu -qQu -qQu -qQu -vVD -ley -vbB -ley -kwo -trb -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -pJo -pJo -pJo -pJo -pJo -wpV -pJo -pJo -pJo -pJo -pJo -pJo -wpV -pJo -aLL -eXL -eQd -bwG -oNh -jhe -dyc -olQ -oCK -eqp -gMk -qRb -rkM -brT -oWF -brT -wyw -exl -qyX -qPk -bst -bst -bst -bst -bst -bst -fiy -vMV -vMV -lSL -kan -oLR -qkN -vMV -sPA -biA -biA -biA -biA -biA -biA -wHn -rDO -cIO -jDs -baP -fqU -oRP -suI -bxj -emw -fxk -cIt -cyg -bwv -ijV -vCb -jVc -brz -hWy -bSf -cYg -gLu -cYg -cYg -cYg -cYg -cYg -cYg -cYg -gLu -cYg -cYg -cYg -gLu -cYg -bVU -aaa -aab -aaa -aaa -"} -(148,1,1) = {" -aaa -aaa -aab -bdH -rfm -bUu -bUu -bUu -bUu -bUu -bUu -bUu -bUu -bUu -bUu -bUu -bUu -bUu -abs -abs -awW -vGQ -ajE -vVD -cWo -tWe -cWo -djw -mDU -mDU -mDU -mDU -tWe -mDU -mDU -mDU -mDU -lzg -lSN -aMM -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -nIs -obs -sqf -xlR -lSN -eVo -mDU -tWe -mDU -mDU -mDU -mDU -mDU -mDU -tWe -mDU -cWo -iXG -mDU -vVD -ycY -dBp -gVA -tQV -tQV -bUu -bUu -bUu -bUu -bUu -bUu -bUu -bUu -bUu -bUu -bUu -bUu -bUu -bUu -jQR -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -klV -lfx -sWr -lfx -lfx -ouh -aqD -klV -bwG -vVy -gtD -dAB -cvI -cvI -cvI -iZG -qPk -wKN -qPk -kan -lxX -fCd -wwl -wFV -vhX -uyE -vMV -vMV -uIn -dBH -kHp -nOU -vMV -oNf -vhX -giU -pDs -qae -pDs -kan -knm -sPY -knm -qNj -wzy -wzy -wzy -qNj -juo -seL -wER -tyR -hYv -juo -kYr -ulj -mJO -vDN -jUa -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -aaa -aab -aaa -aaa -"} -(149,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acf -biV -aet -biV -aet -hIm -aet -hIm -aet -abE -abE -abE -abE -abE -abE -abE -abE -abE -lBj -jWQ -mAM -vOy -nMd -lGS -osO -aDf -tYL -vOy -qMA -unY -rZk -ltP -jbD -jwG -gfw -vOy -dUX -cYt -dPr -sqf -kIi -jWQ -mAM -pBG -pBG -pBG -pBG -pBG -pBG -pBG -pBG -pBG -pBG -ftz -mRU -mRU -mRU -mRU -mRU -mRU -woU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -kyw -klV -lfx -bwG -aQF -aQF -aQF -aQF -owt -aQF -pyu -vzE -dAB -oNg -dwj -oNg -iZG -qPk -hKe -qPk -kan -euT -vMV -vMV -vMV -tEY -jDo -dPM -dPM -jxF -dBH -kHp -nOU -vMV -hjl -qem -nXe -wJb -wJb -bPu -kan -knm -sPY -knm -qNj -hMV -ewc -aZT -qNj -flm -wgL -mJO -mJO -mJO -bTq -mJO -mJO -mJO -mgb -jUa -lyW -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(150,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acv -vDL -lTK -xPi -xPi -vDL -vDL -vDL -aet -sxd -rAg -rAg -rAg -rAg -wQq -xan -kYq -abE -gQr -rNq -gQr -vOy -pFf -ivm -biK -pSz -cKk -vOy -cYF -rDV -dwr -rDV -mTd -gQF -ssD -vOy -nzG -cYt -dPr -sqf -gQr -eFJ -gQr -pBG -rdZ -rdZ -rdZ -rdZ -bCs -pBG -rLp -fAz -pBG -fHN -mRU -xJg -qnA -uAc -gNN -jiN -woU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -kyw -vOl -lfx -bwG -amQ -bfp -amQ -vkJ -uMq -aQF -aQF -aQF -aQF -aQF -aQF -aQF -aQF -wnB -toq -aKZ -kan -eWt -kRw -mTO -kPb -vhX -xoL -vMV -vMV -nQF -dBH -kHp -nOU -vMV -wOX -vhX -mKe -ijw -phX -ijw -kan -kwa -ayB -aax -bJt -bJt -bJt -bJt -bJt -bJt -bJt -mJO -plv -plv -plv -plv -mvg -mJO -mgb -mgb -lyW -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(151,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acv -vDL -alg -bBC -bBC -aIx -aIB -vDL -aet -kPZ -acI -acj -vJZ -wfZ -mes -aef -wAP -agA -wXW -ipR -bYE -vOy -eKS -lsy -cQf -iWV -nWp -vOy -lyZ -lyZ -xQT -lyZ -fvk -lyZ -cwv -tWa -kQL -cYt -dPr -asn -wXW -dEP -bYE -pBG -rdZ -rdZ -rdZ -rdZ -rdZ -pBG -lAZ -nBY -pBG -jtU -mRU -hDp -ebI -mCO -jtU -rGt -woU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -kyw -klV -cGY -bwG -rUq -rUq -sab -sab -uMq -tyG -ptS -kbk -lcm -bhb -klt -xne -aQF -syj -wKN -qqf -xMs -xMs -xMs -xMs -xMs -xMs -fiy -vMV -vMV -sQs -kan -uNE -amN -vMV -jcR -vMo -vMo -vMo -vMo -vMo -vMo -tzw -sPY -hkC -bJt -xOL -nvC -ieM -ply -sMd -fyl -mJO -plv -plv -plv -plv -plv -mJO -jUa -pgJ -lyW -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(152,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acf -aet -avx -ahN -uli -uli -uli -ugc -aet -lwC -aTT -acl -xxi -qJj -mes -aef -aef -bxy -hnY -lGh -tww -vOy -oXd -ahU -jpT -tHl -vOy -vOy -tMz -fqL -vZy -onA -onA -vot -urU -tWa -mwt -cYt -dPr -asn -wYe -yiu -tww -pBG -rdZ -rdZ -rdZ -rdZ -rdZ -pBG -blg -oJX -pBG -vpI -mRU -mRU -mRU -lpa -mRU -mRU -woU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -kyw -klV -bTj -bwG -pKh -sab -gqD -jYl -hqU -tyG -ikX -aRy -aRy -aRy -aRy -ecC -aQF -rWv -hKe -qPk -xMs -oii -fwl -uCq -pjI -bgw -oYU -vMV -vMV -hVe -fCd -nee -vMV -vMV -xzd -xqy -vAO -xlS -eRE -oCw -vMo -knm -sPY -knm -lhB -skW -oHI -dCu -oHI -oHI -hee -mJO -plv -plv -plv -plv -plv -mJO -jUa -mgb -lyW -xOa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(153,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acf -aet -rAq -uli -uli -uli -mov -qat -aet -lhX -aXc -acl -jlN -qqn -mes -bls -aeH -maD -pkP -efV -tww -vOy -wYx -aST -une -vxo -nwB -bgX -aUF -pis -wQM -tcv -wCP -oyu -uyR -tWa -fCx -cYt -dPr -asn -wYe -poD -sEJ -pBG -rdZ -rdZ -rdZ -rdZ -rdZ -pBG -dzp -sEy -pBG -jtU -jtU -uBx -eCL -fHN -prf -fHN -woU -aaa -eJy -nYj -nYj -nYj -vrw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -bdH -taM -kyw -klV -deF -bwG -pGL -rDY -bRw -mmz -hvo -ykA -gzj -aRA -aRA -bQU -bQU -jyj -eHW -htl -vaq -vTX -xMs -diV -mjg -alu -tTl -bgw -cfL -vMV -vMV -rhb -rhb -rhb -vMV -vMV -pvq -xqy -qap -grB -ggf -iGJ -vMo -knm -sPY -knm -lhB -fvF -oHI -yes -oHI -oHI -ndo -mJO -plv -plv -plv -plv -plv -mJO -jUa -jUa -lyW -xOa -aaa -avo -avo -avo -avo -avo -avo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(154,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acv -nZc -uli -aIx -uli -uli -mov -qat -aet -lhX -eYM -uuR -dHu -qqn -mes -aef -tOD -agA -wYe -qdJ -sEJ -vOy -xix -esI -oPP -kmj -dXa -xuB -xuB -kXl -gNR -kQL -cYt -lnX -dio -vOy -vOy -fUc -vmu -sqf -ssh -poD -tww -pBG -pBG -pBG -pBG -cCi -pBG -pBG -veO -pBG -pBG -mRU -mRU -mRU -mRU -mRU -jtU -fHN -woU -aaa -taM -aag -aag -aag -aag -nYj -vrw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -bdH -taM -kyw -klV -oWq -bwG -aQF -aQF -qib -xIQ -tmX -tyG -rrK -aRy -feI -brb -cpp -uhm -flJ -qPk -hKe -qPk -xMs -iAa -hAl -fId -nJW -pcV -jEH -vMV -qhz -tDM -nJf -pNz -vcf -vMV -ulO -kDm -vFB -fPA -jqw -rvl -vMo -knm -sPY -knm -lhB -urg -oHI -pyq -sSH -tzN -kVx -bJt -bJt -bJt -bJt -bJt -bJt -bJt -jUa -lpq -lyW -xOa -avo -avo -avs -avs -avs -avs -avo -avo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(155,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acv -nZc -uli -uli -uli -uli -uli -vDL -aet -lhX -acl -acl -acl -qqn -aef -aef -tYb -abE -sdc -qdJ -tww -vOy -dBA -bIM -vFj -nyV -jui -vce -ipg -hTg -gNR -kQL -cYt -eLb -vUZ -fPZ -hTi -ojl -wsA -iEt -pkP -efV -tww -oBd -pBG -gqQ -cHG -nQA -dAl -pyx -lKO -pBG -lEf -gel -gel -gel -fkX -mRU -jtU -tzu -woU -nYj -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -taM -kyw -vOl -lfx -bwG -amQ -bfp -uMq -xIQ -jej -aQF -xCK -aRy -rsZ -vRG -lVm -xPv -aQF -uNf -hKe -qPk -xMs -nfu -mjg -tNQ -gYw -bgw -lzj -wzf -sde -trz -trz -trz -sde -wzf -dBw -xqy -rxk -hcY -ggf -xMp -vMo -knm -sPY -knm -lhB -vBs -oHI -peU -oHI -oHI -oHI -hva -jVu -kEQ -lKl -oHI -xcw -bJt -jUa -jUa -lyW -xOa -avo -avs -avs -uTz -kvN -avs -avs -avo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(156,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acf -ahy -avZ -ubz -ubz -ubz -uli -ugc -aet -lhX -acl -acl -acl -qqn -mes -aef -afs -agA -wYe -yiu -tww -vOy -nSb -esI -vFj -eXF -atD -lrI -lyZ -hTg -fqa -dUU -tWy -adb -tcv -rXX -noh -tcv -fXX -nUW -hnY -cDI -mkB -rJM -vTD -wmP -wmP -dRP -eFY -nQA -eAN -fCQ -rfb -tLd -vwh -xoD -cHu -mRU -jtU -fHN -woU -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -taM -kyw -klV -sJa -bwG -pGG -sab -uMq -sVK -aQF -aQF -fEl -aRy -unA -fBX -tBb -ueS -aWD -qPk -hKe -qPk -xMs -tWV -shd -miG -nlS -bgw -sEE -vMV -vMV -vMV -vMV -vMV -vMV -vMV -ooO -xqy -kvD -wgF -jeJ -kwK -vMo -knm -sPY -cbL -bJt -nLY -oHI -qdg -eAB -tUb -eAB -eAB -eAB -eAB -mcr -kVx -ovL -bJt -oqI -jUa -avo -avo -avo -avs -lox -lrh -lrh -uVw -avs -avo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(157,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acf -aet -aIx -ubz -ceC -cMI -uli -qat -aet -loV -acK -acm -acK -esK -dfF -oYH -afs -agA -wYe -yiu -tww -vOy -oUF -dRh -mrT -hgR -rQy -vOy -qvk -hTg -rlS -eyf -gjn -iKY -vOy -xjU -vOy -qNo -uhY -vOy -bRC -yiu -tww -xHn -pBG -lvb -eAN -jVg -rGU -xCf -eAN -fCQ -rLv -ndp -vZw -ndp -cHu -mRU -fHN -mRU -woU -aag -aag -aag -aag -aag -aag -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -taM -kyw -lfx -klV -sWr -xAg -xAg -xZB -mzz -aQF -aQF -hek -aRy -yij -eki -xPL -ueS -aWD -aKZ -toq -aKZ -xMs -xMs -xMs -xMs -xMs -xMs -can -vMV -vEA -ubi -kRw -fgr -cuE -vMV -kkb -vMo -vMo -vMo -vMo -vMo -vMo -kwa -ayB -mHM -bJt -bJt -cwY -vUL -lcP -bJt -mdi -bJt -ymf -oHI -peU -oHI -jxT -bJt -wgg -jUa -dSj -dxk -dxk -gXg -ngv -ngv -gYu -gNL -avs -avo -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(158,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acf -aet -uli -ubz -awe -ovT -uli -huV -aet -lhX -acl -acl -acl -qqn -mes -aef -afs -agA -wYe -yiu -tww -vOy -ovV -smc -hNK -hNK -hNK -vOy -gvV -hTg -kdq -vaA -nVM -fTr -vOy -lDR -vPS -eDz -aHE -vOy -wYe -yiu -tww -pBG -pBG -hEl -eAN -fQS -oGY -neT -eAN -fCQ -vVv -vzp -vZw -edJ -cHu -mRU -tKi -mRU -woU -aag -aag -aag -aag -aag -aag -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -taM -kyw -txp -eQd -bwG -vMr -vMr -uMq -lJQ -aQF -aQF -rYt -aRy -xLp -ooF -jVd -ueS -aWD -qPk -hKe -qPk -omH -iXU -hDw -kzb -uVI -kan -kan -ezS -lgg -kan -kan -kan -ezS -kfV -kan -kan -sPO -vEH -uFH -tQd -omH -knm -sPY -knm -yfS -ryX -dGM -kIL -lcG -pQu -uFw -irD -dYR -oHI -peU -uGD -wiI -bJt -bRG -yeG -avo -avo -avo -avs -lrh -lrh -lrh -ubL -avs -avo -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(159,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acf -aet -avx -ubz -ubz -ubz -uli -qat -aet -lhX -acl -acl -acl -qqn -aef -aef -ani -abE -sdc -poD -tww -vOy -qRu -gLc -vYw -mMl -jkC -vOy -vOy -cGy -vOy -seE -vOy -vOy -vOy -qym -rlS -rlS -mLp -kgs -wYe -poD -tww -bvX -ojQ -eAN -eAN -jVg -nQA -nQA -eAN -fCQ -rfb -ndp -vZw -ndp -cHu -mRU -fHN -mRU -woU -bUu -aag -aag -aag -aag -aag -aag -xOa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -taM -kyw -cme -gVQ -bwG -pGL -rDY -uMq -xIQ -dGH -aQF -mGZ -aRy -rXm -sOm -icn -xPv -aQF -rmz -wKN -qPk -omH -beH -dcd -beH -eST -beH -neS -beH -beH -tJR -gth -oEw -beH -beH -neS -beH -eST -beH -beH -beH -omH -knm -sPY -knm -yfS -jct -yfP -sAZ -eYV -oJg -pPK -irD -tsa -oHI -peU -oHI -vwI -bJt -lAa -mgb -lyW -xOa -avo -avs -avs -iiH -gca -avs -avs -avo -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(160,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -acv -nZc -uli -uli -uli -uli -uli -bEz -aet -lhX -gsZ -uxO -bTt -qqn -mes -aef -gzv -agA -wYe -poD -tww -vOy -xbi -smc -aUu -iki -aUu -vOy -jFf -hTg -uGM -dKY -mrS -vOy -lqb -qaN -qXD -tQt -xtZ -kgs -wYe -poD -tww -bvX -kVV -vQR -vQR -epJ -jML -jML -fnH -fCQ -rLv -uRe -eAf -mRW -cHu -mRU -jtU -fHN -woU -aaa -taM -aag -aag -aag -aag -bUu -jQR -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -taM -kyw -cGY -gbA -bwG -aQF -aQF -esB -xIQ -sab -tyG -olM -aRy -aRy -eXr -iFH -uhm -ujp -qPk -ckh -htl -eNd -emr -emr -emr -qVY -quq -duv -beH -beH -beH -eST -beH -beH -beH -fcf -beH -pHj -rCO -rCO -rCO -fSy -wwE -mDZ -knm -fkc -tMw -hxz -aZp -mRg -uvn -pPK -irD -rBj -oHI -peU -oHI -stm -bJt -mgb -nhw -lyW -xOa -avo -avo -avs -avs -avs -avs -avo -avo -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(161,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -acv -nZc -aIB -aKg -uli -uli -mov -qat -aet -lhX -kNO -acl -jlN -qqn -mes -aef -nIS -bxy -hnY -poD -tww -vOy -qnk -aSo -aUu -iki -aRR -vOy -vqZ -hTg -aLs -ser -gid -vOy -hzT -hTg -wdj -rlS -nrX -mmN -wYe -poD -tww -bvX -maO -lPm -iZV -fdx -cuq -eQJ -fVF -pBG -qWR -wJH -wJH -wJH -sNR -mRU -jtU -fHN -woU -aaa -rfm -bUu -bUu -bUu -jQR -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -taM -kyw -oif -klV -bwG -amQ -bfp -uMq -nQJ -cyH -qUA -vPX -pOi -pOi -pOi -pOi -tRw -flJ -qPk -wKN -qPk -omH -eGZ -ieX -pfM -eST -rEf -rWT -emr -emr -usX -lln -rCO -rCO -rCO -vVd -eBg -mSj -bhq -dcd -eTd -omH -knm -rDO -hqp -dey -hZV -nkQ -ezU -tey -uvn -hyd -cEi -bJt -tym -peU -oHI -qGi -bJt -nQo -pgJ -lyW -xOa -aaa -avo -avo -avo -avo -avo -avo -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(162,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -acf -aet -aJJ -aIB -uli -uli -mov -qat -aet -lwC -tIK -acl -sNO -qJj -mes -aef -nIS -lyL -hnY -poD -tww -vOy -sNr -dNd -aUu -iki -aUu -vOy -foP -kms -uvb -eVH -jOh -vOy -fsd -vIi -nSZ -xuB -xRh -vOy -sdc -poD -sEJ -pBG -pBG -pBG -pBG -rER -pBG -pBG -pBG -pBG -pBG -mRU -mRU -mRU -mRU -mRU -jtU -tzu -woU -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -taM -kyw -mKI -lfx -bwG -iWQ -iWQ -jkI -mNr -fZO -tyG -hnO -oJJ -oJJ -rhv -rhv -jRO -aQF -aKZ -hUE -qPi -bdd -bdd -bdd -bdd -bdd -qCc -fUA -beH -spF -uBN -eST -jMr -eGZ -beH -fUA -qYZ -bdd -bdd -bdd -bdd -bdd -fTs -ayB -kwa -yfS -dTg -hxz -pwT -lLY -uvn -pPK -irD -kvU -nel -pWI -oHI -knK -bJt -jUa -ezM -lyW -xOa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(163,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -acf -aet -avx -ahN -aIB -aKg -uli -ugc -aet -abK -acL -acn -cRK -dXV -mes -aef -tOD -agA -wYe -yiu -tww -vOy -lek -lea -feh -obH -jkC -vOy -vOy -qCL -qCL -qCL -vOy -vOy -bXJ -lyZ -lyZ -lyZ -vAB -vOy -wYe -yiu -tww -kfZ -gQk -trU -oNY -fdx -pBG -pVF -ppF -fiE -pBG -jtU -jtU -uBx -rQe -fHN -jtU -fHN -woU -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -taM -kyw -dgw -lfx -bwG -iWQ -iWQ -sab -aNr -pvw -tyG -tLv -tLv -qtL -fxB -dtw -god -aQF -qPk -wKN -qPk -sQp -bIr -cmd -jav -lNV -beH -beH -dwl -bdd -bdd -yjZ -bdd -bdd -aMt -beH -beH -lNV -rPR -mHc -qAD -hDZ -knm -sPY -knm -yfS -dTg -hxz -gig -uRh -uvn -pPK -irD -qTY -oHI -peU -saE -tSp -bJt -jUa -aRp -lyW -xOa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(164,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -acv -vDL -uli -bLO -bLO -bLO -bLO -vDL -qDe -fBT -fBT -fBT -fBT -fBT -cBk -aef -yfX -abE -gTN -yiu -tww -vOy -vOy -vOy -csb -csb -csb -vOy -vOy -gOI -wKP -pKQ -vOy -vOy -eIg -oLk -vDm -nTg -fgd -vOy -xdY -yiu -tww -kfZ -iuG -sOv -eAN -fdx -xDU -dzp -rMT -dzp -pBG -jtU -mRU -mRU -mRU -mRU -fHN -mRU -woU -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -taM -kyw -klV -lfx -bwG -pGL -rDY -pGL -rDY -rwC -aQF -rng -bWu -aQF -aQF -aQF -aQF -aQF -xSn -epy -khv -bdg -lnj -tmm -cwX -vuA -cbO -cbO -cbO -vuA -dSy -fgF -nVt -vuA -cbO -cbO -cbO -vuA -snb -mYy -uBb -bdg -sge -epE -dln -bJt -sud -lhq -xLG -joa -gSC -xvV -irD -oFB -oHI -peU -tEn -bJt -bJt -jUa -mgb -lyW -xOa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(165,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acv -vDL -vDL -ozo -ozs -ozo -iIA -vDL -aet -tqm -rxC -oAf -fnh -mrF -gam -fet -mff -abE -sdc -poD -klx -ocg -bYE -vOy -vOy -vOy -vOy -vOy -vOy -qCL -qCL -qCL -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -cdg -poD -tww -kfZ -ubI -nQA -nQA -jvM -jvf -nTR -gDp -rwq -pBG -jtU -mRU -oyO -lfD -mRU -tKi -mRU -woU -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -taM -kyw -pou -lfx -bwG -aQF -aQF -aQF -aQF -aQF -aQF -aQF -aQF -aQF -abA -yhR -rfx -bwG -hMy -pPt -hMy -bdg -nRF -qtJ -fyD -bdd -iqx -iqx -iqx -vuA -bJB -mVG -oUR -vuA -bGd -bGd -bGd -bdd -vPw -nes -sUD -bdg -tlt -rFY -tlt -rde -gTG -iMm -mJi -iMm -iMm -fkv -bJt -tle -oHI -peU -fEH -bJt -uCw -jUa -mgb -lyW -xOa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(166,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vHn -cGd -pAy -cGd -cGd -aNi -aNi -jJp -aNi -aNi -aNi -aNi -aNi -aNi -aNi -aNi -aNi -aNi -xdY -poD -tsn -tsn -tww -vOy -elR -xXh -xXh -xXh -dMK -qZV -bFD -iHp -elR -xXh -xXh -xXh -dMK -vOy -vOy -vOy -wYe -poD -tww -pBG -mGT -nQA -nQA -vEG -pBG -pBG -pBG -pBG -pBG -jtU -fFp -jtU -tKi -mRU -gvr -mRU -woU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -bdH -taM -kyw -klV -klV -bwG -pXv -qEY -xhj -kjU -tcn -bwG -lQM -xbE -qxJ -oNh -klV -jhe -bwG -nFu -vBO -nFu -bdg -aGM -mVK -ygX -vuA -cbO -cbO -cbO -vuA -nix -bIr -mbr -vuA -cbO -cbO -cbO -vuA -bVI -rHb -uqm -bCh -ojT -bvL -ojT -yfS -gzs -iMm -jSy -wGb -iMm -bHO -bJt -nhc -oHI -peU -uiB -ocG -kOJ -mgb -mgb -lyW -xOa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(167,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -eJy -nYj -nYj -nYj -nYj -nYj -nYj -nYj -vHn -xbK -lZp -lZp -jor -aNi -cYT -aNm -cYT -lEF -beZ -iLD -mLn -aOR -mLn -iLD -aOR -bsw -wYe -hPZ -bPi -ava -tww -vOy -wWz -hLX -gWx -hyN -wTM -lvZ -qNr -jSf -wWz -krF -gWx -seU -wTM -vOy -chJ -ocg -uxu -poD -sEJ -pBG -tGT -nQA -nQA -jDO -pBG -aYH -cHG -xWK -pBG -mSM -mRU -gRc -oXB -mRU -jtU -fHN -woU -nYj -nYj -nYj -nYj -nYj -nYj -nYj -vrw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -eJy -kyw -kyw -kyw -kyw -kyw -kyw -kyw -kyw -klV -caq -bwG -igb -bRU -ooA -kpj -aiK -fpH -hBC -kpj -rAo -wtf -kpj -kpj -knn -ygp -tdi -fZE -sQp -nZF -tBL -vJB -lNV -beH -beH -beH -lNV -nZF -tBL -vJB -lNV -beH -beH -beH -lNV -nZF -tBL -vJB -sQp -oSM -ter -oSM -bJt -jKZ -eYV -nZh -eYV -dsz -egf -bJt -hSw -gDl -rui -uiB -bJt -uXU -jUa -nhw -lyW -lyW -lyW -lyW -lyW -lyW -lyW -lyW -vrw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(168,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -aag -aag -aag -aag -aag -aag -vHn -mHE -tob -lZp -tob -aNi -aZe -aNm -aNm -lRP -beE -mLn -mLn -hMi -bVV -bVV -dYu -bsw -nNS -usC -vyX -poD -sEJ -vOy -wWz -ykm -jjW -jlG -cQZ -uFt -fZj -jDy -pJA -hqh -jjW -nen -wTM -vOy -wYe -mfO -mHY -yei -tww -kfZ -eYn -nQA -nQA -vEG -ckN -eAN -eAN -eAN -pBG -fHN -mRU -mRU -mRU -mRU -vpI -fHN -woU -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -kyw -kyw -oNh -maK -lfx -lfx -lfx -klV -klV -klV -lfx -fnD -lfx -vmq -cqH -lYs -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -nhE -naa -nVQ -bdd -vuA -vuA -vuA -bdd -qCc -fUA -qYZ -bdd -vuA -hIA -vuA -bdd -qCc -fUA -qYZ -bdd -vuA -vuA -vuA -bdd -fvV -ter -gvK -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bJt -xUi -aIR -bJt -bJt -jUa -mgb -mgb -mgb -vPG -dWB -mgb -mgb -mgb -lyW -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(169,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -aag -aag -aag -aag -aag -aag -vHn -oGp -tob -tob -tob -aNi -aZr -aNm -aNm -lTE -beE -mLn -mLn -aOR -mLn -mLn -cCa -aNi -aNi -aNi -ssh -qdJ -tww -vOy -wWz -mgH -wdS -aPJ -wTM -keC -hcJ -jSf -wWz -uAe -wdS -rKM -wTM -vOy -cot -yiu -xIj -xIj -tww -kfZ -wvo -nQA -nQA -vEG -pBG -skR -oxc -nBi -pBG -tKi -mRU -pGh -xEs -mRU -jtU -tzu -woU -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -kyw -xbE -lfx -klV -ouh -klV -klV -lfx -lfx -lfx -rHq -bwG -sbw -uEi -jFL -iBA -bdd -eaw -rGQ -lHZ -coh -deB -vpt -rvr -bdg -fZE -iLm -fZE -bdg -eST -eST -eST -ilj -beH -fUA -beH -ilj -eST -beH -eST -ilj -beH -fUA -beH -ilj -eST -eST -eST -bdg -oSM -xub -oSM -bdg -mqi -mYK -mbH -alq -mqi -fkY -isY -bdd -pjT -aNv -pQu -fKI -bJt -kdj -mgb -jUa -mgb -xpL -mgb -mgb -jUa -jUa -mgb -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(170,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -aag -aag -aag -aag -aag -aag -vHn -onK -tob -lZp -tob -aNi -hFY -aNm -aNm -mwL -beE -mLn -mLn -aOR -mLn -mLn -qiy -ahR -ahR -ovS -feE -vIZ -tww -vOy -woh -vgO -aoJ -alk -xAe -gJv -hcJ -cdy -woh -pLO -qxm -vgO -xAe -vOy -qhY -poD -oXv -usC -omE -kfZ -lDa -eAN -eAN -vEG -pBG -pBG -pBG -pBG -pBG -fHN -rjl -fHN -tKi -mRU -iJT -fHN -woU -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -kyw -klV -lfx -nsY -nsY -jbo -nsY -nsY -nsY -nsY -nsY -nsY -bwG -bwG -eIM -bwG -bdd -aAw -jUc -lAV -caH -lAV -cxI -rvr -bdg -fZE -naa -fZE -bdg -eST -beH -beH -beH -beH -fUA -beH -beH -beH -beH -beH -beH -beH -fUA -beH -beH -beH -beH -eST -bdg -oSM -ter -oSM -bdg -mqi -shS -aVs -kyB -uQw -umR -waW -bdd -ihc -rsM -iMm -leG -nsY -nsY -jtN -nsY -nsY -nsY -nsY -nsY -nsY -xSI -mgb -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(171,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -aag -aag -aag -aag -aag -aag -vHn -lSv -lZp -lZp -lZp -aNi -jWr -aNm -jWr -mBJ -dtZ -mLn -mLn -wWg -bVV -bVV -hpY -aOR -aOR -aRm -hnY -qdJ -tww -vOy -vOy -vOy -rOR -sbr -mhT -cBW -qQR -pkO -wHE -lRr -jVM -vOy -vOy -vOy -bha -poD -tww -mRU -mRU -pBG -aGs -eAN -eAN -vEG -dFN -vLG -nWT -nLN -pBG -mSM -mRU -mkf -fHN -rjl -fHN -mRU -woU -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kyw -lfx -klV -nsY -xWT -cSn -jgk -nsY -rSG -aVS -oqS -nsY -gaj -fWt -klV -eLH -bdd -hnZ -whI -whI -nJS -lAV -ixq -rvr -bdg -fZE -naa -fZE -bdg -eST -beH -aLJ -bmr -beH -beH -beH -eGB -jMR -ufh -mEE -sTw -beH -beH -beH -rJK -gBo -beH -eST -bdg -oSM -ter -oSM -bdg -mqi -vyl -qGE -mFW -tyH -rGS -nlm -bdd -ibY -rsM -iMm -uZj -nsY -xWT -cSn -viu -nsY -rSG -eAh -oqS -nsY -mgb -mgb -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(172,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -aag -aag -aag -aag -aag -aag -vHn -pSG -jBk -cGd -pAy -aNi -aNi -aNi -aNi -aNi -aOR -eVQ -aOR -aOR -aOR -eVQ -aOR -aOR -agr -aNi -wYe -lGh -tww -vOy -vOy -vOy -vOy -aYO -cuf -jUu -rRu -uKa -kjv -dQE -vOy -vOy -vOy -vOy -gJa -lGh -tww -mRU -fHN -pBG -xiU -xUa -eAN -mLe -pBG -pZH -nnL -fID -pBG -vpI -mRU -hCL -jtU -mRU -tKi -mRU -woU -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kyw -lfx -klV -nsY -xWT -cSn -viu -nsY -iIP -cSn -dDt -nsY -exb -klV -klV -qLY -bdd -qGG -pau -whI -oLh -whI -lIV -aga -bdd -vgI -dLL -vgI -gtX -eST -beH -bgO -fzO -fzO -fzO -fzO -wNT -mfg -hsg -mdV -kbV -spa -spa -spa -spa -bgO -beH -eST -gtX -oSM -ter -oSM -bdd -lQe -epj -rGS -rGS -xoZ -qEB -lsx -bdd -gBR -rsM -oos -aQe -nsY -xWT -xQO -viu -nsY -dmR -cSn -dDt -nsY -mgb -jUa -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(173,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -taM -aag -aag -aag -aag -aag -aag -aag -vHn -cGd -cGd -cGd -qFP -lWu -pSG -pSG -pSG -aNi -aNi -aNi -aNi -aNi -aNi -aNi -aNi -aNi -aNi -aNi -bha -lGh -tww -bPF -wBW -ata -vOy -iza -xIg -wUp -jCv -iFB -hjg -rnv -vOy -jyJ -pGw -bPF -sdc -yiu -tww -mRU -fHN -pBG -pBG -pBG -sga -pBG -pBG -pBG -pBG -pBG -pBG -jtU -mRU -mRU -mRU -mRU -fHN -mRU -woU -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kyw -lfx -klV -nsY -rsx -hcM -lJj -nsY -rSZ -xAN -wIc -nsY -jvt -swz -klV -vSr -bdd -htH -htH -htH -cdS -hwR -pCX -myn -uqy -mzv -yfg -fZE -omH -eST -beH -bgO -fzO -fzO -fzO -fzO -wNT -kcJ -kNl -ndq -kbV -spa -spa -spa -spa -tmB -eBg -lln -fSy -cVZ -xdf -cVZ -wIm -lln -lln -mcu -cMq -dCY -ukK -dNe -bdd -gBR -rKO -wGb -wKW -nsY -qQG -xAN -puF -nsY -pku -xAN -wIc -nsY -mgb -jUa -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(174,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -lZp -tob -tob -lZp -tob -tob -hpD -lZp -tob -tob -tob -tob -lZp -jor -lZp -tob -tob -pVU -hnY -lGh -hnY -jgj -wBW -atb -vOy -pex -cuf -fAU -ctv -fOC -kjv -lrP -vOy -sLk -pGw -jgj -hnY -yiu -hnY -fFp -jtU -jtU -fHN -rQe -uiO -jtU -jtU -fHN -rQe -fHN -jtU -jtU -jtU -uBx -eCL -jtU -fHN -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -eJy -nYj -nYj -kyw -lfx -klV -nsY -nsY -sHf -nsY -nsY -nsY -kTy -nsY -nsY -qWL -kIk -iSI -oyA -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -fZE -iLm -fZE -bdg -eST -beH -bgO -fzO -fzO -fzO -fzO -wNT -kcJ -hWs -ndq -kbV -spa -spa -spa -spa -bgO -beH -eST -bdg -oSM -xub -oSM -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -ciW -rsM -oos -wKW -nsY -nsY -jNF -nsY -nsY -nsY -sxF -nsY -nsY -mgb -nhw -lyW -nYj -nYj -vrw -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(175,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -gxm -gxK -gxK -ppp -pdI -pdI -pdI -pdI -pdI -pdI -pdI -gxm -uGv -tob -njn -njn -njn -njn -njn -njn -njn -njn -njn -njn -njn -aej -aej -aej -aej -aej -lfv -lGh -uGg -vOy -vOy -vOy -vOy -eil -yiz -ieb -qMZ -xPm -czV -orb -vOy -vOy -vOy -vOy -vTN -yiu -piZ -nIN -nIN -nIN -nIN -nIN -nIN -nIN -nIN -nIN -nIN -nIN -nIN -nIN -nIN -nIN -nIN -jtU -fHN -gxm -roX -roX -roX -roX -roX -roX -roX -eIj -vaj -vaj -gxm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -taM -kyw -kyw -kyw -klV -caq -nsY -mEB -eKr -fQF -nGh -hVW -bzn -lrG -nsY -aJY -cAw -hIJ -lfx -bdd -ktr -iyW -fLz -nSz -wyd -dxj -lln -cDJ -mzv -xhW -fZE -bdg -eST -beH -bgO -fzO -fzO -fzO -fzO -wNT -pGW -hlt -ccl -kbV -spa -spa -spa -spa -bgO -beH -eST -bdg -oSM -iOo -cVZ -dat -bLT -pIO -lln -vkx -sFQ -bgF -eeW -bdd -gBR -wRO -iMm -wKW -nsY -wIg -dmL -jgd -uQo -uTG -pcP -faj -nsY -jUa -mgb -lyW -lyW -lyW -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(176,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -gxm -gxK -gxK -ppp -pdI -pdI -pdI -pdI -pdI -pdI -pdI -gxm -pUZ -tob -njn -rWz -rWz -rWz -rWz -rCZ -rWz -rWz -rWz -rWz -rCZ -aej -vKw -sNt -jxQ -aej -wYe -lGh -tww -vOy -elR -xXh -xXh -apU -vcL -aBe -otu -jBO -wyu -ean -xXh -xXh -dMK -vOy -wYe -yiu -tww -nIN -wib -eJJ -wib -nIN -rgL -rgL -rgL -rgL -lAW -rgL -rgL -rgL -rgL -lAW -nIN -jtU -lBp -gxm -roX -roX -roX -roX -roX -roX -roX -eIj -vaj -vaj -gxm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -kyw -kyw -bTj -klV -klV -lfx -nsY -wGr -gwf -iHz -qLH -yas -xQs -mAo -nsY -tya -jef -jef -klV -bdd -kzX -nbF -lHR -dCy -dCy -vsX -iJn -bdd -fZE -iLm -fZE -bdg -eST -eST -bgO -beH -beH -duv -beH -htI -rNS -qKv -rzq -gyv -beH -duv -beH -beH -bgO -eST -eST -bdg -oSM -xub -oSM -bdd -wEk -cTY -xnk -xnk -xnk -qWh -eeW -bdd -fFo -rsM -oos -wKW -nsY -ubP -gIi -bnh -rhQ -uyr -tAM -nWD -nsY -jUa -mgb -jUa -jUa -lyW -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(177,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -gxm -gxK -gxK -ppp -pdI -pdI -pdI -pdI -pdI -pdI -pdI -gxm -haV -tob -njn -rWz -rWz -rWz -rWz -rWz -rWz -rWz -rWz -rWz -rWz -aej -npE -foW -sMQ -eiC -hnY -qdJ -tww -vOy -wWz -hLX -uec -uec -swF -jVt -uyH -hLX -swF -uec -uec -rdt -wTM -vOy -wYe -poD -tww -fJg -xzh -sjM -oIn -nIN -rgL -rgL -rgL -rgL -rgL -rgL -rgL -rgL -rgL -rgL -nIN -jtU -jBA -gxm -roX -roX -roX -roX -roX -roX -roX -eIj -vaj -vaj -gxm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -kyw -oWW -lfx -lfx -lfx -lfx -kWJ -qLR -axc -juD -twW -vHh -pvh -wlV -nsY -bwG -uUS -scX -caq -bdd -sSF -dCy -djk -wzh -xdG -dUg -hko -bdg -fZE -naa -onn -bdd -bdd -jGU -bgO -wqa -wqa -bgO -aSf -aSf -sNU -wHi -whA -jHm -jHm -bgO -nxt -nxt -bgO -dNA -bdd -bdd -tmE -ter -oSM -bdg -qAH -rnD -nxt -dfo -wXs -elj -nlm -bdd -gVz -cNX -cdI -aQe -nsY -phO -dVs -tat -kNC -xuQ -uPW -mbi -uoo -sAS -sAS -sAS -vdA -jUa -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(178,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -gxm -adj -apk -apk -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -hqb -rRN -njn -rWz -rWz -rWz -rWz -rWz -rWz -rWz -rWz -rWz -rWz -aej -lzm -qGv -agu -uXJ -hnY -qdJ -tww -vOy -wWz -kkX -fGN -pPe -cdv -lzk -uyH -kkX -pVf -pPe -tJY -lzk -wTM -vOy -wYe -poD -tww -fJg -cPL -gxl -gCJ -nIN -rgL -rgL -rgL -rgL -rgL -rgL -rgL -rgL -rgL -rgL -nIN -iln -hQK -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -asM -asM -mwR -gxm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -kyw -eAY -lfx -gIM -bwG -bwG -nsY -jtP -enP -irT -tyb -xxm -qSK -xds -nsY -buG -lfx -eSX -klV -bdd -nlT -nUH -udY -lgK -xdG -wiy -hko -bdg -vgI -dLL -vgI -fEZ -bdd -eST -bgO -wqa -wqa -bgO -aSf -aSf -npM -hMe -kct -jHm -jHm -bgO -nxt -nxt -bgO -eST -bdd -mHs -pCV -cRd -pCV -bdg -qAH -wfM -iZI -lqE -nxt -thH -jfl -bdd -sHr -roU -oos -jDQ -nsY -jir -jMJ -gEx -pVA -rNt -fSY -nWD -nsY -gjc -mgb -jUa -dsJ -byz -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(179,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -gxm -pqZ -pqZ -osp -oKJ -oKJ -oKJ -oKJ -oKJ -oKJ -oKJ -mVT -wBI -hGG -njn -rWz -rWz -rWz -rWz -rWz -rWz -rWz -rWz -rWz -rWz -aej -aNU -qGv -agu -aej -gTN -qdJ -sEJ -vOy -wWz -wUW -msA -jjW -mjE -lzk -uyH -kvJ -hvZ -jjW -msA -kPm -wTM -vOy -cot -poD -tww -fJg -jfa -xzh -nda -nIN -rgL -rgL -rgL -rgL -rgL -rgL -rgL -rgL -rgL -rgL -nIN -vmJ -elv -sDb -sdT -sdT -sdT -sdT -sdT -sdT -sdT -gID -rza -rza -gxm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -kyw -dvq -klV -klV -pDS -bBL -nsY -wVC -dbn -sKs -tyb -uRM -ipe -lxg -nsY -xEe -lfx -fIW -jPl -bdd -beh -hFv -dvM -koy -lwb -uZr -lwb -bdg -fZE -naa -fZE -fZE -bdg -eST -qMR -veN -veN -dRT -iyc -iyc -bow -dRT -dLd -dLd -dLd -dRT -tfP -tfP -fOk -eST -bdg -oSM -oSM -ter -oSM -bdg -qlZ -wlG -ryh -qDQ -xfw -jOg -hFQ -bdd -jpM -wAj -qFm -pnI -nsY -uru -qQs -uUI -tyb -kej -dkr -nWD -nsY -wCq -jfS -xgz -ciB -rwF -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(180,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -gxm -pqZ -pqZ -osp -oKJ -oKJ -oKJ -oKJ -oKJ -oKJ -oKJ -jCT -cRL -hGG -njn -njn -njn -rZK -njn -njn -njn -njn -svp -njn -njn -aej -aej -xEu -woA -aej -nNS -eic -omE -vOy -wWz -kkX -sNF -pPe -htj -lzk -uyH -kkX -sNF -pPe -htj -lzk -wTM -vOy -nNS -eic -omE -nIN -nIN -tnP -nIN -nIN -nIN -nIN -tMr -nIN -nIN -nIN -nIN -tMd -nIN -nIN -nIN -vmJ -nzD -pCD -sdT -sdT -sdT -sdT -sdT -sdT -sdT -gID -rza -rza -gxm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -kyw -lfx -lfx -ouh -pDS -gqp -nsY -nsY -nsY -nsY -lKJ -nsY -nsY -nsY -nsY -bwG -bwG -bwG -bwG -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -tvl -naa -meQ -fZE -bdg -eST -beH -wqa -wqa -beH -aSf -aSf -aSf -beH -jHm -jHm -jHm -beH -nxt -nxt -beH -eST -bdg -oSM -awE -ter -gvK -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bJt -bJt -bJt -bJt -nsY -nsY -nsY -nsY -lYZ -nsY -nsY -nsY -nsY -eue -dZg -lcF -faR -wxu -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(181,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -gxm -pqZ -pqZ -osp -oKJ -oKJ -oKJ -kTJ -oKJ -oKJ -oKJ -qoh -mxO -tJL -unE -bin -dlo -isp -oXN -jNt -fNZ -suD -cQW -bJV -bin -pXT -pqU -bCE -bCE -dBf -xWA -emD -yjD -vOy -wWz -kKP -wdS -wdS -kRc -rRa -uyH -gak -kRc -wdS -wdS -fWH -wTM -vOy -xWA -emD -yjD -dBf -jjQ -kkh -dgF -xzn -mBF -gTa -qUx -kLH -sUV -kfY -avA -uBJ -qNI -sUV -thW -hZC -kMU -twJ -sdT -sdT -sdT -tzz -sdT -sdT -sdT -gID -rza -rza -gxm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -kyw -lfx -klV -bwG -bwG -bwG -bwG -bwG -bwG -xEN -bFB -gxw -vgI -rEk -evw -rEk -xzD -vlw -rEk -vgI -dwd -cFI -dwd -dwd -eKw -dwd -vgI -fZE -fZE -naa -meQ -fZE -bdg -eST -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -eST -bdg -oSM -awE -ter -oSM -oSM -pCV -fzd -aug -lpn -lpn -lpn -lpn -pCV -bgo -bgo -sgJ -mCf -kHx -bgo -pCV -iIG -cSH -hLw -mJO -mJO -mJO -mJO -mJO -mJO -dsJ -mgb -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(182,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -jsc -wVt -wVt -nPZ -sVV -kbv -cmY -kbv -kbv -kbv -nPZ -kbv -cmY -sVV -sVV -sVV -sVV -cOr -wON -oGg -mYd -nyo -vOy -woh -vgO -vgO -vgO -vgO -vgO -utX -vgO -vgO -vgO -vgO -vgO -xAe -vOy -wBR -rgO -hqX -lFG -cMz -cMz -cMz -cMz -cMz -xSs -cMz -dzI -aXD -cMz -cMz -xSs -cMz -bTY -dzI -iup -ryY -cAG -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -kyw -lfx -klV -bwG -ycl -ycl -ycl -jCg -bwG -eYT -pVr -vSZ -aXd -tpR -tpR -tpR -tpR -tpR -tpR -aXd -tpR -tpR -tpR -tpR -tpR -tpR -aXd -wxp -tpR -baW -meQ -fZE -bdg -eST -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -eST -bdg -oSM -awE -jas -jhA -cVZ -tcM -jhA -jhA -jhA -jhA -jhA -jhA -tcM -jhA -jhA -jhA -jhA -jhA -jhA -tcM -wBS -mkx -ccz -mJO -plv -plv -plv -mbR -mJO -aNf -nhw -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(183,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -aag -vHn -lAs -lZp -bxS -fbI -jVF -ylj -fOq -vPk -kMV -jFO -wKe -iyD -vPk -syd -xMO -tpu -vPk -exK -wKe -bCE -cta -dBf -gXe -qgm -jLc -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -dby -kdh -jLc -dBf -qAl -kkh -kpC -wEE -vMN -sIX -ePM -mgO -eaC -mJf -niT -uSv -gHh -eaC -raJ -mBt -vsw -fIF -fFp -jtU -tKi -woU -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -kyw -lfx -klV -bwG -ycl -ycl -ycl -ycl -bwG -aFj -oUi -izb -vgI -vFZ -vFZ -bBp -khw -oHo -nnQ -vgI -wxM -oui -jMc -vDU -aaX -tEL -vgI -fZE -meQ -dLL -meQ -onn -bdd -jGU -nZF -hDB -hDB -hDB -hDB -vJB -dWs -dtD -uNy -nFx -uGF -uGF -uGF -uGF -mck -dNA -bdd -tmE -awE -cRd -awE -oSM -pCV -quH -quH -qEO -iEo -hGy -fbZ -pCV -xgi -hbK -uZf -xey -qiL -qiL -pCV -sZw -ihI -ghs -mJO -plv -plv -plv -plv -mJO -dsJ -hzq -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(184,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -aag -vHn -ggD -tob -cGd -njn -njn -njn -njn -njn -njn -gfA -sVV -ajS -njn -njn -sbx -njn -njn -ael -ael -sEv -plw -ael -hyT -lGh -qkS -nLg -nLg -nLg -owB -nLg -nLg -nLg -nLg -nLg -nQZ -nLg -owB -nLg -nLg -nLg -pnr -lGh -tkd -nIN -nIN -avf -nIN -nIN -nIN -avf -nIN -nIN -nIN -sce -sfT -pwR -nIN -nIN -nIN -nIN -nIN -nIN -mRU -fHN -tzu -woU -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -kyw -lfx -klV -bwG -ycl -ycl -ycl -ycl -lYT -fZE -bBR -hWt -jeb -jeb -jeb -izt -fZz -jeb -jeb -jeb -jeb -jeb -izt -kEG -jeb -jeb -jeb -fZE -meQ -dLL -meQ -fZE -bdg -eST -fgF -oLr -wqV -dBB -oLr -toe -wnf -ugu -vSI -dzT -tdX -fMT -xaR -vOU -hIl -eST -bdg -oSM -awE -cRd -awE -oSM -vra -vra -vra -sKC -aAt -vra -vra -vra -vra -vra -sKC -vyb -vra -vra -vra -rIE -mkx -oSM -eFy -plv -plv -plv -plv -mJO -nEl -niu -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(185,1,1) = {" -aaa -aaa -aab -aaa -eJy -nYj -nYj -nYj -nYj -aag -aag -aag -aag -aag -aag -aag -vHn -uGv -lZp -lZp -njn -rWz -rWz -rWz -jXN -njn -vSc -sVV -kPk -njn -kNZ -xiD -hgH -fvM -ael -bYr -xDq -eJl -ael -ogT -yiu -xIj -xIj -xIj -tsn -tsn -tsn -xIj -tsn -tsn -tsn -xIj -tsn -tsn -tsn -xIj -xIj -xIj -lGh -syO -nIN -qRJ -tHI -qRJ -nIN -sjX -xzh -xzh -fbs -nIN -gRt -sfT -pwR -nIN -rgL -rgL -rgL -laD -nIN -upS -jtU -jtU -woU -aag -aag -aag -aag -aag -aag -aag -nYj -nYj -nYj -nYj -vrw -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -eJy -nYj -nYj -nYj -kyw -klV -lfx -bwG -ycl -ycl -ycl -ycl -bwG -syF -meQ -utC -jeb -eDY -dGQ -sKI -jhD -jeb -osc -cMV -osc -jeb -rtm -dUq -xzz -eDY -jeb -bMf -meQ -dLL -meQ -fZE -bdg -eST -fgF -oLr -dBB -oLr -jRG -toe -wnf -ugu -vSI -dzT -tdX -xaZ -tdX -uwp -hIl -eST -bdg -oSM -awE -cRd -awE -eOx -vra -kDG -kIE -gqe -tJz -vra -ukV -oNj -ukV -vra -aNq -tvv -idT -kDG -vra -gDv -mkx -eor -mJO -plv -plv -plv -plv -mJO -nEl -cCV -lyW -nYj -nYj -nYj -vrw -bdH -aaa -aab -aaa -aaa -"} -(186,1,1) = {" -aaa -aaa -aab -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -vHn -tob -tob -njn -rWz -rWz -rWz -rWz -njn -pKD -wKe -uYH -njn -dzV -cGR -fTS -vNj -ael -reD -wEZ -xpO -ael -cQC -poD -ofJ -iVg -iVg -ofJ -iVg -jYI -dKo -evz -evz -evz -icS -qAf -iVg -nhj -iVg -iVg -nhj -lGh -iMD -nIN -nIN -xzh -vDi -nIN -shT -tHI -xzh -shT -nIN -xxE -niT -gCO -nIN -rgL -rgL -rgL -rgL -nIN -aVz -fHN -woU -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -taM -aag -aag -aag -kyw -rGH -dAA -bwG -ycl -ycl -ycl -ycl -bwG -lFE -meQ -mVB -jeb -dfl -qNY -sKI -rth -rth -qpf -qpf -qpf -nny -rth -dUq -jsg -lEk -jeb -rrU -meQ -dLL -meQ -fZE -bdg -eST -bIr -pau -pau -pau -pau -aoc -dWs -hHT -uNy -fMK -jHm -jHm -jHm -jHm -atC -eST -bdg -oSM -awE -cRd -awE -uNp -vra -aVb -hID -gqe -nyQ -nyQ -dmM -dmM -dmM -miV -nyQ -tvv -xlM -ikY -vra -sAg -mkx -qds -mJO -plv -plv -plv -plv -mJO -dsJ -mgb -lyW -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -"} -(187,1,1) = {" -aaa -aaa -aab -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -lZp -lZp -njn -rWz -rWz -rWz -rWz -lpk -aGA -kbv -fZo -njn -bon -vgS -vgS -iIr -ael -gYr -yim -aiq -gIP -xIj -qdJ -qkS -mOi -mOi -mOi -mOi -mOi -sOK -qMh -oAl -hYI -aqU -aHq -aHq -aHq -aHq -aHq -cBG -qdJ -nZK -ueX -nIN -xzh -tHI -sQA -xzh -xzh -xzh -tHI -nIN -mzs -aPT -xyB -dcj -rgL -rgL -rgL -rgL -nIN -kTP -fHN -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -taM -aag -aag -aag -kyw -klV -qZK -bwG -bwG -bwG -bwG -bwG -bwG -sYB -sYB -rAK -jeb -eDY -tHL -gAA -gAA -hPq -slI -ceU -tIY -hPq -gAA -gAA -gRO -eDY -jeb -wEK -meQ -dLL -meQ -fZE -bdg -eST -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -eST -bdg -oSM -awE -cRd -awE -dNW -vra -kDG -wEX -cgo -cgo -byf -rbm -cVg -xwe -byf -cgo -cgo -cuv -kDG -vra -taI -lkN -vsy -mJO -mJO -mJO -mJO -mJO -mJO -dsJ -pgJ -lyW -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -"} -(188,1,1) = {" -aaa -aaa -aab -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -lZp -tob -njn -rWz -rWz -rWz -rWz -njn -cIq -pqU -doz -njn -tVF -cGR -vgS -jch -ael -eML -yim -aiq -gIP -xIj -qdJ -xIj -mOi -onU -onU -qwJ -cOV -pGB -rmn -xQV -qQS -aqU -eHF -ifg -fOH -bAV -aHq -aOO -qdJ -nZK -pHT -nIN -xzh -ouL -nIN -shT -tHI -xzh -nOf -nIN -qQQ -tMk -cuM -nIN -rgL -rgL -rgL -rgL -nIN -vpI -jtU -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -taM -aag -aag -aag -kyw -vOl -lfx -bwG -ycl -ycl -ycl -jCg -bwG -geb -bZo -rYf -jeb -eDY -qNY -sKI -rth -rth -hNM -vxX -uBO -rth -rth -dUq -jsg -eDY -jeb -dQV -meQ -dLL -meQ -onn -bdd -jGU -mcJ -fPx -fPx -fPx -fPx -nBP -dWs -hgN -uNy -jxN -ivE -ivE -ivE -ivE -vpO -dNA -bdd -tmE -awE -cRd -awE -gvK -vra -kDG -hID -gqe -nyQ -lrT -bqW -xaC -qeY -nyQ -nyQ -tvv -xlM -kDG -vra -dwE -dEK -tRc -mJO -plv -plv -plv -mbR -mJO -dsJ -mgb -lyW -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -"} -(189,1,1) = {" -aaa -aaa -aab -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -tob -xLu -njn -rWz -rWz -rWz -rWz -njn -gfA -kbv -kPk -njn -ePz -cGR -vgS -jch -ael -afK -ahc -air -ael -sgH -qdJ -xIj -mOi -vRA -vAn -ezq -sDC -mqY -xQV -xpX -ohX -aqU -xvM -oqv -iqd -pLj -cnS -cBG -qdJ -qTS -nIN -nIN -xzh -iYT -nIN -qRJ -aha -xzh -tHI -nIN -jXX -aPT -pwR -nIN -rgL -rgL -rgL -rgL -nIN -jtU -fHN -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -taM -aag -aag -aag -kyw -klV -lfx -bwG -ycl -ycl -ycl -ycl -bwG -mpM -meQ -tNk -jeb -dfl -tHL -sKI -rth -rth -rth -aTW -aTW -rth -rth -dUq -oCY -lEk -jeb -fZE -meQ -dLL -meQ -fZE -gtX -eST -lvV -uKL -uKL -xhJ -uKL -uzn -wnf -ugu -vSI -iNO -gTm -tLK -ssn -iNF -kab -eST -gtX -oSM -awE -ukq -awE -oSM -vra -aVb -wEX -gqe -nyQ -nyQ -nyQ -obQ -obQ -nyQ -nyQ -tvv -sJG -ikY -vra -cQk -mkx -nUM -mJO -plv -plv -plv -plv -mJO -nEl -jUa -lyW -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -"} -(190,1,1) = {" -aaa -aaa -aab -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -tob -aOk -njn -njn -njn -njn -njn -njn -kNU -kbv -fkW -njn -bVR -xiD -ruN -fIO -ael -mIu -bnx -dMz -ael -xIj -yiu -xIj -mOi -mAs -mAs -flR -uMO -mqY -xVc -xQV -kPC -aqU -lSu -wDy -aGN -vKn -cnS -pnr -qdJ -hnY -sQA -tHI -tHI -gIX -nIN -nIN -nIN -avf -nIN -nIN -ons -aPT -nNm -nIN -nIN -nIN -nIN -nIN -nIN -fHN -fHN -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -kyw -kyw -kyw -kyw -kyw -klV -eQd -bwG -ycl -ycl -ycl -ycl -uXv -fZE -meQ -eha -jeb -eDY -qNY -sKI -rth -rth -tPI -tPI -iXT -rth -rth -dUq -jsg -eDY -jeb -fZE -meQ -ksS -czR -jzT -vyY -kyt -lvV -uKL -byG -lgd -uKL -uzn -wnf -ugu -vSI -iNO -gPH -ssn -ssn -ssn -kab -gkA -vyY -hQf -sTU -sBf -awE -hCf -vra -kDG -hID -gqe -nyQ -nyQ -pHA -pHA -nyQ -nyQ -nyQ -tvv -xlM -kDG -vra -iOA -mkx -oSM -iba -plv -plv -plv -plv -mJO -kLm -jUa -lyW -lyW -lyW -lyW -lyW -lyW -aaa -aab -aaa -aaa -"} -(191,1,1) = {" -aaa -aaa -aab -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -tJq -pUZ -njn -rWz -rWz -rWz -jXN -njn -gfA -kbv -kPk -njn -sbx -njn -njn -njn -adO -adO -adO -adO -adO -iWB -yiu -syO -mOi -mOi -mOi -mOi -mOi -mOi -jJB -jJB -jJB -aqU -bGW -nTs -pje -pje -aFd -vLB -gnK -oTN -nIN -nIN -nIN -nIN -nIN -sjX -hPL -xzh -dMj -nIN -jXX -aPT -pwR -nIN -rgL -rgL -rgL -laD -nIN -ftj -fHN -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -uOP -klV -klV -klV -klV -klV -xbE -bwG -ycl -ycl -ycl -ycl -bwG -iSj -aDw -xMq -jeb -jeb -uZJ -fHD -wnY -cLC -fbg -rtA -nOM -nFK -lEO -mZq -iuP -jeb -jeb -fZE -meQ -pQx -fEF -otC -bdd -duH -hCP -aSf -aSf -aSf -aSf -igm -dWs -tkm -uNy -ewn -pip -pip -pip -pip -rqJ -bKE -bdd -vMA -oYi -dNX -awE -oSM -vra -vra -qqp -tsf -lzq -nyQ -nhx -eiq -dgv -wXH -xBQ -iBQ -aHd -vra -vra -rmr -sou -wjj -mJO -plv -plv -plv -plv -mJO -nEl -jUa -pDA -mgb -iQk -oqI -hWy -lyW -aaa -aab -aaa -aaa -"} -(192,1,1) = {" -aaa -aaa -aab -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -lZp -haV -njn -rWz -rWz -rWz -rWz -njn -pKD -wKe -kBO -njn -vgS -vgS -dGi -rWr -adO -dPw -qEs -mgK -adO -oDm -poD -xIj -mOi -mzP -mzP -kyg -tqu -aqU -gpW -dtU -lzs -aqU -oLD -rsO -aGN -keI -cnS -nhj -qdJ -qkS -aUH -tlC -hmJ -tlC -nIN -qRJ -tHI -xzh -tHI -nIN -vjj -niT -jOz -nIN -rgL -rgL -rgL -rgL -nIN -uNz -jtU -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -mKI -lfx -lfx -lfx -lfx -txp -bTj -bwG -ycl -ycl -ycl -ycl -bwG -pin -pin -pin -jeb -tgB -tIZ -gAA -beP -hPq -csr -jyP -hgE -hPq -moI -gAA -xWy -tgB -jeb -hjQ -meQ -fAV -oUi -qdV -bdd -kxt -eST -eST -eST -jce -eST -eST -eST -jce -eST -eST -eST -jce -eST -eST -eST -mnR -bdd -huP -nbu -dRL -awE -oSM -vra -wbi -wSo -cgo -fwY -byf -efl -byf -iDp -byf -fwY -cgo -kUO -wbi -vra -haw -haw -haw -mJO -plv -plv -plv -plv -mJO -cUe -sAS -cXX -sAS -sAS -nHG -jUa -lyW -aaa -aab -aaa -aaa -"} -(193,1,1) = {" -aaa -aaa -aab -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -tob -alh -njn -rWz -rWz -rWz -rWz -vpm -hmj -kbv -fZo -njn -iSd -vgS -vgS -uSC -adO -fpp -ahh -aiw -scs -hnY -qdJ -xIj -mOi -mzP -mzP -cJv -xQV -vmt -qQS -kNE -qFd -aqU -wis -liJ -uPV -vaJ -cnS -cBG -poD -xIj -aUH -hFO -lOq -lOq -nIN -xzh -tHI -xzh -tHI -nIN -mzs -aPT -xyB -uPx -rgL -rgL -rgL -rgL -nIN -jBA -jtU -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -klV -lfx -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -hNo -pin -pin -jeb -mTh -tIZ -sKI -hxe -aPf -rth -rth -rth -rth -hxe -dUq -xWy -kWF -jeb -vgI -vgI -pQx -eBo -qtb -bdd -beQ -beQ -beQ -beQ -bdd -bdd -nap -cOF -bdd -nap -cOF -bdd -bdd -beQ -beQ -beQ -beQ -bdd -wsi -ooo -dNX -pCV -pCV -vra -gYJ -wSo -gqe -ivs -nyQ -nyQ -pHA -nyQ -nyQ -ivs -tvv -kUO -jDn -vra -haw -haw -jwt -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -nEl -mgb -lyW -aaa -aab -aaa -aaa -"} -(194,1,1) = {" -aaa -aaa -aab -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -khu -lZp -njn -rWz -rWz -rWz -rWz -njn -cIq -pqU -doz -njn -xqh -svq -vgS -qsK -adO -tMZ -ahh -aiw -adO -xIj -qdJ -xIj -ryn -ryn -ryn -ryn -ryn -mOi -xdA -qQS -xdn -aqU -aHq -dyJ -tNS -sRj -aHq -xIj -qdJ -xIj -aUH -bpl -aAi -eUH -nIN -xzh -tHI -xzh -shT -nIN -qQQ -tMk -cuM -nIN -rgL -rgL -rgL -rgL -nIN -uNa -tzu -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -klV -eQd -wDr -lhZ -lhZ -wmD -fJh -fJh -fJh -fIk -fJh -fJh -okI -pin -pin -pin -jeb -gaW -sRR -sKI -hxe -rth -hXd -guW -aQM -rth -hxe -dUq -wMp -gaW -jeb -fZE -meQ -sAl -tAW -stR -bCz -nYz -ifT -ifT -ifT -ifT -mMz -wdy -bdj -aZq -bdj -wdy -mMz -ifT -nYz -ifT -ifT -ifT -bCz -oSM -oYi -dNX -awE -dnP -vra -dgt -duZ -gqe -ivs -nyQ -ogt -vWB -bSK -nyQ -ivs -xkm -jiG -dgt -vra -haw -haw -haw -vhN -qNW -qNW -gEV -qNW -qNW -qNW -oqi -kwN -kwN -wDr -dsJ -gTF -lyW -aaa -aab -aaa -aaa -"} -(195,1,1) = {" -aaa -aaa -aab -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -tob -tob -njn -rWz -rWz -rWz -rWz -njn -wgv -sVV -pMW -njn -cJR -iCb -cGR -ogo -adO -gnc -ahh -aiw -adO -eMr -lGh -xIj -ioU -dQd -gix -xqD -ioU -ntj -ntj -ntj -ntj -ntj -gkp -liJ -nLf -mYx -aHq -eMr -gqz -feE -xps -aEl -rEU -wWc -nIN -xzh -tHI -dMj -qHh -nIN -uFl -sfT -dTw -nIN -rgL -rgL -rgL -rgL -nIN -fUn -fHN -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -lfx -lQM -wDr -lhZ -lhZ -wmD -fJh -fJh -fJh -fJh -fJh -fJh -okI -pin -pin -pin -aLT -aLT -aLT -aLT -qNk -cOx -aPK -aLT -aQN -xfS -mwu -aQL -aQL -aQL -aQL -dQV -meQ -pQx -fEF -fZE -bCA -bCA -bdj -bCA -bCA -bdj -bCA -bCA -bdj -bCA -bdj -bCA -bCA -bdj -bCA -bCA -bdj -bCA -bCA -oSM -oYi -dNX -awE -gvK -bJC -bJC -bJC -bJC -iRt -goF -bQZ -bJC -bSL -opp -onc -bSJ -bSJ -bSJ -bSJ -haw -haw -haw -vhN -qNW -qNW -qNW -qNW -qNW -qNW -oqi -kwN -kwN -wDr -nEl -mgb -lyW -aaa -aab -aaa -aaa -"} -(196,1,1) = {" -aaa -aaa -aab -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -lZp -lZp -njn -njn -njn -njn -njn -njn -dnQ -xRG -gYi -njn -njn -njn -cUq -njn -njn -sYa -ahh -aiw -adO -ogT -yiu -xIj -ioU -vfy -rtD -hfM -oQZ -eJH -jqT -eJH -uge -koq -tTm -liJ -qmP -hgQ -aHq -xIj -lGh -xIj -aUH -pEz -rjj -xxg -nIN -avf -nIN -nIN -nIN -nIN -uuA -xeQ -bZu -nIN -nIN -nIN -nIN -nIN -nIN -jtU -jtU -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -oif -jhe -wDr -lhZ -lhZ -wmD -fJh -fJh -fJh -fJh -fJh -fJh -okI -pin -pin -pin -aLT -rzD -kxF -aLT -vVa -lBL -jRW -aLT -hul -doh -hSC -aQL -lSH -wAT -aQL -hEm -kti -eFa -fEF -lXq -xJj -xJj -xJj -xJj -xJj -xJj -xJj -xJj -fXv -bdj -fXv -xJj -xJj -xJj -xJj -xJj -xJj -xJj -xJj -fnP -oYi -mkx -bIW -eMZ -bJC -kft -pta -bJC -mau -hmf -vYg -bJC -vOk -neU -gEw -bSJ -sgx -jLJ -bSJ -haw -haw -haw -vhN -qNW -qNW -qNW -qNW -qNW -qNW -oqi -kwN -kwN -wDr -wmf -sQL -lyW -aaa -aab -aaa -aaa -"} -(197,1,1) = {" -aaa -aaa -aab -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -lZp -tob -lso -lZp -tob -tob -hpD -bxS -gIu -aeA -smq -rPu -jNA -cGR -cGR -vgS -lwz -aiw -ahh -aiw -nph -xIj -poD -xIj -ioU -mLK -hZm -vXG -eWI -aGN -aGN -suy -uaV -uaV -nSS -iKf -aGN -oxY -aHq -vcG -qdJ -xIj -ioK -hGR -mQC -wWc -sQA -xzh -xzh -kya -aha -sQA -kCw -lJY -hcF -fFp -eCL -fHN -uBx -jtU -jtU -fHN -fHN -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -vaV -qxJ -wDr -lFw -wWt -wWt -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -aLT -aLT -aLT -uBP -aMQ -hMb -bfy -aMz -bAR -aLT -jkX -aRT -xMR -bOL -aUj -xjp -aQL -hWc -vzi -eFa -fEF -lai -ciP -ciP -fun -trj -iKz -dBT -ciP -ciP -vQp -bQQ -tbM -ciP -ciP -dBT -iKz -oPr -pdy -ciP -ciP -dZQ -oYi -mkx -fic -cJA -bJC -mTv -bNG -doj -chR -bJD -cZL -bJC -tdu -bTA -cIr -vSb -bUU -uvf -bSJ -bSJ -ljv -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -fCg -fCg -geu -wDr -wtk -mgb -lyW -aaa -aab -aaa -aaa -"} -(198,1,1) = {" -aaa -aaa -aab -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abh -cGd -cGd -pAy -cGd -cGd -cGd -cGd -cGd -kxb -hHt -kSN -njn -njn -njn -njn -cGR -njn -gPM -ahh -aiw -nph -xIj -yiu -xIj -ioU -ioU -ioU -ioU -rSp -ldz -ldz -ekJ -ldz -lhp -udZ -aGN -aGN -iMd -aHq -upW -qdJ -xIj -ioK -meS -mQC -vkc -nIN -qHT -nIN -nIN -nIN -nIN -xdT -vXn -dpU -mRU -mRU -mRU -mRU -mRU -lpa -mRU -mRU -uOi -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -lfx -gUn -wDr -oOn -oOn -oOn -jYz -jYz -jYz -jYz -jYz -jYz -jYz -wDr -aLT -aLT -aLT -aLT -aLT -aLT -tNR -ozf -ehg -aLT -qYa -fsc -aSI -aQL -aQL -aQL -aQL -aQL -uBj -eFa -fEF -pFH -bdl -bdl -bdl -bdl -bdl -bdl -bGo -bGo -aHL -rai -kPf -cpK -cpK -bdl -bdl -bdl -bdl -bdl -bdl -szd -oYi -mkx -jwP -bJC -bJC -bJC -bJC -bJC -mjS -pUh -dSG -bJC -bvR -avD -syH -bSJ -bSJ -bSJ -bSJ -bSJ -ljv -wDr -kHM -kHM -kHM -kHM -kHM -kHM -kHM -tnr -tnr -tnr -wDr -nEl -jUa -lyW -aaa -aab -aaa -aaa -"} -(199,1,1) = {" -aaa -aaa -aab -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abh -acx -vuG -tOF -aeA -aeA -mzc -aeA -bbe -aeA -tOF -aeA -bbe -aeA -aeA -njn -cGR -njn -afQ -aiw -aiw -nph -xIj -yiu -xIj -ioU -pFE -jFh -ioU -aix -ldz -ldz -lhp -ldz -lhp -vQq -eEo -aGN -thb -aHq -sgH -qdJ -xIj -ioK -uWj -xli -nlN -nIN -nhN -nIN -lJY -lJY -lFK -lJY -lhy -lJY -lFK -lJY -eYy -lJY -qvI -lJY -mCL -rRq -uOi -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -kTT -kTT -wDr -oOn -oOn -oOn -jYz -jYz -jYz -jYz -jYz -jYz -jYz -wDr -aLT -aLT -mnU -bdr -dYp -bdr -bft -tHG -gQv -aLT -jfe -uWq -bno -bpC -qBr -aRT -fdF -aQL -fZE -eFa -fEF -pFH -bdl -lFu -jDq -enq -lLn -hiB -wTG -wMe -gGt -kNP -gGt -nQm -jdK -eHN -fNE -pjK -jtq -plr -bdl -lao -oYi -mkx -oSM -bJC -tnD -cfo -wYZ -cfo -chM -qHk -fuy -bJC -qTd -gXY -clh -clg -hDJ -clg -sVD -bSJ -ljv -wDr -kHM -kHM -kHM -kHM -kHM -kHM -kHM -tnr -tnr -tnr -wDr -hnj -lmP -lyW -aaa -aab -aaa -aaa -"} -(200,1,1) = {" -aaa -aaa -aab -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abi -tSR -aeA -aje -amF -asA -eQS -amF -amF -amF -eQS -asA -amF -kmE -aeA -njn -ccR -njn -ahJ -ahJ -ahJ -adO -xIj -poD -xIj -ioU -jxt -ghk -kPY -nVB -tnk -ldz -lhp -ldz -lhp -iLf -aRi -aGN -oxY -aHq -fsh -qdJ -xIj -aUH -qnL -qnL -qnL -nIN -ouL -nIN -lJY -qbx -dcp -yeH -gnq -dcp -dcp -dcp -gnq -yeH -dcp -nja -lJY -bZs -uyC -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -emA -xZE -xZE -wDr -oOn -oOn -oOn -jYz -jYz -jYz -jYz -jYz -jYz -jYz -wDr -aLT -aLT -hOK -hTr -aLT -naS -qAp -nYu -gZG -aLT -mpf -itm -gQX -oLt -aQL -jUi -jqe -aQL -fZE -eFa -fEF -pFH -bdl -cUJ -bCA -bCA -bdj -hiB -rrV -wdy -bCA -cqB -bCA -wdy -rrV -eHN -cwa -rIH -tUh -lPq -bdl -rrp -oYi -mkx -oSM -bJC -aIb -fmh -bJC -ewP -muP -cZL -xXB -bJC -tti -jdI -adm -xbo -bSJ -rQZ -cLn -bSJ -ljv -wDr -kHM -kHM -kHM -kHM -kHM -kHM -kHM -tnr -tnr -tnr -wDr -tIW -fKS -tcO -aaa -aab -aaa -aaa -"} -(201,1,1) = {" -aaa -aaa -aab -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abi -lRf -aeA -ajk -aeA -tOF -tOF -tOF -qXY -tOF -tOF -tOF -vOh -gUX -ily -njn -cUq -njn -tOF -tOF -tOF -mdm -xIj -poD -xIj -ioU -tkB -mkN -ioU -lVK -kxR -kxR -hbR -hnL -njB -hxH -pfo -njB -xcn -aHq -ogT -lGh -xIj -mdm -lhy -lhy -lhy -nIN -avf -nIN -cBb -xVS -lJY -lhy -lhy -lhy -ePW -lhy -lhy -lhy -eKH -lVo -lJY -fCS -uyC -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -emA -tLI -tLI -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -aLT -aLT -aLT -aLT -aLT -aLT -fPv -nYu -gZG -aLT -mpf -itm -gru -aQL -aQL -aQL -aQL -aQL -dQV -eFa -fEF -nKf -bdl -anj -bCA -bCA -rKD -wjg -nGK -nGK -nGK -nGK -nGK -nGK -nGK -xkC -wdy -qMU -bCA -rPy -bdl -bwJ -oYi -mkx -gvK -bJC -bJC -bJC -bJC -bJC -qXt -cZL -xXB -bJC -tti -jdI -rIJ -bSJ -bSJ -bSJ -bSJ -bSJ -ljv -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -frY -lNp -tcO -aaa -aab -aaa -aaa -"} -(202,1,1) = {" -aaa -aaa -aab -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abh -acx -hFG -sBe -tOF -tOF -vAN -rhS -rhS -rhS -mnz -tOF -tOF -sBe -tOF -kSN -tOF -sbG -vPY -vPY -ajw -bgH -vWP -vGN -hsV -alL -alL -alL -jvY -jvY -jvY -jvY -jvY -jvY -jvY -jvY -jvY -alL -alL -alL -vWP -vGN -hsV -bgH -tUJ -oiO -oiO -hZo -vXn -xdT -lhy -hhR -lhy -lhy -jIf -sJT -sJT -sJT -jZA -lhy -lhy -hhR -fWB -rRq -uOi -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -emA -vdJ -ikT -owU -iTq -ikT -vdJ -tee -riB -xYH -qan -ovu -jUh -mtJ -bCk -ovu -aLT -sao -dCZ -rTv -aLT -ucM -nYu -eUP -aLT -ult -ppi -sFO -aQL -kxu -cFS -ehh -aQL -fZE -eFa -fEF -izb -bdl -fnq -bdj -fXv -fOV -bdl -hhJ -ixc -ltq -ixc -ltq -ixc -ltq -mYv -uAr -qMU -gfK -eRg -bdl -wcP -oYi -mkx -oSM -bJC -tOS -vbn -mML -bJC -pKd -cZL -eWa -bJC -heg -jdI -jso -bSJ -pBT -gIQ -rdG -bSJ -ljv -wYy -wtF -wtF -wtF -tOZ -piB -qGb -ljv -jiM -jcG -lYg -lYg -sEu -oZB -tcO -aaa -aab -aaa -aaa -"} -(203,1,1) = {" -aaa -aaa -aab -aaa -rfm -bUu -bUu -bUu -bUu -aag -aag -aag -aag -aag -aag -aag -aag -abh -acx -eee -sBe -tOF -rPC -izI -atr -lMy -aex -jVp -rPC -tOF -eDS -eQS -jPO -huk -qZW -asA -asA -qZW -xgs -iIa -mYd -aGh -jvY -jvY -jvY -jvY -xBM -ePf -tKW -lby -uOb -ePf -ttk -jvY -jvY -jvY -jvY -ahk -iCT -wiS -xgs -ghS -yeH -yeH -ghS -suL -tHp -gnq -gbS -lhy -qWN -eDs -tGi -cea -bXe -uHR -qWN -lhy -hhR -mYC -rRq -uOi -aag -aag -aag -aag -aag -aag -aag -aag -bUu -bUu -bUu -bUu -jQR -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -emA -nME -tee -mJR -soG -vdJ -ikT -vdJ -lty -inT -lty -vdJ -ikT -tee -bCk -heO -aLT -sao -bdr -rTv -aLT -kFJ -nYu -gZG -aLT -mpf -itm -mUF -aQL -kxu -aRT -ehh -aQL -fZE -eFa -fEF -cKn -bdl -nMa -nMa -ffp -bdl -bdl -xQr -ixc -ltq -ixc -ltq -ixc -frk -bwA -eHN -pqq -eHN -eHN -bdl -jPk -oYi -mkx -oSM -bJC -tOS -cfo -mML -bJC -tyx -cZL -xXB -bJC -tti -jdI -cam -bSJ -pBT -clg -rdG -bSJ -ljv -rIq -lYg -lYg -aqH -ifH -ivC -xbc -ljv -ien -kTV -kTV -kTV -wpP -kgc -tcO -aaa -aab -aaa -aaa -"} -(204,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -aaa -rfm -bUu -bUu -bUu -bUu -bUu -bUu -bUu -abi -grr -gyU -ajk -aeA -asY -gbQ -atr -rdi -atr -ovJ -ngl -aeA -ajk -aeA -dfh -tOF -xYv -hHt -hHt -kxb -bgH -vPp -grM -gVi -jvY -uJT -oRi -jvY -xNS -mSp -iZu -mSp -jwX -mSp -pob -jvY -rXw -lpT -jvY -gup -grM -gVi -bgH -dpU -vXn -vXn -kAI -wTc -xnj -lJY -xVS -lJY -ttS -pgE -faO -sLL -bXe -dWv -wLu -lJY -xVS -kPH -wTV -uyC -bUu -bUu -bUu -bUu -bUu -bUu -bUu -jQR -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -emA -emA -emA -emA -emA -sUF -ikT -vdJ -ahL -mul -nZW -vdJ -ikT -vdJ -vdJ -bCk -aLT -mZE -bdr -nmT -tGp -bfy -nYu -gZG -aLT -mpf -itm -bnt -uUT -npK -aRT -ddU -aQL -vgI -pQx -eBo -vgI -mCo -rad -kFW -wdy -kQE -wvM -kdN -ixc -ltq -ixc -ltq -ixc -ltq -aXU -fQK -sTy -xtA -uDx -mCo -pCV -ooo -dNX -pCV -bJC -glX -cfo -mwq -jZh -chR -cZL -xXB -bJC -tti -jdI -cll -iLR -vGC -clg -uzP -bSJ -ljv -ljv -ljv -ljv -aCe -jer -ljv -ljv -ljv -jEA -tOV -tcO -tcO -tcO -tcO -tcO -aaa -aab -aaa -aaa -"} -(205,1,1) = {" -aaa -aaa -aab -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -abi -oTQ -gyU -ajk -aeA -atp -qRo -atr -rdi -atr -kkB -nqV -aeA -ajk -ily -cMx -jkr -cMx -gpD -tOF -qdn -mdm -oIb -qdJ -ylX -jvY -jtl -atm -jvY -jpq -mSp -xsr -mSp -mWH -mSp -xLD -jvY -nSG -rUW -jvY -oIb -poD -ylX -mdm -xek -lhy -wtL -yat -iSp -yat -cBb -xVS -lJY -hlX -pPh -bXe -sLL -tGi -lfu -wlF -lJY -xVS -kPH -hzJ -uyC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -emA -jGm -ikT -vdJ -uzv -gWc -uzv -vdJ -ikT -jYY -vdJ -ikT -aLT -sao -bdr -rTv -aLT -byk -wOc -eUP -aLT -ult -itm -tIs -aQL -kxu -aRT -ehh -aQL -jpW -eFa -svw -mzv -hbi -djr -bGU -bGU -lpB -dEa -vet -nVZ -nVZ -nVZ -nVZ -nVZ -nVZ -jBZ -cvK -bYw -nDM -jBZ -qaU -bRo -dOG -gKw -tgz -bJC -tOS -cfo -mML -bJC -koU -cZL -eWa -bJC -heg -jdI -pDJ -bSJ -pBT -clg -rdG -bSJ -bXh -lYg -lYg -lYg -sEu -rIq -jcG -lYg -lYg -sEu -gEh -tcO -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(206,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -abh -acx -oPw -sBe -tOF -rPC -izI -atr -rmG -bXz -jVp -rPC -tOF -sBe -vGZ -cMx -htf -aep -ggQ -ggQ -aME -aep -oIb -lGh -ylX -jvY -wOA -aoP -jvY -foz -mSp -ixt -mSp -mZX -mSp -rkQ -axo -atm -tDi -jvY -oIb -poD -ylX -aep -aME -ggQ -aME -aep -wmA -yat -pAK -hhR -lhy -qWN -eDs -bXe -sZY -mzF -uHR -qWN -lhy -hhR -gua -rRq -uOi -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -emA -bhE -mJR -tee -yia -wAI -vbw -sCf -ikT -vdJ -vdJ -ikT -aLT -sao -hTr -rTv -aLT -fPv -dLf -gZG -aLT -mpf -itm -oaj -aQL -kxu -jUi -ehh -aQL -fZE -eFa -fEF -izb -mCo -qvS -nGK -nGK -nGK -xuo -rYN -bpQ -bpQ -dAn -bpQ -bpQ -jlq -rlp -wdy -wdy -mCp -kRW -mCo -iOA -oYi -mkx -oSM -bJC -tOS -fmh -mML -bJC -rix -cZL -xXB -bJC -tti -jdI -myO -bSJ -pBT -rQZ -rdG -bSJ -tgm -kTV -kTV -kTV -kTV -gEh -sOD -gEh -kTV -kTV -hje -tcO -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(207,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -abh -acx -kba -sBe -tOF -tOF -aFC -mFF -oaS -oaS -fEt -tOF -tOF -sBe -tOF -cMx -qbw -aep -afj -afk -agM -aep -oIb -yiu -ylX -jvY -iHv -atm -jvY -tcK -mSp -mSp -mSp -mSp -mSp -mSp -tBc -atm -rUW -jvY -oIb -yiu -ylX -aep -aHS -afk -sHo -aep -cnm -yat -lhy -hhR -lhy -lhy -dKk -jlz -jlz -jlz -moh -lhy -lhy -hhR -dYK -rRq -uOi -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -emA -emA -emA -emA -emA -emA -emA -emA -emA -emA -iTq -soG -aLT -aLT -aLT -aLT -aLT -rcR -dLf -gZG -aLT -mpf -itm -nsW -aQL -aQL -aQL -aQL -aQL -fZE -eFa -fEF -bmG -bdl -bEi -rlp -ltq -kvu -xuo -boz -bpR -bpR -bpR -bpR -bpR -bxg -rlp -wdy -wdy -sOs -bdl -bdl -aKm -oYi -mkx -oSM -bJC -bJC -bJC -bJC -bJC -rSE -cZL -xXB -bJC -tti -jdI -vMX -bSJ -bSJ -bSJ -bSJ -bSJ -cZp -kTV -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(208,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -abi -aJB -aeA -aju -amH -tOF -tOF -tOF -qXY -tOF -tOF -tOF -aeA -ajk -aeA -cMx -qbw -aep -afk -afk -afk -aep -oIb -poD -ylX -jvY -wws -atm -jvY -cdc -mSp -mpS -mSp -pjc -mSp -nyB -axo -atm -tnH -jvY -oIb -yiu -ylX -aep -afk -aHl -afk -aep -rZZ -yat -lJY -itR -kKR -lhy -lhy -lhy -ePW -lhy -lhy -lhy -lJY -xVS -lJY -vWT -uyC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -ikT -vdJ -aLT -uUU -dCZ -nFW -aLT -aSQ -dLf -eUP -aLT -ult -itm -tkA -aQL -fgi -cFS -lms -aQL -fZE -eFa -fEF -izb -bdl -brp -rlp -ltq -ikD -xuo -boz -bpR -bpR -bpR -bpR -bpR -bxg -rlp -nGK -nGK -nGK -dHO -vvZ -sDB -oYi -mkx -oSM -bJC -xRl -vbn -csL -bJC -kiE -eKq -eWa -bJC -heg -jdI -jcM -bSJ -mAg -gIQ -gWr -bSJ -tgm -kTV -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(209,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -abi -xgW -aeA -ajv -amF -asA -eQS -amF -amF -amF -eQS -asA -amF -ohL -aeA -cMx -oHu -aep -aep -aep -aep -aep -gKk -hDv -gKk -jvY -alL -oJM -jvY -jvY -axo -axo -axo -axo -axo -jvY -jvY -plo -alL -jvY -gKk -dLX -gKk -aep -aep -aep -aep -aep -lla -yat -lJY -ucw -dcp -yeH -gnq -dcp -dcp -dcp -gnq -yeH -dcp -lMp -lJY -opI -uyC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -qGC -vdJ -aLT -uUU -bdr -nFW -aLT -oTS -dLf -gZG -aLT -mpf -itm -gGL -aQL -fgi -bpC -lms -aQL -bMf -eFa -fEF -izb -bdl -bEl -wup -ltq -xZy -xuo -pXp -bpR -bpR -bsK -bpR -bpR -giM -rlp -hmO -hmO -hmO -oqY -lde -oSM -oYi -mkx -oSM -bJC -xRl -cfo -csL -bJC -tyx -hkl -xXB -bJC -tti -jdI -cjw -bSJ -mAg -clg -gWr -bSJ -sHL -naY -tcO -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(210,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -abh -acx -aeA -aeA -aeA -aeA -tOF -aeA -aeA -aeA -tOF -ntI -aeA -tOF -puO -cMx -qbw -lJd -aep -aep -aep -aep -lMa -jao -vHA -jvY -jZE -atm -alL -raF -wsC -pMn -hsG -jkZ -nzu -qqB -alL -aMo -rjC -jvY -lMa -lOn -bjN -oIB -aQC -kvk -soF -oIB -cnm -yat -lJY -uxC -lJY -lJY -dOw -lJY -lJY -lJY -lhy -lJY -lJY -lJY -lJY -rRq -uOi -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -ikT -vdJ -aLT -aek -bdr -nmT -jbF -bfy -dLf -gZG -aLT -mpf -itm -bnt -swI -npK -bpC -pyD -aQL -vgI -pQx -eBo -vgI -bdl -buz -rlp -ltq -jjT -xuo -boz -bpR -bpR -bpR -bpR -bpR -bxg -rlp -muh -rKa -smj -vFu -hOO -fnP -ooo -dNX -pCV -bJC -leE -cfo -mwq -jSM -chR -hkl -xXB -bJC -tti -jdI -cll -jyl -vGC -clg -lKG -bSJ -mzb -gEh -tcO -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(211,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abh -abh -abh -abh -tOF -atr -tOF -atr -tOF -cMx -cMx -cMx -cMx -hBP -cMx -cMx -qbw -xyc -cMx -cMx -cMx -cMx -lMa -jao -vHA -jvY -uAu -atm -lvR -atm -atm -atm -wGI -aFi -aFi -aHs -lrj -atm -pme -jvY -lMa -aPC -bSc -oIB -dDf -riD -waK -oIB -cnm -yat -yat -kNq -kNq -aCE -kNq -kNq -lhy -bXe -lhy -bXe -lhy -uOi -uOi -uOi -uOi -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -vdJ -ikT -aLT -uUU -hTr -nFW -aLT -qUM -dLf -eUP -aLT -ult -nIw -vBj -aQL -fgi -jUi -lms -aQL -fZE -eFa -fEF -eha -bdl -bEm -rlp -ltq -cUW -xuo -boz -bpR -bpR -bpR -bpR -bpR -bxg -rlp -iSy -uys -uys -uys -uys -nHA -oYi -mkx -oSM -bJC -xRl -fmh -csL -bJC -wRJ -hkl -eWa -bJC -heg -vXg -qEh -bSJ -mAg -rQZ -gWr -bSJ -qBJ -lNk -tcO -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(212,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -abh -tOF -atr -tOF -atr -tOF -cMx -xLN -tAa -cMx -wFX -cMx -rEI -qbw -oHu -cMx -oHu -oHu -cMx -jUR -igW -vHA -jvY -jvY -jvY -jvY -xRY -xRY -ccX -eui -vzM -xRY -xRY -jvY -jvY -jvY -jvY -dxq -lOn -vHA -oIB -sHl -bZw -jST -oIB -cnm -xeV -yat -wvn -lPM -aPO -mon -kNq -lhy -bXe -lhy -bXe -lhy -uOi -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -doq -dYc -aLT -aLT -aLT -aLT -aLT -fPv -dLf -gZG -aLT -mpf -itm -tIs -aQL -aQL -aQL -aQL -aQL -sDf -aIt -mNt -sDf -bdl -jnj -smj -smj -smj -qbA -jqI -bpS -bpS -bTe -bpS -bpS -tSg -rlp -wdy -end -evi -xhp -uys -iDJ -jWk -lnV -iDJ -bJC -bJC -bJC -bJC -bJC -eth -hAn -xXB -bJC -tti -jdI -fsD -bSJ -bSJ -bSJ -bSJ -bSJ -bXu -gEh -tcO -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(213,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -abh -tOF -hpK -jSX -tOF -cCC -cMx -qbw -hYo -cMx -tvA -cMx -fCN -fIK -uhG -gkG -fIK -fIK -gkG -rLZ -igW -vHA -alL -qBm -ddi -jvY -jvY -jvY -jvY -cbW -jvY -jvY -jvY -jvY -kxV -qOr -alL -lMa -aPC -rLZ -cLF -hwU -uBM -wVX -oIB -fME -gGR -yat -qwB -wVu -aPO -rpe -kNq -lhy -kfL -mjx -lhy -dOw -uOi -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -vdJ -kDd -aLT -pWE -piu -aLT -vQV -eSg -mlQ -gZG -aLT -mpf -itm -sJh -cFS -aQL -iyl -glR -aQL -bqc -tcS -mww -oYQ -bdl -qMX -bCA -wlh -xGG -fOE -cFW -ghR -cFW -jxo -rAh -vdQ -aue -ltq -wdy -end -qsN -cQM -uys -jlm -ekM -aVM -wVm -bJC -mbW -jrX -bJC -vbn -tyx -hkl -xXB -bJC -tti -jdI -nQx -gIQ -bSJ -rOj -nxg -bSJ -cZp -gEh -tcO -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(214,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -fTl -taw -taw -taw -hBP -taw -cMx -vPT -hYo -cMx -wTn -cMx -qJU -qbw -ozQ -cMx -oHu -oHu -cMx -llJ -lOn -acQ -tdx -pLJ -hDo -jtL -jtL -jtL -gbF -ucx -ota -jtL -jtL -jtL -hDo -kMo -tdx -acQ -lOn -vHA -oIB -kco -hzb -rSl -oIB -wSB -uVi -yat -bKS -wVu -aPO -rmS -kNq -kNq -kNq -kNq -aCE -kNq -fVe -aag -aag -jQR -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -vdJ -ikT -aLT -pGX -bdr -sLJ -aMz -bfy -dLf -eUP -aLT -ult -itm -bnt -aRT -dCH -bpC -jvh -aQL -cQw -bYs -tOT -gML -bdl -eHN -eHN -xOb -eHN -eHN -bdl -bdl -jnw -jlg -bdl -bdl -bdl -kPL -kPL -uys -uys -uys -uys -jZS -dXi -jZS -qAd -bJC -dVg -cfo -cgz -bJD -chR -hkl -eWa -bJC -heg -jdI -cll -bTA -fQq -clg -pYi -bSJ -ien -gCm -tcO -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(215,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -fTl -oFp -wBz -taw -wTn -fVM -cMx -gjT -hYo -cMx -wFX -cMx -rNL -qbw -xyc -cMx -oHu -xyc -cMx -ptd -sUK -rUN -jUP -gPz -atn -atn -atn -rtx -anP -aBh -anP -anP -crk -oPx -atn -kOh -rUp -rUN -hft -bwW -oIB -pfw -ihl -lfG -oIB -otV -sEI -dpX -aPO -aPO -aPO -wVu -wVu -iHR -wVu -wVu -aPO -wVu -fVe -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -sUF -ikT -aLT -aLT -aLT -aLT -brv -nuA -dLf -gZG -aLT -mpf -itm -oiQ -lml -aQL -aQL -aQL -aQL -oxe -tcS -mww -oYQ -bdl -dIs -kBe -tdm -gPi -uME -bdl -hnx -dUH -lvk -xyT -pcm -bdl -dkb -hdh -olc -jaJ -nMY -bdl -uGY -ekM -cJs -pOW -bJC -bJC -bJC -bJC -cdf -jxx -hkl -xXB -bJC -tti -jdI -rXj -gfo -bSJ -bSJ -bSJ -bSJ -cZp -kTV -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(216,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -fTl -gIo -igG -taw -oAK -fVM -cMx -jkr -cMx -cMx -tvA -cMx -oHu -qbw -oHu -cMx -fZa -rAS -cMx -lMa -lOn -acQ -tdx -hyl -amx -amx -amx -awy -amx -amx -amx -amx -amx -xKO -amx -kOz -tdx -acQ -tof -bjN -oIB -hkI -mBT -wWE -oIB -wSB -mWB -yat -dVM -wVu -nNT -jwJ -kgQ -nZG -nZG -nZG -xGm -wVu -fVe -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -vdJ -ikT -aLT -pGX -bdr -hFM -aMz -bfy -dLf -gZG -aLT -mpf -itm -bnt -aRT -ybE -bpC -jvh -aQL -bqc -tcS -mww -oYQ -bdl -egL -oAI -vtL -kuu -prN -bdl -yid -ntT -nqx -hzg -wLx -huj -jnw -ipa -fYZ -vYC -mrs -hpS -fwI -ekM -cJs -pOW -bJC -dVg -cfo -nHV -bJD -chR -hkl -xXB -bJC -tti -jdI -cll -bTA -wkp -oFV -pYi -bSJ -ruA -tOV -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(217,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -fTl -wBz -rWJ -vId -oxy -xhb -gDU -xhb -gqt -oxy -oxy -bLb -qbw -qbw -oHu -cMx -cMx -cMx -cMx -lMa -jao -vHA -alO -njs -amx -amx -aqf -xol -amx -amx -amx -amx -amx -xKO -amx -yaw -alO -lMa -tof -vHA -loP -loP -loP -loP -loP -muk -loP -loP -kNq -rmS -aPO -ugI -tQy -sJQ -uQH -lDu -tVn -sWE -fVe -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -ikT -vdJ -aLT -rLs -und -aLT -vlN -qAp -dLf -vIP -aLT -okf -itm -nRY -unr -aQL -mVx -llS -aQL -bqc -noI -dJG -oYQ -bdl -tEr -jCm -eqb -mLR -srz -bdl -qtK -ixQ -eJe -hTk -jLX -wdy -jnw -cwo -scH -nzO -tax -hpS -fwI -nzt -jhs -pOW -bJC -kFF -ozb -bJC -qBh -muP -hkl -ceW -bJC -tpm -jdI -lVu -gtJ -bSJ -kXp -gTJ -bSJ -bXu -gEh -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(218,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -fTl -gMc -sFR -taw -jns -jGM -jnY -nyl -oxy -xhb -kYC -cMx -oHu -qbw -oHu -cMx -oaP -jhQ -cMx -lMe -jao -vHA -inw -hyl -amx -amx -amx -amx -amx -amx -amx -amx -amx -aBo -amx -kOz -inw -lMa -tof -uFb -loP -iIz -gkP -nbL -fWA -xBY -xzL -loP -hHd -mSR -aPO -ugI -rmS -egQ -egQ -egQ -tVn -wVu -fVe -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -qGC -vdJ -aLT -aLT -aLT -aLT -cpg -eHE -pdn -aLT -aLT -aQL -eJb -sjO -iOr -aQL -aQL -aQL -aQL -bqc -ubQ -fpM -pQB -bdl -jVv -bdj -bNs -nwb -vJJ -bdl -pMx -pMJ -xnI -ayj -dWg -bdl -fDs -gDR -vqi -dZE -dHb -rsK -iAS -feo -ekM -pOW -bJC -bJC -bJC -bJC -fGC -hvE -jeC -bJC -bJC -bSJ -eIy -fsY -rrr -bSJ -bSJ -bSJ -bSJ -kYN -tfQ -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(219,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eJy -nYj -nYj -nYj -nYj -aag -aag -fTl -taw -taw -taw -wTn -afC -iky -xdu -oxy -xhb -hLq -cMx -cpy -qbw -oHu -cMx -oHu -oHu -cMx -lMa -jao -vHA -inw -hyl -amx -lep -tPs -lig -lig -ePu -ePu -qQC -bDh -aBo -amx -fTn -inw -lMa -cNC -vHA -loP -pmQ -iPy -dHK -jdk -xBY -qRV -loP -orL -wVu -aPO -ugI -kNq -hCn -wVu -qqD -fnB -tIR -fVe -aag -aag -nYj -nYj -nYj -nYj -vrw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -emA -emA -emA -emA -ikT -ikT -aLT -fYQ -gya -ela -dwR -cro -alY -rqq -mJj -smB -wQx -jcB -uNe -cFS -fOb -sCX -kcl -bqc -ubQ -uPX -oWi -bdl -mOI -opi -pRV -dxY -nHj -bdl -cOy -qcv -cMZ -tYR -lih -bdl -bdl -heQ -heQ -bdl -bdl -bdl -hpt -uEO -ekM -pOW -hNw -xqO -qyI -bPY -ldv -eIT -nya -tJO -hNw -tfg -phD -rbt -iUq -daX -daX -weG -bSJ -cZp -gEh -tcO -tcO -tcO -tcO -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(220,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -aag -fTl -qok -xhb -vId -oxy -afC -wBz -lZd -oxy -jGM -cmD -cMx -rNL -qbw -ozQ -cMx -oHu -oHu -cMx -llJ -jao -vHA -inw -wyk -jfx -hdC -alO -dKW -dKW -woZ -ggF -alO -pKx -aBo -amx -raf -inw -lMa -cNC -vHA -loP -dHK -jdk -dHK -hOr -xBY -dHK -loP -jwD -wVu -aPO -ugI -kNq -rsy -mSR -oyw -myM -wVu -fVe -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -bhE -tee -vbw -mtJ -vdJ -ikT -dYO -aMH -beV -gWE -gQB -qYh -bee -rqq -mJj -ljs -cEE -nkw -eHZ -aSE -tFc -sCX -kcl -bqc -sUk -slo -bdl -bdl -bdl -bdl -bdl -bdl -bdl -bdl -bdl -gnx -bdl -bdl -bdl -bdl -anN -dEp -anN -qNC -dEp -bdl -bdl -udf -iyC -pOW -hNw -pXN -rSm -cgy -tWJ -nqS -yhC -pXZ -hNw -lUt -bWz -apF -siv -aMI -wGE -erG -mDe -sEu -kTV -gdg -dCL -kgc -qGb -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(221,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -aag -fTl -qok -oMk -taw -tTG -afC -gMc -wwF -oxy -afC -bIf -cMx -gTq -qbw -qbw -bLb -qbw -qbw -bol -qjD -lOn -bjN -alO -alO -alO -alO -alO -tsW -pLJ -hDo -kbB -dKW -pKx -xKO -amx -raf -alO -lMa -tof -qjD -eGj -xBY -xBY -xBY -xBY -xBY -rmC -loP -kNq -rmS -nOx -ugI -kNq -kNq -kNq -kNq -pAV -wVu -fVe -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -ovu -ikT -ikT -ikT -ikT -ikT -aLT -iGo -lLw -lLw -evj -fPv -dLf -rqq -mJj -byn -ohs -bnt -bJH -iIR -tFc -sCX -kcl -bqc -ubQ -kwi -iDg -rSR -xss -qQx -xss -xss -tsQ -dxr -dxr -dxr -ung -xss -xss -dxr -cNO -xss -xWe -dxr -xss -xss -iDg -kYl -ekM -pOW -hNw -pXN -rSm -gnu -bOQ -chR -xvC -urN -hNw -lUt -jdI -yex -gci -qIv -qIv -dpH -bSJ -gEh -gEh -gEh -gEh -gEh -kTV -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(222,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -aag -fTl -xPU -xXp -taw -oxy -gMC -dPn -xwS -oxy -afC -wBz -cMx -nps -qbw -oHu -cMx -oHu -oHu -bhd -lMa -lOn -vHA -alO -jjm -jwj -iib -alO -qdf -rqK -aBk -kOz -dKW -pKx -xKO -amx -raf -alO -elD -cNC -vHA -fxg -jdk -uVM -oXZ -xZS -xBY -jUs -qHm -aPO -iXB -aPO -gof -pno -ivL -ivL -ivL -fVa -wVu -fVe -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -xYH -ikT -aLT -aLT -aLT -aLT -aLT -aLT -dpq -rds -kRJ -iAO -gkS -aLT -aLT -rmv -ohs -pPO -chp -chp -tFc -aQL -aQL -gML -xlV -mht -cvx -cvx -iOF -cvx -cvx -cvx -cvx -vub -vub -vub -teW -vub -vub -vub -cvx -cvx -cvx -iOF -cvx -cvx -cvx -fld -dXi -jTr -bJC -bJC -dZw -vND -vND -chR -xvC -lQD -bJC -bSJ -cmt -vTm -kAD -ewA -wcC -bSJ -bSJ -bSJ -bSJ -bSJ -bSJ -gEh -gCm -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(223,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -aag -fTl -taw -taw -taw -wTn -xhb -xhb -kSq -oxy -bma -oTi -cMx -nps -qbw -xyc -cMx -pVh -mSl -bhd -lMa -jao -vHA -alO -eSH -atq -kOz -alO -xXy -hTn -slj -kOh -tGJ -poy -cfF -xTX -mYp -alO -lMa -cNC -vHA -fxg -jyZ -wLh -loP -loP -jOK -loP -loP -kNq -bmE -aPO -kTC -uqJ -tPL -uqJ -uqJ -kJG -wVu -fVe -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -vdJ -ikT -aLT -isj -gEP -yey -gEP -ela -dwR -vbJ -aNQ -aOL -snK -ilu -aLT -aQL -bkf -aXK -aRo -brA -tFc -tTe -aQL -bqc -qIf -bqc -bbs -dJL -xYP -bbs -gsm -cTg -rbF -cJE -gBZ -dJi -bRe -qcO -jIN -vub -bPL -cTg -xSM -cgE -gsm -cTg -bbr -uPE -ekM -pOW -bJC -ict -rSm -cgy -cgy -dHJ -adT -bJC -bJC -lZw -jdI -bUp -bUN -cmR -iUq -lqj -jof -rLJ -jof -daX -bSJ -kTV -kTV -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(224,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -aag -fTl -xhb -xhk -tzK -oxy -xhb -cMx -cMx -jkr -cMx -cMx -cMx -mtB -qbw -oHu -cMx -cMx -cMx -cMx -lMa -jao -vHA -alO -eSH -atq -kOz -alO -hjw -hTn -eis -kOz -wNF -ukW -rfH -atA -xXy -alO -lMa -tof -vHA -loP -loP -loP -loP -adZ -vyI -jwv -owD -jWh -yat -xEM -yat -yat -kNq -kNq -kNq -xoF -sWE -fVe -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -vdJ -vdJ -aLT -nuN -nuN -qac -ehx -ehx -qhJ -vbJ -mLF -tig -snK -pqB -aLT -smB -ohs -uTv -bKC -bOG -tFc -vRC -aQL -bqc -qIf -bqc -bbs -jeG -vTS -bbs -ccQ -mzH -rbF -qlz -kEr -pjU -bQX -ijQ -cLl -qlz -tez -mzH -ccQ -cgE -ccQ -mzH -bbr -uPE -ekM -pOW -bJC -hMH -rSm -lLC -nEo -nZy -xvC -nGl -bJC -nCb -jdI -iWc -cqz -cmR -gss -pWb -pWb -oYc -oEo -oEo -bSJ -kTV -lMO -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(225,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -aag -fTl -oxy -oxy -bCv -oxy -xhb -cMx -kra -lRu -uXO -cMx -rNL -oHu -qbw -oHu -fPJ -mnJ -pCE -cMx -lMa -jao -vHA -alO -eSH -atq -kOz -alO -alO -jMn -eIh -jMn -alO -xBe -xBe -xBe -xBe -xBe -lMa -tof -vHA -jWh -nqp -xzA -cEe -xNZ -hSk -hSk -eQh -jWh -xRn -pnB -qQP -yat -eJm -oET -qIJ -xoF -wVu -fVe -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -feW -vdJ -aLT -vug -vug -bjZ -vug -vug -qhJ -vbJ -kmn -uRo -snK -aLT -aLT -hWr -ohs -xlk -uuj -iOZ -tFc -aQL -aQL -ylN -qIf -bqc -bbs -utu -xYP -bbs -ccQ -pdq -rbF -qlz -rdK -pjU -bTx -bKQ -tXM -qlz -tez -vYF -ccQ -cgE -ccQ -pdq -bbr -uPE -ekM -pOW -bJC -bJC -lfC -oHe -kst -onN -xvC -qki -bJC -bSJ -aOJ -bUq -jIl -cmR -gss -wWX -wWX -ibJ -wWX -wWX -bSJ -kTV -xHa -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(226,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -aag -fTl -wTn -xhb -lgr -xhb -mfu -cMx -kra -gPl -nMq -cMx -dCd -oHu -qbw -oHu -oHu -oHu -hyA -cMx -elD -jao -qjD -ctM -ukW -fYc -sPR -onp -oBe -wkV -auu -kOz -axK -xBe -gzB -qvr -hWA -xBe -lMa -tof -vHA -tMv -gaT -hSk -hSk -vyI -hSk -hSk -eQh -jWh -uQX -wSB -kkT -yat -wVu -fON -xmR -xoF -lNU -fVe -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -doq -vhW -aLT -eyk -dqR -qPZ -dqR -itP -dwR -eHl -uow -aMz -nYu -rqq -mJj -nmx -rPm -rEg -rEg -nsX -tFc -sCX -kcl -bqc -qIf -bqc -bbs -bQg -xYP -bbs -vxF -cTg -rbF -qlz -pAi -pjU -bTx -bTx -dFF -qlz -tez -cTg -ccQ -cgE -ccQ -cTg -bbr -uPE -ekM -pOW -hNw -pXN -pJl -hnn -wCx -wYu -rFe -jrb -hNw -lUt -jdI -qgN -vqE -njU -iUq -cuL -ghH -oPu -ghH -uLi -bSJ -kTV -eeR -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(227,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -aag -fTl -oxy -cMx -cMx -nAP -cMx -cMx -oNm -qbw -txf -fMv -whO -pJS -whO -whO -whO -whO -whO -qxw -euc -paZ -vHA -alO -xBA -nZI -dIT -alO -irX -hTn -aBn -lHj -tid -xBe -gEE -giu -uSX -xBe -lMa -tof -bjN -jWh -tCQ -liW -eod -vyI -vyI -nZY -xWD -jWh -jEN -iWn -kbb -yat -wVu -fON -lLN -xoF -wVu -fVe -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -sUF -kDd -aLT -aLT -aLT -aLT -aLT -aLT -oeQ -eHl -bwf -ozf -fqs -rqq -mJj -fIM -fIM -sXw -sXw -som -tFc -sCX -kcl -gML -fEa -gML -kFY -oVD -eLn -bbs -ccQ -mzH -rbF -vub -odN -odN -dYq -odN -odN -vub -tez -mzH -ccQ -cgE -ccQ -mzH -jhb -nml -dXi -qAd -hNw -pXN -vSM -qtP -wdz -wdz -nCf -nCf -hNw -lUt -ogI -iYN -rtV -qUd -mIO -bSJ -bSJ -bSJ -bSJ -bSJ -bSJ -qid -lNk -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(228,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -aag -fTl -oxy -cMx -cMH -brc -lat -cMx -kra -lTc -jKw -cMx -cMx -cMx -jkr -cMx -cMx -cMx -cMx -cMx -llJ -cNC -vHA -wDM -wDM -wDM -wDM -wDM -xgj -hTn -aBo -uVT -hDo -pdP -kdO -cpa -pOV -xBe -lMa -tof -vHA -jWh -jWh -uUz -jWh -kie -jNp -jWh -jWh -jWh -qCS -wSB -qAN -yat -fIT -wVu -qqD -fnB -tIR -fVe -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -inT -ikT -aLT -isj -gEP -yey -gEP -ela -dwR -uYY -aNT -nYu -nmT -rqq -mJj -ixy -rMn -mnF -mVZ -kRC -uPF -sCX -kcl -bqc -qIf -bqc -hpH -eKo -rLW -quA -bVS -dqN -kuo -iPE -xLU -nLi -oVD -sly -xLU -iPE -bVS -euj -kuo -quA -erJ -ekd -hpH -uPE -ekM -pOW -hNw -pXN -gaf -bnq -fHs -gYb -fHs -gYb -hNw -lUt -vGC -bSB -pQN -sLc -iUq -rLJ -jof -lqj -jof -daX -bSJ -rqz -kTV -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(229,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -aag -fTl -lmq -cMx -rBY -lkx -ueY -cMx -kra -lRu -woJ -cMx -gCl -bfT -kPA -kPA -kPA -kPA -kPA -ptK -lMa -cNC -vHA -wDM -mYw -due -myY -wDM -oRq -hTn -aBp -tOw -xTX -pdP -kdO -cpa -pOV -xBe -lMa -cNC -vHA -jWh -yip -yip -yip -xNZ -oEm -obg -dIZ -jWh -bTI -mUA -fXt -yat -jGg -wVu -oyw -iOh -wVu -fVe -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -jIR -ikT -aLT -cjc -cjc -frS -nuN -nuN -dlW -eQa -iSZ -snK -fLn -aLT -aLT -aQL -aQL -aQL -aQL -rOW -liN -aQL -aQL -bqc -sUk -ade -oad -nsC -fOG -kFS -reJ -nXc -reJ -reJ -reJ -sly -bRc -nLi -reJ -reJ -reJ -nXc -reJ -ssL -duY -nsC -oad -hWD -iyC -pOW -bJC -bJC -cyV -rcb -bJC -bJC -bJC -bJC -bJC -bSJ -nXH -gqL -ycd -mxI -gss -oEo -oEo -kGa -fXN -fXN -bSJ -gEh -kTV -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(230,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -aag -fTl -oxy -cMx -cMx -cMx -cMx -cMx -cMx -jkr -cMx -cMx -fKs -sba -jhx -jhx -jhx -jhx -xKC -hNF -rLZ -jgv -vHA -wDM -fKB -iHE -dJl -njp -cKu -vkq -nRX -xRc -beX -xBe -kVJ -wkJ -uSX -xBe -elD -wHr -rLZ -ahg -soP -pDr -soP -pDr -soP -eoG -eQh -jWh -yat -xEM -yat -yat -kNq -rmS -kVc -xoF -sWE -fVe -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -uzv -ikT -aLT -cjc -cjc -frS -cjc -cjc -dlW -vXH -tzZ -kJM -nmT -aLT -lFT -wte -lFT -wte -smB -dlV -bpC -oez -aQL -pjP -qIf -lfz -bbs -leJ -leJ -leJ -leJ -bbs -bJf -bJf -bJf -bJf -xba -dNt -dNt -dNt -dNt -bbs -xBs -xBs -xBs -xBs -bbs -wMI -ekM -oHt -bJC -nGl -cft -lFO -lFQ -dhm -fWy -dhm -nGl -bSJ -nkl -qPh -gtJ -ghe -gss -fXN -fXN -kGa -fXN -fXN -bSJ -kTV -gCm -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(231,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -aag -fTl -wTn -xhk -vGh -uQc -pVD -taw -mDJ -dMN -poF -lrB -wHc -rob -dMN -dMN -xdd -dMN -dMN -ptK -lMa -tof -vHA -wDM -hLG -nPz -gYc -imj -bDh -amx -atq -jrQ -pjC -xBe -qzM -gEM -dmw -xBe -lMa -cNC -vHA -jWh -rJU -liW -liW -liW -vMB -iat -mib -jWh -kNq -nGb -kNq -kNq -hks -seR -pno -fnB -wVu -fVe -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -aaK -ikT -aLT -eyk -dqR -qPZ -dqR -itP -dwR -lCb -qws -snp -nmT -vki -fZZ -fZZ -dmb -sXw -sXw -dlV -bpC -qDq -hpQ -bqc -ubQ -bqc -bbs -gWL -qNJ -wgB -pdJ -kul -pdJ -pdJ -pdJ -oqp -xba -oqp -pdJ -pdJ -pdJ -kul -pdJ -fbW -alB -mkO -bbs -uPE -ekM -pOW -jyG -oXb -cft -lFO -wdz -wdz -cpv -bKM -bKM -wUf -vGC -iXO -otN -kXA -iUq -oPu -ghH -cuL -ghH -uLi -bSJ -gEh -naY -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(232,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -aag -fTl -oxy -oxy -tIN -oxy -oxy -vId -dMN -dMN -uKV -mDJ -fKs -iEr -dMN -eNi -eNi -eNi -eNi -eNi -lMa -tof -bjN -wDM -pIz -iiy -nDB -wDM -cFx -bDh -atq -jrQ -qAC -xBe -xBe -xBe -xBe -xBe -lMa -cNC -uLs -jWh -jWh -jlQ -jlQ -jWh -xgw -uWV -eQh -cVU -kNq -sWE -kNq -kNq -rmS -kVc -mSR -wVu -okG -fVe -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -ovu -ikT -aLT -aLT -aLT -aLT -aLT -aLT -htO -mrc -bxB -vVU -gFU -lBm -eVd -eVd -eVd -eVd -eVd -toa -pyg -pyg -nZg -jno -fqw -bqc -lgy -eZU -xYP -ssE -tEJ -tEJ -tEJ -jbB -tEJ -tEJ -xba -tEJ -tEJ -jbB -tEJ -tEJ -tEJ -dny -xYP -jiX -laU -uPE -dEL -rzy -hRT -gLW -kmB -bUX -gLW -gLW -gLW -gLW -gLW -lAh -qwn -qbq -fXN -lPK -vdo -bSJ -bSJ -bSJ -bSJ -bSJ -bSJ -gEh -mHQ -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(233,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rfm -bUu -bUu -bUu -aag -aag -aag -fTl -twz -pOc -uth -jnY -jnY -taw -ptK -pnn -ptK -ptK -fKs -rtd -dMN -eNi -olO -wiG -nWN -eNi -lMa -tof -vHA -wDM -wDM -wDM -wDM -wDM -vhZ -hTn -amx -jrQ -nsa -inw -bbQ -jtL -ghM -jMn -lMa -cNC -bjN -jWh -hSk -hSk -wqR -jWh -ldH -fCL -eQh -xfD -tdN -wVu -hXK -wVu -aPO -aPO -aPO -gtQ -vdv -fVe -aag -aag -aag -bUu -bUu -bUu -jQR -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -bhE -vdJ -vdJ -vdJ -vdJ -bhE -vdJ -aLT -cjc -cjc -pZw -cjc -cjc -aLT -kIC -fZZ -nSd -qDq -qDq -hYz -bpC -qDq -aQL -rpB -xlV -gML -lgy -xXb -xYP -wgB -eqq -eqq -eqq -eqq -eqq -nuI -xba -nuI -eqq -eqq -eqq -eqq -eqq -fbW -xYP -sUz -laU -jZS -urR -jZS -bJC -oXb -cfo -klv -oXb -oXb -xvt -bKM -tEO -bSJ -fXN -fXN -uLi -fXN -fXN -bSJ -enY -kgc -gEh -kTV -kTV -kTV -dJR -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(234,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -fTl -prX -kaY -mWu -cmz -wBz -taw -dCW -hsr -mDJ -ptK -fKs -iEr -vXt -eNi -ueG -rPt -jyE -eNi -lMa -cNC -vHA -nEy -wdl -amx -nPA -alO -wqn -hTn -amx -jrQ -sCC -inw -xhl -azs -atq -jMn -lMa -cNC -vHA -uXY -fyj -kjC -hSk -rQD -xNZ -fCL -eQh -iXc -kNq -wVu -kNq -kNq -wVu -wVu -iNX -fYD -dVR -fVe -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -emA -emA -emA -emA -vdJ -ikT -vdJ -aLT -eyk -dqR -meY -eyk -dqR -aLT -mnF -rMn -mnF -rMn -tgP -hYz -bpC -rmv -aQL -bqc -wqO -wxD -ekr -bCG -cgE -arx -oVD -xYP -xYP -xYP -xYP -oVD -xba -oVD -xYP -xYP -xYP -xYP -oVD -fOx -cgE -uwW -faP -ddL -eZR -uPE -bJC -lQD -cfo -klv -fHs -gYb -fHs -gYb -lQD -bSJ -oPu -ghH -oer -oPu -ghH -bSJ -ttc -qid -tOV -tcO -tcO -tcO -tcO -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(235,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -fTl -fTl -fTl -fTl -fTl -fTl -fTl -cRu -hsr -mDJ -ptK -fKs -iEr -dMN -eNi -iKD -rPt -rPt -eNi -lMa -cNC -vHA -jMn -hTn -atq -nPA -alO -alO -fhc -atq -yld -alO -alO -pSB -aMD -atq -jMn -lMa -cNC -vHA -uXY -rAA -qIu -hSk -kie -vMB -fCL -tEc -bYn -fVe -fVe -fVe -fVe -fVe -fVe -fVe -fVe -fVe -fVe -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -feW -ikT -vdJ -aLT -meY -meY -meY -meY -meY -meY -aQL -aQL -aQL -aQL -aQL -rpf -uTK -aQL -aQL -bqc -ubQ -bqc -lgy -deW -xYP -wgB -pdJ -pdJ -pdJ -pdJ -pdJ -oqp -xba -oqp -pdJ -pdJ -pdJ -pdJ -pdJ -fbW -xYP -tvL -laU -uPE -vuV -uPE -bJC -bJC -jGz -dlz -bJC -bJC -bJC -bJC -bJC -oer -oer -oer -oer -oer -oer -oer -xwn -gEh -naY -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(236,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -aag -aag -aag -aag -aag -aag -cuC -kjp -hsr -hsr -ptK -dDk -rtd -dMN -eNi -eNi -eNi -oAd -eNi -sfe -tof -vHA -jMn -hTn -atq -xzK -alO -saU -hTn -atq -jrQ -pPr -inw -hTn -ayl -amx -jMn -lMa -cNC -vHA -jWh -jmQ -vcu -czE -jWh -xgw -uWV -emg -bYn -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -iPU -ikT -ikT -ikT -ikT -ikT -ikT -ikT -vdJ -ikT -vdJ -aQL -oez -oez -smB -hYz -bpC -oez -aQL -bqc -ubQ -bqc -lgy -eZU -xYP -ssE -tEJ -tEJ -tEJ -jbB -tEJ -tEJ -xba -tEJ -tEJ -jbB -tEJ -tEJ -tEJ -dny -xYP -jiX -laU -uPE -vuV -uPE -bJC -nGl -cfo -klv -nGl -nGl -nGl -bJC -gEh -wpP -gEh -kTV -dzX -inM -kTV -gEh -gEh -gEh -gEh -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(237,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rfm -bUu -bUu -bUu -bUu -bUu -bUu -bUu -aag -cuC -pRw -hsr -mDJ -ptK -fKs -iEr -dMN -eNi -djP -fVn -vzK -wYY -lMa -tof -vHA -jMn -hTn -atq -xzK -alO -mFf -kol -auy -jow -iaI -inw -wol -amx -atq -jMn -lMa -cNC -vHA -uXY -daZ -eJB -hSk -rQD -xNZ -fCL -btB -bYn -aag -aag -aag -aag -aag -bUu -bUu -bUu -bUu -bUu -bUu -bUu -jQR -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -rvS -gAo -vdJ -vdJ -vdJ -vdJ -sCf -vdJ -vdJ -vdJ -vdJ -aQL -qDq -qDq -qDq -hYz -bpC -qDq -bTb -bqc -ubQ -bqc -bbs -bCc -deW -wgB -eqq -rNG -eqq -eqq -eqq -nuI -xba -nuI -eqq -eqq -eqq -rNG -eqq -fbW -xjT -bgE -bbs -uPE -vuV -uPE -xSw -oXb -cfo -klv -oXb -oXb -oXb -bJC -gEh -kTV -gEh -kTV -gEh -mTl -kTV -gEh -kTV -kTV -bbj -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(238,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rAC -bdH -bdH -bdH -bdH -bdH -taM -cuC -hVm -mtS -gDT -ptK -fKs -iEr -dMN -eNi -ayN -eJX -agy -wYY -lMa -tof -vHA -jMn -hTn -amx -apa -alO -cNF -gPj -aBr -egg -yfD -alO -nJQ -amx -atq -jMn -lMa -cNC -vHA -uXY -rAA -vYK -hSk -kie -vMB -fCL -emg -bYn -aag -aag -aag -aag -xOa -opJ -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -emA -emA -emA -emA -emA -emA -emA -emA -emA -ikT -vdJ -aQL -qDq -qDq -qDq -dga -gAG -gAG -bTb -gML -xlV -gML -bbs -cdp -cdp -jks -cdp -bbs -tNp -tNp -tNp -tNp -xba -xbG -xbG -xbG -xbG -bbs -fJO -fJO -fJO -fJO -bbs -jZS -urR -jZS -xSw -dxV -dxV -wgw -oXb -oXb -oXb -bJC -kTV -gEh -gEh -tcO -tcO -ucy -tcO -tcO -tcO -tcO -tcO -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(239,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -taM -cuC -ptK -ptK -ptK -ptK -fKs -iEr -dMN -eNi -vNI -fzP -agy -wYY -lMa -cNC -vHA -jMn -hTn -atq -fhf -alO -vvh -naC -auA -hRY -ucO -inw -gfc -gfc -oqM -jMn -lMa -cNC -bjN -jWh -qLs -qLs -wqR -jWh -ldH -uWV -eQh -bYn -bYn -bYn -aag -aag -xOa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -qGC -bhE -aQL -rmv -rmv -tgP -qDq -qDq -qDq -bTb -bqc -ubQ -bqc -bqc -bqc -bqc -bqc -bqc -dYb -bqc -epF -bqc -bqc -wyH -uPE -uPE -tKX -uPE -fRL -uPE -uPE -uPE -uPE -uPE -uPE -vuV -uPE -xSw -oXb -oXb -oXb -lQD -rMC -lQD -bJC -kTV -nVg -naY -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(240,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -hzc -hzc -hzc -cuC -faC -crX -fKs -rtd -dMN -eNi -lVP -uzE -qsL -oNl -plf -pqY -vHA -jMn -hTn -atq -cSm -alO -hTS -hTn -atq -aDE -asT -okC -ity -ity -kTR -jMn -lMa -cNC -vHA -jWh -jWh -jlQ -jlQ -jWh -kVO -fCL -eQh -szD -hsC -bYn -hzc -hzc -hzc -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -ikT -vdJ -aQL -aQL -aQL -aQL -rmv -tgP -rmv -aQL -bqc -qas -qUO -qUO -qUO -reu -fLf -reu -reu -reu -alK -reu -reu -vLr -kEE -kEE -gUA -kEE -kEE -kEE -ulH -kEE -wzJ -wzJ -wzJ -nmH -xui -bJC -lQD -rMC -lQD -bJC -bJC -bJC -bJC -gEh -gEh -gEh -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(241,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -tVk -bZc -iHc -cUS -vqa -hsr -fKs -iEr -dMN -eNi -nzL -uPK -lGp -eNi -elD -cNC -vHA -jMn -hTn -atq -rfu -oZG -atq -ukW -xTX -xTX -xTX -inw -gfc -gfc -jxD -jMn -lMa -cNC -vHA -jWh -uUH -nuU -vyI -wgD -xgw -fCL -eQh -hSk -xfD -rVq -iHc -bZc -xAk -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -ikT -vdJ -vdJ -jYY -vdJ -oBr -oBr -oBr -oBr -oBr -ovQ -bqc -bqc -bqc -bqc -nci -mww -nci -nci -bqc -dOp -bqc -bqc -wyH -uPE -uPE -mWX -uPE -cJs -cJs -vuV -cJs -uPE -uPE -uPE -uPE -pqw -bJC -bJC -bJC -bJC -bJC -kTV -kTV -kTV -gEh -kTV -izz -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(242,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -tVk -jgw -wbJ -cUS -vqa -hsr -fKs -iEr -vXt -eNi -jXY -eMK -kfp -eNi -lMa -tof -vHA -jMn -voU -xTX -rfu -tdx -atq -atq -hTn -eWo -uzT -alO -tfR -hwb -xEb -jMn -lMa -cNC -vHA -jWh -ecf -nuU -vyI -vyI -vyI -fCL -eQh -hSk -xfD -rVq -wLi -jgw -xAk -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -emA -kAv -vdJ -ikT -ikT -vdJ -vdJ -sij -ikT -ikT -oBr -oBr -kcj -oBr -oBr -xdy -jtu -pum -tXp -cqN -cqN -oJk -lNR -lNR -oJk -lNR -lNR -oJk -gVf -uct -rFj -vDo -vWp -bLB -ljv -ljv -nEv -ljv -ljv -kTV -kTV -kTV -kTV -kTV -kTV -kTV -kTV -kTV -kgc -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(243,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -hzc -hzc -hzc -cuC -onG -crX -fKs -rtd -dMN -eNi -eNi -eNi -eNi -eNi -lMa -tof -vHA -alO -alO -alO -alO -alO -sFM -sFM -nqa -voS -nfQ -alO -alO -alO -alO -alO -lMa -cNC -vHA -jWh -uUH -nuU -vyI -iLI -xgw -uWV -eQh -szD -udE -bYn -hzc -hzc -hzc -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -emA -xGM -sWq -vdJ -vdJ -vdJ -vdJ -sij -vdJ -vdJ -vqs -vdJ -vdJ -vdJ -oBr -oBr -sqg -rWp -sqg -oJk -oJk -oJk -rEj -jnA -nRO -vKo -dRx -oJk -oJk -oJk -sqg -hWn -sqg -ljv -ljv -kTV -gEh -kTV -kTV -gEh -gEh -gEh -kTV -kTV -kTV -kTV -gEh -nhq -mYV -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(244,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -taM -aag -aag -cuC -cuC -cuC -fKs -iEr -dMN -dMN -ljE -dMN -dMN -ptK -fdt -vbk -gJG -dOq -aPa -eky -eky -alO -aqY -aqY -alO -aqY -aqY -alO -eky -eky -aPa -dOq -fdt -vbk -sPs -jWh -yip -yip -yip -yip -xNZ -fCL -xFB -bYn -bYn -bYn -aag -aag -xOa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -emA -twp -uGZ -ecb -ikT -ikT -ikT -ctp -ecb -vdJ -vdJ -vdJ -vdJ -ikT -ikT -oBr -ovB -gdJ -qYx -oJk -rkI -drg -lwu -rtT -fBn -xfR -uYF -szI -rMH -oJk -wDt -nAY -ezC -ljv -ceY -vmz -gEh -gEh -gEh -kTV -aLg -kTV -gEh -kTV -gEh -gEh -sOD -eMx -xgr -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(245,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -rfm -bUu -bUu -bUu -aag -uMc -wHc -wOt -odl -jhx -keR -jhx -keR -ngM -rLZ -eIY -oXa -ksX -uYg -nau -uYg -uYg -rQO -gDV -gDV -gDV -vrz -uYg -uYg -nau -uYg -ksX -pDZ -eIY -rLZ -iez -soP -tWi -soP -pDr -tWi -tpd -mib -pql -aag -bUu -bUu -bUu -jQR -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -emA -emA -emA -emA -emA -emA -emA -vgw -sqg -sqg -sqg -tVf -sqg -oBr -qGC -oBr -ovB -gdJ -qYx -oJk -lij -xoj -xoj -rtT -fBn -xfR -pUj -xoj -sfV -oJk -dal -nAY -ezC -ljv -gEh -ljv -sqg -tVf -aep -aep -aep -dKL -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(246,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -taM -uMc -fKs -xYh -dbz -iYy -cGr -cGr -wHl -ptK -spE -hzx -ugB -dOq -eky -aNl -eky -eky -xBw -vsh -vsh -vsh -lwM -eky -eky -aNl -eky -dOq -spE -rSu -ugB -jWh -tIC -uWV -nCt -huM -tIj -ybO -eQh -pql -xOa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -vgw -rHH -koR -sqg -rwB -lKM -sqg -nSq -oBr -txl -gdJ -ezC -pRZ -wZW -wZW -wZW -pdx -nJt -jWq -wZW -wZW -wZW -pRZ -ovB -nAY -sPW -ljv -mPc -sqg -teD -xSv -ggQ -afk -afk -dKL -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(247,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -eJy -aag -cuC -pae -kYh -ptK -ptK -ucp -iGx -ptK -ptK -xga -mIb -xga -aHe -jlT -exi -eky -eky -fGh -jjV -jjV -jjV -fGh -eky -eky -ins -wRP -aHe -eZm -eZm -eZm -jWh -jWh -dQv -jWh -jWh -jWh -lKz -ydG -bYn -aag -vrw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -taM -aag -aag -vgw -rHH -koR -sqg -hIH -wQA -sqg -vdJ -oBr -aYZ -jaM -diK -rmL -tih -uVc -bxN -pBj -grU -iJG -skL -dTr -qzR -ujR -oxf -ojh -tJs -ljv -kTV -sqg -icx -sRg -aWZ -bLx -bMJ -dKL -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(248,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -cuC -cuC -cuC -fKs -pug -ptK -uDQ -jHz -mym -mvT -ptK -fLl -fLl -fLl -eky -eky -aNl -eky -uNV -aHe -aDQ -aDQ -aDQ -aHe -uNV -eky -aNl -eky -rqj -eZm -fLs -ein -jWh -duz -lsF -gEY -doU -jWh -eLx -eQh -bYn -bYn -bYn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rfm -bUu -bUu -vgw -oYM -koR -koR -kqJ -vxu -sqg -tVf -sqg -axi -gdJ -ezC -pRZ -xCH -xCH -gyZ -fvw -sqr -iFb -sjK -cSL -xCH -pRZ -ovB -nAY -ezC -sqg -tVf -sqg -ohz -tUs -aep -aep -aep -dKL -bUu -bUu -jQR -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(249,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -cuC -gCl -kPA -xxR -pug -ptK -uDQ -qSD -wpd -uWn -ptK -aqZ -aqZ -stS -wiY -wiY -hHF -sSm -aHe -aHe -iVi -jTh -iAM -aHe -aHe -vAe -hHF -wiY -wiY -uJD -xVN -xVN -jWh -axR -mJG -mRY -fWi -jWh -eLx -oEm -yip -dCw -bYn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vgw -prD -koR -koR -wwL -iNA -sqg -aFe -sqg -oVq -gdJ -dCn -oJk -htM -xoj -eKQ -rtT -hLh -xfR -fsR -lkV -deo -oJk -kRF -nAY -nng -sqg -pCq -sqg -icx -iTM -ggQ -bLy -bLy -dKL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(250,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -cuC -fKs -xYh -rOZ -edN -ptK -qpy -fAg -gLA -mXU -ptK -xJc -dGp -fLl -svf -arV -wZX -eky -aDQ -sOI -eky -aBx -eky -kIU -aDQ -eky -wZX -arV -vUh -eZm -qDL -xVN -jWh -vpv -oYJ -wHg -fWi -jWh -gkj -kzD -ybO -eQh -bYn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vgw -aeU -pvu -pvu -kQM -tMq -loc -prv -loc -lOb -gLD -ezC -oJk -oJk -lwp -xoj -rtT -rYh -xfR -xoj -njy -oJk -oJk -plV -vTT -eFN -uSN -cNz -uSN -cFz -ila -aWZ -bLz -bMK -dKL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(251,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -cuC -aTM -pug -ptK -ptK -ptK -ptK -ptK -pnn -ptK -ptK -xJc -fLl -fLl -lDn -arV -wZX -eky -aDQ -mdO -eky -eky -eky -uSZ -aDQ -eky -wZX -arV -wkA -eZm -eZm -xVN -jWh -jWh -nHa -jWh -jWh -jWh -jWh -jWh -eLx -epK -bYn -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dKL -aep -aep -aep -tuh -koR -vZf -ykI -vZf -xbZ -gdJ -arS -qfr -oJk -wdg -xoj -rtT -rYh -xfR -xoj -xlx -oJk -lxx -kAa -nAY -iyU -vZf -bYF -vZf -jOP -lws -aep -aep -aep -dKL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(252,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -uMc -fKs -pug -fLl -qOv -xJc -asd -xJc -aqZ -pwJ -xJc -iLS -fLl -mbZ -vVu -arV -wZX -eky -aHe -jMQ -eky -eky -eky -dEn -aHe -eky -wZX -arV -oIt -mbZ -eZm -sjt -xVN -dZn -vJR -xVN -tXI -acR -ogH -eZm -eLx -eQh -pql -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dKL -afk -aWo -aWZ -kip -gVt -sqg -tVf -sqg -rVA -gdJ -elx -ezC -pRZ -xoj -xoj -rtT -hLh -xfR -xoj -xoj -pRZ -ovB -hMG -qQy -ixs -sqg -tVf -sqg -rLQ -jxH -aWZ -bLA -afk -dKL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(253,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -uMc -fKs -pug -fLl -qOv -xJc -cCQ -xJc -aqZ -kWy -xJc -iNj -fLl -pYl -fDW -wiY -qVx -iGf -xAR -uYg -vsh -oPf -vsh -uYg -xAR -iGf -eSl -wiY -odo -pYl -eZm -egN -rvu -xVN -vJR -xVN -csg -uCQ -mQw -eZm -eLx -eQh -pql -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dKL -aVo -aWp -aWZ -rUX -icx -sqg -pLV -eTb -rjs -iwf -uFg -rEm -vkV -rGb -rGb -cvS -tEI -nBu -rGb -rGb -dTk -vXo -gWu -xMl -hGz -eTb -pLV -sqg -fFV -ezC -ggQ -afk -bML -dKL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(254,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -uMc -fKs -rtd -stS -aqZ -aqZ -aqZ -aqZ -aqZ -iKx -xJc -hAe -fLl -fLl -wRk -eky -wZX -vUh -aHe -oxU -bsy -vzU -gzw -shh -aHe -svf -wZX -eky -wuk -eZm -eZm -sAr -xvK -xVN -ksw -ksw -ksw -ksw -ksw -uJD -uWV -eQh -pql -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dKL -afk -afk -ggQ -fNU -nBh -sqg -ppM -eTb -bik -bwb -elx -jnI -oJk -sns -sKu -vOW -uxF -aEt -roL -ifm -oJk -nYn -elx -bWm -xKX -eTb -ppM -sqg -mJb -qLh -aWZ -bLC -afk -dKL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(255,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -cuC -pae -kYh -fLl -fLl -fLl -fLl -sEH -aqZ -aqZ -aqZ -aqZ -aqZ -stS -mzZ -myT -gJB -fCa -aHe -aHe -aHe -aHe -aHe -aHe -aHe -myT -gJB -fCa -mzZ -uJD -ksw -ksw -rHB -ksw -vJR -eIp -eZm -eZm -eZm -eZm -lKz -ydG -bYn -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dKL -dKL -aep -aep -qWo -icx -sqg -ppM -eTb -hsy -hsy -iGX -vGS -hsy -ldc -lNR -lNR -lNR -lNR -lNR -ldc -hsy -ogG -cha -hsy -hsy -eTb -eUe -sqg -dPJ -arS -aep -aep -dKL -dKL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(256,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -cuC -fKs -ugi -kPA -jTE -bPe -gJF -gJF -gJF -gJF -gJF -gJF -gJF -gJF -aPw -gon -mhG -xww -giC -aHe -xya -eSi -mmo -aHe -auC -iZL -dPC -xrQ -aPw -wxy -wxy -wxy -wxy -wxy -wxy -wxy -wxy -phe -dZq -iWm -pjq -eQh -bYn -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -vgw -xtF -mqA -gSP -iKF -sqg -ppM -ppM -hsy -tWK -vlL -ubb -hsy -jFi -cEa -cEa -eoJ -cEa -cEa -jFi -hsy -jgP -vlL -ewu -hsy -pLV -ppM -sqg -iKF -elq -oHX -bQi -vgw -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(257,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -cuC -vnJ -ayJ -uhM -wZM -wSK -cuC -aag -aag -aag -aag -aag -aag -aag -aPw -gEb -jjV -oBu -wiY -uEz -gDV -gDV -gDV -uEz -wiY -dDV -jjV -fLe -aPw -aag -aag -aag -aag -aag -aag -aag -bYn -vQi -igD -rDb -oHw -qmT -bYn -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -vgw -ckW -vgw -vgw -vgw -vgw -pLV -pLV -hsy -oFO -vlL -ubb -wzx -pEg -ceF -ceF -ceF -ceF -ceF -vZR -wzx -jgP -vlL -oFO -hsy -gwy -fgY -vgw -vgw -vgw -vgw -ckW -vgw -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(258,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -cuC -cuC -mhe -win -eNJ -cuC -cuC -ndN -ndN -ndN -ndN -ndN -ndN -qry -aPw -aPw -myT -gJB -fCa -gon -wiY -arV -wiY -xrQ -myT -gJB -fCa -aPw -aPw -ndN -ndN -ndN -ndN -ndN -ndN -iCN -bYn -bYn -apP -uLo -qmT -bYn -bYn -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -rfm -bUu -aag -aag -aag -nic -tmQ -ppM -hsy -bRM -tgE -oGJ -heu -iss -ojs -hjq -hjq -hjq -uwa -wuX -ekB -uqh -rpq -eTv -hsy -iWa -fZR -nic -aag -aag -aag -bUu -jQR -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(259,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -taM -cuC -onR -rtd -wpd -cuC -xOa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -taM -aPw -fNj -mhG -oCd -ies -iGf -oPf -iGf -oCd -ies -dPC -dFe -aPw -xOa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -taM -bYn -nBl -uWV -eQh -bYn -xOa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -nic -pLV -pLV -hsy -qgP -vlL -rae -gtM -rXG -wTD -cEa -cEa -cEa -cdN -rXG -nBC -xNf -vlL -sHy -hsy -pLV -pLV -nic -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(260,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -taM -cuC -xaL -ngU -wlx -cuC -xOa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -taM -aPw -gEb -vUK -fLe -gon -eky -hHF -eky -xrQ -gEb -vUK -fLe -aPw -xOa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -taM -bYn -xgw -uWV -eQh -bYn -xOa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -nic -ppM -ppM -hsy -kTx -alz -oGJ -pjY -xBU -aFM -wrF -cEa -hCx -yjF -tCA -foe -uqh -eDW -sHy -hsy -pLV -pLV -nic -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(261,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -taM -uMc -toy -iEr -fTB -uMc -xOa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -taM -aPw -aHe -aHe -aHe -qCb -eky -wZX -eky -kIN -aHe -aHe -aHe -aPw -xOa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -taM -pql -xgw -fCL -eQh -pql -xOa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -nic -pLV -ppM -hsy -hsy -dKm -ubb -vlL -nmB -uwa -wTD -cEa -cdN -vRN -wpJ -vlL -jgP -sHy -hsy -hsy -ppM -eUe -nic -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(262,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -taM -uMc -wMA -iEr -wpd -uMc -xOa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -taM -aPw -aHe -aHe -aHe -gon -eky -wZX -eky -xrQ -aHe -aHe -aHe -aPw -xOa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -taM -pql -xgw -fCL -eQh -pql -xOa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -nic -pLV -pLV -pLV -hsy -uRB -ubb -hsy -rjD -cdN -wTD -cEa -cdN -wTD -cEa -hsy -jZn -uRB -hsy -fYg -pLV -pLV -nic -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(263,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -taM -uMc -lVF -iEr -wpd -uMc -xOa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -taM -jbq -fgK -bCi -gDV -rRO -eky -aNl -eky -jUD -gDV -oVr -fgK -jbq -xOa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -taM -pql -xgw -fCL -eQh -pql -xOa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -nic -ppM -ppM -ppM -hsy -pjt -nLv -hsy -jiv -cdN -nfE -ceF -yjF -wTD -qYV -hsy -gCr -pjt -hsy -uka -ppM -uka -nic -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(264,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -taM -cuC -swT -rtd -xqg -cuC -xOa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -taM -jbq -agP -kfT -eky -eky -nJu -aNl -eky -eky -eky -nol -agP -jbq -xOa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -taM -bYn -xgw -uWV -epK -bYn -xOa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -nic -nic -cvT -pLV -hsy -pjt -ubb -hsy -cEa -gTT -xBU -rXG -ntJ -iSr -cEa -hsy -jgP -pjt -hsy -gwy -piJ -nic -nic -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(265,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -cuC -cuC -vsT -rtd -wpd -cuC -nan -xVk -xVk -xVk -xVk -xVk -xVk -xVk -mQq -aPw -aHe -kbd -eky -eky -eky -aNl -eky -eky -eky -nnj -aHe -aPw -mQq -xVk -xVk -xVk -xVk -xVk -xVk -xVk -snC -bYn -xgw -uWV -eQh -bYn -bYn -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -nic -gwy -fgY -hsy -hsy -fRT -hsy -hsy -ohP -wDW -dcb -rXc -tCr -hsy -hsy -oOY -hsy -hsy -xDL -ppM -nic -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(266,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -aaa -uMc -urV -gCl -igL -mym -jIc -uEt -xVk -xVk -xVk -xVk -xVk -xVk -xVk -dej -lmQ -myT -gDV -fCa -eky -eky -aNl -eky -eky -myT -gDV -fCa -meP -vxI -xVk -xVk -xVk -xVk -xVk -xVk -xVk -nGA -hzW -mHN -vGm -dCw -bvG -pql -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -nic -pLV -vsi -hsy -gjL -sIr -lgU -koD -hMz -pAm -gzq -pAm -qzv -fQR -nOy -hfb -wxg -hsy -ppM -fZR -nic -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(267,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -aaa -uMc -iAe -cqh -iEr -wpd -pae -uEt -xVk -xVk -xVk -xVk -xVk -xVk -xVk -dej -dwO -gon -arV -xrQ -ssX -vsh -iPD -vsh -fCp -gon -arV -xrQ -dwO -vxI -xVk -xVk -xVk -xVk -xVk -xVk -xVk -nGA -kie -xgw -fCL -xSt -kcP -pql -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -nic -ppM -ppM -hsy -oQo -sIr -pAm -pAm -pAm -pAm -gzq -pAm -pAm -pAm -pAm -sIr -dhc -hsy -mxV -pLV -nic -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(268,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -aaa -uMc -mmg -lqA -rbg -gLA -pae -uEt -xVk -xVk -xVk -xVk -xVk -xVk -xVk -dej -dwO -gEb -jjV -fLe -nkn -lyw -iZg -lyw -nkn -gEb -jjV -fLe -dwO -vxI -xVk -xVk -xVk -xVk -xVk -xVk -xVk -nGA -kie -gvy -hyq -pIL -nzZ -pql -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -nic -pLV -pLV -hsy -gxf -soc -bVv -bVv -xTu -gzq -gzq -gzq -ern -bVv -bVv -qez -cYQ -hsy -ppM -lbK -nic -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(269,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -aaa -cuC -ptK -taN -iEr -fel -cuC -keT -xVk -xVk -xVk -xVk -xVk -xVk -xVk -tUw -aPw -xdv -wiY -wiY -uqI -aHe -aHe -aHe -rdh -wiY -wiY -tOh -aPw -tUw -xVk -xVk -xVk -xVk -xVk -xVk -xVk -lPF -bYn -lOl -fCL -wWG -jWh -bYn -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -nic -ppM -ppM -hsy -tNJ -nzS -pAm -pAm -jKX -pAm -pAm -pAm -pAm -pAm -pAm -dhc -psj -hsy -pLV -pLV -nic -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(270,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -aaa -cuC -ptK -hIC -iEr -aJd -cuC -nan -xVk -xVk -xVk -xVk -xVk -xVk -xVk -mQq -aPw -pWQ -wiY -wiY -eky -aHe -aHe -aHe -eky -wiY -wiY -kDC -aPw -mQq -xVk -xVk -xVk -xVk -xVk -xVk -xVk -snC -bYn -xfD -fCL -noi -jWh -bYn -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -nic -pLV -pLV -hsy -bFF -nzS -pAm -pAm -hsy -gjY -gjY -gjY -hsy -gDH -pAm -dhc -jSP -hsy -ppM -ppM -nic -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(271,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -aaa -uMc -rJo -gCl -fFZ -mym -mEO -uEt -xVk -xVk -xVk -xVk -xVk -xVk -xVk -dej -bbv -myT -gDV -fCa -eky -fRC -lFe -fRC -eky -myT -gDV -fCa -dPU -vxI -xVk -xVk -xVk -xVk -xVk -xVk -xVk -nGA -hEz -mHN -vGm -dCw -lVi -pql -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -nic -ppM -ppM -hsy -cAu -xKR -dJq -pAm -hsy -jUA -iRr -lZr -hsy -pAm -dJq -iOg -cAu -hsy -pLV -pLV -nic -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(272,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -aaa -uMc -vtk -llj -kNk -kOG -pae -uEt -xVk -xVk -xVk -xVk -xVk -xVk -xVk -dej -dwO -gon -arV -xrQ -arV -arV -arV -arV -arV -gon -arV -xrQ -dwO -vxI -xVk -xVk -xVk -xVk -xVk -xVk -xVk -nGA -kie -xgw -fCL -xSt -fIc -pql -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aKQ -bdH -bdH -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -nic -pLV -ppM -hsy -hsy -hsy -hsy -nWj -hsy -hsy -hsy -hsy -hsy -nWj -hsy -hsy -hsy -hsy -ppM -ppM -nic -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(273,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -aaa -uMc -wSr -oAi -dbz -gLA -pae -uEt -xVk -xVk -xVk -xVk -xVk -xVk -xVk -dej -dwO -gEb -jjV -fLe -eky -eky -eky -eky -eky -gEb -jjV -fLe -dwO -vxI -xVk -xVk -xVk -xVk -xVk -xVk -xVk -nGA -kie -gvy -iyV -pIL -upP -pql -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -bdH -bdH -bdH -bdH -bdH -bdH -aKQ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aak -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -nic -pLV -ppM -csd -vFl -hsy -brg -cdN -rXG -gou -nvi -gou -rXG -wTD -brg -hsy -vFl -tZv -pLV -pLV -nic -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(274,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -aaa -cuC -cuC -hfo -sIb -ifZ -cuC -keT -xVk -xVk -xVk -xVk -xVk -xVk -xVk -tUw -aPw -aHe -dQF -eky -eky -atg -aBE -ouB -eky -eky -hoe -aHe -aPw -tUw -xVk -xVk -xVk -xVk -xVk -xVk -xVk -lPF -bYn -cRX -ckJ -lzL -bYn -bYn -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aKQ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aak -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -nic -pLV -pLV -pLV -pLV -hsy -brg -tcG -hjq -hjq -hjq -hjq -hjq -cUK -brg -hsy -hSZ -pLV -pLV -pLV -nic -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(275,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cuC -uMc -uMc -uMc -cuC -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -taM -jbq -mbZ -kfT -eky -eky -nOK -gIV -buw -eky -eky -nol -mbZ -jbq -xOa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -bYn -pql -pql -pql -bYn -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -iBn -iBn -iBn -iBn -iBn -iBn -iBn -iBn -iBn -iBn -iBn -iBn -iBn -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -nic -nic -mem -piJ -piJ -hsy -pOT -uSq -oIS -jCJ -xXX -jCJ -azu -uSq -pxH -hsy -apO -ppM -fZR -nic -nic -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(276,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -taM -jbq -pYl -kfT -eky -eky -dYg -eyP -sGh -eky -eky -nol -pYl -jbq -xOa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -aag -nic -pLV -ppM -uQJ -hsy -hsy -hsy -hsy -hsy -hsy -hsy -hsy -hsy -hsy -hsy -pLV -pLV -pLV -nic -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(277,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -taM -aPw -aul -gDm -yav -eky -eig -avz -uya -eky -jjd -hpJ -aul -aPw -xOa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -aag -nic -pLV -ppM -pLV -ppM -puT -pLV -pVT -ppM -ppM -ppM -pVT -pLV -fwH -ppM -ppM -ppM -pLV -nic -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(278,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -taM -aPw -jbq -aPw -fNj -eky -atg -aBE -ouB -eky -dFe -aPw -jbq -aPw -xOa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -bdH -taM -aag -aag -aag -aag -gFP -gFP -qjZ -qjZ -qjZ -qjZ -mCc -qjZ -qjZ -qjZ -qjZ -qjZ -mCc -qjZ -qjZ -qjZ -qjZ -gFP -gFP -aag -aag -aag -aag -xOa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(279,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -rfm -bUu -aag -jbq -juB -jjV -jjV -jjV -jjV -jjV -tkb -jbq -aag -bUu -jQR -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -daz -vhe -qQS -cqm -kwr -qit -ebN -qQS -xTj -xCT -pbn -yfI -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -bdH -rfm -bUu -bUu -bUu -bUu -gFP -gFP -vDV -vDV -ihL -jvF -wlv -yjk -xJW -xjL -sei -nNF -wlv -jvF -jul -vDV -vDV -gFP -gFP -bUu -bUu -bUu -bUu -jQR -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(280,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -taM -aPw -aPw -jbq -jbq -jbq -jbq -jbq -aPw -aPw -xOa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -sbJ -sbJ -sbJ -daz -rna -wCY -qQS -sKY -qQS -the -khb -dDp -sVh -frM -kXe -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gFP -tBr -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -fxs -xtL -gFP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(281,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -rfm -bUu -bUu -bUu -bUu -bUu -bUu -bUu -bUu -bUu -jQR -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -lmz -lmz -lmz -lmz -lmz -daz -daz -daz -daz -daz -tte -hvw -auf -vHU -iYM -xDC -dIn -rby -the -euN -oUd -sEK -qBZ -kXe -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gFP -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -gFP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(282,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -lmz -lmz -lmz -lmz -daz -daz -hRW -vqv -vXh -daz -daz -kfU -daz -ebN -ebN -lfA -uVv -oMG -ebN -stx -tLX -tLX -oTT -bRq -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gFP -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -gFP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(283,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -lmz -lmz -lmz -daz -daz -cfC -yaZ -cYJ -hZj -wCY -daz -daz -daz -aiP -ebN -ebN -cIv -ebN -daz -daz -daz -wnh -wnh -daz -daz -daz -lmz -lmz -lmz -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gFP -cvP -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -oum -gFP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(284,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -lmz -lmz -lmz -daz -jYH -ubA -cck -qiQ -fmv -ubA -gMN -vBn -fOD -nAn -wXc -lEx -vlg -lGW -lVV -qmG -una -bZq -bZq -mIi -mIi -daz -lmz -lmz -lmz -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -gFP -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -gFP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(285,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -lmz -lmz -lmz -daz -cwS -gBn -rke -tiq -gBn -gBn -gBn -ekQ -mGD -wCY -viB -dIi -qVj -hoE -lVV -sPC -mTo -swx -swx -rdo -gjv -daz -lmz -lmz -lmz -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -gFP -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -gFP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(286,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -lmz -lmz -lmz -daz -oRV -ydI -mdW -nBR -awu -ydI -aKs -sTB -fIY -qPN -kfu -mpI -oSt -kSZ -lVV -hTz -dDx -dpp -dpp -jgy -eii -daz -lmz -lmz -lmz -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -gFP -tBr -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -vDV -xtL -gFP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(287,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -lmz -lmz -lmz -daz -daz -cfC -yaZ -cYJ -hZj -dOt -daz -daz -daz -lJn -ebN -ebN -fVd -ebN -daz -daz -daz -wnh -wnh -daz -daz -daz -lmz -lmz -lmz -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -gFP -vDV -dzP -vDV -fsw -vDV -dzP -vDV -fsw -vDV -dzP -vDV -fsw -vDV -dzP -vDV -gFP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(288,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -lmz -lmz -lmz -lmz -daz -daz -ocB -ufb -rnH -daz -daz -iFL -daz -ebN -ebN -nSn -uVv -tor -ebN -qQS -tLX -tLX -gfu -tLX -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(289,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -lmz -lmz -lmz -lmz -lmz -daz -daz -daz -daz -daz -tte -hvw -auf -hTl -jrH -xDC -yaQ -vLz -iEn -kSy -sVh -dDp -jKi -kXe -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(290,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -bdH -lmz -lmz -lmz -daz -daz -daz -daz -daz -sbJ -sbJ -sbJ -daz -rna -uTh -qQS -aCd -qQS -iEn -jYX -sEK -oUd -mlb -kXe -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(291,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -bdH -lmz -lmz -lmz -daz -hWM -hWM -hWM -ebN -daz -jvE -cxN -daz -eyn -itg -gba -kFa -our -ebN -cxc -tLX -tLX -bzT -mMN -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(292,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -bdH -lmz -lmz -lmz -daz -hWM -fzs -hWM -ebN -baO -ltc -ltc -daz -ebN -jqo -ebN -daz -daz -daz -daz -daz -daz -daz -daz -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(293,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -mON -hWM -qQS -hWM -ebN -baO -fzs -qQS -ebN -ghW -itg -qQS -daz -daz -daz -daz -daz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(294,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -vVk -eKK -fzs -hWM -ebN -baO -qQS -mIJ -vLu -xDC -yaQ -mTo -xIR -irr -irr -xsi -daz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(295,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -fhR -cBz -qNT -qQS -keo -qQS -qQS -epW -bUZ -qQS -qQS -pUg -tuR -cFg -mKp -xsi -daz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(296,1,1) = {" -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -bdH -bdH -bdH -bdH -iwn -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -bdH -bdH -bdH -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -"} -(297,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aKQ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(298,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aKQ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(299,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -jRz -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(300,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} diff --git a/maps/map_files/USS_Almayer/sprinkles/.gitkeep b/maps/map_files/USS_Almayer/sprinkles/.gitkeep deleted file mode 100644 index 8b137891791f..000000000000 --- a/maps/map_files/USS_Almayer/sprinkles/.gitkeep +++ /dev/null @@ -1 +0,0 @@ - From 3fc4a5d61ce4d22b934c10713e1e0818bed4915e Mon Sep 17 00:00:00 2001 From: forest2001 Date: Sat, 7 Sep 2024 22:20:37 +0100 Subject: [PATCH 15/17] MAYBE THIS WILL WORK? --- maps/map_files/BigRed/BigRed.dmm | 88166 ++++++++++ .../BigRed/sprinkles/10.prison_breakout.dmm | 1899 + .../BigRed/sprinkles/10.tcomms_open.dmm | 249 + .../BigRed/sprinkles/15.reactor_meltdown.dmm | 2042 + .../BigRed/sprinkles/20.etatunnel_open.dmm | 1342 + .../BigRed/sprinkles/20.lz1entrance_v2.dmm | 994 + .../BigRed/sprinkles/20.lz1north_mining.dmm | 244 + .../BigRed/sprinkles/25.chapel_cult.dmm | 512 + .../sprinkles/25.containerroom_xenos.dmm | 357 + .../BigRed/sprinkles/25.lz1cave_flank.dmm | 288 + .../sprinkles/25.lz1containers_scramble.dmm | 732 + .../BigRed/sprinkles/25.vault_v2.dmm | 546 + .../BigRed/sprinkles/30.cargo_containers.dmm | 1051 + .../BigRed/sprinkles/30.viro-rock_open.dmm | 150 + .../sprinkles/35.filtration_restored.dmm | 1392 + .../BigRed/sprinkles/40.admin_pmc.dmm | 668 + .../BigRed/sprinkles/40.dorms_party.dmm | 578 + .../BigRed/sprinkles/40.viro_open.dmm | 650 + .../map_files/BigRed/sprinkles/5.eta_carp.dmm | 388 + .../BigRed/sprinkles/70.se-checkpoint.dmm | 530 + .../BigRed/standalone/crashlanding-eva.dmm | 1843 + .../standalone/crashlanding-offices.dmm | 1917 + .../standalone/lambda-cave_extratunnel.dmm | 297 + .../standalone/lambda-cave_mushroom.dmm | 271 + .../BigRed/standalone/lambda-graveyard.dmm | 292 + .../BigRed/standalone/medbay-passage.dmm | 130 + .../map_files/BigRed/standalone/medbay-v3.dmm | 2231 + maps/map_files/CORSAT/Corsat.dmm | 108968 ++++++++++++ maps/map_files/CORSAT/sprinkles/.gitkeep | 1 + .../standalone/lockdown_gammacontrol.dmm | 90 + .../CORSAT/standalone/lockdown_gammanorth.dmm | 96 + .../CORSAT/standalone/lockdown_highsec.dmm | 538 + .../standalone/lockdown_thetacontrol.dmm | 90 + .../CORSAT/standalone/lockdown_thetaeast.dmm | 93 + .../map_files/CORSAT/standalone/sigma_ice.dmm | 8669 + .../FOP_v3_Sciannex/Fiorina_SciAnnex.dmm | 85552 ++++++++++ .../FOP_v3_Sciannex/sprinkles/.gitkeep | 1 + .../sprinkles/10.podholder.dmm | 175 + .../sprinkles/10.scavshipholder.dmm | 977 + .../sprinkles/15.birthdayparty.dmm | 211 + .../FOP_v3_Sciannex/sprinkles/15.nogear.dmm | 287 + .../sprinkles/15.wardenofficedecorated.dmm | 210 + .../sprinkles/20.gamertime.dmm | 584 + .../sprinkles/20.poolparty.dmm | 1791 + .../sprinkles/20.yardbasketball.dmm | 337 + .../sprinkles/25.researchprestine.dmm | 1100 + .../sprinkles/30.engineeroffice.dmm | 247 + .../sprinkles/30.pizzatime.dmm | 430 + .../sprinkles/30.repairpanelslz.dmm | 402 + .../sprinkles/unused/20.medicalhold.dmm | 934 + .../standalone/riot_in_progress.dmm | 1966 + maps/map_files/USS_Almayer/USS_Almayer.dmm | 129482 +++++++++++++++ maps/map_files/USS_Almayer/sprinkles/.gitkeep | 1 + 53 files changed, 452991 insertions(+) create mode 100644 maps/map_files/BigRed/BigRed.dmm create mode 100644 maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm create mode 100644 maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm create mode 100644 maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm create mode 100644 maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm create mode 100644 maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm create mode 100644 maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm create mode 100644 maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm create mode 100644 maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm create mode 100644 maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm create mode 100644 maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm create mode 100644 maps/map_files/BigRed/sprinkles/25.vault_v2.dmm create mode 100644 maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm create mode 100644 maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm create mode 100644 maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm create mode 100644 maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm create mode 100644 maps/map_files/BigRed/sprinkles/40.dorms_party.dmm create mode 100644 maps/map_files/BigRed/sprinkles/40.viro_open.dmm create mode 100644 maps/map_files/BigRed/sprinkles/5.eta_carp.dmm create mode 100644 maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm create mode 100644 maps/map_files/BigRed/standalone/crashlanding-eva.dmm create mode 100644 maps/map_files/BigRed/standalone/crashlanding-offices.dmm create mode 100644 maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm create mode 100644 maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm create mode 100644 maps/map_files/BigRed/standalone/lambda-graveyard.dmm create mode 100644 maps/map_files/BigRed/standalone/medbay-passage.dmm create mode 100644 maps/map_files/BigRed/standalone/medbay-v3.dmm create mode 100644 maps/map_files/CORSAT/Corsat.dmm create mode 100644 maps/map_files/CORSAT/sprinkles/.gitkeep create mode 100644 maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm create mode 100644 maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm create mode 100644 maps/map_files/CORSAT/standalone/lockdown_highsec.dmm create mode 100644 maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm create mode 100644 maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm create mode 100644 maps/map_files/CORSAT/standalone/sigma_ice.dmm create mode 100644 maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm create mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/.gitkeep create mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/10.podholder.dmm create mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm create mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm create mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm create mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm create mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm create mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm create mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/20.yardbasketball.dmm create mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm create mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm create mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm create mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm create mode 100644 maps/map_files/FOP_v3_Sciannex/sprinkles/unused/20.medicalhold.dmm create mode 100644 maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm create mode 100644 maps/map_files/USS_Almayer/USS_Almayer.dmm create mode 100644 maps/map_files/USS_Almayer/sprinkles/.gitkeep diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm new file mode 100644 index 000000000000..ec03a01d7633 --- /dev/null +++ b/maps/map_files/BigRed/BigRed.dmm @@ -0,0 +1,88166 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/open/space, +/area/space) +"aab" = ( +/turf/closed/shuttle{ + dir = 1; + icon_state = "pwall" + }, +/area/space) +"aad" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_north) +"aae" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port) +"aaf" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"aag" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port) +"aah" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aai" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port) +"aaj" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port) +"aak" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port) +"aal" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port) +"aam" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"aan" = ( +/obj/effect/landmark/crap_item, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"aao" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"aap" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"aaq" = ( +/obj/structure/sign/safety/hazard, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port) +"aar" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"aas" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"aat" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"aau" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Communications Landing Zone" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aav" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"aaw" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/space_port) +"aax" = ( +/obj/structure/filingcabinet, +/obj/structure/sign/safety/hvac{ + pixel_x = -32 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"aay" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"aaz" = ( +/obj/structure/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"aaA" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/structure/machinery/recharge_station, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"aaB" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/telecomm/n_cave) +"aaC" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"aaD" = ( +/obj/structure/prop/tower, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port) +"aaE" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"aaF" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aaG" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"aaH" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aaI" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aaJ" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aaK" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"aaL" = ( +/obj/structure/closet/firecloset, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"aaN" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"aaO" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"aaP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"aaQ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"aaR" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"aaS" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"aaT" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"aaU" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aaV" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"aaW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Spaceport" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/space_port) +"aaX" = ( +/obj/structure/closet/secure_closet/injection, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aaY" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"aaZ" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"aba" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"abc" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"abf" = ( +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"abg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"abh" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/door_control{ + id = "Spaceport"; + name = "Storm Shutters"; + pixel_x = 32 + }, +/obj/item/tool/pen, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"abi" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"abj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"abk" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"abl" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"abm" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"abn" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"abo" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"abp" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"abq" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_north) +"abr" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_north) +"abs" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_north) +"abt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"abu" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"abv" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"abw" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"abx" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Spaceport"; + name = "\improper Spaceport Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aby" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/landing/console) +"abA" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"abB" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"abC" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"abD" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"abE" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/outside/space_port) +"abF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"abG" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"abH" = ( +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/obj/structure/surface/table, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"abI" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"abJ" = ( +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"abK" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/outside/space_port) +"abM" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_north) +"abN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"abO" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_north) +"abP" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"abQ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"abR" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Spaceport"; + name = "\improper Spaceport Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"abS" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"abT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"abV" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_north) +"abW" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/e) +"abY" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_north) +"abZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"aca" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"acb" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_north) +"acd" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"ace" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"acf" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"acg" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"ach" = ( +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"acj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"acl" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"acm" = ( +/obj/item/tool/pickaxe, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) +"acn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aco" = ( +/obj/item/shard, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"acp" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/marshal_office) +"acq" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Marshal Offices"; + name = "\improper Marshal Offices Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"acr" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/marshal_office) +"acs" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/window_frame/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"acu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"acv" = ( +/obj/structure/filingcabinet/security, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"acw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"acx" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"acz" = ( +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) +"acA" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/telecomm) +"acC" = ( +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"acD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"acF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"acH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"acI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"acJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"acK" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"acM" = ( +/obj/structure/surface/table, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"acP" = ( +/turf/open/mars, +/area/bigredv2/outside/n) +"acQ" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/telecomm) +"acR" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Telecommunications" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/telecomm) +"acS" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"acT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"acU" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"acV" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"acX" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"acY" = ( +/obj/structure/surface/table, +/obj/item/folder/black, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"acZ" = ( +/turf/open/floor/greengrid, +/area/bigredv2/outside/telecomm) +"ada" = ( +/mob/living/simple_animal/hostile/retaliate/clown{ + desc = "Always returning. Always watching."; + health = 10000; + move_to_delay = 2; + name = "Gonzo the Magnificent"; + rapid = 1 + }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_2, +/area/space) +"adb" = ( +/obj/structure/surface/table, +/obj/item/tool/hand_labeler, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"adc" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/head/det_hat, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"add" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"ade" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"adf" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"adg" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"adh" = ( +/turf/open/floor/darkish, +/area/bigredv2/outside/marshal_office) +"adi" = ( +/obj/item/shard, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"adj" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"adk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"adl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/space_port) +"adm" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"adr" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"ads" = ( +/obj/structure/surface/table, +/obj/item/folder/yellow, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"adt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"adu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"adv" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"adw" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"ady" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkish, +/area/bigredv2/outside/marshal_office) +"adz" = ( +/obj/structure/window/framed/solaris/reinforced/tinted, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"adA" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"adB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"adC" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"adD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/marshal_office) +"adE" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"adG" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/structure/window_frame/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"adH" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"adI" = ( +/obj/structure/surface/table, +/obj/item/tool/extinguisher, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"adJ" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"adL" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"adN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"adO" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"adP" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"adQ" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"adR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"adS" = ( +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"adT" = ( +/obj/structure/closet/secure_closet/marshal, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/floor4, +/area/bigredv2/outside/marshal_office) +"adW" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"adZ" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/lambda/xenobiology) +"aea" = ( +/obj/structure/machinery/computer/telecomms/monitor{ + req_one_access_txt = "19;200" + }, +/obj/structure/transmitter/colony_net{ + dir = 4; + phone_category = "Solaris Ridge"; + phone_color = "yellow"; + phone_id = "Communications"; + pixel_x = -18 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"aeb" = ( +/obj/item/device/radio/headset, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"aec" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Telecommunications" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/telecomm) +"aed" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"aee" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"aef" = ( +/obj/structure/surface/table, +/obj/item/device/radio/headset, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"aeg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"aeh" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port) +"aei" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port) +"aej" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port) +"aek" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port) +"ael" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aem" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"aen" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"aeo" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Marshal Office Prison Toilet" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"aep" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aeq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/stool, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aer" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"aes" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/cameras/wooden_tv, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"aeu" = ( +/obj/item/clothing/accessory/storage/holster/armpit, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"aev" = ( +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"aew" = ( +/obj/structure/closet/crate/internals, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"aex" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"aey" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whiteyellow/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"aez" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whiteyellow/north, +/area/bigredv2/caves/lambda/xenobiology) +"aeA" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/whiteyellow/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"aeB" = ( +/obj/structure/machinery/computer/telecomms/server{ + req_one_access_txt = "19;200" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"aeC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"aeD" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"aeE" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/xenobiology) +"aeF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aeG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aeH" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aeI" = ( +/turf/open/mars, +/area/bigredv2/outside/nw) +"aeJ" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"aeK" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"aeL" = ( +/obj/structure/bed, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"aeM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"aeN" = ( +/obj/structure/bed/stool, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aeO" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/recharger, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"aeP" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/flask/detflask, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"aeQ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitepurple/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"aeS" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"aeT" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"aeU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"aeV" = ( +/obj/structure/closet/crate/radiation, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"aeW" = ( +/turf/open/floor/whiteyellow/west, +/area/bigredv2/caves/lambda/xenobiology) +"aeX" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull, +/area/bigredv2/caves/lambda/xenobiology) +"aeY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/lambda/xenobiology) +"aeZ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/whiteyellowcorner/east, +/area/bigredv2/caves/lambda/xenobiology) +"afa" = ( +/obj/structure/closet/secure_closet/chemical, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whiteyellow/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"afb" = ( +/obj/structure/machinery/computer/telecomms/traffic{ + req_one_access_txt = "19;200" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"afc" = ( +/obj/item/folder/yellow, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"afd" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"aff" = ( +/obj/effect/decal/cleanable/mucus, +/obj/structure/surface/table, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"afg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"afi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office Isolation" + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"afj" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"afk" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"afl" = ( +/obj/structure/machinery/flasher/portable, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"afm" = ( +/obj/structure/closet/l3closet/security, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"afn" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"afr" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/closet/bombclosetsecurity, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"afs" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"aft" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/hemostat, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"afu" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"afv" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "tcomms"; + name = "\improper Telecommunications Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/telecomm) +"afw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"afx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"afy" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"afz" = ( +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/research) +"afA" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"afB" = ( +/obj/structure/machinery/smartfridge/chemistry, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"afC" = ( +/obj/structure/foamed_metal, +/turf/open/floor/whiteyellow/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"afD" = ( +/obj/item/device/mass_spectrometer/adv, +/obj/structure/foamed_metal, +/turf/open/floor/whiteyellow, +/area/bigredv2/caves/lambda/xenobiology) +"afE" = ( +/turf/open/floor/whiteyellow, +/area/bigredv2/caves/lambda/xenobiology) +"afF" = ( +/obj/structure/machinery/light, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/lambda/xenobiology) +"afG" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/whiteyellow/southeast, +/area/bigredv2/caves/lambda/xenobiology) +"afH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"afI" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/door_control{ + id = "tcomms"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"afJ" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"afL" = ( +/obj/structure/showcase{ + icon_state = "broadcaster_send" + }, +/turf/open/floor/greengrid, +/area/bigredv2/outside/telecomm) +"afM" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/space_port) +"afO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"afP" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"afQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"afS" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"afT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"afU" = ( +/obj/structure/closet/bombclosetsecurity, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"afV" = ( +/obj/structure/closet/secure_closet/marshal, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/floor4, +/area/bigredv2/outside/marshal_office) +"afW" = ( +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"afX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) +"afY" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves/lambda/xenobiology) +"afZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves/lambda/xenobiology) +"aga" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"agb" = ( +/obj/item/reagent_container/blood/OMinus, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"agc" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"agd" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"age" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Lambda Lab Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"agf" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/obj/structure/foamed_metal, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "chem_lock"; + name = "\improper Chemistry Lockdown" + }, +/turf/open/floor/whiteyellowfull, +/area/bigredv2/caves/lambda/xenobiology) +"agg" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Lambda Lab Chemistry Lab" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"agh" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"agi" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"agj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"agk" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/structure/machinery/door/window, +/obj/structure/window/reinforced, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"agl" = ( +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"agm" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves_north) +"agn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"ago" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/space_port) +"agq" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/n) +"ags" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/n) +"agt" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"agu" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/nw) +"agv" = ( +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/space_port) +"agw" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/space_port) +"agx" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/space_port) +"agy" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Marshal Offices"; + name = "\improper Marshal Offices Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"agz" = ( +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"agA" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"agB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"agC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"agD" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"agH" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"agJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Head Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"agK" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"agL" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/shard, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"agM" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Surgery" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"agN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/obj/item/shard{ + icon_state = "small" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"agO" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"agP" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"agQ" = ( +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/xenobiology) +"agS" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/xenobiology) +"agT" = ( +/obj/structure/sign/safety/chem_lab{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/xenobiology) +"agU" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/lambda/xenobiology) +"agV" = ( +/obj/structure/foamed_metal, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/lambda/xenobiology) +"agW" = ( +/obj/structure/foamed_metal, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"agX" = ( +/obj/structure/foamed_metal, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/xenobiology) +"agY" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"agZ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"aha" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"ahb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"ahc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"ahd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"ahe" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/n) +"ahf" = ( +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"ahi" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/nw) +"ahj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"ahk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ahl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ahm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ahn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ahp" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"ahr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"ahs" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aht" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ahu" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ahv" = ( +/obj/structure/surface/table/holotable/wood, +/obj/item/paper_bin, +/obj/item/tool/pen/clicky, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"ahw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"ahx" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"ahy" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"ahz" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/scalpel/manager, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves/lambda/xenobiology) +"ahA" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"ahB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Surgery" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"ahC" = ( +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"ahD" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"ahE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = -32 + }, +/obj/structure/machinery/light, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"ahF" = ( +/obj/structure/closet/hydrant{ + pixel_y = -32 + }, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"ahG" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"ahH" = ( +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/breakroom) +"ahI" = ( +/obj/structure/foamed_metal, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"ahJ" = ( +/obj/structure/foamed_metal, +/obj/structure/machinery/light, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"ahK" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/space_port) +"ahL" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/xenobiology) +"ahM" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Lambda Lab Cell" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"ahN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/telecomm) +"ahO" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/nw) +"ahP" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"ahQ" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/nw) +"ahR" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"ahS" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"ahT" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/nw) +"ahV" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/nw) +"ahX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/outside/nw) +"aia" = ( +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"aib" = ( +/obj/structure/machinery/light, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"aic" = ( +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"aid" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"aie" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/good_item, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"aif" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"aig" = ( +/turf/open/mars_cave/mars_cave_4, +/area/bigredv2/caves_lambda) +"aih" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Armory" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"aii" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Equipment" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"aij" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"aik" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/retractor, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"ail" = ( +/obj/structure/bed/roller, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"ain" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Lambda Lab Maintenance" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"aio" = ( +/turf/open/floor/darkpurplecorners2/west, +/area/bigredv2/caves/lambda/xenobiology) +"aiq" = ( +/obj/structure/largecrate/random, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"air" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"ais" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"ait" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"aiu" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 30 + }, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"aiv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/telecomm) +"aiw" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/nw) +"aiz" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/nw) +"aiA" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/nw) +"aiB" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/nw) +"aiC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office Brig" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"aiD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"aiE" = ( +/obj/structure/closet/secure_closet/marshal, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"aiJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"aiK" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"aiO" = ( +/obj/structure/bed/chair, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aiP" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aiQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"aiR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkpurplecorners2/west, +/area/bigredv2/caves/lambda/xenobiology) +"aiS" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"aiT" = ( +/obj/structure/pipes/vents/scrubber/on, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/xenobiology) +"aiU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Lambda Lab Prison Restroom" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"aiV" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"aiW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"aiX" = ( +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"aiZ" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"aja" = ( +/obj/structure/surface/table, +/obj/item/ore/diamond, +/obj/item/ore/uranium, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"ajb" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/marshal_office) +"ajc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"ajd" = ( +/obj/structure/surface/table/holotable/wood, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Lambda Labs"; + phone_color = "blue"; + phone_id = "Administration" + }, +/obj/item/clothing/mask/cigarette{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"aje" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajk" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"ajl" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"ajm" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"ajn" = ( +/obj/structure/platform/shiva{ + dir = 1 + }, +/obj/structure/platform/shiva, +/obj/structure/machinery/light/small/built{ + dir = 8 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"ajp" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/darkpurplecorners2/west, +/area/bigredv2/caves/lambda/xenobiology) +"ajq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/xenobiology) +"ajr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Prisoner Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"ajs" = ( +/obj/structure/machinery/light, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"ajt" = ( +/obj/structure/bed/stool, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"aju" = ( +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"ajv" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"ajw" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 30 + }, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"ajx" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"ajy" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"ajz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"ajB" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"ajC" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"ajE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/marshal_office) +"ajF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westright, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"ajG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"ajJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"ajL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajM" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajO" = ( +/obj/structure/machinery/prop/almayer/computer/PC, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"ajQ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/recharger, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajT" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"ajU" = ( +/obj/structure/machinery/light/small, +/obj/structure/sign/safety/maint{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"ajV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Break Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"ajW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"aka" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"akc" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"ake" = ( +/obj/structure/surface/table, +/obj/item/ore/uranium, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"akh" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"akj" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Office Complex 2"; + name = "\improper Marshal Office Complex Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"akl" = ( +/obj/structure/sign/safety/hazard, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/telecomm) +"akm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"akn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"ako" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/general_offices) +"akp" = ( +/obj/structure/machinery/light, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"akq" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"akr" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aks" = ( +/obj/effect/landmark/good_item, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"akt" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aku" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Dormitories"; + name = "\improper Dormitories Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"akv" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"akw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"aky" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitepurple/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"akz" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/xenobiology) +"akA" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"akB" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/xenoautopsy, +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/xenobiology) +"akD" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"akE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"akF" = ( +/obj/structure/machinery/botany/editor, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitegreen_v/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"akG" = ( +/obj/structure/machinery/botany/extractor, +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/xenobiology) +"akH" = ( +/obj/structure/machinery/centrifuge, +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/xenobiology) +"akI" = ( +/obj/structure/machinery/mill, +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/xenobiology) +"akJ" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer/plant_analyzer, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitegreen_v/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"akK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"akL" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/general_offices) +"akM" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"akP" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/telecomm/n_cave) +"akQ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/southright, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"akR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"akS" = ( +/obj/structure/bed/chair, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"akT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"akU" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"akW" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/caves_north) +"akX" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_north) +"akY" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_north) +"akZ" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_north) +"ala" = ( +/turf/open/floor/whitepurple/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"alb" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/caves/lambda/xenobiology) +"alc" = ( +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"ald" = ( +/obj/structure/surface/table/reinforced, +/obj/item/book/manual/research_and_development, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"ale" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"alf" = ( +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/xenobiology) +"alg" = ( +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"alh" = ( +/obj/item/tool/hatchet, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"ali" = ( +/obj/item/reagent_container/spray/plantbgone, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"alj" = ( +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/caves/lambda/xenobiology) +"alk" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen_v/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"all" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/telecomm) +"aln" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/nw) +"alo" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/nw) +"alp" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Evidence Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"alr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"als" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"alt" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"alu" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/medical) +"alv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"alw" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/red/northeast, +/area/bigredv2/outside/marshal_office) +"alx" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"alz" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"alA" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"alB" = ( +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"alC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"alD" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Medical"; + name = "\improper Medical Storm Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"alF" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"alG" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/caves_north) +"alH" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves_north) +"alI" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_north) +"alJ" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_north) +"alK" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"alL" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/warnplate/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"alM" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/warnplate/north, +/area/bigredv2/caves/lambda/xenobiology) +"alN" = ( +/turf/open/floor/plating/warnplate/north, +/area/bigredv2/caves/lambda/xenobiology) +"alO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/warnplate/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"alP" = ( +/turf/open/floor/warnwhite/west, +/area/bigredv2/caves/lambda/xenobiology) +"alQ" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"alR" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"alS" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"alU" = ( +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"alV" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/grown/log, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"alW" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"alX" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/medical) +"alY" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/xenobiology) +"alZ" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Marshal Offices"; + name = "\improper Marshal Offices Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"ama" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/nw) +"amb" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"amd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"ame" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"amg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"amh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/closed/wall/solaris, +/area/bigredv2/outside/general_offices) +"amj" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"amk" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/lambda/breakroom) +"aml" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"amm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"amn" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/dorms) +"amp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"amq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/shoes/black, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"amr" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ams" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/red/east, +/area/bigredv2/outside/marshal_office) +"amu" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"amw" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"amx" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"amy" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"amz" = ( +/turf/open/floor/rampbottom/north, +/area/bigredv2/outside/marshal_office) +"amA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"amB" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"amC" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"amD" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/n) +"amE" = ( +/turf/open/floor/plating, +/area/bigredv2/caves_north) +"amG" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/caves_lambda) +"amH" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"amI" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Dormitories"; + name = "\improper Dormitories Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/dorms) +"amJ" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"amK" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/warnplate, +/area/bigredv2/caves/lambda/xenobiology) +"amL" = ( +/turf/open/floor/plating/warnplate, +/area/bigredv2/caves/lambda/xenobiology) +"amM" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/southeast, +/area/bigredv2/caves/lambda/xenobiology) +"amN" = ( +/obj/item/stool, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"amO" = ( +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"amP" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Xenobiology" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"amQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkgreen2/east, +/area/bigredv2/caves/lambda/xenobiology) +"amR" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Hydroponics" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"amS" = ( +/obj/item/grown/log, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"amT" = ( +/obj/effect/glowshroom, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"amU" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/xenobiology) +"amV" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Dormitories"; + name = "\improper Dormitories Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/dorms) +"amW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"amX" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/breakroom) +"amY" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + id = "sci_br"; + name = "\improper Lambda Observation Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/breakroom) +"amZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/closed/wall/solaris, +/area/bigredv2/outside/general_offices) +"anb" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"anc" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"and" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"anf" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ang" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper/Court, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"anh" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"ani" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "Office Complex 2"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"anj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave, +/area/bigredv2/caves_lambda) +"ank" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"anl" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"anm" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/powercell, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"ano" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Lambda Lab Maintenance Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"anp" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/nw/ceiling) +"anq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/xenobiology) +"ant" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Dormitories"; + name = "\improper Dormitories Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"anu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"anv" = ( +/obj/effect/glowshroom, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/xenobiology) +"anw" = ( +/obj/structure/sign/safety/bulkhead_door, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/lambda/breakroom) +"anx" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Holding Cell" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"any" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Checkpoint" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"anB" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"anD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"anE" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"anF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"anH" = ( +/obj/structure/bed/chair, +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"anI" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/lambda/research) +"anJ" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/bar) +"anK" = ( +/obj/structure/window_frame/solaris, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/dorms) +"anL" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/research) +"anM" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"anN" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"anO" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/warnplate/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"anP" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/warnplate/north, +/area/bigredv2/caves/lambda/xenobiology) +"anQ" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/warnplate/north, +/area/bigredv2/caves/lambda/xenobiology) +"anR" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"anS" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/warnwhite/west, +/area/bigredv2/caves/lambda/xenobiology) +"anT" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/hydroponics) +"anU" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Greenhouse"; + name = "\improper Greenhouse Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/hydroponics) +"anV" = ( +/obj/item/reagent_container/spray/pepper, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"anW" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/library) +"anX" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Greenhouse"; + name = "\improper Greenhouse Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/hydroponics) +"anY" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/hydroponics) +"anZ" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Medical"; + name = "\improper Medical Storm Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"aob" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/lambda/virology) +"aoc" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Library"; + name = "\improper Library Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/library) +"aod" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"aoe" = ( +/obj/item/explosive/grenade/custom/antiweed, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"aof" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/admin_building) +"aog" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/nw) +"aoh" = ( +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"aoi" = ( +/obj/structure/surface/table, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"aoj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aok" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"aol" = ( +/turf/open/floor/rampbottom, +/area/bigredv2/outside/marshal_office) +"aom" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/suit/storage/lawyer/bluejacket, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"aon" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"aoo" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"aop" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"aoq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"aou" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"aov" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"aox" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"aoy" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"aoz" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Bar Complex"; + name = "\improper Bar Complex Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"aoA" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"aoB" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"aoD" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/virology) +"aoE" = ( +/obj/item/stool, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"aoF" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"aoG" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/warnplate/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"aoH" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/general_store) +"aoI" = ( +/obj/item/tool/surgery/scalpel/laser/advanced, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"aoJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/oldresearch/Resin, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"aoK" = ( +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/breakroom) +"aoL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"aoM" = ( +/obj/item/tool/weedkiller, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"aoO" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/nw) +"aoP" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"aoQ" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"aoR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/medical{ + pixel_y = -32 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"aoT" = ( +/obj/structure/bed, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"aoU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"aoV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"aoX" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/camera, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"aoY" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"aoZ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"apa" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"apb" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/camera_film, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"apc" = ( +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"apd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"aph" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"apk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"apl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"apn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"apo" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"app" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"apq" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"apr" = ( +/obj/structure/surface/table, +/obj/item/tool/screwdriver, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"aps" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/machine/batteryrack, +/obj/item/stack/cable_coil/orange, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"apt" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "General Store"; + name = "\improper General Store Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/general_store) +"apu" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/general_store) +"apw" = ( +/turf/open/floor/whitepurplecorner/west, +/area/bigredv2/caves/lambda/xenobiology) +"apx" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/core, +/obj/item/shard, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"apy" = ( +/obj/effect/decal/cleanable/mucus, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"apz" = ( +/obj/item/grown/sunflower, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"apA" = ( +/turf/open/floor/whitegreencorner, +/area/bigredv2/caves/lambda/xenobiology) +"apB" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/xenobiology) +"apC" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/admin_building) +"apD" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Operations"; + name = "\improper Operations Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"apE" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"apF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"apG" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/virology) +"apH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"apJ" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Operations"; + name = "\improper Operations Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"apK" = ( +/obj/structure/bed/chair, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"apN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"apO" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"apQ" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/general_store) +"apR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"apS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"apT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"apU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"apW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"apX" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"apY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"apZ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/uranium{ + amount = 50 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"aqa" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) +"aqb" = ( +/obj/structure/surface/table, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"aqc" = ( +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"aqd" = ( +/obj/structure/xenoautopsy/tank/alien, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/whitepurple/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"aqe" = ( +/obj/structure/xenoautopsy/tank/larva, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/xenobiology) +"aqf" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/xenoautopsy/tank/broken, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/decal/warning_stripes, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/xenobiology) +"aqg" = ( +/obj/structure/xenoautopsy/tank/alien, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/xenobiology) +"aqh" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/obj/structure/xenoautopsy/tank/hugger, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/whitepurple/southeast, +/area/bigredv2/caves/lambda/xenobiology) +"aqi" = ( +/obj/structure/machinery/light/built{ + dir = 8 + }, +/obj/structure/pipes/vents/scrubber/on{ + dir = 4 + }, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"aqj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"aqk" = ( +/obj/structure/machinery/vending/hydroseeds, +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"aql" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/xenobiology) +"aqm" = ( +/obj/structure/machinery/biogenerator, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/xenobiology) +"aqn" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/xenobiology) +"aqo" = ( +/obj/structure/machinery/vending/hydronutrients, +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/xenobiology) +"aqp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/nw) +"aqq" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"aqr" = ( +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"aqs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplefull, +/area/bigredv2/outside/medical) +"aqt" = ( +/obj/structure/machinery/chem_master, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"aqu" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"aqw" = ( +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"aqx" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Library"; + name = "\improper Library Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/library) +"aqz" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Bar Complex"; + name = "\improper Bar Complex Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"aqC" = ( +/obj/structure/surface/table, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"aqH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"aqJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"aqK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"aqL" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"aqM" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"aqN" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"aqO" = ( +/obj/structure/barricade/wooden, +/turf/open/mars, +/area/bigredv2/outside/n) +"aqP" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/filtration_cave_cas) +"aqQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"aqR" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"aqU" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Kitchen"; + name = "\improper Kitchen Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/hydroponics) +"aqW" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"aqX" = ( +/obj/item/storage/toolbox/mechanical, +/obj/item/device/multitool, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/surface/rack, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"aqY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"ara" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp{ + pixel_y = 15 + }, +/obj/item/paper/bigred/lambda, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"arb" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"arc" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"ard" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"arf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"arg" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"ari" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"arl" = ( +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"arp" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/n) +"arq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"ars" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"arC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/silver, +/obj/item/stack/sheet/mineral/silver{ + amount = 20 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"arD" = ( +/turf/open/mars, +/area/bigredv2/outside/ne) +"arE" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/machinery/door/window/eastleft, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"arF" = ( +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"arG" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"arI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"arJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Biology Wing" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"arK" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves_lambda) +"arL" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_lambda) +"arM" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) +"arN" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/purple/west, +/area/bigredv2/caves/lambda/research) +"arP" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"arQ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"arR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"arT" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"arU" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"arW" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"arX" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"arZ" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/down, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/n) +"asa" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/n) +"asb" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/mars, +/area/bigredv2/outside/s) +"asc" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"asd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"ase" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"asf" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"asg" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 + }, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"ash" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"asj" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "General Store"; + name = "\improper General Store Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/general_store) +"ask" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Dormitories EVA" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"asl" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"asn" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/armor/vest, +/obj/structure/machinery/door/window/eastright, +/obj/structure/window/reinforced, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"aso" = ( +/mob/living/simple_animal/corgi/puppy{ + desc = "It's a corgi puppy. MISTER WIGGLES!! HE IS THE GREATEST!"; + name = "\improper Mister Wiggles" + }, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"asp" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"asq" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"asr" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"ass" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"ast" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"asu" = ( +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"asv" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/office_complex) +"asw" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/structure/machinery/light/built{ + dir = 1 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"asx" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave, +/area/bigredv2/caves_lambda) +"asz" = ( +/obj/item/device/reagent_scanner, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"asA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/whitepurplefull, +/area/bigredv2/outside/medical) +"asB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"asF" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"asH" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Office Complex 1"; + name = "\improper Office Complex Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/office_complex) +"asI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories" + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"asJ" = ( +/turf/open/floor, +/area/bigredv2/outside/dorms) +"asK" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/cargo) +"asN" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"asO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"asP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"asS" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"asT" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"asU" = ( +/obj/structure/closet/l3closet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/general_offices) +"asV" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"asW" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/general_offices) +"asX" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"asY" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"ata" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) +"atb" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/chapel) +"atc" = ( +/obj/item/device/radio/intercom{ + dir = 1; + frequency = 150; + name = "Safe-Room intercom"; + pixel_y = -30 + }, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"atd" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Chapel"; + name = "\improper Chapel Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/chapel) +"ate" = ( +/obj/structure/machinery/door_control{ + id = "safe_room"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -28; + req_access_txt = "106"; + specialfunctions = 4 + }, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"atf" = ( +/obj/structure/closet/secure_closet/RD, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"atg" = ( +/obj/structure/machinery/vending/snack{ + icon_state = "snack-broken"; + stat = 1 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"ath" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"ati" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/breakroom) +"atj" = ( +/obj/structure/machinery/vending/coffee{ + icon_state = "coffee-broken"; + stat = 1 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"atk" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_lambda) +"atm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/nw) +"atn" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ato" = ( +/obj/structure/machinery/chem_master, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"atr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ats" = ( +/obj/effect/acid_hole, +/turf/closed/wall/solaris, +/area/bigredv2/outside/general_offices) +"atw" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Cargonia"; + name = "\improper Cargo Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aty" = ( +/obj/item/bedsheet/brown, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/bed, +/obj/structure/bed{ + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"atz" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"atA" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"atB" = ( +/obj/structure/closet/crate, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"atD" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"atE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"atF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"atG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"atH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"atI" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 1; + icon_state = "door_locked"; + id = "safe_room"; + name = "\improper Lambda Lab Director's Safe Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"atJ" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Office Complex 1"; + name = "\improper Office Complex Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/office_complex) +"atK" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Lambda Lab Administration Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"atL" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"atM" = ( +/obj/structure/window/reinforced, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/breakroom) +"atN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/breakroom) +"atO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"atP" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Chapel"; + name = "\improper Chapel Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/chapel) +"atQ" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars, +/area/bigredv2/outside/nw) +"atR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"atS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"atU" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"atV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Clinic CMO's Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"atX" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/blood{ + layer = 3; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"atY" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"atZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dormitories Bedroom" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"aua" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aub" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"auc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"aud" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"aue" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"aug" = ( +/obj/item/stack/sheet/plasteel, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"auh" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"aui" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"auj" = ( +/obj/item/device/radio/intercom{ + frequency = 150; + name = "Safe-Room intercom"; + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"auk" = ( +/obj/structure/window/framed/solaris, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aul" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aum" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Director's Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"aun" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"auo" = ( +/obj/structure/sign/safety/maint{ + pixel_y = 32 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"aup" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"auq" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"aur" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"aus" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/telecomm/n_cave) +"aut" = ( +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/breakroom) +"auu" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/breakroom) +"auv" = ( +/obj/structure/showcase{ + icon_state = "bus" + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"aux" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/breakroom) +"auy" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"auz" = ( +/obj/structure/machinery/door_control{ + id = "sci_br"; + name = "Observation Shutters"; + pixel_y = 28 + }, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"auA" = ( +/obj/structure/inflatable/door, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"auB" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"auC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"auD" = ( +/obj/effect/decal/cleanable/mucus, +/obj/structure/machinery/door_control{ + id = "sci_br"; + name = "Observation Shutters"; + pixel_y = 28 + }, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"auE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/n) +"auF" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/nw) +"auH" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"auL" = ( +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"auM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"auU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Bedroom" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"auV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories Tool Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"auW" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/outside/c) +"auY" = ( +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"auZ" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"ava" = ( +/obj/structure/pipes/vents/scrubber/on{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"avb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"avc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"avd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"ave" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Administration Wing" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"avf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"avg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/breakroom) +"avh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/breakroom) +"avi" = ( +/obj/structure/showcase, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"avj" = ( +/obj/structure/showcase{ + icon_state = "broadcaster_send" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"avk" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/breakroom) +"avl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Break Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"avm" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"avn" = ( +/obj/structure/inflatable/door, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"avo" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"avp" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"avr" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/office_complex) +"avt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/nw/ceiling) +"avu" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Clinic Chemistry" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"avv" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"avw" = ( +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"avx" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"avy" = ( +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"avB" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/whiteblue/southeast, +/area/bigredv2/outside/medical) +"avC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/plate, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"avD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"avG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"avI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"avJ" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"avM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"avN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"avO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Relaxation Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"avP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"avQ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/breakroom) +"avR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/breakroom) +"avS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris, +/area/bigredv2/outside/office_complex) +"avT" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"avU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"avV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"avX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"avZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"awa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"awd" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/se) +"awe" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/purple/southwest, +/area/bigredv2/caves/lambda/research) +"awk" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"awl" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"awn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"awo" = ( +/obj/structure/bed/chair, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"awp" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/filtration_plant) +"awq" = ( +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"aws" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"awu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"aww" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"awz" = ( +/obj/item/ashtray/bronze{ + pixel_x = -7 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"awA" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/tool/pickaxe/drill, +/turf/open/floor/purple/southwest, +/area/bigredv2/caves/lambda/research) +"awB" = ( +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Lambda Labs"; + phone_color = "blue"; + phone_id = "Director" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"awC" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"awD" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"awE" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"awF" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"awG" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"awH" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/breakroom) +"awI" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/breakroom) +"awJ" = ( +/obj/structure/pipes/vents/scrubber/on{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"awK" = ( +/obj/structure/machinery/vending/sovietsoda{ + icon_state = "sovietsoda-broken"; + stat = 1 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"awM" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/outside/filtration_plant) +"awN" = ( +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"awO" = ( +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"awP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"awQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"awS" = ( +/obj/structure/machinery/door_control{ + id = "Medical"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"awT" = ( +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/outside/medical) +"awV" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"awY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"awZ" = ( +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axa" = ( +/obj/structure/surface/table, +/obj/item/ashtray/bronze, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axd" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/good_item, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"axi" = ( +/obj/structure/machinery/light, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"axn" = ( +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 + }, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"axo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"axp" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"axr" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Filtration Plant"; + name = "\improper Filtration Plant Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"axs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"axt" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"axu" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/nw) +"axv" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/nw/ceiling) +"axy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic Treatment" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"axz" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"axA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"axB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"axF" = ( +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"axG" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axK" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axL" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Cargonia"; + name = "\improper Cargo Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"axM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"axN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"axO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"axR" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Bedroom" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"axT" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"axU" = ( +/obj/item/tool/pickaxe/drill, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"axV" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"axW" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/c) +"axX" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/engineering) +"axY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/nw/ceiling) +"axZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"aya" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"ayb" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"ayc" = ( +/obj/structure/window/framed/solaris/reinforced/hull, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"ayd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Medical Clinic" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"aye" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ayf" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port_lz2) +"ayh" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/outside/medical) +"ayi" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = 32 + }, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/outside/medical) +"ayk" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ayl" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ayn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"ayo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/pistachios, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ayp" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ayq" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ayr" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/engineering) +"ays" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"ayt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"ayu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"ayv" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ayx" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"ayA" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"ayB" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/woodentable, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/tool/lighter/zippo, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"ayC" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves/lambda/research) +"ayD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/lambda/research) +"ayE" = ( +/obj/structure/girder/reinforced, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/lambda/research) +"ayF" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"ayH" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"ayI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ayJ" = ( +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/medical) +"ayK" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ayL" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"ayN" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"ayO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ayQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/outside/medical) +"ayR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"ayV" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"ayX" = ( +/obj/effect/landmark/good_item, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ayY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ayZ" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"azb" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Engineering"; + name = "\improper Engineering Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"azc" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"azd" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"azf" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_lambda) +"azg" = ( +/obj/structure/surface/table, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/cell/hyper, +/turf/open/floor/whitepurple/northwest, +/area/bigredv2/caves/lambda/research) +"azh" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/objective, +/obj/item/clothing/glasses/science, +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/research) +"azi" = ( +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/research) +"azj" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitepurple/northeast, +/area/bigredv2/caves/lambda/research) +"azk" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/lambda/research) +"azl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave, +/area/bigredv2/caves/lambda/research) +"azm" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves/lambda/breakroom) +"azn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"azo" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"azq" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"azt" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"azu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"azv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"azx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"azB" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Engineering"; + name = "\improper Engineering Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"azE" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"azF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"azG" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Filtration Plant"; + name = "\improper Filtration Plant Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"azJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000; + pixel_y = 3; + pixel_x = 17 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"azK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/outside/n) +"azM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"azN" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"azO" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/outside/eta) +"azP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azS" = ( +/obj/structure/machinery/vending/snack{ + icon_state = "snack-broken"; + stat = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azT" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azU" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azV" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azW" = ( +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aAa" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aAb" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aAi" = ( +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/research) +"aAj" = ( +/obj/item/tool/extinguisher/mini, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"aAk" = ( +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/lambda/research) +"aAl" = ( +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/caves/lambda/research) +"aAm" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/open/floor/whitepurple/northeast, +/area/bigredv2/caves/lambda/research) +"aAn" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves/lambda/research) +"aAo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/mars_cave, +/area/bigredv2/caves/lambda/research) +"aAp" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/eta/storage) +"aAq" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"aAu" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"aAv" = ( +/obj/structure/machinery/light, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"aAw" = ( +/obj/item/clothing/gloves/latex, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"aAz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 32 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"aAA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/n) +"aAB" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"aAC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aAE" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Recreation" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"aAI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Bar Maintenance" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"aAJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"aAK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"aAL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"aAM" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/engine, +/area/bigredv2/caves/lambda/research) +"aAN" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/engine, +/area/bigredv2/caves/lambda/research) +"aAO" = ( +/turf/open/floor/engine, +/area/bigredv2/caves/lambda/research) +"aAP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/research) +"aAQ" = ( +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/research) +"aAR" = ( +/obj/structure/barricade/metal{ + dir = 4; + icon_state = "barricade" + }, +/turf/open/floor/whitepurple/northeast, +/area/bigredv2/caves/lambda/research) +"aAS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_4, +/area/bigredv2/caves/lambda/research) +"aAT" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/lambda/research) +"aAU" = ( +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/lambda/research) +"aAV" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + id = "anomalybelt" + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"aAW" = ( +/obj/structure/machinery/conveyor{ + dir = 9; + id = "anomalybelt" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"aAX" = ( +/obj/structure/machinery/light/small/built{ + dir = 1 + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/lambda/research) +"aAY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/lambda/research) +"aAZ" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"aBa" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"aBb" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"aBd" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"aBe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Clinic" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"aBf" = ( +/obj/item/device/healthanalyzer, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"aBi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aBj" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"aBk" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"aBl" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"aBm" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"aBn" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"aBp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"aBq" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"aBu" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/ne) +"aBv" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/eta/research) +"aBw" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"aBy" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"aBz" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) +"aBA" = ( +/turf/closed/wall/solaris, +/area/bigredv2/caves/eta/research) +"aBB" = ( +/obj/item/device/multitool, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"aBC" = ( +/obj/item/clothing/suit/storage/labcoat/science, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"aBD" = ( +/obj/item/tool/weldingtool/experimental, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"aBE" = ( +/turf/closed/wall/solaris, +/area/bigredv2/caves/eta/storage) +"aBF" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"aBG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "U-S" + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"aBH" = ( +/obj/structure/machinery/conveyor{ + id = "anomalybelt" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"aBI" = ( +/obj/structure/bed/chair, +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"aBJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/outside/medical) +"aBK" = ( +/obj/structure/closet/wardrobe/medic_white, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"aBM" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"aBO" = ( +/obj/structure/surface/table, +/obj/structure/machinery/recharger, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"aBP" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"aBQ" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"aBR" = ( +/turf/open/mars, +/area/bigredv2/outside/c) +"aBS" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"aBT" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dormitories Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"aBU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/trash/candy, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aBW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"aBX" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"aBZ" = ( +/obj/structure/bed/stool, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"aCa" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"aCc" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/ne) +"aCd" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/ne) +"aCe" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/eta/xenobiology) +"aCf" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"aCh" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"aCi" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aCj" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aCk" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper/courtroom{ + name = "A Crash Course in Legal SOP" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"aCl" = ( +/obj/structure/surface/table, +/obj/item/tool/shovel/spade, +/obj/structure/machinery/camera/autoname, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aCm" = ( +/obj/structure/surface/table, +/obj/item/paper/hydroponics, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aCn" = ( +/obj/structure/machinery/fermenter, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aCo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aCp" = ( +/obj/structure/machinery/seed_extractor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aCq" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/engine, +/area/bigredv2/caves/lambda/research) +"aCr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"aCs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/obj/item/clipboard, +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/research) +"aCt" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/lambda/research) +"aCu" = ( +/obj/structure/barricade/metal{ + dir = 4; + icon_state = "barricade" + }, +/obj/structure/ore_box, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/research) +"aCv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Technical Lab" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"aCw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"aCx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"aCy" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"aCz" = ( +/obj/structure/machinery/power/port_gen/pacman, +/obj/effect/decal/warning_stripes{ + icon_state = "U-N" + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"aCA" = ( +/obj/structure/machinery/conveyor{ + id = "anomalybelt" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/plasticflaps, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"aCB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"aCC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"aCF" = ( +/obj/item/reagent_container/pill/happy, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"aCG" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"aCH" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/xenobiology) +"aCL" = ( +/turf/closed/wall/solaris, +/area/bigredv2/caves/eta/xenobiology) +"aCM" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars, +/area/bigredv2/outside/c) +"aCN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"aCO" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/filtration_plant) +"aCP" = ( +/obj/structure/closet/secure_closet/bar, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aCR" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"aCS" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"aCU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Bar Maintenance" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"aCW" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/ne) +"aCY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aCZ" = ( +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aDa" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aDb" = ( +/obj/structure/machinery/door_control{ + id = "Greenhouse"; + name = "Storm Shutters"; + pixel_x = 32 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aDe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"aDg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"aDi" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/engine, +/area/bigredv2/caves/lambda/research) +"aDj" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/xenobiology) +"aDk" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitepurplecorner, +/area/bigredv2/caves/lambda/research) +"aDl" = ( +/obj/structure/ore_box, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/research) +"aDm" = ( +/obj/structure/barricade/metal{ + dir = 4; + icon_state = "barricade" + }, +/turf/open/floor/whitepurple/southeast, +/area/bigredv2/caves/lambda/research) +"aDn" = ( +/obj/structure/pipes/vents/scrubber/on{ + dir = 4 + }, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"aDp" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/purple/northwest, +/area/bigredv2/caves/lambda/research) +"aDq" = ( +/turf/open/floor/purple/north, +/area/bigredv2/caves/lambda/research) +"aDr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/laser{ + pixel_y = 32 + }, +/turf/open/floor/purple/north, +/area/bigredv2/caves/lambda/research) +"aDs" = ( +/obj/structure/machinery/conveyor{ + id = "anomalybelt" + }, +/turf/open/floor/purple/north, +/area/bigredv2/caves/lambda/research) +"aDt" = ( +/obj/structure/machinery/conveyor_switch{ + id = "anomalybelt" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/purple/north, +/area/bigredv2/caves/lambda/research) +"aDu" = ( +/turf/open/floor/purple/northeast, +/area/bigredv2/caves/lambda/research) +"aDv" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/living) +"aDB" = ( +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"aDD" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"aDG" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/surgery/blue, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"aDH" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"aDJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"aDM" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"aDO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"aDQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control{ + id = "Dormitories"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aDU" = ( +/obj/structure/closet/athletic_mixed, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"aDX" = ( +/turf/closed/wall/solaris, +/area/bigredv2/caves/eta/living) +"aDY" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/eta/living) +"aDZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bar Backroom" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"aEa" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aEc" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aEd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aEg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/popcorn, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aEh" = ( +/obj/structure/machinery/botany/editor, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aEi" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"aEj" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/living) +"aEn" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"aEo" = ( +/turf/open/floor/whitepurplecorner, +/area/bigredv2/caves/lambda/research) +"aEp" = ( +/turf/open/floor/whitepurple/southeast, +/area/bigredv2/caves/lambda/research) +"aEq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -30 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"aEs" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"aEt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/purple/east, +/area/bigredv2/caves/lambda/research) +"aEu" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside) +"aEw" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/scalpel/manager, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"aEx" = ( +/obj/item/alien_embryo, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"aEz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"aEA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"aEC" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"aED" = ( +/obj/structure/bed, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"aEE" = ( +/obj/structure/bed, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"aEF" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves/lambda/research) +"aEK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aEM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"aEN" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Toilet" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"aEO" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aEP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aEQ" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aER" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aET" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/shovel/spade, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aEU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aEW" = ( +/obj/item/tool/hatchet, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aEX" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/se) +"aEY" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/asteroidwarning/northeast, +/area/bigred/ground/garage_workshop) +"aEZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/liquidfood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aFa" = ( +/obj/structure/machinery/botany/extractor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aFb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aFc" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/sw) +"aFd" = ( +/obj/structure/flora/jungle/plantbot1{ + pixel_y = 10 + }, +/turf/open/jungle, +/area/bigredv2/outside/admin_building) +"aFf" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/structure/machinery/light, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitepurple/southwest, +/area/bigredv2/caves/lambda/research) +"aFg" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/research) +"aFh" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/research) +"aFi" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/structure/machinery/light/built, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitepurple/southeast, +/area/bigredv2/caves/lambda/research) +"aFj" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"aFk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 32 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"aFl" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/transmitter/colony_net{ + dir = 4; + phone_category = "Eta Labs"; + phone_id = "Observation"; + pixel_x = -18 + }, +/turf/open/floor/purple/southwest, +/area/bigredv2/caves/lambda/research) +"aFm" = ( +/turf/open/floor/purplecorner/west, +/area/bigredv2/caves/lambda/research) +"aFn" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"aFo" = ( +/turf/open/floor/purplecorner, +/area/bigredv2/caves/lambda/research) +"aFp" = ( +/turf/open/floor/purple/southeast, +/area/bigredv2/caves/lambda/research) +"aFq" = ( +/obj/structure/machinery/smartfridge/secure/virology, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"aFr" = ( +/obj/structure/machinery/smartfridge/secure/virology, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"aFs" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/virology) +"aFt" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/virology) +"aFu" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/virology) +"aFv" = ( +/turf/open/mars, +/area/bigredv2/outside/virology) +"aFw" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/virology) +"aFx" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"aFz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"aFA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Operating Theatre" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"aFB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"aFE" = ( +/obj/item/reagent_container/pill/happy, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"aFF" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"aFG" = ( +/obj/structure/bed, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"aFH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"aFL" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/c) +"aFM" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"aFN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aFO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dormitories Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"aFP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aFU" = ( +/obj/structure/machinery/door_control{ + id = "Dormitories"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"aFV" = ( +/obj/structure/machinery/light/small/built{ + dir = 8 + }, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"aGa" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Greenhouse Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"aGb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aGc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Greenhouse Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/library) +"aGd" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/warnwhite/southwest, +/area/bigredv2/caves/lambda/virology) +"aGe" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"aGg" = ( +/obj/structure/machinery/light/built{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"aGh" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"aGi" = ( +/obj/item/clothing/glasses/welding, +/turf/open/floor/purplecorner/west, +/area/bigredv2/caves/lambda/research) +"aGj" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/warnwhite/southeast, +/area/bigredv2/caves/lambda/virology) +"aGk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = 32 + }, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"aGl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/caves/lambda/virology) +"aGm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/caves/lambda/virology) +"aGn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"aGo" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/virology) +"aGp" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/virology) +"aGq" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/virology) +"aGr" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/virology) +"aGv" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"aGw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"aGx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"aGy" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"aGB" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"aGD" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/objective, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aGF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"aGG" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/binoculars, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"aGH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aGI" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aGJ" = ( +/obj/structure/machinery/squeezer, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aGL" = ( +/obj/structure/machinery/biogenerator, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aGP" = ( +/obj/structure/filingcabinet/medical, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aGT" = ( +/obj/structure/surface/table, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aGU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/research) +"aGV" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aGW" = ( +/turf/open/floor/purple, +/area/bigredv2/caves/lambda/research) +"aGX" = ( +/obj/structure/surface/table, +/obj/item/tool/weedkiller/D24, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aGY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/purple/southeast, +/area/bigredv2/caves/lambda/research) +"aHa" = ( +/obj/structure/surface/table, +/obj/item/storage/pill_bottle/spaceacillin, +/obj/structure/machinery/computer/objective, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aHc" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) +"aHd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-in" + }, +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/caves/lambda/virology) +"aHe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"aHf" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/virology) +"aHn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars, +/area/bigredv2/outside/nw) +"aHo" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"aHp" = ( +/obj/structure/machinery/light, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"aHq" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"aHr" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"aHA" = ( +/obj/structure/bed, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"aHC" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/c) +"aHD" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"aHF" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"aHG" = ( +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"aHH" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"aHK" = ( +/obj/structure/surface/table, +/obj/item/toy/sword, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aHL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Kitchen Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"aHO" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"aHP" = ( +/obj/structure/prop/almayer/computers/mapping_computer{ + desc = "A strange-looking collection of coordinate inputs, relay shunts, and wiring. Designed to operate an experimental teleporter."; + name = "\improper Teleporter Targeting Computer" + }, +/turf/open/floor/greengrid, +/area/bigredv2/caves/lambda/research) +"aHQ" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/research) +"aHR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Anomaly Lab" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"aHS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/access_button/airlock_interior{ + master_tag = "viro_controller"; + pixel_y = 28 + }, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"aHT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/caves/lambda/virology) +"aHU" = ( +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 + }, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"aHV" = ( +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/lambda/virology) +"aHW" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/lambda/virology) +"aHX" = ( +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 + }, +/obj/structure/machinery/disease2/diseaseanalyser, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"aHY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/light/built{ + dir = 4 + }, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"aHZ" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/virology) +"aIc" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aIe" = ( +/obj/structure/surface/table/reinforced, +/obj/item/pizzabox/vegetable, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"aIm" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/c) +"aIn" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"aIp" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/c) +"aIq" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"aIs" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"aIu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aIv" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aIw" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aIx" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aIy" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aIz" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aIA" = ( +/obj/structure/sign/safety/biolab{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aIB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aIC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aID" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aIE" = ( +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aIF" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aIJ" = ( +/turf/open/floor/darkpurple2/northwest, +/area/bigredv2/caves/lambda/research) +"aIK" = ( +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"aIL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"aIM" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"aIN" = ( +/turf/open/floor/darkpurplecorners2/north, +/area/bigredv2/caves/lambda/research) +"aIO" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"aIP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"aIQ" = ( +/turf/open/floor/bluegrid/damaged5, +/area/bigredv2/caves/lambda/research) +"aIR" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/bluegrid/damaged4, +/area/bigredv2/caves/lambda/research) +"aIS" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"aIT" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aIU" = ( +/obj/structure/pipes/vents/scrubber/on, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"aIV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/sign/safety/biohazard{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"aIW" = ( +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"aIX" = ( +/obj/structure/sign/safety/biohazard{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/light/small/built{ + dir = 1 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/virology) +"aIY" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aIZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/virology) +"aJa" = ( +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 + }, +/obj/structure/machinery/door/window{ + dir = 8 + }, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"aJb" = ( +/obj/structure/surface/table, +/obj/item/ashtray/bronze, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/admin_building) +"aJc" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"aJd" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/lambda/virology) +"aJe" = ( +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 + }, +/obj/structure/machinery/door/window{ + layer = 4 + }, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"aJf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/virology) +"aJk" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/mars, +/area/bigredv2/outside/c) +"aJm" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/c) +"aJn" = ( +/turf/open/floor/carpet13_5/west, +/area/bigredv2/outside/bar) +"aJq" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aJr" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bar Backroom" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"aJs" = ( +/obj/effect/decal/cleanable/flour, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aJt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aJv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aJw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aJx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/flour, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aJy" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"aJz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Kitchen Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"aJA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aJC" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"aJD" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/dice/d20, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"aJE" = ( +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/research) +"aJF" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"aJG" = ( +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"aJH" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"aJI" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"aJJ" = ( +/obj/structure/machinery/light/built, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"aJK" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"aJL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"aJM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/bluegrid/damaged3, +/area/bigredv2/caves/lambda/research) +"aJN" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"aJO" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/rad_haz{ + pixel_y = -32 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"aJQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"aJR" = ( +/obj/structure/machinery/access_button/airlock_exterior{ + master_tag = "viro_controller"; + pixel_y = -28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"aJS" = ( +/obj/structure/sign/safety/biohazard{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"aJT" = ( +/obj/structure/filingcabinet/medical, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"aJU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/virology) +"aJV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/virology) +"aJW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/virology) +"aJX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Virology Wing" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/virology) +"aJY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/virology) +"aJZ" = ( +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/door/window{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) +"aKa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/lambda/virology) +"aKb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"aKc" = ( +/obj/structure/pipes/vents/scrubber/on{ + dir = 8 + }, +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"aKd" = ( +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/lambda/virology) +"aKe" = ( +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/door/window{ + layer = 4 + }, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"aKf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/virology) +"aKi" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"aKk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/outside/c) +"aKl" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/c) +"aKm" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"aKo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aKp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aKq" = ( +/obj/structure/sign/safety/medical{ + pixel_x = -32 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"aKr" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars, +/area/bigredv2/outside/c) +"aKt" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/c) +"aKw" = ( +/obj/item/clothing/head/welding, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aKx" = ( +/obj/structure/bed/stool, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aKz" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aKC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aKD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aKE" = ( +/obj/structure/machinery/door_control{ + id = "Kitchen Greenhouse"; + name = "Storm Shutters"; + pixel_x = 32 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aKF" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aKG" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aKI" = ( +/obj/structure/machinery/processor, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"aKJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aKL" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"aKO" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"aKP" = ( +/turf/open/mars, +/area/bigredv2/outside/e) +"aKQ" = ( +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"aKS" = ( +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) +"aKT" = ( +/obj/structure/machinery/light/small/built{ + dir = 4 + }, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"aKU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"aKV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-in" + }, +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/caves/lambda/virology) +"aKW" = ( +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/window/reinforced/toughened, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) +"aKX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/lambda/virology) +"aKY" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/lambda/virology) +"aKZ" = ( +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/closet/crate/freezer, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"aLa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-in" + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/caves/lambda/virology) +"aLb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/structure/machinery/light/built{ + dir = 4 + }, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"aLc" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/turf/open/mars, +/area/bigredv2/outside/c) +"aLd" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/c) +"aLf" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/cigarette, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"aLg" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"aLi" = ( +/obj/structure/closet/jcloset, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"aLl" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aLo" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aLp" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aLr" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aLs" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/item/tool/extinguisher, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aLu" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aLv" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aLw" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/waffles, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aLx" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aLy" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/knife, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aLz" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/waffles, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aLA" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aLB" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/plate, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aLC" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aLD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aLE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aLH" = ( +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"aLI" = ( +/turf/open/floor/greengrid, +/area/bigredv2/caves/lambda/research) +"aLJ" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"aLM" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/door/window{ + dir = 1; + opacity = 1 + }, +/turf/open/floor/warnwhite, +/area/bigredv2/caves/lambda/virology) +"aLO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"aLP" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"aLQ" = ( +/obj/structure/window/reinforced/toughened{ + icon_state = "fwindow" + }, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) +"aLR" = ( +/obj/structure/window/reinforced/toughened{ + icon_state = "fwindow" + }, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/machinery/computer/pandemic, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"aLS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"aLY" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/virology) +"aLZ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"aMa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"aMb" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"aMc" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"aMd" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/c) +"aMf" = ( +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aMg" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"aMj" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aMk" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/ne) +"aMl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aMm" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aMn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aMo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aMp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cheesie, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aMq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"aMr" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/greengrid, +/area/bigredv2/caves/lambda/research) +"aMs" = ( +/turf/open/floor/bluegrid, +/area/bigredv2/caves/lambda/research) +"aMt" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/bluegrid, +/area/bigredv2/caves/lambda/research) +"aMu" = ( +/obj/structure/cryofeed/right{ + name = "\improper coolant feed" + }, +/turf/open/floor/greengrid, +/area/bigredv2/caves/lambda/research) +"aMv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/structure/sign/safety/biohazard{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light, +/obj/structure/machinery/door_control{ + id = "viro_q"; + layer = 4; + name = "Qurantine Lockdown"; + normaldoorcontrol = 1; + pixel_x = -25; + req_access_txt = "7"; + specialfunctions = 4 + }, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"aMw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) +"aMx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) +"aMy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/structure/sign/safety/biohazard{ + pixel_x = 7; + pixel_y = -32 + }, +/obj/structure/machinery/light/built, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"aMB" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/pen, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"aMC" = ( +/obj/effect/landmark/railgun_camera_pos, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aME" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper General Store" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_store) +"aMF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Operations" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"aMG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table, +/obj/item/tool/surgery/retractor, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"aMJ" = ( +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_y = 32 + }, +/obj/structure/machinery/door_control{ + id = "Bar Complex"; + name = "Storm Shutters"; + pixel_x = 32 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aMK" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aML" = ( +/obj/structure/bed/chair, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aMM" = ( +/obj/structure/bed/chair, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aMN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aMO" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aMP" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aMQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aMR" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/e) +"aMT" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/caves_lambda) +"aMV" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/caves_lambda) +"aMW" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"aMX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Virology Quarantine" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/virology) +"aMY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/virology) +"aMZ" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aNa" = ( +/obj/structure/closet/l3closet/general, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aNb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aNc" = ( +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aNd" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) +"aNe" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aNf" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aNg" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/surgicaldrill, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aNh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"aNi" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"aNj" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"aNk" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aNl" = ( +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aNm" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aNn" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aNo" = ( +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aNq" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 + }, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aNr" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aNs" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aNt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/arcade, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aNu" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aNv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/snack, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aNw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"aNx" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"aNy" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aNB" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aNC" = ( +/obj/structure/machinery/computer/station_alert, +/obj/structure/surface/table, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aND" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine{ + density = 0; + req_one_access_txt = "200" + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aNE" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "blue"; + phone_id = "Administration" + }, +/turf/open/floor/warnwhite/east, +/area/bigredv2/outside/admin_building) +"aNG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"aNH" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"aNI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/northwest, +/area/bigredv2/outside/admin_building) +"aNK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/northwest, +/area/bigredv2/outside/admin_building) +"aNL" = ( +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"aNM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"aNN" = ( +/obj/structure/machinery/vending/coffee, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"aNO" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"aNP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"aNQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"aNS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aNV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aNW" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aNZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aOa" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aOb" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/plate, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aOc" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aOd" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aOe" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aOf" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aOg" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/kitchen/utensil/spoon, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aOh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aOj" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/eta) +"aOk" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/e) +"aOl" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/disk/nuclear, +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/research) +"aOn" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/caves_lambda) +"aOo" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"aOp" = ( +/obj/structure/machinery/light/small/built{ + dir = 8 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/virology) +"aOq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/virology) +"aOr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aOs" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) +"aOt" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"aOu" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"aOv" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aOw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/cola, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aOE" = ( +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"aOF" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, +/obj/structure/surface/table, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aOG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aOH" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/warnwhite/east, +/area/bigredv2/outside/admin_building) +"aOI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"aOJ" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"aOK" = ( +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"aOL" = ( +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"aOM" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"aON" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Operations Bedroom" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"aOO" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"aOP" = ( +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"aOQ" = ( +/obj/structure/surface/table, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Eta Labs"; + phone_color = "Blue"; + phone_id = "Director" + }, +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/caves/eta/research) +"aOR" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"aOU" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Crew Habitation Complex" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"aOV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aOW" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aOX" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/trash/tray, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aOY" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aOZ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aPa" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aPb" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aPc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aPd" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"aPe" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/trash/plate, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aPf" = ( +/obj/structure/surface/table, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Eta Labs"; + phone_id = "Workshop" + }, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"aPg" = ( +/obj/structure/surface/table, +/obj/item/oldresearch/Blood, +/obj/item/oldresearch/Blood, +/obj/item/paper, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"aPh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aPi" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/plate, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aPj" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aPn" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/metal{ + amount = 3 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/medical) +"aPq" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Lambda Lab Anomaly Chamber" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"aPr" = ( +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/virology) +"aPs" = ( +/obj/structure/machinery/light/small/built{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/virology) +"aPt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + name = "\improper Virology Lab Decontamination" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"aPu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"aPv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aPw" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/donut, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aPx" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aPy" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aPC" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aPD" = ( +/obj/structure/surface/table, +/obj/item/storage/briefcase, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aPE" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aPF" = ( +/obj/structure/surface/table, +/obj/item/storage/box/snappops, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aPG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aPH" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"aPI" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aPJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aPK" = ( +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/surface/table, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aPL" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aPM" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aPN" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aPO" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/phone, +/turf/open/floor/warnwhite/east, +/area/bigredv2/outside/admin_building) +"aPP" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"aPQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"aPS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"aPT" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"aPV" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"aPW" = ( +/obj/structure/coatrack{ + pixel_x = -5; + pixel_y = 13 + }, +/obj/item/clothing/shoes/dress{ + pixel_y = -13 + }, +/obj/item/clothing/under/suit_jacket/trainee{ + pixel_x = -6; + pixel_y = 15 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"aPX" = ( +/obj/structure/surface/table/woodentable, +/obj/item/tool/lighter/zippo, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"aPZ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"aQa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aQd" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQe" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aQf" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/kitchen/utensil/fork, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aQh" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aQi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQj" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aQk" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQl" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aQm" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQn" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQo" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQp" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aQq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"aQu" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) +"aQv" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/podhatch/north, +/area/bigredv2/caves/lambda/research) +"aQw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/podhatch/northeast, +/area/bigredv2/caves/lambda/research) +"aQy" = ( +/obj/structure/surface/table, +/obj/item/tool/pen, +/obj/item/paper_bundle, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"aQz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"aQA" = ( +/obj/item/frame/table, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aQB" = ( +/obj/item/frame/table, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aQD" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/smes_coil, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"aQE" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aQF" = ( +/turf/open/mars/mars_dirt_5, +/area/bigredv2/outside/w) +"aQG" = ( +/turf/open/mars/mars_dirt_6, +/area/bigredv2/outside/w) +"aQH" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aQL" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aQM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aQN" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aQO" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname, +/obj/effect/decal/cleanable/blood, +/obj/item/alien_embryo, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aQP" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/blood, +/obj/item/tool/kitchen/knife, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aQQ" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/obj/item/tool/lighter/random, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aQR" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/pod/old{ + name = "Register" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aQS" = ( +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aQT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aQU" = ( +/obj/item/device/flashlight, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aQV" = ( +/obj/structure/surface/table, +/obj/item/paper, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aQW" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aQX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aQY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aQZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aRa" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aRb" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aRc" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aRd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"aRe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Operations" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"aRf" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"aRh" = ( +/obj/structure/machinery/door_control{ + id = "Operations"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"aRi" = ( +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/outside/admin_building) +"aRj" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aRm" = ( +/obj/structure/barricade/wooden, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aRn" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"aRo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Bar" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"aRp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Kitchen" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"aRq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aRr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aRs" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/door_control{ + id = "Kitchen"; + name = "Storm Shutters"; + pixel_x = 32 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aRu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Library" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/library) +"aRv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"aRx" = ( +/obj/structure/machinery/teleport/station, +/turf/open/floor/podhatch, +/area/bigredv2/caves/lambda/research) +"aRy" = ( +/obj/structure/machinery/teleport/hub, +/turf/open/floor/podhatch/southeast, +/area/bigredv2/caves/lambda/research) +"aRz" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -30 + }, +/obj/structure/sign/safety/biohazard{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/light/built{ + dir = 1 + }, +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"aRA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/virology) +"aRB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/virology) +"aRC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 30 + }, +/obj/structure/sign/safety/biohazard{ + pixel_x = 7; + pixel_y = 32 + }, +/obj/effect/decal/cleanable/vomit, +/obj/structure/machinery/light/built{ + dir = 1 + }, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"aRD" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"aRE" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"aRF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aRG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aRH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aRI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aRJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aRK" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aRL" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aRM" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aRP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aRQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aRR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aRS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aRT" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aRU" = ( +/obj/structure/machinery/light, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aRV" = ( +/obj/structure/sign/safety/terminal{ + pixel_y = -32 + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aRX" = ( +/obj/structure/machinery/lapvend, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aRY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"aRZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"aSe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Kitchen" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"aSg" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/e) +"aSh" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/e) +"aSi" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/e) +"aSm" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/caves_lambda) +"aSn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) +"aSo" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"aSp" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"aSq" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/vents/scrubber/on{ + dir = 1 + }, +/turf/open/floor/darkgreen2/north, +/area/bigredv2/caves/lambda/virology) +"aSr" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/darkgreen2/north, +/area/bigredv2/caves/lambda/virology) +"aSs" = ( +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"aSt" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"aSu" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + health = 25000 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aSv" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + health = 25000 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"aSw" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aSx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aSy" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aSA" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Virology Lab Cell" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"aSB" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/w) +"aSC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aSD" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/donkpocket, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aSE" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/chips, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aSH" = ( +/obj/structure/surface/table, +/obj/item/storage/box/snappops, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aSI" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aSJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/bed/roller, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aSK" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/tool/surgery/surgicaldrill, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aSL" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/device/healthanalyzer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aSM" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/device/multitool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aSN" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/pod/old{ + name = "Register" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aSO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aSP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper General Store Security" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_store) +"aSQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Operations" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"aSR" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/mp27, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"aSS" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/mp27, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"aST" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/darkred2/northwest, +/area/bigredv2/outside/admin_building) +"aSU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/good_item, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"aSW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/darkredcorners2/north, +/area/bigredv2/outside/admin_building) +"aSX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aTa" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"aTb" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aTc" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"aTd" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"aTh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"aTk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/e) +"aTp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"aTq" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"aTr" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/e) +"aTs" = ( +/turf/open/floor/delivery, +/area/bigred/ground/garage_workshop) +"aTu" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/e) +"aTv" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"aTy" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars, +/area/bigredv2/outside/n) +"aTC" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"aTD" = ( +/obj/structure/curtain/medical, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"aTE" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/lambda/virology) +"aTG" = ( +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"aTH" = ( +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/lambda/virology) +"aTI" = ( +/obj/structure/curtain/medical, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"aTJ" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"aTK" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aTL" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aTM" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aTN" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/donkpocket, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aTQ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aTR" = ( +/obj/structure/surface/table, +/obj/item/storage/briefcase, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aTS" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/pistol/holdout, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aTU" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"aTV" = ( +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"aTY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"aTZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"aUa" = ( +/turf/open/floor/darkredcorners2, +/area/bigredv2/outside/admin_building) +"aUb" = ( +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"aUc" = ( +/turf/open/floor/darkred2/southeast, +/area/bigredv2/outside/admin_building) +"aUd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/northeast, +/area/bigredv2/outside/admin_building) +"aUe" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"aUf" = ( +/obj/effect/landmark/good_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"aUg" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"aUh" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"aUi" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"aUk" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/e) +"aUl" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) +"aUD" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"aUE" = ( +/obj/structure/curtain/medical, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) +"aUF" = ( +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/lambda/virology) +"aUG" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"aUH" = ( +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/lambda/virology) +"aUI" = ( +/obj/structure/curtain/medical, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"aUJ" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/landmark/objective_landmark/science, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"aUM" = ( +/obj/structure/machinery/computer/operating, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aUO" = ( +/obj/structure/surface/table, +/obj/item/tank/anesthetic, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aUP" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aUS" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aUT" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aUU" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/bun, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aUV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aUW" = ( +/obj/item/paper/crumpled/bloody, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aVa" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/item/storage/box/stompers{ + pixel_y = 15 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aVb" = ( +/obj/structure/surface/table, +/obj/item/storage/box/snappops, +/obj/item/storage/box/snappops, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aVc" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/turf/open/mars/mars_dirt_9, +/area/space) +"aVd" = ( +/obj/structure/surface/table, +/obj/item/toy/dice, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aVe" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/pistol/holdout, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aVf" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/knife, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aVg" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/pod/old{ + name = "Register" + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aVh" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aVi" = ( +/obj/structure/machinery/door_control{ + id = "General Store"; + name = "Storm Shutters"; + pixel_x = 32 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aVj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"aVk" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"aVl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"aVm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"aVo" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/c) +"aVp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"aVq" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/e) +"aVr" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/e) +"aVs" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/e) +"aVt" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars, +/area/bigredv2/outside/e) +"aVx" = ( +/obj/structure/curtain/medical, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"aVy" = ( +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) +"aVz" = ( +/turf/open/floor/darkgreen2, +/area/bigredv2/caves/lambda/virology) +"aVA" = ( +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"aVB" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"aVC" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "viro"; + name = "Virology Lockdown"; + pixel_x = -25 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aVD" = ( +/obj/structure/bed/stool, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aVE" = ( +/obj/structure/surface/table, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aVJ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper General Store" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_store) +"aVK" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aVL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/restraint/adjustable/cable, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aVM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aVN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aVO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aVP" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"aVQ" = ( +/obj/structure/platform_decoration/kutjevo/rock, +/turf/open/mars, +/area/space) +"aVR" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/turf/open/mars/mars_dirt_12, +/area/space) +"aVS" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"aVT" = ( +/turf/open/floor/darkblue2/northwest, +/area/bigredv2/outside/admin_building) +"aVU" = ( +/turf/open/floor/darkblue2/north, +/area/bigredv2/outside/admin_building) +"aVV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkblue2/north, +/area/bigredv2/outside/admin_building) +"aVX" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/surface/table, +/turf/open/floor/darkblue2/northeast, +/area/bigredv2/outside/admin_building) +"aVY" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/e) +"aVZ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave, +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"aWb" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/wy_mre, +/obj/item/storage/box/donkpockets{ + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) +"aWc" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave, +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"aWd" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aWe" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aWf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aWg" = ( +/obj/structure/machinery/computer/pandemic, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aWh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/warnwhite/northwest, +/area/bigredv2/outside/virology) +"aWi" = ( +/turf/open/floor/warnwhite/north, +/area/bigredv2/outside/virology) +"aWj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/red/southwest, +/area/bigredv2/outside/marshal_office) +"aWk" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/w) +"aWs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aWt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aWu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aWv" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aWw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aWx" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aWy" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/telecomm/n_cave) +"aWz" = ( +/obj/structure/showcase{ + icon_state = "bus" + }, +/turf/open/floor/greengrid, +/area/bigredv2/outside/telecomm) +"aWB" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aWC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Operations Armory" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"aWD" = ( +/turf/open/floor/darkblue2/west, +/area/bigredv2/outside/admin_building) +"aWE" = ( +/turf/open/floor/darkbluecorners2, +/area/bigredv2/outside/admin_building) +"aWF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/darkblue2, +/area/bigredv2/outside/admin_building) +"aWG" = ( +/obj/structure/machinery/computer/communications{ + dir = 8 + }, +/obj/structure/surface/table, +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/outside/admin_building) +"aWH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"aWI" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/c) +"aWJ" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/c) +"aWK" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/e) +"aWL" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars, +/area/bigredv2/outside/e) +"aWN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"aWO" = ( +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = -32 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aWP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Virology Lab Chemistry" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"aWQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aWR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) +"aWS" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/glass/bottle/toxin, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"aWT" = ( +/obj/structure/bed, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"aWU" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"aWW" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"aWX" = ( +/obj/structure/surface/table, +/obj/item/toy/prize/ripley, +/obj/item/toy/prize/odysseus, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aWY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/restraint/adjustable/cable/cyan, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aXc" = ( +/obj/structure/machinery/light, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"aXd" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aXg" = ( +/obj/structure/sign/safety/terminal{ + pixel_y = 32 + }, +/obj/effect/landmark/good_item, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"aXj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"aXl" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"aXm" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/darkblue2/east, +/area/bigredv2/outside/admin_building) +"aXn" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"aXo" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"aXq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"aXr" = ( +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aXu" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aXw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) +"aXx" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Virology Lab Cell" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"aXy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"aXz" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"aXB" = ( +/obj/structure/surface/table, +/obj/item/toy/prize/mauler, +/obj/item/toy/prize/odysseus, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aXC" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/item/toy/prize/ripley, +/obj/item/toy/prize/odysseus, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aXD" = ( +/obj/structure/surface/table, +/obj/item/toy/prize/mauler, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aXE" = ( +/obj/structure/surface/table, +/obj/item/toy/prize/ripley, +/obj/item/toy/prize/mauler, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aXG" = ( +/obj/structure/surface/table, +/obj/item/toy/sword, +/obj/item/toy/gun, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"aXH" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aXL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"aXM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"aXN" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine{ + density = 0; + req_one_access_txt = "200" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/outside/admin_building) +"aXP" = ( +/obj/structure/surface/table, +/obj/item/tool/pen, +/turf/open/floor/darkblue2, +/area/bigredv2/outside/admin_building) +"aXQ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/outside/admin_building) +"aXS" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aXU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aXV" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aXW" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/e) +"aXY" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/w) +"aXZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper General Store Maintenance" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_store) +"aYc" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aYh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/outside/admin_building) +"aYi" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/platform_decoration, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"aYk" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"aYl" = ( +/obj/item/cell/hyper/empty, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"aYm" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Operations Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"aYo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/northeast, +/area/bigredv2/outside/admin_building) +"aYp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Operations Toilet" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"aYq" = ( +/obj/effect/landmark/objective_landmark/far, +/obj/structure/sink{ + pixel_x = 1; + pixel_y = 20 + }, +/obj/structure/mirror{ + pixel_y = 29 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/admin_building) +"aYs" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aYt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/eat, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aYu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aYv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"aYx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/e) +"aYA" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aYB" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"aYC" = ( +/obj/structure/surface/table, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"aYE" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/w) +"aYF" = ( +/turf/open/mars, +/area/bigredv2/outside/w) +"aYG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aYH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aYI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aYJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aYK" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/c) +"aYL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"aYN" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Operations Meeting Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"aYO" = ( +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"aYS" = ( +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/outside/admin_building) +"aYT" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"aYU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"aYV" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"aYW" = ( +/turf/open/floor/darkredcorners2/north, +/area/bigredv2/outside/admin_building) +"aYX" = ( +/obj/structure/machinery/robotic_fabricator, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"aYY" = ( +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"aYZ" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"aZa" = ( +/obj/effect/decal/mecha_wreckage/ripley/firefighter, +/turf/open/floor/mech_bay_recharge_floor, +/area/bigredv2/outside/office_complex) +"aZb" = ( +/obj/structure/machinery/mecha_part_fabricator, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"aZc" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aZd" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aZe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/e) +"aZh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Chapel" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/chapel) +"aZi" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/chapel) +"aZj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"aZk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/research/colony{ + name = "\improper Virology Lab Decontamination" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"aZl" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) +"aZm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aZn" = ( +/obj/structure/closet/secure_closet/quartermaster, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZo" = ( +/obj/structure/closet/secure_closet/cargotech{ + req_access = null; + req_one_access_txt = "21;101" + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZr" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZs" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZt" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZu" = ( +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZv" = ( +/obj/structure/machinery/door/window/eastleft{ + layer = 3.1 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZx" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZA" = ( +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/admin_building) +"aZB" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aZC" = ( +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aZE" = ( +/turf/open/floor/warnwhite, +/area/bigredv2/outside/office_complex) +"aZF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"aZG" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"aZH" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"aZJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"aZL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper General Store Maintenance" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"aZM" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZP" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/se) +"aZQ" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZR" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aZT" = ( +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aZU" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aZV" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"aZW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkredcorners2, +/area/bigredv2/outside/admin_building) +"aZX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"aZY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "Operations"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/obj/effect/landmark/good_item, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"baa" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"bac" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bad" = ( +/obj/item/device/analyzer, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bae" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"baf" = ( +/obj/structure/surface/table, +/obj/item/cell/hyper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bag" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/glass/beaker/sulphuric, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bah" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bai" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"baj" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bal" = ( +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"bam" = ( +/turf/open/floor/rampbottom/north, +/area/bigredv2/outside/chapel) +"ban" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/radio/headset, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"bao" = ( +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"bap" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"baq" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"bar" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"bat" = ( +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"bay" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/hunter_primary, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/crowbar, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baF" = ( +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"baG" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"baI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Operations" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"baJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"baK" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"baL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/hotdog, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"baM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/black, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"baN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_sw) +"baO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"baP" = ( +/obj/structure/surface/table, +/obj/item/paper, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"baR" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"baS" = ( +/turf/open/floor/chapel/west, +/area/bigredv2/outside/chapel) +"baT" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/chapel, +/area/bigredv2/outside/chapel) +"baU" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/chapel/west, +/area/bigredv2/outside/chapel) +"baW" = ( +/turf/open/floor/chapel, +/area/bigredv2/outside/chapel) +"bbb" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/mars, +/area/bigredv2/outside/w) +"bbc" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/w) +"bbe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbf" = ( +/obj/effect/spawner/random/tool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Cargo Bay" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"bbh" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbi" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbj" = ( +/obj/structure/surface/table, +/obj/item/alienjar, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"bbk" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"bbl" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/carpet7_3/west, +/area/bigredv2/outside/admin_building) +"bbm" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4 + }, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/admin_building) +"bbn" = ( +/obj/structure/safe, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"bbo" = ( +/obj/structure/bed/chair/comfy/blue, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bbp" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 6 + }, +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bbq" = ( +/obj/structure/bed/sofa/south/grey{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bbr" = ( +/obj/structure/surface/table, +/obj/item/storage/photo_album, +/obj/item/tool/pen/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bbs" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bbt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bbu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bbv" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bbw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/welding, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bbx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bby" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bbz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bbA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"bbB" = ( +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"bbC" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bbD" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"bbE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/surface/table/woodentable, +/obj/item/storage/bible, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"bbF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"bbG" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"bbH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"bbI" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"bbJ" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/w) +"bbM" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/device/flashlight, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"bbW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/carpet7_3/west, +/area/bigredv2/outside/admin_building) +"bbY" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"bbZ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras/wooden_tv{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"bca" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bcb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"bcc" = ( +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"bcd" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"bce" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bcf" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bcg" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bch" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/turf/open/floor/warnwhite, +/area/bigredv2/outside/office_complex) +"bci" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/warnwhite, +/area/bigredv2/outside/office_complex) +"bcj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"bck" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Private Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"bcl" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"bcn" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_virology) +"bco" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"bct" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/loadingarea/east, +/area/bigredv2/outside/cargo) +"bcu" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"bcv" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcw" = ( +/obj/effect/decal/mecha_wreckage/ripley, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control{ + id = "Cargonia"; + name = "Storm Shutters"; + pixel_x = 32 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcy" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcz" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcA" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcB" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = -30 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcC" = ( +/obj/structure/machinery/door_control{ + id = "Cargonia"; + name = "Storm Shutters"; + pixel_x = 32 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Cargo Bay Offices" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"bcF" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"bcG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"bcH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"bcI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"bcJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"bcK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"bcL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"bcM" = ( +/turf/open/floor/carpet5_1/west, +/area/bigredv2/outside/admin_building) +"bcN" = ( +/turf/open/floor/carpet13_5/west, +/area/bigredv2/outside/admin_building) +"bcO" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"bcP" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine{ + density = 0; + req_one_access_txt = "200" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"bcQ" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bcR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"bcS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"bcT" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"bcU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"bcV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"bcW" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"bcX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bcY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bda" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdd" = ( +/turf/open/floor/rampbottom, +/area/bigredv2/outside/chapel) +"bdg" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"bdh" = ( +/obj/effect/spawner/random/tool, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bdi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bdj" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Cargo Bay Offices" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"bdk" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"bdl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"bdm" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"bdn" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/woodentable, +/obj/item/device/camera, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"bdo" = ( +/turf/open/floor/darkred2/southwest, +/area/bigredv2/outside/admin_building) +"bdq" = ( +/obj/structure/surface/table, +/obj/item/trash/snack_bowl, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"bdr" = ( +/obj/structure/machinery/vending/snack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bds" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"bdt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"bdu" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bdv" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bdx" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bdy" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/red, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdA" = ( +/obj/structure/sign/prop1, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdC" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Private Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"bdE" = ( +/obj/structure/machinery/door_control{ + id = "Chapel"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"bdF" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"bdI" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"bdK" = ( +/obj/structure/largecrate, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bdL" = ( +/obj/structure/largecrate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bdM" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bdN" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bdO" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"bdP" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"bdW" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdZ" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/w) +"bec" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bed" = ( +/obj/effect/landmark/good_item, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bee" = ( +/obj/structure/closet/emcloset, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bef" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/lighter/random, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bei" = ( +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bej" = ( +/obj/structure/machinery/deployable/barrier, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Operations" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"bek" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"bel" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bem" = ( +/obj/item/device/taperecorder, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"ben" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Robotics" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"bep" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/se) +"beq" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/se) +"ber" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/se) +"bes" = ( +/turf/open/mars, +/area/bigredv2/outside/se) +"bet" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"bex" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bez" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beA" = ( +/obj/structure/machinery/light, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"beC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"beG" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/c) +"beH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"beI" = ( +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"beJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"beK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"beL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"beN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/prop3{ + pixel_y = 32 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"beP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/w) +"beQ" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/w) +"beT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beU" = ( +/turf/open/floor/loadingarea, +/area/bigredv2/outside/cargo) +"beV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Cargo Offices" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"beW" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beX" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/obj/item/tool/lighter/random, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"beZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"bfb" = ( +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"bfc" = ( +/obj/structure/barricade/wooden, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/c) +"bfd" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"bfe" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"bff" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"bfi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Office Complex Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"bfj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"bfk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bfl" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"bfn" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"bfo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"bfp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"bfr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bft" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"bfu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"bfv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Office Complex" + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bfw" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/se) +"bfy" = ( +/obj/structure/largecrate/random, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bfz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bfB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bfC" = ( +/obj/structure/largecrate, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bfD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bfE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bfF" = ( +/obj/structure/largecrate, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bfG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bfH" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bfI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"bfJ" = ( +/obj/item/trash/raisins, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"bfK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"bfL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"bfM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"bfO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"bfP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"bfQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex Janitor Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"bfR" = ( +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"bfV" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bfX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bfY" = ( +/obj/structure/largecrate/cow, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bfZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bga" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Cargo Bay Security" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"bgb" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bgc" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"bgd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"bge" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"bgf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"bgg" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"bgh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"bgi" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"bgj" = ( +/obj/structure/surface/table, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_15"; + pixel_y = 10 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"bgk" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"bgm" = ( +/obj/structure/janitorialcart, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"bgn" = ( +/obj/structure/janitorialcart, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"bgo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"bgq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bgr" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bgs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"bgt" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/syndi_cakes, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"bgu" = ( +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"bgw" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"bgx" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"bgy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"bgz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"bgA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"bgB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"bgE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bgI" = ( +/obj/structure/surface/table, +/obj/item/trash/semki, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"bgJ" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"bgK" = ( +/obj/structure/surface/table, +/obj/item/device/multitool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"bgL" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"bgM" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"bgN" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"bgO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"bgP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port) +"bgQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"bgR" = ( +/obj/structure/machinery/door_control{ + id = "Office Complex 1"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"bgT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"bgV" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"bgW" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/space_port_lz2) +"bgX" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"bgZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/explosive/grenade/high_explosive/frag{ + desc = "High-Explosive Fragmenting-Antipersonnel. A small, but deceptively strong fragmentation grenade that has been phasing out the M15 fragmentation grenades alongside the M40 HEDP. Capable of being loaded in the M92 Launcher, or thrown by hand. This one seems to have weird insciptions all over it. You can barely make out 'PrAIs3 thE H3f@ G0d'" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"bhb" = ( +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"bhe" = ( +/obj/structure/machinery/light, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bhi" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/c) +"bhk" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"bhl" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"bhp" = ( +/obj/structure/closet/jcloset, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"bhq" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/se) +"bhr" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/se) +"bhs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_east) +"bhu" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"bhv" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"bhw" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"bhx" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"bhy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"bhz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"bhA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"bhF" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"bhI" = ( +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"bhL" = ( +/obj/item/prop/helmetgarb/gunoil, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"bhO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/mars, +/area/bigredv2/outside/c) +"bhP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/mars, +/area/bigredv2/outside/c) +"bhQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"bhR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"bhT" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"bhU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"bhX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"bhY" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"bia" = ( +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"bic" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/mars, +/area/bigredv2/outside/se) +"bid" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"bie" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/space_port_lz2) +"biq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bir" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bit" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"biw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"bix" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"biA" = ( +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"biD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"biE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex Janitor Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"biH" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"biI" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Engineering Landing Zone" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port_lz2) +"biL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/megaphone, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"biN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"biQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/greengrid, +/area/bigredv2/outside/telecomm) +"biV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating, +/area/bigredv2/outside/c) +"bja" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) +"bjb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) +"bjc" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/se) +"bjd" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"bje" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port_lz2) +"bji" = ( +/obj/item/reagent_container/glass/bottle/tramadol, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bjk" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"bjl" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/se) +"bjm" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/se) +"bjn" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"bjo" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port_lz2) +"bjp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"bjw" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/s) +"bjx" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/s) +"bjy" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"bjz" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/s) +"bjA" = ( +/turf/open/mars, +/area/bigredv2/outside/s) +"bjB" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/s) +"bjC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/s) +"bjD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"bjH" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/s) +"bjJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"bjK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"bjL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"bjM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bjN" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"bjO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"bjR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Cargo Bay Quartermaster" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"bjT" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/w) +"bjY" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/s) +"bka" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/s) +"bkb" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/s) +"bkd" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/s) +"bkf" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"bkg" = ( +/obj/structure/machinery/light, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"bkh" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/se) +"bki" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/se) +"bkl" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bkn" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bko" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Cargo Bay Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"bkp" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/s) +"bkq" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/s) +"bkr" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/s) +"bks" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/s) +"bku" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"bkw" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"bkx" = ( +/obj/effect/spawner/gibspawner/human, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"bky" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/se) +"bkz" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Cargo Bay Quartermaster" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"bkA" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bkB" = ( +/obj/structure/machinery/computer/arcade, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bkC" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/s) +"bkD" = ( +/obj/structure/machinery/vending/sovietsoda{ + icon_state = "sovietsoda-broken"; + stat = 1 + }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"bkE" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"bkG" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"bkH" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/filtration_plant) +"bkI" = ( +/obj/structure/cryofeed/right{ + name = "\improper coolant feed" + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/outside/filtration_plant) +"bkJ" = ( +/obj/structure/cryofeed, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/outside/filtration_plant) +"bkK" = ( +/obj/structure/closet/toolcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"bkL" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/tank/air, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"bkM" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"bkN" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"bkO" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"bkP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Atmospherics Condenser Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"bkS" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"bkT" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bkU" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bkV" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/se) +"bkY" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 30 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"bld" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blg" = ( +/obj/structure/machinery/computer/ordercomp, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blh" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bli" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + health = 25000 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + health = 25000 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bll" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blm" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bln" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blo" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blp" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blq" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/s) +"blr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/s) +"blu" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/s) +"blv" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/s) +"blx" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/item/tool/extinguisher, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"bly" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"blA" = ( +/obj/structure/dispenser/oxygen, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"blB" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"blC" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"blD" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/firealarm, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"blE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"blF" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Atmospherics Condenser Air Filtration" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"blG" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"blT" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"blV" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"blW" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"blX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"blY" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"blZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bma" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bmb" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"bme" = ( +/turf/open/mars, +/area/bigredv2/outside/sw) +"bmf" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"bmg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"bmh" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"bmi" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/curtain/red, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) +"bmj" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) +"bml" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"bmm" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bmn" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"bmp" = ( +/obj/structure/machinery/mill, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bmq" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bms" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"bmt" = ( +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"bmu" = ( +/obj/structure/machinery/computer/station_alert, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bmw" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bmx" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"bmy" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"bmz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"bmA" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/s) +"bmB" = ( +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"bmC" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"bmD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bmF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bmG" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"bmH" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"bmJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"bmM" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port_lz2) +"bmN" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"bmO" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"bmP" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/item/stack/sheet/metal, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"bmQ" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) +"bmR" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"bmS" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bmT" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"bmV" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"bmW" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bmX" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bmZ" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"bna" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"bnb" = ( +/obj/structure/machinery/door_control{ + id = "Filtration Plant"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"bnd" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/computer3/server, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"bne" = ( +/obj/structure/cryofeed, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/outside/filtration_plant) +"bnf" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"bng" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bnh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bnj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Atmospherics Condenser Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"bnl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bnm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bnn" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bno" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/headset, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bnp" = ( +/obj/structure/machinery/computer/area_atmos/area, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"bnq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"bnr" = ( +/obj/structure/largecrate/random, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"bns" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering SMES" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"bnt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/welding, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bnu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"bnw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bnx" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/meson, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bny" = ( +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 + }, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/surface/table/reinforced, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Lambda Labs"; + phone_id = "Virology" + }, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"bnz" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/zippo, +/obj/item/tool/lighter/zippo, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"bnA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"bnB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bnE" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bnF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bnH" = ( +/obj/structure/machinery/computer/general_air_control, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"bnI" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"bnK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"bnL" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"bnM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"bnN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"bnO" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"bnQ" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"bnR" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) +"bnS" = ( +/obj/item/trash/eat, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bnT" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "\improper Engineering Secure Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"bnV" = ( +/obj/structure/sign/safety/electronics{ + pixel_y = 32 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bnW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/engineering) +"bnX" = ( +/obj/item/folder/yellow, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bnY" = ( +/obj/structure/machinery/photocopier, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"bnZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"boa" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bob" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"boc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"boe" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"bof" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"boj" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"bok" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"boq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"bor" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"bos" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bou" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"bov" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/fireaxe, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"box" = ( +/obj/item/frame/table, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"boy" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"boA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"boG" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"boH" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"boI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"boK" = ( +/obj/item/trash/pistachios, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"boL" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"boM" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"boN" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"boR" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"boS" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"boU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Chief Engineer's Office" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"boV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Complex" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"boW" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"boX" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"boY" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/transmitter/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "yellow"; + phone_id = "Filtration"; + pixel_y = 24 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"boZ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bpa" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bpc" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_plant) +"bpe" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"bpf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bpi" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"bpj" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"bpk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Tool Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"bpl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"bpm" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/welding, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bpn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"bpo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bpp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bpq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bpu" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"bpx" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/sw) +"bpy" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/sw) +"bpz" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Lockers" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"bpA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Lockers" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"bpC" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"bpD" = ( +/obj/structure/surface/rack, +/obj/item/device/camera_film, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"bpE" = ( +/obj/structure/surface/rack, +/obj/item/device/analyzer, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bpF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bpH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bpI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/lightreplacer, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bpK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bpL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/engineering) +"bpM" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bpN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bpO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bpP" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bpQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bpR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bpS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/good_item, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bpU" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bpV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bpX" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/se) +"bqa" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/se) +"bqc" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"bqd" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"bqf" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Break Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"bqk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"bql" = ( +/obj/structure/machinery/door_control{ + id = "Engineering"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"bqo" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bqv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bqw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bqA" = ( +/obj/structure/closet/toolcloset, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"bqE" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"bqI" = ( +/obj/structure/machinery/vending/snack{ + icon_state = "snack-broken"; + stat = 1 + }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"bqJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/engineering) +"bqK" = ( +/obj/item/folder/yellow, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"bqL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engineering Workshop" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"bqM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bqN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bqP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engine Reactor Control" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"bqT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bqV" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/paper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"bqX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"brb" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"bre" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"brf" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engineering Workshop" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"brg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bri" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"brj" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"brn" = ( +/obj/structure/machinery/power/breakerbox/activated, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"bro" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bru" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"brv" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"brw" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"brx" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"bry" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"brz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"brA" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/item/tool/pen, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"brB" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"brC" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"brD" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_cave_cas) +"brE" = ( +/turf/open/floor/greengrid, +/area/bigredv2/outside/filtration_cave_cas) +"brI" = ( +/obj/structure/sign/safety/galley{ + pixel_x = -32 + }, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"brJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/glass, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"brK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/hunter_primary, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"brL" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"brM" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"brO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"brP" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"brR" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/engineering) +"brU" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"brV" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"brW" = ( +/obj/structure/surface/table, +/obj/item/weapon/baton, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"brY" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"brZ" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/outside/filtration_plant) +"bsa" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"bsb" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"bsc" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"bsd" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"bse" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"bsm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bss" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + icon = 'icons/obj/pipes/manifold.dmi'; + icon_state = "map"; + name = "Pipe manifold" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"bsw" = ( +/obj/item/trash/hotdog{ + pixel_x = -12; + pixel_y = -11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 3; + pixel_y = 13 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"bsB" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/filtration_plant) +"bsC" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"bsD" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"bsE" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"bsF" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/solar_tracker, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"bsG" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"bsH" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor, +/area/bigredv2/outside/filtration_cave_cas) +"bsI" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/sw) +"bsJ" = ( +/obj/structure/machinery/vending/coffee{ + icon_state = "coffee-broken"; + stat = 1 + }, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"bsK" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"bsL" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"bsM" = ( +/obj/structure/machinery/door_control{ + id = "Engineering"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"bsN" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stock_parts/smes_coil, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"bsP" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"bsX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Complex" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"bsY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Atmospherics Condenser" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"bsZ" = ( +/obj/structure/janitorialcart, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"bta" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"btb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"btc" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"btd" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"bte" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"bti" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"btj" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"btk" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"btn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/s) +"btr" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"btt" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"btu" = ( +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"btw" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/lz2_south_cas) +"btA" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"btB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"btD" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/s) +"btH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Engineering Complex" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"btJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"btK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"btN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"btT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/spacecash/c1{ + pixel_x = -6; + pixel_y = -8 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"btZ" = ( +/obj/item/clothing/under/color/orange{ + pixel_y = -7; + pixel_x = 6 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"bua" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Complex" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"bub" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/s) +"buc" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/s) +"bud" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/s) +"buj" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves/mining) +"buk" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"bun" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/s) +"buo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/s) +"buu" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/s) +"buy" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"buz" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves_sw) +"buB" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"buF" = ( +/obj/structure/closet/crate/trashcart{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/ganucci, +/obj/item/stack/sheet/cardboard{ + pixel_x = 7; + pixel_y = -2 + }, +/obj/item/trash/eat{ + pixel_x = -9; + pixel_y = -5 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"buJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/s) +"buQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_north) +"buR" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz2_south_cas) +"buU" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"buY" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"bvk" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/s) +"bvv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/lz2_south_cas) +"bvw" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz2_south_cas) +"bvz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "eta"; + name = "Eta Lockdown" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/eta) +"bvD" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves/mining) +"bvF" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/lz2_south_cas) +"bvH" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/eta) +"bvK" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Power Substation" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/lz2_south_cas) +"bvO" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/caves/eta/xenobiology) +"bvP" = ( +/turf/open/mars, +/area/bigredv2/caves/eta/research) +"bvQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/eta) +"bvR" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_se) +"bvS" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/plating, +/area/bigredv2/outside/lz2_south_cas) +"bvV" = ( +/obj/structure/machinery/door/poddoor/almayer/closed, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"bvW" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/eta) +"bvX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/eta) +"bvY" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/eta) +"bvZ" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"bwa" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"bwb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"bwc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"bwe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"bwj" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/caves/eta/xenobiology) +"bwr" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "green"; + phone_id = "Virology Lab" + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"bww" = ( +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"bwx" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/eta/xenobiology) +"bwz" = ( +/obj/structure/surface/table, +/turf/open/floor/warnwhite, +/area/bigredv2/outside/office_complex) +"bwA" = ( +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bwG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Eta Lab Storage Bay" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) +"bwH" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) +"bwI" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + name = "\improper Eta Lab Decontamination" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"bwK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bwL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/loadingarea/north, +/area/bigredv2/caves/eta/storage) +"bwM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/loadingarea/north, +/area/bigredv2/caves/eta/storage) +"bwN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bwO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bwP" = ( +/obj/structure/filingcabinet, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bwQ" = ( +/obj/structure/surface/table, +/obj/item/tool/screwdriver, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Eta Labs"; + phone_color = "yellow"; + phone_id = "Robotics" + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bwR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bwS" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bwT" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bwU" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"bwV" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"bwW" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"bwX" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/caves/eta/research) +"bwY" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/eta/research) +"bwZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/eta/research) +"bxa" = ( +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/eta/research) +"bxb" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/caves/eta/research) +"bxc" = ( +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxe" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxh" = ( +/turf/open/floor/darkblue2/northwest, +/area/bigredv2/caves/eta/storage) +"bxi" = ( +/turf/open/floor/darkblue2/northeast, +/area/bigredv2/caves/eta/storage) +"bxj" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bxk" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/item/clothing/head/soft/ferret{ + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bxl" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"bxn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bxo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bxp" = ( +/turf/open/floor/darkyellow2/east, +/area/bigredv2/caves/eta/research) +"bxq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Robotics" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) +"bxs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bxt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/storage) +"bxu" = ( +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/storage) +"bxv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/storage) +"bxw" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bxx" = ( +/obj/structure/closet/l3closet/scientist, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"bxy" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"bxz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bxA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bxB" = ( +/obj/structure/largecrate/guns, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"bxC" = ( +/obj/structure/largecrate/guns, +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"bxD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bxF" = ( +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/storage) +"bxG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/storage) +"bxH" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bxI" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"bxJ" = ( +/obj/structure/machinery/r_n_d/organic_analyzer, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/caves/eta/research) +"bxK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxL" = ( +/obj/structure/powerloader_wreckage/ft, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bxM" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bxO" = ( +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"bxP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bxQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/caves/eta/research) +"bxR" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"bxS" = ( +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"bxT" = ( +/obj/structure/bed, +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"bxU" = ( +/obj/structure/largecrate/cow, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"bxV" = ( +/obj/structure/largecrate/cow, +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"bxW" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bxX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/storage) +"bxY" = ( +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"bya" = ( +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"byb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"byc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"bye" = ( +/turf/open/mars_cave/mars_cave_12, +/area/bigredv2/caves_research) +"byf" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"byg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"byh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"byi" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"byj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/storage) +"byk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"byl" = ( +/obj/structure/machinery/photocopier, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"byn" = ( +/obj/structure/machinery/r_n_d/bioprinter, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/caves/eta/research) +"byo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"byp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"byq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"byr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"bys" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/caves/eta/research) +"byt" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"byu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"byv" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"byw" = ( +/obj/structure/largecrate/mule, +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"byx" = ( +/obj/structure/largecrate/mule, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"byy" = ( +/obj/structure/largecrate/lisa, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"byz" = ( +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/caves/eta/storage) +"byA" = ( +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/caves/eta/storage) +"byB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/caves/eta/storage) +"byC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/caves/eta/storage) +"byE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Technical Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"byF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Eta Lab Dormitories" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"byG" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_se) +"byH" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"byI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"byJ" = ( +/obj/structure/closet/l3closet/scientist, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"byK" = ( +/obj/structure/closet/l3closet/scientist, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"byL" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"byM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"byN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"byO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"byP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"byQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"byR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"byS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"byT" = ( +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"byU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"byV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"byW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/caves/eta/research) +"byX" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/eta/research) +"byY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"byZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Robotics" + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bza" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"bzb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bzc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"bzd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"bze" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"bzf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"bzg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"bzh" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bzi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"bzj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"bzk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bzl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bzm" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bzn" = ( +/turf/open/mars_cave/mars_cave_22, +/area/bigredv2/caves/eta/research) +"bzo" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_research) +"bzp" = ( +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/eta/storage) +"bzq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/eta/storage) +"bzr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/eta/storage) +"bzs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Eta Lab Armory" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"bzt" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"bzu" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves/eta/research) +"bzv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves/eta/research) +"bzw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"bzx" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"bzy" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bzz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bzA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"bzB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"bzC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"bzD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bzE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/darkblue2/north, +/area/bigredv2/caves/eta/research) +"bzF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/item/phone, +/turf/open/floor/darkblue2/north, +/area/bigredv2/caves/eta/research) +"bzG" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/darkblue2/north, +/area/bigredv2/caves/eta/research) +"bzH" = ( +/obj/structure/closet/secure_closet/RD, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/darkblue2/north, +/area/bigredv2/caves/eta/research) +"bzI" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table, +/turf/open/floor/darkblue2/northeast, +/area/bigredv2/caves/eta/research) +"bzJ" = ( +/obj/item/weapon/gun/smg/m39, +/obj/structure/closet/secure_closet/guncabinet/wy, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"bzK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bzL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"bzM" = ( +/obj/structure/closet/secure_closet, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"bzN" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"bzO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/eta/research) +"bzP" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves/eta/research) +"bzQ" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Server" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) +"bzR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Eta Lab Security Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) +"bzT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"bzU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bzW" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/darkblue2/northeast, +/area/bigredv2/caves/eta/research) +"bzX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bzY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"bzZ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"bAa" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bAb" = ( +/obj/structure/bed/chair, +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves/eta/research) +"bAc" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves/eta/research) +"bAd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves/eta/research) +"bAe" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_se) +"bAf" = ( +/obj/structure/machinery/r_n_d/server, +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/eta/storage) +"bAg" = ( +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/eta/storage) +"bAh" = ( +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"bAi" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bAj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bAn" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bAo" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bAp" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/research) +"bAq" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/computer/aifixer, +/obj/structure/surface/table, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/research) +"bAr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"bAs" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"bAu" = ( +/obj/structure/surface/table, +/obj/item/storage/box/wy_mre, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bAv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"bAw" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Server" + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"bAx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"bAy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"bAz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bAA" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bAB" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"bAC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bAD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Director's Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"bAE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/research) +"bAF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/caves/eta/research) +"bAH" = ( +/obj/structure/lamarr, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/research) +"bAI" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"bAJ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"bAK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bAL" = ( +/obj/structure/surface/table, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bAM" = ( +/turf/open/mars_cave/mars_cave_12, +/area/bigredv2/caves/eta/research) +"bAN" = ( +/obj/structure/machinery/telecomms/server, +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/eta/storage) +"bAO" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"bAP" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"bAQ" = ( +/obj/structure/closet/secure_closet/security/science, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bAR" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/caves/eta/research) +"bAS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkblue2, +/area/bigredv2/caves/eta/research) +"bAT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/darkblue2, +/area/bigredv2/caves/eta/research) +"bAU" = ( +/obj/structure/machinery/light, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"bAV" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/caves/eta/research) +"bAW" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"bAX" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"bAY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bAZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bBa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"bBb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkred2/northwest, +/area/bigredv2/caves/eta/xenobiology) +"bBc" = ( +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/xenobiology) +"bBd" = ( +/obj/structure/target, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/xenobiology) +"bBe" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/xenobiology) +"bBf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkred2/northeast, +/area/bigredv2/caves/eta/xenobiology) +"bBg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"bBh" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/northwest, +/area/bigredv2/caves/eta/research) +"bBj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"bBk" = ( +/obj/structure/filingcabinet/medical, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"bBl" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"bBn" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/biogenerator, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"bBo" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/darkred2/northeast, +/area/bigredv2/caves/eta/research) +"bBp" = ( +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/research) +"bBq" = ( +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/xenobiology) +"bBr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"bBs" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"bBt" = ( +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/xenobiology) +"bBv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"bBx" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Eta Lab Maintenance Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) +"bBA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bBB" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bBC" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/research) +"bBE" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"bBH" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Cell" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"bBI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/research) +"bBJ" = ( +/turf/open/floor/darkred2/southwest, +/area/bigredv2/caves/eta/xenobiology) +"bBK" = ( +/turf/open/floor/darkred2, +/area/bigredv2/caves/eta/xenobiology) +"bBL" = ( +/turf/open/floor/darkred2/southeast, +/area/bigredv2/caves/eta/xenobiology) +"bBN" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"bBO" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"bBP" = ( +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/research) +"bBQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkred2, +/area/bigredv2/caves/eta/research) +"bBR" = ( +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/research) +"bBS" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Cell" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/xenobiology) +"bBT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"bBU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"bBV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bBW" = ( +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bBX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"bBY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"bBZ" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bCa" = ( +/obj/structure/xenoautopsy/tank, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"bCb" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"bCc" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"bCd" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"bCe" = ( +/obj/structure/surface/table, +/obj/item/alienjar, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"bCf" = ( +/obj/structure/surface/table, +/obj/structure/xenoautopsy, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"bCg" = ( +/obj/structure/surface/table, +/obj/item/oldresearch/Blood, +/obj/item/oldresearch/Blood, +/obj/item/tool/pen, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"bCi" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/eta/xenobiology) +"bCj" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/darkgreen2/north, +/area/bigredv2/caves/eta/xenobiology) +"bCk" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/eta/xenobiology) +"bCl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"bCm" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"bCn" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"bCo" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"bCp" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"bCq" = ( +/turf/open/floor/darkgreen2/west, +/area/bigredv2/caves/eta/xenobiology) +"bCr" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkgreen2/east, +/area/bigredv2/caves/eta/xenobiology) +"bCs" = ( +/obj/effect/landmark/good_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bCt" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"bCu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bCv" = ( +/obj/structure/surface/table, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"bCw" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"bCx" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"bCy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"bCz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Xenobiology Lab" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/xenobiology) +"bCA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"bCC" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"bCE" = ( +/obj/item/stack/sheet/xenochitin, +/turf/open/mars, +/area/bigredv2/caves/eta/research) +"bCF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bCG" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"bCI" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"bCJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars, +/area/bigredv2/caves/eta/research) +"bCK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/mars, +/area/bigredv2/caves/eta/research) +"bCM" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/effect/spawner/random/technology_scanner, +/obj/item/xenos_claw, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"bCN" = ( +/obj/structure/closet/crate/secure, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"bCO" = ( +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/eta/xenobiology) +"bCP" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreen2, +/area/bigredv2/caves/eta/xenobiology) +"bCQ" = ( +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/eta/xenobiology) +"bCR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Eta Lab" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"bCS" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"bCT" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"bCU" = ( +/obj/structure/surface/table, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"bCV" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"bCW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"bCX" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"bCY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"bCZ" = ( +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"bDa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkred2, +/area/bigredv2/caves/eta/research) +"bDb" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/xenobiology) +"bDc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"bDd" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/xenobiology) +"bDe" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"bDf" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"bDg" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkred2/southeast, +/area/bigredv2/caves/eta/research) +"bDh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/teleport/station, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bDi" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bDj" = ( +/obj/structure/machinery/computer/WYresearch, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bDk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) +"bDl" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"bDm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"bDn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"bDo" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"bDp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/cabinet, +/obj/item/disk/nuclear, +/obj/item/weapon/gun/pistol/mod88, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"bDq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/cabinet, +/obj/item/clothing/accessory/armband, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"bDr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"bDs" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"bDt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/good_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"bDu" = ( +/obj/structure/surface/table, +/obj/item/book/manual/nuclear, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"bDv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"bDx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bDy" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bDz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"bDA" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/pod/old{ + name = "Personal Computer" + }, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"bDB" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"bDC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"bDD" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"bDE" = ( +/obj/item/trash/kepler, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bDF" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bDG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"bDH" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"bDJ" = ( +/obj/structure/showcase, +/turf/open/floor/carpet6_2/west, +/area/bigredv2/caves/eta/living) +"bDK" = ( +/obj/structure/showcase{ + desc = "A stand with a plastic display of some kind of weird machine."; + icon_state = "coinpress0" + }, +/turf/open/floor/carpet10_8/west, +/area/bigredv2/caves/eta/living) +"bDL" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"bDM" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bDN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"bDO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Research Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"bDP" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Canteen" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"bDQ" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"bDR" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"bDS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"bDT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"bDU" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"bDV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"bDW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"bDX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"bDY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/plantspray/weeds, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"bEa" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/toxin{ + pixel_y = 6; + pixel_x = -7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"bEc" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"bEd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"bEe" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"bEf" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/eta/xenobiology) +"bEg" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/caves/eta/xenobiology) +"bEh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"bEi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"bEj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Eta Lab Restroom" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"bEk" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/eta/xenobiology) +"bEl" = ( +/obj/structure/showcase{ + icon_state = "mechfab1" + }, +/turf/open/floor/carpet5_1/west, +/area/bigredv2/caves/eta/living) +"bEm" = ( +/obj/structure/showcase{ + icon_state = "bus" + }, +/turf/open/floor/carpet9_4/west, +/area/bigredv2/caves/eta/living) +"bEn" = ( +/obj/structure/bookcase/manuals/medical, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"bEo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"bEp" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"bEq" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"bEr" = ( +/turf/open/mars_cave/mars_cave_22, +/area/bigredv2/caves/eta/xenobiology) +"bEt" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"bEv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"bEw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"bEx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/living) +"bEy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"bEz" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bEA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"bEB" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/darkblue2/northwest, +/area/bigredv2/caves/eta/research) +"bEC" = ( +/obj/structure/machinery/light, +/obj/structure/closet/cabinet, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"bED" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"bEE" = ( +/obj/structure/surface/table, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"bEF" = ( +/obj/structure/surface/table, +/obj/item/trash/semki, +/obj/structure/pipes/vents/pump, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bEG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"bEH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Relaxation" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"bEI" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bEJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"bEK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"bEL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"bEM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"bEN" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bEO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"bEP" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"bEQ" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"bER" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"bES" = ( +/obj/structure/machinery/light, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bET" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"bFd" = ( +/obj/item/frame/rack, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"bFw" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/telecomm/warehouse) +"bFx" = ( +/obj/item/trash/crushed_cup{ + pixel_x = -7; + pixel_y = -8 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/ne) +"bFz" = ( +/obj/structure/largecrate/random/mini{ + pixel_x = -6; + pixel_y = 7; + layer = 3.1 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"bGp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/obj/item/tool/hand_labeler, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"bGC" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/n) +"bGL" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lz2_south_cas) +"bGP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"bGQ" = ( +/turf/open/asphalt/cement/cement4, +/area/bigredv2/caves_lambda) +"bGX" = ( +/obj/item/tool/weldingtool{ + pixel_x = 9; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"bHk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"bII" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"bJb" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement, +/area/bigredv2/caves_lambda) +"bJz" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = -9; + pixel_y = 13 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"bJJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bJQ" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/n) +"bJS" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"bJZ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/space_port_lz2) +"bKV" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/lambda_cave_cas) +"bKY" = ( +/obj/structure/fence, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/filtration_cave_cas) +"bLi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"bLA" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"bLG" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bLO" = ( +/obj/item/trash/sosjerky{ + pixel_x = 8; + pixel_y = 12 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/w) +"bMa" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/mod88, +/obj/item/weapon/gun/pistol/mod88, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"bMf" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_plant) +"bMz" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/ne) +"bMJ" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) +"bNl" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/lambda/xenobiology) +"bNE" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"bNK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Medical Clinic"; + locked = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"bOR" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/shell, +/turf/open/floor/whiteblue/southeast, +/area/bigredv2/outside/medical) +"bPl" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump, +/obj/structure/transmitter/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "green"; + phone_id = "Clinic"; + pixel_y = 24 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"bPq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"bPy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"bPY" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"bQb" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lz2_west_cas) +"bQe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bQh" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/n) +"bQi" = ( +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"bQw" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement9, +/area/bigredv2/caves_lambda) +"bQG" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_lambda) +"bRd" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/bigredv2/oob) +"bRm" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz1_telecomm_cas) +"bRC" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "reactor_meltdown" + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"bRK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/drill{ + pixel_y = 8 + }, +/obj/item/tool/pickaxe/drill{ + pixel_y = -8 + }, +/obj/item/tool/pickaxe/drill, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"bRV" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"bSk" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/filtration_plant) +"bSw" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-10" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"bSy" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"bSL" = ( +/obj/structure/window_frame/solaris, +/obj/item/shard, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"bTm" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random, +/obj/item/device/flashlight/lamp{ + pixel_y = 15 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"bTW" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_se) +"bUy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-in" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"bUJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"bVq" = ( +/obj/item/trash/chips{ + pixel_y = 4; + pixel_x = -8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"bVX" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_north) +"bWk" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"bWl" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"bWw" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"bXe" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"bXq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"bXz" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/c) +"bXC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/outside/medical) +"bYa" = ( +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bYx" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3; + pixel_x = 24 + }, +/obj/item/trash/chips{ + pixel_y = -6; + pixel_x = -3 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"bYF" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/bigredv2/outside/virology) +"bYW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bZp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"bZH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"bZJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/radiation, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/engineering) +"bZL" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"caD" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/s) +"caL" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"caN" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"ccP" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"cdA" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_west_cas) +"cdI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"cec" = ( +/obj/structure/bed, +/obj/item/toy/plush/farwa, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"ced" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/item/weapon/gun/rifle/m41a/training, +/obj/effect/spawner/gibspawner/human, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"ceA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) +"cfr" = ( +/obj/item/explosive/grenade/baton{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"cgi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/lambda_cave_cas) +"cgo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + dir = 8; + pixel_y = 12; + pixel_x = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"cgt" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"cgz" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/armor/det_suit{ + pixel_x = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"cgB" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump, +/obj/item/device/flashlight/lamp{ + pixel_y = 8; + pixel_x = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ashtray/glass{ + icon_state = "ashtray_half_gl"; + pixel_x = -5 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"cgL" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"chq" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_lambda) +"chx" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler{ + pixel_y = 9 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"chz" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"chH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Dormitories EVA"; + icon_state = "door_open"; + density = 0 + }, +/obj/item/stack/sheet/wood, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"ciG" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/n) +"ciY" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"ckr" = ( +/obj/item/device/defibrillator{ + pixel_x = -9; + pixel_y = -9 + }, +/obj/item/reagent_container/hypospray/autoinjector/adrenaline{ + pixel_y = 6; + pixel_x = 9 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"cla" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"cln" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/space_port) +"cls" = ( +/obj/structure/machinery/iv_drip, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + pixel_x = -5; + pixel_y = 2; + layer = 2.8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"clB" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"cmC" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"cmG" = ( +/obj/item/ore/iron{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"cnk" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_2, +/area/space) +"cns" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "se-checkpoint" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"cnF" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/eta) +"cnG" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"cnQ" = ( +/obj/item/paper, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"coT" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"cpc" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_se) +"cpo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/gm/river/darkred, +/area/bigredv2/outside/c) +"cpw" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"cpQ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"cqj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"cqp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"cqZ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"crd" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"crl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"crv" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cry" = ( +/obj/structure/surface/table/reinforced, +/obj/item/restraint/handcuffs, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"crQ" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_virology) +"csB" = ( +/obj/structure/prop/dam/crane/damaged, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"csC" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"csE" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz1_telecomm_cas) +"ctw" = ( +/obj/item/tool/warning_cone, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/se) +"ctE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Private Office"; + density = 0; + icon_state = "door_open" + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"ctT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"cud" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"cui" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"cuG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"cuW" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars, +/area/bigredv2/outside/n) +"cvi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tunnel{ + id = "hole2" + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"cxi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"cya" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = 8; + pixel_y = -5 + }, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"cyv" = ( +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"czE" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -4; + pixel_y = -10 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"czI" = ( +/obj/item/stack/rods{ + pixel_x = -11; + pixel_y = -8 + }, +/obj/item/stack/rods{ + pixel_y = 13; + pixel_x = 17 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"czS" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"czV" = ( +/obj/item/tool/pickaxe, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"cAf" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_north) +"cAN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"cAR" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/mars, +/area/bigredv2/outside/n) +"cBq" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"cCr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_sw) +"cCu" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"cCY" = ( +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"cCZ" = ( +/obj/effect/decal/cleanable/ash{ + pixel_y = -21 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"cDx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Abandoned Mining Storage" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cDC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"cDG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + name = "Interview Room APC" + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"cDI" = ( +/obj/item/stack/sheet/metal{ + pixel_y = 9; + pixel_x = 9 + }, +/obj/item/stack/rods{ + pixel_y = 4; + pixel_x = -13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"cFd" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/se) +"cFx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"cFE" = ( +/turf/open/mars/mars_dirt_6, +/area/bigredv2/outside/nw) +"cGi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/red/west, +/area/bigredv2/outside/marshal_office) +"cGR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Medical Clinic Treatment"; + density = 0; + icon_state = "door_open" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"cGZ" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/lz1_north_cas) +"cHn" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/lz2_south_cas) +"cHy" = ( +/obj/item/device/flashlight, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cHH" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/ne) +"cHI" = ( +/obj/structure/closet/crate, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"cIq" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"cIC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"cIE" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"cIP" = ( +/obj/item/paper/bigred/smuggling, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cJa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Operations" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"cJd" = ( +/turf/open/space/basic, +/area/space) +"cJh" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"cJn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/ne) +"cJA" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"cJG" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves_north) +"cKu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"cKy" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/weapon/baton/damaged{ + pixel_y = 20; + pixel_x = 16 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"cKH" = ( +/obj/effect/spawner/random/bomb_supply{ + pixel_x = 6; + pixel_y = -3 + }, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"cLg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"cLo" = ( +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/outside/medical) +"cLq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"cLZ" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"cMB" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"cMU" = ( +/obj/structure/surface/table, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/tool/hand_labeler{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"cNb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"cNH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"cOa" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"cOc" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/c) +"cOl" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_research) +"cOt" = ( +/obj/structure/sign/poster/clf, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"cOu" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"cOJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"cPg" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"cPh" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"cPr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/c) +"cPE" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/whiteblue, +/area/bigredv2/outside/medical) +"cPZ" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cQi" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "medbay-v3" + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"cQO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"cRb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cRy" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/mars, +/area/bigredv2/outside/c) +"cRP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cSl" = ( +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"cSu" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"cSB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/wood{ + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"cSD" = ( +/obj/item/shard, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"cSK" = ( +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"cSP" = ( +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/filtration_cave_cas) +"cUt" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"cUK" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"cUN" = ( +/obj/item/clothing/accessory/storage/holster/armpit, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"cVd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"cVh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"cVL" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_se) +"cVS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"cVY" = ( +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"cWD" = ( +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/turf/open/mars, +/area/bigredv2/outside/nw) +"cWX" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/filtration_plant) +"cXG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"cYC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/coffin/woodencrate, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"cYI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"cYJ" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_west_cas) +"cZj" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"cZB" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"cZW" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"daf" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"day" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"daB" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Lambda Labs"; + phone_id = "Xenobiology" + }, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"daY" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 6; + pixel_y = -9 + }, +/turf/open/mars, +/area/bigredv2/outside/c) +"dbi" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/outside/telecomm/lz2_cave) +"dbO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"dcB" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"dcD" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/mars, +/area/bigredv2/outside/s) +"ddt" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"ddu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"dex" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/telecomm/lz2_cave) +"dfA" = ( +/obj/item/clothing/mask/gas{ + pixel_y = 9 + }, +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"dgi" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/trash/crushed_cup{ + pixel_x = -7; + pixel_y = -8 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"dgy" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/c) +"dgH" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/caves_north) +"dgI" = ( +/obj/item/tool/weldingtool{ + pixel_x = 9; + pixel_y = 1 + }, +/obj/structure/barricade/wooden{ + dir = 8; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"dgQ" = ( +/obj/item/device/flashlight/lamp/tripod{ + layer = 6; + pixel_y = 11 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"dhB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"dhN" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/almayer{ + id = "rad_door"; + name = "\improper Radiation Shielding" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"dhS" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"dij" = ( +/obj/structure/fence, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"din" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"diJ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"diR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"djV" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"dka" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"dkl" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/nw) +"dkY" = ( +/obj/structure/platform, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"dme" = ( +/turf/open/mars/mars_dirt_5, +/area/bigredv2/outside/nw) +"dmB" = ( +/obj/item/tool/pickaxe, +/turf/open/mars, +/area/bigredv2/outside/filtration_plant) +"dmE" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/e) +"dmO" = ( +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"dnw" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"dnz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"dnC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/surface/table/woodentable{ + dir = 8; + flipped = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"dnV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"dot" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"dov" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"doN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"dpU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"dqy" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"drq" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"drx" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"drI" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"drT" = ( +/obj/structure/disposalpipe/broken{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"dsh" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/pistol/m1911, +/obj/item/ammo_magazine/pistol/m1911, +/obj/item/ammo_magazine/pistol/m1911, +/obj/item/ammo_magazine/pistol/m1911, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/ammo_magazine/pistol/m1911, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dsm" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"dsn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"dsy" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"dsU" = ( +/obj/item/trash/cheesie, +/obj/item/trash/pistachios, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"dtf" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/floor/podhatch/southwest, +/area/bigredv2/caves/lambda/research) +"dtC" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"dtP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/pill/happy, +/obj/item/reagent_container/pill/happy, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"dtX" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves_north) +"duo" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"duw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/botany, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"duA" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"duG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"dvq" = ( +/obj/item/trash/pistachios{ + pixel_x = -11; + pixel_y = -9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/virology) +"dvz" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/lambda_cave_cas) +"dvB" = ( +/obj/item/ore/coal{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/ore/coal, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"dvC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"dws" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/plating/warnplate/southeast, +/area/bigredv2/outside/telecomm/warehouse) +"dwL" = ( +/obj/structure/bed/chair{ + buckling_y = 5; + dir = 1; + pixel_y = 5 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"dwO" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/stack/cable_coil/cut{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"dxH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/e) +"dxV" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_sw) +"dyj" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"dyv" = ( +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) +"dyH" = ( +/obj/structure/machinery/computer/area_atmos{ + dir = 1 + }, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"dyX" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"dzd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/se) +"dzD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = -1; + pixel_x = -4 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"dAg" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"dAi" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating, +/area/bigredv2/outside/lz2_south_cas) +"dAX" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"dBa" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dBm" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"dBE" = ( +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + icon = 'icons/obj/pipes/manifold.dmi'; + icon_state = "map"; + name = "Pipe manifold" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dBU" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"dCb" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/weapon/gun/launcher/grenade/m81/m79{ + pixel_x = -3; + pixel_y = -9 + }, +/obj/structure/cable{ + icon_state = "1-5" + }, +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dCA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"dCD" = ( +/turf/closed/wall/solaris{ + damage = 1870; + damage_overlay = 5; + current_bulletholes = 3 + }, +/area/bigredv2/outside/medical) +"dCU" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"dDx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/bodybag, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"dEd" = ( +/obj/structure/sign/safety/biohazard{ + pixel_x = 7; + pixel_y = -24 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) +"dEf" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"dEr" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_se) +"dEN" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"dEQ" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"dEV" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/lz2_south_cas) +"dEW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/tool/warning_cone{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"dFr" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/s) +"dFz" = ( +/obj/item/tool/pickaxe{ + pixel_x = -18; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"dFR" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -8 + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"dGs" = ( +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"dGw" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 1 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"dGz" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"dHr" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = -15 + }, +/turf/open/mars_cave, +/area/bigredv2/caves/mining) +"dHs" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"dHH" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"dIb" = ( +/turf/open/floor, +/area/bigredv2/caves) +"dIn" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 9; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"dIz" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/caves_virology) +"dIG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 4 + }, +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dIH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"dIJ" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"dJc" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"dJM" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/shotgun, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dKo" = ( +/obj/item/ore/iron{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/ore/iron{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/item/ore/iron, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"dKR" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_lambda) +"dLJ" = ( +/obj/structure/platform/kutjevo/rock, +/obj/item/trash/used_stasis_bag{ + pixel_y = 8; + pixel_x = 9 + }, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/nw) +"dLS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = 7; + pixel_y = 14 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"dME" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"dNd" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"dNn" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigred/ground/garage_workshop) +"dNr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/firealarm{ + dir = 1 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dNX" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"dOl" = ( +/obj/item/prop/colony/folded_bedroll{ + pixel_x = -5; + pixel_y = -4 + }, +/obj/item/stack/medical/bruise_pack{ + pixel_x = -8; + pixel_y = 2 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"dOu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ore{ + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dOZ" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/n) +"dPb" = ( +/obj/item/tool/pickaxe/drill, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"dPs" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"dPC" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves/mining) +"dPJ" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/bigredv2/outside/c) +"dPW" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/trash/cigbutt{ + icon_state = "ucigbutt"; + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/nw) +"dQw" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_sw) +"dQF" = ( +/obj/effect/spawner/random/tool, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"dQR" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"dQY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"dQZ" = ( +/obj/structure/closet/toolcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/filtration_plant) +"dRc" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Lambda Checkpoint" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"dSg" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"dTi" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_north) +"dTB" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/lambda_cave_cas) +"dTF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"dTI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/e) +"dUc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"dUi" = ( +/obj/item/stack/folding_barricade, +/turf/open/mars, +/area/bigredv2/outside/c) +"dUj" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"dUs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"dUz" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/mining) +"dVj" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"dVp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"dVA" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_south_cas) +"dVM" = ( +/obj/structure/largecrate/supply/supplies, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"dWd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"dWl" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"dWx" = ( +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/lambda_cave_cas) +"dXr" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"dXs" = ( +/obj/item/tool/pickaxe{ + pixel_y = 12 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"dXK" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/n) +"dXL" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/marshal_office) +"dYv" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"dYO" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/obj/item/stack/folding_barricade, +/turf/open/mars, +/area/bigredv2/outside/c) +"dZl" = ( +/obj/effect/landmark/objective_landmark/close, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -6; + pixel_y = 6; + layer = 3.1 + }, +/obj/effect/decal/cleanable/generic, +/obj/item/trash/cheesie{ + pixel_y = 6; + pixel_x = 9 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"dZL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/telecomm/lz2_cave) +"dZO" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves/mining) +"dZX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) +"eak" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/c) +"eaW" = ( +/obj/structure/disposalpipe/segment, +/obj/item/frame/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/pipes/valve/open, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"eaZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"ebr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"ebT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/crushed_cup{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"ebZ" = ( +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"eci" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/outside/lz1_telecomm_cas) +"ecy" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves/mining) +"ecC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"ecK" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_east) +"ecX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/largecrate, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"ecZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"edk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"edO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"eeI" = ( +/obj/structure/machinery/light, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/surface/table/woodentable, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_y = 11 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"eeR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/s) +"efh" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/eta/research) +"eft" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table, +/obj/item/storage/box/m94{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"efF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"efT" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close{ + pixel_x = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"egg" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/filtration_cave_cas) +"egI" = ( +/obj/item/ore, +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"egL" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"egS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"egZ" = ( +/obj/item/trash/sosjerky{ + pixel_x = -12; + pixel_y = 17 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"eha" = ( +/obj/structure/barricade/handrail/medical{ + dir = 1 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"eiK" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/mars, +/area/bigredv2/outside/c) +"ejp" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "filtration_restored" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/s) +"eju" = ( +/obj/item/ore{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"ejG" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) +"ejP" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/se) +"ekl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"eku" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"ekz" = ( +/obj/item/stack/sheet/wood{ + pixel_y = 5; + pixel_x = -4 + }, +/obj/item/dartboard{ + pixel_y = 28 + }, +/turf/open/floor/carpet11_12/west, +/area/bigredv2/outside/bar) +"ekV" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"elh" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/n) +"els" = ( +/obj/structure/ore_box, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"elM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"emi" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/mars, +/area/bigredv2/outside/c) +"emC" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"enb" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/nw) +"ene" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ + pixel_x = -11; + pixel_y = 11 + }, +/obj/item/reagent_container/food/snacks/cookie, +/turf/open/mars_cave, +/area/bigredv2/caves/mining) +"enx" = ( +/obj/structure/largecrate/random/mini{ + pixel_x = -8; + pixel_y = -7; + layer = 2.9 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"enD" = ( +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"enJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ + name = "\improper Dormitories Restroom" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"enR" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "A bunch of tiny bits of shattered metal."; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "piece of shrapnel"; + pixel_x = -1; + pixel_y = 4 + }, +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) +"eoB" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"eoU" = ( +/turf/open/floor/almayer/w_y2/north, +/area/bigredv2/outside/admin_building) +"epe" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/eta) +"eql" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves/mining) +"eqr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ + dir = 1; + name = "\improper Dormitories Restroom" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"eqz" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/FixOVein{ + pixel_x = -7; + pixel_y = -6 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"erf" = ( +/obj/structure/barricade/wooden{ + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"eri" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/ganucci{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = -14; + pixel_y = -6 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"erA" = ( +/obj/item/ore, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"erG" = ( +/obj/effect/decal/hefa_cult_decals/d32, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"erX" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves/mining) +"esS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"etg" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/nw) +"etw" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/e) +"euk" = ( +/obj/structure/bed/roller, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"eup" = ( +/obj/structure/bed/chair, +/obj/item/trash/cigbutt, +/obj/item/storage/fancy/cigarettes/lady_finger{ + pixel_x = 11 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"euF" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz2_south_cas) +"euI" = ( +/obj/structure/largecrate/random/secure{ + pixel_x = -9; + pixel_y = 20 + }, +/obj/structure/largecrate/supply/supplies/tables_racks{ + pixel_y = 1; + pixel_x = -6; + layer = 3.1 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"euO" = ( +/turf/open/mars_cave/mars_cave_22, +/area/bigredv2/caves_research) +"euP" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"evt" = ( +/turf/open/asphalt/cement/cement9, +/area/bigredv2/caves_lambda) +"evA" = ( +/obj/structure/platform_decoration/shiva{ + dir = 8 + }, +/obj/structure/platform_decoration/shiva, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"evQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"evV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"evX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"ewo" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/w) +"ewv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/red, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) +"exc" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigred/ground/garage_workshop) +"ezz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/hotdog{ + pixel_x = -12; + pixel_y = -11 + }, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"ezQ" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"eAU" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/eta) +"eBn" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 3; + pixel_y = 15 + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"eBq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/c) +"eBL" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"eCM" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"eDQ" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"eDS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"eEm" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"eEp" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/space_port_lz2) +"eEy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave, +/area/bigredv2/outside/lz2_west_cas) +"eEO" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"eER" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"eFh" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_lambda) +"eFr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/red/north, +/area/bigredv2/outside/marshal_office) +"eGa" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_research) +"eGb" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 + }, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"eGf" = ( +/obj/structure/machinery/light/double, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"eGq" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/filtration_cave_cas) +"eGB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"eGM" = ( +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/outside/engineering) +"eGR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/filtration_cave_cas) +"eHA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"eIj" = ( +/obj/item/clothing/shoes/galoshes{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"eIN" = ( +/obj/structure/machinery/power/port_gen/pacman, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"eJf" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/mars, +/area/bigredv2/outside/ne) +"eJp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/space_port_lz2) +"eJu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/bigredv2/caves_lambda) +"eJE" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"eJI" = ( +/obj/item/prop{ + icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'; + icon_state = "m41ae2"; + name = "M41AE2 Heavy Pulse Rifle"; + desc = "A large claw mark across this weapon indicates it is inoperable."; + pixel_x = 4; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"eKe" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000; + pixel_y = 4; + pixel_x = 22 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"eKm" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"eKS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"eKU" = ( +/obj/structure/machinery/door_control{ + id = "filtration"; + name = "Filtration Lockdown"; + pixel_x = 30; + throw_range = 15 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"eKY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/space_port_lz2) +"eKZ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras/wooden_tv{ + dir = 4 + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"eLp" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"eLq" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"eLQ" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/filtration_plant) +"eMN" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"eMP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/obj/item/reagent_container/glass/bottle/toxin{ + pixel_y = 12; + pixel_x = 12 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"eMX" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_lambda) +"eNx" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lambda-cave-mushroom" + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"eNN" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"eOd" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_telecomm_cas) +"eOf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 7; + pixel_y = -6 + }, +/obj/item/trash/eat{ + pixel_x = -9; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"eOS" = ( +/turf/closed/wall/solaris{ + damage = 1870; + damage_overlay = 5; + current_bulletholes = 3 + }, +/area/bigredv2/outside/office_complex) +"ePi" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/tonic{ + pixel_x = 7 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = -5 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"ePk" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/floor/greengrid, +/area/bigredv2/caves/lambda/research) +"ePz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"eRc" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/filtration_plant) +"eRe" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"eRI" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/c) +"eRL" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_y = -9; + pixel_x = -7 + }, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_y = -2 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"eRN" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"eSm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"eSu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"eSK" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/filtration_cave_cas) +"eSN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"eSO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"eTj" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/c) +"eTK" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"eUs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"eUX" = ( +/turf/closed/wall/solaris{ + damage = 1870; + damage_overlay = 5 + }, +/area/bigredv2/outside/office_complex) +"eVb" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/mars, +/area/bigredv2/outside/nw) +"eVo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/ammo_magazine/pistol/hp{ + pixel_x = 8; + pixel_y = -7 + }, +/obj/item/ammo_magazine/pistol{ + pixel_y = -4 + }, +/obj/structure/cable{ + icon_state = "9-10" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"eVL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"eVM" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"eWd" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"eWk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"eWo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/outside/filtration_plant) +"eWv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/telecomm/n_cave) +"eWy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/moneybag, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"eWB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/recharge_station, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"eWE" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves_north) +"eWG" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"eWP" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"eWW" = ( +/obj/item/tool/warning_cone, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement9, +/area/bigredv2/outside/filtration_cave_cas) +"eYy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"eYA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/e) +"eYC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"eYH" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"eYK" = ( +/obj/item/reagent_container/spray/cleaner, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"eZb" = ( +/obj/item/trash/wy_chips_pepper{ + pixel_y = -13; + pixel_x = 24 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"eZw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"eZD" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"fbf" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/sw) +"fbB" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "crashlanding-eva" + }, +/turf/closed/wall/solaris, +/area/bigredv2/outside/bar) +"fcG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fdr" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_sw) +"fdy" = ( +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"feN" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/space_port_lz2) +"feS" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_sw) +"ffl" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/sosjerky{ + pixel_x = 14; + pixel_y = -4 + }, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"ffK" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) +"fgu" = ( +/obj/structure/surface/rack, +/obj/item/trash/wy_chips_pepper{ + pixel_y = -13; + pixel_x = 24 + }, +/obj/item/explosive/grenade/high_explosive{ + pixel_x = -1; + pixel_y = -2 + }, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"fgD" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Server Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"fgE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/effect/landmark/static_comms/net_two{ + broken_on_spawn = 1 + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/engineering) +"fhx" = ( +/obj/structure/bed/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"fhy" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/admin_building) +"fhI" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_north) +"fhJ" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) +"fia" = ( +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"fik" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/bullet, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"fin" = ( +/turf/open/floor/plating, +/area/bigredv2/caves/eta/xenobiology) +"fiI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"fjz" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/objective{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"fjF" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/mars/mars_dirt_6, +/area/bigredv2/outside/w) +"fjP" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves) +"fkD" = ( +/obj/item/ammo_magazine/shotgun/slugs, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"fkV" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement, +/area/bigredv2/outside/space_port) +"flu" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"fmd" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"fmn" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_virology) +"fmx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/bigredv2/outside/lambda_cave_cas) +"fmL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/camera/oldcamera, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fmW" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars, +/area/bigredv2/outside/n) +"fnh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"fnv" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"fnO" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"foB" = ( +/turf/open/mars_cave/mars_cave_22, +/area/bigredv2/caves_east) +"fpa" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/closed/wall/wood, +/area/bigredv2/caves/mining) +"fps" = ( +/obj/item/bedsheet/brown{ + pixel_y = -1; + pixel_x = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"fqx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"fsy" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/n) +"fsO" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"fsT" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/n) +"fsY" = ( +/turf/open/mars/mars_dirt_6, +/area/bigredv2/outside/space_port_lz2) +"ftt" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"ftO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"ftR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/prop/helmetgarb/spent_buckshot{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"ftY" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/sw) +"fuj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"fus" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz2_south_cas) +"fuB" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"fvb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fvr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"fvu" = ( +/obj/structure/machinery/light/double, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_south_cas) +"fwa" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_virology) +"fwD" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/floor/loadingarea/west, +/area/bigredv2/outside/cargo) +"fwO" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Cables" + }, +/obj/structure/cryofeed/right{ + color = "silver"; + desc = "A bewildering tangle of machinery and pipes."; + name = "\improper coolant feed" + }, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"fwV" = ( +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/caves) +"fxa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/bigredv2/outside/virology) +"fxe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone{ + pixel_x = 6 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"fxh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"fxj" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/w) +"fxn" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating/warnplate/west, +/area/bigredv2/oob) +"fxu" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"fxK" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/outside/lz1_telecomm_cas) +"fxO" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"fxZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_lambda) +"fyo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"fyz" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"fyC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Armory"; + locked = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"fyO" = ( +/obj/structure/transmitter/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "green"; + phone_id = "Clinic Labs"; + pixel_y = 24 + }, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"fyZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/camera, +/obj/structure/machinery/light/small, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"fzt" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"fAT" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = -7 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 7 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"fBc" = ( +/obj/structure/pipes/standard/tank/phoron, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"fBo" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"fBJ" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8; + layer = 2.9; + pixel_x = -3 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"fCb" = ( +/turf/open/floor, +/area/bigredv2/outside/filtration_cave_cas) +"fCQ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"fDf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Greenhouse Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"fDr" = ( +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"fEb" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/se) +"fEv" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "\improper Engine Reactor" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"fEE" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/ne) +"fFs" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) +"fFG" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"fFO" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/space_port_lz2) +"fGq" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"fGz" = ( +/obj/structure/machinery/botany, +/obj/item/seeds/goldappleseed, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) +"fGK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_north) +"fGN" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves_research) +"fHw" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"fHF" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/obj/item/weapon/baseballbat, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"fJW" = ( +/obj/structure/window, +/obj/structure/surface/table/woodentable, +/obj/item/newspaper, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"fKg" = ( +/obj/structure/machinery/body_scanconsole, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"fKC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"fKO" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_north) +"fLd" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"fLj" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_virology) +"fLl" = ( +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"fLA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"fLR" = ( +/obj/item/tool/pickaxe, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"fMl" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"fMJ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"fML" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"fMT" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 13 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"fMZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/transmitter/colony_net{ + phone_category = "Lambda Labs"; + phone_id = "Surgery"; + pixel_y = 24 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"fNT" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/s) +"fOc" = ( +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_virology) +"fOf" = ( +/obj/item/trash/eat{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"fOo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/machinery/light/double{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 14; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"fOx" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"fOK" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"fOM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"fOV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"fPe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/telecomm/n_cave) +"fPi" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"fPB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"fQv" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"fRo" = ( +/obj/item/tool/pickaxe/drill, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves/mining) +"fRr" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"fRF" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 13; + pixel_y = 13 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"fRH" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_se) +"fRP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/crushed_cup{ + pixel_x = 3; + pixel_y = 14 + }, +/obj/structure/largecrate/random/barrel/red{ + pixel_y = -1; + pixel_x = 3 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"fRW" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"fSg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/weldingtool{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"fSJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/space_port) +"fST" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"fSY" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/outside/lz2_west_cas) +"fTj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/e) +"fTw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/medical) +"fUk" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/hardhat, +/obj/item/clothing/head/hardhat{ + pixel_x = 7; + pixel_y = 12 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) +"fUp" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 1; + name = "\improper Engine Reactor" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"fVt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"fVz" = ( +/obj/structure/girder, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"fVX" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"fWb" = ( +/obj/item/clothing/under/darkred{ + pixel_y = 7; + pixel_x = 10 + }, +/obj/structure/surface/rack, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"fWg" = ( +/obj/item/storage/pill_bottle/tramadol{ + pixel_y = -6; + pixel_x = 6 + }, +/obj/item/trash/burger, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"fWw" = ( +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"fWH" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/mars, +/area/bigredv2/outside/nw) +"fWY" = ( +/obj/structure/window, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/objective_landmark/close, +/obj/item/prop/magazine/book/starshiptroopers, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"fXg" = ( +/obj/item/reagent_container/glass/fertilizer/ez, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"fXm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"fXA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"fXF" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/c) +"fXR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"fXZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 5; + layer = 3.01; + pixel_y = -7 + }, +/obj/item/trash/eat{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/trash/eat{ + pixel_x = -9; + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"fYH" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/caves/mining) +"fYJ" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fYQ" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"fYU" = ( +/obj/structure/girder, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"fZg" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/hvac{ + pixel_x = -32 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fZm" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/eta) +"fZA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/flour, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"gad" = ( +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"gae" = ( +/obj/structure/barricade/wooden, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"gan" = ( +/obj/structure/platform_decoration/shiva{ + dir = 1 + }, +/obj/structure/platform_decoration/shiva{ + dir = 4 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"gat" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"gaY" = ( +/obj/item/trash/hotdog{ + pixel_x = -12; + pixel_y = -11 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"gbA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"gcs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/e) +"gcI" = ( +/obj/item/weapon/broken_bottle, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"gcL" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"gcR" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_sw) +"gda" = ( +/turf/open/mars_cave, +/area/bigredv2/outside/lz1_telecomm_cas) +"gdx" = ( +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"gdy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Dormitories Tool Storage Maintenance"; + welded = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"gdK" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/n) +"gdN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) +"geo" = ( +/obj/item/weapon/dart/green{ + pixel_y = -11 + }, +/turf/open/floor/carpet11_12/west, +/area/bigredv2/outside/bar) +"geC" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/lz1_north_cas) +"geJ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"gfo" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"gfX" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = -32 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"ggC" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/good_item, +/obj/item/stack/sheet/metal/small_stack, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ggW" = ( +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/research) +"ghz" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"gii" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/mars, +/area/bigredv2/outside/nw) +"gio" = ( +/turf/open/mars_cave, +/area/bigredv2/outside/filtration_cave_cas) +"giB" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave, +/area/bigredv2/caves_sw) +"giC" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"giY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"gjB" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random{ + pixel_y = 6; + pixel_x = -4 + }, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"gjH" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/eta) +"gjN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) +"gke" = ( +/obj/item/tool/warning_cone, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/s) +"gki" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"gkj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"gkA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"gkD" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"gkO" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"glB" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/lz2_south_cas) +"glH" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -7 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/reagent_container/food/drinks/coffee, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"gmm" = ( +/obj/structure/window/framed/solaris, +/obj/effect/decal/cleanable/molten_item, +/obj/structure/machinery/door/poddoor/almayer{ + id = "rad_door"; + name = "\improper Radiation Shielding" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"gmp" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/filtration_plant) +"gmE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"gmN" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_lambda) +"gnR" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"goa" = ( +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"gpg" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_east) +"gps" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ore/diamond, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gpA" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"gpB" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_research) +"gpR" = ( +/turf/open/gm/river, +/area/bigredv2/outside/c) +"gpT" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_south_cas) +"gqF" = ( +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/vomit{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"gqH" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/space_port) +"gqJ" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 2; + pixel_y = -4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"gqS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"gri" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "containerroom_xenos" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/nw/ceiling) +"grM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 5 + }, +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_x = -2; + pixel_y = 7 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"gsb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/c) +"gsM" = ( +/obj/structure/fence, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"gsW" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/space) +"gts" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/morgue{ + dir = 2 + }, +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) +"gtt" = ( +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"gtX" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_se) +"guu" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"guM" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"guY" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"gvd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Break Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"gvC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + layer = 3.5 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"gvI" = ( +/obj/structure/transmitter/colony_net{ + dir = 4; + do_not_disturb = 1; + phone_category = "Lambda Labs"; + phone_color = "red"; + phone_id = "Director's Safe Room"; + pixel_x = -18 + }, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"gvU" = ( +/obj/item/shard, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"gvY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Dormitories"; + welded = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"gvZ" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet13_5/west, +/area/bigredv2/outside/bar) +"gwf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"gwg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"gwD" = ( +/obj/structure/closet/bodybag, +/obj/structure/bed/bedroll{ + dir = 10 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"gwP" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = -32 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/obj/structure/barricade/handrail/medical, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -16 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"gxo" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"gxJ" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_sw) +"gxQ" = ( +/obj/structure/barricade/wooden, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/c) +"gyb" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/mars, +/area/bigredv2/outside/nw) +"gyp" = ( +/obj/effect/decal/strata_decals/grime/grime1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"gyv" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"gyJ" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"gyL" = ( +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"gyU" = ( +/obj/item/ore{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"gzj" = ( +/obj/item/stack/sheet/cardboard{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"gzm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"gzG" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 18 + }, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves/mining) +"gAE" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"gAK" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "chapel_cult" + }, +/turf/closed/wall/solaris, +/area/bigredv2/outside/chapel) +"gAX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"gBv" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/s) +"gCx" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"gCC" = ( +/obj/structure/closet/secure_closet, +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives" + }, +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives" + }, +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives" + }, +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives" + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"gCE" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"gEM" = ( +/obj/structure/machinery/vending/security, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/red, +/area/bigredv2/outside/lambda_cave_cas) +"gFR" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"gGf" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"gGO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/mining) +"gHC" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"gHD" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/filtration_cave_cas) +"gHH" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"gHR" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/reagent_container/food/snacks/wrapped/booniebars{ + pixel_y = 7; + pixel_x = -2 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"gHV" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"gIi" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"gIT" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-interior"; + name = "Lambda Checkpoint Interior" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves_north) +"gIW" = ( +/obj/structure/machinery/light, +/obj/item/trash/crushed_cup{ + pixel_x = -4; + pixel_y = -7 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"gJk" = ( +/obj/item/trash/pistachios{ + pixel_x = -11; + pixel_y = -9 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"gJw" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave, +/area/bigredv2/caves_virology) +"gJB" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/lambda_cave_cas) +"gJF" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/w) +"gKk" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_4, +/area/bigredv2/caves_virology) +"gKF" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/mars, +/area/bigredv2/outside/se) +"gKJ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/eta) +"gKM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/snack_bowl{ + pixel_y = 5; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"gKY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-in" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"gLa" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/mars, +/area/bigredv2/outside/s) +"gLe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/se) +"gLi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/virology) +"gLv" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"gLC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood{ + pixel_x = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"gMa" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/e) +"gMC" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"gML" = ( +/obj/structure/machinery/power/turbine, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"gNv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"gNz" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_se) +"gNH" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves) +"gOd" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"gOr" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"gOK" = ( +/obj/item/prop/magazine/dirty/torn/alt{ + pixel_x = -11; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 7; + pixel_y = -18 + }, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/ne) +"gPc" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/telecomm/n_cave) +"gPh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "\improper Engine Reactor" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"gPE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lantern, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gPI" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/tool/surgery/circular_saw{ + pixel_x = 10 + }, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"gQj" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"gQM" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/space_port_lz2) +"gRT" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = -5 + }, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 7 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"gSB" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8 + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"gSL" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"gTJ" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"gTN" = ( +/obj/structure/window/framed/solaris/reinforced/hull, +/obj/structure/cable, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/oob) +"gTS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "small" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gUA" = ( +/obj/item/tool/warning_cone, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"gUD" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 + }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"gVl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"gVm" = ( +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/caves/eta/research) +"gVn" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_2" + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/mono{ + pixel_x = -11; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/partypopper{ + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"gVF" = ( +/obj/effect/decal/remains/human, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/lambda_cave_cas) +"gWv" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "eta_carp" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/eta/xenobiology) +"gWD" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/space_port_lz2) +"gWU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"gXp" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) +"gXs" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"gYl" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_virology) +"gYt" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"gYI" = ( +/obj/structure/machinery/light, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"gYR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/w) +"gZc" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/high_rad{ + pixel_x = -32 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"hah" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/loadingarea, +/area/bigredv2/outside/cargo) +"haT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"haV" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) +"hby" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"hbY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"hcb" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_telecomm_cas) +"hcH" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"hcK" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/se) +"hcR" = ( +/obj/effect/decal/remains/human, +/turf/open/asphalt/cement/cement15, +/area/bigredv2/caves_lambda) +"hda" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/medium, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -7 + }, +/obj/item/reagent_container/food/drinks/coffee, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"hdc" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"heD" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"heG" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"heR" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"hfo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/caves_lambda) +"hfB" = ( +/obj/item/ore{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"hfC" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 30 + }, +/obj/item/tool/soap/deluxe{ + pixel_y = -7; + pixel_x = -9 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"hgr" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/ne) +"hgO" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/n) +"hgP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/w) +"hgT" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/lz1_north_cas) +"hhf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"hho" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"hhK" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"hik" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag{ + pixel_y = -3; + pixel_x = 10 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_y = 3; + pixel_x = 7 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"hip" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/c) +"hiP" = ( +/obj/structure/sign/safety/one{ + pixel_x = 16 + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"hiY" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_sw) +"hkv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"hkJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/spawner/random/tool{ + pixel_x = -8; + pixel_y = -6 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"hkS" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/nw) +"hkY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"hlH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/w) +"hmm" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"hmJ" = ( +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"hmL" = ( +/obj/item/ore{ + pixel_x = -1; + pixel_y = -8 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"hmW" = ( +/obj/structure/surface/table, +/obj/item/tool/pen/blue{ + pixel_y = -8; + pixel_x = 3 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"hnh" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_research) +"hos" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8; + layer = 2.9; + pixel_x = -3 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"hoI" = ( +/obj/structure/bed/roller, +/obj/structure/closet/bodybag, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"hoQ" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"hoY" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/obj/structure/cable{ + icon_state = "11-6" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hpd" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"hpg" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/space_port_lz2) +"hpl" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"hpM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/nw) +"hqC" = ( +/obj/item/ammo_magazine/rifle/mar40/lmg, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"hqD" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/lz2_south_cas) +"hqO" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars, +/area/bigredv2/caves_north) +"hqS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"hrs" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_plant) +"hrX" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"hso" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/mars, +/area/bigredv2/outside/n) +"hsq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"hsF" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"hsJ" = ( +/obj/item/ore, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"htb" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/c) +"hvd" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-interior"; + name = "Lambda Checkpoint Interior" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/lambda_cave_cas) +"hvQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"hwe" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"hwy" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"hwC" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"hxn" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/nw) +"hxs" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"hyv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"hyB" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"hyC" = ( +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/warehouse) +"hyO" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/space_port) +"hzg" = ( +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/structure/cable{ + icon_state = "1-9" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hzo" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/bedsheet/medical{ + pixel_x = 4; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"hzy" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"hzP" = ( +/obj/item/paper/bigred/final, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"hAa" = ( +/obj/structure/surface/table/woodentable{ + dir = 8; + flipped = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"hAj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave, +/area/bigredv2/caves_research) +"hAl" = ( +/obj/structure/machinery/light, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"hBk" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_y = 8; + pixel_x = -11 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"hBD" = ( +/obj/structure/bed/chair, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"hCT" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 7 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -5 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -3; + pixel_y = 16 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hDe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/white, +/obj/item/stack/medical/ointment{ + pixel_x = 2; + pixel_y = 16 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"hDK" = ( +/obj/structure/largecrate/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"hDT" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/e) +"hDX" = ( +/turf/closed/wall/solaris{ + damage = 1000; + damage_overlay = 3 + }, +/area/bigredv2/outside/office_complex) +"hEr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"hEz" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/mining) +"hEC" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/bigredv2/outside/lz2_south_cas) +"hEE" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz2_south_cas) +"hEK" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hEN" = ( +/turf/open/asphalt/cement/cement3, +/area/bigredv2/caves_lambda) +"hEP" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/obj/structure/largecrate/random/mini/med{ + pixel_x = -6; + pixel_y = -1 + }, +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/outside/medical) +"hFg" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) +"hFl" = ( +/obj/item/shard/shrapnel, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"hFv" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"hFP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hFV" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/n) +"hGv" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"hGy" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars, +/area/bigredv2/caves_north) +"hGD" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) +"hGH" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/item/weapon/gun/revolver/cmb{ + pixel_x = 7; + pixel_y = -13 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/item/explosive/grenade/high_explosive{ + pixel_x = -11; + pixel_y = 17 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"hHa" = ( +/obj/structure/fence, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"hHb" = ( +/obj/structure/sign/safety/ladder, +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/oob) +"hHl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"hHG" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"hIk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"hIu" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/c) +"hJk" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"hJp" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/w) +"hJH" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/telecomm/n_cave) +"hJU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/surface/table/woodentable{ + flipped = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"hKl" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/goldschlager, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hKt" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"hKD" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"hKM" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_north) +"hKO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/red/southwest, +/area/bigredv2/outside/lambda_cave_cas) +"hLp" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/mars_cave, +/area/bigredv2/caves/mining) +"hLS" = ( +/obj/structure/sign/poster/safety, +/turf/closed/wall/wood, +/area/bigredv2/caves/mining) +"hMW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"hNg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"hNh" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"hOx" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) +"hOS" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/collectable/tophat/super, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"hPa" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"hPS" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"hQD" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) +"hQO" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/n) +"hRc" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"hRy" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hRE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/c) +"hSP" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"hST" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/se) +"hSX" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -3; + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"hSZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"hTY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/space_port_lz2) +"hUe" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/se) +"hUh" = ( +/obj/item/spacecash/c1, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hUu" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"hVG" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"hVP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"hWa" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"hWM" = ( +/obj/structure/machinery/filtration/console{ + pixel_y = 15 + }, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"hYx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/outside/medical) +"hYB" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"hYI" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"hZc" = ( +/obj/structure/platform/shiva{ + dir = 4 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"hZl" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 3; + pixel_y = 15 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"hZE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1/north, +/area/bigredv2/outside/space_port) +"iaa" = ( +/obj/item/stack/sheet/metal{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"ian" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/door_control{ + id = "Cargonia"; + name = "Storm Shutters"; + pixel_x = 32 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"iaC" = ( +/obj/structure/platform, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"iaD" = ( +/obj/item/shard, +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"iaN" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"iaO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/strata_decals/grime/grime3, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"iaS" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"iaX" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/effect/landmark/corpsespawner/colonist/random/burst, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"ibn" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/stack/sheet/cardboard{ + pixel_x = 2; + pixel_y = -5; + layer = 3.01 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"ibx" = ( +/obj/item/shard/shrapnel, +/obj/item/shard, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) +"ibP" = ( +/turf/open/floor/plating, +/area/bigredv2/caves_research) +"ibV" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"ibZ" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_sw) +"ice" = ( +/obj/structure/surface/table, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"icQ" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_sw) +"idb" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/rifle/lmg/heap{ + pixel_x = -8; + pixel_y = -2; + max_rounds = 0 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 9; + pixel_y = 5 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"idn" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"idM" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"idT" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_lambda) +"iea" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"iep" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -3; + pixel_y = 16 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 7 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"ier" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"iev" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "\improper Medical Clinic Morgue"; + locked = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"ieD" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/copper{ + pixel_y = 1 + }, +/obj/item/stack/sheet/mineral/osmium{ + pixel_y = 6 + }, +/obj/item/stack/sheet/mineral/platinum{ + pixel_y = 12 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ieW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/lambda_cave_cas) +"ifh" = ( +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 8; + pixel_y = -19 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 3; + pixel_y = -1 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) +"ifo" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"ifC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"ifF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 + }, +/obj/item/ammo_box/magazine/misc/flares/empty, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"igb" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"igD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"igM" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"igU" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"ihW" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/eta) +"iig" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"iih" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"iis" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/red, +/area/bigredv2/outside/marshal_office) +"ijb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"ijU" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Cables" + }, +/obj/structure/cryofeed{ + color = "silver"; + desc = "A bewildering tangle of machinery and pipes."; + name = "coolant feed" + }, +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"ikm" = ( +/obj/effect/decal/cleanable/ash{ + pixel_x = 11; + pixel_y = 25 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"ikq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/rack, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"ilH" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"ilO" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves/mining) +"ilZ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopleft" + }, +/obj/structure/barricade/handrail/medical{ + dir = 1 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"imc" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"iml" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"imP" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_id = "Clinic Reception"; + pixel_y = 9; + pixel_x = 6 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"ing" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 9; + layer = 3.01; + pixel_y = 1 + }, +/obj/item/trash/hotdog{ + pixel_x = -5; + pixel_y = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"ino" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/space_port) +"inx" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_plant) +"inN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/se) +"ioA" = ( +/obj/item/tool/pickaxe{ + pixel_y = -7 + }, +/obj/item/tool/pickaxe{ + pixel_y = 4 + }, +/obj/item/tool/pickaxe{ + pixel_y = -3 + }, +/obj/item/tool/pickaxe, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/rack, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ioS" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"ipf" = ( +/obj/item/device/flashlight/lantern{ + pixel_x = -6 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"iph" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/cigarettes/kpack{ + pixel_x = 6 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"ipo" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_north) +"ipA" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/eta) +"iqd" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask/vacuumflask, +/obj/item/reagent_container/food/drinks/flask, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/reagent_container/food/drinks/flask{ + pixel_x = 7 + }, +/obj/item/reagent_container/food/drinks/flask{ + pixel_x = -5 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"iqF" = ( +/obj/structure/prop/invuln/minecart_tracks, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"irM" = ( +/obj/item/weapon/shield/riot, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"irN" = ( +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"irZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/red/southeast, +/area/bigredv2/outside/lambda_cave_cas) +"isS" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/trash/crushed_cup{ + pixel_x = -3; + pixel_y = 11 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"ity" = ( +/obj/item/stack/sheet/wood{ + pixel_x = 4 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"itF" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/mars, +/area/bigredv2/outside/s) +"itL" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"itN" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/medical_decals{ + icon_state = "cryocell1decal" + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"iuu" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/lz1_north_cas) +"iuI" = ( +/turf/open/asphalt/cement, +/area/bigredv2/outside/space_port) +"iuU" = ( +/turf/closed/wall/solaris{ + damage = 500; + damage_overlay = 2; + current_bulletholes = 1 + }, +/area/bigredv2/outside/office_complex) +"ivN" = ( +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"ivW" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/ne) +"iwo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"iww" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"iwG" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_virology) +"ixx" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"ixy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/s) +"ixA" = ( +/obj/item/ore, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"ixB" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars, +/area/bigredv2/outside/c) +"ixH" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/mars, +/area/bigredv2/outside/e) +"iyp" = ( +/turf/open/asphalt/cement, +/area/bigredv2/caves_lambda) +"iyS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/outside/medical) +"iyY" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/lz1_north_cas) +"izb" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"izh" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"izC" = ( +/obj/item/ashtray/glass, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"izJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"izT" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"iAi" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"iAw" = ( +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"iAy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hefa_cult_decals/d96, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"iAF" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_sw) +"iAI" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"iAL" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/space_port_lz2) +"iBi" = ( +/obj/item/tool/wirecutters, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"iBF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/filtration_plant) +"iCQ" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"iDu" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30 + }, +/obj/item/shard, +/turf/open/floor/red/southeast, +/area/bigredv2/outside/marshal_office) +"iDC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"iDJ" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"iDL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"iDT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkredcorners2/north, +/area/bigredv2/outside/admin_building) +"iDW" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"iEj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"iEm" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"iEv" = ( +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/space_port) +"iEw" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"iEN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"iFa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/bananapeel, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"iFr" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"iGp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"iGK" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_sw) +"iGY" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_north) +"iJs" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/space_port) +"iJu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_x = -11; + pixel_y = 12 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"iJF" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = 12 + }, +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"iJO" = ( +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"iKK" = ( +/obj/structure/surface/table/woodentable{ + dir = 8; + flipped = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"iKU" = ( +/obj/structure/prop/wooden_cross, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/nw) +"iLs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"iLu" = ( +/obj/structure/girder, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"iMC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"iNe" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/mars, +/area/bigredv2/outside/ne) +"iNE" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/warehouse) +"iNR" = ( +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"iOR" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"iPE" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"iQf" = ( +/obj/structure/sign/nosmoking_1{ + pixel_x = -32 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"iQw" = ( +/obj/item/ore, +/turf/open/gm/river, +/area/bigredv2/outside/filtration_plant) +"iQC" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"iQG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_research) +"iRf" = ( +/obj/structure/fence, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"iRw" = ( +/obj/structure/closet/secure_closet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"iRG" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"iSq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"iSz" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/engineering) +"iTD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/buritto{ + pixel_y = 12; + pixel_x = -7 + }, +/obj/item/stack/tile/plasteel{ + pixel_x = 16 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"iTN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/plating/warnplate/southwest, +/area/bigredv2/outside/telecomm/warehouse) +"iTZ" = ( +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement/cement9, +/area/bigredv2/outside/space_port) +"iUe" = ( +/turf/open/floor/darkred2/southeast, +/area/bigredv2/caves/eta/research) +"iVd" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/turf/open/mars, +/area/space) +"iVi" = ( +/obj/structure/fence, +/turf/open/mars, +/area/bigredv2/outside/se) +"iVu" = ( +/obj/structure/largecrate/random/barrel/green{ + pixel_y = 5; + pixel_x = 3 + }, +/obj/item/storage/fancy/cigar/matchbook{ + pixel_x = 6; + pixel_y = 17 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"iVz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"iVW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xtracks, +/obj/item/explosive/grenade/custom/large{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/medical) +"iWi" = ( +/obj/item/trash/uscm_mre{ + pixel_y = 42; + pixel_x = -3 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"iXo" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"iXs" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"iXx" = ( +/turf/open/mars_cave, +/area/bigredv2/outside/n) +"iXD" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"iXN" = ( +/obj/item/ore{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"iXV" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"iYN" = ( +/obj/structure/closet/secure_closet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"iYR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_plant) +"iZc" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"iZm" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/mars, +/area/bigredv2/outside/c) +"iZp" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"iZA" = ( +/obj/structure/surface/rack, +/turf/open/floor, +/area/bigredv2/caves) +"jay" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"jbd" = ( +/obj/structure/barricade/wooden{ + pixel_y = 2 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"jbq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/lambda_cave_cas) +"jbU" = ( +/obj/effect/decal/cleanable/blood{ + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"jcR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"jde" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/c) +"jdj" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "crashlanding-offices" + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"jdN" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars, +/area/bigredv2/outside/n) +"jdQ" = ( +/obj/structure/prop/dam/truck/mining{ + desc = "A crawler, imported from the Alpha Centauri colonies."; + dir = 1; + icon_state = "crawler_crate_alt"; + name = "crawler" + }, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/s) +"jeJ" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/virology) +"jeO" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/n) +"jfc" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/w) +"jfr" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/se) +"jgg" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"jgw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"jgK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/eta) +"jgO" = ( +/obj/item/trash/cheesie{ + pixel_y = -4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"jgW" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_lambda) +"jhj" = ( +/obj/structure/machinery/vending/sovietsoda{ + icon_state = "sovietsoda-broken"; + stat = 1 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jhM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/bigred/witness, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jij" = ( +/obj/item/trash/cigbutt{ + pixel_x = -14; + pixel_y = -6 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"jjq" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/landmark/corpsespawner/colonist/random, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"jjL" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/lambda_cave_cas) +"jjR" = ( +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/e) +"jkb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/space_port) +"jkn" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = -7 + }, +/obj/item/storage/fancy/cigarettes/kpack{ + pixel_x = 6 + }, +/obj/item/tool/lighter/zippo{ + pixel_x = -1; + pixel_y = 14 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jkO" = ( +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/mars_cave, +/area/bigredv2/caves/mining) +"jlg" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"jlr" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/colonist, +/obj/item/grown/sunflower{ + pixel_x = -2; + pixel_y = -7 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"jlJ" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/w) +"jlS" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/space_port_lz2) +"jmD" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/ne) +"jmQ" = ( +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) +"jnd" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"jnR" = ( +/turf/open/floor/darkblue2/northwest, +/area/bigredv2/caves/eta/research) +"jnV" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + icon = 'icons/obj/pipes/manifold.dmi'; + icon_state = "map"; + name = "Pipe manifold" + }, +/obj/structure/cable{ + icon_state = "2-9" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jou" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/w) +"jph" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"jpk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"jpT" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"jqL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + pixel_x = 12 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"jrj" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/mars, +/area/bigredv2/outside/e) +"jrA" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"jrD" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"jrN" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"jrW" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/nw) +"jsc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/lighter/random{ + pixel_x = -9; + pixel_y = 2 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"jsL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/mining) +"jsY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"jtH" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"jtL" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/mining) +"juo" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/podhatch/northwest, +/area/bigredv2/caves/lambda/research) +"juF" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/se) +"jwj" = ( +/obj/structure/platform/shiva{ + dir = 8 + }, +/obj/item/disk, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"jwU" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"jwV" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/s) +"jxj" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/red, +/area/bigredv2/outside/lambda_cave_cas) +"jxp" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"jxA" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/engineering) +"jxS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"jxV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/s) +"jxZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"jyS" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/mars, +/area/bigredv2/outside/c) +"jyZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"jzD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"jzO" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/w) +"jAm" = ( +/obj/structure/coatrack{ + pixel_x = -8; + pixel_y = 16 + }, +/obj/item/clothing/shoes/black{ + pixel_y = -7 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"jAo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_sw) +"jAJ" = ( +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/engineering) +"jAN" = ( +/obj/item/tool/pickaxe, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"jAR" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"jAV" = ( +/obj/item/trash/cheesie{ + pixel_y = -1; + pixel_x = -11 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"jAX" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_lambda) +"jBc" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/w) +"jBl" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/obj/item/trash/kepler/flamehot{ + pixel_y = 13; + pixel_x = 14 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/nw) +"jBq" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"jCg" = ( +/obj/effect/spawner/random/attachment, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jCq" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/item/weapon/baton/loaded, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"jCY" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_virology) +"jDo" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"jDy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/cable{ + icon_state = "11-2" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"jDG" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"jDT" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"jEx" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"jEX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"jFq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000; + pixel_y = 6; + pixel_x = 7 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"jFs" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 32 + }, +/obj/item/storage/box/gloves, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"jGd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"jGn" = ( +/obj/structure/machinery/door_control{ + id = "garage"; + name = "Garage Shutters"; + pixel_x = 26; + range = 500 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"jGQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lantern, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/mining) +"jGS" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/mars, +/area/bigredv2/outside/c) +"jGT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"jHH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/reaper, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/reaper{ + pixel_y = 8; + pixel_x = 17 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"jHK" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/mars, +/area/bigredv2/outside/nw) +"jHS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"jIQ" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/lz1_north_cas) +"jIV" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/nw) +"jJB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) +"jJG" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/eta) +"jJH" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"jJO" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_north) +"jJP" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/raisins{ + pixel_x = 9; + pixel_y = 11 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"jJU" = ( +/obj/structure/window_frame/solaris, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"jKh" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/obj/effect/decal/cleanable/blood, +/turf/open/mars, +/area/bigredv2/outside/n) +"jKm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"jKp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/red/north, +/area/bigredv2/outside/lambda_cave_cas) +"jKI" = ( +/obj/structure/platform_decoration/shiva{ + dir = 8 + }, +/obj/structure/platform_decoration/shiva, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"jLj" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/mars, +/area/bigredv2/outside/n) +"jMm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"jMn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"jNf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"jNE" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 13 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"jNN" = ( +/obj/structure/bed/chair/wood/normal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"jOc" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "eta"; + name = "Eta Lockdown" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/lz2_south_cas) +"jOj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/surgery/hemostat, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"jOS" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/plasmacutter{ + pixel_y = 5 + }, +/obj/item/tool/pickaxe/plasmacutter{ + pixel_y = -5 + }, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jPm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"jPJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet13_5/west, +/area/bigredv2/outside/bar) +"jPQ" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/ne) +"jPV" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 3; + pixel_y = 15 + }, +/obj/effect/spawner/gibspawner/human, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"jPX" = ( +/obj/item/ore/diamond{ + pixel_x = 8; + pixel_y = -11 + }, +/obj/item/storage/firstaid/fire, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"jQS" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" + }, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"jRi" = ( +/obj/item/ammo_magazine/smg/bizon{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/gun/smg/bizon{ + pixel_x = 1; + pixel_y = 11 + }, +/obj/item/ammo_magazine/smg/bizon{ + pixel_x = 11; + pixel_y = -3 + }, +/obj/item/ammo_magazine/smg/bizon, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jRn" = ( +/obj/structure/machinery/computer3/server, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"jRH" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/whiteblue/northeast, +/area/bigredv2/outside/medical) +"jSe" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves_north) +"jSt" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"jSL" = ( +/obj/item/reagent_container/glass/rag{ + pixel_x = -9; + pixel_y = -7 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"jTa" = ( +/obj/structure/machinery/camera/autoname, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1; + pixel_y = -1 + }, +/turf/open/floor/red/northeast, +/area/bigredv2/outside/marshal_office) +"jTk" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/molten_item, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"jUc" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"jUd" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper General Store Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"jUJ" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/woodentable, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/door_control{ + id = "Library"; + name = "Storm Shutters" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"jUK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/c) +"jUO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"jUW" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 4; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" + }, +/obj/structure/cable{ + icon_state = "2-5" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jUY" = ( +/turf/open/mars_cave, +/area/bigredv2/caves/mining) +"jVr" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 + }, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves/mining) +"jVN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"jVW" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" + }, +/obj/item/stack/sheet/wood{ + pixel_y = -8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"jWj" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"jWA" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz2_south_cas) +"jWF" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 1; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"jWR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/red/northwest, +/area/bigredv2/outside/marshal_office) +"jWY" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"jXf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"jXw" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/nw) +"jXA" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"jXJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"jXP" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"jXX" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves_sw) +"jYb" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"jYd" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = -8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"jYp" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/nw) +"jYw" = ( +/obj/structure/pipes/standard/manifold/visible, +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"jYD" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 9 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"jYF" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"jYL" = ( +/obj/structure/bed/roller, +/obj/structure/closet/bodybag, +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/outside/medical) +"jYP" = ( +/turf/closed/wall/solaris{ + damage = 2677; + damage_overlay = 8; + current_bulletholes = 3 + }, +/area/bigredv2/outside/office_complex) +"jYS" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"jZp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"jZy" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"jZM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = -8 + }, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/mining) +"kbd" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"kbX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"kcx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/broken_bottle, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"kcH" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/sw) +"kcR" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"kcZ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/filtration_cave_cas) +"kdf" = ( +/obj/item/tool/warning_cone{ + pixel_y = 17 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_plant) +"kdh" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/sw) +"kdi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/se) +"kdo" = ( +/obj/structure/surface/table, +/obj/item/storage/box/bodybags{ + pixel_y = 4 + }, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"kdp" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"kdr" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"kdw" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"keg" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/lz2_south_cas) +"kek" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"key" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars_cave, +/area/bigredv2/caves/mining) +"keC" = ( +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/outside/medical) +"keN" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"kfg" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/c) +"kfk" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave, +/area/bigredv2/caves_lambda) +"kfx" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/n) +"kfY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"kgn" = ( +/obj/item/paper/bigred/crazy, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kgw" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lz2_west_cas) +"kgx" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_south_cas) +"khl" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/computer3frame/wallcomp, +/obj/structure/cable{ + icon_state = "11-2" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"khx" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/obj/item/weapon/twohanded/spear{ + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"khB" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_covered_bed" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_lambda) +"khK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"khP" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"khR" = ( +/obj/structure/machinery/floodlight, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"khT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/item/stack/sheet/metal{ + pixel_y = 9; + pixel_x = 9 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/medical) +"kip" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/eta) +"kjc" = ( +/obj/structure/window_frame/solaris/reinforced, +/obj/item/tool/crowbar/red{ + pixel_y = -13 + }, +/obj/item/shard, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"kjo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"kjr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/stack/cable_coil/random, +/obj/effect/spawner/random/powercell{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/spawner/random/attachment, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kjH" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"kjS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/se) +"kjT" = ( +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"kjU" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"kjY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/telecomm/lz2_cave) +"kka" = ( +/obj/structure/barricade/handrail, +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/engineering) +"kkF" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/bed, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"kle" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 7; + pixel_y = 3; + layer = 3.1 + }, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"kli" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves/mining) +"klp" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Large Cables"; + pixel_y = 13 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"klE" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"klN" = ( +/obj/item/trash/syndi_cakes{ + pixel_y = -15; + pixel_x = -3 + }, +/obj/item/prop/magazine/book/starshiptroopers{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/nw) +"klS" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"kmb" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 4; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kmk" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/mars, +/area/bigredv2/outside/e) +"kmm" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"kmx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/outside/engineering) +"knL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/armor/riot{ + pixel_y = -6; + pixel_x = -8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"knN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"kok" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/filtration_cave_cas) +"koC" = ( +/obj/item/trash/waffles{ + pixel_x = -19; + pixel_y = -5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"koI" = ( +/turf/open/asphalt/cement/cement2, +/area/bigredv2/outside/space_port) +"kpd" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/ne) +"kqS" = ( +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"kqV" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 5; + pixel_y = 11 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"krx" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/lz2_south_cas) +"krH" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"krR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"krV" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/mars, +/area/bigredv2/outside/n) +"krW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/writing, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"krZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Dormitories EVA Maintenance"; + welded = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"ksO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"ktt" = ( +/obj/item/frame/table, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"ktE" = ( +/obj/item/tool/wrench{ + pixel_x = -7; + pixel_y = -14 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 4 + }, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves/mining) +"ktN" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/filtration_plant) +"ktY" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"kuj" = ( +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -11 + }, +/obj/structure/machinery/power/apc/power/north{ + name = "Bar APC" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"kuu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"kuw" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) +"kuA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"kvp" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"kvB" = ( +/obj/item/device/flashlight, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kvD" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/mars, +/area/bigredv2/outside/virology) +"kwq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"kwQ" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/se) +"kxa" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/stack/sheet/wood{ + pixel_y = -2 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"kxi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"kxr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/landmark/nightmare{ + insert_tag = "dorms_party" + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"kyz" = ( +/obj/structure/transmitter/colony_net{ + dir = 4; + phone_category = "Eta Labs"; + phone_id = "Observation"; + pixel_x = -18 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"kzF" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/ne) +"kAj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"kAs" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"kAD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/cardboard{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft{ + pixel_x = 7; + pixel_y = -7 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"kBn" = ( +/turf/closed/wall/solaris, +/area/bigredv2/caves) +"kBB" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_lambda) +"kBE" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"kCe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kCL" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"kCR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/red/west, +/area/bigredv2/outside/marshal_office) +"kDs" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_y = 17 + }, +/obj/item/reagent_container/food/snacks/jellysandwich/cherry, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"kDv" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/gm/river/red, +/area/bigredv2/outside/c) +"kEI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/w) +"kFe" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/asteroidwarning/northeast, +/area/bigred/ground/garage_workshop) +"kGi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"kGm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"kGn" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/eta) +"kGr" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/bigredv2/outside/general_store) +"kGw" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"kGz" = ( +/obj/item/reagent_container/food/drinks/bottle/beer/craft{ + pixel_y = -9; + pixel_x = -7 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"kGK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"kHK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"kIv" = ( +/obj/structure/curtain/red, +/obj/item/prop/alien/hugger, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"kIF" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"kIW" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/se) +"kIX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"kKx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"kKA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"kKB" = ( +/turf/open/floor/darkred2, +/area/bigredv2/caves/eta/research) +"kKW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"kLs" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"kLG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/platingdmg1, +/area/bigredv2/outside/medical) +"kMs" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "Righty tighty, lefty loosey!"; + dir = 1; + icon = 'icons/obj/pipes/valve.dmi'; + icon_state = "map_valve1"; + name = "Pressure Valve" + }, +/obj/structure/cable{ + icon_state = "1-9" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-5" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kMt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"kMJ" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-2"; + name = "heavy duty power cable" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kNa" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"kNc" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"kNs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"kNK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"kOt" = ( +/obj/item/storage/firstaid/o2/empty{ + pixel_y = 4; + pixel_x = -11 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"kOv" = ( +/obj/structure/largecrate/random, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"kPu" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/pipes/valve/open, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kPE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/w) +"kPP" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Control Module"; + pixel_y = 13 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"kQc" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave, +/area/bigredv2/caves_east) +"kQD" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"kRB" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 16 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"kRK" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"kRT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"kSm" = ( +/obj/item/storage/belt/grenade, +/obj/structure/closet/crate, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kSn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/weapon/baseballbat/metal{ + pixel_x = -16; + pixel_y = 18 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/landmark/corpsespawner/colonist, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"kSt" = ( +/obj/structure/cable{ + icon_state = "11-2" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kSH" = ( +/obj/structure/ore_box, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves/mining) +"kSL" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/filtration_cave_cas) +"kTs" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/filtration_cave_cas) +"kTG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"kVR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"kVS" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"kVT" = ( +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"kVY" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold/small_stack, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kWh" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/brown{ + pixel_y = 7; + pixel_x = 12 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"kWE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"kWV" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_se) +"kYs" = ( +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/item/newspaper{ + pixel_x = 7; + pixel_y = -12 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"kYO" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars, +/area/bigredv2/outside/ne) +"kZG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/bible/hefa, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"kZX" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"laj" = ( +/obj/structure/tunnel{ + id = "hole5" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"laO" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/mars, +/area/bigredv2/outside/e) +"lbh" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/n) +"lbZ" = ( +/obj/item/frame/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/pickaxe{ + pixel_y = -7 + }, +/obj/item/tool/pickaxe{ + pixel_y = -3 + }, +/obj/item/tool/pickaxe, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"lcb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"lcf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) +"lck" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"lcu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette, +/obj/item/clothing/mask/cigarette{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/ashtray/bronze{ + pixel_x = -7 + }, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"ldh" = ( +/obj/item/device/flashlight/on{ + pixel_x = 8 + }, +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"len" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/e) +"lff" = ( +/obj/item/stack/sheet/wood{ + pixel_x = 6; + pixel_y = -12 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"lfY" = ( +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_x = -13 + }, +/obj/item/stack/rods{ + pixel_y = 11; + pixel_x = -11 + }, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"lgr" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"lhh" = ( +/obj/structure/fence, +/obj/structure/disposalpipe/segment, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"lhu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/outside/medical) +"lhB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"lhE" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Control Module"; + pixel_y = 15 + }, +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"lhN" = ( +/turf/closed/wall/solaris{ + damage = 1870; + damage_overlay = 5; + current_bulletholes = 1 + }, +/area/bigredv2/outside/office_complex) +"lid" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) +"ljx" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + id_tag = "mbayexit"; + name = "Medbay Reception"; + req_one_access_txt = "2;8;19" + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"ljS" = ( +/obj/item/stack/rods{ + pixel_x = 9; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"lkf" = ( +/obj/item/trash/raisins{ + pixel_y = -5; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"lkt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-in" + }, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) +"llj" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"llS" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" + }, +/obj/structure/prop/almayer/missile_tube{ + color = "grey"; + desc = "An linear accelerator used in experimental genetic treatments. It hums ominously."; + icon_state = "missiletubesouth"; + name = "\improper massive vent"; + pixel_x = -15 + }, +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"lmg" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/lz2_south_cas) +"lmi" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"lms" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/eta) +"lmO" = ( +/obj/structure/surface/table/woodentable, +/obj/item/newspaper{ + pixel_x = -7 + }, +/obj/item/prop/magazine/book/theartofwar{ + pixel_x = 11 + }, +/obj/item/tool/pen{ + pixel_x = -7 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"lnK" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"lom" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"lqd" = ( +/obj/structure/surface/table, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag{ + pixel_y = 5; + pixel_x = -5 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"lqo" = ( +/obj/item/tool/lighter/random, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"lqp" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"lqC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/bigredv2/caves_lambda) +"lrf" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) +"lrs" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"lrH" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_telecomm_cas) +"lrW" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 1; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"lsq" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"lst" = ( +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/research) +"lsI" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/w) +"ltu" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/filtration_plant) +"ltK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "Dormitories"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"lue" = ( +/obj/item/shard, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/n) +"lun" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_x = 7; + pixel_y = -9 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"luA" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"lvh" = ( +/obj/item/weapon/gun/rifle/m4ra, +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_research) +"lvu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office"; + welded = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"lvy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/outside/se) +"lvO" = ( +/obj/structure/surface/table/woodentable{ + dir = 4; + flipped = 1 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"lwR" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4; + layer = 2.9; + pixel_x = 4 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"lwT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"lwX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"lxz" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/cognac, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"lxQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/bigred/union, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"lym" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"lyG" = ( +/obj/item/clothing/glasses/meson{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"lzI" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves) +"lAC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/ne) +"lAF" = ( +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"lAN" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/filtration_cave_cas) +"lAR" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "lambda-interior"; + name = "Lambda Checkpoint Interior"; + pixel_x = null + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"lAV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/tool/screwdriver{ + pixel_x = -13; + pixel_y = 9 + }, +/obj/item/tool/crowbar/red{ + pixel_y = -14; + pixel_x = 2 + }, +/obj/item/stack/tile/plasteel{ + pixel_x = 16; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"lBc" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/c) +"lBe" = ( +/obj/structure/sign/poster/safety, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"lBx" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Machine room" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"lBQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"lBX" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"lCt" = ( +/obj/structure/machinery/power/reactor/colony{ + name = "Reactor Turbine" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"lCR" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 9; + pixel_y = 17 + }, +/obj/item/device/radio{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/clothing/mask/cigarette/weed{ + pixel_y = -3 + }, +/obj/item/clothing/mask/cigarette/weed, +/turf/open/mars_cave, +/area/bigredv2/caves/mining) +"lDa" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"lDp" = ( +/obj/structure/closet/secure_closet, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"lDG" = ( +/obj/structure/bed/roller, +/turf/open/mars, +/area/bigredv2/outside/nw) +"lEi" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"lEw" = ( +/obj/item/tool/pickaxe{ + pixel_y = -3 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"lES" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/healthanalyzer{ + pixel_y = 10; + pixel_x = 6 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"lEW" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/telecomm/n_cave) +"lFe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/revolver/small{ + pixel_x = -11; + pixel_y = 13 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"lFx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"lFR" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "viro_open" + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"lGl" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"lGt" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"lHr" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/bonesetter{ + pixel_y = 6; + pixel_x = -7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"lHK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/tool/wrench{ + pixel_x = -5 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"lIb" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 2; + pixel_y = 9 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"lIe" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"lIv" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/janitor{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"lID" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"lIL" = ( +/obj/structure/sign/safety/fire_haz, +/turf/closed/wall/wood, +/area/bigredv2/caves/mining) +"lIS" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/ne) +"lKw" = ( +/obj/item/paper/bigred/walls, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"lKL" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/e) +"lKW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/outside/medical) +"lLe" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lambda_cave_cas) +"lLf" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"lMb" = ( +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"lMw" = ( +/obj/structure/machinery/sensortower{ + pixel_x = -9 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"lMC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/asteroidwarning/east, +/area/bigred/ground/garage_workshop) +"lNg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) +"lNp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"lNq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 16 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/c) +"lNr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"lOL" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/n) +"lOP" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"lOY" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "etatunnel_open" + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"lPg" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/n) +"lPh" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"lPL" = ( +/obj/structure/platform/shiva{ + dir = 4 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"lQb" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/c) +"lQh" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"lQN" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lz2_south_cas) +"lQW" = ( +/obj/item/stack/sheet/wood{ + pixel_x = -8 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"lRv" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/w) +"lRC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"lSb" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/ne) +"lSm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "small" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"lSA" = ( +/obj/item/device/flashlight/lamp/tripod{ + layer = 6; + pixel_y = 11 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"lSH" = ( +/obj/structure/largecrate/guns/merc{ + icon_state = "case_double"; + name = "supply crate" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"lSU" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/ne) +"lTi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"lTM" = ( +/obj/item/folder/yellow, +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"lTV" = ( +/obj/structure/surface/table, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"lUa" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/n) +"lUd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"lUq" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_se) +"lUM" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"lVr" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"lVO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/metal{ + dir = 1 + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"lVY" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"lWA" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/lz2_south_cas) +"lWE" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"lXt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"lXC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"lYc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/item/frame/table, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"lYi" = ( +/obj/structure/ore_box, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"lYC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/mucus, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/mining) +"lYH" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"lYP" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/nw) +"lYZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"lZV" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves/mining) +"lZZ" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"maB" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "viro-rock_open" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/virology) +"maD" = ( +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"maF" = ( +/obj/item/frame/rack, +/obj/effect/landmark/good_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"maH" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"maN" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/prop/helmetgarb/spent_buckshot{ + pixel_x = 9; + pixel_y = -10 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"maW" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"mbh" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/mars, +/area/bigredv2/outside/e) +"mbt" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/c) +"mbz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Bar Maintenance" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"mbY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"mcd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_box/rounds/empty{ + pixel_x = 3; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"mcO" = ( +/obj/structure/machinery/door_control{ + id = "workshop_br_g"; + name = "Workshop Garage Lockdown"; + pixel_x = -28 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/nw) +"mda" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_lambda) +"mdh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"mdu" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"mdO" = ( +/obj/structure/machinery/door_control{ + id = "Office Complex 1"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"meb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/nw) +"mes" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"meT" = ( +/turf/open/mars, +/area/bigredv2/outside/eta) +"mfw" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"mfG" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"mfQ" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"mgb" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"mgr" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000; + layer = 2.9; + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"mgz" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"mgX" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"mhF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"mhG" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -3 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 11 + }, +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/caves/mining) +"mhV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"mhZ" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"mia" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"mic" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/space_port_lz2) +"mij" = ( +/obj/item/folder/yellow, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"mio" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"miD" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/item/weapon/gun/revolver/cmb, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"mji" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + name = "\improper Engineering Workshop" + }, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"mjD" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/mars, +/area/bigredv2/outside/s) +"mkt" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"mkA" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"mlt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) +"mlV" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"mmg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 + }, +/obj/item/reagent_container/food/snacks/tofu{ + pixel_y = 11 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"mns" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/c) +"mnu" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_casing/shell, +/obj/item/ammo_casing/shell, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"mnv" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"mnw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"mnY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"moe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"moE" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_research) +"mqf" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"mqh" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/panelscorched, +/area/bigredv2/outside/engineering) +"mqK" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/space_port_lz2) +"mqO" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"mqX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"mrF" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/mars, +/area/bigredv2/outside/se) +"mrH" = ( +/obj/structure/machinery/computer3/server, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"mrS" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" + }, +/obj/structure/cable, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"msf" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves/lambda/xenobiology) +"msq" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"msS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"mts" = ( +/obj/item/ore, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"mtL" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + pixel_x = 7; + pixel_y = 10 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"mtS" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/n) +"muk" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/packaged_burrito{ + pixel_x = 5; + pixel_y = 9 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"mun" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Clinic"; + density = 0; + icon_state = "door_open" + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"muo" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/nw) +"muP" = ( +/turf/closed/wall/wood, +/area/bigredv2/caves_research) +"mvk" = ( +/obj/item/tool/shovel, +/turf/open/mars, +/area/bigredv2/outside/nw) +"mvP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/item/weapon/gun/pistol/holdout{ + pixel_x = 9; + pixel_y = 18 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"mwq" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/e) +"mwI" = ( +/obj/structure/surface/table, +/obj/item/evidencebag{ + pixel_y = 12 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"mxC" = ( +/obj/effect/decal/strata_decals/grime/grime1, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"mya" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_east) +"myc" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 18; + pixel_y = 11 + }, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 10; + pixel_y = 2 + }, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"myl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-in" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"myu" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 2; + pixel_x = -20 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"myJ" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/n) +"myK" = ( +/obj/item/trash/kepler{ + pixel_y = 14; + pixel_x = 15 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"myM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/latex{ + pixel_x = 3 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"myW" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/bigredv2/caves_lambda) +"myY" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/filtration_cave_cas) +"mzu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/e) +"mzC" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8; + layer = 2.9; + pixel_x = -3 + }, +/obj/structure/platform/kutjevo/rock, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"mzV" = ( +/turf/open/mars, +/area/bigredv2/outside/filtration_plant) +"mAk" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"mAv" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"mAY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"mBc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/hatchet, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"mBo" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"mBI" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"mCo" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"mDi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/c) +"mDk" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"mDs" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_cave_cas) +"mDt" = ( +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"mDN" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/lz1_north_cas) +"mEg" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + health = 25000 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/c) +"mEx" = ( +/obj/structure/surface/table, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/storage/box/beakers{ + pixel_y = -1; + pixel_x = 4 + }, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"mEC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_north) +"mEE" = ( +/obj/item/trash/hotdog{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"mEH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"mEW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"mFm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/w) +"mFT" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/landmark/corpsespawner/russian, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"mGq" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz1_north_cas) +"mGy" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Dormitories EVA"; + icon_state = "door_open"; + density = 0 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"mGS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"mHp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"mHx" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement15, +/area/bigredv2/caves_lambda) +"mIc" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"mIr" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/filtration_plant) +"mIs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"mIu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"mIy" = ( +/obj/effect/spawner/random/tool{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"mIZ" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/item/tank/air, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"mKi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"mKo" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"mKM" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"mKR" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"mLw" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/item/trash/kepler{ + pixel_y = 9; + pixel_x = 12 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"mMf" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/space_port_lz2) +"mMC" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/eta) +"mNP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) +"mNZ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"mOc" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper General Store Maintenance" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"mON" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"mOW" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"mOZ" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/queen_spawn, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"mPm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Marshal Office Courtroom"; + welded = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"mPC" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"mPF" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"mPK" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"mPP" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"mPR" = ( +/obj/item/trash/snack_bowl{ + pixel_x = 1; + pixel_y = -12 + }, +/obj/item/trash/raisins{ + pixel_y = 8; + pixel_x = -2 + }, +/obj/item/trash/uscm_mre{ + pixel_y = 3; + pixel_x = 10 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/nw) +"mPU" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/packaged_burger, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"mQA" = ( +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = 8; + pixel_y = -3 + }, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -1; + pixel_y = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"mQY" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/w) +"mRi" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"mRz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/lambda_cave_cas) +"mRD" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor, +/area/bigredv2/caves) +"mRP" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_y = 4; + pixel_x = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"mSi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -6; + pixel_y = -4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"mSz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) +"mSS" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/engineering) +"mST" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"mTQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"mUb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"mUy" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/eta/xenobiology) +"mUE" = ( +/obj/structure/window_frame/solaris, +/obj/item/stack/rods{ + pixel_y = 4; + pixel_x = -13 + }, +/obj/item/shard, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"mUW" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars, +/area/bigredv2/outside/e) +"mVh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/barricade/wooden{ + dir = 8; + pixel_y = -5; + pixel_x = -9 + }, +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"mVp" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/space_port_lz2) +"mWg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 2; + name = "\improper Operations" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"mWt" = ( +/obj/structure/prop/almayer/missile_tube{ + desc = "A detached drill arm of a big old Seegson D-602 Mining Robot. Seems to be jury rigged to run without the main robot assembly."; + name = "\improper Massive mining drill"; + pixel_y = 13 + }, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"mWJ" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"mXm" = ( +/obj/item/trash/uscm_mre{ + pixel_x = 10; + pixel_y = -2 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"mXw" = ( +/obj/item/storage/toolbox/mechanical, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"mYo" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/space_port_lz2) +"mYp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/metal, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"mYW" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"mZh" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars, +/area/bigredv2/outside/nw) +"mZt" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/item/prop/alien/hugger, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"mZC" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_virology) +"nbi" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"nbu" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"nbL" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/mars/mars_dirt_5, +/area/bigredv2/outside/nw) +"ncc" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_y = 6; + pixel_x = 16 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"ncv" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"ncL" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"ndw" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"ndy" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"ndD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars, +/area/bigredv2/outside/c) +"neD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/barricade/wooden{ + pixel_y = -10 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"nfP" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"nfS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"ngo" = ( +/obj/effect/acid_hole, +/turf/closed/wall/solaris, +/area/bigredv2/outside/medical) +"ngJ" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"nhF" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"nih" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"niQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/engineering) +"niR" = ( +/obj/effect/decal/cleanable/blood/gibs/robot{ + name = "door debris" + }, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"njf" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/lz2_south_cas) +"nkm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"nkn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"nkx" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/se) +"nky" = ( +/obj/structure/machinery/vending/coffee, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"nkB" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/cmb{ + pixel_y = -11; + pixel_x = 5 + }, +/obj/item/weapon/gun/revolver/cmb{ + pixel_y = -1; + pixel_x = -3 + }, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"nkD" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/item/trash/crushed_cup{ + pixel_x = -10; + pixel_y = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"nkE" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/paper_bin/wy{ + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"nkQ" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_se) +"nkW" = ( +/obj/item/ore/gold, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"nkY" = ( +/obj/item/ore{ + pixel_x = -1; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"nlB" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/n) +"nlJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"nlW" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform_decoration/kutjevo/rock, +/turf/open/mars, +/area/space) +"nmb" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"nmn" = ( +/obj/item/weapon/dart{ + pixel_x = 10 + }, +/turf/open/floor/carpet9_4/west, +/area/bigredv2/outside/bar) +"nms" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -8; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"nmU" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"nnd" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"nny" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves_research) +"nnz" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/n) +"nnA" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"nnL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"nnU" = ( +/obj/structure/machinery/door_control{ + desc = "A remote control-switch for opening the engines blast doors."; + id = "rad_door"; + name = "Reactor Radiation Shielding control"; + pixel_x = 30; + req_access_txt = "7" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"noN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1; + pixel_y = 11 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"noQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/lambda_cave_cas) +"noR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"npz" = ( +/obj/structure/surface/table, +/obj/item/spacecash/c100, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = 12 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"nqr" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"nra" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/sw) +"nrj" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"nrw" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/filtration_cave_cas) +"nsc" = ( +/obj/structure/curtain/medical, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopleft" + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"ntc" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/c) +"ntw" = ( +/obj/item/reagent_container/food/drinks/bottle/beer/craft/ganucci{ + pixel_x = -6; + pixel_y = -8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"ntF" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"ntX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"nub" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -3; + pixel_y = 16 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 7 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"nug" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"nuq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/medical_decals{ + icon_state = "cryocell2deval" + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"nuw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"nuz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"nuQ" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"nvn" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"nwe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"nwB" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"nwS" = ( +/obj/item/ore{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"nxa" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"nyZ" = ( +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"nzb" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"nzc" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"nzx" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"nzB" = ( +/obj/structure/machinery/computer/general_air_control{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"nzN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"nzX" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/mars, +/area/bigredv2/outside/nw) +"nBb" = ( +/obj/item/ammo_magazine/pistol/b92fs, +/obj/item/weapon/gun/pistol/b92fs{ + pixel_x = 13; + pixel_y = -7 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"nBd" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/se) +"nCp" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"nCL" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 1 + }, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/space_port_lz2) +"nCM" = ( +/obj/item/stack/sheet/metal{ + pixel_y = -3; + pixel_x = -8 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"nCT" = ( +/obj/structure/sign/poster/ad, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"nCX" = ( +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"nDu" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"nDw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"nEl" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/lz2_south_cas) +"nEv" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement14, +/area/bigredv2/caves_lambda) +"nEz" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"nEB" = ( +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"nEH" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/outside/n) +"nEJ" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/eta) +"nEP" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/filtration_plant) +"nEV" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -10; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"nFm" = ( +/obj/item/storage/firstaid/adv/empty{ + pixel_y = -6; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"nFp" = ( +/obj/structure/window, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"nFB" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"nFH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/caves_lambda) +"nGl" = ( +/obj/structure/bed/bedroll{ + dir = 10 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"nGm" = ( +/obj/structure/fence, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/filtration_cave_cas) +"nHQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/filtration_cave_cas) +"nIi" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 1; + name = "\improper Engine Reactor" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"nIx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"nIS" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/donut_box, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"nJt" = ( +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_y = 8; + pixel_x = 13 + }, +/obj/item/reagent_container/food/drinks/cup, +/obj/effect/decal/cleanable/generic, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/nw) +"nJu" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/mars, +/area/bigredv2/outside/eta) +"nKL" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "An exchange valve"; + dir = 8; + icon = 'icons/obj/pipes/filter.dmi'; + icon_state = "map"; + name = "Automated Valve" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"nKZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/c) +"nLm" = ( +/obj/item/prop/helmetgarb/rosary{ + pixel_y = 7; + pixel_x = 12 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"nLw" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/sw) +"nMB" = ( +/obj/structure/machinery/door_control{ + id = "workshop_br_g"; + name = "Workshop Garage Lockdown"; + pixel_x = 28 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/bigred/ground/garage_workshop) +"nMG" = ( +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"nMQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/arcade, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"nMZ" = ( +/obj/structure/machinery/door/poddoor/almayer/closed, +/obj/structure/cable, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"nNS" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -2; + pixel_y = -4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"nOe" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"nOl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/bigredv2/outside/space_port) +"nOK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"nOW" = ( +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"nPz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"nPG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"nPH" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + layer = 3.1 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/nw) +"nQl" = ( +/obj/item/ore{ + pixel_x = -1; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/blood/oil/streak{ + pixel_y = 4 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"nQF" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/cardboard{ + pixel_x = -6; + pixel_y = -11 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"nRv" = ( +/obj/item/tool/warning_cone, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/se) +"nRw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) +"nRM" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/c) +"nRS" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"nRT" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"nSp" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Control Center APC" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"nSP" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"nTv" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"nTF" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"nTG" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/lz2_south_cas) +"nUK" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"nVo" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"nVq" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"nVx" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_plant) +"nVJ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/caves_lambda) +"nVV" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/mars, +/area/bigredv2/outside/c) +"nWD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/burger, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"nWE" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 7; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/s) +"nWG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"nXh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"nXw" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"nXC" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_research) +"nXD" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"nXQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"nXS" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) +"nYl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/roller, +/obj/structure/closet/bodybag, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"nYz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"nYC" = ( +/obj/structure/surface/table, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"nYV" = ( +/obj/item/tool/warning_cone, +/turf/open/mars, +/area/bigredv2/outside/s) +"nZd" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz1cave_flank" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port) +"nZB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/telecomm/n_cave) +"nZD" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"nZK" = ( +/obj/item/ore/diamond, +/obj/item/stack/sheet/mineral/diamond{ + pixel_x = 13; + pixel_y = -5 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"obf" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lambda-graveyard" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/se) +"obB" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/item/stack/sheet/wood{ + pixel_y = -8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"ocp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"ocA" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/library) +"ocG" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/item/storage/fancy/vials/random, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"ocL" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"odw" = ( +/obj/structure/bed, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"odN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/shell, +/turf/open/floor/whiteblue, +/area/bigredv2/outside/medical) +"oea" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"oes" = ( +/obj/structure/surface/table/woodentable, +/obj/item/newspaper, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"ofn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris, +/area/bigredv2/outside/filtration_plant) +"ofp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/s) +"ofu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ofJ" = ( +/obj/structure/surface/table, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Eta Labs"; + phone_color = "red"; + phone_id = "Security" + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"ofO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/se) +"ofX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/s) +"ogt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Abandoned Mining Storage" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ogE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/outside/medical) +"ohg" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"ohl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/plate{ + pixel_x = -13; + pixel_y = 12 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/space_port_lz2) +"ohD" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_east) +"ohY" = ( +/obj/structure/cargo_container/hd/left/alt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"ois" = ( +/obj/item/trash/eat{ + pixel_x = -9; + pixel_y = 10 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"oji" = ( +/obj/structure/morgue{ + dir = 2 + }, +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) +"ojs" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"ojD" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"okh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-5" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"okt" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"okB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/machinery/iv_drip, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"okJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"okU" = ( +/obj/item/trash/snack_bowl{ + pixel_y = 5; + pixel_x = -8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"ole" = ( +/turf/open/floor/almayer/w_y0/north, +/area/bigredv2/outside/admin_building) +"olK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"olT" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"oma" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"omw" = ( +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"omG" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"omV" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteblue, +/area/bigredv2/outside/medical) +"omX" = ( +/obj/item/stack/cable_coil/cut{ + pixel_x = -3; + pixel_y = -5 + }, +/obj/item/stack/cable_coil/cut{ + pixel_x = 9; + pixel_y = -8 + }, +/obj/item/stack/cable_coil/cut{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/mining) +"ona" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/whitepurplefull, +/area/bigredv2/outside/medical) +"onc" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"onh" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"ono" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"onR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/broken, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"oof" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/asphalt/cement, +/area/bigredv2/caves_lambda) +"ooi" = ( +/obj/structure/platform_decoration/shiva{ + dir = 8 + }, +/obj/structure/platform_decoration/shiva, +/obj/item/stack/cable_coil, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"oox" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-interior"; + name = "Lambda Checkpoint Interior" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/lambda_cave_cas) +"ooC" = ( +/obj/structure/surface/table{ + flipped = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"ooJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"opg" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/mars, +/area/bigredv2/outside/n) +"opn" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/under/brown{ + pixel_y = 11; + pixel_x = 7 + }, +/obj/structure/machinery/washing_machine{ + pixel_y = 13 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"opr" = ( +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + pixel_x = -5; + pixel_y = 2; + layer = 2.8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"opz" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"opK" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"oqe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/ammo_casing/shell, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"oqr" = ( +/obj/item/ore{ + pixel_x = -1 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"oqM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"oqY" = ( +/obj/item/tool/wrench, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"ora" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"orc" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"orE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"orT" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"orZ" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"osi" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler{ + pixel_y = 3 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"osm" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"otb" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"otX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) +"oud" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ouh" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"ouo" = ( +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/outside/medical) +"ouD" = ( +/obj/effect/landmark/crap_item, +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars, +/area/bigredv2/outside/c) +"ovm" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/tool/warning_cone{ + pixel_x = 6 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"ovq" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"ovB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_west_cas) +"ovH" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Medical Clinic Power Station"; + locked = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"ovQ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/ne) +"ovZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 3; + pixel_y = 15 + }, +/obj/effect/spawner/gibspawner/human, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"owc" = ( +/obj/item/toy/plush/bee, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"owg" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars, +/area/bigredv2/caves_north) +"owR" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"oxh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/plasteel/medium_stack, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"oxk" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"oxp" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_research) +"oxP" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"oyb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"oye" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/filtration_cave_cas) +"oyM" = ( +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_x = 11; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"oyW" = ( +/obj/structure/surface/rack, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"ozf" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves/mining) +"ozs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"ozv" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/bigredv2/caves_virology) +"ozy" = ( +/obj/structure/surface/table/woodentable{ + dir = 4; + flipped = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"ozO" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"ozQ" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"ozW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/bigredv2/caves_lambda) +"ozZ" = ( +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/w) +"oAf" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_virology) +"oBy" = ( +/turf/open/asphalt/cement/cement12, +/area/bigredv2/caves_lambda) +"oCa" = ( +/obj/item/weapon/baton/damaged{ + pixel_y = 20 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"oCg" = ( +/obj/item/shard, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"oCK" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"oDB" = ( +/obj/structure/closet/l3closet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/general_offices) +"oDW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"oEq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars, +/area/bigredv2/outside/n) +"oEz" = ( +/obj/item/clothing/under/lightbrown{ + pixel_x = -7; + pixel_y = -4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"oEB" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement15, +/area/bigredv2/outside/filtration_cave_cas) +"oEY" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"oFj" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_north) +"oFs" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"oFx" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/ne) +"oFQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/medical) +"oGr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/sheet/plasteel, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"oHu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal{ + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"oHV" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = -5 + }, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = 7 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"oHW" = ( +/obj/item/clothing/under/darkred, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"oIb" = ( +/obj/structure/machinery/computer/crew{ + density = 0; + pixel_y = 16 + }, +/obj/item/reagent_container/pill/happy, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"oIc" = ( +/obj/effect/decal/cleanable/blood{ + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" + }, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"oIg" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/c) +"oIK" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"oJd" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-2-4"; + name = "heavy duty power cable" + }, +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"oJh" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"oJv" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras/wooden_tv{ + dir = 8 + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"oJF" = ( +/obj/structure/curtain/open/medical, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"oJO" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"oJP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"oJZ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/bigredv2/outside/virology) +"oKc" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"oKy" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"oLa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/folding_barricade, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"oLf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/bigredv2/outside/space_port) +"oMd" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 13 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"oMf" = ( +/obj/structure/fence, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"oMD" = ( +/obj/structure/bed/bedroll{ + dir = 1 + }, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"oNd" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/mars, +/area/bigredv2/outside/e) +"oNu" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/outside/lz2_west_cas) +"oNW" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/pill/happy, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"oOj" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/se) +"oOk" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"oOr" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"oOw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/river, +/area/bigredv2/outside/c) +"oOL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"oPM" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior"; + pixel_x = null + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"oPT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"oQz" = ( +/obj/structure/machinery/light/double{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz2_south_cas) +"oQI" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_sw) +"oRa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"oRs" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_north) +"oRK" = ( +/obj/structure/computer3frame/wallcomp, +/obj/structure/cable{ + icon_state = "11-2" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"oTf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"oTv" = ( +/obj/structure/largecrate/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"oTx" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/nw) +"oTG" = ( +/obj/item/toy/beach_ball{ + pixel_x = -6; + pixel_y = -10 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"oTL" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"oTM" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"oUs" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"oUY" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"oVg" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/glass, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 16 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 7; + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"oVq" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz1entrance_v2" + }, +/turf/open/mars, +/area/bigredv2/outside/nw) +"oWc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"oWe" = ( +/obj/structure/machinery/photocopier{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/darkblue2/north, +/area/bigredv2/outside/admin_building) +"oWp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"oWC" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-2"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"oXj" = ( +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"oXv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/c) +"oXH" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 10; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"oXP" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 16 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"oYO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"oZA" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Large Cables"; + pixel_y = 12 + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"oZQ" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/bigredv2/outside/filtration_plant) +"pak" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/s) +"pao" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Oxygen Supply Console" + }, +/obj/structure/cable{ + icon_state = "11-2" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"paz" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"pbn" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"pbr" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/solaris, +/area/bigredv2/outside/filtration_cave_cas) +"pbs" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/living) +"pbK" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/queen_spawn, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"pbM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"pbX" = ( +/obj/effect/spawner/random/tool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"pbZ" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"pcf" = ( +/obj/structure/sign/safety/manualopenclose{ + desc = "The now broken door access console for these podlocks. Seems like some poor bastard was frantically trying to slide their card due to the the card reader being scraped up. Poor bastards."; + icon = 'icons/obj/structures/machinery/monitors.dmi'; + icon_state = "auth_off"; + name = "Access console"; + pixel_y = -2 + }, +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/caves/mining) +"pcA" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves/mining) +"pcF" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"pcI" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/filtration_plant) +"pdt" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"pdB" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/shard/shrapnel/bone_chips, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"pdI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) +"pdP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"pdT" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"pdW" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/virology) +"per" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/dorms) +"pfG" = ( +/obj/structure/machinery/power/apc/no_power/south, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/greengrid, +/area/bigredv2/outside/telecomm) +"pfJ" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/wood{ + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"pgh" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/ne) +"pgi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"pgk" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"pgu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"pgC" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/c) +"pgV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/caves_east) +"phi" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_research) +"phk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"pix" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/whiteblue/southwest, +/area/bigredv2/outside/medical) +"piT" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask, +/obj/item/reagent_container/food/drinks/flask{ + pixel_x = 7 + }, +/obj/item/reagent_container/food/drinks/flask{ + pixel_x = -5 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"pjh" = ( +/obj/item/tool/warning_cone{ + pixel_x = -14; + pixel_y = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"pjD" = ( +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"pkd" = ( +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = 8 + }, +/obj/item/stack/rods{ + pixel_x = 3; + pixel_y = 8 + }, +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/outside/medical) +"pld" = ( +/turf/open/gm/river/desert/deep/toxic, +/area/bigredv2/outside/c) +"pmf" = ( +/obj/item/tool/warning_cone{ + pixel_x = 16; + pixel_y = 14 + }, +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/mars, +/area/bigredv2/outside/n) +"pmk" = ( +/obj/structure/surface/table, +/obj/item/spacecash/c1, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"pmN" = ( +/obj/effect/decal/cleanable/blood{ + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"pmS" = ( +/turf/open/mars, +/area/bigredv2/caves_north) +"pnL" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/caves_north) +"pog" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"pok" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"pow" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz1_north_cas) +"poF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"poG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"poL" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin{ + pixel_y = 10; + pixel_x = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"poS" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"poV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) +"ppo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"ppp" = ( +/obj/structure/sign/safety/hazard, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"ppZ" = ( +/obj/structure/barricade/handrail/medical{ + dir = 4 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"pqj" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"pqK" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/outside/medical) +"pri" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_north) +"prz" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/lambda_cave_cas) +"prU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable, +/obj/item/prop/magazine/book/bladerunner{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"psI" = ( +/obj/item/weapon/ice_axe/green{ + pixel_y = -12 + }, +/obj/item/stack/medical/bruise_pack{ + pixel_x = -15; + pixel_y = 10 + }, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/n) +"psP" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"ptq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/eat{ + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"ptt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"ptL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"ptQ" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/mars, +/area/bigredv2/outside/filtration_plant) +"puU" = ( +/obj/item/paper/bigred/witness, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz2_south_cas) +"pvg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"pvj" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"pvk" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "Righty tighty, lefty loosey!"; + dir = 1; + icon = 'icons/obj/pipes/valve.dmi'; + icon_state = "map_valve1"; + name = "Pressure Valve" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"pvl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/smg/mp5{ + current_mag = null; + pixel_y = 8; + pixel_x = -18 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"pvp" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/filtration_plant) +"pwa" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"pwX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/trash/uscm_mre{ + pixel_y = 13; + pixel_x = 6 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"pxp" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"pxv" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 + }, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves/mining) +"pxH" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"pxP" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"pxV" = ( +/turf/open/asphalt/cement/cement1, +/area/bigredv2/caves_lambda) +"pyq" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"pyU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"pzC" = ( +/obj/structure/window/framed/solaris, +/obj/structure/curtain, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"pAd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) +"pAX" = ( +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"pBv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/filtration_plant) +"pBD" = ( +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"pBX" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/space_port_lz2) +"pCa" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/mars, +/area/bigredv2/outside/se) +"pCk" = ( +/obj/item/stack/sheet/metal{ + pixel_y = 5; + pixel_x = 7 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"pCR" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"pDn" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/space_port) +"pDV" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"pEy" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"pGp" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/mars, +/area/bigredv2/outside/w) +"pGP" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_plant) +"pGS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic"; + icon_state = "door_open"; + density = 0 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"pGU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"pHb" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"pHf" = ( +/obj/item/trash/eat{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) +"pHQ" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 + }, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/nw) +"pIl" = ( +/obj/structure/morgue{ + dir = 2 + }, +/turf/open/floor/whiteblue/northwest, +/area/bigredv2/outside/medical) +"pIN" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"pJd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Lambda Checkpoint" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"pJn" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/ne) +"pJt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/telecomm/n_cave) +"pJS" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -4; + pixel_y = 20 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"pJX" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves/mining) +"pJZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"pKP" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"pKS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement14, +/area/bigredv2/outside/space_port) +"pLj" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves/mining) +"pLH" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/ne) +"pMc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"pMd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"pMi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/extinguisher, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"pMl" = ( +/obj/structure/barricade/metal{ + dir = 4 + }, +/turf/open/floor/darkred2/southeast, +/area/bigredv2/outside/admin_building) +"pMm" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"pMr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/space_port) +"pMv" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/lz1_north_cas) +"pMB" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"pNa" = ( +/turf/open/floor/darkred2/southwest, +/area/bigredv2/caves/eta/research) +"pNi" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"pND" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/s) +"pOg" = ( +/obj/structure/machinery/compressor{ + dir = 1 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"pOt" = ( +/obj/structure/machinery/optable, +/turf/open/floor/whiteblue/east, +/area/bigredv2/outside/medical) +"pOL" = ( +/obj/structure/closet/crate/miningcar/yellow, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"pPh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/telecomm/warehouse) +"pPo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"pPP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"pQb" = ( +/obj/structure/bed, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"pQv" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor, +/area/bigredv2/caves) +"pQE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "11-1" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"pQM" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave, +/area/bigredv2/outside/lz1_telecomm_cas) +"pRy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Bar"; + density = 0; + icon_state = "door_open" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"pRG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"pRP" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/telecomm/n_cave) +"pSa" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"pSc" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"pSf" = ( +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"pTl" = ( +/obj/structure/surface/table, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "red"; + phone_id = "Marshal Office" + }, +/obj/item/restraint/handcuffs, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"pTA" = ( +/obj/structure/platform_decoration/shiva{ + dir = 1 + }, +/obj/structure/platform_decoration/shiva{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"pTH" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"pUi" = ( +/obj/item/weapon/broken_bottle, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"pUn" = ( +/obj/item/clothing/gloves/latex{ + pixel_y = 5; + pixel_x = 12 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"pVp" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"pVv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/compressor{ + dir = 1 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"pVP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"pWp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/sheet/wood, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"pWs" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/engineering) +"pXm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"pXn" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 27 + }, +/obj/structure/closet/toolcloset, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"pXp" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"pXu" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"pXB" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 18 + }, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/obj/item/weapon/gun/rifle/m41a/training, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"pXY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000; + layer = 2.8 + }, +/obj/structure/machinery/vending/snack{ + pixel_x = 5; + pixel_y = -1; + layer = 2.9 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"pYt" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves_sw) +"pYE" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"pYL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"pYO" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"pZe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"pZu" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/ore{ + pixel_y = 5 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"qaF" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"qaK" = ( +/obj/structure/largecrate, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"qaR" = ( +/obj/vehicle/powerloader/ft, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"qbp" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-interior"; + name = "Lambda Checkpoint Interior" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/lambda_cave_cas) +"qby" = ( +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/lz2_cave) +"qcv" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/nw) +"qcC" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/mars, +/area/bigredv2/outside/n) +"qcE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"qcQ" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/space_port_lz2) +"qdL" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_y = -7; + pixel_x = -7 + }, +/obj/item/ammo_magazine/revolver/cmb, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"qet" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/space_port_lz2) +"qeC" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/telecomm/lz2_cave) +"qeH" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"qeK" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/filtration_plant) +"qeX" = ( +/obj/structure/largecrate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"qeZ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"qgn" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"qgY" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_sw) +"qhk" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"qhl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"qhF" = ( +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"qhH" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-2"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/mining) +"qhY" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/obj/item/stack/sheet/metal{ + pixel_x = -13; + pixel_y = 14 + }, +/turf/open/mars, +/area/bigredv2/outside/c) +"qiA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/tool/extinguisher, +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"qjm" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/bigredv2/caves_lambda) +"qjA" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"qjO" = ( +/obj/structure/prop/almayer/computers/mapping_computer{ + desc = "A strange-looking collection of coordinate inputs, relay shunts, and wiring. Designed to operate an experimental teleporter."; + name = "\improper Teleporter Targeting Computer" + }, +/turf/open/floor/greengrid, +/area/space) +"qkn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"qkw" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Access door" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"qky" = ( +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"qkI" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/color/orange, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"qlK" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"qlW" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool{ + pixel_y = 7; + pixel_x = 13 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"qmm" = ( +/obj/structure/cargo_container/hd/right/alt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"qmp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/obj/structure/largecrate/supply/medicine/iv{ + pixel_y = -7; + pixel_x = 3 + }, +/obj/structure/largecrate/random/mini/med{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"qmE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/dart/green{ + pixel_y = -10; + pixel_x = -11 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"qmG" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/item/stack/sheet/wood{ + pixel_y = -7 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"qmH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"qnj" = ( +/obj/item/weapon/gun/smg/mp5{ + current_mag = null; + pixel_y = 8; + pixel_x = -18 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"qnr" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"qnT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement, +/area/bigredv2/caves_lambda) +"qoj" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/outside/filtration_cave_cas) +"qot" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6; + pixel_y = 10 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"qoN" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"qoQ" = ( +/obj/structure/morgue{ + dir = 1 + }, +/turf/open/floor/whiteblue/southwest, +/area/bigredv2/outside/medical) +"qpn" = ( +/obj/item/tool/warning_cone{ + pixel_x = -6 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"qpP" = ( +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"qpZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/semki{ + pixel_y = -14 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"qqa" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"qqw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"qqK" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"qru" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"qrZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/fire, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"qsd" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"qse" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"qsl" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"qsE" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigred/ground/garage_workshop) +"qsT" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/virology) +"qsV" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"qty" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/item/stack/rods{ + pixel_y = 13; + pixel_x = 17 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/nw) +"qtT" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/ammo_casing/shell, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"qus" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"qux" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"quQ" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 2; + pixel_y = 17 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"quU" = ( +/obj/item/trash/eat{ + pixel_x = 12; + pixel_y = -13 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"quX" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Engineering"; + name = "\improper Engineering Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"qvA" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"qvI" = ( +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"qwx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"qwy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"qxo" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"qxD" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/c) +"qyh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/sosjerky{ + pixel_x = -12; + pixel_y = 17 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"qyi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/outside/admin_building) +"qzk" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/transmitter/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "blue"; + phone_id = "Operations"; + pixel_y = 24 + }, +/turf/open/floor/darkblue2/north, +/area/bigredv2/outside/admin_building) +"qzt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"qzI" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"qzO" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "eta"; + name = "Eta Lockdown" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/lz2_south_cas) +"qzY" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"qAg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/limb/head, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"qAk" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"qAF" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/n) +"qBx" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/e) +"qBy" = ( +/obj/structure/bed/roller, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"qBF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/space_port_lz2) +"qCK" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/lz2_south_cas) +"qDu" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"qDH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/bigredv2/outside/virology) +"qDK" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = -2; + pixel_x = -8 + }, +/obj/item/reagent_container/food/snacks/packaged_meal{ + pixel_x = 8; + pixel_y = 9 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"qDU" = ( +/obj/item/prop/colony/canister{ + pixel_y = -10 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/nw) +"qDZ" = ( +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/telecomm/n_cave) +"qEc" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"qEl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"qEm" = ( +/obj/item/stack/sheet/wood{ + pixel_y = 5; + pixel_x = -4 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/n) +"qEs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_south_cas) +"qEz" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/mars, +/area/bigredv2/outside/nw) +"qEE" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"qEJ" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "workshop_br_g"; + name = "\improper Workshop Garage" + }, +/turf/open/floor/delivery, +/area/bigred/ground/garage_workshop) +"qFg" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"qFh" = ( +/obj/item/tool/pickaxe, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"qFq" = ( +/obj/item/paper{ + info = "god save us, I take this end over that at the hands of those monsters"; + name = "scribbled note" + }, +/obj/item/tool/pen{ + pixel_x = 10; + pixel_y = 14 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"qFY" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_east) +"qGd" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Virology APC" + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"qGg" = ( +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 13 + }, +/obj/item/ashtray/plastic, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"qGT" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 4; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"qGY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"qHc" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/filtration_plant) +"qHy" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/n) +"qHY" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/outside/lz2_south_cas) +"qHZ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"qId" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/se) +"qIp" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/se) +"qJh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"qJM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"qJV" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"qKK" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/space_port_lz2) +"qKW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control{ + id = "Medical"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"qLk" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"qLD" = ( +/turf/open/floor/red, +/area/bigredv2/outside/lambda_cave_cas) +"qLV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"qMu" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"qMG" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/w) +"qMJ" = ( +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"qMS" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/n) +"qNu" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"qNH" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"qNP" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"qNU" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ + dir = 1 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/landing/console2) +"qNX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"qOC" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/nw) +"qOK" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/lightbrown{ + pixel_x = 10; + pixel_y = -5 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"qOM" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"qPQ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/nosmoking_1{ + pixel_x = -32 + }, +/obj/item/stack/sheet/wood/medium_stack{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/stack/sheet/wood{ + pixel_x = -4; + pixel_y = -10 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"qPT" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/eta) +"qQl" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"qQn" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) +"qQr" = ( +/obj/item/stack/sheet/wood, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_north) +"qQM" = ( +/obj/item/trash/popcorn{ + pixel_y = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"qRj" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -11; + pixel_y = -4; + layer = 3.2 + }, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 7; + pixel_y = 16; + layer = 3.1 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/trash/hotdog{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"qRm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) +"qRI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/ammo_casing/bullet, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"qSg" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.2; + pixel_x = 2; + pixel_y = -3 + }, +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/outside/medical) +"qSj" = ( +/obj/structure/cargo_container/hd/mid/alt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"qTw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/armor/riot{ + pixel_y = 5; + pixel_x = 7 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"qTC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"qTH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/filtration_plant) +"qTN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/virology) +"qUF" = ( +/obj/structure/machinery/computer/area_atmos{ + dir = 1 + }, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"qUS" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_sw) +"qUT" = ( +/obj/structure/window_frame/solaris, +/obj/item/shard, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"qVd" = ( +/obj/item/reagent_container/food/snacks/sausage, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/space) +"qVi" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"qVB" = ( +/obj/item/weapon/shield/riot, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"qWA" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"qXf" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"qXi" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/pinpointer, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"qXx" = ( +/obj/item/frame/table/reinforced, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"qXK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"qYB" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"qYH" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"qYX" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/space_port) +"qYY" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"qZo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"qZx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"qZU" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"raq" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/adv{ + pixel_y = 13; + pixel_x = 7 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"rat" = ( +/obj/structure/machinery/light, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"raE" = ( +/obj/effect/decal/cleanable/molten_item{ + pixel_x = -5; + pixel_y = -11 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"raQ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/telecomm/lz2_cave) +"raU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 + }, +/turf/open/floor/red/east, +/area/bigredv2/outside/marshal_office) +"rbl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-interior"; + name = "Lambda Checkpoint Interior" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/lambda_cave_cas) +"rbs" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/lambda_cave_cas) +"rbD" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"rbV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"rcc" = ( +/obj/structure/prop/almayer/missile_tube{ + desc = "A detached drill arm of a big old Seegson D-602 Mining Robot. Seems to be jury rigged to run without the main robot assembly."; + name = "\improper Massive mining drill"; + pixel_y = 12 + }, +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 + }, +/obj/structure/cable, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"rcN" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_research) +"rcR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/medical{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"rdf" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/ne) +"rdr" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"rdH" = ( +/obj/structure/barricade/wooden{ + dir = 8; + pixel_y = 12; + pixel_x = 2 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"rdR" = ( +/turf/open/floor, +/area/bigredv2/outside/lz2_south_cas) +"rem" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"rev" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"reB" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"reL" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "vault_v2" + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"rfe" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_2, +/area/space) +"rfL" = ( +/obj/item/shard, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"rgf" = ( +/obj/item/device/healthanalyzer{ + pixel_x = 3; + pixel_y = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"rgm" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/chapel, +/area/bigredv2/outside/chapel) +"rgp" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"rhB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"rhE" = ( +/obj/structure/pipes/unary/freezer{ + icon_state = "freezer_1" + }, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -16 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"rhP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/engineering) +"ria" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/shard/shrapnel/bone_chips, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"rie" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/stack/cable_coil/cut{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"riL" = ( +/obj/item/storage/toolbox{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"rjw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/filtration_cave_cas) +"rjF" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 19 + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"rkh" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/red, +/area/bigredv2/outside/lambda_cave_cas) +"rkS" = ( +/obj/structure/cable{ + icon_state = "5-6" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"rkU" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = -5 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = 7 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"rlO" = ( +/obj/structure/prop/rock/brown{ + pixel_y = 10; + pixel_x = -6 + }, +/turf/open/mars, +/area/bigredv2/outside/nw) +"rml" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"rmS" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"rmW" = ( +/obj/item/stack/sheet/wood{ + layer = 4.1; + pixel_x = 14; + pixel_y = -4 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"rnc" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_research) +"rnv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/lambda_cave_cas) +"rnV" = ( +/obj/item/stack/sheet/glass, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"row" = ( +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"roP" = ( +/obj/item/ore{ + pixel_x = 9; + pixel_y = -4 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"rpl" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"rpI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"rqa" = ( +/obj/structure/tunnel{ + id = "hole4" + }, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"rqj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "A bunch of tiny bits of shattered metal."; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "piece of shrapnel"; + pixel_x = -1; + pixel_y = 24 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"rqt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"rqv" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves/mining) +"rre" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"rrV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/caves_lambda) +"rst" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"rsv" = ( +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"rtL" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz2_west_cas) +"rtR" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/classic_baton, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"rtS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wetleather, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"rtV" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/landmark/corpsespawner/miner, +/obj/item/weapon/gun/rifle/m16{ + pixel_x = 10 + }, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"ruo" = ( +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/lambda_cave_cas) +"ruS" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"ruZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/defibrillator{ + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"rvp" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/nw) +"rvr" = ( +/obj/item/weapon/gun/smg/mp5{ + current_mag = null; + pixel_y = 8; + pixel_x = -18 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/mars, +/area/bigredv2/outside/c) +"rvB" = ( +/obj/effect/spawner/random/claymore/highchance, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"rvC" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"rvG" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 7; + pixel_y = 3; + layer = 3.1 + }, +/obj/effect/decal/cleanable/generic, +/obj/item/stack/sheet/cardboard{ + pixel_x = 2; + pixel_y = -5; + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/s) +"rvP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/filtration_plant) +"rvS" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"rvU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/w) +"rvX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"rwb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) +"rxh" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"rxJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_east) +"rxK" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"ryQ" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"rzb" = ( +/obj/structure/bed/chair, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"rzI" = ( +/obj/item/trash/burger{ + pixel_y = -10; + pixel_x = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/nw) +"rzO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"rzR" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/ne) +"rzT" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"rAs" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_east) +"rBn" = ( +/obj/structure/window, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"rBA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"rBK" = ( +/obj/structure/fence, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/se) +"rBT" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/c) +"rCd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigred/ground/garage_workshop) +"rCA" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz1_telecomm_cas) +"rCH" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/w) +"rDe" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"rDl" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 13 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"rDO" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"rDP" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_virology) +"rDV" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) +"rEe" = ( +/obj/item/clothing/mask/gas{ + pixel_y = 7; + pixel_x = 7 + }, +/obj/structure/barricade/deployable, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"rGr" = ( +/obj/effect/landmark/corpsespawner/colonist, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"rGD" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/red/north, +/area/bigredv2/outside/lambda_cave_cas) +"rGP" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_virology) +"rHe" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_x = 4 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"rHr" = ( +/obj/item/ore, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"rHA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/river, +/area/bigredv2/outside/filtration_plant) +"rHD" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"rIl" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/oob) +"rIu" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"rIv" = ( +/turf/open/asphalt/cement/cement14, +/area/bigredv2/outside/space_port) +"rIx" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/space_port) +"rIH" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"rIM" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/item/prop/colony/usedbandage{ + dir = 5 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"rJm" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"rJJ" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/lz2_south_cas) +"rJR" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"rJW" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/n) +"rKe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"rKs" = ( +/obj/item/stack/medical/splint{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder{ + pixel_x = -9; + pixel_y = -14 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"rKy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/recharge_station, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"rKP" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/plating/warnplate/west, +/area/bigredv2/oob) +"rLJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"rLM" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/ne) +"rLO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"rLR" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"rMg" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"rMw" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"rMG" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"rMJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 3; + pixel_y = 15 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"rNc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/harpoon, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"rNd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"rNp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_x = 20 + }, +/obj/item/stack/sheet/wood{ + pixel_x = 4; + pixel_y = 7 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"rNs" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "tcomms_open" + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"rNy" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/s) +"rNG" = ( +/obj/item/reagent_container/pill/cyanide, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"rOK" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/item/weapon/baton/loaded, +/obj/item/weapon/twohanded/spear{ + pixel_x = -16; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"rOP" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/mars, +/area/bigredv2/outside/ne) +"rPc" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 3; + pixel_y = -11 + }, +/turf/open/floor/panelscorched, +/area/bigredv2/outside/medical) +"rPh" = ( +/obj/item/ore{ + pixel_x = 9; + pixel_y = 13 + }, +/obj/item/ore{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"rPj" = ( +/obj/structure/sign/nosmoking_1{ + pixel_x = -32 + }, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_x = 10; + pixel_y = 18 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"rPq" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -13; + pixel_x = 12 + }, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/mars, +/area/bigredv2/outside/n) +"rPs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/landmark/corpsespawner/chef, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"rQs" = ( +/obj/structure/bed/sofa/south{ + desc = "An old rusty ladder"; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "ladder11"; + name = "Old Ladder" + }, +/turf/open/floor/plating, +/area/bigredv2/oob) +"rQu" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/bigredv2/outside/nw) +"rSf" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 16 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/s) +"rSm" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"rSE" = ( +/obj/structure/bed/bedroll{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_x = -1; + pixel_y = -4 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"rSM" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"rTc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/lambda_cave_cas) +"rTq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"rTs" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"rTC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/outside/medical) +"rTN" = ( +/obj/structure/fence, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"rUn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "11-2" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"rUs" = ( +/obj/structure/machinery/door_control{ + id = "safe_room"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 28; + req_access_txt = "106"; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"rUN" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"rUU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 16 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"rUZ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"rVh" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib3" + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"rVw" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"rVE" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/n) +"rVM" = ( +/obj/structure/surface/table, +/obj/item/device/radio{ + pixel_x = -10; + pixel_y = 9 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"rVT" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"rVY" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/n) +"rWg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"rWF" = ( +/obj/item/stack/cable_coil/cut{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"rWN" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 18 + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"rXc" = ( +/obj/effect/acid_hole{ + dir = 4 + }, +/turf/closed/wall/solaris, +/area/bigredv2/outside/medical) +"rXh" = ( +/obj/structure/machinery/light, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"rXy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/structure/surface/table, +/obj/item/ammo_magazine/handful/shotgun/buckshot/incendiary{ + pixel_y = 12 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"rXJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/syndi_cakes{ + pixel_y = -11; + pixel_x = 9 + }, +/obj/item/trash/crushed_cup{ + pixel_y = 12 + }, +/obj/item/trash/semki{ + pixel_y = -14 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"rXM" = ( +/obj/item/trash/semki{ + pixel_y = -14 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/virology) +"rXY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"rXZ" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/dirt, +/obj/item/organ/heart/prosthetic{ + pixel_x = 6; + pixel_y = -7 + }, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"rYr" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"rYt" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_north) +"rYD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"rYS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"rZn" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/w) +"rZQ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/csandwich, +/obj/item/toy/deck/uno{ + pixel_y = 18 + }, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"rZU" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"sap" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"saX" = ( +/obj/structure/machinery/power/turbine, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"sbc" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/restraint/handcuffs, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"sbk" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"sbm" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"sbn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"sbz" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/turf/open/mars/mars_dirt_12, +/area/space) +"sbA" = ( +/obj/item/frame/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/decal/cleanable/dirt, +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"sbQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"scH" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 2; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"scK" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"scP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"sdl" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"sdo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Dormitories Lavatory"; + density = 0; + icon_state = "door_open" + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"sdP" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"seF" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"seK" = ( +/obj/structure/airlock_assembly, +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"seO" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"sfw" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/c) +"sfI" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_east) +"sfT" = ( +/obj/structure/surface/table, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_y = -7; + pixel_x = 8 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_y = 3; + pixel_x = -1 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"sgd" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/door_control{ + id = "Medical"; + name = "Storm Shutters"; + pixel_y = 32 + }, +/obj/structure/bed, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"sgF" = ( +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/structure/cable{ + icon_state = "6-8" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"sgI" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"sgT" = ( +/obj/item/trash/burger, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"sgZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"shK" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"shP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/barricade/metal, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"shV" = ( +/turf/open/floor/asteroidwarning, +/area/bigred/ground/garage_workshop) +"sib" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel{ + layer = 3.3; + pixel_x = -15; + pixel_y = -9 + }, +/obj/structure/largecrate/random/barrel{ + pixel_x = -4; + pixel_y = 10; + layer = 3.2 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"sih" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"siG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"siK" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"siM" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lz1_telecomm_cas) +"sjQ" = ( +/obj/item/ammo_casing/shell, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"ski" = ( +/turf/open/mars_cave, +/area/bigredv2/outside/lz2_west_cas) +"skt" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/space_port_lz2) +"skx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/botany, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"skZ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/space_port) +"sll" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"sln" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"slC" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/engineering) +"slG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"smh" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/bigredv2/caves_north) +"smw" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/mars, +/area/bigredv2/outside/n) +"smy" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"smF" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = 13; + pixel_y = 10 + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"smH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"smO" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/lz1_north_cas) +"snk" = ( +/obj/item/tank/air, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"snv" = ( +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"snT" = ( +/obj/item/stack/rods{ + pixel_y = 13; + pixel_x = 17 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"snZ" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"sog" = ( +/obj/item/explosive/grenade/slug/baton{ + dir = 1; + pixel_y = -8 + }, +/obj/item/explosive/grenade/baton{ + dir = 4; + pixel_x = 9; + pixel_y = -8 + }, +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-5" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"sox" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"spd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/caves_east) +"sqc" = ( +/obj/effect/decal/cleanable/blood{ + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"sqj" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_research) +"sqt" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"sqM" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/mars, +/area/bigredv2/outside/se) +"sqQ" = ( +/obj/item/paper/bigred/them, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"srz" = ( +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"sso" = ( +/obj/structure/bed/chair, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"ssE" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/caves) +"ssI" = ( +/obj/structure/prop/dam/truck/damaged, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"ssO" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"stZ" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/lz2_cave) +"sub" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/c) +"sus" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_research) +"suD" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Cables" + }, +/obj/structure/cryofeed{ + color = "silver"; + desc = "A bewildering tangle of machinery and pipes."; + name = "coolant feed" + }, +/obj/structure/machinery/portable_atmospherics/powered/scrubber{ + desc = "A big air filter."; + icon = 'icons/obj/structures/props/almayer_props64.dmi'; + icon_state = "fuel_enhancer"; + layer = 5; + name = "Air filter"; + pixel_x = -3; + pixel_y = 1 + }, +/obj/structure/machinery/portable_atmospherics/powered/scrubber{ + desc = "Critical part of an HVAC system. Compresses refridgerant to send off to air cooling coils."; + icon = 'icons/obj/structures/props/almayer_props64.dmi'; + icon_state = "cooling_system"; + layer = 4; + name = "\improper Air Condenser"; + pixel_x = -5; + pixel_y = 25 + }, +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"suL" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"suP" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/clothing/head/helmet/marine/desert{ + pixel_x = 10; + pixel_y = 7 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"suR" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/ne) +"suV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1; + name = "\improper Engineering Workshop" + }, +/turf/open/floor/delivery, +/area/bigred/ground/garage_workshop) +"sva" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox{ + pixel_x = 1; + pixel_y = -7 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"svb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -6; + pixel_y = -4; + layer = 3.1 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"swl" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars, +/area/bigredv2/outside/c) +"swJ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"sxg" = ( +/obj/item/trash/used_stasis_bag{ + pixel_y = 5 + }, +/turf/open/floor/whiteblue/northeast, +/area/bigredv2/outside/medical) +"sxs" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"sxR" = ( +/obj/structure/bed/chair/wheelchair{ + pixel_y = 5; + pixel_x = 5 + }, +/obj/structure/machinery/iv_drip{ + pixel_y = 20; + pixel_x = -13 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"syf" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"syi" = ( +/obj/structure/surface/table, +/obj/item/device/radio{ + pixel_y = 8 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"sym" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/w) +"syu" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib3" + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"syK" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"szi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"szt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"szw" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"szy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/engineering) +"szZ" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"sAG" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"sAS" = ( +/obj/item/toy/prize/fireripley{ + pixel_y = 19 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"sBm" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"sBu" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"sBB" = ( +/obj/structure/machinery/light/built, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"sBE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/largecrate/supply/medicine/medkits{ + pixel_x = -3 + }, +/obj/structure/largecrate/supply/supplies/flares{ + pixel_x = -1; + pixel_y = 20; + layer = 3.1 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"sCf" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"sCj" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"sCt" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"sCT" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/ammo_casing/shell, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"sDs" = ( +/obj/structure/closet/crate/miningcar, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"sDC" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_sw) +"sDO" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"sDZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/welding, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"sEb" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"sEi" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"sEp" = ( +/obj/structure/girder, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/office_complex) +"sEu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Marshal Office Armory"; + locked = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"sED" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/eta) +"sFv" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/caves_north) +"sFW" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"sGi" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz1_telecomm_cas) +"sGT" = ( +/obj/item/tool/weldpack, +/obj/item/frame/rack, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"sHg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/eat{ + pixel_y = -2 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) +"sHz" = ( +/obj/item/ore{ + pixel_x = 9; + pixel_y = 13 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"sHL" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"sHO" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"sIh" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lambda-cave-extratunnel" + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"sIp" = ( +/obj/effect/decal/strata_decals/grime/grime1, +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/nw) +"sII" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -7 + }, +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/outside/medical) +"sIM" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"sIP" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_se) +"sIT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-in" + }, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) +"sIY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/c) +"sKK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/w) +"sLr" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_se) +"sLy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"sLS" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"sMg" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/caves_north) +"sML" = ( +/turf/open/asphalt/cement, +/area/bigredv2/outside/lambda_cave_cas) +"sMP" = ( +/obj/item/trash/pistachios{ + pixel_x = -3; + pixel_y = 11 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"sNJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"sNP" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"sNQ" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"sOi" = ( +/obj/structure/airlock_assembly, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"sOq" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit{ + icon_state = "open" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"sOE" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz1_telecomm_cas) +"sON" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_east) +"sOZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"sPo" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/thirteenloko{ + pixel_x = -5 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/reagent_container/food/drinks/cans/thirteenloko{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/cans/thirteenloko{ + pixel_x = 7 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"sPv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"sPw" = ( +/obj/item/tool/mop{ + pixel_y = 19; + pixel_x = 10 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"sQw" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/outside/lz1_telecomm_cas) +"sQP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/bigredv2/caves_lambda) +"sRs" = ( +/obj/item/tool/surgery/scalpel{ + pixel_y = -8 + }, +/turf/open/floor/whiteblue, +/area/bigredv2/outside/medical) +"sRy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations Meeting Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"sRX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/burger{ + pixel_y = 12; + pixel_x = -8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"sSU" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/lz2_south_cas) +"sSY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"sUQ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"sWa" = ( +/obj/item/ore{ + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"sWp" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/mars, +/area/bigredv2/outside/c) +"sWt" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/e) +"sWS" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"sXd" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "prison_breakout" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/marshal_office) +"sXf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/eta) +"sXv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 2; + pixel_y = 17 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"sYL" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/outside/lambda_cave_cas) +"sYR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"sZh" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"sZi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"taf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"taj" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"tap" = ( +/obj/structure/machinery/message_server, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"taD" = ( +/obj/item/clothing/under/brown{ + pixel_x = 4; + pixel_y = -5 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"taV" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"tbe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/caves_lambda) +"tbl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"tbS" = ( +/obj/structure/morgue{ + dir = 1 + }, +/turf/open/floor/whiteblue, +/area/bigredv2/outside/medical) +"tcb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pizzabox/meat, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"tcq" = ( +/obj/item/explosive/grenade/baton, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_research) +"tcy" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"tcI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/ammo_casing/bullet, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"tcP" = ( +/obj/effect/decal/cleanable/dirt/greenglow, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/engineering) +"tcV" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/virology) +"tcY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/c) +"tdo" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/adv/empty, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"tdp" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"tdz" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"tdB" = ( +/obj/structure/tunnel{ + id = "hole1" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"tdC" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/space_port) +"tdE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves_north) +"tdN" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"tdT" = ( +/obj/item/trash/cheesie, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"tdZ" = ( +/obj/item/tool/pickaxe/drill, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cheeseburger{ + pixel_y = 22 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"teV" = ( +/obj/structure/fence, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"tff" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"tfp" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + desc = "An old W-Y systems control computer that manages the air enviorment for a large area. Commonly used in mining operations in order to control O2 levels, alert of any dangerous gases and make the heat slightly more bearable."; + name = "W-Y Enviorment Control System Control Panel" + }, +/obj/structure/cable{ + icon_state = "11-2" + }, +/obj/structure/cable{ + icon_state = "11-10" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"tft" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave, +/area/bigredv2/outside/lz2_west_cas) +"tfu" = ( +/obj/item/frame/table, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/office_complex) +"tfz" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"tgF" = ( +/obj/effect/spawner/random/tool, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"tgL" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_se) +"tgN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/firstaid/fire/empty, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"thC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/se) +"til" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/mars, +/area/bigredv2/outside/nw) +"tiD" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = -15 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/pistol/highpower, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"tiL" = ( +/obj/structure/surface/table/woodentable{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"tju" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) +"tjx" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"tjC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/w) +"tjX" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/n) +"tkf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/ne) +"tkp" = ( +/obj/structure/bed/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"tkx" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"tkI" = ( +/obj/item/stack/sheet/wood{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"tkN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"tkY" = ( +/obj/structure/noticeboard{ + desc = "A board for pinning important items upon."; + dir = 1; + name = "trophy board"; + pixel_y = 30 + }, +/obj/item/oldresearch/Chitin{ + anchored = 1; + pixel_y = 27 + }, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"tlx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"tlP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"tlU" = ( +/obj/structure/surface/table, +/obj/structure/window, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"tmh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/s) +"tmH" = ( +/obj/structure/closet/crate, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"tnd" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"tns" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"tnG" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"tpR" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = 13; + pixel_y = 10 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"tpU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"tpY" = ( +/obj/structure/lz_sign/solaris_sign, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"tqg" = ( +/obj/item/tool/warning_cone, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/se) +"tqi" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves/mining) +"tqS" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves_north) +"trk" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_sw) +"trr" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"trW" = ( +/obj/item/clothing/suit/storage/hazardvest, +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/head/hardhat, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"tsc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"tsy" = ( +/obj/effect/decal/cleanable/dirt{ + pixel_x = 8 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 4; + pixel_y = 15 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 6; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"tsB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"tsK" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/lz2_south_cas) +"tsW" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"ttb" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"ttk" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_y = 8; + pixel_x = -2 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"ttn" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/c) +"ttr" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"tub" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"tuu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/floor/loadingarea/west, +/area/bigredv2/outside/cargo) +"tuN" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave, +/area/bigredv2/caves/mining) +"tvh" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/lz2_south_cas) +"tvH" = ( +/obj/structure/machinery/compressor{ + dir = 1 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"twt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/virology) +"txi" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/mars, +/area/bigredv2/outside/filtration_plant) +"txM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"tyu" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/mars, +/area/bigredv2/outside/s) +"tyQ" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"tzh" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/outside/medical) +"tzJ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engine Reactor Control" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"tAe" = ( +/obj/structure/bed, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"tAW" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) +"tBb" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves/mining) +"tBf" = ( +/obj/structure/largecrate/random/barrel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"tBh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/tofu{ + pixel_x = -1; + pixel_y = 14 + }, +/obj/item/reagent_container/food/snacks/tofu{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/tofu, +/obj/structure/cable{ + icon_state = "5-9" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"tBl" = ( +/obj/item/trash/popcorn, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) +"tBD" = ( +/turf/open/floor/almayer/w_y1/north, +/area/bigredv2/outside/admin_building) +"tBK" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe{ + pixel_y = -7 + }, +/obj/item/tool/pickaxe{ + pixel_y = -3 + }, +/obj/item/tool/pickaxe, +/obj/item/tool/pickaxe{ + pixel_y = 4 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"tCh" = ( +/obj/structure/machinery/door/poddoor/almayer/closed, +/obj/structure/prop/invuln/minecart_tracks, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"tCn" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/space_port_lz2) +"tCy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/suit_storage_unit/carbon_unit{ + icon_state = "open" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"tCH" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"tCL" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"tCQ" = ( +/turf/open/gm/river/red, +/area/bigredv2/outside/c) +"tDk" = ( +/obj/structure/machinery/light/double{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"tDs" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"tDv" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_west_cas) +"tDE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement15, +/area/bigredv2/outside/space_port) +"tEc" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"tEA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"tEG" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"tFt" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"tFv" = ( +/obj/structure/barricade/wooden, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"tFH" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_10_1" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"tFL" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/beret/sec/warden{ + pixel_y = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"tFO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"tFT" = ( +/obj/structure/lz_sign/solaris_sign, +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/nw) +"tGI" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/nw) +"tGP" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/tool/hatchet{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) +"tHl" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/c) +"tHB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"tHH" = ( +/obj/item/clothing/suit/armor/riot{ + pixel_y = -5; + pixel_x = -4 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"tHM" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/se) +"tIe" = ( +/obj/structure/bed/bedroll{ + dir = 10 + }, +/obj/item/weapon/baseballbat{ + pixel_x = -17; + pixel_y = 10 + }, +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = 5; + pixel_y = 15 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"tIq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) +"tIv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"tIA" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"tIT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/extinguisher{ + pixel_y = 15; + pixel_x = -7 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"tJl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office"; + welded = 1; + dir = 2; + density = 0; + icon_state = "door_open" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"tJn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"tJv" = ( +/obj/structure/tunnel{ + id = "hole3" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"tKq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/s) +"tKr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"tKC" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"tKR" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"tLt" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves_north) +"tLO" = ( +/obj/structure/machinery/computer/med_data{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"tMa" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"tMA" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/asphalt/cement/cement15, +/area/bigredv2/caves_lambda) +"tNa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000; + pixel_y = 20 + }, +/obj/structure/machinery/vending/cigarette/colony{ + layer = 3.1; + pixel_y = 9 + }, +/obj/structure/largecrate/random/mini/chest/b{ + layer = 3.2; + pixel_y = -4 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"tNf" = ( +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/filtration_cave_cas) +"tNx" = ( +/turf/closed/wall/solaris{ + damage = 500; + damage_overlay = 2; + current_bulletholes = 1 + }, +/area/bigredv2/outside/medical) +"tNz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/filtration_cave_cas) +"tNO" = ( +/obj/item/trash/semki{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"tOg" = ( +/obj/item/clothing/mask/gas, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"tOh" = ( +/obj/structure/surface/table, +/obj/item/device/megaphone, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"tOJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/telecomm/lz2_cave) +"tOO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/uranium{ + amount = 50; + pixel_x = 3 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"tQg" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"tQj" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves_lambda) +"tQo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/mining) +"tQw" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"tQG" = ( +/obj/effect/decal/cleanable/blood/gibs/robot{ + pixel_y = 7; + pixel_x = -4; + name = "door debris" + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/stack/rods, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"tQV" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool{ + pixel_x = 4; + pixel_y = 13 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"tRd" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 5; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"tRI" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_research) +"tRM" = ( +/obj/structure/barricade/deployable, +/obj/item/ammo_casing/bullet, +/turf/open/mars, +/area/bigredv2/outside/c) +"tRV" = ( +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; + pixel_x = -8; + pixel_y = 9 + }, +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; + pixel_x = 4; + pixel_y = 15 + }, +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" + }, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves/mining) +"tSI" = ( +/obj/structure/platform/shiva{ + dir = 8 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"tSY" = ( +/obj/structure/surface/table, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"tTd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"tTv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"tTI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"tUa" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/platingdmg1, +/area/bigredv2/outside/office_complex) +"tUe" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"tUL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hefa_cult_decals/d32, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"tVg" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"tVn" = ( +/obj/item/tool/lighter/zippo, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"tVp" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"tVy" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"tVE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"tWf" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"tWv" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 + }, +/turf/open/floor/plating/warnplate/east, +/area/bigredv2/outside/telecomm/warehouse) +"tWA" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/c) +"tWS" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"tXa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/mono{ + pixel_x = 18; + pixel_y = -9 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"tYj" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement1/north, +/area/bigredv2/outside/filtration_cave_cas) +"tYm" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/mars, +/area/bigredv2/outside/s) +"tZd" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"tZj" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/s) +"tZl" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/cautery{ + pixel_y = 9; + pixel_x = 9 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_y = 4; + pixel_x = -8 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"tZs" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"tZU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/mineral/processing_unit, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"uao" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/rods, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"uaB" = ( +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"uaS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engine Reactor Control" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"uaU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/se) +"ubY" = ( +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"ucl" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"ucH" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_virology) +"ucN" = ( +/turf/open/mars_cave/mars_cave_4, +/area/bigredv2/caves_se) +"udl" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/nw) +"udn" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/nw) +"uek" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/caves_lambda) +"ueH" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" + }, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"ueL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/framed/solaris, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"ueM" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/obj/structure/bed/bedroll{ + dir = 10 + }, +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_x = -1; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"ufu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ufx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"ufB" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"ugc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ugm" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/space_port_lz2) +"ugW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"uiq" = ( +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -5; + pixel_y = 11 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"uiE" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"uiF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"ujC" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"ujD" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/filtration_cave_cas) +"ujU" = ( +/obj/item/ammo_magazine/handful/shotgun/custom_color{ + color = "#6666ff"; + desc = "A handful of ulta rare 12 gauge HE/FRAG ammunition to seriously fuck shit up with. Too bad its behind this indestructable window....."; + name = "handful of HE/FRAG shells (12g)"; + pixel_y = 3 + }, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"ukv" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_lambda) +"ukW" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/ne) +"ulk" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ulH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/on, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"ulJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/nw) +"umK" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"umN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"umW" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"unC" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/telecomm/lz2_cave) +"unS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"uoo" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"upd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"upE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"upV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"uqg" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/eta) +"uqh" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/mars, +/area/bigredv2/outside/c) +"urn" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"urp" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/nw) +"usq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/botany, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"ust" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"usG" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_east) +"usU" = ( +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = -7 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"usZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"utQ" = ( +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"uum" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"uut" = ( +/obj/item/storage/box/MRE{ + pixel_x = -1; + pixel_y = -6 + }, +/obj/item/storage/box/MRE{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"uuB" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/mars, +/area/bigredv2/outside/c) +"uuO" = ( +/obj/item/shard{ + icon_state = "small" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"uvl" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/lambda/xenobiology) +"uvz" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"uvL" = ( +/obj/structure/barricade/wooden{ + dir = 8; + pixel_y = 12 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"uvZ" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/filtration_plant) +"uwh" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/reagent_container/glass/bottle/cyanide{ + pixel_y = 2; + pixel_x = -6 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"uwB" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/mars, +/area/bigredv2/outside/c) +"uwP" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/e) +"uwV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/general_offices) +"uxa" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"uxk" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/e) +"uxx" = ( +/obj/structure/machinery/door/poddoor/almayer/closed, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"uyk" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz2_west_cas) +"uzb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"uzv" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/lz1_north_cas) +"uzB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/device/flashlight/lantern, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"uzD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"uAV" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"uAX" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/mars, +/area/bigredv2/outside/nw) +"uBi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"uBr" = ( +/obj/structure/barricade/metal{ + dir = 4 + }, +/turf/open/floor/darkred2/northeast, +/area/bigredv2/outside/admin_building) +"uBI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/trash/semki{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/medical) +"uBP" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"uCa" = ( +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"uCV" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_2" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/c) +"uDc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/se) +"uDe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) +"uDn" = ( +/obj/structure/sign/safety/west, +/obj/structure/sign/safety/hazard{ + pixel_x = 12 + }, +/turf/closed/wall/wood, +/area/bigredv2/caves/mining) +"uDu" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 1 + }, +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"uDx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/bigredv2/outside/virology) +"uDA" = ( +/obj/item/stack/sheet/glass, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"uDI" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + icon = 'icons/obj/pipes/manifold.dmi'; + icon_state = "map"; + name = "Pipe manifold" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"uDM" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/s) +"uDZ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"uEi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"uFi" = ( +/obj/item/paper/bigred/finance{ + pixel_x = -9 + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"uFp" = ( +/obj/structure/machinery/mill, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"uFD" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves/mining) +"uFE" = ( +/obj/structure/barricade/handrail/medical{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/nw) +"uFF" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 + }, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"uFN" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/mars, +/area/bigredv2/outside/e) +"uFZ" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/lambda_cave_cas) +"uGs" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"uGz" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"uHE" = ( +/obj/item/tool/warning_cone{ + pixel_y = 19 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"uHQ" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"uHT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"uIz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/telecomm/n_cave) +"uIB" = ( +/obj/effect/vehicle_spawner/van/decrepit, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"uIP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/c) +"uIX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"uJj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"uJu" = ( +/obj/item/robot_parts/robot_component/diagnosis_unit{ + pixel_y = 15 + }, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"uJI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"uJO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/outside/medical) +"uKC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"uKH" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"uLl" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/mars, +/area/bigredv2/outside/virology) +"uLn" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"uLT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/red, +/area/bigredv2/outside/lambda_cave_cas) +"uLZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/hotdog{ + pixel_x = -9; + pixel_y = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"uNW" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"uOy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 2; + pixel_y = 9 + }, +/obj/structure/prop/invuln/pipe_water{ + pixel_x = 9; + pixel_y = -1 + }, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = -19; + pixel_x = 7 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"uPm" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_se) +"uPF" = ( +/obj/structure/machinery/filtration/console{ + pixel_y = 13 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"uPK" = ( +/obj/structure/platform/shiva{ + dir = 1 + }, +/obj/structure/platform/shiva, +/obj/structure/machinery/light/small/built{ + dir = 4 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"uQZ" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars, +/area/bigredv2/outside/virology) +"uRE" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "medbay-passage" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/admin_building) +"uSf" = ( +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"uSt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"uSC" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/space_port_lz2) +"uST" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Medical Clinic Power Station" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"uTB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories"; + welded = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"uTO" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"uUM" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/nw) +"uUU" = ( +/obj/structure/sign/double/barsign{ + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/c) +"uUV" = ( +/obj/structure/prop/server_equipment/yutani_server/broken, +/turf/open/floor/greengrid, +/area/bigredv2/caves/lambda/research) +"uUY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"uVd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"uVn" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"uVw" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_2" + }, +/obj/item/reagent_container/pill/happy, +/obj/item/reagent_container/pill/happy, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"uVC" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars, +/area/bigredv2/outside/s) +"uVH" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin{ + pixel_y = 8; + pixel_x = 7 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"uWo" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"uWv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/caves_lambda) +"uWy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"uWB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"uXW" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/caves_research) +"uYb" = ( +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_sw) +"uZo" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/alien_embryo{ + pixel_x = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"uZG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/se) +"uZJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"vap" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/filtration_plant) +"vaR" = ( +/obj/structure/machinery/iv_drip, +/obj/effect/landmark/corpsespawner/chef, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"vbi" = ( +/turf/open/floor/darkpurple2/northeast, +/area/bigredv2/caves/lambda/research) +"vbp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"vby" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/e) +"vbN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -6; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"vbO" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 10; + pixel_y = 6 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/s) +"vbS" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars, +/area/bigredv2/outside/nw) +"vcd" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/eta) +"vct" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_south_cas) +"vcy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_y = 9; + pixel_x = -15 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"vcA" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/item/weapon/gun/rifle/mar40/lmg, +/obj/item/ammo_magazine/rifle/mar40/lmg, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"vdh" = ( +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) +"vdl" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"vdz" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/n) +"vdS" = ( +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = -10; + pixel_y = 2 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/explosive/grenade/incendiary/molotov, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vec" = ( +/obj/structure/pipes/standard/tank, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"vem" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/mars, +/area/bigredv2/outside/c) +"ven" = ( +/obj/structure/machinery/botany, +/obj/item/seeds/goldappleseed, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"vex" = ( +/turf/closed/wall/wood, +/area/bigredv2/outside/lz2_south_cas) +"veU" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/cigar/matchbook/brown{ + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"vfI" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/eta) +"vfQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"vfW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"vgE" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"vgZ" = ( +/obj/structure/platform/shiva, +/obj/structure/platform/shiva{ + dir = 1 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"vhF" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"vhP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/bigredv2/caves_lambda) +"vin" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"viJ" = ( +/obj/structure/machinery/power/apc/no_power/west{ + name = "Xenbiology Lab APC" + }, +/obj/structure/machinery/door_control{ + id = "lambda"; + name = "Lambda Lockdown"; + pixel_y = -25 + }, +/turf/open/floor/whitepurple/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"vjc" = ( +/obj/item/tool/warning_cone{ + pixel_x = -13; + pixel_y = 11 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"vjR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/explosive/grenade/custom/large{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/floor/whitepurplefull, +/area/bigredv2/outside/medical) +"vjW" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/item/stack/cable_coil/blue{ + pixel_y = 10 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"vkf" = ( +/obj/effect/landmark/crap_item, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/ne) +"vkj" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"vkv" = ( +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"vkF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"vkL" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/admin_building) +"vkR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"vld" = ( +/obj/item/tool/warning_cone, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"vli" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"vlr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vlu" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"vlA" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"vlI" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 3; + pixel_y = -11 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"vmt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/clothing/suit/armor/riot{ + pixel_y = -9; + pixel_x = -12 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"vmE" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"vmI" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"vmL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"vmV" = ( +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -12; + pixel_y = -4 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 10; + pixel_y = 10 + }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "Righty tighty, lefty loosey!"; + dir = 1; + icon = 'icons/obj/pipes/valve.dmi'; + icon_state = "map_valve1"; + name = "Pressure Valve" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"vna" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/w) +"vnD" = ( +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"vnJ" = ( +/obj/structure/bed/bedroll{ + dir = 5 + }, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"vnR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) +"voz" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"voG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"vpu" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"vpx" = ( +/obj/structure/platform, +/obj/structure/flora/jungle/planttop1{ + pixel_y = 10 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"vpY" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "eta"; + name = "Eta Lockdown" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/eta) +"vqU" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 7 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -5 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"vqY" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_research) +"vrd" = ( +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"vrt" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/eta) +"vrD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"vsi" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"vsz" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -6; + pixel_y = -4; + layer = 3.1 + }, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 8; + layer = 3.01; + pixel_y = 17 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"vsX" = ( +/obj/item/trash/semki{ + layer = 2; + pixel_x = -13; + pixel_y = 14 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/w) +"vti" = ( +/obj/structure/closet/crate, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"vtk" = ( +/obj/item/trash/snack_bowl{ + pixel_x = 1; + pixel_y = -12 + }, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/virology) +"vty" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Cell" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/xenobiology) +"vtW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/firstaid/rad/empty{ + pixel_x = -9 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"vuz" = ( +/obj/structure/machinery/door_control{ + id = "eta"; + name = "Eta Lockdown"; + pixel_x = 30; + throw_range = 15 + }, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/research) +"vvj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/xenobiology) +"vvn" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"vvx" = ( +/obj/structure/surface/table, +/obj/item/bodybag{ + pixel_y = 1; + pixel_x = -2 + }, +/obj/item/bodybag{ + pixel_y = -2; + pixel_x = 9 + }, +/obj/item/bodybag{ + pixel_y = 8; + pixel_x = -7 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"vvI" = ( +/obj/item/stack/sheet/cardboard{ + pixel_x = 8; + pixel_y = -1 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"vvL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "Righty tighty, lefty loosey!"; + dir = 1; + icon = 'icons/obj/pipes/valve.dmi'; + icon_state = "map_valve1"; + name = "Pressure Valve" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"vvR" = ( +/obj/item/ore{ + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vvT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/s) +"vvU" = ( +/obj/item/trash/cigbutt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"vxv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/surface/table, +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"vxI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"vxQ" = ( +/obj/item/tool/pickaxe/gold, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"vxS" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/mars, +/area/bigredv2/outside/n) +"vyV" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"vzL" = ( +/obj/item/weapon/gun/boltaction, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vAb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"vAo" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 16 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"vAs" = ( +/obj/structure/window/framed/solaris/reinforced/tinted, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"vAt" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Dormitories APC" + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"vAI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"vBs" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/space_port_lz2) +"vBy" = ( +/obj/item/ammo_magazine/shotgun/beanbag/riot, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_research) +"vBG" = ( +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_y = 7; + pixel_x = -5 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"vBI" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/n) +"vCd" = ( +/obj/structure/surface/rack, +/obj/item/weapon/twohanded/lungemine{ + pixel_y = 8 + }, +/obj/item/weapon/twohanded/lungemine{ + pixel_y = -7 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vCf" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"vCl" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/obj/item/stack/sheet/cardboard{ + pixel_x = -9; + pixel_y = -5 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"vCU" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/lz2_south_cas) +"vDw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/trash/sosjerky{ + pixel_y = 7; + pixel_x = -13 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/nw) +"vDK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/eta) +"vDS" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/w) +"vEF" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/hardhat/orange{ + pixel_y = 10 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) +"vEP" = ( +/obj/item/clothing/mask/breath/medical{ + pixel_y = -3; + pixel_x = -7 + }, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"vEU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/s) +"vFe" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/item/paper/bigred/crazy{ + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"vFr" = ( +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"vFA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"vFB" = ( +/obj/item/trash/hotdog{ + pixel_x = -12; + pixel_y = -11 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"vFS" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"vGA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/southeast, +/area/bigredv2/outside/admin_building) +"vGE" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/space_port_lz2) +"vGL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"vGR" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/nw) +"vHw" = ( +/turf/closed/wall/wood, +/area/bigredv2/caves/mining) +"vHB" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"vHU" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"vIe" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/se) +"vIQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"vJx" = ( +/obj/item/shard, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"vKg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/s) +"vKv" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"vLd" = ( +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"vLg" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/structure/largecrate/supply/medicine/medkits, +/obj/structure/largecrate/supply{ + layer = 3.2; + pixel_x = -2; + pixel_y = 19 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"vLs" = ( +/obj/item/trash/barcardine{ + pixel_y = 5; + pixel_x = 17 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"vMc" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"vMj" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz2_west_cas) +"vMm" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 13 + }, +/obj/structure/closet/crate/miningcar/yellow, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves/mining) +"vNh" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_virology) +"vNk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/s) +"vNm" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_virology) +"vND" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/mars, +/area/bigredv2/outside/n) +"vOg" = ( +/obj/structure/window_frame/solaris, +/obj/structure/curtain, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"vOo" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"vOs" = ( +/obj/structure/coatrack{ + pixel_x = 12 + }, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/suit/storage/windbreaker/windbreaker_gray{ + pixel_x = 11; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"vOM" = ( +/obj/item/trash/sosjerky{ + pixel_x = -12; + pixel_y = 17 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"vPr" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/s) +"vPL" = ( +/obj/item/ammo_casing/bullet, +/turf/open/mars, +/area/bigredv2/outside/c) +"vPP" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"vPU" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -5 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 7 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"vPZ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"vQr" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"vQF" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"vQZ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_research) +"vRb" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/mars, +/area/bigredv2/outside/n) +"vRs" = ( +/obj/structure/sign/safety/high_voltage, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"vRK" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves/lambda/xenobiology) +"vRR" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves_north) +"vRX" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/caves_lambda) +"vTh" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"vTt" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"vUy" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"vUN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"vVl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dormitories Toilet" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vVq" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"vVt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/crowbar{ + pixel_x = -13 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"vVF" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves/mining) +"vVZ" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/filtration_cave_cas) +"vWm" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"vWt" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"vWw" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/mars, +/area/bigredv2/outside/nw) +"vWG" = ( +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/space_port) +"vXt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"vXF" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"vXJ" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_lambda) +"vYp" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"vYw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"vZE" = ( +/obj/structure/bed, +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = 5; + pixel_y = 15 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"waJ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"waN" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"waX" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"waZ" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"wbp" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves) +"wbx" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "Righty tighty, lefty loosey!"; + dir = 1; + icon = 'icons/obj/pipes/valve.dmi'; + icon_state = "map_valve1"; + name = "Pressure Valve" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"wbD" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"wbY" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"wcs" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/lz1_north_cas) +"wcw" = ( +/turf/open/gm/river, +/area/bigredv2/outside/filtration_plant) +"wcx" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/spawner/random/tool{ + pixel_x = -6 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/partypopper{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"wdd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/caves_lambda) +"wdn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/metal{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"wdM" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/space) +"wdV" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = -8; + pixel_x = -6 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"wer" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/storage/CMB{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"weO" = ( +/obj/structure/closet/secure_closet/medical_wall{ + pixel_y = -5 + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"wfd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"wfk" = ( +/obj/structure/filingcabinet/medical{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/medical{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"wfm" = ( +/obj/structure/bed/chair{ + buckling_y = 5; + dir = 1; + pixel_y = 5 + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"wfx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"wfC" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/obj/effect/landmark/queen_spawn, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"wfR" = ( +/obj/structure/cable{ + icon_state = "5-8" + }, +/obj/structure/cable{ + icon_state = "5-6" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"wfS" = ( +/obj/item/clothing/mask/gas{ + pixel_x = 10; + pixel_y = -12 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"whb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"whw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"whE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"whL" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"whZ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidwarning, +/area/bigred/ground/garage_workshop) +"wix" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"wiJ" = ( +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + pixel_x = -2; + pixel_y = 10 + }, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"wiK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/engineering) +"wiM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"wjW" = ( +/obj/structure/platform/shiva{ + dir = 1 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"wko" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"wkv" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/mars, +/area/bigredv2/outside/se) +"wlr" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"wlE" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"wmh" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = -8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"wmm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/caves_lambda) +"wmN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/telecomm/n_cave) +"wnf" = ( +/obj/structure/surface/table, +/obj/item/explosive/grenade/flashbang{ + pixel_x = 3; + pixel_y = -7 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"wni" = ( +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"wnZ" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"woe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"wog" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"woK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/red/southeast, +/area/bigredv2/outside/marshal_office) +"woP" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/w) +"wpf" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves_north) +"wpn" = ( +/obj/structure/closet/radiation, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"wpv" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"wpV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/machinery/vending/cola{ + pixel_x = 8; + pixel_y = -7; + layer = 2.84 + }, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = -12; + pixel_y = -4 + }, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = -18; + pixel_y = 7 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"wql" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"wra" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"wry" = ( +/obj/structure/surface/table, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "blue"; + phone_id = "Space Port" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"wrz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"wrS" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"wrV" = ( +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + pixel_x = -5; + pixel_y = 2; + layer = 2.8 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/nw) +"wss" = ( +/obj/item/tool/warning_cone{ + pixel_y = 20 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/telecomm/n_cave) +"wsT" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/w) +"wtj" = ( +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"wtu" = ( +/obj/structure/largecrate/random/barrel/green{ + pixel_x = -11; + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tuxedo{ + pixel_x = -5; + pixel_y = 26 + }, +/obj/item/trash/plate{ + pixel_x = -12; + pixel_y = 22 + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/ne) +"wtC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"wtG" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"wtJ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2"; + pixel_x = -9; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1"; + pixel_x = 12; + pixel_y = 16 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"wtK" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) +"wup" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"wuz" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"wuC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/flare{ + pixel_y = -7 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"wuP" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"wvk" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/virology) +"wvK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"wvR" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/virology) +"wvV" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"wwT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/engineering) +"wxo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"wxG" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"wyh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"wyF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"wyP" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"wAd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"wAy" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"wBi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_south_cas) +"wBq" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"wBu" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"wBw" = ( +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"wBK" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"wBP" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_x = 3 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"wCo" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"wCs" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"wCU" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic"; + icon_state = "door_open"; + density = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"wDa" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"wDQ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/c) +"wET" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"wFu" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = -7 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/reagent_container/food/drinks/cans/tonic{ + pixel_x = 7 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"wFv" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/item/reagent_container/food/drinks/bottle/beer/craft{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"wFL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/hazard{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"wFO" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves/mining) +"wFP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"wFW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"wGr" = ( +/obj/structure/closet/firecloset/full, +/turf/open/mars, +/area/bigredv2/outside/c) +"wHg" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz1north_mining" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port) +"wHx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/outside/admin_building) +"wHM" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"wHT" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/mars, +/area/bigredv2/outside/nw) +"wHV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"wIm" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"wIw" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_east) +"wIE" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/eta) +"wIR" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) +"wJd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"wJE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/w) +"wKf" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"wKx" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz1_north_cas) +"wKA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"wKK" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/radio{ + pixel_x = 10 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_y = 1; + pixel_x = -6 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"wLw" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"wLD" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"wLU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"wMg" = ( +/obj/item/tool/warning_cone{ + pixel_x = 5; + pixel_y = 13 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"wMn" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/outside/medical) +"wMp" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_north) +"wMM" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"wMQ" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"wNe" = ( +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + pixel_x = -2; + pixel_y = 10 + }, +/obj/item/prop/colony/usedbandage, +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_x = 5; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 + }, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/nw) +"wNA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/pistol/m1911, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"wPk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"wPC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"wQa" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 9; + pixel_y = 11 + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"wQk" = ( +/obj/structure/surface/table, +/obj/item/storage/box/gloves{ + pixel_y = 8 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"wQB" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"wQC" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) +"wRl" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "admin_pmc" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/admin_building) +"wRo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -8; + pixel_y = -5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"wRH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"wSj" = ( +/obj/structure/sign/safety/life_support, +/obj/structure/sign/safety/maint{ + pixel_x = 13 + }, +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/oob) +"wUc" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/nw) +"wUi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/w) +"wUo" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -8 + }, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"wUD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_se) +"wVd" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"wVw" = ( +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"wVB" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"wVQ" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"wWn" = ( +/obj/item/shard, +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = 8 + }, +/turf/open/floor/whiteblue/northwest, +/area/bigredv2/outside/medical) +"wWE" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/n) +"wWK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"wWN" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"wWX" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular{ + pixel_y = 3; + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"wXg" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz1_north_cas) +"wXv" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/space_port_lz2) +"wXz" = ( +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"wXY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"wYE" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"wZv" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"wZC" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/eta) +"wZI" = ( +/obj/item/trash/syndi_cakes{ + pixel_y = -11; + pixel_x = 9 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"wZP" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"wZW" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/c) +"xaC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) +"xaE" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Lambda Checkpoint" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"xaH" = ( +/turf/closed/wall/wood, +/area/bigredv2/caves_sw) +"xaW" = ( +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"xbV" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/lz1_north_cas) +"xbZ" = ( +/turf/open/floor/darkblue2, +/area/bigredv2/outside/admin_building) +"xck" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/ore{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"xcz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 + }, +/turf/open/floor/plating/warnplate/east, +/area/bigredv2/outside/telecomm/warehouse) +"xdc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"xdV" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"xej" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"xeN" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/filtration_plant) +"xeX" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/virology) +"xfp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/bigredv2/caves_lambda) +"xfx" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"xfM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"xfN" = ( +/obj/structure/platform_decoration/shiva{ + dir = 1 + }, +/obj/structure/platform_decoration/shiva{ + dir = 4 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/item/stack/cable_coil/random, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"xfW" = ( +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/living) +"xgi" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"xgm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/ne) +"xgr" = ( +/obj/structure/bed/chair{ + dir = 4; + layer = 3.06 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/ne) +"xgw" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/lz2_south_cas) +"xhn" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/eta) +"xhy" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"xhB" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xhU" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 27 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xio" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"xiP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"xje" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"xjR" = ( +/obj/item/bodybag/cryobag, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"xjU" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"xkq" = ( +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_research) +"xkH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xkR" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib3"; + pixel_x = 17 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 13 + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"xlD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/pistachios{ + pixel_y = -21; + pixel_x = -6 + }, +/obj/item/stack/sheet/cardboard{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"xlT" = ( +/obj/structure/barricade/deployable, +/turf/open/mars, +/area/bigredv2/outside/c) +"xmh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-in" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"xmy" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_telecomm_cas) +"xmT" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_2, +/area/space) +"xnf" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/obj/structure/largecrate/random/mini{ + pixel_x = 5; + pixel_y = -8 + }, +/obj/structure/largecrate/random/mini{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/structure/largecrate/random/mini{ + pixel_x = 9; + pixel_y = 6; + layer = 2.95 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"xnm" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"xoc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/se) +"xoy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"xpb" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/lz2_south_cas) +"xpl" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"xpu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"xpE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"xpG" = ( +/obj/structure/sign/safety/hazard, +/turf/closed/wall/solaris, +/area/bigredv2/outside/filtration_plant) +"xqb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"xqf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"xqh" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random{ + pixel_y = -5; + pixel_x = -3 + }, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"xqy" = ( +/obj/effect/spawner/random/tool{ + pixel_x = -11; + pixel_y = -9 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"xqW" = ( +/obj/structure/prop/invuln/rope{ + pixel_x = -5; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_x = 10; + pixel_y = -4 + }, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/n) +"xrc" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"xro" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"xrp" = ( +/obj/structure/largecrate/guns/merc{ + name = "\improper dodgy crate" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"xrO" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"xsn" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"xsy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"xsH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"xsX" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"xte" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xtB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/tool/warning_cone, +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"xul" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/trash/cigbutt{ + icon_state = "ucigbutt"; + pixel_x = 2; + pixel_y = 8 + }, +/obj/structure/bed/chair{ + dir = 4; + layer = 3.06 + }, +/turf/open/mars, +/area/bigredv2/outside/nw) +"xuP" = ( +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 16; + pixel_y = 16 + }, +/obj/item/trash/cigbutt, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + icon = 'icons/obj/pipes/manifold.dmi'; + icon_state = "map"; + name = "Pipe manifold" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"xuU" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"xuV" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/research) +"xvW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"xwo" = ( +/obj/structure/disposalpipe/junction, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"xwy" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/general_air_control/large_tank_control, +/obj/structure/cable{ + icon_state = "11-2" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xxx" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/mars, +/area/bigredv2/outside/se) +"xxN" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"xya" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"xyu" = ( +/obj/structure/closet/l3closet/security, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"xyz" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xzi" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xzs" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"xAh" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"xAv" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"xAx" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-in" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"xAU" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/nw) +"xBn" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"xBo" = ( +/obj/structure/barricade/metal{ + dir = 1 + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"xBr" = ( +/obj/item/ore{ + pixel_x = 9 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"xBv" = ( +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"xBS" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/lz1_north_cas) +"xCX" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"xDO" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/oob) +"xDW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"xFZ" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_lambda) +"xGl" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 4 + }, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"xGp" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"xHb" = ( +/obj/item/ammo_casing/bullet, +/obj/item/weapon/gun/pistol/holdout{ + pixel_x = -8; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"xHr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"xHH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"xHX" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/e) +"xIo" = ( +/obj/structure/window/framed/solaris/reinforced/hull, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/oob) +"xIt" = ( +/obj/item/trash/popcorn{ + pixel_y = 9 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"xIv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 8; + name = "\improper Abandoned Mining Storage" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xIx" = ( +/obj/item/clothing/mask/gas, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/filtration_plant) +"xIB" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/virology) +"xIP" = ( +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/lz2_south_cas) +"xIY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"xJn" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/nw) +"xJp" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars, +/area/bigredv2/outside/se) +"xJC" = ( +/obj/item/ore, +/turf/open/mars, +/area/bigredv2/outside/filtration_plant) +"xJP" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/item/tool/pickaxe, +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"xJT" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"xJW" = ( +/obj/structure/machinery/reagentgrinder{ + pixel_x = 7 + }, +/obj/structure/surface/table/woodentable, +/obj/item/weapon/gun/shotgun/double/sawn{ + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"xJX" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/space_port_lz2) +"xJY" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/platingdmg1, +/area/bigredv2/outside/office_complex) +"xKb" = ( +/obj/structure/prop/server_equipment/yutani_server, +/turf/open/floor/greengrid, +/area/bigredv2/caves/lambda/research) +"xKG" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"xLd" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 27; + pixel_y = 9 + }, +/turf/closed/wall/solaris, +/area/bigredv2/outside/bar) +"xLo" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison"; + icon_state = "door_open" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"xLr" = ( +/turf/open/asphalt/cement/cement1/north, +/area/bigredv2/outside/space_port) +"xLv" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"xLz" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz1containers_scramble" + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"xLM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xMr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/caves/mining) +"xMx" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/pistol/holdout, +/obj/structure/machinery/light, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xMz" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"xMT" = ( +/obj/structure/closet, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/ore{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/reagent_container/food/snacks/packaged_burger, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xNa" = ( +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"xNI" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/c) +"xNL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"xOg" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/se) +"xOi" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"xOk" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "cargo_containers" + }, +/turf/closed/wall/solaris, +/area/bigredv2/outside/cargo) +"xPg" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"xPT" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"xQb" = ( +/obj/structure/pipes/vents/pump/on, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"xQd" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"xQQ" = ( +/obj/item/weapon/shield/riot{ + pixel_x = -3; + pixel_y = -7 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"xRb" = ( +/obj/item/weapon/gun/revolver/m44{ + pixel_x = 9; + pixel_y = -14 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"xRl" = ( +/obj/item/weapon/gun/pistol/b92fs{ + pixel_x = 13; + pixel_y = -7 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"xRn" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_north) +"xSa" = ( +/obj/structure/prop/dam/crane, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"xTk" = ( +/obj/limb/arm/l_arm, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"xTM" = ( +/obj/structure/closet/medical_wall, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"xUc" = ( +/turf/closed/wall/solaris{ + damage = 2677; + damage_overlay = 8; + current_bulletholes = 3 + }, +/area/bigredv2/outside/medical) +"xUo" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"xUS" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"xUX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"xVc" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/bigredv2/outside/nw) +"xWb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-in" + }, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) +"xWl" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda"; + name = "Lambda Lockdown" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves_north) +"xWm" = ( +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"xWr" = ( +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; + pixel_x = 4; + pixel_y = 15 + }, +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; + pixel_x = -8; + pixel_y = 9 + }, +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"xWz" = ( +/obj/effect/decal/cleanable/dirt{ + pixel_x = 17 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xWH" = ( +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"xWR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating/warnplate/west, +/area/bigredv2/outside/telecomm/warehouse) +"xXg" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"xXq" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 + }, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"xXP" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"xXV" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"xYa" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/eta) +"xYc" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"xYw" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/obj/item/trash/pistachios{ + pixel_x = -3; + pixel_y = 11 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/w) +"xYy" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"xYS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/bigredv2/outside/virology) +"xZf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"xZm" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"xZL" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/lambda_cave_cas) +"yar" = ( +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"yaM" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ybk" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_research) +"ybT" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Machine room" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ych" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/ammo_casing/bullet, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"ycM" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/lambda/xenobiology) +"ycP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"ycW" = ( +/obj/item/tool/match{ + pixel_x = 8; + pixel_y = 9 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/ne) +"yda" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"ydd" = ( +/obj/item/weapon/shield/riot{ + pixel_x = -6 + }, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"ydn" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/eta) +"ydE" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Command Complex"; + density = 0; + icon_state = "door_open" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"ydO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"yey" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/space_port_lz2) +"yfg" = ( +/obj/structure/closet/secure_closet/detective, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"yfs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"yfz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"yfN" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_box/magazine/misc/flares, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"yfY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/e) +"ygP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"yha" = ( +/obj/structure/surface/table, +/obj/item/device/radio{ + pixel_y = 8 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"yhc" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"yhG" = ( +/obj/structure/showcase{ + icon = 'icons/obj/structures/machinery/research.dmi'; + icon_state = "d_analyzer_la" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"yhN" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"yhV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"yiK" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/mars, +/area/bigredv2/outside/w) +"yjU" = ( +/obj/item/weapon/broken_bottle, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"yjV" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"ykb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"ykv" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-in" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"ykB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/s) +"ykR" = ( +/turf/closed/wall/mineral/uranium, +/area/bigredv2/outside/engineering) +"ykW" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"yln" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/item/weapon/gun/rifle/nsg23/no_lock, +/obj/item/ammo_magazine/rifle/nsg23, +/obj/item/ammo_magazine/rifle/nsg23, +/obj/item/ammo_magazine/rifle/nsg23/ap, +/obj/item/ammo_magazine/rifle/nsg23/ap, +/obj/item/ammo_magazine/rifle/nsg23/extended, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ylx" = ( +/obj/item/clothing/suit/storage/CMB{ + pixel_x = -6; + pixel_y = -10 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"ylR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"ymi" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) + +(1,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(2,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(3,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +"} +(4,1,1) = {" +aaa +aab +aao +aao +rfe +xmT +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +acA +acA +acA +acA +acA +acA +acA +acA +acA +acA +acA +acA +acA +acA +acA +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +jCY +fLj +fLj +fmn +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +jCY +fLj +fLj +fLj +fLj +fLj +fLj +fmn +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(5,1,1) = {" +aaa +aab +aao +cnk +ada +qjO +gsW +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +acA +aas +aas +aas +aas +aas +aas +aas +aas +aas +aas +aas +aas +aas +acA +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +fxK +xmy +rDP +rDP +rDP +fmn +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +jCY +rDP +rDP +rDP +rDP +iwG +rDP +rDP +rDP +rDP +rDP +rDP +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(6,1,1) = {" +aaa +aab +aao +aao +wdM +qVd +aVR +sbz +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +acA +aas +aas +aas +aas +aas +aas +aas +aas +aas +aas +aas +aas +aas +acA +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +fxK +xmy +xmy +rDP +iwG +rDP +rDP +fmn +aao +aao +aao +aao +aao +aao +aao +aao +dIz +aao +jCY +rDP +rDP +rDP +rDP +rDP +rDP +ucH +rDP +rDP +rDP +rDP +rDP +rDP +aao +aao +dIz +aao +jCY +fmn +aao +jCY +icQ +icQ +icQ +icQ +icQ +icQ +icQ +icQ +oQI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(7,1,1) = {" +aaa +aab +aao +aao +aao +aVc +aVQ +nlW +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +acA +aas +aas +acQ +acQ +acQ +acQ +acQ +acQ +acQ +acQ +acQ +ahc +aas +ahN +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +rCA +xmy +xmy +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +aao +aao +jCY +rDP +fLj +rDP +rDP +rDP +rDP +rDP +rDP +mZC +rDP +rDP +rDP +rDP +rDP +rDP +rDP +aao +aao +fwa +fLj +rDP +rDP +fLj +rDP +wog +wog +wog +wog +wog +wog +wog +wog +wog +oQI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(8,1,1) = {" +aaa +aab +aao +aao +aao +iVd +nlW +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +acA +aas +aas +acQ +acY +aaK +adH +aea +aeB +afb +afI +acQ +aas +aas +aiv +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +xmy +xmy +xmy +fxK +xmy +xmy +xmy +rDP +rDP +rDP +oAf +rDP +rDP +rDP +rDP +rDP +rDP +rDP +aao +fwa +rDP +rDP +rDP +ucH +rDP +aao +aao +aao +aao +aao +aao +aao +aao +rDP +rDP +rDP +fLj +bcn +rDP +rDP +rDP +rDP +rDP +rDP +daf +wog +wog +hoQ +wog +wog +daf +wog +wog +wog +icQ +icQ +icQ +icQ +icQ +icQ +oQI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +szw +szw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(9,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +acA +aas +aas +acQ +ade +ade +ade +aeb +aeC +ade +aaV +afv +ahd +ahd +acA +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +xmy +xmy +xmy +xmy +xmy +xmy +xmy +xmy +rCA +xmy +xmy +xmy +rDP +rDP +rDP +oAf +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +oAf +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +ucH +ucH +ucH +iGK +iGK +iGK +iGK +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +icQ +icQ +oQI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +fdr +icQ +icQ +icQ +icQ +oQI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +wCo +erA +tJv +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(10,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +acA +aas +aas +acQ +aWz +acZ +ade +ade +ade +afc +ade +afv +ahd +ahd +acA +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +rNs +aao +aao +xmy +xmy +xmy +xmy +xmy +xmy +xmy +xmy +xmy +xmy +lrH +xmy +rCA +xmy +xmy +xmy +rDP +rDP +rDP +oAf +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +oAf +aao +aao +aao +aao +aao +aao +aao +aao +aao +fLj +fLj +fLj +rDP +rDP +rDP +rDP +rDP +mZC +aao +aao +aao +aao +aao +aao +aao +gxJ +iGK +iGK +iGK +iGK +iGK +iGK +wog +wog +wog +wog +daf +wog +wog +wog +feS +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +wog +wog +wog +wog +wog +aao +aao +aao +aao +aao +aao +fdr +icQ +uYb +uYb +uYb +uYb +uYb +uYb +oQI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +ixA +hfB +egI +aao +aao +aao +aao +aao +aao +wCo +fLR +wCo +gyL +nSP +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(11,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +acA +aas +aas +acQ +aWz +biQ +ade +ade +ade +adr +afJ +afv +aas +aas +acA +acA +acA +acA +acA +ahN +acA +sOE +csE +xmy +xmy +xmy +xmy +xmy +xmy +xmy +xmy +xmy +xmy +gda +gda +gda +xmy +xmy +xmy +csE +xmy +xmy +hcb +xmy +rDP +rDP +rDP +oAf +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +iwG +rDP +rDP +fLj +fLj +fLj +fLj +aao +aao +aao +aao +rDP +rDP +ucH +ucH +rDP +rDP +rDP +rDP +oAf +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gxJ +iGK +iGK +iGK +iGK +wog +wog +wog +cYJ +cYJ +cYJ +cYJ +cYJ +cYJ +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +wog +wog +wog +sLy +wog +wog +wog +wog +wog +aao +aao +aao +fdr +wog +wog +cCr +uYb +uYb +uYb +uYb +uYb +feS +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +els +rxh +rxh +rxh +rxh +sZh +szw +wCo +fLR +qFh +sWa +vHw +vHw +aao +aao +aao +wCo +vmI +nSP +wCo +wCo +wCo +vHw +vHw +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(12,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +acA +aas +aas +acQ +acQ +acQ +acQ +aec +acQ +acQ +acQ +acQ +aas +aas +aas +ahd +ahd +ahd +ahd +all +akl +bRm +xmy +xmy +csE +sQw +xmy +xmy +xmy +xmy +xmy +xmy +csE +xmy +xmy +csE +xmy +xmy +xmy +xmy +xmy +xmy +xmy +xmy +rDP +rDP +rDP +oAf +aao +aao +aao +aao +aao +aao +rDP +fwa +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +mZC +rDP +rDP +rDP +rDP +rDP +rDP +oAf +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gxJ +ski +cYJ +cYJ +cYJ +vMj +vMj +vMj +cYJ +cYJ +cYJ +cYJ +cYJ +aao +aao +aao +aao +aao +wog +wog +wog +wog +wog +wog +gYt +gYt +wog +wog +sLy +boy +wog +wog +wog +wog +uYb +uYb +uYb +gcR +uYb +uYb +uYb +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +rxh +rxh +rxh +rxh +kqV +cqZ +dUj +vMm +qot +xck +jYS +nSP +nSP +wVQ +sZh +jVN +wCo +tqi +owR +owR +owR +owR +owR +jXP +vHw +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(13,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +acA +aas +aas +acQ +adb +ads +adf +aed +aeD +ade +pfG +acQ +aas +aas +ahd +aiW +aas +ahd +ahd +all +acA +bRm +xmy +xmy +xmy +sGi +xmy +xmy +xmy +xmy +xmy +csE +xmy +xmy +xmy +xmy +xmy +xmy +xmy +xmy +xmy +xmy +xmy +xmy +rDP +rDP +rDP +oAf +aao +aao +aao +aao +aao +aao +aao +fwa +rDP +rDP +rDP +rDP +rDP +rDP +rDP +rDP +iwG +rDP +rDP +ucH +rDP +rDP +rDP +aao +aao +fwa +rDP +rDP +mZC +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +cYJ +cYJ +cYJ +cYJ +cYJ +cYJ +cYJ +cYJ +cYJ +vMj +vMj +cYJ +cYJ +wog +wog +wog +wog +wog +wog +gYt +gYt +wog +wog +gYt +gYt +wog +wog +wog +boy +wog +wog +wog +wog +uYb +uYb +uYb +uYb +uYb +uYb +uYb +uYb +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +wCo +wVQ +rxh +rxh +rxh +rxh +rxh +waX +rxh +owR +owR +igU +rWN +owR +rsv +sZh +jVN +wCo +kli +rxh +rxh +rxh +rxh +rsv +opK +rxh +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(14,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +acA +aas +aas +acQ +aaV +adt +adt +adt +ade +ade +acZ +afv +ahd +ahd +aas +aas +aas +aas +aas +all +acA +bRm +xmy +xmy +xmy +xmy +csE +csE +xmy +csE +csE +xmy +xmy +xmy +xmy +xmy +xmy +xmy +xmy +xmy +xmy +xmy +gda +gda +fOc +rDP +rDP +iwG +fmn +aao +aao +aao +aao +aao +aao +fwa +ucH +ucH +ucH +rDP +rDP +ucH +ucH +ucH +ucH +ucH +oAf +aao +fwa +rDP +aao +aao +aao +crQ +ucH +mZC +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +cYJ +cYJ +cYJ +cYJ +cYJ +cYJ +cYJ +cYJ +cYJ +ski +eEy +ski +cYJ +cYJ +cYJ +ovB +wog +icQ +gYt +gYt +wog +sLy +gYt +gYt +wog +wog +wog +wog +wog +wog +wog +boy +lwX +wog +wog +wog +wog +wog +wog +wog +uYb +uYb +uYb +uYb +wog +aao +aao +aao +vHw +vHw +vHw +vHw +vHw +vHw +aao +aao +aao +wCo +wCo +wFO +rxh +cqZ +rxh +rxh +rxh +sYR +rsv +rsv +vfQ +vfQ +rsv +rsv +rsv +sZh +jVN +wCo +wCo +wVQ +rxh +rxh +rxh +rsv +rsv +rxh +rxh +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(15,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aae +abQ +aaf +aaf +aaf +aaf +abQ +aaf +aaf +aaf +aaf +aaf +aaf +abQ +aaf +aas +acH +acR +add +adu +adu +aee +ade +ade +afL +afv +aas +aas +aas +aas +aas +ahd +aaZ +all +acA +bRm +xmy +xmy +xmy +xmy +xmy +xmy +lrH +xmy +xmy +xmy +xmy +aao +aao +xmy +xmy +csE +csE +rCA +gda +eci +aao +aao +fwa +gJw +gJw +vNh +vNm +aao +aao +aao +aao +aao +aao +aao +aao +aao +fwa +fwa +mZC +aao +aao +aao +aao +aao +aao +aao +fwa +oAf +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +cYJ +cYJ +vMj +vMj +cYJ +cYJ +cYJ +cYJ +cYJ +cYJ +cYJ +cYJ +cYJ +uyk +cYJ +cYJ +cYJ +wog +wog +jAo +gYt +wog +wog +wog +wog +wog +wog +sLy +wog +wog +aao +aao +aao +kvp +wog +wog +wog +wog +wog +wog +wog +wog +uYb +wog +uYb +uYb +dPC +rxh +vHw +vHw +vHw +vHw +vHw +vHw +vHw +vHw +rsv +sZh +wCo +wCo +wCo +wFO +rxh +rxh +rxh +rxh +rxh +sZh +wVQ +vfQ +vfQ +rsv +rsv +mqX +sZh +iLs +wCo +wCo +wVQ +rxh +rxh +rxh +rxh +rxh +evX +rxh +rxh +vHw +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(16,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aae +aaf +aaD +aaR +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +acI +acQ +ade +ade +ade +adt +ade +ade +acZ +afv +aas +ahd +ahd +aas +aas +ahd +aas +all +acA +aao +xmy +gda +gda +gda +gda +gda +gda +gda +xmy +xmy +aao +aao +aao +aao +rCA +xmy +xmy +gda +aao +aao +aao +aao +mZC +aao +wvk +aGo +aHf +aHf +aao +aao +aao +aao +lFR +aao +aao +aao +fwa +fwa +rDP +aao +aao +aao +aao +aao +aao +aao +crQ +oAf +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +cYJ +cYJ +uyk +tDv +cYJ +cYJ +cYJ +cYJ +cYJ +oNu +cYJ +cYJ +cYJ +cYJ +uyk +cYJ +tDv +wog +wog +wog +wog +wog +icQ +oQI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +kvp +wog +wog +wog +wog +wog +xaH +xaH +wog +uYb +uYb +uYb +uYb +buj +rxh +rxh +xhy +rxh +rxh +waX +rsv +nxa +rsv +rsv +rsv +eql +wCo +nSP +wCo +wVQ +rxh +rxh +rxh +rxh +rxh +rsv +fnO +fnO +fnO +fnO +fnO +pJX +iLs +wCo +wCo +wVQ +rxh +rxh +rxh +rxh +rxh +rxh +rxh +rxh +vHw +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(17,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aae +aaf +aaf +aaf +aar +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +abi +aaf +aaf +acJ +acQ +adf +adv +adI +aef +ade +ade +afL +acQ +aas +ahd +ahd +aas +aas +ahd +aas +all +akl +aao +aao +pQM +eOd +eOd +pQM +eOd +eOd +eOd +aao +aao +aao +aao +aao +aao +siM +gda +sGi +aao +aao +aao +aao +aao +aao +aao +pdW +aGp +aGq +aFs +aao +aao +aao +aao +aao +aao +aao +aao +rGP +gYl +gKk +aao +aao +aao +aao +aao +aao +aao +ozv +vNh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +cYJ +cYJ +cYJ +cYJ +cYJ +vMj +cYJ +cYJ +cYJ +ski +ski +ski +oNu +aao +aao +aao +aao +aao +bQb +ski +ski +wog +gYt +gYt +wog +wog +wog +feS +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +kvp +wog +wog +wog +wog +wog +xaH +xaH +wog +uYb +uYb +uYb +uYb +rxh +ced +rxh +pmN +rxh +rxh +rxh +rsv +rsv +rsv +rsv +rsv +sZh +nrj +wCo +wCo +wVQ +aao +aao +aao +aao +rxh +sZh +onh +wCo +wCo +nSP +wCo +mfw +iLs +wCo +wCo +wVQ +rxh +rxh +rxh +mOZ +rxh +rxh +rxh +pgi +pgi +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(18,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aae +aae +aae +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +abP +aaf +aaf +aaf +aaf +aaf +aaf +acJ +acQ +acQ +acQ +acQ +acQ +acQ +acQ +acQ +acQ +acA +ahN +acA +acA +acA +acA +acA +acA +acA +aao +aao +qsE +qsE +qsE +qsE +qsE +qsE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aFs +aGq +aFs +aFt +aFu +aFu +aFt +aFt +aoD +aoD +aoD +aoD +aoD +aRD +aoD +aoD +aoD +aoD +aoD +aoD +aoD +aoD +aRD +aRD +aoD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +fSY +cYJ +cYJ +cYJ +cYJ +cYJ +cYJ +cYJ +cYJ +cdA +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +kvp +gYt +gYt +wog +sLy +wog +wog +icQ +oQI +aao +aao +aao +aao +aao +aao +aao +aao +gxJ +wog +wog +wog +wog +wog +wog +wog +wog +uYb +uYb +uYb +uYb +rxh +fnO +fnO +fnO +fnO +cmC +waX +mFT +rsv +rsv +rsv +rsv +rsv +eql +onh +wCo +aao +aao +aao +aao +uHQ +uHQ +uHQ +uHQ +oKy +pSa +ogt +oKy +uHQ +uHQ +uHQ +pLj +gHH +rxh +evX +jtL +rxh +fnO +fnO +rxh +pgi +pgi +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(19,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +abC +aae +abZ +aaf +aaf +aaf +aaf +aaf +acJ +abQ +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aae +aao +aao +qsE +qsE +qlK +jHS +qrZ +qsE +aao +qsE +qsE +vLd +hBD +bGp +tcb +qsE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aFs +aFs +aFt +aHZ +uQZ +aFv +vtk +oJZ +aoD +aMZ +aNc +aoD +aGP +aRE +aSu +arT +aGX +aVC +aWd +aWO +aXu +aoD +aIc +aRE +aoD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +kgw +tft +rtL +rtL +rtL +tft +tft +ski +ski +oNu +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gxJ +iGK +iGK +wog +wog +wog +wog +wog +feS +aao +aao +aao +aao +aao +aao +aao +aao +aao +kvp +uYb +uYb +uYb +uYb +uYb +uYb +uYb +uYb +uYb +uYb +uYb +pcA +pOL +hmL +eju +rHr +wFO +rxh +key +jUY +jUY +jUY +dHr +hLp +drT +vHw +aao +aao +aao +aao +aao +uHQ +rMg +jRi +uHQ +rYD +rtS +kCe +pSa +jkn +xMx +uHQ +wVd +fFG +fnO +fnO +cJA +sZh +wCo +wCo +wFO +pgi +pgi +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(20,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aaf +aaf +aaf +aaf +aaf +aaf +aaf +abi +aaf +aaf +aaf +abQ +aaf +aaf +aaf +aaf +aaf +aaf +acJ +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aae +aao +aao +qsE +oxk +vLd +lYZ +vLd +qsE +qsE +qsE +fRr +upE +hBD +lcu +gqS +qsE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aFt +aFs +aFt +aFt +aFw +aFw +aFt +fxa +aoD +aNa +aNc +aoD +aQz +aRF +aSu +arT +aUM +aNc +aWe +aNc +bwr +aoD +aYA +aWe +aoD +aao +aao +aao +aao +aao +aao +aao +aao +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gxJ +wog +wog +wog +sLy +feS +aao +aao +aao +aao +aao +aao +aao +aao +aao +kvp +uYb +uYb +uYb +uYb +uYb +uYb +uYb +uYb +uYb +uYb +cCr +khx +nSP +czV +xBr +gyU +nSP +wVQ +wtj +cRP +krW +kuu +onR +egS +xwo +lhh +iEj +eaW +uHQ +uHQ +uHQ +uHQ +rjF +vVl +lBe +qeX +kCe +pDV +pSa +gnR +wWN +uHQ +aao +aao +szw +szw +wVQ +sZh +wCo +wCo +wCo +bPy +pgi +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(21,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aag +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aag +aaf +aaf +aaf +aaf +acJ +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aae +aao +qsE +qsE +vLd +upE +vLd +upE +qsE +rMG +vLd +vLd +upE +vLd +qNP +qNP +qsE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aFt +aFt +qsT +twt +gLi +gLi +gLi +dZX +aPt +aNb +aOr +aPt +aQA +aRG +aSv +arT +aHa +aVD +aWf +aRG +aNc +aoD +aYB +aZj +aoD +aao +aao +aao +aao +aao +aao +aao +aao +ayf +bcW +cVY +ayf +cVY +uBP +ayf +cVY +cVY +cVY +cVY +cVY +cVY +cVY +ayf +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +kvp +wog +hoQ +wog +feS +aao +aao +aao +aao +aao +aao +aao +aao +aao +kvp +uYb +uYb +uYb +uYb +uYb +uYb +uYb +gcR +uYb +iGK +iAF +vHw +vHw +szw +szw +fMl +tqi +rWF +wtj +gPE +nWD +vmL +kCe +gPE +rxh +wBq +sGT +ugW +uHQ +nYC +npz +ioA +tpR +luA +xTM +qeX +heG +pZe +pSa +wLD +kCe +uHQ +szw +szw +czV +nSP +wVQ +sZh +wCo +nSP +wCo +wVQ +rxh +rxh +aao +aao +aao +aab +aaa +aaa +aaa +"} +(22,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aaf +aaf +aan +aat +aaE +aaS +aba +aat +aaE +aaS +aba +aat +aaE +aaS +aba +aat +aaE +aaS +acK +acS +adg +adw +adJ +aeg +bgP +aeg +aeg +agn +aae +aao +qsE +uFp +vLd +vLd +upE +vLd +qsE +tlP +vLd +upE +vLd +vLd +upE +wMQ +qsE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aoD +aFu +aFt +xIB +ecZ +dYv +bwe +dYv +dEd +aoD +aNc +aNc +aoD +aQB +aRH +aSu +arT +aUO +aVE +aWg +aRH +aNc +aoD +itL +aRH +aoD +aao +aao +aao +aao +aao +aao +aao +aao +ayf +cVY +cVY +cVY +cVY +ucl +gQj +dCU +tQg +cVY +cVY +bjN +cVY +cVY +ayf +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +kvp +wog +wog +wog +feS +aao +aao +aao +aao +aao +aao +aao +aao +aao +lWE +boy +boy +cCr +uYb +uYb +uYb +uYb +trk +trk +aao +aao +aao +aao +aao +aao +aao +aao +wtj +tfz +kCe +kCe +kCe +iAy +tUL +rxh +wBq +eNN +kPu +uHQ +crv +bJz +lxQ +nXh +oOr +uHQ +yfN +tKC +kCe +oOr +gnR +gnR +uHQ +aao +oqr +sHz +kjT +wVQ +rxh +uFD +ncL +wCo +wVQ +evX +rxh +aao +aao +aao +aab +aaa +aaa +aaa +"} +(23,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aaf +aai +aah +aaF +aah +aah +aah +aah +aah +aah +aah +aah +aaF +aah +aah +aah +aah +aah +aah +aah +aah +aaF +aah +aeh +aaf +aaf +aaf +acJ +aae +aao +qsE +tIA +vLd +vLd +vLd +vLd +mji +vLd +vLd +vLd +vLd +tVn +vLd +mBI +qsE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aoD +aoD +aFv +aGr +xIB +mnw +bwe +pXp +dYv +nRw +aoD +aNd +aOs +aoD +qGd +aRH +aSu +apG +arT +arT +apG +aWP +apG +aoD +aoD +aZk +aoD +aao +aao +aao +aao +aao +aao +aao +aao +ayf +ayf +cVY +cVY +cVY +xjU +cVY +cVY +cVY +cVY +cVY +cVY +cVY +cVY +ayf +ayf +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gxJ +iGK +iGK +wog +wog +oQI +aao +aao +aao +aao +aao +fdr +icQ +icQ +wog +wog +boy +uYb +uYb +uYb +uYb +jXX +dxV +dxV +aao +aao +aao +aao +aao +aao +aao +pxp +rie +qux +sXv +kCe +bgZ +kCe +jhM +rxh +wBq +oJd +kMJ +uHQ +bTm +kgn +rXy +nEV +hUh +nCT +xLM +mqf +kCe +sgT +kCe +fYJ +uHQ +aao +aao +nSP +szw +wVQ +sso +iph +wQa +wfm +rxh +rxh +rxh +aao +aao +aao +aab +aaa +aaa +aaa +"} +(24,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aaf +aaj +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aei +aaf +aaf +aaf +acJ +aae +aao +qsE +rml +vLd +upE +vLd +vLd +vLd +vLd +vLd +vLd +upE +vLd +vLd +dEf +qsE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aeI +aoD +kvD +aGr +xIB +mnw +dYv +dYv +dYv +fhJ +aoD +aoD +aoD +aoD +aRF +aRH +aSw +aTK +aTK +aTK +aTK +aWQ +aNc +aWd +aNc +aRH +aoD +aao +aao +aao +aao +aao +aao +aao +aao +ayf +qsd +cVY +cVY +nbu +cVY +cVY +cVY +cVY +hpg +mMf +cVY +cVY +cVY +cVY +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf +aao +aao +aao +aao +aao +aao +kvp +sLy +feS +aao +aao +aao +aao +aao +gxJ +wog +wog +sLy +wog +boy +uYb +uYb +uYb +hiY +dxV +pYt +uHQ +uHQ +uHQ +uHQ +uHQ +uHQ +uHQ +gSB +dwO +dBa +pSa +gGO +wNA +cVd +kCe +tUL +rxh +wBq +ulk +kSt +uHQ +eWG +jCg +qwy +xzi +lLf +xyz +rbD +kCe +ufu +vdS +rbD +kCe +uHQ +aao +aao +hSP +szw +wVQ +ssO +tOh +syi +dwL +rxh +rxh +rxh +aao +aao +aao +aab +aaa +aaa +aaa +"} +(25,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aaf +aak +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +acx +aah +aej +aaf +aaf +aaf +acJ +aae +aao +qsE +qsE +aTs +suV +qsE +qsE +qsE +qsE +qsE +qsE +vLd +upE +vLd +eDQ +qsE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aeI +aeI +aeI +aeI +aeI +aoD +aFv +aGr +qTN +mnw +dYv +tcV +dvq +nRw +aoD +aNe +aNc +aNc +aNc +aRH +aNc +aNc +aUP +aNc +aNc +aRH +aNc +aRF +aNc +aRH +aoD +aoD +aoD +aoD +aao +aao +aao +aao +aao +ayf +mkt +cVY +cVY +hpg +bgW +cVY +hpg +mMf +tVp +tVp +mMf +mMf +mMf +mMf +ayf +ayf +bsa +ayf +ayf +qcQ +tVp +fFO +cVY +cVY +uSC +tVp +fFO +cVY +cVY +cVY +ayf +ayf +aao +aao +aao +aao +aao +kvp +wog +wog +icQ +wog +aao +aao +aao +wog +pHb +gYt +wog +wog +iAF +aao +uYb +uYb +hiY +dxV +pYt +uHQ +sAS +tdZ +kBE +gTJ +nZK +dsh +qVi +wtj +qhk +cVd +jGQ +gGO +kZG +kCe +uzB +rxh +wBq +teV +ugW +uHQ +uHQ +uHQ +oma +kCe +oma +wfd +jOS +kjr +kCe +uCa +oTL +eER +uHQ +aao +aao +aao +owR +rxh +sso +pmk +waN +dwL +rxh +rxh +rxh +aao +aao +aao +aab +aaa +aaa +aaa +"} +(26,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aaf +aal +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aek +aaf +aaf +aaf +acJ +aae +aao +qsE +acu +uvz +clB +wix +clB +clB +uIB +shV +qsE +aTs +suV +qsE +qsE +qsE +aao +aao +aao +aao +aao +aao +aao +vGR +iKU +jYp +dLJ +aeI +aeI +jHK +aeI +aoD +aoD +aFw +aFt +xIB +mnw +wtK +aFt +aFt +qDH +aoD +aNf +aNc +aNc +aNc +aRI +aSx +aSx +aSx +aSx +aWh +aWR +aXw +aXw +aXw +aZl +aoD +bRV +bRV +aoD +aoD +aoD +aoD +aao +aao +ayf +ayf +cVY +cVY +tVp +feN +vKv +vKv +vKv +vKv +vKv +vKv +vKv +vKv +vKv +vKv +vKv +eWd +vKv +vKv +vKv +vKv +vKv +vKv +vKv +vKv +vKv +vKv +vKv +vKv +jlS +tVp +ayf +ayf +aao +aao +aao +aao +kvp +daf +wog +wog +wog +wog +aao +wog +wog +pHb +gYt +wog +feS +aao +aao +aao +aao +aao +sDC +pYt +uHQ +cyv +jPm +uFi +wtj +jPX +gps +qVi +wtj +pbZ +wtj +ofu +fmL +gGO +gGO +kCe +rxh +rxh +kdp +rxh +rxh +rxh +oKy +pSa +lIe +wuC +nkW +kCe +kCe +xWz +pSa +lSH +yln +uHQ +aao +rxh +rxh +rxh +rxh +rxh +uiE +uiE +rxh +rxh +rxh +rxh +aao +aao +aao +aab +aaa +aaa +aaa +"} +(27,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aaf +aai +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +acd +aah +aah +aah +aah +aah +aah +aah +aah +aah +aeh +aaf +aaf +aaf +acJ +aae +aao +qsE +qiA +uvz +clB +uvz +clB +clB +rMw +whZ +lwT +pVP +rCd +qsE +aao +aao +aao +aao +aeI +aeI +aeI +aao +aao +jIV +jXw +etg +hkS +aeI +aeI +aeI +aeI +aeI +aoD +aFt +aFt +rXM +mnw +nRw +aFt +aFu +bYF +aoD +aNg +aNc +aNc +aQE +aRJ +aSy +aNc +aNc +hYI +aWi +aNc +aNc +aSw +aNc +aNc +aNc +aNc +aRF +aNc +bco +aNc +aoD +aao +aao +ayf +cVY +cVY +hpg +tVp +bgX +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +dAX +tVp +tVp +ayf +aao +aao +aao +aao +kvp +wog +wog +wog +sLy +icQ +wog +wog +baN +wog +wog +wog +iAF +aao +aao +aao +aao +aao +aao +aao +uHQ +qGg +vxQ +mtL +pUi +eWy +qOM +hZl +ust +qJV +emC +hEz +omX +qhH +qhH +qhH +oWC +oWC +oTM +sZh +wVQ +rxh +oKy +lSm +ifF +bRK +dJM +kVY +hKl +pDV +uHQ +uHQ +uHQ +uHQ +tsc +rxh +rxh +rxh +rxh +rxh +rxh +rsv +rsv +rxh +rxh +rxh +aao +aao +aao +aab +aaa +aaa +aaa +"} +(28,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aaf +aaj +aah +aah +aah +aah +acx +aah +aah +aah +aah +aah +aau +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aei +aaf +aaf +aaf +acJ +aae +aao +qsE +aun +uvz +clB +msS +clB +clB +clB +whZ +pVP +pVP +shV +qsE +aao +aao +aao +aeI +aeI +aeI +aeI +aeI +aeI +aeI +lDG +mvk +aeI +mZh +aeI +aeI +aeI +aeI +aoD +aFt +aFt +xeX +mnw +tBl +aHZ +aFv +aLY +aoD +apG +apG +apG +apG +apG +apG +aTL +aNc +aNc +aWi +aNc +aNc +aNc +aNc +aNc +aNc +aNc +aNc +aNc +aNc +aNc +aoD +aao +aao +ayf +cVY +cVY +uSC +tVp +bgX +bsa +bid +biH +bjd +bjn +bid +biH +bjd +bjn +bid +biH +bjd +bjn +bid +biH +bjd +bjn +bid +biH +bjd +bjn +bid +bsa +eWd +dAX +vUy +tVp +ayf +aao +aao +aao +aao +gxJ +iGK +wog +wog +wog +wog +wog +icQ +wog +wog +wog +wog +aao +aao +aao +aao +aao +aao +aao +aao +weO +pSa +wtj +rKs +wJd +erG +pSa +qVi +eup +enD +tsy +lrW +lrW +jWF +fnO +jWF +fnO +fnO +mYW +fnO +fnO +rxh +xIv +dOu +oud +oxh +kvB +oTv +kCe +xte +uHQ +sWS +pSa +oKy +wRH +rxh +rxh +rxh +rxh +rxh +rxh +jtL +jtL +rxh +rxh +rxh +aao +aao +aao +aab +aaa +aaa +aaa +"} +(29,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aaf +aak +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +acd +aah +aah +aah +aah +aej +aaf +aaf +aaf +acJ +aae +aao +qsE +aEY +uvz +clB +uvz +pVP +pVP +clB +rCd +exc +exc +dNn +qsE +aao +aao +aeI +aeI +aeI +wHT +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aoD +aoD +aFt +aFt +xIB +mnw +vdh +aHZ +aFv +aFv +aoD +aNi +aNi +aNi +aNi +aOt +arT +aNc +aNc +aRF +aWi +aNc +aNc +aNc +aNc +aNc +aNc +aUP +aNc +aNc +aNc +aNc +aoD +aao +aao +ayf +ayf +cVY +uSC +tVp +bgX +bhu +bie +bje +bie +bie +bie +bie +bie +bie +bie +bie +bje +bie +bie +bie +bie +bie +bie +bie +bie +bje +bie +bsb +eWd +dAX +wyP +tVp +ayf +aao +aao +aao +aao +aao +aao +gxJ +iGK +wog +wog +wog +wog +daf +feS +wog +wog +aao +aao +aao +aao +aao +aao +aao +aao +uHQ +gCC +wtj +duo +wtj +wtj +iAi +uHQ +jlg +vvL +xuP +rxh +pJX +wCo +wCo +wCo +wCo +wCo +xfx +wCo +wCo +wVQ +pSa +kCe +gTS +ieD +pSa +pZu +ggC +ymi +tZU +pSa +sqQ +oKy +uJI +rxh +rxh +jtL +uDZ +rxh +rxh +rsv +rsv +rxh +rxh +rxh +aao +aao +aao +aab +aaa +aaa +aaa +"} +(30,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aaf +aal +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +acx +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aek +aaf +aaf +aaf +acJ +aae +aao +qsE +qsE +kFe +lMC +uvz +clB +pVP +pVP +shV +qaK +bWl +qsE +qsE +aao +aao +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +jrW +aeI +aeI +aeI +aeI +aeI +aeI +aoD +aFt +aFt +xIB +xHH +wtK +aHZ +jeJ +aFv +aoD +aNi +aOt +aNj +aNi +aNi +arT +aNc +aNc +aNc +aoD +asl +aXx +aoD +asl +aXx +aoD +asl +aXx +aoD +asl +aXx +aoD +aao +aao +ayf +tpY +cVY +uSC +tVp +bgX +bhv +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bjo +bie +bie +bie +bie +bsc +eWd +dAX +tVp +tVp +ayf +aao +aao +aao +aao +aao +aao +aao +aao +kvp +wog +wog +wog +wog +wog +wog +sLy +aao +aao +aao +aao +aao +aao +aao +aao +uHQ +xMT +wtj +wtj +mBo +wtj +xrp +rzT +hEK +vmV +bss +sZh +wCo +wCo +nSP +nSP +yhc +wCo +xfx +nSP +szw +wVQ +oKy +kCe +kCe +pSa +pSa +pSa +pSa +pSa +iLu +pSa +pSa +sOi +tsc +evX +rxh +rsv +vHw +vHw +vTh +rsv +mqX +rxh +rxh +rxh +aao +aao +aao +aab +aaa +aaa +aaa +"} +(31,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aaf +aai +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aeh +aaf +aaf +aaf +acJ +aae +aao +aao +qsE +qsE +qsE +uvz +clB +rMw +clB +rCd +ecX +qsE +qsE +aao +aao +wHT +aeI +aeI +aeI +aeI +aiz +ahO +aeI +aeI +aeI +uAX +aeI +aeI +aeI +aeI +aeI +aeI +aoD +aFt +aFt +xIB +mnw +wtK +aHZ +uLl +aFv +aoD +aNi +aNi +aNi +aNi +aNi +aSA +aNc +aNc +aNc +asl +aWS +aNi +asl +aYC +aNi +asl +swJ +aNi +asl +aYC +aNi +aoD +aao +aao +ayf +cVY +cVY +uSC +tVp +bgX +bhw +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bsd +eWd +dAX +tVp +tVp +ayf +aao +aao +aao +aao +aao +aao +aao +aao +kvp +wog +sLy +wog +wog +gYt +gYt +feS +aao +aao +aao +aao +aao +aao +aao +aao +uHQ +cZj +mIu +fML +eUs +pSa +kSm +lIL +fBc +pvk +dBE +sZh +wCo +wCo +nSP +yhc +wCo +wCo +xfx +wCo +wCo +wVQ +oKy +lSH +xhU +vCd +hCT +pSa +tBK +kCe +pSa +yjU +pSa +oKy +tsc +rxh +rxh +pMB +vHw +vHw +rxh +rsv +rsv +rxh +rxh +rxh +aao +aao +aao +aab +aaa +aaa +aaa +"} +(32,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aaf +aaj +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aei +aaf +aaf +aaf +acJ +aae +aao +aao +aao +aao +qsE +nMB +clB +clB +rMw +shV +qsE +qsE +aao +aao +aao +aeI +aeI +aeI +atQ +aiz +ahP +ahP +aog +axu +aeI +aeI +aeI +aiz +aog +ahO +gyb +aeI +aoD +aFt +uDx +dYv +mnw +dYv +xYS +aHZ +aFv +aoD +aNi +aNi +aNi +aOt +aNj +arT +aNc +aNc +aNc +asl +aWT +aXy +asl +aWT +aXy +asl +aWT +aXy +asl +aWT +aXy +aoD +aao +aao +ayf +ayf +cVY +wXv +tVp +bgX +bhx +bie +bie +bie +bjo +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bse +eWd +dAX +tVp +tVp +ayf +aao +aao +aao +aao +aao +aao +aao +aao +kvp +wog +wog +iGK +wog +gYt +gYt +wog +aao +aao +aao +aao +aao +aao +aao +aao +uHQ +uHQ +uHQ +uHQ +uHQ +uHQ +uHQ +vHw +fBc +pvk +nKL +sZh +onh +wCo +nSP +yhc +wCo +nSP +oUs +nSP +wCo +erX +cOt +jhj +kCe +ekV +pSa +kCe +kCe +uHT +pSa +csB +lKw +oKy +tsc +rxh +rxh +rxh +sZh +rUZ +wFO +fnO +rxh +rxh +rxh +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(33,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aaf +aak +aah +aaF +aah +aah +aah +aah +aah +aah +aah +aah +aaF +aah +aah +aah +aah +aah +aah +aah +aah +aaF +aah +aej +aaf +aaf +aaf +acJ +aae +aao +aao +aao +aao +qsE +qsE +qEJ +qEJ +qEJ +qEJ +qsE +aao +aao +aeI +aeI +aeI +aiz +aog +aog +ahP +ahP +ahP +ahP +ahP +aog +aog +aog +ahP +ahP +ahP +aog +aog +aoD +aFt +aoD +pNi +wXY +imc +aoD +aHZ +aFv +aoD +aNj +aOu +aPu +aNi +aNi +arT +aNc +aNc +aNc +asl +aWU +aXz +asl +aWU +aXz +asl +aWU +aXz +asl +aWU +aXz +aoD +aao +aao +ayf +cVY +cVY +cVY +uSC +bgX +bhu +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bmM +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bsb +eWd +dAX +tVp +tVp +ayf +aao +aao +aao +aao +aao +aao +aao +aao +kvp +wog +feS +aao +gxJ +wog +wog +wog +wog +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +vHw +vec +wbx +bss +rJR +vHw +lYi +nSP +qLk +nSP +wCo +jJH +opz +szw +wCo +uHQ +pXn +rNc +vzL +pSa +vvR +oTL +pSa +pSa +pSa +uHQ +uHQ +wfd +uHQ +rxh +rxh +sZh +wCo +wCo +wCo +wFO +rxh +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(34,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aaf +aaf +aap +aav +aaG +aaT +aap +abj +abt +aaT +aap +aav +aaG +aaT +aap +aav +aaG +aaT +aap +aav +aaG +aaT +aap +aaf +aag +aaf +aaf +acJ +aae +aao +aao +aeI +aeI +fWH +mcO +hby +iFr +wra +hby +meb +oVq +aeI +jHK +aeI +qOC +hby +wra +wra +wra +lkf +wra +wra +lOP +hby +hby +hby +nXD +wra +hby +wra +ulJ +aoD +aoD +aoD +hPa +xpu +bwe +aoD +aoD +aoD +aoD +aoD +aoD +aoD +aoD +aoD +aoD +aoD +maB +aoD +aoD +aoD +aoD +aoD +aoD +aoD +aoD +aoD +aoD +aoD +aoD +aoD +aoD +ayf +ayf +ayf +cVY +cVY +hpg +tVp +bgX +bhy +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +biI +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bsc +eWd +dAX +tVp +tVp +ayf +aao +aao +aao +aao +aao +aao +aao +aao +kvp +wog +feS +aao +aao +gxJ +wog +wog +wog +wog +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +hfB +dXs +uJu +uPF +wCo +jJH +yhc +nSP +nSP +uHQ +wtj +ohY +pSa +lSH +pSa +sWS +pSa +pSa +pSa +dIG +ipf +sdP +uHQ +rxh +hEz +hEz +owR +eql +wCo +wCo +wVQ +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(35,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aag +aam +aam +aam +aam +aam +aam +aam +aam +aam +aam +aam +aam +aag +aam +acw +aam +acw +acw +aam +aam +xLz +aam +aam +aam +aam +aam +ago +aae +ahR +aeI +aeI +aeI +aeI +lYP +lZZ +iGp +lZZ +klS +tGI +aeI +aeI +aeI +aeI +siK +lZZ +iGp +iEN +iGp +iGp +lZZ +iGp +lZZ +tlx +kbX +nkn +kbX +kbX +kbX +kbX +edk +ulJ +ahP +aoD +tCL +eKS +tCL +aoD +aln +aoD +aEu +aEu +aoD +aEu +aEu +aoD +aEu +aEu +aoD +aEu +aEu +aoD +aEu +aEu +aoD +aEu +aEu +aoD +aSB +aSB +aoD +aSB +aSB +rZn +aSB +tVp +mMf +mMf +tVp +tVp +bgX +bhw +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bsd +eWd +dAX +tVp +tVp +ayf +aao +aao +aao +aao +aao +aao +aao +aao +kvp +wog +iAF +aao +aao +aao +kvp +wog +sLy +wog +wog +wog +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +nwS +rPh +mWt +klp +kPP +wCo +ecy +smF +iaX +eql +uHQ +wtj +qSj +pSa +uHQ +dNr +buY +uuO +xhB +pSa +qYY +dKo +pSa +uHQ +fnO +fnO +fnO +fnO +sZh +wCo +wCo +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(36,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aah +aah +aah +aah +aaH +aaH +aah +abk +abu +abk +aah +abu +aaH +ace +sIT +pdI +lkt +skZ +skZ +sIT +pdI +lkt +aah +aah +koI +nOl +rIv +aeG +aae +ahR +aeI +gii +aeI +aeI +jHK +cSl +lZZ +lZZ +gfo +aeI +aeI +aeI +aeI +aiz +siK +lZZ +hUu +pEy +cui +pEy +pEy +lZZ +rev +siG +vli +lZZ +qEE +lZZ +hUu +lZZ +siG +hEr +ahP +xVc +lZZ +qAg +lZZ +rQu +aln +aEu +aEu +aEu +aEu +aEu +aQF +aQG +aQG +aEu +aEu +aEu +aEu +aEu +aEu +aSB +aEu +aEu +aEu +aEu +aSB +aSB +aSB +aSB +beP +beP +beP +tVp +tVp +tVp +tVp +tVp +bgX +bhz +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bse +eWd +dAX +tVp +tVp +ayf +aao +aao +aao +aao +aao +aao +aao +aao +gxJ +iAF +aao +aao +aao +aao +kvp +wog +wog +wog +wog +wog +wog +oQI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +iXN +nkY +dQF +nSP +wCo +xYc +lCR +myc +lPh +uHQ +wtj +qmm +lEw +lBe +pSa +pSa +iLu +xhB +kCe +nqr +kCe +xWr +uHQ +vHw +owR +owR +owR +sZh +wCo +nSP +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(37,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aah +aah +aah +aah +aaI +aaI +aah +abl +abv +abl +aah +abv +aaI +acf +lcf +bMJ +pAd +skZ +skZ +jmQ +lrf +mSz +dbO +aah +rIx +iuI +hyO +aeG +aae +ahR +aeI +aeI +aeI +aeI +aeI +eZb +iGp +iGp +gfo +aeI +aeI +aeI +gii +aiA +siK +iGp +ylR +aqJ +aoO +aiw +ahQ +lYP +wIm +lBQ +pEy +pEy +pEy +sPw +pEy +lZZ +vAb +ivN +ahP +ahP +eZD +siG +gfo +ahP +ama +aeI +aEu +aEu +aEu +aEu +fjF +aEu +aQF +aQG +aEu +hgP +hlH +jou +hlH +lRv +hlH +gYR +hlH +hlH +hlH +gYR +hJp +hlH +wJE +hlH +hlH +ohl +qBF +qBF +eEp +skt +eWd +bhA +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bjo +bsb +eWd +dAX +tVp +tVp +ayf +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +kvp +wog +daf +wog +wog +wog +wog +feS +aao +aao +aao +uHQ +uHQ +uHQ +uHQ +uHQ +uHQ +aao +aao +aao +aao +aao +aao +aao +aao +eql +wCo +wCo +fQv +ene +rZQ +dPb +uHQ +uHQ +uHQ +uHQ +uHQ +pSa +cDx +uHQ +oKy +oKy +wrS +qkw +uHQ +uHQ +uHQ +fnO +fnO +fnO +pJX +eSu +wCo +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(38,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aah +aah +aah +aah +aaJ +aaJ +aah +abm +abw +abm +aah +abw +aaJ +acg +xWb +rwb +vnR +skZ +skZ +xWb +rwb +vnR +aah +aah +iEv +iuI +vWG +aeG +aae +ahR +ahO +aeI +uAX +aeI +aeI +siK +iGp +hUu +gfo +gii +aeI +aeI +aeI +aiA +mbY +qEE +hEr +ahP +ajy +anp +anp +anp +axv +axY +axv +anp +anp +anp +gri +mbY +siG +hEr +nEz +ahP +ptt +siG +gfo +aln +qEz +aeI +aeI +aEu +aEu +aEu +aEu +aEu +aEu +aQF +aQF +gJF +jzO +sKK +ewo +ewo +sKK +ewo +ewo +sKK +jfc +ewo +xYw +vna +jzO +jzO +jzO +mYo +eJp +pBX +pBX +bJZ +eWd +bhv +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bie +bsc +eWd +dAX +tVp +tVp +ayf +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +kvp +wog +wog +wog +wog +wog +wog +wog +kvp +aao +aao +xMr +hFP +lbZ +maF +sbA +pcf +qzY +hzP +fnO +xkR +tWS +uNW +iJF +omG +pJX +wCo +yhc +ozf +rDO +cJh +pJX +rUZ +wCo +wCo +wCo +wCo +wVQ +rxh +xhy +sZh +wCo +nRS +nSP +nCX +uHQ +uHQ +wCo +wCo +wCo +wCo +wCo +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(39,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aae +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +ach +aah +aah +dbO +skZ +skZ +dbO +aah +aah +aah +aah +iEv +oLf +vWG +aeG +aae +ahR +hJk +ahO +aeI +aeI +eVb +lQh +lZZ +lZZ +xdc +aeI +aeI +nzX +aeI +aiA +siK +lZZ +hEr +aln +ajy +anp +avT +bZp +avT +axZ +avT +azn +avT +avT +anp +siK +siG +uDu +ahP +ahP +siK +ooJ +qpZ +aln +aeI +aeI +aEu +aEu +aEu +aEu +aEu +aEu +aSB +aSB +aSB +kEI +wsT +vsX +aSB +aSB +aYE +aYE +aYE +rCH +jBc +aSB +mQY +jzO +jzO +jzO +vDS +woe +tVp +tVp +eRN +tVp +bgX +bhw +bie +bje +bie +bie +bie +bie +bie +bie +bie +bie +bje +bie +bie +bie +bie +bie +bie +bie +bie +bje +bie +bsd +eWd +dAX +tVp +tWf +ayf +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gxJ +iGK +iGK +wog +wog +sLy +wog +wog +kvp +wog +eGf +fYH +fcG +dCA +cAN +yfs +mhG +fOo +iDJ +jPV +sln +wtJ +dFz +jVW +qmG +wCo +tiD +wmh +xfx +seO +igM +wCo +nSP +vmI +wCo +wCo +wCo +wVQ +rxh +rxh +sZh +yhc +dqy +dvB +nCX +uHQ +uHQ +jVN +iLs +jVN +bII +iLs +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(40,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +wcs +aae +aae +aae +wHg +aah +aah +aaU +abc +aah +aah +aah +aah +aah +aah +ach +aah +gKY +cSK +pMr +skZ +ykv +myl +aah +aah +aah +iEv +iuI +vWG +aeG +aae +ahT +ahP +ahP +ahO +ahi +aeI +cCZ +iGp +kRB +raE +aeI +aeI +aeI +aeI +aiA +siK +lZZ +gfo +udn +wQB +bFw +xWR +xWR +iTN +axZ +avT +azo +aAq +aAZ +anp +siK +siG +qEE +hby +hby +rev +siG +hEr +aln +aeI +aoO +aqp +aEu +aEu +aEu +aEu +aEu +aEu +aEu +aXY +kPE +lsI +fxj +aWk +aWk +aWk +aWk +aWk +aXY +aYF +bbJ +mQY +qMG +vna +jlJ +rvU +woe +tVp +wbD +tVp +tVp +bgX +bsa +bpu +bqd +bqE +bjp +bjO +bqd +bqE +brb +bpu +bqd +bqE +brb +bpu +bqd +bqE +brb +bpu +bqd +bqE +brb +bpu +bsa +eWd +dAX +tVp +wZP +ayf +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +kvp +wog +wog +wog +wog +wog +wog +jMm +uxx +fOM +ulH +lYC +yfs +uxx +yda +nBb +gki +paz +eBn +rVh +ubY +ubY +xXg +wCo +wCo +jJH +wCo +sqc +quQ +fMT +wCo +nSP +wCo +wCo +wVQ +rxh +rxh +sZh +wCo +dqy +nSP +ugW +uHQ +uHQ +tqi +owR +owR +owR +owR +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(41,1,1) = {" +aaa +aab +aao +aao +aao +aao +wXg +pow +pow +mGq +rgp +aae +aah +aah +aah +aah +aah +aah +aah +abD +aah +aah +ach +aah +bHk +ftO +skZ +pMr +bHk +ftO +aah +aah +aah +iJs +iuI +fkV +pKS +ahK +dkl +ifo +hby +wra +hby +nXD +lZZ +vli +lZZ +lZZ +gaY +hby +nXD +qZx +wra +hUu +lZZ +hEr +aln +ajy +bFw +hyC +iNE +pPh +axZ +avT +avT +avT +avT +anp +jBl +okJ +evQ +dUs +dUs +tZd +sgZ +xJn +aln +aeI +ajy +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +asj +aVJ +aVJ +asj +aoH +aoH +asK +jUd +asK +beQ +aYF +aYF +mQY +jzO +vna +jzO +rvU +woe +tVp +tVp +tVp +tVp +bgX +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +eWd +dAX +tVp +shK +ayf +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +kvp +wog +wog +wog +wog +xXP +euP +oWc +tCh +eZw +cVh +fvb +kek +tCh +sZi +iPE +iPE +iPE +iPE +jrA +jZy +obB +iPE +iPE +jrA +cSu +iPE +iPE +iPE +rqv +iPE +iPE +iPE +tBb +ilO +pVp +pVp +bvD +iqF +xJT +wCo +nCX +uHQ +aao +rsv +rsv +rsv +rsv +rsv +rsv +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(42,1,1) = {" +aaa +aab +aao +aao +aao +hgT +wXg +pMv +wXg +wKx +rgp +aaq +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +ach +aah +xmh +rLJ +skZ +skZ +xmh +rLJ +aah +aMC +aah +qYX +iuI +oLf +jkb +fSJ +jsY +kbX +kbX +kbX +jpk +lZZ +klS +lZZ +lZZ +lZZ +klS +iGp +lZZ +iGp +iGp +lZZ +iGp +mkA +aln +ajy +bFw +hyC +hyC +pPh +axZ +avT +avT +avT +avT +anp +ahQ +ahV +ahV +ahV +ahP +ahP +ahP +ahP +ama +vWw +ajz +apt +aNk +aOv +aPv +aOv +aOv +aSC +aPv +aNm +aOv +aOv +aWX +aXB +aoH +aXH +aXH +asK +beQ +aYF +pGp +mQY +jzO +vna +jzO +rvU +tVp +aao +aao +tVp +tVp +bgX +sbm +kHK +kHK +bmN +bmN +bmN +eWd +eWd +eWd +bmN +bmN +eWd +bmN +bmN +bmN +bmN +bmN +bmN +eWd +eWd +eWd +bmN +bmN +bmN +vGE +tVp +ayf +ayf +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gxJ +iGK +iGK +wog +wog +wog +wog +jMm +uxx +jsL +tQo +kKx +vlr +uxx +rMJ +tff +tdp +syu +owR +owR +dFR +xWH +eql +wCo +wCo +xfx +wCo +wCo +szw +tqi +owR +owR +owR +eql +wCo +wCo +wCo +onh +nSP +wCo +tqi +pSa +uHQ +aao +aao +rsv +rsv +mqX +rsv +rsv +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(43,1,1) = {" +aaa +aab +aao +aao +wXg +wXg +wXg +wXg +wXg +wKx +rgp +aae +aah +aah +aah +adL +aah +aah +aah +adL +aah +aah +ach +aah +acx +aah +skZ +skZ +aah +aah +aah +aah +aah +iTZ +hZE +xLr +tDE +ahK +enb +wIm +pEy +lZZ +siG +iGp +pEy +pEy +pEy +pEy +pEy +pEy +cUt +myK +pEy +pEy +cui +rzI +aln +caL +bFw +tWv +xcz +dws +aya +avT +azo +aAq +aAZ +anp +ahR +aeI +uAX +ahi +aiB +ahV +ama +aeI +jrW +aeI +ajz +apt +aNk +aNo +aOB +aOB +aNo +aOB +aOB +aNo +aOB +aOB +aNo +aXC +aoH +aXH +aXH +asK +beQ +aYF +aYF +ozZ +jzO +jzO +jzO +rvU +tVp +tVp +aao +aao +tVp +bgX +sbm +eWd +dAX +kOv +qNH +mDt +bgX +eWd +cpQ +ayf +ayf +bsa +ayf +ayf +qcQ +tVp +tVp +tVp +qet +mVp +mqK +tVp +qcQ +tVp +tVp +tVp +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +fus +kgx +qEs +hEE +wBi +uxx +fOM +kcx +pbX +yfs +uxx +jZM +dUz +vVF +vHw +vHw +uHQ +uHQ +oKy +oKy +ybT +vRs +xfx +nSP +wCo +yhc +wVQ +aao +aao +fnO +fnO +nSP +wCo +kSH +uHQ +hRy +ezQ +pSa +sDs +uHQ +aao +aao +rxh +fnO +fnO +rxh +rxh +rxh +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(44,1,1) = {" +aaa +aab +aao +aao +geC +wXg +wXg +jIQ +iuu +pXu +rgp +aae +aaw +ahK +aaW +aaw +aaw +abx +abx +aaw +aaw +aah +ach +aah +gKY +myl +skZ +skZ +gKY +myl +aah +aah +aah +aah +aah +aah +aeG +aae +tFT +ahP +ahP +iZp +siG +sll +sMP +nbL +ahP +dGz +ahP +ahP +cFE +ahP +ahP +nEz +ahP +ahP +uAV +ajy +anp +avT +avT +avT +axZ +avT +avT +avT +avT +anp +ahR +aeI +aeI +aeI +aeI +aeI +aeI +vbS +aeI +aeI +ajz +apt +aNk +aOw +aPw +aQH +aRK +aSD +aTM +aUS +aNo +aNm +aWY +aXD +aoH +aXH +aXH +asK +beQ +bbb +aYF +mQY +jzO +jzO +jzO +rvU +snZ +tVp +jDo +tVp +tVp +bgX +eWd +eWd +eWd +vKv +vKv +vKv +eWd +eWd +qNU +ayf +ayf +ayf +ayf +ayf +tVp +tVp +qcQ +tVp +iAL +mic +xJX +tVp +tVp +tVp +tVp +tVp +qcQ +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +fus +kgx +kgx +kgx +vct +bvV +rUn +dSg +pQE +jDy +nMZ +ovZ +nFB +vHw +vHw +vHw +uHQ +hoY +mOW +pvk +tRd +qVi +xfx +wCo +nSP +wCo +wVQ +vHw +vHw +owR +owR +wCo +wCo +aao +uHQ +uHQ +uHQ +uHQ +uHQ +uHQ +aao +aao +pJX +wCo +wCo +wVQ +rsv +rsv +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(45,1,1) = {" +aaa +aab +aao +aao +aao +wXg +jIQ +pXu +pXu +pXu +xbV +aae +aax +aaO +aaP +nnd +abn +aby +wry +abE +aaw +aca +ach +aah +bHk +ftO +skZ +skZ +bHk +ier +aah +aah +aah +aah +aah +aah +aeG +aae +ahR +ahP +dme +mbY +siG +gfo +ikm +vLs +tNO +ahP +ahP +ahP +dEQ +ahP +ard +dme +ahP +ahP +ahP +auF +anp +avU +avT +avT +axZ +avT +avT +avT +aBa +anp +ahR +aeI +aeI +aeI +fWH +aeI +aeI +aeI +aeI +aeI +ajz +apt +aNk +aOx +aPx +aoH +aoH +aoH +aoH +aUT +aNo +aNm +aOB +aXE +aoH +aXH +aXH +asK +beQ +yiK +bbc +mQY +bjT +jzO +jzO +woP +tVp +buk +tVp +tVp +tVp +bgX +eWd +eWd +kHK +bmN +bmN +bmN +eWd +eWd +gpA +ayf +aFc +aFc +aFc +ayf +quX +quX +axX +tVp +iAL +yey +qKK +tVp +tVp +tVp +tVp +tVp +tVp +fsY +lzI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +fus +kgx +kgx +kgx +fvu +uHQ +tBf +qjA +bJS +iaN +uHQ +tDk +nub +gNH +aao +aao +uHQ +khl +hzg +pSa +kmb +qVi +qZU +wCo +wCo +wCo +wFO +fnO +fnO +fnO +pJX +tqi +aao +aao +aao +aao +aao +aao +aao +aao +aao +pJX +wCo +jVN +jVN +wVQ +rsv +rsv +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(46,1,1) = {" +aaa +aab +aao +aao +aao +iuu +pXu +pXu +pXu +xBS +pow +aae +aay +aaO +aaO +aaO +aaO +aaO +abA +abF +abR +aah +ach +aah +xmh +ryQ +skZ +skZ +bUy +edO +aah +dbO +dbO +aeF +afg +afg +adl +aae +pbn +ahV +ahP +siK +siG +iGp +hby +hby +keN +lOP +hby +hby +hby +vmE +hby +hby +hby +hby +hby +uUM +axv +avT +avT +avT +axZ +avT +avT +avT +avT +anp +ahR +aeI +aeI +mZh +aeI +aeI +aeI +aeI +aeI +fWH +aLZ +aoH +aNl +aOy +aGT +aPy +aRL +aSE +aTN +aUU +aNo +aWs +aQM +aPG +aXZ +aYG +aXH +asK +beQ +bbc +aSB +bLO +jzO +jzO +jzO +sym +tVp +tVp +tVp +tVp +tVp +mAY +vsi +dIH +dAX +mDt +jrN +kOv +bgX +eWd +lTV +gWD +aFc +aFc +bsI +azb +vkv +kVT +azb +qet +tCn +gQM +mic +mVp +vBs +mVp +mVp +mVp +mVp +mqK +qzO +cHn +cHn +cHn +hqD +keg +keg +keg +keg +keg +keg +keg +keg +keg +aao +aao +aao +aao +aao +aao +lQN +kgx +kgx +kgx +dVA +uHQ +uHQ +uHQ +uHQ +uHQ +uHQ +gNH +gNH +aao +aao +aao +uHQ +eNN +mOW +kMs +uDI +uHQ +vHw +vHw +eql +wCo +wCo +wCo +tqi +owR +owR +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +wCo +wCo +hyv +jVN +wFO +rsv +rsv +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(47,1,1) = {" +aaa +aab +aao +aao +aao +iyY +iyY +pXu +mDN +wXg +wcs +aae +aaz +aaP +aaP +aaO +aaP +aaO +aaO +abG +abR +aah +ach +aah +aah +aah +skZ +skZ +aah +aah +aah +dbO +dbO +aeG +pCk +afM +agv +tdC +ljS +ahX +aiA +siK +siG +lZZ +hUu +rev +lZZ +lZZ +lZZ +lZZ +qEE +lZZ +hUu +lZZ +lZZ +lZZ +lZZ +gfo +axv +avT +avT +avT +axZ +avT +avT +avT +avT +anp +ahR +nzX +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +ajy +aoH +aNm +aOx +aNo +aNo +aNo +aOB +aOB +aUV +aVK +aOy +aNo +aHK +aoH +aYH +aXH +asK +bdZ +aWk +wUi +kEI +mFm +vna +vna +sym +hTY +vKv +vKv +vKv +vKv +dVp +kHK +crl +kHK +vKv +vKv +vKv +eWd +eWd +okt +gWD +aFc +aFc +bsI +azb +hhK +nVq +bqf +eKY +tCn +mic +mic +tCn +tCn +tCn +tCn +tCn +gQM +qKK +qzO +bGL +bGL +bGL +qCK +keg +xIP +bvF +keg +bvS +bvS +bvS +bvS +keg +euF +aao +aao +aao +aao +aao +vex +oQz +gpT +kgx +fvu +vex +aao +aao +aao +aao +aao +aao +aao +aao +lOY +aao +uHQ +oRK +bSw +wfR +jUW +uHQ +vHw +hLS +sZh +wCo +nSP +wCo +wVQ +rxh +rxh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eql +wCo +wCo +nSP +wCo +wVQ +rsv +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(48,1,1) = {" +aaa +aab +aao +aao +aao +aao +wXg +wKx +mDN +wXg +uzv +aae +aaA +aaP +aaP +abf +aaP +aaP +aaO +abH +aaw +aah +ach +acn +gKY +myl +skZ +skZ +gKY +myl +aah +aah +aah +aeH +aah +afM +agw +agv +akK +ahX +aiA +koC +gkA +qEl +dUs +dUs +dUs +dUs +dUs +dUs +dUs +dQY +dUs +dUs +dUs +dUs +dQY +hpM +avt +avV +avV +avV +ayb +avT +avT +avT +avT +anp +ahR +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +ajy +aoH +fmd +aOx +aOB +aOB +aRM +aOB +aOB +aUW +aVL +aWt +aHK +aXG +aoH +aYI +aXH +asK +bdZ +bdZ +asK +kPE +ewo +ewo +tjC +lsI +asK +eWd +eWd +eWd +asK +eWd +eWd +crl +kHK +tMa +tMa +gWD +eWd +eWd +ice +gWD +aFc +aFc +bsI +azb +hhK +sCt +azb +ugm +pBX +pBX +pBX +pBX +pBX +pBX +pBX +eJp +pBX +nCL +qzO +bGL +bGL +bGL +qCK +keg +rdR +rdR +keg +btw +btw +btw +btw +keg +euF +aao +aao +aao +aao +aao +aao +fus +kgx +kgx +dVA +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +lBe +eNN +xkH +pvk +jnV +uHQ +aao +xhy +sZh +wCo +wCo +wCo +wVQ +rxh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +rsv +eql +wCo +vYw +tqi +rsv +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(49,1,1) = {" +aaa +aab +aao +aao +aao +wXg +wXg +wKx +mDN +pMv +aao +aae +aaL +aaO +aaO +aaO +abo +aaO +aaO +abI +abS +aah +ach +aco +gkj +ftO +skZ +ino +bHk +ftO +dbO +aah +aah +aah +aah +aah +agx +agv +cDI +uAX +aiA +qQM +lZZ +hEr +vOM +ahP +ahV +ahV +ahP +cFE +ahP +ahP +ahV +ahV +ahP +ahP +ahP +aoO +anp +avT +avT +avT +axZ +avT +avT +avT +avT +anp +ahR +aeI +aeI +aeI +aeI +aeI +aeI +gii +aeI +aeI +ajy +aoH +aNm +aOz +rkU +oHV +sPo +ePi +wFu +glH +aQM +aWu +aoH +aoH +aoH +aYH +aXH +asK +atw +atU +asK +bct +bct +bct +bct +bct +asK +atw +atw +atw +asK +asK +asK +wLU +bbg +asK +asK +asK +asK +bkz +asK +xOk +aFc +ftY +kcH +azb +hhK +sCt +axX +azB +axX +axX +azB +azB +azB +axX +axX +bpx +bpy +bpy +glB +rJJ +bGL +bGL +bGL +bvK +rdR +rdR +bvK +btw +btw +dAi +hEC +keg +euF +aao +aao +aao +aao +aao +kgx +fus +kgx +kgx +dVA +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +uHQ +wvV +sgF +rkS +oXH +hiP +iep +rxh +rxh +owR +owR +owR +rxh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +wCo +wCo +wVQ +rsv +owR +owR +rsv +rsv +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(50,1,1) = {" +aaa +aab +aao +aao +aao +wXg +jIQ +pXu +pXu +iuu +aao +aae +aaL +aaO +aaO +abg +aaO +aaO +aaP +abJ +abT +aah +ach +aah +xAx +rLJ +skZ +gqH +xmh +rLJ +aah +aah +aah +aah +aah +snT +afM +agw +ahR +ahX +aiA +siK +tsW +vvU +ahP +xAU +aeI +aeI +aiB +ahV +ahV +ama +aeI +gii +aiB +ahV +ahV +ajy +anp +avU +avT +avT +axZ +avT +avT +avT +aBa +anp +ahR +aeI +jHK +aeI +aeI +aeI +aeI +aeI +aeI +aeI +ajy +aoH +aNn +aOy +vPU +aoH +aoH +aoH +aoH +hda +aNo +aNm +aoH +aXH +aXH +aYJ +aZm +aZL +bay +aZu +asK +bcu +bdg +bdg +bcu +bdg +asK +aZu +aZu +aZu +asK +kjH +beT +baz +dcB +bbM +rYS +asK +aZw +aZu +bld +asK +ftY +kcH +bme +azb +hhK +mSS +btr +kVT +azb +bqI +bre +maH +hdc +bsJ +axX +bsI +bme +aao +glB +rJJ +bGL +bGL +qCK +keg +bvv +lmg +keg +btw +btw +btw +btw +keg +euF +euF +aao +aao +aao +aao +kgx +kgx +kgx +kgx +kgx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +uHQ +pao +bSw +tBh +eVo +fZg +rxh +fnO +rxh +fnO +rxh +rpl +vHw +aao +aao +aao +aao +aao +aao +aao +aao +aao +wCo +tqi +owR +rsv +rsv +rsv +rsv +rsv +rsv +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(51,1,1) = {" +aaa +aab +aao +aao +aao +wXg +wKx +pXu +pXu +pXu +aao +aae +aaC +aaQ +aaY +abh +abp +aaN +abB +abK +abR +aah +ach +aah +aah +aah +skZ +pDn +aah +aah +aah +aah +aah +dbO +aah +agv +nCM +cln +czI +aeI +aiA +fGq +lZZ +gfo +aln +aeI +qEz +aeI +aeI +aeI +fWH +aeI +aeI +aeI +aeI +aeI +wHT +ajy +anp +avT +avT +avT +axZ +avT +avT +avT +avT +anp +ahR +aeI +aeI +aeI +aeI +wHT +aeI +aeI +aeI +aeI +ajy +apt +aNk +aOy +vqU +iqd +piT +piT +gRT +fAT +aNo +aNm +aoH +aXH +aXH +aXH +aXH +asK +baz +aZu +cRb +aZu +aZu +aZu +aZu +aZu +hah +bfy +bfV +bgq +atA +gMC +bhb +hSZ +bhb +bhb +aZu +asK +aZu +bkA +hzy +axL +bsI +bme +bme +azb +hhK +nVq +nVq +sCt +azb +hhK +nVq +nVq +nVq +sCt +azb +bme +bme +aao +glB +jOc +jOc +jOc +jOc +keg +xIP +xIP +keg +bvS +bvS +bvS +bvS +keg +euF +sSU +aao +aao +qHY +hEE +kgx +kgx +kgx +kgx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +uHQ +xwy +sog +pZe +mmg +lBx +tVy +oJO +wVQ +owR +rxh +rxh +vHw +aao +aao +aao +aao +aao +aao +aao +rsv +rsv +owR +rsv +rsv +rsv +rsv +rsv +rsv +rsv +rsv +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(52,1,1) = {" +aaa +aab +aao +aao +aao +wXg +cGZ +pXu +pXu +pXu +aao +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aah +acj +dbO +aah +aah +skZ +skZ +aah +aah +aah +adL +aah +aah +aah +aah +afM +aae +akK +aeI +aiA +siK +lZZ +sll +aln +aeI +aeI +aeI +aeI +aeI +aeI +vbS +aeI +aeI +aeI +aeI +aeI +ajy +anp +qaR +avT +avT +axZ +avT +azo +aAq +aAZ +anp +ahR +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +ajy +apt +aNk +aOy +aNo +aNo +aNo +aNo +aNo +aNo +aOC +aNm +aoH +aXH +aXH +asK +asK +asK +baA +bbe +bbN +bcv +bdh +bbe +bbe +baC +bbe +bfz +aZO +aZu +atA +bkn +bhb +bfB +wHV +eYK +bbe +bjR +bbe +bbe +aLo +axL +bsI +bme +bme +azb +hhK +nVq +nVq +nVq +bqf +nVq +nVq +tTI +rzb +bsK +axX +bme +nra +aao +glB +xpb +tvh +tvh +krx +keg +keg +keg +keg +keg +keg +keg +keg +keg +vCU +kgx +kgx +kgx +kgx +kgx +kgx +kgx +kgx +kgx +kgx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +uHQ +tfp +okh +dCb +pJS +cPZ +rxh +umK +rxh +pmN +rxh +rxh +waX +rxh +aao +aao +aao +aao +aao +kDs +yha +rsv +rsv +rsv +qeZ +rsv +rsv +rsv +rsv +rsv +rsv +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(53,1,1) = {" +aaa +aab +aao +aao +aao +pMv +wXg +cGZ +pXu +pXu +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aae +aae +aae +aae +aae +aae +aae +nZd +aae +aae +aaq +aae +aae +aae +aae +aae +aae +aae +atm +aeI +aiA +mbY +wZI +hEr +ahP +ahO +aeI +jrW +aeI +uAX +aeI +aeI +aeI +vWw +aeI +mZh +aeI +ajy +anp +avT +avT +avT +axZ +avT +avT +avT +avT +anp +ahR +aeI +aeI +aeI +aeI +aHn +aeI +aeI +aeI +aeI +aMa +apu +aNm +aOy +aPC +aNo +aNo +aNo +aTQ +aRM +aNo +aWv +aoH +aXH +aXH +asK +aZn +aZu +aZu +aZu +bbO +aZu +aZu +bdK +aZM +aZu +beU +hVP +bgE +baF +asK +aZu +bhb +cLg +iih +ppo +ugc +atA +bkl +aZO +blg +axL +bsI +bme +bme +azb +hhK +nVq +nVq +sCt +azb +hhK +nVq +tTI +rzb +bsL +azb +nra +bpx +aao +euF +dEV +euF +buR +euF +nTG +kgx +kgx +kgx +kgx +kgx +kgx +kgx +kgx +kgx +kgx +nEl +nEl +nEl +kgx +kgx +kgx +kgx +kgx +kgx +kgx +aao +aao +aao +aao +aao +aao +aao +aao +aao +rIl +rIl +rIl +gTN +xIo +xIo +wSj +rxh +rxh +jYD +fnO +fnO +xJP +rxh +rxh +rxh +aao +aao +aao +szw +ruS +fRo +rsv +rsv +pMB +vHw +ddt +rsv +rsv +fnO +xSa +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(54,1,1) = {" +aaa +aab +aao +aao +aao +geC +wXg +wXg +wKx +pXu +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +agm +agm +aao +aao +aao +aao +aao +aao +aeI +aeI +aiA +eZD +iGp +hEr +dme +aln +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +caL +anp +anp +alX +ayN +ayd +alX +anp +anp +anp +anp +ahR +aeI +aeI +ahi +aeI +aeI +aeI +aeI +uAX +aeI +aMb +apu +aNl +aOy +aPD +hOS +aPD +hOS +aTR +aVa +aNo +aNm +aoH +aXH +aXH +asK +aZo +aZu +aZu +aZu +baz +bcw +aZu +aZO +bec +cIP +aZu +bfB +bbe +bbe +bjR +bbe +nnL +suL +hyB +vkF +fVt +atA +bkl +aZu +aZu +axL +bsI +bme +bme +azb +fLl +btu +btu +gdx +azb +fLl +nVq +btu +nVq +bsM +axX +bpx +bpx +aao +euF +euF +euF +euF +euF +euF +jWA +kgx +kgx +nEl +kgx +kgx +kgx +kgx +kgx +tsK +euF +euF +euF +nTG +kgx +kgx +kgx +kgx +kgx +kgx +aao +aao +aao +aao +aao +aao +aao +aao +aao +rIl +pYE +ujU +mrS +fwO +fwO +rIl +aao +rxh +uFF +wCo +wCo +wFO +rxh +ohg +rxh +aao +aao +aao +cCu +wlE +dNd +wVQ +rsv +rsv +nxa +rsv +rsv +sZh +nSP +wCo +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(55,1,1) = {" +aaa +aab +aao +aao +aao +wXg +wXg +wXg +wKx +pXu +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +agm +agm +agm +aao +aao +aao +aao +aao +aao +aeI +fWH +aiA +siK +iGp +xdc +cFE +aln +gii +aeI +vbS +aeI +aeI +aeI +aeI +aeI +aeI +fWH +aeI +ajy +vCl +ing +alu +aqw +azv +ngo +qXf +ajx +uum +ajx +ahR +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +ajy +apt +aNk +aOy +aPE +aoH +aoH +aoH +aoH +aPD +aNo +aWw +aoH +aXH +aXH +asK +aZo +aZM +baB +aZO +baz +aZu +aZO +bdL +aZu +aZu +beU +bfC +bfX +bhe +asK +asK +asK +wLU +bbg +asK +asK +asK +aLl +aZu +blh +asK +ftY +fbf +bme +axX +azB +azB +azB +axX +axX +axX +brf +ayr +brf +axX +axX +bpx +kdh +aao +aao +aao +euF +euF +njf +euF +jWA +kgx +lWA +euF +nTG +kgx +kgx +nEl +tsK +euF +euF +euF +euF +euF +puU +kgx +kgx +kgx +kgx +kgx +aao +aao +aao +aao +aao +aao +aao +aao +aao +rIl +uSf +ldh +llS +suD +ijU +rIl +aao +aao +sZh +vlA +oMd +trW +ktE +rxh +rxh +aao +aao +aao +aao +mXw +nQl +sFW +hWM +rsv +rsv +rsv +rsv +sZh +wCo +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(56,1,1) = {" +aaa +aab +aao +aao +aao +wXg +wXg +jIQ +pXu +pXu +pXu +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +agm +agm +aao +aao +aao +aao +aao +aao +rlO +aeI +aeI +aiA +xrc +lZZ +oJh +ahP +ama +aeI +aeI +aeI +aoO +aiw +hxn +aiw +aiw +aiw +aiw +aiw +xIt +gyv +vsz +ngo +aqw +aye +alu +tIe +qXf +osm +ajx +ajx +aiw +aiw +aiw +aiw +aiw +aiw +ahQ +aeI +aeI +ajz +apt +aNk +aOy +aPF +aQL +aPF +aSH +aTS +aVb +aNo +aWx +aoH +aXH +aYc +asK +aZn +aZu +aZO +bbf +bbP +aZu +aZO +aZu +bed +aZu +aZu +bbO +aZO +aZu +aZO +aZu +beT +baz +ddu +aZu +aZu +asK +atA +bkz +atA +asK +axX +axX +axX +axX +boj +boG +boj +axX +jYF +sap +nVq +brI +sCt +azb +bpx +bpx +bpx +bpx +aao +aao +aao +euF +euF +euF +nTG +nEl +tsK +euF +njf +nTG +tsK +euF +euF +euF +euF +euF +dEV +euF +jWA +kgx +kgx +kgx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +hHb +tgF +gXs +jQS +fwO +fwO +rIl +aao +aao +rxh +eql +igM +wCo +wCo +wFO +fnO +aao +aao +aao +oqr +sHz +rcc +oZA +lhE +rsv +fnO +rsv +rsv +rsv +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(57,1,1) = {" +aaa +aab +aao +aao +aao +aao +iuu +pXu +pXu +pXu +pXu +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +agm +agm +agm +aao +aao +aao +aao +aao +aeI +aeI +aiz +ahP +gyp +iGp +gfo +aln +qEz +aeI +aeI +aeI +ajy +alu +alu +alu +alu +alu +alu +alu +alu +alu +rXc +alu +ayN +bNK +alu +alu +alu +alu +alu +alu +alu +alu +alu +alu +alu +alu +cQi +aCM +aBR +aMc +apt +aNk +aOy +aOB +aNo +aNo +aOy +aNo +aOB +aOB +aNm +aoH +cec +aXH +asK +aZn +aZu +aZu +aZu +bbO +bcx +bdi +aZu +aZu +aZu +beU +bfD +bfF +bfF +bgE +baF +aZu +baz +biL +aZu +aZu +aZu +aZu +aZu +beA +axX +bmf +bmf +bmf +bnQ +ygP +cud +bpe +axX +jYF +sap +nVq +tTI +sCt +azb +kdh +bpx +bpx +bpx +bpx +aao +aao +euF +euF +euF +bvw +euF +euF +euF +euF +euF +dEV +euF +euF +sSU +vCU +xgw +euF +euF +jWA +kgx +kgx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +rIl +uSf +olT +llS +suD +ijU +rIl +aao +aao +rxh +dHH +jVr +wCo +szw +wCo +wCo +aao +aao +aao +aao +roP +szw +wVQ +rxh +sZh +wCo +wVQ +rsv +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(58,1,1) = {" +aaa +aab +aao +aao +aao +aao +pXu +pXu +pXu +pXu +xBS +wXg +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +agm +agm +agm +aao +aao +aao +aao +aao +nzX +aeI +aiA +ahP +siK +fuj +nLm +alo +aeI +aeI +aeI +qEz +rvC +alu +aqq +xqh +mEx +gPI +ajk +gjB +cKH +alu +arl +ouo +vLg +sBE +qSg +sgI +alu +aBb +aBI +amj +aqC +aEw +wuz +pUn +aHo +alu +aHD +aBR +aBR +aMc +aoH +aNm +aOA +aPG +aQM +aQM +aSI +aOB +aNo +aNo +aNm +aoH +hmJ +aXH +asK +asK +atA +bdg +bbg +auk +asK +asK +bee +aZu +bex +bbe +bfE +aZu +aZu +aZu +bed +aZu +bfB +bbe +bbe +bbe +bfz +aZO +aZu +bli +bsX +bmg +bmO +vdl +vdl +rhP +tTI +sCt +axX +ayr +ayr +brg +tTI +sCt +axX +axX +axX +bpx +bpx +bpx +aao +aao +aao +euF +euF +euF +euF +euF +euF +euF +euF +euF +euF +sSU +kgx +kgx +kgx +vCU +vCU +kgx +kgx +kgx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +rIl +rKP +fxn +fxn +rIl +rIl +rIl +aao +aao +rxh +rxh +rDl +eql +wCo +dNd +wCo +aao +aao +aao +khR +ngJ +szw +sCj +rxh +sZh +nSP +wFO +rsv +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(59,1,1) = {" +aaa +aab +aao +aao +aao +aao +pXu +pXu +pXu +mDN +wXg +wXg +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +agm +agm +aao +aao +aao +aao +aao +aao +aeI +aeI +aiA +cFE +mbY +iGp +jjq +ikm +ahO +aeI +aeI +aeI +ajy +alu +fyO +aqr +aqr +asz +aqr +atR +eku +avu +fWg +sRX +euI +sib +gvC +azq +alu +aBb +aBb +mUE +lHr +dhB +ayO +ari +aFx +alu +aHD +aBR +aBR +aMc +apt +aNk +aOB +aOB +aOB +aRP +aOy +aOB +aOB +aNo +aNm +aoH +odw +aXH +asK +aZu +aZO +aZO +aZO +baz +bcy +asK +bee +aZu +baz +beU +bfF +bfY +bfY +bfY +baF +aZu +baz +aZu +aZu +aZu +bfB +bbe +bbe +blj +dvC +bmh +bmP +bnq +qGY +qGY +boH +bpf +bpz +lck +bqJ +tTI +brJ +niQ +bsN +bsZ +axX +bpx +bpx +bpx +aao +aao +aao +aao +njf +euF +euF +aao +aao +buz +ibZ +ibZ +ibZ +wog +trk +wog +wog +wog +trk +trk +trk +wog +wog +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +rIl +bRd +rQs +xDO +rIl +aao +aao +aao +wCo +wVQ +mPF +mPF +rxh +wCo +dNd +aao +aao +aao +aao +aao +aao +jEx +gyJ +rxh +pJX +wCo +xUS +wVQ +rsv +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(60,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +pXu +mDN +wXg +geC +hgT +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +agm +agm +aao +aao +aao +aao +agu +aeI +aeI +aeI +aiA +ahP +mbY +iGp +vOo +mON +hby +oTx +vWw +aeI +ajz +alu +aqs +aqs +vjR +asA +aqs +ona +aqs +bSL +avX +fqx +jqL +mVh +xje +awO +seK +seF +lMb +amj +aDD +rBA +rXZ +vBG +aHp +alu +aHD +tWA +aBR +aMc +apt +aNo +aNo +aNm +aQN +aPv +aSJ +aNm +aPv +aNm +aWB +aoH +aXH +aXH +mOc +aZu +aZO +aZO +xQb +bbR +bcz +asK +bdM +aZu +eRe +aZu +aZu +aZu +aZu +aZu +aZu +aZM +biq +biN +bji +aZu +baz +aZu +aZu +aZr +axX +bmi +ayr +ayr +ayr +ayr +boI +bor +ayr +tTI +tTI +tTI +brK +cla +tTI +sCt +axX +bpx +bpx +bpx +aao +aao +aao +aao +euF +aao +aao +aao +aao +wog +wog +wog +wog +jXX +aao +aao +aao +aao +aao +dxV +dxV +qgY +wog +hiY +dxV +aao +aao +aao +aao +aao +aao +aao +aao +aao +rIl +rIl +rIl +rIl +rIl +aao +aao +szw +wCo +wDa +jUY +jUY +jUY +jXP +owR +aao +aao +aao +aao +aao +aao +aao +aao +pJX +wCo +nSP +wCo +wVQ +rsv +rsv +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(61,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +pXu +pXu +smO +wXg +wXg +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +acp +acp +acp +acp +acp +aao +aao +aeI +aeI +eVb +aeI +aiB +ahP +siK +iGp +iGp +iGp +gLv +oFs +aeI +aeI +aoP +alu +aqt +arf +arP +asB +ato +atS +auH +avv +fxu +arR +aqw +mWJ +aqw +euk +alu +aBb +aBb +amj +eqz +aEx +aqw +vEP +aFx +alu +aHD +aBR +aBR +aMc +aoH +aVJ +aVJ +aoH +aQO +aOC +aSK +aNo +aVd +aOB +aoH +aoH +aXH +aXH +asK +asK +atA +bdg +bbg +auk +asK +asK +asK +asK +asK +asK +atA +atA +atA +asK +aZw +aZu +bir +biN +aZu +aZu +baz +aZO +aZu +aZr +axX +bmj +bmQ +tju +bnR +ewv +bYW +bpO +bpA +eSm +bqK +kNK +slG +bqN +tTI +bta +azb +nLw +bpx +bpx +aao +aao +aao +aao +aao +aao +aao +wog +oQI +wog +wog +wog +wog +aao +bRC +aao +aao +aao +aao +qUS +dxV +qgY +wog +jXX +dxV +dxV +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +wCo +nSP +bqc +jUY +jUY +tuN +vHw +vHw +aao +aao +aao +aao +aao +aao +aao +aao +wCo +wCo +wCo +wCo +wVQ +rsv +rsv +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(62,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +pXu +mDN +wXg +pMv +wXg +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +acp +adh +ady +adh +acp +aao +aao +cWD +aeI +ahi +aeI +aeI +aiA +sIp +cui +chz +mKo +geJ +hEr +ahO +aeI +ajz +alu +aqu +arg +arQ +uxa +aqu +cMU +kdo +alu +avZ +awN +eha +qBy +vVq +oXP +alu +aBd +aBb +amj +tZl +arW +aFz +aGv +aHq +alu +aHD +sWp +aBR +aMc +aME +aNq +aOC +apQ +aQP +aNo +aSL +aNo +aVe +aVM +aoH +poS +aXH +aXH +asK +aZr +aZQ +aZu +aZu +aIT +bcA +atA +qHZ +bef +bez +asK +aZu +aZu +aZu +asK +yaM +aZu +aZO +biN +aZu +aZu +bbO +aZO +aZu +aZs +axX +ayr +ayr +ayr +ayr +ayr +ayr +ayr +ayr +ayr +nPz +bri +nVq +bsm +nVq +btb +azb +nLw +bpx +bpx +aao +aao +aao +wog +wog +wog +wog +sAG +wog +oQI +wog +wog +wog +aao +aao +aao +aao +aao +aao +pYt +buz +wog +hiY +dxV +dxV +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +nSP +drq +hwe +jUY +jUY +jUY +vHw +aao +aao +aao +aao +aao +aao +vHw +aao +aao +wCo +nSP +wCo +wCo +wVQ +rsv +rsv +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(63,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +pXu +pXu +iuu +smO +wXg +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +asc +acp +adh +adh +adh +acp +aao +xul +til +aeI +aeI +gii +aeI +aiB +ahP +ahP +ahP +gJk +siK +gfo +aln +uAX +aoQ +alu +alu +nzc +amj +qXx +alu +alu +alu +alu +uWy +day +alu +alu +alu +alu +alu +alu +alu +alu +alu +alu +aFA +alu +alu +alu +aHD +aBR +aBR +aMc +aME +aNq +aNo +apQ +aQQ +aNo +aSM +aNo +aVf +aOB +aoH +kGr +aXH +aXH +asK +aZs +aZu +aZO +aZO +baz +aZu +bdj +aZO +bbO +beA +asK +aZO +aZO +aZu +asK +aZu +aZO +aZO +aZO +aZu +aZu +bbO +aZu +aZu +bdN +axX +bml +bmR +bnr +bnr +bok +bnr +bpi +mfQ +ayr +nPz +nVq +brL +nVq +nVq +btc +axX +nLw +bpx +bpx +aao +aao +aao +wog +wog +wog +wog +wog +wog +wog +icQ +wog +aao +aao +aao +aao +aao +aao +aao +buz +wog +wog +hiY +dxV +pYt +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +wCo +jWj +qVB +jUY +rsv +rsv +rsv +rxh +rxh +rxh +rxh +rxh +aao +vHw +vHw +rxh +owR +owR +owR +owR +rxh +rxh +rxh +rxh +rxh +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(64,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +pXu +pXu +pXu +iuu +iuu +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +dQR +dXK +asc +acp +adi +adz +adz +acp +aao +urp +dPW +aiw +aiw +aiw +ahQ +aeI +muo +ahP +tZs +ahP +dXr +hEr +ahP +aog +aoR +alu +orE +avw +avw +mio +nYl +amj +gwD +rPj +iyS +rNp +amj +ayh +ayH +avw +ueH +amj +ayh +avw +pYO +axz +aFB +lNr +aHr +alu +aHD +aBR +aBR +aMc +aoH +aVJ +aVJ +aoH +aQR +aNo +aSN +aNo +aVg +aNo +aoH +aXd +aXH +aXH +asK +aZt +aZu +aZO +aZO +baz +aZu +atA +aZO +beg +bbe +beV +baC +bfZ +bbe +beV +bbe +baC +bit +baC +bbe +bbe +bfE +aZu +aZu +bll +axX +bmm +bmS +tTI +tTI +iQC +boK +nVq +cKu +ayr +nPz +brj +brM +aMB +gwg +btd +axX +nLw +nLw +aao +aao +aao +giB +giB +giB +giB +giB +giB +giB +giB +giB +aao +aao +aao +aao +aao +aao +qUS +dxV +qgY +wog +wog +hiY +dxV +dxV +dxV +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +wCo +wVQ +jkO +rsv +fnO +jbU +rsv +rxh +rxh +rxh +fnO +smy +xhy +rxh +rxh +rxh +rxh +rxh +hKt +jAN +rxh +rxh +rxh +tCH +rxh +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(65,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +pXu +pXu +pXu +pXu +pXu +aao +aao +aao +aao +aao +aao +aao +aao +aao +dXK +hQO +aqL +asc +acp +adj +adA +adA +acp +acp +acp +acp +agy +agy +acp +ahR +aeI +aiA +qDU +mPR +nJt +siK +hEr +nPH +wNe +rcR +alD +ayR +vrd +arR +arR +hoI +amj +grM +awN +nVo +fXA +axy +atr +ayI +azt +tEA +mun +kjo +okB +atr +aEz +noR +aGx +fKg +alu +aHD +aBR +aBR +aMc +apt +aNq +aOB +aPI +aQS +aQS +aRR +aQS +aQS +aVN +aoH +aXH +aXH +aXH +asK +aZu +aZu +aZu +bbh +bbT +bcB +asK +aZu +beh +aZO +bdg +aZO +bbO +aZu +bdg +aZu +aZO +biq +aZu +aZu +aZM +aZu +aZu +aZu +blm +axX +mhZ +pgk +btu +bnS +tTI +boL +bpj +bpC +ayr +bqL +ayZ +ayZ +ayZ +axX +axX +axX +axX +axX +axX +axX +axX +axX +axX +axX +wwT +axX +axX +axX +axX +axX +axX +axX +axX +aao +aao +aao +aao +buz +wog +wog +wog +wog +sDC +dxV +dxV +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +vHw +jXP +opK +rsv +pJX +wCo +wCo +wVQ +cmG +opK +sZh +nSP +wCo +wVQ +rxh +fnO +rsv +rsv +rxh +yhN +rxh +rxh +rxh +rxh +vcA +hqC +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(66,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +pXu +iyY +pXu +pXu +pXu +pXu +aao +aao +aao +aao +aao +aao +aao +kfx +aqL +nnz +aqL +asc +acp +adk +adk +adk +ael +aeJ +afi +afO +adk +adS +acp +ahR +aeI +wUc +qcv +klN +pHQ +siK +gGf +wrV +udl +rcR +alD +ayR +aqw +arR +myM +jYL +amj +ogE +ecC +lKW +qru +ayN +arR +arR +azu +sox +amj +aBJ +aCB +aDG +aEA +axB +wpv +rXh +alu +aHD +aBR +sWp +aMc +aoH +aNr +aNo +aOB +aOB +aNo +aOy +aNo +aOB +aVO +aoH +asK +jUd +asK +asK +aZu +aZu +baD +aZu +aZu +bcC +bdj +aZu +aZu +aZu +asK +aZw +baz +aZu +asK +aZu +aZu +baz +aZu +aZu +aZu +aZu +aZu +aZu +bln +axX +ayr +ayr +ayr +bnT +bnT +ayr +ayr +ayr +ayr +cla +btr +lck +kVT +ayZ +bsP +ayZ +ouh +lck +jXJ +btr +sDO +pOg +saX +pVv +saX +eIN +lck +btr +ayZ +btr +kVT +axX +axX +aao +aao +wog +wog +wog +wog +wog +wog +wog +jXX +dxV +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +rsv +rsv +rsv +dhS +wCo +dNd +dNd +wVQ +rxh +rsv +sZh +wCo +tqi +rxh +rxh +owR +rsv +rsv +rxh +fHF +miD +omw +rxh +pmN +dUj +sZh +nSP +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(67,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +wXg +cGZ +iyY +pXu +pXu +pXu +aao +aao +aao +aao +aao +dQR +kfx +aqL +aqL +aqL +asc +acp +aaX +adB +adk +adk +aeJ +adS +aeJ +adS +adk +acp +ajx +ahQ +aeI +aiB +ahP +ahP +fYQ +gfo +ppZ +ppZ +uFE +alD +uJO +ari +nDw +xOi +eVL +aBe +qRI +pvl +ono +kdw +amj +ayi +opr +azv +aAu +alu +amj +aCC +alu +alu +alu +alu +alu +alu +aHD +aBR +aBR +aMc +apt +aNs +aNo +aOB +aQT +aRQ +aSO +aQS +aQS +aQS +aoH +aHF +aHF +aHF +asK +aZv +aZR +baE +aZR +bbU +aZR +asK +atA +atA +asK +asK +atA +bga +atA +asK +aZu +aZu +baz +aZu +cHy +aZu +aZu +ian +bkn +blo +axX +bmn +bmT +ayr +nzN +tTI +boM +ayr +bpD +btr +bqM +rnV +nVq +tTI +nIi +bte +nIi +btu +gwg +gwg +gwg +tTI +btu +gwg +gwg +tTI +btu +btu +ndw +fUp +nVq +sCt +wpn +axX +aao +wog +wog +wog +wog +wog +trk +trk +jXX +dxV +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +rsv +rsv +oIc +vHw +ciY +xRl +sbk +wVQ +rxh +rxh +rxh +owR +rxh +vhF +fnO +fnO +fnO +rxh +rxh +aao +aao +rxh +rxh +rxh +rxh +sZh +nSP +nSP +aao +aao +aao +aab +aaa +aaa +aaa +"} +(68,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +pMv +wXg +wXg +wKx +pXu +pXu +pXu +aao +aao +aao +dQR +dQR +hQO +aqL +agq +ahe +ahS +acp +acp +acp +acp +acp +acp +acp +acp +eKe +azJ +acp +acp +ajx +aiw +aiw +aiw +ahQ +iZp +hUu +mON +orc +rvp +apE +awN +avy +kWE +fPi +rfL +wnZ +wMn +cMB +kKW +ecC +alu +alu +ayJ +uBI +alu +alu +aBK +hMW +aDH +arX +tdo +duG +raq +alu +aHD +aBR +aFL +aMc +apt +aNt +aOB +aNo +aNo +aRR +aoH +apQ +apQ +apQ +aoH +aHF +aHF +aHF +asK +aZu +aZu +baF +aZu +aZu +aZu +aZu +qHZ +hzy +atA +beW +aZu +baz +bgr +asK +bYa +aZu +baz +asK +dot +dot +aZu +asK +asK +asK +axX +bmn +bmV +bns +hhK +tTI +boN +ayr +bpE +nVq +cla +nVq +nVq +gfX +axX +axX +axX +iig +iig +iig +mqh +fEv +iig +iig +ayZ +fEv +ueL +ueL +ayZ +axX +fEv +ayZ +axX +axX +aao +wog +wog +wog +wog +jXX +dxV +dxV +dxV +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +rsv +rsv +rxh +qvI +gzG +wCo +wCo +aao +aao +aao +aao +aao +fnO +tRV +nSP +wCo +wCo +wCo +aao +aao +aao +aao +aao +rsv +rsv +xgi +sZh +nSP +nSP +aao +aao +aao +aab +aaa +aaa +aaa +"} +(69,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +hgT +wXg +cGZ +pXu +pXu +pXu +rgp +dQR +dXK +dQR +agq +ahe +ahe +ahS +acp +acp +acp +acC +acC +acC +acr +acT +afj +acp +llj +oPT +aia +acp +acr +acr +acr +acr +acr +qty +hIk +dUs +dUs +vDw +apF +bXC +bVq +rIM +cls +awO +iaD +auM +cMB +kKW +awP +amj +rhE +ayK +azv +awk +alu +asq +lyG +tIT +awN +awN +tgN +fLd +alu +aHD +aBR +uuB +aMc +apt +aNu +aNo +aNo +aNo +aRR +apQ +aGV +aVh +aVP +aoH +aHF +aHF +wZv +asK +aZw +aZu +aZO +aZO +aZu +bbi +aZO +aZu +aZu +atA +bei +bfG +baz +bei +asK +aZw +aZu +baz +asK +aZu +aZO +aZO +bko +aZO +aZu +axX +bmn +bmV +ayr +bnV +tTI +eYy +ayZ +bpF +slG +bqN +nVq +nVq +uDA +bsP +bsP +axX +hYB +iAI +iAI +dsy +iSz +hYB +iAI +wVB +kka +pog +iAI +wVB +ayZ +ndw +sCt +axX +aao +aao +wog +wog +wog +jXX +dxV +dxV +dxV +buz +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +nSP +wVQ +rsv +rsv +sZh +rtV +wCo +mKM +aao +aao +aao +aao +aao +lYi +lYi +lYi +aao +aao +aao +aao +aao +aao +aao +aao +fpa +pCR +rem +pxv +xZm +nSP +nSP +aao +aao +aab +aaa +aaa +aaa +"} +(70,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +wXg +wXg +wKx +pXu +pXu +tnG +hQO +aqL +lOL +asc +acp +acp +agy +acp +kkF +flu +acD +adm +acC +vlI +acC +acC +xLo +agA +adk +aib +acp +aiX +ajB +aiX +aiX +acr +amd +tJl +acp +acp +acp +sXd +sgd +oEY +aGy +sIM +vZE +amj +auL +mNZ +scP +awP +alu +ayk +jYw +nuq +awl +alu +aBM +iMC +aqw +nFm +aFE +arR +bEa +alu +aHD +aBR +aBR +aMc +apt +aNv +aOD +aPJ +aQU +aRS +aSP +aSO +aVi +aVO +aoH +aHF +aHF +aHF +asK +aZx +aZx +aZx +bbi +bbi +bbi +bbi +aZx +aZx +asK +beX +bfH +bgb +bei +asK +bdg +gkD +biw +asK +eLq +eWP +aZu +asK +bkB +blp +axX +ayr +ayr +ayr +guY +tTI +eYy +ayZ +nPz +tTI +tTI +tTI +dsm +mSS +mij +kVT +dhN +duA +iNR +ykR +iaC +iSz +duA +iNR +iaC +kka +duA +ykR +iaC +ayZ +hhK +sCt +axX +aao +wog +qgY +wog +hiY +dxV +pYt +dxV +dxV +qgY +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +szw +wVQ +lom +vpu +dZO +ndy +wCo +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +vHw +cfr +jCq +wCo +nSP +nSP +nSP +aao +aao +aab +aaa +aaa +aaa +"} +(71,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +geC +wXg +wKx +pXu +pXu +hgO +aqL +nnz +aqL +asc +acp +fGz +acC +acU +acC +acC +acC +acD +acD +acr +aeL +acC +acp +agB +adk +aic +acp +aiX +afS +afS +afS +acr +doN +iJO +aer +afS +cLZ +acp +amj +amj +amj +alu +alu +alu +gNv +awO +kNs +vaR +amj +ayl +ayL +azx +aAv +alu +bPl +aCF +ari +aEC +maW +arR +wWX +alu +aHD +aBR +aBR +aMc +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aHF +aHF +aHF +asK +atw +atw +atw +asK +bdg +bcD +asK +atw +atw +asK +asK +asK +asK +asK +asK +fwD +fwD +tuu +asK +asK +asK +asK +asK +asK +asK +axX +dWl +btr +btr +bnW +slG +ksO +bpk +bpM +slG +slG +slG +slG +slG +dWd +sCt +dhN +duA +iNR +iNR +iaC +iSz +duA +iNR +iaC +kka +duA +iNR +iaC +ayZ +hhK +sCt +axX +aao +wog +wog +wog +hiY +dxV +dxV +dxV +dxV +qgY +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +szw +wVQ +eGb +wUo +xrO +xya +nTF +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +vHw +eql +wCo +wCo +nSP +lsq +nSP +aao +aao +aab +aaa +aaa +aaa +"} +(72,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +wXg +wXg +wKx +dQR +kfx +idn +gdK +aqL +aqL +asc +acq +acz +acC +acC +acC +lff +acC +acD +acD +acr +acr +acr +acp +agB +adk +aic +acp +aiZ +afS +afS +afS +alp +oOL +vXt +anx +afS +akM +acp +agY +eMP +dtP +aDO +arl +amj +ouo +awO +ufx +diJ +alu +ayk +pSc +itN +awk +alu +aBO +awN +vtW +lES +aDJ +kOt +aBP +alu +aHD +aBR +aBR +aMd +aMg +aNw +aNw +wuP +rTs +aMg +xLv +aMg +sHL +aNw +aNw +dnz +bhU +aHF +aMg +aNw +aNw +aNw +aMg +aMg +aNw +aNw +aNw +aMg +aMg +aMg +aMg +aMg +aMg +qxD +cOc +kfg +nKZ +mEg +aMd +bjx +bjx +bjx +bjx +bjw +axX +lmi +nVq +tTI +tTI +tTI +cKu +ayZ +bpH +kmx +gwg +gwg +brO +gwg +cla +gdx +dhN +nug +yjV +ykR +iaC +iSz +duA +iNR +iaC +kka +duA +ykR +iaC +ayZ +hhK +sCt +axX +uVn +wog +wog +wog +hiY +dxV +dxV +dxV +buz +wog +wog +wog +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +muP +hnh +xkq +nXC +nny +gpB +tEc +muP +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +rxh +xAv +wCo +nSP +wCo +nSP +nSP +aao +aao +aab +aaa +aaa +aaa +"} +(73,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +nlB +dQR +dQR +dQR +idn +nnz +aqL +lue +asc +acr +acz +hFl +acC +qkI +acC +acM +acD +acD +acr +acT +afj +acp +agB +ahk +aic +acp +aja +ajC +ake +rat +acr +dTF +qNX +aer +afS +aoT +acp +tLO +uVw +cgB +oNW +ruZ +atV +pPP +lXC +ono +awO +amj +noN +aqw +azv +awl +alu +wQk +awN +asq +asq +aFF +tSY +tSY +alu +aHD +aKk +aBR +aBR +vPL +cRy +vPL +xlT +aBR +swl +aFL +aBR +aBR +aBR +aBR +aMc +aHF +aHD +wZW +aIp +aBR +aBR +aVo +aIn +aIn +aIn +aIn +aIp +iZm +aBR +aBR +aBR +aBR +aBR +gIi +xsn +vkR +phk +aIn +bjy +bjy +bjy +bjB +blq +axX +bmp +nVq +tTI +bnX +tTI +aLP +ayZ +bpI +cKu +axX +axX +axX +axX +uaS +axX +axX +axX +duA +iNR +iaC +iSz +nug +rUN +oIK +kka +duA +iNR +iaC +ayZ +hhK +sCt +axX +dQw +wog +qgY +wog +wog +ibZ +ibZ +ibZ +wog +wog +wog +wog +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +xkq +xkq +nXC +guM +nny +guM +ybk +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +wVQ +ykW +rOK +wCo +wCo +nSP +nSP +nSP +aao +aao +aab +aaa +aaa +aaa +"} +(74,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +dQR +dQR +dQR +dQR +hFV +aqL +aqL +lbh +asc +acs +tGP +acC +acD +acD +acC +acC +adC +skx +aen +adN +adN +afQ +agC +ahl +aid +acp +acr +acr +acr +acr +acr +pXm +vXt +acp +acp +acp +acp +oIb +ttb +hwC +asF +arl +amj +cLo +awO +mCo +awS +alu +alu +ayN +cGR +alu +alu +amj +aCG +alu +alu +alu +alu +alu +alu +aHD +aBR +aLc +aBR +vPL +aJk +jyS +aBR +dUi +aBR +aBR +uqh +emi +jGS +aBR +aMc +aHF +aHD +aBR +sWp +aBR +aLd +aIn +aIn +aIn +bdk +aWJ +aBR +aBR +aBR +aBR +aBR +aBR +aLd +wDQ +pgC +iww +cdI +aIn +bjy +bjy +bjy +bkp +blq +axX +bmq +nVq +bnt +tTI +nVq +boR +ayr +nPz +sCt +axX +brn +jDT +vTt +cla +btr +jTk +dhN +duA +ykR +iaC +pWs +lCt +lCt +lCt +jxA +duA +ykR +iaC +ueL +nzN +sCt +tcP +dQw +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +xkq +xkq +nXC +tnd +tnd +guM +ybk +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +pXB +yhN +sZh +wCo +tqi +eql +nSP +aao +aao +aao +aab +aaa +aaa +aaa +"} +(75,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +dQR +dQR +dQR +dQR +tnG +nlB +nlB +dQR +dAg +acq +ibx +acD +acF +bDY +acC +upd +acC +acU +acr +acC +acC +acp +agz +ahm +ahj +acp +jWR +cGi +kCR +aWj +biA +ame +ahj +aer +afS +bNE +acp +anZ +anZ +alu +alu +alu +alu +sxR +awO +awa +awT +dOl +gwP +wLw +qzt +ilZ +qPQ +rmS +mPP +nsc +aED +mZt +aFG +izT +alu +aHF +aFM +aFM +aFM +aFM +aFM +aOE +rSM +whL +aFM +aFM +aFM +aFM +aFM +aFM +aHF +aUi +aHF +aFM +aFM +aFM +aFM +aFM +aFM +aFM +aFM +aFM +aFM +aHC +aBR +uwB +aBR +aBR +aYK +aIn +aIn +oYO +vrD +aIn +bjz +bjz +bkp +bjA +blq +axX +trr +tTI +tTI +nVq +nVq +wyF +ayZ +bpH +cKu +axX +bro +brP +slG +bqN +btt +uGs +gmm +duA +iNR +iaC +gUD +btr +jxS +btr +oWp +duA +iNR +iaC +ueL +nzN +cKu +tcP +rvS +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +xkq +xkq +nXC +qFg +irM +guM +eGa +xkq +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +szw +yhc +sxs +vPP +sZh +wCo +wVQ +rxh +nSP +aao +aao +aao +aab +aaa +aaa +aaa +"} +(76,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +dQR +dQR +tnG +dQR +dQR +dQR +gOd +acq +ifh +acD +acD +tkI +acC +acM +acC +igD +acr +acr +acr +acp +agz +ahm +aie +acp +eFr +aiX +qQl +iis +afS +ame +ahj +anx +afS +akM +acp +eKm +rbV +rbV +rbV +vxv +alu +rTC +awO +fvr +pJZ +tns +aqw +cqp +jEX +arR +kxa +vMc +avx +oJF +vMc +vMc +hzo +owc +alu +aHF +aHF +aHF +aHF +aHF +apC +apC +apJ +apJ +apJ +apC +apC +apC +apC +apC +apJ +lrs +apJ +apC +apC +apC +apC +apC +apC +apC +apC +wRl +aHF +aHD +aBR +aBR +aBR +aBR +aFL +aVo +aIn +pjh +dEW +aWJ +bjA +bjA +gLa +bjA +blq +axX +bms +gwg +bnu +bnY +hcH +boS +ayZ +btK +tTI +bqP +fXm +wMM +gVl +tTI +nVq +qUF +dhN +duA +ykR +iaC +dBU +guu +axX +cNb +nuz +duA +ykR +iaC +ayZ +hhK +cKu +axX +rvS +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +xkq +lvh +vQZ +rtR +guM +vBy +xkq +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +szw +yhc +wVQ +rxh +sZh +wCo +wVQ +lZV +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(77,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +dQR +dQR +kfx +asc +acp +nXS +nyZ +acC +acM +acD +acV +acC +aeL +acr +aeK +afj +acp +agz +ahn +ahj +acp +eFr +aiX +aiX +iis +afS +amg +aRv +aer +afS +aoT +acp +aqM +gdK +qHy +aqL +xHr +wCU +qmp +diR +ono +iVz +wiJ +ckr +awP +kKW +xpE +aBf +avy +axB +aDM +iXo +aEE +aGB +aHA +alu +aHF +aHF +aHF +aHF +apC +apC +aOF +aPK +aQV +aRT +aof +aTV +mIc +tap +aof +aNK +wdn +bdo +aof +cXG +aOO +aOO +aOO +aOO +cXG +aOO +apC +apC +aHD +aBR +aBR +aBR +aBR +aBR +aVo +aIn +iBi +rWg +aIn +bjB +bjA +bjA +bkC +blq +axX +axX +axX +ayr +ayr +ayr +ayr +ayr +bpK +bqk +axX +wiK +fgE +sap +tTI +btt +nmU +dhN +duA +iNR +iaC +xXq +btu +uJj +gwg +voG +duA +iNR +iaC +ayZ +hhK +sCt +axX +rvS +wog +wog +trk +trk +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +xkq +xkq +rcN +rcN +tcq +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +szw +nSP +wVQ +rxh +sZh +wCo +wVQ +lZV +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(78,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +dQR +elh +kfx +asc +acq +hGD +fXg +fuB +acC +vPZ +acD +acD +usq +aem +acC +acC +afP +agz +ahn +waZ +acp +jTa +raU +raU +woK +fMJ +amg +aic +acp +acp +acp +acp +aqM +rVY +aqL +gxo +kQD +mia +pkd +lfY +awa +oyM +kuA +rqj +gcI +awa +aAw +qKW +xUc +dCD +xUc +tNx +tNx +alu +alu +alu +alu +aKm +aHF +aHF +uRE +aGD +aMf +aPL +aMf +aMf +aof +aTV +aTV +din +aof +aWH +aOM +aUb +asT +aZC +aZC +baG +aZC +baG +aZC +aOO +bdO +apC +aHD +aBR +aBR +aBR +sWp +tWA +lBc +eRI +mxC +biV +sIY +bjC +bjB +bkq +bjH +blq +axX +bmt +btr +fOK +pKP +egL +ayZ +bpl +bpL +cKu +axX +jAJ +brR +nnU +nVq +btu +gHV +dhN +duA +ykR +iaC +pWs +lCt +lCt +lCt +jxA +duA +ykR +iaC +ayZ +nzN +sCt +axX +rvS +wog +jXX +pYt +dxV +qgY +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +sqj +kNc +jcR +jrD +ydd +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +uDn +vTh +rxh +sZh +fRW +vHw +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(79,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tjX +dQR +vdz +asc +acp +fGz +mdu +ven +fuB +acC +dXL +adD +adD +acr +aeL +acC +acp +rHe +dzD +gYI +acp +afS +afS +afS +afS +afS +amg +aic +aer +afS +eLp +acp +aqM +bBE +aqL +aqL +lgr +alD +hEP +jFq +wiM +lXC +aFH +qyh +aFH +rSm +ity +nOK +fVz +fCQ +ayV +hNh +iQf +mLw +tVg +tVg +alu +aof +ydE +aof +apC +aNy +aOG +aMf +aQW +aRU +aof +aTU +lhB +aTV +aof +aYU +aOM +aUb +asT +aZB +aZT +aIY +bbj +caN +kCL +aOO +aOO +apC +aHD +aBR +aBR +aBR +aBR +aBR +aVo +aIn +bhF +oxP +aIn +bjD +bka +bjA +bjH +blq +axX +bmu +nVq +bnw +bnZ +boq +azE +hhK +cla +bql +axX +axX +axX +axX +tzJ +axX +axX +axX +duA +iNR +iaC +iSz +hYB +iAI +wVB +kka +duA +iNR +iaC +ayZ +nzN +sCt +axX +aao +aao +aao +dxV +aao +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +guM +fGN +jrD +nXC +ncv +guM +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(80,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gdK +lOL +dQR +iXx +asc +acp +acp +agy +acp +acp +acX +acp +adE +adO +acr +acr +acr +acp +agz +lFx +nMQ +aiC +ajb +ajE +ajE +ajE +ajb +ahm +aic +anx +afS +akM +acp +aqM +aqL +rDe +aqL +asc +alD +lqd +dDx +arR +aqw +axA +hDe +arR +qXK +xGp +awO +cSD +rPc +kLG +khT +iTD +awV +awQ +atr +pGS +aKo +aKo +aSX +aMF +lVO +aKo +aKo +aQX +aRV +aof +aTV +gWU +aVS +aof +aXg +aOM +aUb +aof +aZC +aZU +aZC +aZU +aZC +bcF +aOO +aOO +apD +aHD +aBR +aBR +aBR +aBR +bhi +bhi +bhI +oqY +gUA +aIn +bjD +jdQ +bjA +bjH +blr +axX +aLJ +bmW +bnx +boa +bor +ayZ +hhK +cla +bZJ +btr +btr +jMn +btr +tTI +kVT +dhN +hYB +ojD +ykR +iaC +iSz +duA +iNR +iaC +kka +duA +ykR +iaC +iig +nzN +sCt +axX +aao +aao +aao +aao +aao +aao +wog +wog +wog +aao +aao +wog +wog +wog +wog +wog +wog +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +nny +guM +ybk +nXC +guM +gpB +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(81,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aqL +aqL +lbh +dQR +ags +alF +alF +alF +aao +acp +acp +acp +hfC +adP +aeo +aeM +afk +acp +agz +neD +duw +aiD +ajc +aif +aif +aif +alr +ocL +anb +aer +afS +aoT +acp +aqM +bBE +aqL +aqL +asc +alD +vvx +avy +gvU +avy +axB +ayn +ayQ +xxN +hGH +rmW +qsl +rIH +fTw +iVW +oFQ +wlr +axB +drI +ayN +aKp +aQW +aTb +kmm +xBo +aMf +aMf +aQY +aMf +aSQ +tJn +pyU +tJn +cJa +iZc +aOM +aOM +aYN +aZC +aZC +aZC +aZC +aZC +bcG +aOO +aOO +apD +aHD +aBR +aBR +mbt +bhi +bhi +bhi +raQ +gtt +xPT +dGw +bjD +bka +bjA +bjH +blr +axX +bmw +bmX +bAo +tTI +bos +boU +slG +cZB +cOa +lEi +lEi +tTI +nVq +tTI +sCt +dhN +duA +iNR +iNR +iaC +iSz +duA +iNR +iaC +kka +duA +iNR +iaC +ayZ +hhK +sCt +axX +aao +aao +aao +aao +aao +aao +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +guM +guM +ybk +nXC +guM +nny +guM +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(82,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aqL +bBE +lbh +dQR +kfx +aqL +arp +acP +aao +aao +aao +acp +acp +acp +acp +acp +acp +acp +acp +acp +acp +acp +aer +ajF +aer +acp +als +mGS +anc +acp +acp +acp +acp +smH +aqL +aqL +aqL +hGv +alu +alu +pzC +iev +vOg +alu +alu +ayR +uKC +xjR +awT +bSL +pqK +aPn +kGi +heR +imP +iCQ +iCQ +alu +aof +ydE +aof +apC +aNB +aOG +aPM +aQZ +aRX +aof +mrH +aVj +mrH +aof +uKH +aOM +aUb +aof +aOO +aOO +aOO +aOO +aOO +bcH +aOO +aOO +apC +aHD +aBR +aBR +tHl +bhi +dbi +dex +dex +fyo +xvW +aIn +bjD +bka +bjA +bjH +blr +axX +bmx +rdr +bnz +bob +gdx +ayZ +bcg +cla +bpm +izb +rYr +tTI +iQC +nVq +vWm +dhN +duA +iNR +ykR +iaC +iSz +duA +iNR +iaC +kka +duA +ykR +iaC +ayZ +hhK +sCt +axX +aao +aao +aao +aao +aao +aao +aao +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +wog +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +guM +ybk +nXC +guM +guM +guM +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(83,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aqL +aqL +aqL +lbh +dQR +bGC +aqL +arp +acP +acP +aao +aao +aao +aao +alF +buB +acp +afl +nMG +nMG +nMG +acp +aiE +kcR +wfS +dfA +aer +agB +ahn +bff +aer +afS +bNE +acp +aqM +aqL +aqL +aqL +cBq +alu +pIl +pix +kMt +wWn +qoQ +alu +klE +uKC +keC +sII +apE +vJx +ayV +azv +heR +tzh +aGw +kLs +alu +aKq +aHF +aHF +apD +aNC +aMf +aPN +aRa +aof +aof +aof +aof +aof +aof +aNL +aOM +aUb +aof +aof +asT +asT +asT +aof +sRy +aof +aof +apC +wxo +aBR +aBR +bhi +bhi +dbi +qby +stZ +qeC +izJ +eRI +ofX +bjy +bkr +bjy +vvT +axX +ayr +ayZ +ayZ +ayr +ayr +ayr +ktY +cla +vCf +mlV +lqo +nVq +eGM +btu +dyH +axX +nug +rUN +rUN +oIK +iSz +nug +rUN +oIK +kka +nug +rUN +oIK +ayZ +slC +sCt +axX +aao +aao +aao +aao +aao +aao +aao +aao +wog +wog +wog +wog +wog +wog +wog +wog +wog +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +tRI +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +jrD +jrD +jrD +moE +guM +guM +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(84,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aqL +nnz +aqL +rVE +dQR +dXK +hQO +aqL +arp +pmf +acP +acP +myJ +acP +acP +acP +asc +acp +afm +dGs +bWw +jDG +acp +xYy +ktt +bFd +gHC +aer +alt +ahn +ahj +anx +afS +akM +acp +aqM +aqL +aqL +aqL +asc +alu +oji +odN +aqw +lid +tbS +alu +hik +hYx +oyb +lhu +apF +atr +bYx +arU +bgJ +rgf +arR +awO +alu +aHF +aHF +aHF +apD +aND +aMf +aMf +aZS +aof +aSR +aTY +aTY +aTY +aWC +aXj +aOI +aYh +oDW +aRd +bcI +bcJ +aRd +aVl +qoN +bdo +apD +bhU +wxo +aBR +aBR +bhi +bhi +dbi +qby +qby +tOJ +fOV +hip +nIx +qqK +rIu +xsH +pak +bsX +bmy +bmZ +bmZ +mPK +lck +boV +slC +bpN +bqo +bqo +sBm +tTI +wFL +axX +axX +axX +ayZ +ayZ +ayZ +ayZ +fEv +ayZ +sNP +ueL +gPh +sNP +ayZ +ayZ +axX +fEv +ayZ +axX +axX +aao +aao +aao +aao +aao +aao +aao +wog +wog +wog +wog +wog +wog +wog +wog +wog +jrD +jrD +jrD +jrD +jrD +jrD +phi +jrD +jrD +iQG +phi +jrD +jrD +jrD +jrD +iml +oxp +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +rcN +rcN +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(85,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aqL +aqL +wWE +dQR +eWv +fPe +fPe +wss +akP +fPe +fPe +aus +acP +acP +acP +acP +asc +acp +xyu +jYd +agD +mXm +acp +pTl +tOg +knL +tEG +akQ +jNf +lFe +ahj +aer +afS +aoT +acp +aqM +aqL +aqL +aqL +asc +alu +oji +cPE +jgg +afX +tbS +alu +syf +avy +aAz +jFs +tNx +ekl +avy +aGy +ljx +avy +axB +jSL +alu +aHF +aHF +aHF +apD +aNE +aOH +aPO +aQZ +aof +aSS +aTZ +aVk +bMa +aof +mEH +aOM +aYi +xBn +nZD +aPS +aOM +aOM +aOM +aPS +bdl +apD +bhU +aHD +aBR +aBR +eTj +bhi +dbi +kjY +dZL +olK +fOV +xNI +tKq +ykB +vNk +ykB +eeR +xDW +bmz +bna +bmz +boc +bmz +xDW +eSm +jXf +eSm +ebr +bpO +bpf +tTI +nIi +gZc +nIi +btr +lck +lck +lck +tTI +lck +lck +ouh +tTI +btr +btr +slC +fUp +nVq +sCt +wpn +axX +aao +aao +aao +aao +aao +aao +aao +aao +wog +wog +wog +wog +wog +wog +wog +jrD +jrD +jrD +jrD +jcR +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +phi +phi +phi +phi +jrD +phi +yfz +phi +phi +sus +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(86,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +wWE +nlB +dQR +dQR +nZB +pRP +iRf +akh +mhV +oMf +pRP +aWy +acP +vxS +acP +jeO +asc +acp +afn +ezz +eRL +afS +acp +jtH +afT +ajG +gHC +aer +agB +jKm +ahj +acp +acp +acp +acp +aqM +aqL +aqL +aqL +asc +alu +gts +omV +uZo +wIR +tbS +alu +alu +ovH +alu +alu +alu +anZ +anZ +anZ +alu +alu +alu +alu +alu +aHF +aHF +aHF +apC +aOM +aOM +aPP +aRb +aof +aof +aof +aof +aof +aof +mEH +aOM +vpx +aFd +khP +aZW +aOK +bbk +aOK +aPS +vGA +apD +aHF +aHD +aBR +aBR +aBR +bhi +bhi +auW +unC +wup +izJ +eRI +ofX +bjy +bjy +bjy +ofp +axX +axX +axX +axX +axX +axX +axX +axX +axX +axX +wYE +lTM +bqM +pMi +ayZ +bsP +ayZ +btu +iFa +snv +btu +gFR +tvH +gML +tvH +gML +gFR +btu +btu +ayZ +btu +gdx +axX +axX +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +wog +wog +wog +jrD +jrD +jrD +jrD +phi +jrD +rnc +rnc +rnc +rnc +rnc +rnc +rnc +rnc +rnc +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +phi +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(87,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tjX +dQR +dQR +fsy +aaB +pRP +xMz +hFv +hFv +kAs +oMf +aWy +acP +acP +acP +bJQ +aao +acp +fgu +oRa +vlu +ahp +acp +tFL +wRo +qTw +gHC +aer +dHs +ajL +cVS +any +aoh +aoU +acq +aqM +aqL +psP +aqL +asc +alu +oji +sRs +dIn +enR +tbS +alu +eMN +cya +nYz +alu +aHF +aMg +aMg +aMg +aBS +aMg +aMg +aMg +aMg +aMg +aMg +aHF +apC +aOM +aOM +aPP +aQZ +aof +aST +aRd +aVl +aRd +bcJ +aSW +aOM +aYk +dBm +pxH +aZX +aof +aof +aof +bcK +aof +aof +apC +aHD +aBR +aBR +aBR +aVo +aIn +xPg +bhL +wup +izJ +aIn +giY +bjy +bjy +bjy +blu +bjx +bmA +bjx +bjx +bjx +bjx +ixy +vbO +rvG +axX +axX +bru +bqM +sDZ +axX +axX +axX +axX +axX +axX +axX +axX +axX +axX +axX +axX +axX +axX +axX +axX +axX +axX +axX +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +bzo +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +cOl +rnc +rnc +rnc +rnc +rnc +rnc +hAj +rnc +rnc +jrD +jrD +jrD +jrD +jrD +rnc +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(88,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +qMS +dQR +kfx +fsT +aaB +oMf +dkY +qDZ +hJH +lqp +iRf +aWy +acP +acP +jeO +aqL +aao +acp +oyW +afT +wdV +gIW +acp +aiJ +afT +ikq +rEe +aer +riL +mvP +pMc +aer +aoi +aoV +acq +aqM +aqL +aqL +asa +hGv +alu +jRH +avB +pOt +sxg +bOR +uST +cSB +qMJ +sCT +alu +aHD +aBR +aBR +aBR +aBR +aBR +aBR +aBR +uwB +aBR +aFL +aMc +apC +aNG +aOI +aPQ +aRc +aof +aSU +aUa +aXM +aOK +aOK +aOK +hkY +aYl +aYS +aOM +aZX +aof +aOO +bbV +bcL +aOO +bdP +apC +aHD +aBR +ouD +aBR +aVo +aIn +xPg +aIn +wup +izJ +aIn +xtB +bjy +bjy +bjz +bjy +bjy +bmB +bjA +bjA +bjA +bjA +bjA +bjA +jxV +nWE +axX +brv +bos +szy +vbp +vbp +vbp +vbp +tub +axX +bjY +rNy +bjA +bjA +bjH +bjy +azO +azO +azO +azO +azO +azO +azO +azO +azO +azO +azO +azO +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +sqj +jcR +jrD +jrD +rnc +vqY +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +uXW +aao +aao +cOl +vqY +aao +cOl +jrD +jcR +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(89,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tjX +kfx +aqL +nZB +oMf +dkY +qDZ +qDZ +cnG +iRf +aWy +acP +jeO +aqL +aao +aao +acp +nkB +rXJ +agH +uZJ +aih +vmt +ahr +lYc +akm +fyC +lAV +wAy +ahj +acp +aer +aer +acp +aqM +aqL +arp +acP +asc +alu +alu +alu +alu +alu +alu +alu +alu +alu +alu +alu +aHD +aBR +aBR +aBR +aBR +aBR +tWA +aBR +aBR +aBR +aBR +aMc +apC +aNH +aof +aof +aof +aof +ykb +bdl +aof +aof +kRK +kRK +aof +aof +aYT +aOM +aZX +aof +bbl +bbW +bcM +aof +aof +apC +aHD +aIm +aBR +aBR +aVo +aIn +xPg +aIn +wup +izJ +aIn +giY +bjy +bjy +bjA +blv +bkp +bjA +bjA +bjA +bjA +mjD +bjA +rNy +bjA +blr +axX +brw +btu +pRG +brO +bti +idM +ndw +bor +axX +bjY +bjA +dcD +bkC +bjy +btD +azO +ydn +ydn +ydn +ydn +epe +kdr +kdr +kdr +kdr +kdr +qPT +aao +aao +aao +aao +aao +aao +aao +jrD +vqY +ibP +tRI +jrD +oxp +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(90,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tjX +kfx +aqL +nZB +pRP +iXs +scK +scK +oUY +oMf +wmN +acP +agq +aao +aao +aao +acp +qdL +xQQ +eWk +egZ +acp +aiK +rVw +ajJ +akn +acp +agz +amp +and +lvu +aoj +aoj +apH +kVR +aqL +arp +acP +ags +alF +alF +alF +alF +alF +axF +asf +alF +akw +alF +alF +axW +aBR +ixB +aBR +aFL +aBR +aBR +aBR +aBR +aBR +aBR +aMc +apD +aNI +aRd +bcI +bcJ +aRY +aSW +bdl +kRK +aVT +aWD +aWD +aXN +kRK +aWH +aOM +aZY +aof +bbm +aJb +bcN +aof +wfk +apC +aHD +aIn +aIm +aBR +bhi +bhi +auW +dgy +umN +abN +dgy +ofX +ssI +bkp +bjA +bjA +bjA +bjA +bjA +bjA +bjA +bjA +bjA +bjA +tyu +blq +axX +axX +axX +axX +axX +axX +axX +maD +btH +axX +bjY +bjA +bkC +bjy +bjy +bjy +azO +gKJ +ydn +ydn +uqg +epe +kdr +kdr +kdr +kdr +kdr +qPT +aao +aao +aao +aao +aao +aao +bye +ibP +ibP +tRI +rnc +rnc +vqY +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +cOl +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(91,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +qMS +qMS +vBI +aaB +pRP +oMf +iRf +oMf +oMf +pRP +wmN +acP +asc +acp +acp +acp +acp +acp +acp +uLn +acp +acp +acp +aer +sEu +aer +acp +alv +amq +fSg +aeJ +adS +adk +aeJ +aqH +aqL +arZ +amD +acP +acP +opg +acP +acP +acP +aqO +aqO +acP +acP +azK +acP +aBR +aBR +aBR +aBR +aBR +aBR +aBR +aBR +aBR +aBR +aBR +aMc +apD +aUd +aXM +aPS +aOM +aOK +aOK +aUc +aYm +aVU +aOM +aOM +xbZ +kRK +aNL +aOM +aZX +aof +fhy +aZA +bcN +kIv +aOO +apC +aHD +beY +aIp +aBR +bhi +bhi +wGr +aBR +bhF +oxP +aIn +bjD +bjy +bjA +bkq +bjA +tZj +bjA +bjA +bjA +bjA +bjA +bjA +bjA +bjA +blu +bjx +bjx +bjx +bjw +ayr +tdN +maH +slC +bor +ayr +bjY +bkr +bjy +bjy +bkd +azO +azO +azO +xYa +gKJ +ydn +epe +eYC +kdr +kdr +kdr +kdr +aAp +aAp +aAp +aAp +aAp +aAp +aAp +byf +byf +aAp +aAp +aBy +aBy +aAp +aAp +aAp +aAp +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +gWv +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(92,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tjX +kfx +lEW +pJt +pJt +gPc +gPc +gPc +pJt +uIz +acP +asc +acp +adQ +aep +adQ +afr +afU +adS +adS +aer +adS +adS +ajL +adS +acr +agz +ahn +aid +acp +acp +acp +acp +aqH +aqL +asa +vxS +acP +aTy +acP +acP +acP +rPq +aqO +aqO +hso +acP +aAA +acP +aBR +aBR +aBR +aBR +aBR +aBR +aBR +aBR +aBR +iZm +aBR +aMc +apC +aof +aof +aPS +aRe +aof +aof +aof +aof +aVV +aOM +aOM +aOM +aYm +aOM +aOM +aZX +aof +aof +aof +aof +aof +fST +apC +aHD +aWJ +aBR +tWA +aBR +aBR +aBR +aBR +jYb +igb +aIn +bjD +bjy +bjB +bjA +bjA +bjA +bkC +bkr +bkr +bkr +bkr +bkr +vPr +bjA +bjA +mjD +bjH +bjy +blu +ayr +bmq +bqo +nVq +btJ +ayr +bjw +bun +btD +btD +blq +vpY +vYp +vpY +wIE +bvH +ihW +kGn +kdr +kdr +kdr +kdr +kdr +aAp +bwK +bxc +bxc +bww +bxK +bxc +byg +bxd +kGw +aBE +bzp +ebZ +aAp +bAf +bAv +bAN +aCe +bBb +bBq +bBq +bBJ +aCe +bCa +bCo +bCx +bCx +bCx +aCe +dyv +bDk +dyv +aCe +dyv +bDk +dyv +aCe +bvO +bEf +jJB +aCe +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +sus +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(93,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +lwR +lwR +lwR +lwR +aao +aao +aao +aao +dQR +nlB +nlB +vBI +arp +acP +acP +acP +acP +opg +asc +acp +adR +aeq +aeN +aeq +adk +adk +adS +aii +adS +adS +ahm +adS +akR +agz +amr +qky +aer +afS +cLZ +acp +aqH +arp +agq +ahe +ahe +ahe +ahe +ahe +ahe +ahe +ahe +qEm +ahe +ahe +auE +ahe +aFM +aCN +aCN +aCN +aFM +aCN +aHC +aBR +aBR +aBR +aBR +aMc +apD +aNK +aXL +aPS +aOM +aof +aTa +aTa +aof +oWe +aOM +aXl +aXP +aof +aNL +aOM +szi +aof +aNQ +aOO +aOO +aOO +aOO +apC +aHD +aWJ +aBR +ixB +aBR +aBR +aBR +bhO +rre +kRT +gsb +sNJ +bGP +iEw +rIu +rIu +bGP +rIu +rIu +ftt +rIu +rIu +bGP +rIu +kTG +rIu +qMu +onc +kjU +pak +bsX +nVq +nVq +nVq +uBi +bua +buo +buo +buJ +buJ +buo +bvz +sbn +bvz +uzb +sXf +vDK +qLV +qLV +qLV +qLV +bwc +qLV +bwG +bwL +bxc +bxd +bxB +bxc +bxU +bxc +byw +bxd +aBE +bzp +ebZ +aAp +bAg +bAh +bAg +aCe +bBc +bBr +bBs +aKi +bBS +aKi +aKi +aKi +aKi +aJK +aCe +dyv +dyv +dyv +aCe +gdN +dyv +dyv +aCe +dyv +bEg +bEk +bEr +phi +sus +jrD +tRI +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(94,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +uut +eCM +ylx +aao +aao +aao +dQR +dQR +kfx +arp +acP +acP +aao +aao +acP +asc +acp +adS +adS +adS +adk +adk +adk +adS +aer +wer +adS +ahm +adS +acr +agz +ahm +oCa +anx +fps +hAl +acp +aqH +arp +asc +amn +amV +amV +amn +amV +amV +amn +amV +amV +amn +anK +per +amn +amn +amn +amn +amn +amn +amn +aHD +aBR +aBR +aBR +aBR +aMc +apD +aNL +aOM +aPS +aOM +aRZ +aTa +aTa +aRZ +aVU +aWE +aXm +aXQ +kRK +aYV +aOM +szi +aof +aOO +bbY +bcO +aOO +aOO +apC +aHD +aIn +aIm +aBR +aBR +uuB +uuB +bhP +oYO +fia +xNI +uDM +dFr +vKg +uDM +uDM +uDM +rSf +uDM +vKg +uDM +gBv +pND +vKg +vKg +uDM +uDM +uDM +vKg +fNT +maD +nVq +nVq +iQC +cla +maD +bjw +bjw +bjx +bjx +jwV +vpY +xnm +vpY +lGl +bvQ +eAU +tUe +kdr +kdr +kdr +kdr +kdr +bwH +bwM +bxd +bxd +bxC +bxc +bxV +byh +byx +byg +aBE +bzp +bzw +aAp +bAh +bAh +bAh +aCe +bBc +aKi +aKi +bBK +aCe +bCb +qTC +pvg +aKi +aPZ +aCe +dyv +dyv +dyv +aCe +dyv +dyv +dyv +aCe +dyv +bwj +bwx +vvj +tRI +jrD +jrD +jcR +jrD +iRG +jrD +jrD +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(95,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +cUN +fkD +eCM +rvB +aao +tjX +dgQ +cpw +dQR +hQO +arp +acP +acP +acP +aao +acP +asc +acp +adT +adT +adT +adT +afV +adT +adT +aer +sbc +adS +ajL +akp +acr +alw +ams +iDu +kjc +afS +pQb +acp +aqH +aqL +asc +amn +vti +atY +atY +atY +atY +atY +atY +atY +atY +azM +atY +amn +atn +atn +atn +atn +atn +amn +wxo +aBR +aBR +tWA +aBR +aMc +apC +aNM +aOM +aPS +aUb +aof +nSp +czS +aof +qzk +aWF +aof +kRK +aof +aYU +aOM +aZX +aof +bbn +bbZ +bcP +bdq +aJT +apC +aHD +aIn +aIn +aIm +aBR +aBR +aBR +bhP +lQb +oXv +sWp +bjH +bkd +bks +bks +bks +tmh +bkb +bkb +bkb +bkb +bkb +bks +bks +bkb +bkb +bkb +bkb +bkb +bkb +ayr +btj +nVq +nVq +bor +ayr +bjw +bjY +bjy +bjy +blq +vpY +pok +vpY +gjH +aOj +uqg +epe +kdr +kdr +kdr +kdr +kdr +aAp +bwN +bxe +bxd +bxB +bww +bxV +bxc +byy +byH +aBE +bzq +ebZ +aAp +aBy +bAw +aBy +aCe +bBd +aKi +aKi +bBK +aCH +bCc +cvi +bCy +eHA +bCM +aCe +aCH +vty +aCH +aCe +aCH +vty +aCH +aCe +aCH +vty +fin +vvj +jcR +jrD +jrD +jrD +oxp +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(96,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +fBJ +mzC +rSE +lSA +eCM +rvB +aao +xqW +vHU +dQR +hQO +aqL +aqL +lUa +hso +acP +acP +acP +asc +acp +acr +aer +aer +aer +acp +acp +acp +acp +akr +adS +ajL +akq +acr +acr +mPm +acr +acp +acp +acp +acp +aqH +aqL +asc +amn +aty +atY +aoF +aty +atX +aAB +aty +ajl +atY +aty +atY +amn +aua +aua +aua +aEK +aFN +amn +aHD +aBR +aBR +aBR +aBR +aMc +apC +aNN +aOM +aPS +bdl +aof +sLS +aUe +aof +aVX +aWG +kRK +aNK +mST +iDT +nuw +aZX +aof +aof +aof +aof +aof +aof +apC +beB +beZ +bfI +bfI +bfI +bfI +bfI +bhQ +aFM +aCN +aCN +aCN +bhU +awp +awp +axr +axr +axr +awp +gad +bnA +awp +awp +awp +awp +awp +awp +awp +awp +awp +ayr +btk +nVq +nVq +bor +ayr +bjw +bjY +bjy +bjy +blu +azO +azO +azO +lms +ihW +ydn +epe +kdr +kdr +kdr +kdr +kdr +aAp +bwO +bxf +bxq +bxD +bxD +bxD +bxf +bxf +byI +aBE +bzp +bzx +aAp +bAh +bAh +bAO +aCe +bBe +aKi +aKi +bBK +aCH +bCd +qTC +jgw +eEm +aKi +aCL +bDb +aKi +bDb +aCL +bDb +aKi +bDb +aCL +bDb +aKi +vvj +mUy +jrD +jrD +jrD +jrD +oxp +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(97,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +fBJ +hos +btZ +tHH +aao +psI +dQR +kfx +aqL +aqL +aqL +arp +acP +acP +acP +acP +asc +acp +acl +aes +aeO +adW +afW +aer +ahs +adS +ahk +adk +ajL +wBP +acr +adS +ajL +adk +anB +alx +alx +acr +aqH +aqL +asc +amn +atY +atY +jpT +aty +atB +cHI +aty +vti +mhF +azN +atY +amn +aua +aua +aua +aua +aws +amn +xfM +aBR +aBR +aBR +aBR +aMc +apD +aWH +aOM +aPS +aRh +aof +aof +aof +aof +kRK +kRK +aof +aWH +xej +ole +eSN +mYp +baI +aYO +bca +bcQ +bdr +nky +apC +beC +aNw +aNw +aNw +aNw +aHF +reB +bhR +bhU +bhU +bhU +bhU +cZW +awp +bkD +blx +aZV +bmC +bnb +bnB +bmF +bku +bmF +bmF +bpP +fBo +nEP +brx +brU +aCO +ayr +btk +nVq +btA +bor +ayr +bjw +bjY +bjz +bjz +bjz +bjz +azO +meT +vrt +ydn +ydn +xhn +kdr +kdr +kdr +kdr +kdr +aAp +aAp +aAp +bxr +aBy +aBy +aBy +aAp +aAp +aAp +aAp +bzp +ebZ +aAp +bAh +bAx +bAO +aCe +bBd +aKi +aKi +bBK +aCH +bCe +aKi +wPk +qTC +aKi +kyz +aKi +aKi +aKi +bDr +aKi +aKi +aKi +lUd +aKi +qTC +aKi +mUy +jrD +jrD +jrD +jrD +oxp +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(98,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tjX +kfx +aqL +nnz +aqL +arp +acP +acP +acP +acP +asc +acq +acv +pjD +aeP +afs +adW +acp +adS +adS +adk +adk +ajL +aks +acr +alx +amu +anf +adk +alx +alx +alZ +aqH +aqL +asc +amn +atZ +amn +amn +amn +amn +amn +amn +amn +amn +amn +atZ +amn +aBT +amn +amn +amn +aFO +amn +aHD +aBR +eiK +aBR +aBR +aMc +apD +aNL +aOM +aPV +aRi +aXL +aXL +aUf +aVm +aOL +aOL +aOL +aYW +xej +tBD +eSN +shP +upV +baJ +bcb +bcR +bcc +bQe +apC +aTh +aIn +aIn +aIn +aKt +aMc +aHF +tHB +aVp +vIQ +vIQ +aVp +vIQ +bku +bmF +wtC +blT +bmD +pPo +bpp +boe +awp +awp +awp +bpQ +wvK +bqT +wvK +wvK +wvK +bsY +slC +nVq +nVq +bor +ayr +bjw +bjY +bkq +bjA +bjA +bjA +azO +meT +meT +fZm +ydn +kGn +eYC +kdr +bvZ +kdr +kdr +aAp +bwP +bDi +bxs +bxE +cqj +bxW +byi +cqj +byJ +aAp +bzp +bzy +bzQ +bAh +bAy +bAP +aCe +bBc +aKi +bBr +bBK +aCH +bCf +aKi +xZf +qTC +pvg +bCV +qTC +qTC +qTC +nXw +qTC +qTC +qTC +nUK +qTC +aKi +aKi +vvj +tRI +jrD +jrD +jrD +oxp +jrD +jcR +jrD +jrD +jrD +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(99,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tjX +ciG +vBI +aqL +aqL +aqL +lUa +acP +myJ +acP +asc +adG +adW +tFH +akA +adW +adW +agJ +adS +adk +adS +aje +ajM +adS +acr +cLq +lym +alx +anD +cLq +cLq +acr +aqK +arq +asd +asI +ayY +ayY +ayY +ayY +ayY +ayY +axG +ayY +ayY +kxr +asJ +asJ +aua +asJ +aDQ +eYH +aws +amI +aHD +aIm +aBR +aKr +aBR +aMc +apC +aUd +aYL +aOK +aOK +aOK +aOM +aOK +aOK +aOK +aYL +aXM +aOK +wHx +eoU +eSN +bdl +aof +bbo +bcc +bcS +bcc +bQe +apD +aTh +aIn +aKt +aIp +aBR +aMc +aHF +bhU +bhU +bhU +bhU +bhU +bhU +awp +bkE +bly +bly +bly +wvK +fBo +boe +ayF +boW +lTi +bpR +bnF +bnF +bry +bnF +bof +dvC +eSm +eSm +btB +btN +ayr +bjw +bjY +bjA +tYm +bjA +bjA +azO +nJu +meT +vrt +ydn +jgK +kdr +kdr +kdr +kdr +kdr +aAp +bwP +bxh +bxt +bxF +bxF +bxF +bxv +byz +byK +aAp +bzp +hRc +aAp +aAp +aAp +aAp +aCe +bBc +bBs +aKi +bBK +aCH +bCg +bCp +xZf +qTC +qTC +bCW +bDc +qTC +bDc +kxi +bDc +qTC +bDc +bDS +wni +aKi +bDc +fin +ibP +jcR +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(100,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tjX +tjX +kfx +aqL +aqL +aqL +arp +acP +acP +acP +asc +acq +jAR +aeu +adc +afs +adW +acp +adS +adk +aiO +bPY +fRF +akt +acr +alz +amw +anD +cKy +gcL +fKC +amb +aqM +aqL +ase +asJ +asJ +aua +aua +avC +aua +asJ +eGB +ayo +pYL +azP +asJ +aua +asJ +asJ +asJ +awn +aws +amI +wxo +aIn +aIm +aBR +aLd +aMc +apC +aof +aON +aof +aof +aof +aON +aof +aof +aof +aON +aof +aof +aYo +rpI +qyi +bdl +aof +bbp +bcc +bcT +bcc +aYO +apD +aTh +aWJ +vem +aBR +aBR +aMc +aHF +aMg +lID +lID +aMg +bhU +rLO +awp +bkG +wvK +wvK +tKr +vin +fBo +boe +ayF +orZ +lTi +bpS +wvK +wvK +brz +brV +boe +ayr +ayr +ayr +ayr +ayr +ayr +bjw +bjY +bjA +bjA +rNy +bjA +azO +meT +meT +meT +fZm +epe +kdr +kdr +kdr +kdr +kdr +aAp +bwP +bxi +bxu +bxu +bxu +bxX +byj +byA +byK +aAp +bzp +bzw +aBE +bAi +bAz +bAQ +aCe +bBf +bBt +bBt +bBL +aCH +aPg +uGz +taf +uGz +bCN +aCL +bDd +aKi +bDd +aCL +bDd +aKi +bDd +aCL +bDd +aKi +bDd +aCe +aao +cOl +rnc +rnc +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aab +aaa +aaa +aaa +"} +(101,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tjX +tjX +hQO +aqL +aqL +aao +aqL +lUa +acP +acP +asc +acp +yfg +jGn +adW +adW +adW +aer +adS +adS +aiO +mwI +vFe +akt +acr +alA +amx +adS +anD +alA +alA +jJU +vkj +aqL +ase +amn +amn +amn +amn +avD +awn +nkm +vFr +nkm +ayX +azQ +aAC +aAC +aBU +ayY +aAC +aAC +aFP +aGF +aHD +aIn +aIn +aKl +aIn +aMc +apC +aNO +aOO +aPW +aof +bdm +aOO +vOs +aof +jAm +aOO +hxs +aof +aYp +aof +aWH +aUb +aof +bbq +bcd +bcU +bds +aYO +apC +jUK +aIn +aKl +aIm +aBR +aMc +aHD +dPJ +gpR +gpR +dPJ +nvn +bkf +awp +bkH +blA +wtG +jRn +bnd +wtG +wVw +ayF +boW +lTi +bpo +fBo +bqV +brA +brW +urn +awp +bjw +bjx +bjx +bjx +bjw +bjw +bjY +bjA +bjA +bjA +bjA +azO +meT +vfI +wZC +ydn +bvW +kdr +kdr +kdr +kdr +kdr +aAp +bwQ +bxj +bDi +bDi +bxL +bDi +byk +bDi +byL +aAp +bzp +bzz +bzR +bAj +rTq +rTq +aCe +aCe +aCe +aCe +aCe +aCe +aCL +aDj +bCz +aDj +aCL +aCe +aCH +vty +aCH +aCe +aCH +vty +aCH +aCe +aCH +vty +aCH +aCe +aao +aao +aao +aao +uXW +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aab +aaa +aaa +aaa +"} +(102,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +nEH +dQR +hQO +aqL +aqL +aqL +aao +aao +arp +cuW +acP +asc +acp +acp +acp +acp +acp +acp +acp +aht +adS +aiO +cgz +osi +akt +acr +adS +ahm +adS +adk +adk +adS +acr +aqM +qAF +asc +amI +aty +atY +amn +asJ +aua +eoB +pYL +pdt +aua +rst +asJ +aBi +asJ +aua +aua +aua +asJ +cgt +aHD +aIn +aIn +aIn +aIn +aMc +apC +aNP +aOO +aOO +aof +bdn +aOO +aOO +aof +aNP +aOO +qXi +aof +aYq +aof +aWH +aUb +aof +xKG +aTa +bcV +bdt +baJ +bej +mDi +eBq +tcY +rBT +aBR +aMc +fHw +gpR +gpR +gpR +gpR +wBu +aHF +awM +awM +awM +ayc +ayc +awM +awM +awM +awM +awp +awp +yhV +bnA +awp +awp +awp +awp +awp +bjY +bjA +bjA +bjA +caD +bjw +bjY +bjA +uVC +bjA +bjA +azO +sED +ihW +ydn +gKJ +epe +kdr +kdr +kdr +kdr +kdr +aAp +bwR +bxh +bxv +bxG +bxF +bxF +bxv +byB +byM +aBy +bzp +bzA +aBE +byM +ycP +rTq +aBE +dmO +bww +bww +hkv +aCL +bCi +bCq +xZf +bCq +bCO +aCe +bDe +fWw +fWw +aCe +dPs +fWw +fWw +aCe +fWw +bDe +fWw +aCe +aao +aao +aao +aao +uXW +aao +aao +jrD +jrD +jrD +jrD +aao +aao +aao +aab +aaa +aaa +aaa +"} +(103,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tjX +kfx +aqL +aqL +aqL +aqL +aqL +aao +arp +acP +acP +ags +alF +alF +alF +alF +alF +ahS +acr +ahu +adS +aiO +wnf +ajQ +akt +acr +adk +amy +ang +anE +aok +adk +alZ +aqM +jdN +asc +amI +atB +atY +auU +asJ +aua +aua +aua +aua +asJ +azS +amn +amn +amn +cgt +eqr +amn +amn +amn +wxo +aIn +aJm +aKt +aKt +aMc +apC +aNQ +aGG +aPX +aof +aNQ +aOO +aUg +aof +aNQ +aOO +aXn +aof +vkL +aof +uBr +pMl +aof +bbr +bQe +aYO +fPB +bQe +bek +gxQ +xNI +rJm +qnr +aBR +aMc +fHw +gpR +gpR +gpR +gpR +wBu +aHF +awM +bkI +bkI +bkI +bkI +bkI +bkI +bkI +awM +boX +bpn +bpp +fBo +bnb +brB +bkN +bsB +awp +bjY +bjA +bjA +bjA +blq +bjw +bjY +bjA +bjA +bkd +azO +azO +azO +xYa +uqg +aOj +epe +kdr +kdr +bwa +kdr +kdr +aAp +bwS +bxi +bxu +bxu +bxu +bxu +bxu +byC +byN +byZ +cqj +bzB +aBQ +aNx +bAA +bDi +aBE +hHG +bBv +bww +bBN +aCL +bCj +aKi +bCA +bCG +bCP +aCe +fWw +fWw +fWw +aCe +fWw +fWw +bDe +aCe +fWw +fWw +fWw +aCe +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jcR +aao +aao +aao +aab +aaa +aaa +aaa +"} +(104,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +dQR +dQR +vBI +aqL +aqL +aqL +aqL +aqL +arp +acP +acP +acP +acP +acP +acP +acP +acP +asc +acr +ahu +adS +aiP +adS +ajL +ajj +acr +adk +amz +anh +anF +aol +adS +acr +aqM +vxS +asc +amn +atz +atY +amn +pvj +asJ +awY +kKA +aua +asJ +azT +amn +nTv +qYB +aBk +aBk +aBj +rKy +amn +wxo +aIp +aBR +aBR +aBR +tkx +apC +apJ +apJ +apJ +apC +apJ +apJ +apJ +apC +apJ +apJ +apJ +apC +apC +apC +kmm +mWg +apC +apC +apC +apC +apC +apC +apC +jde +bfb +bhF +xGl +aIm +aMc +aHD +dPJ +gpR +oOw +dPJ +aMc +aHF +awM +bkJ +bkJ +bkJ +bkJ +bne +bkJ +bkJ +awM +boY +bpo +bpU +bqv +bpU +wvK +wvK +bsC +awp +bjY +bjA +uVC +bjA +blq +bjw +bjY +bjA +bjA +blq +vpY +jBq +vpY +wIE +gKJ +ihW +epe +kdr +kdr +kdr +kdr +kdr +aAp +bwT +bxk +bxw +bxH +bxM +bxM +byl +cqj +byO +aBy +bzp +bzC +aBQ +ofJ +aOP +aOP +aBE +hHG +bww +bww +bBO +aCL +bCk +bCr +taf +bCr +bCQ +aCe +fWw +bDl +fWw +aCe +fWw +cxi +fWw +aCe +dPs +cxi +bDe +aCe +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +aao +aao +aao +aab +aaa +aaa +aaa +"} +(105,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +nEH +dQR +dQR +dQR +vBI +aqL +gdK +aqL +aqL +arp +acP +acP +lPg +mtS +mtS +mtS +lPg +acP +asc +acr +acr +acr +acr +adS +ajL +acr +acr +acr +acr +acr +acr +acr +acr +acr +aqM +acP +gOd +amn +aty +atY +amn +asJ +awo +efT +qlW +ayp +asJ +azU +amn +aBk +aBW +aCR +aBW +aEM +eWB +amn +aHD +aBR +aBR +aBR +aBR +aMd +aMg +aMg +aMg +xRb +rTs +aMg +xLv +aMg +aMg +aMg +aMg +aMg +aMg +aMg +axW +sfw +rBT +aMd +aMg +aMg +aMg +aMg +aMg +aMg +beG +aIn +tFv +iww +uIP +bhU +aHF +aCN +lRC +bSy +aCN +aHF +aHF +awM +awM +awM +ayc +ayc +awM +awM +awM +awM +uTO +bpo +bpV +bkU +bqX +wvK +brY +bsD +awp +bjY +bjA +bjA +bjA +blq +bjw +bjw +bkb +bkb +bjw +vpY +jBq +vpY +eYC +kip +cnF +eYC +kdr +kdr +kdr +kdr +kdr +aAp +aAp +aAp +aAp +aAp +aAp +aAp +aAp +aAp +aAp +aAp +bzr +bzC +aBE +aBQ +aBQ +aBQ +aBE +aBE +bBx +aBE +aBE +aCL +aCL +aDj +bCz +aDj +aCL +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aCe +aDY +aDY +aDY +aDY +aDY +aDY +aao +aao +jrD +jrD +jrD +aao +aao +aao +aab +aaa +aaa +aaa +"} +(106,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +lOL +dQR +dQR +cPg +dQR +nlB +vBI +aqL +aqL +arp +acP +acP +rZU +khK +taV +dVM +rVT +acP +ags +alF +alF +ahS +acr +adS +ajL +akc +akS +adW +amA +ani +aom +aoX +apb +acr +aqM +jdN +asc +amn +tmH +atY +amn +asJ +awo +axa +krH +ayq +ayY +azV +amn +aBl +aBX +aBk +aBk +amn +amn +amn +aHD +aBR +aBR +aBR +ndD +aBR +aBR +ndD +aBR +dYO +aBR +aBR +aBR +aBR +aBR +nVV +emi +aVo +aIn +aWJ +cRy +bhF +nfP +aBR +vem +aVo +aIn +aIn +aWJ +aBR +tWA +bfc +tFv +xsn +fXF +bhU +aHF +aHF +nzx +aHF +aHF +bhU +bhU +awp +bkK +blB +tIv +nwB +bnf +bnf +bnf +bou +qHc +bpo +bpU +bkU +bpU +wvK +wvK +bsE +awp +bjY +bjA +bjA +bjA +blu +bjx +bjx +bjx +bjx +bjw +vpY +jBq +vpY +lGl +vcd +bvQ +kdr +kdr +kdr +kdr +kdr +kdr +aBv +bwU +bwU +bwU +bwU +aBA +oKc +bxY +bxY +bxY +bza +xpl +qZo +bzT +bzT +bAB +sEi +bxY +bxY +xpl +bxY +bxY +bBT +bCl +bzT +qZo +bxY +aDv +bCX +bCX +bDm +bCX +bDs +bCX +bCX +iDW +bDT +bDW +bDW +bDW +bDm +bCX +bCX +bCX +bCX +bDm +aDY +aao +aao +jrD +jrD +jrD +jrD +aao +aao +aab +aaa +aaa +aaa +"} +(107,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aqL +lOL +dXK +dQR +dQR +dQR +bGC +aqL +aqL +arp +acP +acP +rZU +khK +ahS +dVM +rVT +acP +acP +acP +acP +asc +acr +adS +ajR +acr +akS +alB +alB +alB +alB +alB +adW +acr +aqM +oEq +asg +amI +atB +atY +auU +asJ +awo +dJc +axK +ayp +asJ +jph +amn +aBm +mBc +aBk +aBk +aEN +ibV +amn +aHD +aBR +aBR +aBR +aBR +swl +aBR +aBR +tWA +aBR +daY +aBR +aBR +aBR +aLd +aKl +aKl +aIn +aIn +aIn +aKl +fsO +oxP +aKl +aKl +aIn +aIn +aIn +aIn +aKl +aKl +aIn +tcy +oxP +aIn +aMc +aHF +aMg +ghz +lID +aMg +aHF +bhU +awp +bkK +bBg +wvK +wvK +wvK +bnE +wvK +wvK +boZ +bpo +bpV +bkU +bqX +fBo +brZ +bsF +azG +btn +bjA +bjA +bjA +bjA +bjA +bjH +bjy +bjy +blq +vpY +jBq +vpY +jJG +ipA +ydn +xhn +kdr +kdr +bvZ +kdr +kdr +bwI +bwV +bxl +bwV +bwV +bwI +csC +bxA +bxo +byP +bzb +bzb +bzD +bzU +bxn +bAC +oqM +bAZ +bzb +bzb +bAC +bxn +bzb +bzb +bzb +bzD +bxn +bCR +bCY +bBU +bBU +bDn +qwx +qwx +bDG +fLA +bCY +xzs +bEh +bEh +bEh +bEw +bEA +bEh +bEJ +bCZ +aDY +aao +aao +jrD +jrD +jrD +jrD +aao +aao +aab +aaa +aaa +aaa +"} +(108,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aqL +aqL +aqL +lbh +dQR +dQR +kfx +aqL +aqL +arp +acP +acP +rZU +ahS +ahS +qse +rVT +acP +acP +acP +acP +asc +acr +adS +ajS +akv +akT +alC +amB +alC +alC +aon +aoY +acr +vkj +acP +ash +amI +aty +atY +amn +asJ +awo +rVM +tQV +ayp +asJ +azW +amn +aBn +jOj +aBk +aBk +amn +amn +amn +aHD +aBR +aBR +aBR +aBR +aBR +aBR +aBR +vPL +aBR +vPL +aBR +aBR +emi +ttn +mns +eBq +eBq +eBq +htb +htb +iea +cIE +htb +htb +htb +eBq +htb +htb +eBq +htb +htb +xsn +bXq +aWJ +aMc +aHD +dPJ +pld +pld +dPJ +nvn +bhU +awp +bkL +qHc +fBo +bly +bng +bnF +bof +bov +whE +bpp +bpU +bqw +bpU +brC +nlJ +bsG +azG +btn +bjA +itF +bjA +bjA +bjA +bjH +bjy +buc +blu +azO +azO +azO +mMC +gKJ +ydn +epe +kdr +kdr +kdr +kdr +kdr +aBv +bwW +bwW +bxx +bwW +aBA +ufB +bya +bya +byQ +xpl +bya +bya +bya +bya +iDL +wfx +bBa +bxo +bBA +qZo +bxo +bBV +xpl +bCs +xpl +xpl +lGt +ioS +ioS +ioS +ioS +bDt +sbQ +ioS +vFS +sbQ +bDX +aDX +aDv +aDv +aDv +aDv +aDX +bEK +bCZ +aDY +aao +aao +jrD +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(109,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aqL +gdK +aqL +lbh +dQR +dQR +hQO +aqL +aqL +arp +acP +acP +ase +ahS +ahS +ahS +aqM +acP +acP +vND +acP +asc +aiQ +adS +adk +acr +adW +alB +alB +alB +alB +alB +aoZ +acr +aqN +acP +ash +amn +amn +amn +amn +vAt +awo +sva +awZ +ayp +asJ +azP +enJ +hHl +aBW +aBk +aBk +aEN +ozO +amn +aHD +aBR +aBR +aBR +aBR +aBR +aBR +aBR +vPL +vPL +qhY +aBR +aLc +aBR +bhF +xsn +xNI +xNI +xNI +nRM +xNI +hIu +xNI +xNI +bXz +xNI +xNI +lNq +ntc +xNI +xNI +xNI +xNI +eak +aIp +aMc +fHw +pld +pld +pld +pld +wBu +aHF +awp +bkM +fBo +blV +bmF +bnh +wvK +wvK +bly +bpa +bpq +wvK +wvK +fBo +wvK +qqw +bsG +azG +bjY +bjA +bjA +rNy +bjA +bjA +bjH +bub +bub +buc +buc +azO +meT +vrt +ydn +ydn +epe +kdr +kdr +kdr +kdr +kdr +aBv +aBv +aBv +aBv +aBv +aBv +aBv +aBv +aBv +byR +bxY +aBv +aBw +aBw +aBw +bAD +aBv +aBv +bya +bya +qZo +kGm +kGm +bya +bya +bya +bya +aDv +bCZ +bDf +bCZ +bCZ +bCZ +bDz +bDH +ctT +sbQ +knN +aDv +xfW +pbs +bEx +xfW +aDv +bEK +bEO +aDY +aao +aao +jrD +jcR +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(110,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aqL +aqL +aqL +lbh +dQR +kfx +aqL +aqL +aqL +arp +acP +acP +rZU +ahS +ahS +khK +rVT +acP +acP +acP +acP +asc +aeJ +adS +adk +akc +akS +agt +amC +alB +anH +agt +apa +acr +ajT +jdN +asc +amI +aty +atY +amn +asJ +asJ +axd +axd +asJ +aua +azY +qus +aBp +rvX +xsy +aBk +amn +amn +amn +rUU +aBR +uqh +aBR +aBR +aBR +aBR +vPL +ndD +rvr +tRM +aBR +emi +aBR +jYb +jxp +aIn +aIn +aIn +aIn +aIn +aIn +aIn +aKt +aKt +aKt +aIp +aBR +aBR +aBR +aYK +aKt +aKt +aIp +aBR +aMc +fHw +pld +pld +tCQ +kDv +wBu +dyX +awp +qeK +ccP +blW +ccP +bpo +bnH +yar +box +yar +nzB +nzB +eKU +yar +yar +aZJ +bsG +awp +bjY +bjA +bjA +nYV +bjA +asb +vEU +gke +buc +bud +bvk +azO +meT +meT +vrt +ihW +epe +kdr +kdr +kdr +kdr +kdr +aBw +bwX +aMG +bxy +bxI +bxO +bxy +byn +aBv +byR +bxY +aBw +jnR +lst +lst +bAE +bAR +aBv +aBA +aCh +cOJ +aCh +aBA +aBA +aCh +aCh +aCh +aBA +aBA +aBA +aDX +aDX +aDX +aDX +aDX +aDX +bDU +knN +aDX +aDX +aDX +aDX +aDX +aDX +bEK +bCZ +aDY +aao +aao +jrD +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(111,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +nnz +wWE +dQR +dQR +kfx +aqL +aqL +aqL +arp +vRb +acP +rZU +ahS +khK +taV +rVT +acP +acP +acP +acP +asc +acr +ajj +adk +akc +akS +agO +agO +adW +akS +agO +aCk +acr +aqM +acP +asc +amI +atB +atY +auU +asJ +asJ +aua +aua +awn +aua +ltK +amn +aBq +gat +szZ +aBk +aEN +nOe +amn +aHF +aFM +aFM +goa +aCN +aFM +aCN +rSM +aOR +aFM +oLa +aCN +aHC +aBR +bhF +bXq +aIn +aXo +aKt +aKt +aKt +aKt +aIp +aBR +aBR +tWA +aBR +aBR +aBR +aBR +aBR +aBR +aBR +aBR +vem +aWW +aHD +dPJ +kDv +cpo +dPJ +aMc +aHF +awp +awp +awp +awp +awp +bnj +awp +awp +ayF +ayF +ayF +xpG +awp +ayF +ayF +ayF +awp +awp +bMf +bkr +bkr +bkr +bkr +bkr +buc +buc +buc +buu +ejp +azO +meT +meT +meT +fZm +epe +kdr +bvY +kdr +bwb +kdr +aBw +bwY +bxn +bxn +bxn +bxn +bxn +byo +aBv +byS +bzc +aBw +bzE +xpl +bAn +xpl +bAS +aBv +bBh +row +qZo +row +row +bBY +bCt +bCt +bCt +bCS +row +pNa +aDX +kqS +bDu +bDA +aRf +aDX +bDU +elM +aDX +bDo +aQy +aRf +aRf +aDX +bEK +bEP +aDY +aao +aao +jrD +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(112,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aqL +lbh +dQR +dQR +kfx +fsT +aqL +aqL +aqL +lUa +acP +rZU +hDK +xQd +eVM +rVT +acP +acP +acP +krV +asc +acr +acr +acr +acr +akj +akj +akj +akj +akj +akj +akj +acr +mAk +fmW +asc +amn +atB +rNG +amn +asJ +awq +axe +axM +axM +axM +azZ +amn +amn +amn +amn +amn +amn +amn +amn +anJ +anJ +anJ +aoz +anJ +aoz +anJ +aoz +anJ +aoz +anJ +anJ +aHD +aBR +bhF +oxP +aIn +aWJ +aBR +nVV +aBR +aBR +aBR +aBR +cRy +aBR +aBR +aBR +vem +aBR +aBR +aBR +aBR +aBR +aBR +aMc +aHF +uEi +pMd +dtC +uEi +baa +reB +awp +bkO +blC +awp +bmG +bpo +lYH +awp +bWk +bWk +bWk +bWk +bWk +bWk +bWk +bWk +bWk +bWk +bMf +uvZ +bjy +aao +aao +bKY +bKY +bKY +bKY +dij +aao +azO +meT +meT +meT +fZm +bvX +kdr +kdr +kdr +kdr +kdr +aBv +bwZ +bxo +bxo +xpl +bxP +bxo +byp +aBw +byT +bzd +aBv +bzF +bEB +aOl +bAF +bAS +aBv +aPd +xpl +qZo +bxo +bxo +bxo +xpl +xpl +xpl +xpl +xpl +kKB +aDX +ocG +kqS +bDB +kqS +aDX +bDU +fnh +aDX +kqS +kqS +bDB +kqS +aDX +bEK +bCZ +aDY +aao +aao +jrD +jrD +jrD +jcR +jrD +aao +aab +aaa +aaa +aaa +"} +(113,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tjX +dQR +hQO +aqL +aqL +aqL +aqL +arp +acP +lPg +vgE +vgE +vgE +lPg +jLj +acP +acP +acP +ags +alF +alF +alF +akw +akw +alF +alF +akw +qmH +iSq +xoy +nDu +rJW +amD +asc +amn +jlr +rGr +amn +avG +awq +awq +tdz +awq +axM +aws +amn +oTG +mRP +aCS +aDU +dVj +wKK +amn +vHB +aIq +aJn +okU +aLp +aEO +mes +aEO +hpd +aEO +vFB +anJ +aTc +aBR +bhF +oxP +aIn +aWJ +aWI +aFM +aFM +aFM +aCN +aFM +aCN +aFM +aFM +aFM +aFM +aFM +aFM +aFM +poG +aCN +aCN +aHF +aHF +dyX +aHF +dyX +jdj +aHF +aHF +awp +bkE +hsF +awp +bmG +bpo +bnI +awp +bWk +bWk +nVx +pGP +pGP +nVx +bWk +bWk +bWk +bWk +bMf +uvZ +uvZ +aao +aao +fOx +jGT +fOx +fOx +fOx +aao +azO +meT +meT +meT +fZm +epe +bvY +kdr +bvY +kdr +kdr +aBv +efh +bxo +bxz +bxo +xpl +xpl +byq +byE +byU +bze +aBv +bzG +bzW +bAp +aOQ +bAS +aBv +bBj +xpl +uSt +kfY +bBW +kfY +bxn +bzK +hNg +xpl +xpl +kKB +aDX +bDp +bDv +wFP +bDv +bDO +qwx +uWo +bDO +bDv +bDv +wFP +bEC +aDX +bEK +bCZ +aDY +aao +aao +jrD +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(114,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +qMS +kfx +aqL +aqL +aqL +aao +aqL +aqL +lUa +acP +acP +acP +acP +acP +acP +acP +acP +acP +acP +myJ +acP +acP +acP +acP +acP +acP +oEq +acP +oEq +jKh +acP +acP +acP +asc +amn +uwh +rNG +amn +nkm +awq +mnv +axN +ays +axN +aAa +aAE +vAI +nfS +nzb +atY +atY +atY +aAE +aHG +qgn +aJn +qEc +dIJ +nXQ +nXQ +vGL +mgb +nOW +aGI +aqz +aHD +aKl +oYO +oxP +aIn +aWJ +aMc +asv +asv +asv +atJ +atJ +atJ +asv +asv +asv +asv +asv +asv +asv +atJ +atJ +atJ +asv +asv +aHF +aHF +fxO +aHF +aHF +xaW +awp +bkE +blC +awp +bmG +bpo +boe +awp +bWk +bMf +oZQ +wcw +wcw +oZQ +hOx +bWk +bWk +ofn +bMf +uvZ +mIr +aao +fOx +jGT +fOx +jGT +fOx +aao +aao +azO +azO +meT +vfI +ihW +epe +kdr +ihW +bwb +bvY +kdr +aBw +bxa +xpl +bxA +bxo +bxo +byb +byr +aBw +byT +bzf +aBv +bzH +bzX +bxn +bxn +bAT +aBv +bBk +xpl +xpl +xpl +xpl +xpl +bCu +qZo +bCu +xpl +bxo +kKB +aDX +kqS +kqS +kqS +kqS +aDX +bDU +elM +aDX +kqS +bEt +bEy +kqS +aDX +bEK +bCZ +aDY +aao +aao +aao +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(115,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +kfx +nnz +aqL +aao +aao +aao +aqL +arp +acP +acP +acP +acP +acP +acP +acP +acP +acP +acP +acP +acP +aTy +acP +acP +acP +amD +acP +acP +acP +oEq +acP +acP +acP +asc +amI +vti +atY +auU +asJ +awq +awq +wFW +ayt +axM +aAb +amn +aCa +ijb +szt +nfS +gLC +aFU +amn +aHG +aHG +jPJ +jgO +pGU +iKK +rxK +dnC +aEO +pGU +aEO +anJ +aTd +aIn +vAo +xPT +aIn +aWJ +aMc +asv +aYX +aZE +aYY +baK +bbs +bce +asv +bdu +bdu +bel +asv +bfd +wKf +bgc +bfe +bgI +asv +aHF +aHF +aHF +asv +atJ +atJ +awp +bkP +awp +awp +awp +bnj +awp +awp +bWk +bpc +wcw +iQw +wcw +wcw +rDV +bWk +bWk +rTN +bMf +uvZ +uvZ +nGm +jGT +jGT +jGT +fOx +fOx +aao +aao +aao +azO +azO +ydn +ydn +epe +nEJ +bvY +kdr +nEJ +kdr +aBw +bxb +bxp +bxp +bxJ +bxQ +bxp +bys +aBv +byV +bzf +aBv +bzI +vuz +bAq +bAH +gVm +aBv +bBl +bBB +xpl +bBP +bBX +bCm +bCv +bCC +aPT +bCT +pBD +bDg +aDX +fyz +kqS +kqS +bDJ +aDX +bDU +knN +aDX +bEl +kqS +kqS +bED +aDX +bEK +bCZ +aDY +aao +aao +aao +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(116,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +kfx +aqL +aqL +aqL +aqL +aqL +aqL +arp +acP +acP +myJ +acP +acP +acP +acP +aTy +acP +acP +acP +acP +acP +acP +acP +acP +acP +agq +ahe +ahe +ahe +ahe +ahe +ahe +ahS +amI +aty +atY +amn +pvj +evV +axN +axO +ayu +awq +aws +aAE +jnd +tkp +tkp +tkp +aBZ +aBZ +aAE +aHG +aIs +gvZ +aEO +tiL +qtT +sjQ +hJU +aEO +izC +aRj +aqz +aHD +aUh +ixx +oxP +aIn +aWJ +aWW +asH +aYY +aZE +bac +baL +bbt +bac +bac +bac +aYY +aYY +asv +wKf +bfJ +bgd +bgd +aLf +asH +aHF +bhU +aHF +asv +bjJ +bgx +bkw +blX +blD +uUY +bmH +bnl +pBv +ayF +vjc +bpc +wcw +wcw +wcw +wcw +rDV +bWk +bWk +rTN +bMf +eLQ +uvZ +nGm +jGT +fOx +fOx +jGT +fOx +aao +aao +aao +aao +azO +azO +azO +azO +azO +azO +azO +azO +azO +aBv +aBv +aBv +aBv +aBv +aBv +aBv +aBv +aBv +byT +bzg +aBv +aBv +aBv +aBv +aBv +aBv +aBv +aPf +xpl +xpl +bBQ +aBA +aCh +aCh +aCh +aCh +aCh +aCh +aBA +aDX +aDX +aDX +aDX +aDX +aDX +vQF +bEc +aDX +aDX +aDX +aDX +aDX +aDX +bEL +bDN +aDY +aao +aao +aao +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(117,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +dQR +vBI +aqL +aqL +aqL +aqL +aqL +aqL +lUa +acP +acP +vRb +acP +acP +acP +acP +acP +acP +acP +acP +acP +acP +smw +acP +acP +asc +ako +ako +ako +ako +ako +ako +ako +amn +amn +amn +amn +asJ +uIX +asJ +nkm +ayv +asJ +aws +amn +hAa +ttk +atY +atY +aCa +aCa +amn +aHH +dME +jPJ +aEO +aLs +lvO +mnu +usZ +aEO +umW +aEO +anJ +aHD +aIn +fzt +oxP +aIn +aWJ +aMc +asH +aYZ +aZE +bac +aYY +bbt +bac +bac +bdv +bac +bcf +asv +lNp +gAX +bge +bgs +bfM +avr +bhT +bhU +bhU +asv +beI +bgx +awp +bBg +wvK +blY +wvK +bnm +bnK +ayF +bWk +kdf +oZQ +wcw +rHA +oZQ +acm +bWk +bWk +rTN +bMf +uvZ +xIx +nGm +fOx +fOx +fOx +jGT +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aBv +bxR +bxS +byt +aBA +byT +bzf +aBv +bzJ +bzJ +bzJ +bzJ +bzJ +aBv +bBl +xpl +xpl +bBR +bBY +bCn +bCw +aPH +bCI +bCU +pNa +bDh +aDX +tAe +kqS +kqS +bDK +aDX +bDU +elM +aDX +bEm +kqS +kqS +fyz +aDX +bEM +bDN +aDY +aao +aao +aao +jrD +jcR +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(118,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +dQR +tjX +nlB +dOZ +nlB +vBI +aqL +aqL +aqL +bQh +bQh +lUa +acP +qcC +acP +acP +acP +agq +ahe +ahe +ahe +ahe +ahe +ahe +ahe +ahS +aku +aoo +atE +apK +muk +ars +apc +dnw +gHR +ars +amn +amn +jZp +gvY +amn +amn +anJ +mbz +anJ +anJ +anJ +fbB +amn +amn +amn +amn +ekz +geo +nmn +aEQ +aGH +buU +ozy +aNS +dsU +pGU +tyQ +anJ +oIg +aIn +bhF +oxP +aIn +aWJ +aMc +asH +aZa +aZE +bac +baM +bbu +bcf +asv +aJI +bac +bem +asv +bgd +bfL +bgc +bgc +bgK +asH +ibn +bhU +bhU +asv +bjK +aZF +bkx +bmJ +blE +blZ +bly +bnn +bnL +ayF +bWk +bWk +dnV +oTf +mIZ +dnV +bWk +bWk +bWk +rTN +bMf +uvZ +uvZ +nGm +fOx +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aBv +bxS +bxS +byu +byF +byU +bzh +bzs +bzK +bxo +xpl +xpl +xpl +aBv +fDr +xpl +xpl +bxo +bxo +xpl +xpl +xpl +xpl +bxo +bDa +xpl +aDX +kqS +kqS +kqS +kqS +aDX +bDV +elM +aDX +kqS +kqS +bEt +kqS +aDX +bEM +bEQ +aDY +aao +aao +aao +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(119,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +dQR +dQR +iXx +dQR +dQR +dQR +vBI +aqL +aqL +aqL +aqL +aqL +lUa +acP +acP +acP +acP +asc +lPg +hHa +hHa +hHa +hHa +ahS +ahS +ahS +aku +aop +apc +apK +mPU +ars +apc +apK +qDK +ars +ako +enx +pXY +xnf +bFz +ahf +anJ +hsq +gKM +xlD +svb +anJ +vbN +gzj +aEO +pGU +pGU +qEc +qmE +aKw +aEO +aEO +aEO +oqe +aLr +mKR +pGU +pRy +sfw +uCV +jyZ +oxP +qzI +aWJ +aMc +asv +aYY +aZE +bad +aYY +bbv +bac +asv +bdx +bdx +bdx +asv +bfK +bfM +bgc +bgt +bgL +asv +eOf +aHF +rHD +asv +bjL +bkg +awp +bBg +bly +bma +pPo +pPo +bnM +ayF +bWk +bWk +iYR +nVx +nVx +nVx +bWk +bWk +bWk +awp +inx +mIr +uvZ +nGm +fOx +fOx +snk +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aBv +bxT +byc +byv +aBA +byT +bzd +aBv +bzL +bzY +bAr +bAI +bAU +aBv +bBn +xpl +xpl +xpl +bBZ +bxo +bxo +bxo +bxo +xpl +kKB +aBA +aDX +bDq +bDv +bDC +bDv +bDO +qwx +uWo +bDO +bDv +wFP +bDv +bEC +aDX +bEK +bDN +aDY +aao +aao +aao +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(120,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +dQR +dQR +qMS +dQR +dQR +dXK +elh +elh +vBI +aqL +aqL +aqL +lUa +acP +acP +acP +asc +hHa +hDK +hDK +khK +ahS +ahS +ahS +ahS +aku +aop +apc +atE +atE +atE +atE +atE +apc +apc +apc +mgr +cgo +rdH +uvL +iXV +anJ +xIY +qkn +tXa +fZA +aCU +xqb +aEP +aER +aER +nXQ +sCf +aER +aER +xio +aER +hbY +wFv +pGU +pGU +gae +cNH +hRE +wql +iww +oxP +aIn +aWJ +aMc +asv +aZb +aZE +aYY +aYY +bbw +aYY +asv +asv +asv +asv +asv +bfi +asv +asv +asv +asv +asv +avS +asv +asv +asv +bjL +bgx +awp +bkS +bly +bly +wvK +bno +bnN +ayF +uHE +bMf +oZQ +rzO +bkU +oZQ +kuw +bWk +bWk +rTN +bMf +uvZ +uvZ +nGm +fOx +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aBv +bxS +aNh +bxS +aBA +byT +bzf +aBw +bxo +bxo +xpl +xpl +xpl +aBv +bBo +pBD +xpl +pBD +pBD +vQr +pBD +pBD +xpl +pBD +iUe +bDj +aDX +kqS +kqS +bDD +kqS +aDX +bDU +knN +aDX +kqS +kqS +bDD +kqS +aDX +bEK +bDN +aDY +aao +aao +aao +jrD +jrD +jrD +jcR +aao +aab +aaa +aaa +aaa +"} +(121,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +dQR +dQR +dQR +hQO +aqL +lOL +dXK +bGC +aqL +aqL +aqL +arp +acP +acP +acP +asc +hHa +taV +khK +ahS +ahS +khK +ahS +ahS +aku +aoq +apd +tVE +whb +vWt +apc +apc +apc +apc +aqQ +vVt +krR +bGX +oHu +ars +anJ +scH +fiI +pdP +kAD +anJ +jUO +aEO +pGU +aGH +mgb +aEO +aEO +pGU +fOf +aGH +aEO +aNV +aEP +ydO +aRm +anJ +uUU +bhF +xsn +bXq +wBw +aWJ +aMc +asv +asv +asv +bae +bac +bbx +bwz +aul +bdy +bdy +asv +beH +bfj +aZF +aZF +aZF +aZF +aZF +bbA +aZF +aZF +aZF +bjM +bgx +awp +dQZ +haT +bmb +gCx +bnp +bnO +awp +bWk +bMf +mDk +bkU +bkU +irN +kuw +ntX +hsJ +rTN +bMf +uvZ +eLQ +nGm +mts +fOx +vld +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aBv +bxR +bxS +bxR +aBA +byT +bzi +aBw +lDp +bzM +iRw +iYN +iRw +aBv +aBw +aBw +bBH +aBw +aBw +aBv +aBw +aBw +bBH +aBw +aBw +aBv +aDY +aDY +fjz +bDA +bDL +aDX +bDU +knN +aDX +bEn +aQD +bDA +bEE +aDX +bEK +bER +aDY +aao +aao +aao +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(122,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +kfx +aqL +aqL +aqL +aqL +lbh +vBI +aqL +aqL +aqL +lUa +cAR +acP +asc +hHa +xQd +ahS +ahS +khK +khK +ahS +ahS +ako +ako +ako +sdo +ako +ako +ako +ako +ako +ako +ako +avI +aop +atE +jWY +ahf +anJ +fRP +hsq +fXZ +bsw +anJ +aNS +aEO +mgb +aLr +aEO +aEO +aJq +aKx +aKx +aKx +aKx +aNW +pGU +vxI +aEO +anJ +aTh +xdV +fVX +oxP +aIn +aIp +aMc +aHF +aHF +asv +baf +bac +bbu +bch +aul +aXU +aXr +asv +beI +bfk +bai +bai +bai +bgM +bbB +bbB +bcj +bbB +bjk +bbB +bbB +awp +awp +blF +awp +ayF +ayF +ayF +awp +bWk +bMf +bkU +bkU +boA +bkU +vEF +bWk +ntX +rTN +bMf +uvZ +uvZ +nGm +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aBv +aBv +aBv +aBv +aBv +byT +bzf +aBv +aBv +aBv +aBv +aBv +aBv +aBv +bBp +bBp +bBp +bBp +bBp +aBv +bvP +bvP +bvP +bvP +bvP +aBv +aao +aDY +aDX +aDX +aDX +aDX +bDU +knN +aDX +aDX +aDX +aDX +aDX +aDX +bEM +bDN +aDY +aao +aao +aao +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(123,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +kfx +aqL +gdK +aqL +aqL +lbh +dQR +vBI +aqL +aqL +arp +acP +acP +asc +hHa +ahS +ahS +ahS +khK +ahS +ahS +khK +ako +fWb +oHW +apN +nEB +maN +ako +atD +sih +sih +ako +atE +awu +apc +ako +ako +anJ +anJ +aAI +anJ +anJ +anJ +aDZ +anJ +anJ +anJ +anJ +anJ +anJ +oVg +aLu +wcx +ffl +eri +aKx +nPG +aRn +aqz +aTh +kZX +fVX +hpl +aWI +aFM +aHF +aHF +aHF +asv +bag +bac +bby +bci +bcX +bdz +bcX +ben +beJ +bfl +asv +asv +bdC +asv +asv +asv +asv +atJ +atJ +asv +asv +awp +bkT +bkU +bkT +bkU +bkT +bkU +awp +bWk +bMf +oZQ +bkU +boA +oZQ +fUk +bWk +bWk +rTN +bMf +uvZ +uvZ +ppp +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aBv +byW +bzj +bzt +bzN +bzZ +bAs +bAJ +bAV +aBv +bBp +bBC +bBp +bBp +bBC +aBv +bvP +bvP +bCE +bvP +bvP +aBv +aao +aDY +bDx +bDE +fdy +bDP +ioS +bEd +bEi +bEo +bEo +bEo +bEo +bEG +fxh +bDN +aDY +aao +aao +aao +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(124,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +dQR +vBI +aqL +fsT +aqL +lbh +dQR +bGC +aqL +aqL +aqL +lUa +acP +asc +ahS +ahS +ahS +ahS +ahS +ahS +ahS +cYC +ako +qOK +uVd +ftR +djV +sfT +ako +hkJ +atE +apc +ako +bLi +aop +atE +axR +nwe +gzm +ako +nih +nms +sqt +anJ +aEa +jHH +nkD +nmb +xJW +aIu +anJ +aEO +aEO +aMj +aEO +lVY +aKx +nPG +pGU +anJ +aTh +ePz +qhF +lBX +aMc +asv +asv +asv +asv +asv +bah +aYY +bbz +aZE +aXr +aXr +aXU +bET +beI +bft +asv +bgf +bgg +bgN +bgg +bhX +asv +bqa +bep +bep +bqa +awp +bkU +bkU +bkU +bkU +bkU +bkU +awp +bWk +bWk +qpn +pMm +pMm +wMg +bWk +bWk +bWk +awp +bMf +eLQ +uvZ +aao +aao +fOx +fOx +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aBv +wXz +bzk +bxo +wXz +xpl +xpl +bAK +bAW +aBv +bBp +bBp +bBp +bBp +bBp +aBv +bvP +bCE +bCJ +bvP +bvP +aBv +aao +aDY +bDy +bDF +bDM +aDX +bDz +bDN +ioS +bDN +bEv +bDN +bDN +fnh +bCZ +bDz +aDY +aao +aao +aao +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(125,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +dQR +kfx +aqL +aqL +wWE +dQR +cPg +hQO +aqL +aao +aqL +arp +acP +asc +ahS +khK +khK +ahS +ahS +ahS +khK +ora +ats +kGK +uVd +mdh +uVd +kWh +ako +asN +atE +mIy +ako +atE +aop +apc +ako +ayx +azd +ako +aAJ +cCY +mSi +anJ +kuj +gqF +gVn +aEO +ntw +aEO +aJr +aEO +coT +aEO +aEO +jJP +fhx +aNS +vXF +anJ +aTh +kZX +cIE +nfP +cPr +asv +aXS +aYs +aZc +asv +asv +asv +asv +asv +asv +asv +iuU +asv +beK +bfn +iuU +bgg +bgg +bgO +bgf +bgg +asH +bjb +bfw +bfw +bpX +awp +bkT +blG +bkT +bkU +bkT +bkU +awp +bWk +bWk +bWk +awp +rTN +rTN +rTN +rTN +awp +awp +bMf +uvZ +uvZ +aao +dov +fOx +fOx +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aBv +byX +bzl +ocp +wXz +bAa +aOJ +bAu +bAX +aBv +bBp +bBp +bBp +bBp +bBC +aBv +bvP +bvP +bvP +bvP +bvP +aBv +aao +aDY +aDY +aDY +aDY +aDX +aDX +aDX +bEj +aDX +aDX +aDX +aDX +bEH +aDX +aDX +aDY +aao +aao +aao +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(126,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +dQR +nlB +nlB +dQR +dQR +kfx +fsT +aqL +aao +aao +aqL +lUa +asc +hHa +ahS +khK +ahS +ahS +khK +xQd +xQd +ako +djV +mfG +apO +aqR +tFt +ako +asO +atE +apc +ako +atE +eSO +axi +ako +ako +ako +ako +aAJ +tDs +apo +anJ +aEc +hSX +isS +aGJ +aCP +aIv +anJ +aKz +aLv +anJ +aMJ +lxz +aKx +aNS +pGU +aqz +oJP +iDC +kRT +kRT +sub +aXq +ych +bcX +bcX +aZF +aZF +aZF +bbA +bbA +bbA +aZF +mdO +aZF +beL +bfo +iuU +bgh +bgu +bgh +bgf +bgf +asv +bjb +bes +bes +bpX +awp +awp +awp +awp +awp +awp +awp +awp +bWk +cIq +ntX +nVx +nVx +nVx +nVx +nVx +hrs +nVx +eRc +uvZ +uvZ +kcZ +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aBv +byX +bzm +bzu +bzO +bAb +bAu +bAL +bAX +aBv +bBp +bBC +bBI +bBp +bBp +aBv +bvP +bvP +bCK +bvP +bCE +aBv +aao +aao +aao +aao +aDY +bDQ +bDQ +bEe +bDQ +bEp +aDX +fdy +fdy +ptL +fdy +bES +aDY +aao +aao +aao +jrD +jrD +jrD +aao +aao +aab +aaa +aaa +aaa +"} +(127,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +nEH +elh +elh +dQR +dQR +dQR +dQR +hQO +aqL +aqL +aqL +aao +aqL +arp +asc +hHa +ahS +ahS +ahS +dVM +aao +aao +aao +ako +jNE +pdB +uVH +taD +kGK +ako +asP +xqy +apc +auV +apc +eSO +jwU +axR +giC +rPs +ako +aAJ +gbA +apo +anJ +anJ +anJ +anJ +anJ +xLd +anJ +anJ +anJ +anJ +anJ +anJ +anJ +anJ +sPv +aRo +anJ +gSL +wDQ +iww +xsn +eak +bET +aXr +aXr +aXU +aZG +bai +bai +bbB +bcj +bbB +bai +bai +bbB +aXU +bfp +iuU +bgi +hmW +aLg +bgg +bgg +asH +bjb +bjl +bes +jfr +bep +bep +bep +bep +bep +bep +bep +bjc +uDc +iBF +qTH +xJC +mzV +mzV +mzV +mzV +mzV +mzV +pcI +uvZ +uvZ +kcZ +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aBv +byY +bzn +bzv +wXz +bAc +wXz +bAM +bAY +aBv +aBv +aBv +aBv +aBv +aBv +aBv +aBv +bCF +aBv +bCF +bCF +aBv +aao +aao +aao +aao +aDY +bDR +bDR +bDR +bDR +bEq +aDX +bEz +bEF +bEI +bEN +fdy +aDY +aao +aao +aao +jrD +yfz +jrD +aao +aao +aab +aaa +aaa +aaa +"} +(128,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +dXK +dXK +wbY +dQR +dQR +dQR +dQR +kfx +aqL +aqL +aqL +aqL +aqL +aqL +arp +asc +hHa +xQd +hDK +aao +aao +aao +aao +aao +ako +opn +oEz +poL +kGK +vnJ +ako +vjW +atE +atE +ovq +apc +dsn +atE +ako +czE +nGl +ako +aAK +apo +jAV +qAk +uLZ +vnD +gbA +btT +lIb +apo +apo +kGz +apo +ois +xro +apo +anT +uiF +iWi +anT +aTk +aQu +gwf +uxk +aSi +asH +aXU +aYt +aXr +asv +asv +asv +asv +asv +jYP +jYP +fYU +jYP +beI +bft +iuU +bgj +bgw +bgQ +bgg +bhY +asv +gLe +bjm +bes +bes +ber +bes +bes +bes +bes +xxx +bes +bes +fEb +rvP +bSk +mzV +txi +mzV +mzV +mzV +txi +mzV +pcI +uvZ +mIr +kcZ +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aBv +aBv +aBv +aBv +bzP +bAd +aBv +aBv +aBv +aBv +aao +aao +aao +aao +aao +aao +aao +sqj +phi +phi +vqY +aao +aao +aao +aao +aao +aDY +aDY +aDY +aDY +aDY +aDY +aDY +aDY +aEj +aEj +aDY +aDY +aDY +aao +aao +aao +jrD +jrD +jrD +aao +aao +aab +aaa +aaa +aaa +"} +(129,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +nnz +aqL +lOL +dXK +dQR +dQR +wbY +kfx +aqL +gdK +aqL +aqL +aqL +aqL +aqL +asc +hHa +aao +aao +aao +aao +aao +aao +aao +ako +jNE +oMD +ria +ueM +uVd +ako +tjx +atF +atE +ako +jwU +kSn +dyj +ako +ako +ako +ako +mEW +apo +apo +apo +apo +apo +gbA +fxe +ovm +iOR +apo +gbA +gbA +gbA +gbA +apo +aOU +aQa +jij +aOU +aTk +aQu +dpU +lKL +aTr +asv +aXV +aYu +aZd +asv +dEN +bwA +vvn +eUX +bcY +xJY +tfu +sEp +beI +bft +iuU +iuU +asv +asv +asv +asv +asv +nkx +juF +bjl +bes +bes +pCa +bes +bes +bes +bes +bes +bes +xoc +dzd +gmp +mzV +mzV +mzV +mzV +ptQ +mzV +mzV +pcI +uvZ +ltu +mPC +fOx +fOx +dov +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +jrD +oxp +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +euO +phi +phi +phi +phi +phi +sus +aao +aao +aao +aao +jrD +jrD +jrD +aao +aao +aab +aaa +aaa +aaa +"} +(130,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aqL +aqL +aqL +aqL +lOL +dQR +dQR +kfx +aqL +aqL +aao +aao +aao +aao +aqL +aao +aao +aao +aao +aao +aao +aao +aao +aao +ako +ako +ako +amh +ako +ako +ako +asS +atG +aub +ako +wPC +cFx +apc +axR +nwe +azc +ako +aAJ +apo +kYs +cPh +gbA +ptq +gmE +iVu +uOy +taj +hrX +gbA +ebT +gbA +buF +gqJ +anT +aQb +quU +anT +aTk +aUk +oCK +yfY +aTr +asv +asv +asv +asv +asv +cnQ +baO +jXA +tQG +ozs +qGT +niR +asv +beN +hhf +bfO +bgk +bgx +bgR +bhk +bgx +biD +uZG +uaU +beq +bhr +bes +bes +bes +bes +sqM +bes +bes +bes +fEb +vIe +vap +mzV +eWo +mzV +dmB +mzV +mzV +mzV +pcI +mIr +ktN +mPC +fOx +fOx +kVS +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jcR +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +phi +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +iml +oxp +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +jrD +jcR +jrD +jrD +vqY +aao +aao +aao +aao +jrD +jrD +jrD +aao +aao +aab +aaa +aaa +aaa +"} +(131,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aqL +aqL +aqL +aqL +aqL +lbh +aad +alJ +akX +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +pmS +smh +pmS +aou +aph +apR +uzD +iXD +ako +bqA +atG +auc +ako +wyh +aop +apc +ako +ayx +azd +ako +aAJ +vvI +anT +anX +anX +anX +anX +anX +anT +anT +anT +anT +anT +anT +anT +anT +anT +cYI +aRp +anT +aTk +aUk +oCK +jjR +aXW +aSg +aTq +aTq +aTq +asv +asv +asv +asv +lhN +cDG +bdA +kIX +tUa +beI +bfr +bfP +xUX +bfP +bfP +bhl +bbB +bET +fEb +tHM +beq +bes +bes +bes +bes +bes +bes +bes +bes +bes +fEb +vIe +tHM +mzV +mzV +mzV +cWX +mzV +mzV +mzV +pcI +ltu +ktN +mPC +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +tRI +jrD +jrD +sus +aao +aao +aao +aao +aao +aao +aao +aao +aao +sqj +jrD +jrD +oxp +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +jrD +jrD +jrD +oxp +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(132,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gdK +aqL +dka +fsT +aqL +hKM +aad +aad +dTi +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +pmS +hqO +tdE +aou +iwo +apS +tbl +tbl +gdy +tNa +atH +aud +amZ +tTd +atH +myu +ako +ako +ako +ako +pwX +apo +anU +nWG +tpU +jay +aCf +ilH +anT +aIw +msq +aID +aLw +aMl +aMK +aCZ +aOV +aQd +aIE +anT +aTk +aUk +oCK +uxk +aKP +aSh +aTr +aTq +aTq +asH +baj +baP +bbC +eUX +bda +bLG +kIX +jYP +beI +uao +iuU +iuU +asv +asv +asv +asv +asv +oOj +thC +cFd +cFd +hcK +cFd +cFd +cFd +cFd +cFd +cFd +ofO +inN +inN +tHM +bes +mzV +eWo +mzV +mzV +mzV +pvp +mIr +ktN +aao +aao +fOx +fOx +fOx +kSL +fOx +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +oxp +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +jrD +jrD +oxp +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +jrD +jrD +jrD +jrD +vqY +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(133,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +akX +akX +akX +akX +wpf +aad +aad +aad +abV +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +pmS +pmS +amE +hqO +ako +ako +krZ +ako +ako +ako +ako +ako +ako +ako +ako +avI +jbd +wpV +uTB +mnY +kwq +mnY +aAL +mnY +fDf +aCY +aCZ +aET +aMQ +aCZ +anT +aIw +aID +aKC +aLx +aIE +aCZ +aMM +aOW +aQe +aQm +aqU +len +aUl +oCK +sWt +aOk +aQu +aTr +aTq +aTq +asv +aXr +baO +aXr +bck +wxG +jXA +bJJ +eOS +tdT +bft +iuU +bgm +bgy +eft +chx +lIv +asv +xoc +inN +vIe +vIe +vIe +vIe +xOg +vIe +qId +aZP +xOg +vIe +inN +vIe +tHM +bes +mzV +mzV +mzV +mzV +mzV +pcI +eLQ +ktN +aao +aao +fOx +fOx +fOx +kok +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +oOk +jrD +jrD +jrD +jrD +jrD +phi +sus +aao +aao +aao +aao +aao +aao +aao +tRI +jrD +jrD +oxp +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +cOl +jrD +jrD +jrD +oxp +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(134,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +cAf +eWE +aad +aad +acb +abM +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +hGy +pmS +owg +pmS +hqO +ako +aov +txM +apT +aqW +ncc +ako +asW +asU +asW +ako +vWt +erf +mQA +ovq +apo +ffK +sHg +gbA +gbA +tKR +aCo +aCZ +aEU +aMQ +gAE +anT +aIw +aJs +aJv +aLy +aCZ +aIE +aML +aOX +aQf +aQh +aqU +abW +qBx +haV +xaC +qBx +dmE +aTr +aTq +aTq +asv +asv +asv +asv +iuU +iaa +bdB +bdW +hDX +beI +bft +iuU +bgm +bgz +bgB +bgB +bfR +asv +xoc +vIe +hUe +hUe +hUe +kdi +kdi +inN +vIe +vIe +vIe +hUe +hUe +hUe +nBd +lvy +lvy +lvy +bes +mzV +pvp +uvZ +aao +aao +aao +aao +aao +hqS +hqS +tNz +hqS +hqS +hqS +hqS +hqS +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +jcR +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +oxp +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +sus +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +jrD +jrD +vqY +aao +aao +aao +aao +jrD +jrD +jcR +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(135,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +qQr +oFj +jJO +bVX +fKO +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +pmS +sMg +pmS +pmS +hqO +ako +aov +cIC +vcy +aoB +oXj +ako +apU +apU +aoB +ako +atE +atE +dgI +ako +ycW +arD +arD +aMk +nNS +anU +aCZ +aCZ +aQa +aCZ +aCZ +anT +aIx +aID +aJv +aLx +aIE +aCZ +aNZ +aOY +aQg +aCo +aqU +lcb +haV +etw +etw +etw +gcs +aTr +aTq +aTq +asv +qeH +cUK +ooC +bck +usU +rqt +qDu +asv +beI +bft +iuU +bgn +bgz +bgT +bgB +bfR +biE +xoc +tHM +bjl +bes +bes +bes +bes +fEb +vIe +inN +nRv +bes +wkv +bes +bes +xxx +bes +bes +mzV +pvp +xeN +aao +aao +aao +aao +aao +aao +kBn +ujD +ujD +ujD +ujD +ujD +nHQ +ujD +kBn +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +cOl +jrD +iml +jrD +jrD +oxp +jrD +jrD +jrD +jrD +jcR +jrD +jrD +jrD +jrD +jrD +jrD +oxp +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +jrD +oxp +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(136,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +abY +dtX +akX +akX +jSe +aao +aao +aao +aao +aao +aao +akX +alH +aao +aao +aao +pmS +akW +alG +pmS +hqO +ako +tCy +cIC +apU +apU +oXj +aml +cDC +dUc +eTK +qUT +qqa +pfJ +apc +aku +aBu +kYO +arD +aMk +gbA +anU +fXR +aCo +aEU +aCZ +aCf +anT +aIy +aIC +aKD +aLz +aCZ +aIE +aOa +aOZ +aMQ +aMN +aqU +lcb +uxk +aVq +aVq +aVq +aQu +aTr +aTq +aTq +asH +baj +lHK +jxZ +asv +asv +ctE +asv +asv +beI +bfu +bfQ +bgo +bgA +eIj +jsc +bgB +bET +xoc +kjS +bjm +bes +bes +pCa +bes +tqg +vIe +vIe +tHM +vVZ +aao +vVZ +vVZ +eDS +aao +vVZ +aao +cns +aao +aao +aao +aao +aao +aao +aao +aao +mDs +mDs +mDs +mDs +mDs +mDs +mDs +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jcR +jrD +jrD +jrD +jrD +tRI +jrD +jrD +jrD +jrD +phi +phi +phi +phi +jrD +jrD +rnc +rnc +rnc +rnc +jrD +jrD +phi +sus +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +yfz +oxp +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(137,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +abq +iGY +pri +ipo +ipo +rYt +ipo +aao +aao +aao +aao +akX +akY +akX +akX +aao +aao +aao +aao +akX +alH +pnL +aao +ako +aov +apk +iJu +lun +xCX +mGy +mAv +qnj +oCg +ask +lQW +apc +avJ +aku +aBu +arD +arD +aMk +apo +anU +fXR +aCo +aEW +aCZ +aCf +anT +aIz +aIC +aKD +aLA +aIE +aML +aOb +aPa +aQh +aRq +anT +lcb +yfY +aVr +aVY +aKP +aSh +aTr +aTq +aTq +asv +asv +asv +asv +asv +veU +suP +eJI +asv +beI +bbB +bET +bfR +bgB +bgB +bgB +bia +asv +hST +ctw +bjm +xxx +bes +bes +ejP +egg +xXV +xXV +aqP +vVZ +rjw +fCb +aao +fCb +fCb +fCb +aao +pcF +kBn +kBn +kBn +kBn +kBn +kBn +kBn +aao +aao +kBn +ujD +ujD +ujD +ujD +ujD +vVZ +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +tRI +jrD +jrD +jrD +jrD +jrD +rnc +rnc +rnc +rnc +vqY +aao +aao +aao +aao +tRI +jrD +jrD +oxp +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +jrD +vqY +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(138,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +oRs +aad +alJ +akX +alH +akX +akX +aao +aao +aao +wMp +akX +akX +akX +akX +wpf +aao +aao +aao +akY +alH +akX +aao +ako +aox +apl +apW +apY +mgX +amm +apY +wAd +asY +aml +atE +aww +apc +aku +xgm +arD +arD +aMk +apo +anU +fXR +rNd +aEU +aCZ +aCf +anT +bix +aIC +aKD +aLB +aCZ +aMM +jUc +aOX +aQi +aLE +aSe +lcb +gMa +aUk +aKP +aKP +aSh +aTr +aTq +aTq +aTq +aTq +aTq +aTq +asv +idb +uWB +mcd +asv +beI +bbB +asv +uiq +srz +bgV +bhp +aLi +asv +kwQ +beq +bjm +bes +bhr +aao +aao +tNf +bUJ +xNa +cSP +brD +fCb +fCb +rjw +fCb +fCb +rjw +fCb +pcF +kBn +iZA +dIb +pQv +fwV +fwV +kBn +aao +aao +aao +pgu +pgu +pgu +pgu +pgu +pgu +pgu +pgu +aao +aao +aao +aao +oxp +jrD +jrD +jcR +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +sqj +jrD +jrD +jrD +rnc +rnc +vqY +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +hAj +jrD +jrD +sus +aao +aao +aao +aao +aao +aao +aao +sqj +phi +jrD +oxp +aao +aao +aao +aao +aao +aao +jcR +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(139,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +akX +hKM +aad +wMp +akX +akX +cAf +akX +aao +aao +alJ +akX +akX +akX +wpf +aad +aad +aad +aad +akZ +alI +alH +aao +ako +sOq +pWp +ojs +bPq +pdT +ako +asV +aoB +aue +ako +xqf +apc +apc +aku +aBu +arD +rOP +aMk +mEE +anU +aCf +aCZ +aQa +aCZ +ilH +anT +aIz +aIC +aKD +aLC +aIE +aCo +aOd +aPb +aQj +aRr +tKR +lcb +uxk +aUk +aKP +aKP +aSh +aTr +aTq +aTq +aTq +aTq +aTq +aTq +asv +asv +asv +asv +asv +aXr +bfv +asv +asv +asv +asv +asv +asv +asv +bja +beq +bhq +bes +bes +aao +aao +tNf +gkO +utQ +cSP +aao +aao +rjw +fCb +aao +aao +aao +aao +pcF +fjP +dIb +dIb +dIb +dIb +fwV +kBn +aao +aao +aao +kSL +kSL +fOx +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +jrD +oxp +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +tRI +jrD +jrD +oxp +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +phi +phi +phi +phi +phi +phi +phi +jrD +jrD +jrD +vqY +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jcR +jrD +aao +aab +aaa +aaa +aaa +"} +(140,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +alH +cJG +aad +alJ +akX +akX +vRR +akX +aao +aao +abr +akZ +akZ +fhI +aad +aad +aad +aad +aad +aad +alJ +akY +aao +ako +aoy +apk +qaF +aqW +hBk +ako +asW +oDB +asW +ako +avJ +atE +axi +ako +aBu +arD +arD +aMk +anT +anT +anY +anY +cYI +aGa +anY +anT +aIz +aJt +aKE +aLD +aCZ +aMN +aOe +aPc +aQk +aIE +anT +lcb +uxk +aVs +aKP +aKP +aSh +aXW +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aSg +bep +bep +bep +bep +bep +bep +bep +bep +bep +kIW +bjc +bjm +bes +bes +bes +aao +kBn +eGq +kNa +kNa +gHD +vVZ +brE +fCb +fCb +rjw +fCb +aao +aao +pcF +kBn +dIb +dIb +dIb +dIb +dIb +kBn +aao +aao +fOx +fOx +kSL +fOx +fOx +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +sqj +jrD +jrD +jrD +oxp +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jcR +jrD +jrD +rnc +vqY +jrD +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +aao +aab +aaa +aaa +aaa +"} +(141,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +akY +akX +hKM +aad +wMp +akX +akX +wpf +aao +aao +abr +aad +aad +aad +aad +aad +aad +aad +aad +oRs +tLt +akY +aao +akL +akU +chH +akU +akU +akL +akL +akL +akL +akL +akL +cQO +atE +avJ +ako +aBu +rdf +arD +suR +anU +aCi +aCZ +aCZ +aQa +aCo +aGL +anT +anT +aJz +anT +anT +aIE +aMO +aOf +aPa +aQl +aCo +aqU +lcb +yfY +aKP +aKP +aKP +aWK +aVq +aQu +aQu +aVq +aVq +aQu +aQu +aQu +aQu +aVq +aVq +beq +beq +beq +beq +beq +beq +beq +beq +beq +rBK +bfw +bhq +sqM +qIp +bes +bes +aao +tNf +eEO +hVG +cSP +vVZ +vVZ +vVZ +vVZ +fCb +vVZ +vVZ +vVZ +pcF +kBn +dIb +dIb +dIb +dIb +iZA +kBn +aao +fOx +fOx +fOx +kVS +fOx +dov +fOx +fOx +fOx +fOx +oye +aao +aao +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +tRI +jrD +jrD +nbi +oxp +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +phi +jrD +rnc +rnc +rnc +rnc +rnc +rnc +rnc +rnc +rnc +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +aao +aao +aab +aaa +aaa +aaa +"} +(142,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +hKM +aad +aad +akZ +akZ +abM +aao +aao +cJG +aad +aad +aad +aad +oRs +oRs +aad +alJ +akX +akX +aao +aao +akL +aoA +apk +apX +apU +tOO +apU +asX +aoB +cgL +uwV +ant +ant +ant +ako +xgm +arD +arD +aMk +anU +aCj +aCo +aCo +aEU +aCZ +aCZ +anT +aIA +aJv +aKF +anT +aCZ +aMP +aOg +aPe +aQm +aLE +aqU +iaO +yfY +aKP +aKP +laO +aKP +aKP +aWK +aQu +aKP +aKP +aWK +aVq +aVq +aVs +aKP +aKP +ber +beq +beq +beq +beq +beq +beq +beq +bhq +iVi +bes +bes +bes +bkh +bkV +bkV +aao +tNf +xNa +xNa +cSP +vVZ +fCb +fCb +fCb +fCb +fCb +fCb +aao +pcF +kBn +dIb +dIb +dIb +dIb +kBn +kBn +kSL +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +dov +fOx +gOr +jrD +jrD +jrD +jcR +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +tRI +jrD +rnc +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aab +aaa +aaa +aaa +"} +(143,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +abr +aad +aad +aad +aad +tLt +aao +akX +hKM +aad +aad +tLt +akX +akX +cJG +tLt +akX +aao +aao +aao +akL +pwa +cIC +qYH +qJh +bZH +apU +qFq +qJh +aoB +akL +gbA +ffK +pHf +ata +rzR +cHH +aCW +tkf +anU +aOc +aCo +aCo +aEZ +aGb +aEd +aHL +aIB +aJw +aKG +anT +aMm +aMQ +aOd +aPb +aIE +aCZ +aqU +lcb +yfY +aVt +aKP +aKP +aKP +aKP +aKP +aKP +jrj +aKP +aKP +aKP +aKP +aKP +aKP +aKP +bes +ber +bfw +bfw +bfw +bfw +bfw +bhq +bes +iVi +bes +bes +bes +bki +beq +beq +aao +eGR +bUJ +xNa +cSP +myY +kTs +fCb +bsH +fCb +fCb +aao +aao +pcF +kBn +fwV +dIb +dIb +dIb +ssE +kSL +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +gOr +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +sus +jrD +aao +sqj +phi +phi +phi +phi +phi +jrD +jrD +jrD +jrD +jrD +jrD +jcR +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aab +aaa +aaa +aaa +"} +(144,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +abs +aad +aad +aad +alJ +akX +vRR +akX +hKM +aad +alJ +akX +akX +akY +akX +vRR +akX +aao +aao +aao +akL +pqj +apn +lXt +tcI +oGr +fik +syK +xHb +aug +akL +xgm +aCc +aCc +aCc +aCc +aCc +aCd +aMk +anT +aCl +aDa +aDa +aFa +aEU +aCZ +tKR +aIC +aJx +kbd +anT +aCZ +aIE +aCZ +aQc +aQn +aIE +anT +lcb +yfY +aVr +aKP +aKP +aKP +aKP +aKP +aKP +aKP +aKP +aKP +kmk +aKP +aKP +aKP +aKP +bes +bes +bes +bes +bes +bes +bes +bhr +bes +iVi +bes +bes +bkh +beq +beq +aao +aao +tNf +bUJ +bUJ +cSP +myY +fCb +fCb +fCb +aao +aao +aao +aao +pcF +kBn +mRD +dIb +dIb +dIb +ssE +kSL +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +gOr +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jcR +oxp +jrD +sqj +jrD +jrD +jrD +jrD +jrD +jrD +jrD +oxp +jcR +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +jrD +jrD +jrD +yfz +jrD +jrD +aao +aao +aao +aab +aaa +aaa +aaa +"} +(145,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +abs +abO +aad +tLt +akY +akX +wpf +aad +aad +alJ +akX +akX +akX +akX +aao +aao +aao +aao +aao +akL +agP +aoB +apZ +apU +arC +pwa +auh +bPq +auh +akL +aBu +aCc +pLH +lIS +jmD +ivW +aCd +aMk +anT +aCm +aCZ +aCZ +aCZ +aQa +aCZ +anT +aID +aJv +aKI +anT +aMn +aEd +aOh +aPh +aOV +aCZ +aqU +rhB +xHX +aUk +aKP +aKP +aKP +aKP +aKP +aKP +aKP +aKP +aKP +aKP +aKP +aKP +laO +aKP +bes +bes +bes +bes +bes +bes +bes +bes +bes +iVi +bes +xxx +bki +bky +aao +aao +aao +tNf +xNa +lnK +cSP +vVZ +fCb +kTs +kTs +aao +aao +aao +aao +pcF +kBn +fwV +dIb +dIb +kBn +kBn +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +dov +fOx +gio +fOx +gOr +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +rnc +rnc +rnc +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +rnc +vqY +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jcR +jrD +jrD +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aab +aaa +aaa +aaa +"} +(146,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +abr +alJ +akX +buQ +akX +hKM +aad +aad +tLt +akX +aao +aao +aao +aao +aao +aao +aao +aao +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +xgm +aCc +pLH +pgh +aao +kzF +ivW +aMk +anU +aCn +aCZ +aCo +aCo +aQa +aCZ +anT +anT +aJz +anT +anT +aEU +aLE +aML +aOb +aQo +aQl +aqU +sOZ +uxk +aUk +aKP +hDT +aKP +aKP +aKP +aKP +aVY +aKP +aKP +aKP +aKP +aKP +aKP +aKP +bes +bes +bes +xJp +bes +bes +bes +bes +bes +iVi +bes +bes +bki +beq +aao +aao +aao +eSK +gsM +gsM +lAN +vVZ +kTs +fCb +fCb +fCb +fCb +fCb +brE +pcF +kBn +kBn +kBn +fjP +kBn +fOx +fOx +fOx +fOx +dov +fOx +fOx +fOx +fOx +fOx +fOx +oye +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +sqj +oxp +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +rnc +jrD +jrD +jrD +jrD +jrD +jrD +oxp +jrD +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aab +aaa +aaa +aaa +"} +(147,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +mEC +fGK +fGK +fGK +mEC +mEC +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tAW +aqa +aqa +aqa +aqa +ata +ata +ata +aqa +rzR +aCc +aCc +pgh +aao +aao +fEE +cJn +anU +aCo +aCZ +aEg +aCo +aQa +aCZ +anT +cOu +aJA +aKJ +aEd +aMo +aCZ +aMM +aPi +aQp +aQm +aqU +sOZ +uxk +aUk +aKP +aKP +mbh +aKP +aKP +aKP +aKP +aKP +aKP +aKP +aKP +aKP +aKP +aKP +bes +bes +bes +bes +bes +bes +bes +bes +bes +iVi +bes +bes +bki +aao +aao +aao +aao +eWW +tYj +tYj +oEB +pbr +pbr +pbr +pbr +pbr +pbr +pbr +pbr +pcF +aao +aao +aao +wbp +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +oxp +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +tRI +jrD +jrD +jrD +iml +jrD +vqY +jrD +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(148,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tqS +xWl +xWl +gIT +xWl +xWl +tqS +aao +aao +aao +aao +aao +aao +aao +aao +aao +amG +aao +aao +aao +aao +aao +aao +aCc +oFx +aCc +aCc +aCc +pLH +aCc +aCc +aCc +gOK +xgr +aao +fEE +tkf +anU +aCp +aDb +aEh +aFb +aQa +aCZ +anT +aIF +eaZ +aCZ +aLE +aMp +aLE +aCo +aPj +aQq +aRs +anT +tTv +yfY +aUk +aKP +aKP +aKP +aKP +aKP +aKP +aKP +aKP +aKP +aKP +aKP +aKP +aKP +aKP +bes +bes +bes +gKF +bes +bes +bes +bes +mrF +iVi +bes +bes +aao +aao +aao +aao +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +fOx +fOx +dov +fOx +kSL +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +oxp +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +tRI +jrD +jrD +jrD +jrD +oxp +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jcR +jrD +jrD +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(149,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tqS +sFv +xRn +xRn +xRn +dgH +tqS +aao +aao +aao +aao +aao +aao +aao +aao +aao +wQC +gXp +eMX +aao +aao +aao +aao +aao +aao +aao +hgr +hgr +aao +aao +pLH +aCc +bFx +ukW +wtu +kpd +aMk +anW +anW +anW +anW +anW +aGc +anW +anW +anW +anW +anW +anW +anW +anW +anW +anW +anW +anW +anW +lcb +yfY +aUk +aKP +aKP +oNd +aKP +aSi +aZe +aTu +aZe +aZe +aZe +aTu +aZe +aZe +aTu +kwQ +bes +bes +bes +bes +bes +bes +bes +bes +awd +awd +awd +aao +aao +aao +aao +fOx +fOx +nrw +nrw +nrw +qoj +fOx +kok +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +kSL +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +oxp +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +cOl +rnc +rnc +rnc +rnc +vqY +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(150,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tqS +xWl +xWl +xWl +xWl +xWl +tqS +aao +aao +aao +aao +aao +aao +aao +qQn +gXp +tQw +tQw +tQw +eMX +aao +aao +aao +aao +aao +tQj +kzF +kzF +lAC +aao +aao +aCc +aCc +aCc +aCc +pLH +bMz +apo +anW +qsV +vFA +heD +wKA +nhF +anW +eBL +qsV +qsV +anW +qsV +anW +eBL +eBL +eBL +anW +uwP +uDe +uxk +aUk +aKP +aWL +aKP +aKP +aTr +atb +atb +atP +atP +atP +atP +atP +atb +gAK +bja +bes +bes +bes +bes +bes +bes +bes +bes +obf +awd +aao +aao +aao +aao +fOx +fOx +fOx +fOx +fOx +fOx +fOx +nrw +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +kSL +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +oxp +jrD +jcR +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jcR +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(151,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +azF +azF +azF +azF +azF +azF +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +pIN +tQw +xFZ +anj +tQw +tQw +aao +aao +aao +bQG +vXJ +khB +tQj +kzF +fEE +pLH +ovQ +aCc +aCc +aCc +aCc +aCc +aCc +aMk +anW +qsV +aEi +aEi +wKA +aEi +aJC +aEi +aEi +vFA +vUN +vFA +wET +aEi +aEi +aEi +aqx +oCK +mNP +yfY +aUk +aKP +aKP +aKP +aKP +aTr +atb +aZH +bal +bal +bal +bal +bal +bdE +atb +bja +bes +bes +qIp +bes +bes +bes +bes +bes +aao +aao +aao +aao +aao +aao +fOx +fOx +fOx +dov +fOx +fOx +fOx +fOx +fOx +aao +aao +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jcR +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(152,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +pIN +tQw +tQw +tQw +wQC +tQw +ahx +tQw +pIN +eFh +tQw +tQw +tQw +tQw +aao +aao +fxZ +vXJ +vXJ +vXJ +bQG +jAX +fEE +pLH +ovQ +aCc +aCc +pLH +aCc +aCc +pLH +aMk +anW +qsV +vFA +aDe +aGe +unS +unS +unS +mIs +kAj +qJM +pSf +aEi +pSf +iEm +lmO +aqx +oCK +mNP +yfY +aQu +aVr +aKP +uFN +aKP +aTr +atd +nRT +bam +bal +bbD +bal +bdd +nRT +atb +bja +bes +bes +bes +bes +bes +bes +bes +bes +bes +aao +aao +aao +aao +aao +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +fOx +fOx +fOx +dov +fOx +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +tRI +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(153,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +ahw +tQw +tQw +tQw +ahw +tQw +pIN +tQw +tQw +mRi +wQC +tQw +tQw +tQw +kfk +tQw +tQw +tQw +tQw +tQw +aao +bQG +vXJ +vXJ +vXJ +vXJ +khB +jAX +kzF +ivW +vkf +aCc +pLH +aCc +aCc +aCc +aCc +aMk +anW +anW +dLS +aDg +nFp +pSf +dNX +pSf +aEi +moe +unS +unS +aQt +unS +rKe +eeI +anW +uoo +otX +yfY +aQu +aUk +aKP +aKP +aKP +aTr +atd +nRT +ban +baR +bbE +baR +baR +nRT +atb +bja +gKF +bes +bes +bes +bes +bes +bes +bhr +bes +bes +bes +aao +aao +aao +aao +fOx +fOx +fOx +kSL +fOx +fOx +fOx +aao +aao +aao +aao +aao +fOx +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +sqj +jrD +jrD +jrD +jrD +sus +jrD +aao +aao +aao +aao +aao +aao +aao +aao +jcR +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(154,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +pIN +tQw +ahw +tQw +wQC +tQw +tQw +sNQ +aao +wQC +tQw +tQw +ahw +tQw +tQw +idT +vXJ +vXJ +vXJ +vXJ +vXJ +aao +aao +kzF +lSb +aCc +aCc +aCc +aCc +aCc +aCc +aMk +anW +wHM +sSY +mUb +sdl +vFA +vFA +vFA +aEi +aEi +aEi +aHO +fWY +pSf +qcE +mIs +aRu +xiP +gjN +yfY +aQu +aUk +aKP +aKP +aMR +aTr +atb +nRT +bao +baS +bbF +bao +baS +bdF +atb +bja +bes +bes +aEX +aEX +aEX +aEX +bes +bes +bes +bes +bes +aao +aao +aao +aao +aao +fOx +fOx +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +qoj +fOx +fOx +fOx +fOx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tRI +jrD +jrD +jrD +tRI +jrD +sus +aao +aao +aao +aao +aao +aao +aao +aao +jrD +jrD +jrD +jrD +jrD +jrD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gOr +gOr +gOr +gOr +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(155,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +ujC +ujC +tQw +pIN +tQw +qvA +tQw +wQC +tQw +dKR +aao +aao +gmN +tQw +tQw +ujC +ujC +tQw +ukv +bQG +vXJ +vXJ +aao +aao +aao +aao +aao +pJn +ivW +pLH +pLH +aCc +aCc +aCc +aMk +anW +pyq +tlU +pyq +tlU +aEi +jNN +qWA +aJD +aKO +aEi +aHO +fJW +aEi +sHO +vFA +ocA +oCK +otX +yfY +aQu +aQu +aOk +aOk +aQu +aTr +atd +nRT +bap +baT +bbF +bap +baT +nRT +atb +bja +bes +bes +aEX +aEX +aEX +aEX +aEX +aEX +bes +bes +pCa +bes +aao +aao +aao +aao +aao +fOx +fOx +kSL +fOx +aao +aao +aao +aao +aao +aao +aao +qoj +fOx +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gNz +cpc +bLA +bLA +bLA +aao +dEr +bLA +sIP +aao +aao +aao +aao +aao +aao +aao +aao +bLA +bLA +bLA +bLA +bLA +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(156,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +pIN +tQw +tQw +tQw +tQw +tQw +rLR +aao +aao +aao +gmN +tQw +ujC +ujC +tQw +tQw +mda +mda +aao +aao +aao +kzF +lAC +kzF +kzF +lAC +jPQ +ivW +aCc +aCc +aCc +aMk +anW +anW +anW +anW +anW +drx +aHO +lDa +lDa +aKO +aEi +aEi +rBn +oes +nnA +jUJ +anW +xBv +lNg +qRm +dxH +dxH +fTj +dxH +dTI +aYv +atd +nRT +baq +baU +bbF +bar +baU +nRT +atb +bja +bes +bes +bes +aEX +aEX +aEX +aEX +aEX +aEX +bes +bes +bes +bes +aao +aao +aao +aao +gCE +gCE +ecK +gCE +aao +aao +aao +aao +aao +gCE +gCE +gCE +rAs +rAs +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +bTW +izh +jGd +izh +izh +aao +lUq +izh +uPm +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(157,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +ujC +ujC +tQw +tQw +tQw +aao +laj +tQw +tQw +tQw +eFh +aao +aao +aao +aao +aao +wQC +tQw +tQw +tQw +ahw +tQw +tQw +aao +aao +aao +aao +kzF +kzF +kzF +aao +aao +aao +aCc +aCc +aCc +aMk +apo +pbM +dZl +kle +anW +voz +wBK +wBK +vFA +hho +wBK +aEi +aEi +aEi +iaS +aui +aqx +oCK +mNP +xaC +etw +etw +etw +etw +vby +qhl +atb +nRT +bap +baT +bbF +bcl +baT +nRT +atb +bja +bes +bes +bes +bes +bes +bes +bes +bes +bes +bes +pCa +bes +bes +bes +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +aao +gCE +aao +aao +gCE +gCE +gCE +gpg +gpg +gpg +gCE +gCE +gCE +gpg +gCE +gCE +gCE +gCE +gCE +buy +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +fRH +izh +izh +izh +izh +aao +aao +aao +bTW +uPm +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +jGd +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +jGd +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(158,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +ahw +tQw +tQw +ujC +ujC +tQw +tQw +tQw +aao +aao +wQC +tQw +tQw +tQw +kBB +aao +aao +aao +aao +wQC +tQw +tQw +tQw +tQw +ujC +tQw +tQw +aao +aao +aao +kzF +lAC +aao +aao +aao +aao +pLH +pLH +aCc +aMk +apo +dgi +nQF +qRj +anW +vfW +nuQ +whw +vFA +prU +whw +mKi +esS +sEb +sEb +nkE +aqx +oCK +mNP +yfY +aQu +aVq +aVq +aQu +aQu +aYx +atd +nRT +bar +baU +bbF +bar +baU +nRT +atb +bja +bes +bes +bes +bes +bes +bes +bes +bes +bes +bes +bes +bes +bes +bes +aao +aao +aao +gCE +gCE +wWK +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +usG +gCE +gCE +gCE +qFY +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +bTW +izh +uPm +izh +izh +aao +aao +aao +bTW +uPm +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(159,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +ahw +tQw +aao +aao +aao +wQC +pbK +tQw +tQw +rLR +aao +aao +aao +aao +wQC +tQw +eFh +tQw +ujC +ujC +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +rLM +aMk +cPh +pbM +apo +qxo +anW +anW +anW +aoc +aoc +anW +aoc +aoc +anW +aoc +aoc +anW +anW +oCK +otX +yfY +aUk +aKP +mUW +aWK +aQu +aYx +atd +nRT +bap +baT +bbF +bap +baT +aKL +atb +bja +bes +bes +bes +bes +bes +bes +xJp +bes +bes +qIp +bes +bes +bes +bes +aao +aao +aao +gCE +gCE +gCE +gpg +gCE +gCE +gpg +gpg +gCE +gCE +wWK +gCE +gCE +gCE +gCE +wWK +gCE +gCE +gCE +gCE +gCE +usG +gCE +gCE +gCE +sfI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +fRH +tgL +izh +izh +sLr +izh +izh +aao +aao +aao +bTW +uPm +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +"} +(160,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +wQC +tQw +tQw +eFh +aao +jgW +gXp +eMX +aao +wQC +tQw +tQw +gXp +gXp +tQw +ahw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +arD +bMz +hQD +aqa +aqa +ejG +aqa +aqa +aqa +ata +aqa +aSg +mzu +aSg +aSg +aSg +mzu +mzu +aSg +oCK +otX +yfY +aUk +aKP +hDT +aKP +aSh +aYx +atb +nRT +bar +baU +bbF +bar +baU +nRT +atb +bja +bes +bes +bes +bes +bes +bes +bes +bes +bes +bes +bes +bes +bes +aao +aao +aao +aao +aao +gCE +gCE +gCE +ecK +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +wWK +gCE +ecK +gCE +gCE +qFY +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +bTW +izh +izh +sLr +izh +izh +aao +aao +aao +aao +bTW +uPm +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +aao +aao +aao +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +"} +(161,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +wQC +tQw +tQw +tQw +qQn +tQw +tQw +tQw +gXp +tQw +ahx +ujC +ujC +aij +tQw +tQw +tQw +tQw +tQw +pIN +tQw +tQw +tQw +gXp +eMX +aao +aao +aao +arD +arD +eJf +arD +arD +rOP +arD +arD +arD +arD +arD +aKP +aKP +aKP +aKP +aKP +aKP +mUW +aMR +mgz +mNP +yfY +aQu +aVr +aKP +ixH +aSh +eYA +aZh +cuG +crd +rgm +bbG +bap +baT +nRT +atb +bja +bes +bes +bes +aEX +bes +bes +bes +bes +bes +gKF +bes +bes +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +ecK +gCE +gCE +qFY +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +bTW +izh +hKD +izh +aao +aao +aao +aao +aao +aao +bTW +uPm +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(162,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +jgW +tQw +tQw +tQw +xFZ +pIN +tQw +ahw +ujC +ujC +tQw +tQw +ujC +ujC +tQw +tQw +xFZ +tQw +gXp +tQw +pIN +tQw +tQw +ahw +tQw +tQw +eMX +aao +aao +aao +aao +arD +arD +arD +arD +arD +arD +iNe +arD +arD +aKP +laO +aKP +aKP +aKP +aKP +aMR +aQu +dpU +mNP +mlt +dmE +mwq +aTu +aTu +aTu +aTp +aZi +nRT +bar +baU +bbH +bar +baU +nRT +atb +bja +bes +bes +aEX +aEX +bes +bes +bes +bic +bes +bes +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +rxJ +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +ohD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +bTW +uPm +izh +izh +aao +aao +aao +aao +aao +aao +bTW +uPm +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(163,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +ahw +tQw +tQw +aao +aao +aao +aao +aao +wQC +tQw +tQw +eFh +aao +chq +tQw +tQw +ujC +ujC +tQw +tQw +tQw +tQw +tQw +sNQ +ahw +gmN +xFZ +xFZ +ahy +tQw +tQw +tQw +xFZ +xFZ +tQw +tQw +eMX +aao +aao +aao +arD +arD +eJf +lSU +aao +aao +aao +aao +aKP +aKP +aKP +aMR +aOk +aOk +aQu +aQu +oCK +poV +fFs +uxk +dTB +rbs +rbs +dRc +dTB +dTB +nRT +bap +baT +bbF +bap +baT +bdF +atb +bja +bes +aEX +aEX +aEX +bes +bes +bes +bes +bes +bes +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gpg +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +sON +gCE +gCE +gCE +qFY +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +fRH +izh +uPm +izh +izh +aao +aao +aao +aao +izh +izh +izh +bAe +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +jGd +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(164,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +ahw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +wQC +ahx +xFZ +sNQ +aao +aao +gmN +xFZ +xFZ +xFZ +xFZ +xFZ +xFZ +xFZ +sNQ +aao +tQw +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +eMX +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aQu +aQu +aQu +ceA +oCK +uDe +haV +yfY +rbs +oPM +eKZ +ifC +hKO +dTB +nRT +bao +baS +bbF +bao +baS +nRT +atb +bja +bes +aEX +aEX +bes +xxx +bes +bes +bes +bes +bes +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +wWK +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +ecK +gCE +gCE +wWK +gCE +sfI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +bTW +izh +uPm +izh +fRH +tgL +tgL +tgL +nkQ +izh +izh +izh +sLr +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +jGd +izh +izh +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(165,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +adZ +adZ +afY +uvl +vRK +adZ +adZ +aao +aao +aao +aao +aao +adZ +ank +aev +aev +app +adZ +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +azf +tQw +tQw +eMX +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +dvz +prz +cgi +rTc +uFZ +dvz +ttr +xsX +xTk +rkh +dvz +nRT +bat +baW +bbI +bat +baW +nRT +atb +bja +bes +aEX +bes +bes +bes +bes +bes +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +usG +gpg +gpg +gCE +qFY +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +bTW +xAh +izh +tgL +izh +izh +izh +izh +uPm +izh +izh +izh +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(166,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +adZ +adZ +aft +ycM +bNl +ahz +aik +adZ +adZ +aao +aao +aao +aao +adZ +anl +aev +aev +app +adZ +amk +amk +amk +amk +amk +amk +amk +amk +amk +amk +amk +tQw +tQw +gmN +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +lLe +gVF +mRz +fmx +dWx +rbs +aIe +mqO +ntF +jxj +dvz +dTB +aJy +aJy +nRT +aJy +aJy +bdI +atb +bja +bes +bes +bes +bes +bes +bes +bes +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +bLA +bLA +bLA +bvR +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +bTW +izh +izh +izh +izh +izh +izh +izh +jGd +izh +izh +izh +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(167,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +adZ +aeS +afu +afZ +msf +afu +afu +adZ +adZ +adZ +adZ +aao +gNH +adZ +anm +aeU +aev +apq +adZ +aqX +arE +asn +gvI +amk +ajm +sUQ +avM +lAF +aka +amk +tQw +tQw +tQw +gmN +tQw +tQw +tQw +eMX +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +ruo +mRz +sML +jjL +dTB +jKp +qpP +ntF +gJB +fyZ +dTB +atb +atb +atb +atb +atb +atb +atb +bja +bes +bes +bes +bes +bes +bes +bes +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +bTW +izh +izh +tgL +ucN +aao +aao +aao +aao +aao +aao +aao +fRH +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +sLr +aao +aao +aao +aao +aao +izh +izh +jGd +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(168,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +adZ +aeS +afu +aga +agK +ahA +afu +ain +aev +aev +adZ +aao +gNH +lUM +aev +aev +aoE +apr +adZ +aqY +arF +arF +atc +amk +auj +auY +fnv +awz +aqc +amk +aao +tQw +tQw +tQw +wQC +tQw +tQw +tQw +gXp +gXp +qQn +gXp +gXp +gXp +gXp +gXp +eMX +aao +aao +aao +aao +dTB +noQ +mRz +sML +ieW +xaE +jSt +mqO +ntF +ifC +gEM +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +wWK +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +bTW +izh +izh +uPm +aao +aao +aao +aao +aao +aao +aao +aao +bTW +izh +izh +izh +jGd +izh +izh +izh +izh +izh +uPm +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(169,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +adZ +aeT +afu +agb +agL +afu +ail +adZ +aev +aev +adZ +aao +gNH +lUM +aev +anM +aqb +aps +adZ +tkY +arF +aso +arF +atI +aqc +auY +avN +ajO +axo +amk +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +xFZ +xFZ +kfk +tQw +xFZ +tQw +tQw +tQw +eFh +aao +aao +aao +aao +aao +ruo +mRz +sML +bKV +dTB +rGD +ntF +jSt +jbq +cry +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +bLA +izh +izh +izh +jGd +bTW +izh +izh +sLr +aao +aao +aao +aao +aao +aao +fRH +tgL +izh +uPm +izh +izh +izh +izh +gtX +gtX +izh +izh +izh +izh +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +jGd +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +izh +izh +izh +izh +izh +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(170,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +ahw +tQw +aao +aao +aao +adZ +adZ +afd +afd +agM +afd +afd +adZ +aev +ajU +adZ +adZ +adZ +adZ +ano +adZ +afd +afd +adZ +amW +arF +arF +ate +amk +rUs +auY +fnv +awB +aqc +amk +aao +aao +tQw +tQw +aBz +tQw +sNQ +tQw +ahw +tQw +pIN +tQw +ahw +wQC +tQw +tQw +tQw +eMX +aao +aao +aao +sYL +ruo +rnv +sML +dWx +rbs +nIS +pAX +ifC +uLT +dTB +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +waJ +waJ +wIw +aao +aao +aao +aao +aao +aao +aao +aao +gCE +bLA +izh +izh +izh +izh +izh +izh +uPm +izh +aao +aao +aao +aao +aao +aao +bTW +izh +izh +sLr +izh +izh +izh +aao +aao +aao +byG +bLA +bLA +bLA +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +jGd +izh +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(171,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +adZ +afw +afw +agN +afw +afw +adZ +aeU +aev +aev +aev +alK +amH +aev +vyV +aev +aev +adZ +amk +arG +ara +atf +amk +aqc +aqc +ass +aqc +aqc +amk +aao +aao +aao +tQw +wQC +eFh +tQw +tQw +tQw +tQw +pIN +tQw +tQw +tQw +xFZ +tQw +tQw +eFh +aao +aao +aao +dTB +qbp +rbl +hvd +oox +dTB +efF +pxP +ifC +qLD +xZL +aao +aao +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +bLA +izh +izh +izh +tgL +izh +izh +uPm +izh +aao +aao +aao +aao +aao +aao +lUq +izh +wUD +izh +izh +izh +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +jGd +izh +izh +izh +izh +izh +izh +izh +izh +jGd +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(172,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +adZ +fMZ +agc +agc +agc +afx +adZ +aev +aev +iAw +aev +aev +amH +aev +aev +aev +aev +aev +adZ +adZ +adZ +adZ +adZ +aum +amX +amk +amk +amk +amk +amk +amk +aao +aao +gmN +sNQ +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +wQC +tQw +tQw +aao +aao +aao +aao +bGQ +eJu +iyp +oBy +rbs +lAR +oJv +ifC +irZ +dTB +aao +gCE +rAs +rAs +sfI +aao +aao +aao +aao +aao +aao +sON +rAs +rAs +rAs +sfI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +sON +gCE +gCE +gCE +gCE +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +bLA +izh +izh +gtX +izh +izh +izh +uPm +izh +aao +aao +aao +aao +aao +izh +izh +izh +uPm +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(173,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +adZ +adZ +agc +agc +agc +adZ +adZ +aev +aev +aev +aev +aev +amH +aev +anN +aev +aev +aev +aev +hvQ +aev +aev +ain +agd +agd +amX +awC +kIF +axp +ayA +amk +anI +anI +anI +anI +anI +anI +aao +aao +aao +aao +tQw +tQw +tQw +gmN +ahw +tQw +tQw +aao +aao +aao +nVJ +xfp +lqC +wdd +dTB +rbs +rbs +pJd +dTB +dTB +gCE +gCE +gCE +gCE +wWK +sfI +aao +aao +aao +aao +aao +ecK +gCE +wWK +gCE +gCE +sfI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +sON +rAs +rAs +rAs +gCE +gCE +gCE +gCE +gCE +rAs +rAs +gCE +gCE +gCE +gCE +wWK +ecK +bLA +uPm +aao +aao +bTW +jGd +izh +uPm +izh +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +jGd +izh +izh +izh +izh +jGd +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +jGd +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(174,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +aao +aao +adZ +adZ +adZ +adZ +adZ +aCy +ahB +adZ +aev +aev +aev +adZ +adZ +adZ +adZ +adZ +adZ +adZ +adZ +aev +aev +aeU +aev +aev +adZ +auo +agd +avO +auY +aqc +axT +wCs +amk +anI +aAM +aAO +aAO +aAO +anI +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +bQw +qjm +oof +mHx +vRX +aOn +spd +spd +pgV +gCE +gCE +gCE +gCE +gCE +gCE +qFY +aao +aao +aao +aao +aao +usG +gpg +gCE +gCE +gCE +qFY +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +rAs +gCE +gCE +sON +gCE +bLA +sLr +aao +aao +bTW +izh +izh +uPm +izh +izh +izh +jGd +izh +izh +izh +izh +uPm +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(175,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +aao +aao +adZ +aev +aeU +aev +age +agQ +ahC +ain +aev +aev +anM +adZ +adZ +alL +amJ +adZ +anO +aoG +adZ +aqb +aqb +anl +anl +aev +adZ +aup +agd +auy +auY +aqc +aqc +orT +amk +anI +aAN +aAO +aCq +aDi +anI +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +gXp +gXp +gXp +hFg +eFh +tbe +oBy +tQw +ujC +ujC +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +qFY +aao +aao +aao +aao +aao +aao +aao +usG +gpg +gCE +qFY +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +sON +gCE +gpg +gpg +gpg +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +rAs +gCE +gCE +cVL +aao +aao +aao +bTW +izh +izh +uPm +izh +izh +izh +izh +fRH +tgL +izh +jGd +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +jGd +izh +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +jGd +izh +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(176,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +ahw +tQw +tQw +tQw +aao +aao +adZ +aew +aeV +aev +adZ +agQ +ahD +adZ +adZ +adZ +adZ +adZ +adZ +alM +amK +adZ +anP +amK +adZ +adZ +adZ +adZ +adZ +adZ +adZ +agd +agd +amX +awD +aEs +aEs +ayB +amk +anI +aAO +aAO +aAO +aAO +anI +anI +aao +aao +aao +aao +aao +aao +aao +aao +wQC +tQw +tQw +tQw +tQw +eFh +uWv +oBy +tQw +tQw +pIN +gCE +gCE +gCE +gCE +gCE +gCE +gpg +gpg +gCE +gCE +rAs +rAs +sfI +aao +aao +aao +aao +aao +aao +gCE +qFY +gCE +gCE +gCE +gCE +aao +aao +aao +aao +sON +rAs +gCE +gCE +gCE +tsB +gCE +gCE +gCE +gpg +gpg +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +qFY +aao +aao +aao +aao +bTW +izh +izh +uPm +izh +izh +izh +fRH +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(177,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +aao +aao +adZ +bXe +aex +afA +adZ +agS +ahE +adZ +aao +aao +aao +aao +adZ +alN +amL +adZ +anQ +amK +adZ +sUQ +aqc +aqc +asp +aqc +amk +auq +auZ +amk +amk +amk +amk +amk +amk +anI +anL +hmm +aCr +anL +anI +anI +anI +aao +aao +aao +aao +aao +aao +aao +gmN +tQw +tQw +tQw +tQw +eFh +wmm +rrV +tQw +tQw +aWN +gCE +gCE +gCE +gCE +xuU +qFY +gCE +gCE +gCE +gpg +gCE +gCE +gCE +rAs +rAs +rAs +rAs +rAs +rAs +gCE +qFY +wWK +gCE +gCE +gCE +gCE +waJ +gCE +gCE +gCE +gCE +gCE +gCE +gCE +wWK +gCE +gCE +gCE +gCE +gCE +wWK +ecK +gCE +gCE +gCE +gCE +gCE +gCE +gCE +bvR +aao +fRH +tgL +izh +izh +izh +uPm +jGd +fRH +kWV +izh +gtX +gtX +gtX +sLr +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(178,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +aao +aao +adZ +adZ +adZ +afB +adZ +agT +ahF +adZ +aao +aao +aao +adZ +adZ +alO +amM +adZ +anR +amM +adZ +adZ +aGh +ahv +ajd +aqc +amk +agd +ava +avP +awE +amk +aao +anI +azg +aAi +aAP +aAP +aCs +aAP +xuV +aFf +anI +aao +anI +anI +anI +anI +anI +anI +nEv +gmN +tQw +tQw +tQw +arK +uek +hfo +tQw +tQw +ujC +gCE +gCE +gCE +gCE +gCE +ohD +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +rAs +rAs +rAs +rAs +rAs +mya +rAs +gCE +gCE +qFY +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +ecK +gCE +gCE +xuU +gCE +gCE +gCE +gCE +bLA +tgL +izh +izh +izh +izh +izh +izh +tgL +izh +izh +uPm +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +jGd +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +jGd +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(179,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +aao +aao +adZ +aey +aeW +afC +agf +agU +ahG +adZ +aao +aao +adZ +adZ +ala +alP +alP +anq +anS +anS +viJ +adZ +adZ +auY +asr +aqc +amX +aur +avb +asu +awF +amk +aao +anI +azh +aAj +afz +xWm +xWm +xWm +aEn +aFg +anI +aao +anI +aIJ +uaB +uaB +uaB +aMq +bJb +hEN +hEN +vhP +vhP +ozW +eJu +oBy +tQw +ujC +ujC +gCE +gCE +gCE +gCE +qFY +aao +aao +aao +aao +sON +gCE +gCE +gCE +gCE +gCE +gCE +gCE +sBu +gCE +gCE +gCE +gCE +gCE +gCE +xuU +gCE +waJ +gCE +gCE +wWK +qFY +gCE +gCE +sON +gCE +gCE +gCE +gCE +gCE +gCE +gCE +ecK +gCE +gCE +gCE +gCE +gCE +gCE +sBu +bLA +izh +izh +izh +jGd +izh +gtX +gtX +gtX +gtX +gtX +sLr +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(180,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +aao +adZ +aez +aeX +afD +agf +agV +ahC +adZ +aao +aao +adZ +aky +alb +alQ +alc +alc +alc +alQ +apw +aqd +adZ +arI +ass +aqc +atK +agd +avc +asu +awF +amk +aao +anI +azi +aAk +afz +aBB +aCt +bZL +xWm +aFh +anI +aao +anI +aIK +aJE +aKQ +aKQ +hmm +lqC +pxV +pxV +sQP +sQP +iyp +qnT +rrV +tQw +tQw +pIN +gCE +gCE +gCE +gpg +ohD +aao +aao +aao +foB +gCE +gCE +gCE +bet +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +kQc +gpg +gCE +gCE +qFY +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +qFY +gCE +ecK +gCE +gCE +gCE +gCE +gCE +gCE +gCE +bLA +izh +izh +izh +izh +uPm +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(181,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +aao +adZ +aez +aeY +afE +agg +agW +ahI +adZ +aao +aao +adZ +akz +alc +alc +amN +aff +alc +alc +alc +aqe +adZ +amk +amk +amk +amk +agd +avd +amk +amk +amk +aao +anI +azj +aAl +aAk +afz +afz +xWm +aEo +aFi +anI +aao +anI +aIK +aJF +anI +anI +anI +tMA +gXp +gXp +gXp +gXp +evt +myW +hcR +tQw +tQw +aWN +gCE +gCE +ohD +aao +aao +aao +aao +aao +aao +usG +gpg +gpg +gpg +gCE +gCE +gCE +gCE +gpg +gpg +gpg +gpg +gpg +gpg +gpg +gpg +ohD +aao +aao +ecK +gCE +qFY +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +qFY +gCE +ecK +gCE +gCE +gCE +gCE +gCE +gCE +gCE +bLA +izh +izh +izh +izh +sLr +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +jGd +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(182,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +ahw +tQw +aao +aao +adZ +aeA +aeZ +afF +adZ +agX +ahJ +adZ +aao +aao +adZ +aeE +rqa +alR +alc +alc +alQ +alc +apx +aqf +adZ +aao +azm +amk +amk +auy +ave +amk +amk +aao +aao +anI +anI +aAm +aAl +aBC +xWm +aDk +aEp +anI +anI +aao +anI +aIK +aJG +anI +aao +aao +gXp +tQw +ahw +tQw +tQw +nFH +aTv +aMT +tQw +tQw +ujC +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +ecK +qFY +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +ecK +qFY +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gpg +gpg +gpg +gpg +gpg +gpg +gCE +bLA +jGd +izh +izh +sLr +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +otb +otb +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(183,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +aao +aao +adZ +adZ +afa +afG +adZ +agX +ahI +adZ +adZ +aao +adZ +akB +alc +alS +alQ +alc +anV +aoI +alc +aqg +adZ +aao +amk +amk +atL +asu +avf +atL +amk +amk +aao +aao +anI +anI +aAQ +aBD +xWm +aDl +anI +anI +aao +aao +anI +aIL +aJG +anI +aao +aao +tQw +tQw +tQw +xFZ +xFZ +aSm +lMw +aMT +tQw +tQw +ujC +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +usG +gCE +gCE +gCE +wWK +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +ecK +qFY +gCE +gCE +wWK +gCE +gCE +gCE +bet +gCE +gCE +gCE +ohD +aao +aao +aao +aao +aao +aao +dEr +bLA +izh +izh +uPm +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +otb +otb +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(184,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +aao +aao +aao +adZ +adZ +adZ +adZ +agX +agc +aio +adZ +adZ +adZ +aeQ +ald +daB +amO +afy +amO +aoJ +afy +aqh +adZ +amk +amk +atg +agd +aut +avg +agd +awG +amk +amk +aao +aao +anI +aAR +ggW +aCu +aDm +anI +aao +aao +aao +anI +aIK +aJG +anI +aao +wQC +tQw +tQw +eFh +aao +aao +aao +aSm +aMV +tQw +aao +aao +sIh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +usG +gCE +gCE +sfI +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +sON +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +bTW +gtX +gtX +gtX +sLr +izh +izh +izh +bLA +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +jGd +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +jGd +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(185,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +adZ +adZ +ahL +agc +aiR +adZ +adZ +afd +afd +afd +amP +adZ +amP +afd +afd +afd +adZ +amk +ast +ath +agd +auu +avh +agd +agd +sBB +amk +anI +ayE +anI +anL +hmm +aCv +anL +anI +anI +anI +anI +anI +aIM +aJH +anI +aao +wQC +tQw +tQw +tQw +eMX +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +usG +gpg +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +sON +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +sfI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +bLA +bLA +bLA +bLA +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(186,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +jgW +eMX +aao +aao +adZ +adZ +ahL +aiS +ajp +ajV +akD +ale +alU +alU +alU +alU +alU +alU +aqi +arb +arJ +asu +ahH +atM +auv +avi +avQ +awH +asu +gvd +ayC +azk +aAn +uaB +aBF +aCw +aDn +aEq +aFj +uaB +uaB +uaB +aIN +aJG +anI +aao +gmN +tQw +xFZ +tQw +eFh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +sfI +gCE +gCE +gCE +aao +aao +aao +sON +gCE +gpg +gCE +gCE +gpg +gpg +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +qFY +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +otb +otb +izh +izh +otb +otb +izh +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(187,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +wQC +tQw +eMX +aao +aao +adZ +adZ +aiT +ajq +ajW +akE +akE +akE +amQ +anu +amQ +aoL +apy +aqj +arc +tFO +axs +ati +atN +yhG +avj +avR +awI +axs +tFO +ayD +azl +aAo +aAS +rXY +aCx +poF +poF +aFk +aGg +aGU +xNL +aIO +tkN +anI +aao +aao +amG +aao +wQC +xFZ +gXp +eMX +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +ecK +bhs +gCE +gCE +gCE +rAs +gCE +gCE +gCE +gCE +gCE +gCE +qFY +aao +aao +ecK +gCE +gCE +gCE +gCE +gCE +wWK +gCE +ohD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +jGd +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +otb +otb +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +otb +otb +izh +izh +otb +otb +izh +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(188,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +ahw +tQw +tQw +wQC +tQw +adZ +adZ +adZ +adZ +adZ +aCy +ajr +adZ +afd +afd +afd +amR +adZ +amR +afd +afd +afd +adZ +amk +asw +lVr +agd +aux +avk +agd +awJ +axt +amk +ayE +aEF +anI +anI +anI +anI +anI +anI +anI +anI +vbi +aHQ +hWa +wko +anI +aao +aao +aao +aao +aao +aao +aao +amG +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +usG +ohD +aao +aao +usG +gCE +gCE +gCE +gCE +gCE +gCE +ohD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +otb +otb +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(189,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tIq +eFh +afd +agh +agc +ahM +agc +agc +agc +adZ +akF +alf +alf +alf +anv +alf +alf +alf +aqk +adZ +amk +amk +atj +agd +aoK +aoK +oea +awK +amk +amk +aao +aao +aao +aao +aao +aao +aao +aao +aao +anI +anI +vbi +aHQ +wko +anI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +wWK +gCE +gCE +gCE +wWK +gCE +aao +aao +aao +aao +aao +usG +gpg +gpg +gpg +gpg +ohD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +jGd +izh +izh +izh +izh +izh +izh +jGd +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +jGd +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(190,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +wQC +eFh +afd +agi +qNu +adZ +aiq +agc +ajs +adZ +akG +alg +alV +amS +alW +alg +alW +apz +aql +adZ +aao +amk +amk +atO +asu +asu +atO +amk +amk +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +anI +anI +aIP +aJJ +anI +anI +anI +anI +anI +anI +anI +anI +anI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +jGd +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +otb +otb +izh +jGd +izh +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(191,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +wQC +eFh +adZ +adZ +adZ +adZ +aiq +agc +ajt +adZ +akH +alh +alW +amS +alW +aod +alW +alg +aqm +adZ +aao +aao +amk +amk +auy +avl +amk +amk +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +anI +aIQ +wko +anI +aMr +wjW +ePk +ajn +aMr +wjW +xKb +anI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +otb +otb +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(192,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +wQC +eFh +afd +agi +aha +adZ +agc +agc +aju +adZ +akI +ali +alW +amT +alW +aoe +alW +alg +aqn +adZ +aao +aao +aao +amk +auz +avm +amk +aao +aao +jgW +aig +reL +aao +anI +anI +anI +anI +anI +anI +anI +aao +anI +aIR +aJL +anI +tSI +gan +tSI +xfN +jwj +pTA +tSI +anI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +wWK +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +izh +otb +otb +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(193,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +eFh +afH +agc +agh +ahM +agc +agc +ajt +adZ +akJ +alj +alg +alg +alg +amT +aoM +apA +aqo +adZ +aao +aao +jgW +amY +auA +avn +amY +gXp +gXp +eFh +tQw +amG +anI +anI +aAU +anL +aDp +arN +aFl +anI +anI +anI +aIL +aJM +anI +hZc +jKI +hZc +evA +lPL +ooi +hZc +anI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +bLA +izh +izh +izh +izh +izh +jGd +izh +izh +izh +aao +aao +aao +aao +aao +aao +izh +jGd +izh +izh +izh +jGd +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +izh +izh +otb +otb +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(194,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +ahw +tQw +eFh +adZ +adZ +adZ +adZ +air +agc +ajv +adZ +adZ +alk +alY +amU +amU +amU +alY +apB +adZ +adZ +arL +gXp +atk +amY +auB +avo +amY +wQC +tQw +wQC +gXp +eFh +anL +aAT +aAY +aPq +aDq +hWa +aFm +awe +anI +anI +aIK +wko +anI +aMr +vgZ +aMr +uPK +ePk +wjW +uUV +anI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +waJ +waJ +waJ +waJ +waJ +waJ +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +bLA +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +jGd +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(195,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +eFh +afd +agj +agc +ahM +agc +agh +agc +adZ +adZ +adZ +adZ +adZ +adZ +adZ +adZ +adZ +adZ +aao +arM +tQw +eFh +amk +auC +avp +amk +arM +gXp +axU +tQw +eFh +anL +aAU +aAU +anL +aDq +hwy +hWa +aGi +awA +anL +aIS +aJN +anI +anI +fgD +anI +anI +anI +anI +anI +anI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +wWK +bLA +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +jGd +izh +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(196,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +eFh +afd +agi +agZ +adZ +adZ +aiU +adZ +adZ +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +wQC +asx +eFh +amY +auB +eJE +amY +wQC +tQw +tQw +tQw +eFh +anI +anL +anL +anI +aDr +hWa +hWa +hWa +aGW +anL +aIK +aJO +anI +aLH +aLI +aMW +aHP +anI +juo +dtf +anI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +wWK +gCE +gCE +gCE +gCE +gCE +gCE +bLA +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +jGd +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +otb +otb +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(197,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +wQC +eFh +adZ +adZ +adZ +adZ +ais +agl +agl +adZ +aao +aao +aao +aao +aao +aao +aao +aao +jgW +gXp +eFh +tQw +tQw +amY +auA +avn +amY +gmN +xFZ +axV +tQw +eFh +anL +aAV +aBG +aCz +aDq +xUo +hWa +hWa +aGW +aHR +aIK +wko +aHR +aLI +aMs +aLH +aOo +anL +aQv +aRx +anI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +bLA +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +jGd +izh +izh +izh +izh +izh +izh +izh +otb +otb +izh +aao +aao +aao +aao +aao +aao +aao +nCp +nCp +nCp +izh +izh +izh +otb +otb +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(198,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +wQC +eFh +vAs +agk +agk +agk +ait +aiV +agl +adZ +aao +aao +aao +jgW +gXp +gXp +gXp +gXp +tQw +tQw +wrz +tQw +tQw +amk +auD +eJE +anw +aao +aao +wQC +axV +eFh +anL +aAW +aBH +aCA +aDs +hWa +aFn +hWa +aGW +hmm +aIU +aJQ +hmm +aLH +aMt +aMs +aLI +aPq +aQw +aRy +anI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +gCE +gCE +bLA +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +jGd +izh +izh +izh +izh +jGd +izh +izh +izh +izh +izh +izh +izh +otb +otb +izh +izh +otb +otb +izh +izh +aao +aao +aao +aao +izh +izh +nCp +nCp +nCp +izh +izh +izh +izh +izh +izh +otb +otb +izh +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(199,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +wQC +eFh +vAs +agl +ahb +agl +aiu +bkY +ajw +adZ +aao +aao +aao +wQC +tQw +tQw +tQw +tQw +tQw +sNQ +tQw +tQw +tQw +amk +amk +amk +amk +aao +aao +tQw +wQC +eFh +anI +anL +anL +anI +aDt +hWa +hWa +hWa +aGW +anL +aIK +aJR +anI +aLI +aLH +aLH +aXc +anI +anI +anI +anI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +wWK +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +wWK +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +bLA +izh +jGd +izh +izh +izh +izh +izh +izh +izh +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +otb +otb +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +jGd +izh +izh +izh +otb +otb +izh +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(200,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tIq +tQw +adZ +adZ +adZ +adZ +adZ +adZ +adZ +adZ +aao +jgW +gXp +tQw +tQw +tQw +tQw +tQw +eFh +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +jgW +tQw +eFh +anL +aAX +aAU +anL +aDq +hWa +hWa +aFo +aGY +anL +aIV +aJS +anI +anI +aMu +aMu +anI +anI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +jGd +izh +izh +izh +izh +izh +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(201,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +gmN +xFZ +tQw +eMX +aao +aao +aao +aao +aao +aao +aao +wQC +tQw +tQw +tQw +ahw +tQw +tQw +eFh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +wQC +tQw +eFh +anL +aAY +aAU +aPq +aDq +hWa +aFo +aFp +anI +aob +wvR +aJX +aob +aob +aob +anI +anI +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +jGd +izh +izh +izh +izh +izh +jGd +izh +otb +otb +izh +izh +izh +jGd +izh +izh +izh +wfC +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(202,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +gXp +gXp +aSn +gXp +gXp +gXp +gXp +tQw +tQw +tQw +tQw +tQw +tQw +tQw +sNQ +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +wQC +tQw +eFh +anI +anI +aAU +anL +aDu +aEt +aFp +anI +anI +aob +aIW +aJU +aFV +aGd +aob +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +wWK +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +wWK +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +bLA +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +hPS +otb +izh +izh +izh +otb +otb +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(203,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +gmN +xFZ +tQw +xFZ +xFZ +xFZ +tQw +tQw +tQw +tQw +tQw +tQw +tQw +eFh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gmN +ahw +tQw +eMX +anI +anI +anI +anI +anI +anI +anI +aao +aob +aIX +aJV +aKS +aLM +aob +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +bLA +izh +izh +izh +izh +izh +jGd +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +jGd +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +aao +aao +izh +izh +otb +otb +izh +izh +izh +izh +izh +izh +izh +pTH +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(204,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +ahw +tQw +tQw +tQw +tQw +sNQ +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +sNQ +aao +aao +aao +aao +aao +aao +aao +aao +aob +aDB +aJW +aKT +aGj +aob +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +wWK +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +bLA +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +jGd +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(205,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +wQC +tQw +xFZ +sNQ +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aob +aob +wvR +aJX +aob +aob +aob +aao +aao +aao +aao +aao +aob +aob +aob +aob +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +mHp +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +jGd +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(206,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +ahw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +eNx +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aob +aob +aHS +aIZ +aJY +aKU +aob +aob +aao +aao +aao +aao +aob +aob +aTC +aUD +aob +aob +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +bLA +izh +izh +izh +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +jGd +izh +izh +otb +otb +izh +jGd +izh +tdB +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(207,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +ahw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aob +aob +mTQ +aHT +aJa +aJZ +aKV +aLO +aob +aob +aao +aao +aob +aob +aSo +aTD +aUE +aVx +aob +aob +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +wWK +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +wWK +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +bLA +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +otb +otb +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(208,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aob +aob +aGk +aHT +aHU +aHV +aKa +aKW +aKV +aMv +aob +aob +aob +aob +aRz +aSp +aTE +aUF +aVy +aVZ +aob +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +wWK +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +bLA +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(209,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aob +aFq +aGl +axn +aHV +aJc +aKb +aKX +aLQ +aMw +aMX +aOp +aPr +aMX +aRA +aSq +jzD +aUG +aVz +aHc +aob +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +wWK +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +bLA +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +izh +izh +izh +izh +izh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(210,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +ahw +tQw +tQw +ozQ +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +ahw +tQw +tQw +tQw +tQw +ahw +tQw +tQw +tQw +aao +aao +aao +aob +aFr +aGm +bny +aHW +bQi +aKc +aKY +aLR +aMx +aMY +aOq +aPs +aMY +aRB +aSr +aTG +bQi +aVz +aWb +aob +aao +aao +gCE +gCE +wWK +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +wWK +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(211,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aob +aob +aGn +aHd +aHX +aJd +aKd +aKZ +aLa +aMy +aob +aob +aob +aob +aRC +aSs +aTH +aUH +aVA +aWc +aob +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(212,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +ahw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aob +aob +aHe +aHd +aJe +aKe +aLa +aLS +aob +aob +aao +aao +aob +aob +aSt +aTI +aUI +aVB +aob +aob +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(213,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aob +aob +aHY +aJf +aKf +aLb +aob +aob +aao +aao +aao +aao +aob +aob +aTJ +aUJ +aob +aob +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +wWK +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(214,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aob +aob +aob +aob +aob +aob +aao +aao +aao +aao +aao +aao +aob +aob +pIN +pIN +tQw +tQw +tQw +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(215,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +ahw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +ahw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +ahw +tQw +tQw +tQw +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(216,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +ahw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +gCE +gCE +wWK +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +wWK +gCE +gCE +aao +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(217,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +ahw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(218,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +tQw +tQw +ahw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +ahw +tQw +tQw +tQw +gCE +gCE +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aab +aaa +aaa +aaa +cJd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(219,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +ahw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aab +aaa +aaa +aaa +cJd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(220,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +tQw +tQw +tQw +tQw +tQw +tQw +tQw +aao +aao +tQw +tQw +aao +aao +aao +aao +aao +gCE +gCE +gCE +wWK +gCE +gCE +gCE +gCE +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +cJd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(221,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +tQw +tQw +tQw +aao +tQw +tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +cJd +aaa +aaa +aaa +aaa +aaa +cJd +cJd +cJd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(222,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gCE +gCE +gCE +gCE +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cJd +cJd +cJd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(223,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(224,1,1) = {" +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(225,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} diff --git a/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm b/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm new file mode 100644 index 000000000000..907f40733d2e --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm @@ -0,0 +1,1899 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"ab" = ( +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"ac" = ( +/obj/structure/surface/table, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"af" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"ah" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/marshal_office) +"ai" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"aj" = ( +/turf/open/mars, +/area/bigredv2/outside/n) +"ak" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"al" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/marshal_office) +"am" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"ap" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"aq" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"ar" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"at" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/marshal_office) +"aw" = ( +/obj/structure/bed, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"ax" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"ay" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"az" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"aA" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"aB" = ( +/obj/structure/machinery/flasher/portable, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"aD" = ( +/obj/structure/closet/l3closet/security, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"aN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"aO" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"aP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"aQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"aR" = ( +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"aY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ba" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"bb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"bc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"bd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"bg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"bh" = ( +/obj/structure/machinery/light, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"bi" = ( +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"bj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"bk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"bl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/good_item, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"bn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"bp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + density = 0; + dir = 1; + icon_state = "door_open"; + name = "\improper Marshal Office Armory" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"br" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"bs" = ( +/obj/structure/closet/secure_closet/marshal, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"bx" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"by" = ( +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"bA" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"bB" = ( +/obj/structure/surface/table, +/obj/item/ore/diamond, +/obj/item/ore/uranium, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"bD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/red/north, +/area/bigredv2/outside/marshal_office) +"bE" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/marshal_office) +"bF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"bG" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"bL" = ( +/obj/structure/window_frame/solaris, +/obj/item/shard, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"bM" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"bN" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"bO" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/n) +"bP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/marshal_office) +"bQ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westright, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"bR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"bV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"bW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + icon_state = "door_locked"; + name = "\improper Marshal Office Armory" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"bX" = ( +/obj/structure/surface/table, +/obj/item/ore/uranium, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"bY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/red/west, +/area/bigredv2/outside/marshal_office) +"bZ" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"ca" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/red/northwest, +/area/bigredv2/outside/marshal_office) +"cb" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/n) +"cg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"ch" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"ci" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"cj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/red, +/area/bigredv2/outside/marshal_office) +"ck" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/red/southeast, +/area/bigredv2/outside/marshal_office) +"cl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/prison_security, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/shell, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/marshal_office) +"cm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/shell, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"cn" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/southright, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"co" = ( +/obj/structure/window_frame/solaris, +/obj/item/shard, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"cq" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"cr" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/marshal_office) +"cs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ct" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"cu" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"cy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"cz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/red/west, +/area/bigredv2/outside/marshal_office) +"cA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"cC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"cE" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"cF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"cL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"cM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/shoes/black, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"cN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Marshal Office" + }, +/turf/open/floor/red/west, +/area/bigredv2/outside/marshal_office) +"cO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"cP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/obj/item/tool/kitchen/knife, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"cR" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"cS" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"cT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"cU" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + density = 0; + dir = 1; + icon_state = "door_open"; + name = "\improper Marshal Office Holding Cell" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"cV" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + icon_state = "door_locked"; + name = "\improper Marshal Office Holding Cell" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"cW" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Checkpoint" + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"cX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"cY" = ( +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"cZ" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"db" = ( +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"dc" = ( +/obj/structure/surface/table, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"dd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"de" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"df" = ( +/obj/structure/bed, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"dg" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"dh" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"di" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"dj" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/medical) +"dk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"dl" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"do" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/n) +"dt" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"dG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/rack, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/marshal_office) +"ea" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_y = -2 + }, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"es" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"fh" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Evidence Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"gu" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"gJ" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"gL" = ( +/obj/structure/machinery/light, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"gV" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"hc" = ( +/obj/item/trash/wy_chips_pepper{ + pixel_y = -13; + pixel_x = 24 + }, +/obj/item/stack/sheet/metal{ + pixel_x = 10; + pixel_y = -5 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 3; + pixel_x = -1 + }, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"hF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/item/weapon/gun/pistol/holdout{ + pixel_x = 9; + pixel_y = 18 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"if" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"ip" = ( +/obj/item/weapon/shield/riot, +/obj/item/frame/table/reinforced, +/obj/item/shard, +/obj/item/shard, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"ix" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"iH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/botany, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"jj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"jn" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"jo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/weapon/baton/cattleprod{ + pixel_x = 11; + pixel_y = -7 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"jq" = ( +/obj/structure/machinery/camera/autoname, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1; + pixel_y = -1 + }, +/turf/open/floor/red/northeast, +/area/bigredv2/outside/marshal_office) +"jW" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"kG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"lU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"mz" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"mB" = ( +/obj/item/reagent_container/food/snacks/syndicake{ + pixel_x = -8; + pixel_y = -4 + }, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"np" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"nz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"nV" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/plating/platingdmg1, +/area/bigredv2/outside/marshal_office) +"ov" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/item/frame/table, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"pj" = ( +/obj/item/frame/table, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"pw" = ( +/obj/item/clothing/mask/gas{ + pixel_y = 7; + pixel_x = 7 + }, +/obj/item/stack/folding_barricade{ + pixel_y = -4; + pixel_x = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"pG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"qm" = ( +/obj/structure/bed, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"qG" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/cmb{ + pixel_y = -1; + pixel_x = -3 + }, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"qM" = ( +/obj/item/clothing/mask/gas{ + pixel_y = 9 + }, +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"qX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/weldingtool{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"rA" = ( +/obj/item/clothing/mask/gas, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"rC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 + }, +/turf/open/floor/red/east, +/area/bigredv2/outside/marshal_office) +"rL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/red/southwest, +/area/bigredv2/outside/marshal_office) +"so" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"sy" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"sR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/botany, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"tu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/stack/sheet/metal{ + pixel_x = 1 + }, +/obj/item/frame/rack, +/turf/open/floor/plating/platingdmg1, +/area/bigredv2/outside/marshal_office) +"ug" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/clothing/suit/armor/riot{ + pixel_y = -9; + pixel_x = -12 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"ui" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"uo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ut" = ( +/obj/item/clothing/mask/gas{ + pixel_x = 10; + pixel_y = -12 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"uy" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 3; + pixel_y = -11 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"uA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/botany, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"uX" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"vi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/armor/riot{ + pixel_y = 5; + pixel_x = 7 + }, +/obj/item/shard, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"wm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"wB" = ( +/obj/item/storage/toolbox{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"wL" = ( +/obj/structure/machinery/light, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"xk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"xF" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -9 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"yb" = ( +/obj/structure/window_frame/solaris, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"yx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Marshal Office Prison Toilet" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"yY" = ( +/obj/item/ammo_casing/shell, +/obj/item/storage/box/MRE{ + pixel_x = -1; + pixel_y = -6 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"za" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/shell, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"zv" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"zD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office Brig"; + density = 0; + icon_state = "door_open" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"AG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/revolver/small{ + pixel_x = -11; + pixel_y = 13 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"AI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/tool/screwdriver{ + pixel_x = -13; + pixel_y = 9 + }, +/obj/item/tool/crowbar/red{ + pixel_y = -14; + pixel_x = 2 + }, +/obj/item/stack/tile/plasteel{ + pixel_x = 16; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"BS" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/marshal_office) +"DR" = ( +/obj/item/weapon/shield/riot{ + pixel_x = -3; + pixel_y = -7 + }, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Ee" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + density = 0; + dir = 1; + icon_state = "door_open"; + name = "\improper Marshal Office Armory" + }, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/marshal_office) +"Ek" = ( +/obj/item/stack/folding_barricade{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Fs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/revolver/cmb{ + pixel_y = -11; + pixel_x = 5 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/trash/sosjerky{ + pixel_x = -12; + pixel_y = 17 + }, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_y = 1; + pixel_x = -7 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"FA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -8; + pixel_y = -5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"FK" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"Gs" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"Hl" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_y = -9; + pixel_x = -7 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Ho" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"HO" = ( +/obj/structure/surface/table, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "red"; + phone_id = "Marshal Office" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"HS" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Io" = ( +/obj/structure/closet/l3closet/security, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"IR" = ( +/obj/structure/machinery/light, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/obj/item/shard, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/marshal_office) +"Kb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_y = 24 + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"Ll" = ( +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"Lq" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"LM" = ( +/obj/item/frame/rack, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Ml" = ( +/obj/item/ammo_casing/shell, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = 8; + pixel_y = 12 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Mq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = -8; + pixel_x = -6 + }, +/obj/item/trash/semki{ + pixel_y = -14 + }, +/obj/item/stack/sheet/metal{ + pixel_x = 10; + pixel_y = -5 + }, +/turf/open/floor/plating/platingdmg1, +/area/bigredv2/outside/marshal_office) +"MH" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 30 + }, +/obj/item/tool/soap/deluxe{ + pixel_y = -7; + pixel_x = -9 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"MM" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Marshal Offices"; + name = "\improper Marshal Offices Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"MS" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"Nc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/armor/riot{ + pixel_y = -6; + pixel_x = -8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"No" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/red/west, +/area/bigredv2/outside/marshal_office) +"NQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"Ow" = ( +/obj/structure/surface/table, +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Px" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Holding Cell" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"PL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"Qs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal{ + pixel_x = 1 + }, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/marshal_office) +"QW" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"Ro" = ( +/obj/item/ammo_casing/shell, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = -8 + }, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = -6; + pixel_y = -18 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"RJ" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"Sa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/rack, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Sf" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"Sj" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/beret/sec/warden{ + pixel_y = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"SF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/marshal_office) +"ST" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison"; + icon_state = "door_open" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"UU" = ( +/obj/item/ammo_casing/shell, +/obj/item/storage/box/MRE{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"VC" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/platingdmg1, +/area/bigredv2/outside/marshal_office) +"VS" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"VX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/marshal_office) +"Wi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"Ww" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/shell, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/shard, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"YT" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_y = -7; + pixel_x = -7 + }, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) + +(1,1,1) = {" +aa +VS +ab +uy +ab +ab +ST +aO +aY +bh +ah +by +bM +by +by +at +cz +cN +ah +ah +ah +dj +"} +(2,1,1) = {" +ab +aa +aa +at +aw +ab +ah +aP +aY +bi +ah +by +cZ +cZ +cZ +at +cA +bi +bG +cZ +gJ +dj +"} +(3,1,1) = {" +ab +aa +aa +at +at +at +ah +aP +aY +bi +ah +bA +cZ +cZ +cZ +fh +cA +cO +cU +cZ +ci +dj +"} +(4,1,1) = {" +ac +aa +aa +at +kG +az +ah +PL +aZ +bi +ah +bB +bN +bX +wL +at +cA +cP +bG +cZ +df +dj +"} +(5,1,1) = {" +ab +ak +sR +jj +ap +ap +np +aQ +ba +bj +ah +at +at +at +at +at +Kb +bk +ah +ah +ah +dj +"} +(6,1,1) = {" +zv +ab +MS +at +ab +ab +ah +aR +iH +bk +ah +ca +No +bY +rL +cZ +cA +bk +bG +cZ +ix +dj +"} +(7,1,1) = {" +ac +ab +Wi +at +at +at +ah +aR +bb +bl +ah +bD +by +bZ +cj +cZ +cA +bk +cV +cZ +ci +dj +"} +(8,1,1) = {" +af +ab +aw +at +ax +az +ah +es +bc +bk +ah +bD +by +by +cj +cZ +cC +wm +bG +cZ +df +dj +"} +(9,1,1) = {" +aa +aa +uA +dl +ab +ab +Sf +aR +bc +Gs +ah +jq +rC +rC +ck +cZ +cC +bi +ah +ah +ah +dj +"} +(10,1,1) = {" +VX +al +al +at +aw +ab +ah +so +bb +gL +ah +cZ +cZ +cZ +cZ +cZ +cC +bi +bG +cZ +de +dj +"} +(11,1,1) = {" +ah +am +aq +at +at +at +ah +QW +bb +bk +zD +bE +bP +bP +cl +cr +bb +bi +Px +cZ +ci +dj +"} +(12,1,1) = {" +ah +MH +ar +yx +ay +aA +ah +QW +bd +bn +br +bF +bn +bn +cm +cs +cE +cR +bG +cZ +qm +dj +"} +(13,1,1) = {" +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +bG +bQ +bG +ah +ct +nz +cS +ah +ah +ah +dj +"} +(14,1,1) = {" +ai +ai +if +RJ +ah +aB +Ll +UU +mB +ah +bs +Lq +ut +qM +bG +aP +bc +FK +bG +cZ +de +dj +"} +(15,1,1) = {" +aj +aj +aj +cq +ah +Io +Ro +sy +yY +ah +Ow +pj +LM +uX +bG +cu +bc +bk +cV +cZ +ci +dj +"} +(16,1,1) = {" +aj +aj +aj +cq +ah +aD +mz +HS +Ml +ah +HO +rA +Nc +gV +cn +ui +AG +bk +bG +cZ +df +dj +"} +(17,1,1) = {" +aj +aj +bO +cq +ah +dt +Ww +Hl +xF +ah +pG +xk +bR +Ek +co +lU +uo +bk +ah +ah +ah +dj +"} +(18,1,1) = {" +aj +aj +do +ai +ah +hc +za +Qs +BS +ah +Sj +FA +vi +uX +yb +jn +cF +bk +cW +db +dg +MM +"} +(19,1,1) = {" +aj +bO +gu +ai +ah +ea +dG +tu +IR +ah +jo +aN +Sa +pw +bL +wB +hF +NQ +bG +dc +dh +MM +"} +(20,1,1) = {" +bO +gu +ai +ai +ah +qG +Fs +nV +SF +Ee +ug +bg +ov +cg +bp +AI +Ho +bk +ah +bG +bG +dj +"} +(21,1,1) = {" +cb +ai +ai +ai +ah +YT +DR +Mq +VC +ah +bx +jW +bV +ch +ah +aR +cL +cT +cX +dd +dd +dk +"} +(22,1,1) = {" +cq +ah +ah +ah +ah +ah +ah +ip +ah +ah +ah +bL +bW +bG +ah +cy +cM +qX +cY +cY +di +cY +"} diff --git a/maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm b/maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm new file mode 100644 index 000000000000..8b49fafe5290 --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm @@ -0,0 +1,249 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"b" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/telecomm) +"c" = ( +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/telecomm) +"d" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"e" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"f" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"g" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/telecomm) +"h" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"j" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"k" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/telecomm) +"l" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/telecomm) +"m" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/telecomm) +"n" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/telecomm) +"o" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/telecomm) +"p" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/telecomm) +"q" = ( +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/telecomm) +"r" = ( +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/telecomm) +"s" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/telecomm) +"t" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/telecomm) +"u" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/telecomm) +"v" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/telecomm) +"w" = ( +/obj/structure/sign/safety/hazard, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/telecomm) +"x" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/telecomm) +"y" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz1_telecomm_cas) +"z" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz1_telecomm_cas) +"A" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_telecomm_cas) +"B" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz1_telecomm_cas) +"C" = ( +/turf/open/mars_cave, +/area/bigredv2/outside/lz1_telecomm_cas) +"D" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigred/ground/garage_workshop) +"E" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave, +/area/bigredv2/outside/lz1_telecomm_cas) +"F" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_telecomm_cas) +"G" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/outside/lz1_telecomm_cas) +"U" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz1_telecomm_cas) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +b +b +b +b +t +b +z +B +A +A +A +"} +(3,1,1) = {" +j +j +j +n +q +w +y +A +A +B +G +"} +(4,1,1) = {" +d +e +g +s +o +x +y +A +A +A +U +"} +(5,1,1) = {" +e +c +m +k +p +u +y +A +A +A +A +"} +(6,1,1) = {" +e +f +h +l +q +b +y +A +A +A +A +"} +(7,1,1) = {" +e +e +j +e +r +b +a +A +C +C +C +"} +(8,1,1) = {" +e +e +j +e +v +w +a +a +E +F +F +"} +(9,1,1) = {" +b +b +b +b +b +b +a +a +D +D +D +"} diff --git a/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm b/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm new file mode 100644 index 000000000000..897f76d0f656 --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm @@ -0,0 +1,2042 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ai" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"ak" = ( +/obj/effect/spawner/random/tool, +/turf/template_noop, +/area/template_noop) +"al" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"am" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"an" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"ao" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"aq" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/engineering) +"as" = ( +/turf/open/mars, +/area/bigredv2/outside/s) +"au" = ( +/turf/template_noop, +/area/template_noop) +"aD" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"aE" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"aF" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"aT" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"aU" = ( +/obj/structure/surface/rack, +/obj/item/device/camera_film, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"aV" = ( +/obj/structure/surface/rack, +/obj/item/device/analyzer, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"aW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"aY" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"aZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"ba" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/lightreplacer, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/engineering) +"be" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"bi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/mask/breath, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/sheet/metal, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"bl" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/machinery/door_control{ + id = "Engineering"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"bm" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bn" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/welding, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bo" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bp" = ( +/obj/item/folder/yellow, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"bq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engineering Workshop" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"br" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"bu" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engine Reactor Control" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/telecomm/engi) +"bv" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bw" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"bx" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"by" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bA" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"bB" = ( +/obj/item/stack/sheet/glass, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/firstaid/rad, +/turf/template_noop, +/area/template_noop) +"bD" = ( +/obj/structure/window_frame/solaris/reinforced, +/obj/effect/decal/cleanable/molten_item, +/turf/open/floor/plating, +/area/bigredv2/outside/telecomm/engi) +"bE" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/telecomm/engi) +"bF" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/telecomm/engi) +"bG" = ( +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/telecomm/engi) +"bH" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bJ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bK" = ( +/obj/item/folder/yellow, +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"bL" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bM" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"bN" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"bO" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bP" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"bQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/outside/engineering) +"bR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"bS" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm/engi) +"bT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/telecomm/engi) +"bU" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/telecomm/engi) +"bV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bZ" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/pen, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"ca" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = -32 + }, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"ce" = ( +/obj/item/tool/lighter/random, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"cf" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"cg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"ch" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"ck" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/radiation, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/engineering) +"cl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/welding, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"cm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"cn" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 1; + name = "\improper Engine Reactor" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"co" = ( +/obj/structure/closet/radiation, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"cp" = ( +/obj/item/folder/yellow, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"cq" = ( +/obj/effect/decal/cleanable/ash, +/obj/structure/machinery/power/breakerbox, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/telecomm/engi) +"cr" = ( +/obj/effect/decal/cleanable/molten_item, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/telecomm/engi) +"cs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engine Reactor Control" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/telecomm/engi) +"ct" = ( +/obj/structure/machinery/door_control{ + desc = "A remote control-switch for opening the engines blast doors."; + id = "rad_door"; + name = "Reactor Radiation Shielding control"; + pixel_x = 30; + req_access_txt = "7" + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/telecomm/engi) +"cv" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engine Reactor Control" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/telecomm/engi) +"cw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"cx" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"cy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"cz" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"cA" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"cB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"cC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"cD" = ( +/obj/structure/machinery/computer/area_atmos, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"cE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/high_rad{ + pixel_x = -32 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"cF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"cG" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Engineering"; + name = "\improper Engineering Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"cH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/effect/landmark/static_comms/net_two{ + broken_on_spawn = 1 + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/telecomm/engi) +"cI" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/extinguisher, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"cK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/molten_item, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm/engi) +"cM" = ( +/turf/open/mars, +/area/bigredv2/outside/lz2_south_cas) +"cN" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/lz2_south_cas) +"cO" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz2_south_cas) +"cP" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"cR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"cS" = ( +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"cT" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/lz2_south_cas) +"cX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Engineering Complex" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"cY" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/lz2_south_cas) +"da" = ( +/turf/closed/wall/mineral/uranium, +/area/bigredv2/outside/engineering) +"db" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/extinguisher, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"dc" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/lz2_south_cas) +"dd" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/lz2_south_cas) +"de" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/lz2_south_cas) +"df" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"di" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"dj" = ( +/obj/effect/decal/cleanable/dirt/greenglow, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"dk" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"dl" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz2_south_cas) +"dn" = ( +/turf/open/mars_cave, +/area/bigredv2/outside/lz2_south_cas) +"do" = ( +/obj/structure/machinery/compressor{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"dp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"dq" = ( +/obj/item/bananapeel, +/obj/effect/decal/cleanable/dirt/greenglow, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"dr" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "rad_door"; + name = "\improper Radiation Shielding" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"dt" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/s) +"dv" = ( +/obj/structure/machinery/power/turbine, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"dx" = ( +/obj/effect/decal/cleanable/dirt/greenglow, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"dy" = ( +/obj/structure/machinery/power/reactor/colony{ + name = "Reactor Turbine" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"dz" = ( +/obj/structure/machinery/light_construct, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"dA" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"dC" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/s) +"dE" = ( +/obj/structure/window_frame/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"dF" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/s) +"dG" = ( +/obj/structure/machinery/power/port_gen/pacman, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"dJ" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_south_cas) +"dK" = ( +/obj/structure/machinery/compressor{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"dO" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz2_south_cas) +"dR" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_south_cas) +"dS" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz2_south_cas) +"dT" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"dU" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/outside/lz2_south_cas) +"dV" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_south_cas) +"dW" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/outside/lz2_south_cas) +"dX" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"dY" = ( +/obj/effect/decal/cleanable/dirt/greenglow, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/engineering) +"dZ" = ( +/obj/effect/decal/cleanable/dirt/greenglow, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"eb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"ec" = ( +/obj/structure/catwalk/bigred, +/turf/open/gm/river/desert/shallow/covered, +/area/bigredv2/outside/engineering) +"ee" = ( +/obj/effect/decal/cleanable/molten_item, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"ef" = ( +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"eh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"ei" = ( +/obj/structure/machinery/compressor{ + dir = 1 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"ej" = ( +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"ek" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"el" = ( +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"em" = ( +/obj/structure/machinery/light_construct{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"en" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"eo" = ( +/obj/effect/decal/cleanable/dirt/greenglow, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz2_south_cas) +"ep" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"eq" = ( +/obj/effect/decal/cleanable/molten_item, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"er" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/molten_item, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"et" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/telecomm/engi) +"ev" = ( +/obj/structure/machinery/light_construct, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"ew" = ( +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"ex" = ( +/obj/effect/decal/cleanable/molten_item, +/obj/effect/decal/cleanable/dirt/greenglow, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/engineering) +"ey" = ( +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"ez" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"eA" = ( +/obj/structure/machinery/light_construct{ + dir = 1 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"eB" = ( +/obj/effect/decal/cleanable/dirt/greenglow, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave, +/area/bigredv2/outside/lz2_south_cas) +"eC" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/molten_item, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/telecomm/engi) +"eD" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/telecomm/engi) +"eE" = ( +/obj/structure/computerframe, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/telecomm/engi) +"eF" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/telecomm/engi) +"eG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/engineering) +"eH" = ( +/obj/effect/decal/cleanable/molten_item, +/turf/open/floor/panelscorched, +/area/bigredv2/outside/engineering) +"eI" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/telecomm/engi) +"eJ" = ( +/obj/effect/decal/cleanable/molten_item, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/engineering) +"eK" = ( +/obj/effect/decal/cleanable/molten_item, +/obj/effect/decal/cleanable/dirt/greenglow, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"eL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/engineering) +"eM" = ( +/obj/effect/decal/cleanable/dirt/greenglow, +/obj/effect/decal/cleanable/molten_item, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"eN" = ( +/obj/effect/decal/cleanable/dirt/greenglow, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_south_cas) +"eO" = ( +/turf/closed/wall/mineral/uranium/leaking, +/area/bigredv2/outside/engineering) +"fI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"gT" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"im" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"iQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"jr" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/lz2_south_cas) +"kN" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave, +/area/bigredv2/outside/lz2_south_cas) +"ng" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"oE" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "rad_door"; + name = "\improper Radiation Shielding" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/telecomm/engi) +"oK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"sU" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/lz2_south_cas) +"to" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"vs" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/telecomm/engi) +"vu" = ( +/obj/structure/machinery/power/apc/fully_broken{ + dir = 4 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/telecomm/engi) +"xl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/engineering) +"xz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm/engi) +"yH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/telecomm/engi) +"Ah" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars, +/area/bigredv2/outside/lz2_south_cas) +"Bo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm/engi) +"CA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/telecomm/engi) +"Dh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"Dq" = ( +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"ET" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"IE" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz2_south_cas) +"KJ" = ( +/obj/structure/window_frame/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/telecomm/engi) +"Lf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"LE" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/telecomm/engi) +"Nv" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"NT" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/telecomm/engi) +"NX" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/lz2_south_cas) +"Ph" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz2_south_cas) +"RN" = ( +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/telecomm/engi) +"Sz" = ( +/obj/item/stack/sheet/glass, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"SC" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"Tv" = ( +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/telecomm/engi) +"Uo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/telecomm/engi) +"WI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) + +(1,1,1) = {" +au +au +au +au +au +bp +by +ai +bX +fI +cx +cG +Ah +cT +cM +dT +dc +dl +dT +dT +dT +dT +dR +dW +dR +dR +dR +dR +dT +dT +"} +(2,1,1) = {" +au +au +au +au +au +an +bz +Nv +bY +Nv +cy +cG +NX +cO +cN +cO +dc +dl +dR +dR +dR +dR +dJ +dR +dW +dR +dR +dR +dR +dT +"} +(3,1,1) = {" +au +au +au +au +au +an +Nv +bO +Nv +Nv +cz +aq +Ph +cO +cO +cY +dd +dl +dR +dR +dR +dR +dR +dR +dR +dO +dR +dR +dR +dR +"} +(4,1,1) = {" +au +au +au +au +au +an +bA +bP +bZ +WI +cA +aq +Ph +Ph +jr +sU +de +kN +kN +kN +eB +kN +kN +kN +kN +kN +dn +dR +dR +dR +"} +(5,1,1) = {" +au +au +au +au +au +bq +aF +aF +aF +aq +aq +aq +dX +dX +aq +aq +dk +aq +aq +ex +eG +dk +dk +aq +aq +dT +dT +dS +dW +dR +"} +(6,1,1) = {" +au +au +au +au +au +ng +bw +oK +ca +aq +co +aq +cP +cR +dp +cP +df +do +dv +eb +dZ +dG +dK +dv +aq +aq +dT +dS +dV +dR +"} +(7,1,1) = {" +au +au +au +aU +bw +br +bB +Nv +fI +cn +cB +cn +cP +ez +ez +cR +cR +cP +eh +eh +eh +ew +ew +ew +aq +aq +dT +dT +dS +dR +"} +(8,1,1) = {" +au +au +au +aV +Nv +ng +Nv +Nv +gT +aq +aq +aq +db +cR +cR +eH +ew +cR +eh +eh +ew +ez +ez +cP +aq +aq +aq +dT +dS +dR +"} +(9,1,1) = {" +au +au +au +aW +ai +bs +Nv +ew +Sz +co +co +dk +cS +dj +dj +cS +ec +dj +dj +dj +ec +cS +cS +cS +cP +aq +aq +dT +dS +dR +"} +(10,1,1) = {" +bC +au +au +an +bi +ez +ez +cf +ew +cp +ew +dr +dj +dj +eO +cS +ec +cS +eO +dj +ec +cS +da +cS +dz +aq +aq +dT +dS +dR +"} +(11,1,1) = {" +au +au +au +aY +bj +ai +ai +cg +cg +cw +ew +dE +dj +dj +dj +dj +ec +cS +dj +dj +eK +dj +dj +dj +cP +aq +aq +dT +dS +dR +"} +(12,1,1) = {" +au +au +au +aZ +bQ +WI +WI +bR +ez +cC +ew +dE +dj +dj +da +cS +ec +cS +da +dj +eK +dj +eO +dj +dZ +dZ +aq +dT +dS +dR +"} +(13,1,1) = {" +au +au +au +ba +iQ +vs +vs +vs +vs +cs +vs +vs +vs +cS +cS +cS +ec +cS +ef +cS +ec +cS +dj +dj +eh +dZ +aq +dU +dV +dR +"} +(14,1,1) = {" +au +au +au +an +gT +vs +bE +eI +LE +yH +RN +eC +KJ +cS +da +cS +ec +ev +aq +em +ec +cS +da +cS +eb +eb +dY +eo +eN +dR +"} +(15,1,1) = {" +au +au +au +aZ +iQ +vs +bF +bS +Bo +CA +et +eD +bD +cS +cS +cS +cP +ew +ek +eq +ez +cS +cS +cS +ez +cR +eL +eo +dR +dR +"} +(16,1,1) = {" +ak +au +au +bb +fI +bu +bG +bT +NT +xz +RN +eE +oE +cS +da +cS +ew +ee +dy +ez +er +cS +da +cS +ew +ee +en +IE +dR +dR +"} +(17,1,1) = {" +au +au +au +bc +bk +vs +Uo +cH +cr +cK +et +eF +oE +cS +cS +cS +ew +ew +ey +ez +ez +cS +cS +cS +cP +cP +aq +IE +dR +dR +"} +(18,1,1) = {" +au +au +au +bd +iQ +vs +Tv +bU +ct +RN +vu +cq +KJ +dj +da +cS +ec +dz +aq +eA +ec +cS +da +dj +cP +cR +dk +IE +dR +dR +"} +(19,1,1) = {" +au +au +au +ng +bl +vs +vs +vs +vs +cv +vs +vs +vs +dj +dj +cS +ec +cS +el +cS +eM +dj +dj +dj +dZ +ez +dX +dT +dT +dT +"} +(20,1,1) = {" +au +au +au +ng +ck +bw +bw +di +bw +fI +ew +dr +cS +dj +eO +dj +ec +cS +da +cS +ec +dj +eO +dj +ez +ez +aq +dT +dT +dT +"} +(21,1,1) = {" +au +au +au +be +bm +bv +bv +fI +Nv +ez +ew +dr +dj +dj +dj +dj +ec +cS +cS +cS +ec +cS +dj +dj +cP +aq +aq +dT +dT +dT +"} +(22,1,1) = {" +au +au +au +ng +bn +aE +bH +fI +ch +ew +ew +dE +cS +dj +eO +cS +ec +cS +da +cS +ec +cS +da +dj +cP +eq +eJ +dT +dT +dT +"} +(23,1,1) = {" +au +au +au +ng +aD +al +ce +Nv +ew +ew +cD +aq +cS +dj +dj +dj +ec +cS +cS +cS +ec +cS +cS +cS +ew +dX +aq +dT +dT +dT +"} +(24,1,1) = {" +au +au +au +bf +bo +bo +bJ +fI +iQ +aq +aq +aq +dq +dZ +dZ +dZ +dZ +dZ +ew +ez +ez +ew +cP +cP +ee +dX +aq +dT +dT +dT +"} +(25,1,1) = {" +au +au +au +bg +to +Dh +im +bV +fI +cn +cE +cn +dZ +eh +eh +cR +cR +eh +eb +ep +ez +cP +cP +cP +dk +aq +dT +dT +dT +dT +"} +(26,1,1) = {" +au +au +au +aq +aq +bx +bK +br +cI +aq +co +dX +dx +eb +ej +dZ +df +ei +dv +ew +cP +df +do +dv +aq +dT +dT +dT +dT +dT +"} +(27,1,1) = {" +au +au +au +au +aq +aq +bL +br +cl +aq +aq +dX +dY +aq +aq +dk +eJ +eJ +eJ +aq +dk +dX +dk +aq +aq +dT +dT +dT +dT +dT +"} +(28,1,1) = {" +au +au +au +au +au +aq +bM +ao +xl +ET +ET +ET +ET +am +aq +as +as +as +as +dC +dA +au +au +au +au +au +au +au +au +au +"} +(29,1,1) = {" +au +au +au +au +au +aq +bN +Dq +cm +bR +cF +aT +Nv +Lf +aq +as +as +as +dt +dA +dF +au +au +au +au +au +au +au +au +au +"} +(30,1,1) = {" +au +au +au +au +au +aq +aq +aq +aq +aq +aq +aq +SC +cX +aq +as +as +dt +dA +dA +dA +au +au +au +au +au +au +au +au +au +"} diff --git a/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm b/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm new file mode 100644 index 000000000000..ac01a7d1f4f7 --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm @@ -0,0 +1,1342 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ao" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/outside/lz2_south_cas) +"au" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/shield/riot, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"az" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"bu" = ( +/obj/structure/closet/secure_closet/marshal, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cj" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cR" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"dx" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_research) +"fo" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/lz2_south_cas) +"fK" = ( +/obj/structure/machinery/light/double{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz2_south_cas) +"fQ" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/lz2_south_cas) +"gQ" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_sw) +"ie" = ( +/obj/item/prop/helmetgarb/spent_buckshot, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz2_south_cas) +"ii" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_sw) +"ik" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/lz2_south_cas) +"io" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_research) +"iF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_y = 3 + }, +/obj/item/newspaper, +/obj/item/shard{ + pixel_x = -8; + pixel_y = 7 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jj" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz2_south_cas) +"ki" = ( +/obj/structure/machinery/light/double{ + dir = 4 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/slug/baton{ + dir = 1; + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/explosive/grenade/slug/baton{ + dir = 4; + pixel_x = 9; + pixel_y = -4 + }, +/obj/item/explosive/grenade/high_explosive/airburst/hornet_shell{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/explosive/grenade/high_explosive/airburst{ + pixel_y = 8 + }, +/obj/item/storage/box/packet/baton_slug{ + pixel_x = -7; + pixel_y = -3 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kS" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves_sw) +"lQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_sw) +"mT" = ( +/obj/item/clothing/head/helmet/riot, +/turf/open/floor/plating/burnt_platingdmg3/west, +/area/bigredv2/caves/mining) +"nx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/lz2_south_cas) +"pn" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_sw) +"qm" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_south_cas) +"qW" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_sw) +"sJ" = ( +/obj/item/clothing/suit/storage/CMB, +/obj/structure/closet/secure_closet/marshal, +/obj/structure/machinery/light/double, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"sV" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"uJ" = ( +/obj/item/shard{ + pixel_x = 11; + pixel_y = 8 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vX" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves_sw) +"wn" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/lz2_south_cas) +"wJ" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lz2_south_cas) +"wK" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"wW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/prop/helmetgarb/riot_shield{ + pixel_y = -15 + }, +/obj/item/weapon/gun/launcher/grenade/m81/m79{ + pixel_x = -3; + pixel_y = 12 + }, +/obj/item/explosive/grenade/high_explosive/airburst/starshell{ + pixel_x = -11; + pixel_y = 1 + }, +/obj/item/restraint/handcuffs{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xS" = ( +/obj/item/trash/cigbutt, +/obj/item/shard{ + pixel_x = 9; + pixel_y = -5 + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz2_south_cas) +"yw" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves) +"zB" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"zP" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/lz2_south_cas) +"AD" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6"; + pixel_y = 20 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"Be" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Marshals Mining Security Post" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"Bm" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves_sw) +"Bz" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"BO" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz2_south_cas) +"BY" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_research) +"En" = ( +/obj/structure/window_frame/solaris/reinforced, +/obj/item/shard{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/item/shard{ + pixel_x = 5; + pixel_y = -9 + }, +/obj/item/shard, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"Et" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_research) +"Fp" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves_sw) +"FB" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/clothing/under/marine/ua_riot, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"FW" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/outside/lz2_south_cas) +"Jm" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz2_south_cas) +"Jy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/revolver/cmb, +/obj/item/device/flashlight/lamp/on{ + pixel_x = -5; + pixel_y = 17 + }, +/obj/item/clothing/mask/cigarette/cigar/havana, +/obj/item/shard, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"JV" = ( +/turf/closed/wall/wood, +/area/bigredv2/outside/lz2_south_cas) +"JW" = ( +/obj/structure/machinery/light/double, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_south_cas) +"KI" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"Le" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"MN" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/blood{ + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"Nu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"OV" = ( +/obj/structure/surface/rack, +/obj/item/restraint/handcuffs{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_y = 11 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"OY" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/lz2_south_cas) +"Qn" = ( +/obj/structure/window_frame/solaris/reinforced, +/obj/item/shard, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"QO" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_research) +"QS" = ( +/obj/structure/machinery/door/poddoor/two_tile{ + name = "\improper Eta Tunnel Lockdown" + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lz2_south_cas) +"QV" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves_sw) +"Rm" = ( +/obj/item/shard{ + icon_state = "small" + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz2_south_cas) +"Sy" = ( +/obj/item/weapon/broken_bottle, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"Tm" = ( +/obj/effect/decal/cleanable/blood{ + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"Ue" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bundle, +/obj/item/restraint/handcuffs{ + pixel_y = -3 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"Uh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_sw) +"UG" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"UX" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_sw) +"VR" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"Wy" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"WV" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_sw) +"Xl" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/lz2_south_cas) +"Xm" = ( +/turf/open/floor/plating/burnt_platingdmg3/west, +/area/bigredv2/caves/mining) +"XE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"XV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window{ + dir = 1 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"Yt" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/lz2_south_cas) +"Zk" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_sw) +"Zz" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) + +(1,1,1) = {" +cR +cR +cR +cR +cR +JV +fK +wn +ik +JW +VR +Ue +XE +MN +Tm +sJ +VR +cR +cR +cR +"} +(2,1,1) = {" +cR +cR +cR +cR +cR +qm +fo +jj +jj +ie +En +iF +wK +Bz +AD +bu +VR +cR +cR +cR +"} +(3,1,1) = {" +cR +Xl +zP +cR +yw +qm +fo +fQ +Xl +xS +Qn +Jy +uJ +Sy +mT +OV +VR +cR +cR +cR +"} +(4,1,1) = {" +ao +Xl +Xl +yw +yw +yw +OY +Xl +nx +Rm +XV +cj +KI +Zz +Xm +FB +VR +cR +cR +cR +"} +(5,1,1) = {" +fo +jj +jj +QS +wJ +QS +jj +fQ +Xl +BO +Wy +ki +Zz +kq +wW +au +VR +cR +cR +cR +"} +(6,1,1) = {" +fo +jj +jj +wJ +wJ +wJ +jj +jj +jj +BO +VR +VR +Be +VR +VR +VR +VR +cR +cR +cR +"} +(7,1,1) = {" +qm +Yt +Yt +yw +yw +yw +Zk +gQ +UX +pn +zB +zB +zB +cR +cR +cR +cR +cR +cR +cR +"} +(8,1,1) = {" +FW +Jm +Jm +cR +yw +cR +cR +zB +Zk +zB +zB +zB +zB +zB +cR +cR +cR +cR +cR +cR +"} +(9,1,1) = {" +BO +qm +cR +cR +cR +cR +cR +zB +zB +Nu +zB +zB +zB +zB +qW +cR +cR +cR +cR +cR +"} +(10,1,1) = {" +BO +qm +qm +cR +cR +cR +cR +cR +zB +sV +sV +sV +sV +ii +UX +cR +cR +cR +cR +cR +"} +(11,1,1) = {" +BO +qm +qm +Jm +Jm +cR +cR +cR +cR +sV +sV +sV +sV +Uh +UX +vX +cR +cR +cR +cR +"} +(12,1,1) = {" +qm +ik +ik +qm +Jm +qm +cR +cR +cR +cR +cR +sV +sV +ii +vX +vX +cR +cR +cR +cR +"} +(13,1,1) = {" +fo +jj +Xl +BO +ik +ik +cR +cR +cR +cR +cR +cR +zB +ii +vX +vX +cR +cR +cR +cR +"} +(14,1,1) = {" +cR +cR +cR +OY +jj +jj +BO +cR +cR +cR +cR +cR +zB +ii +UX +vX +cR +cR +cR +cR +"} +(15,1,1) = {" +cR +cR +cR +UX +kS +kS +pn +cR +cR +cR +cR +zB +zB +ii +kS +UX +cR +cR +cR +cR +"} +(16,1,1) = {" +cR +cR +cR +cR +UX +UX +pn +zB +cR +cR +cR +zB +zB +Uh +UX +kS +cR +cR +cR +cR +"} +(17,1,1) = {" +cR +cR +cR +cR +UX +Fp +zB +zB +zB +cR +cR +zB +zB +ii +UX +cR +cR +cR +cR +cR +"} +(18,1,1) = {" +zB +cR +cR +WV +UX +pn +zB +zB +cR +cR +cR +zB +zB +zB +Zk +cR +cR +cR +cR +cR +"} +(19,1,1) = {" +zB +cR +cR +cR +Fp +zB +zB +zB +cR +cR +cR +zB +zB +zB +zB +cR +cR +cR +cR +cR +"} +(20,1,1) = {" +zB +zB +zB +zB +zB +qW +qW +cR +cR +cR +zB +zB +Nu +zB +zB +cR +cR +cR +cR +cR +"} +(21,1,1) = {" +pn +zB +zB +qW +Bm +UX +UX +cR +cR +cR +zB +zB +zB +zB +zB +cR +cR +cR +cR +cR +"} +(22,1,1) = {" +pn +zB +ii +UX +UX +vX +vX +cR +cR +cR +UG +UG +UG +UG +UG +cR +cR +cR +cR +cR +"} +(23,1,1) = {" +QV +qW +Bm +UX +kS +UX +vX +cR +cR +cR +cR +zB +zB +zB +qW +cR +cR +cR +cR +cR +"} +(24,1,1) = {" +UX +UX +UX +kS +Fp +gQ +UX +UX +cR +cR +cR +zB +zB +ii +kS +cR +cR +cR +cR +cR +"} +(25,1,1) = {" +UX +UX +kS +UX +pn +ii +kS +UX +cR +cR +cR +zB +qW +qW +kS +kS +cR +cR +cR +cR +"} +(26,1,1) = {" +Fp +Zk +Zk +Zk +zB +cR +UX +UX +cR +cR +cR +cR +UX +lQ +kS +kS +cR +cR +cR +cR +"} +(27,1,1) = {" +pn +zB +zB +zB +cR +cR +cR +cR +cR +cR +cR +cR +UX +kS +kS +UX +cR +cR +cR +cR +"} +(28,1,1) = {" +pn +zB +zB +zB +cR +cR +cR +cR +cR +cR +cR +cR +gQ +UX +UX +Fp +zB +cR +cR +cR +"} +(29,1,1) = {" +zB +zB +zB +zB +zB +cR +cR +cR +cR +cR +cR +cR +zB +Zk +Zk +zB +zB +cR +cR +cR +"} +(30,1,1) = {" +zB +zB +zB +zB +zB +cR +cR +cR +cR +cR +cR +cR +cR +zB +Nu +zB +zB +cR +cR +cR +"} +(31,1,1) = {" +cR +zB +zB +zB +zB +cR +cR +cR +cR +cR +cR +cR +cR +zB +zB +zB +zB +zB +cR +cR +"} +(32,1,1) = {" +cR +cR +zB +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +zB +zB +zB +zB +zB +cR +cR +"} +(33,1,1) = {" +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +zB +zB +zB +zB +cR +cR +cR +"} +(34,1,1) = {" +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +zB +zB +zB +zB +cR +cR +cR +"} +(35,1,1) = {" +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +UG +UG +UG +cR +cR +cR +"} +(36,1,1) = {" +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +Le +Le +Le +Le +cR +cR +"} +(37,1,1) = {" +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +Le +Le +az +Le +Le +Le +Le +"} +(38,1,1) = {" +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +Le +Le +Le +Le +Le +Le +Le +Le +"} +(39,1,1) = {" +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +Le +Le +Le +Le +Le +Le +Le +az +"} +(40,1,1) = {" +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +Le +Le +Le +Le +Le +io +Le +dx +"} +(41,1,1) = {" +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +Le +Le +Le +QO +Le +Le +Le +Le +Le +"} +(42,1,1) = {" +yw +yw +yw +yw +cR +cR +cR +cR +cR +cR +Le +Le +Le +Et +az +Le +Le +dx +BY +cR +"} diff --git a/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm b/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm new file mode 100644 index 000000000000..7df1e7f87dbc --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm @@ -0,0 +1,994 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ac" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port) +"ad" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"ae" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"ah" = ( +/obj/structure/window_frame/solaris, +/obj/item/shard, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"ai" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Spaceport2"; + name = "\improper Spaceport Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port) +"aP" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Spaceport2"; + name = "\improper Spaceport Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"bh" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"bi" = ( +/turf/open/mars, +/area/bigredv2/outside/nw) +"by" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/outside/nw) +"bT" = ( +/obj/structure/fence, +/turf/open/mars, +/area/bigredv2/outside/nw) +"bY" = ( +/turf/template_noop, +/area/template_noop) +"cB" = ( +/obj/structure/surface/table, +/turf/open/floor/darkgreen2/east, +/area/bigredv2/outside/space_port) +"cS" = ( +/obj/structure/fence, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/nw) +"dq" = ( +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/outside/nw) +"dx" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/nw) +"dL" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/nw) +"dW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"en" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"et" = ( +/obj/item/trash/popcorn{ + pixel_y = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"fA" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"fT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/space_port) +"gh" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"gi" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"gp" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/outside/space_port) +"gD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/space_port) +"ic" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"iM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"iV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"jv" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"lf" = ( +/turf/open/asphalt/cement/cement2, +/area/bigredv2/outside/space_port) +"lM" = ( +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"lW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/bigredv2/outside/space_port) +"mV" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/nw) +"na" = ( +/obj/structure/largecrate, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"ob" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"qi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"qA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"qL" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"qY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"sC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"sD" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"ta" = ( +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement/cement9, +/area/bigredv2/outside/space_port) +"tv" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/nw) +"uh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"uu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1/north, +/area/bigredv2/outside/space_port) +"uF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"ve" = ( +/obj/structure/lz_sign/solaris_sign, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"vv" = ( +/obj/item/trash/hotdog{ + pixel_x = -12; + pixel_y = -11 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"vN" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"vW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"wu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"wD" = ( +/obj/structure/surface/table, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"wP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/space_port) +"wU" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkgreen2/north, +/area/bigredv2/outside/space_port) +"wV" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"xc" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"xn" = ( +/turf/open/floor/darkgreen2/west, +/area/bigredv2/outside/space_port) +"xy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/nw) +"xB" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/outside/space_port) +"yp" = ( +/obj/item/shard, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"yI" = ( +/turf/open/floor/darkgreen2/north, +/area/bigredv2/outside/space_port) +"zc" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/nw) +"zi" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"Ar" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"Az" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/darkgreen2/north, +/area/bigredv2/outside/space_port) +"AJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"Bc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/space_port) +"Bs" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"BC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"BT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"Ce" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/space_port) +"CD" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"DD" = ( +/turf/open/asphalt/cement/cement15, +/area/bigredv2/outside/space_port) +"Fd" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"Fw" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/nw) +"FL" = ( +/obj/item/shard, +/turf/open/floor/darkgreen2/north, +/area/bigredv2/outside/space_port) +"FW" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"GQ" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/outside/nw) +"GU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement, +/area/bigredv2/outside/space_port) +"Hu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement14, +/area/bigredv2/outside/space_port) +"Hz" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/outside/space_port) +"It" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"IL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"Je" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"Jt" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/nw) +"JE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/bigredv2/outside/space_port) +"JY" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"Kn" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"Ku" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"KV" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/nw) +"Lq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"Mv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/nw) +"MD" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkgreen2/east, +/area/bigredv2/outside/space_port) +"MH" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"Nj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"Ox" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"OM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Spaceport" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"OT" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/outside/nw) +"OX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/bigredv2/outside/space_port) +"QI" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"Rq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"Rt" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/nw) +"Sg" = ( +/obj/structure/fence, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/nw) +"St" = ( +/obj/item/trash/waffles{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"Sw" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/nw) +"TC" = ( +/obj/item/trash/cigbutt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"TD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"TP" = ( +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/space_port) +"TW" = ( +/turf/open/asphalt/cement, +/area/bigredv2/outside/space_port) +"Uv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"Uw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"UY" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"Vh" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"Vi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"Wu" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"WW" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"WZ" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"Xi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/nw) +"XF" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"XL" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/nw) +"XU" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/door_control{ + id = "Spaceport2"; + name = "Storm Shutters"; + pixel_x = 32 + }, +/turf/open/floor/darkgreen2/east, +/area/bigredv2/outside/space_port) +"XX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate, +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/nw) +"Yf" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/nw) +"Yw" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"Yz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/bigredv2/outside/space_port) +"YG" = ( +/turf/open/asphalt/cement/cement1/north, +/area/bigredv2/outside/space_port) +"YX" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"Zq" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/outside/space_port) +"ZJ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/nw) +"ZP" = ( +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/space_port) + +(1,1,1) = {" +YX +QI +QI +QI +QI +Uv +ac +bh +bh +by +by +by +bY +bY +bY +bY +bY +bY +bi +"} +(2,1,1) = {" +Wu +Wu +QI +uF +sC +Rq +ac +bi +Fw +Sw +Xi +Sw +Yf +Fd +bY +bY +Fd +ZJ +bi +"} +(3,1,1) = {" +ac +ac +lf +JE +Hu +ac +ac +Sw +Vi +jv +jv +jv +bT +bT +JY +Ar +bi +bi +bi +"} +(4,1,1) = {" +ac +QI +ZP +lW +fT +na +ac +Vi +Vi +jv +XX +Mv +KV +bT +uh +TD +bi +bi +bi +"} +(5,1,1) = {" +ad +QI +ZP +gD +TP +QI +ac +xc +xc +jv +FW +MH +CD +bT +uh +Ar +bi +bi +bi +"} +(6,1,1) = {" +ae +yp +Bc +gD +TP +na +ac +xc +Vi +jv +FW +WW +sD +bT +JY +Ar +by +bi +bi +"} +(7,1,1) = {" +ac +QI +Bc +lW +TP +QI +ac +xc +jv +jv +tv +gi +Rt +bT +JY +Ar +bi +bi +bi +"} +(8,1,1) = {" +ac +WZ +Bc +lW +TW +OX +Hu +zc +fA +IL +IL +gh +ob +gh +vN +vN +gh +vv +gh +"} +(9,1,1) = {" +ad +QI +ZP +wP +GU +Yz +Ce +qi +qA +qA +qA +wu +vN +XF +vN +vN +vN +XF +vW +"} +(10,1,1) = {" +ad +QI +ta +uu +YG +YG +DD +mV +Yw +Fd +vN +BT +vW +Fd +Fd +Fd +Fd +Fd +Fd +"} +(11,1,1) = {" +ac +WZ +QI +Uv +QI +QI +ac +ve +jv +jv +JY +BT +Vh +jv +xc +xc +xc +xc +xc +"} +(12,1,1) = {" +ac +ac +Bs +OM +aP +aP +ac +xc +xc +jv +uh +BT +Ar +jv +xc +xc +xc +xc +xc +"} +(13,1,1) = {" +ac +Hz +dW +iV +xn +xB +ac +xy +Jt +xc +JY +BT +vW +gh +gh +ic +Ox +gh +gh +"} +(14,1,1) = {" +ac +wU +Lq +iM +It +en +ac +OT +by +dL +JY +BT +vN +Kn +UY +vN +vN +vN +vN +"} +(15,1,1) = {" +ae +FL +zi +Bs +wV +qL +ai +by +by +dL +St +Nj +qY +AJ +AJ +AJ +AJ +AJ +AJ +"} +(16,1,1) = {" +ah +yI +Bs +iM +iM +lM +ai +GQ +bi +cS +et +vN +Ar +jv +jv +Jt +Jt +xc +xc +"} +(17,1,1) = {" +ai +yI +iM +Je +Bs +Uw +ai +by +by +cS +JY +Ku +TC +jv +dx +bi +bi +XL +Jt +"} +(18,1,1) = {" +ac +Az +Bs +iM +BC +wD +ac +dq +bi +cS +JY +vN +Ar +Sg +bi +bi +bi +bi +bi +"} +(19,1,1) = {" +aj +Zq +MD +XU +cB +gp +ac +by +bi +cS +JY +vN +Vh +Sg +bi +bi +bi +bi +bi +"} diff --git a/maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm b/maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm new file mode 100644 index 000000000000..5285427c0079 --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm @@ -0,0 +1,244 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"b" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"c" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/obj/item/tool/pickaxe, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"d" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"e" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"f" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"g" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"h" = ( +/obj/structure/surface/table, +/obj/item/tool/pickaxe, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"i" = ( +/obj/item/ore, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"j" = ( +/obj/effect/decal/remains/human, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"k" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"l" = ( +/obj/structure/surface/rack, +/obj/item/lightstick/red, +/obj/item/lightstick/red, +/obj/item/lightstick/red, +/obj/item/lightstick/red, +/obj/item/storage/box/lightstick/red, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"m" = ( +/obj/item/tool/shovel, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"n" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port) +"o" = ( +/obj/item/tool/pickaxe, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"p" = ( +/obj/item/tool/warning_cone, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"q" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/gas, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"r" = ( +/obj/structure/surface/table, +/obj/item/pizzabox, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"s" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"t" = ( +/obj/structure/ore_box, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"u" = ( +/obj/structure/sign/safety/hazard, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port) +"v" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Mining Operations" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"A" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"P" = ( +/obj/item/ore, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) + +(1,1,1) = {" +a +a +a +a +a +l +n +n +n +n +"} +(2,1,1) = {" +a +a +a +a +i +A +P +A +A +u +"} +(3,1,1) = {" +a +a +a +d +e +m +e +e +A +v +"} +(4,1,1) = {" +a +a +b +e +j +e +e +i +A +u +"} +(5,1,1) = {" +a +a +c +e +e +i +e +e +q +n +"} +(6,1,1) = {" +a +a +a +f +e +e +e +e +r +n +"} +(7,1,1) = {" +a +a +a +g +e +i +o +e +s +n +"} +(8,1,1) = {" +a +a +a +h +e +e +j +e +P +n +"} +(9,1,1) = {" +a +a +a +a +k +k +e +p +t +n +"} +(10,1,1) = {" +a +a +a +e +e +e +k +k +a +n +"} diff --git a/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm b/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm new file mode 100644 index 000000000000..0b6af75969c2 --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm @@ -0,0 +1,512 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/chapel) +"ac" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Chapel"; + name = "\improper Chapel Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/chapel) +"ad" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Chapel" + }, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"ae" = ( +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"af" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"ag" = ( +/obj/item/tool/candle, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"ah" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"ai" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"ak" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"al" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/tool/candle, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"an" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/blood{ + layer = 3; + pixel_x = 24 + }, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"ao" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Chapel"; + name = "\improper Chapel Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/chapel) +"ap" = ( +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"aq" = ( +/turf/open/floor/rampbottom/north, +/area/bigredv2/outside/chapel) +"as" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/chapel/west, +/area/bigredv2/outside/chapel) +"at" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"au" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"av" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"aw" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"ax" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"ay" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"az" = ( +/obj/item/tool/candle, +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"aA" = ( +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"aB" = ( +/obj/structure/surface/table/woodentable, +/obj/item/tool/candle, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"aC" = ( +/obj/item/tool/candle{ + icon_state = "candle2" + }, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"aD" = ( +/obj/structure/surface/table/woodentable, +/obj/item/weapon/chainofcommand, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"aE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"aF" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/chapel, +/area/bigredv2/outside/chapel) +"aG" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/chapel/west, +/area/bigredv2/outside/chapel) +"aH" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/chapel/west, +/area/bigredv2/outside/chapel) +"aI" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/chapel, +/area/bigredv2/outside/chapel) +"aJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/chapel/west, +/area/bigredv2/outside/chapel) +"aK" = ( +/turf/open/floor/chapel/west, +/area/bigredv2/outside/chapel) +"aL" = ( +/turf/open/floor/chapel, +/area/bigredv2/outside/chapel) +"aN" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/head/cardborg, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"aO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/surface/table/woodentable, +/obj/item/storage/bible, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"aP" = ( +/obj/item/tool/candle{ + icon_state = "candle3"; + item_state = "candle3" + }, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"aR" = ( +/obj/item/organ/heart, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"aS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"aT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/tool/candle{ + icon_state = "candle3" + }, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"aU" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/item/tool/candle, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"aW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"aX" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"aZ" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"ba" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"bc" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3; + pixel_x = 24 + }, +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"be" = ( +/turf/open/floor/rampbottom, +/area/bigredv2/outside/chapel) +"bh" = ( +/obj/item/tool/candle, +/turf/open/floor/chapel/west, +/area/bigredv2/outside/chapel) +"bi" = ( +/obj/item/tool/candle, +/turf/open/floor/chapel, +/area/bigredv2/outside/chapel) +"bj" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"bk" = ( +/obj/structure/machinery/door_control{ + id = "Chapel"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"bl" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"bm" = ( +/obj/structure/machinery/power/apc/power/south, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"bp" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"bq" = ( +/obj/item/tool/candle{ + icon_state = "candle4" + }, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) + +(1,1,1) = {" +ab +ab +ao +ao +ao +ao +ao +ab +ab +"} +(2,1,1) = {" +ab +af +ap +aP +aR +bq +ap +bk +ab +"} +(3,1,1) = {" +ac +ae +aq +au +aN +au +be +ae +ab +"} +(4,1,1) = {" +ac +ae +aZ +aD +aO +aZ +aZ +ae +ab +"} +(5,1,1) = {" +ab +aC +ah +as +aE +ah +as +bl +ab +"} +(6,1,1) = {" +ac +ag +at +aF +aW +at +aF +ae +ab +"} +(7,1,1) = {" +ac +ae +ay +aG +aT +ay +aG +ae +ab +"} +(8,1,1) = {" +ab +ae +av +aF +aS +ba +aI +ae +ab +"} +(9,1,1) = {" +ac +ai +aw +aH +aW +ay +aH +ae +ab +"} +(10,1,1) = {" +ac +ae +av +aI +aW +at +aF +bm +ab +"} +(11,1,1) = {" +ab +ak +ax +aJ +aU +ay +aH +ae +ab +"} +(12,1,1) = {" +ac +al +av +aI +aS +av +aI +aC +ab +"} +(13,1,1) = {" +ac +al +ay +aH +aW +ay +aH +ag +ab +"} +(14,1,1) = {" +ab +aW +av +aI +aW +av +aI +bl +ab +"} +(15,1,1) = {" +ad +an +az +aK +aS +bc +bh +ae +ab +"} +(16,1,1) = {" +ae +ae +aA +aL +aX +aA +bi +ae +ab +"} +(17,1,1) = {" +ab +ae +aB +aB +ae +bj +bj +bp +ab +"} diff --git a/maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm b/maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm new file mode 100644 index 000000000000..42c8551d2395 --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm @@ -0,0 +1,357 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"b" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/nw) +"c" = ( +/turf/open/floor/plating/warnplate/north, +/area/bigredv2/outside/nw) +"d" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/warnplate/north, +/area/bigredv2/outside/nw) +"e" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"f" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"g" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"h" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"i" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/telecomm/warehouse) +"j" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"k" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"l" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"m" = ( +/obj/item/shard, +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"n" = ( +/turf/open/floor/plating/warnplate/west, +/area/bigredv2/outside/nw) +"p" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/west, +/area/bigredv2/outside/nw) +"q" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"r" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"s" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"u" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"v" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"w" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"x" = ( +/obj/structure/prop/dam/crane/damaged, +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"y" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"z" = ( +/obj/structure/machinery/light, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"A" = ( +/obj/structure/surface/rack, +/obj/item/alienjar, +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"B" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/bigredv2/outside/nw) +"D" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/warehouse) +"H" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/plating/warnplate/southwest, +/area/bigredv2/outside/telecomm/warehouse) +"K" = ( +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/warehouse) +"O" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating/warnplate/west, +/area/bigredv2/outside/telecomm/warehouse) +"S" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 + }, +/turf/open/floor/plating/warnplate/east, +/area/bigredv2/outside/telecomm/warehouse) +"T" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/plating/warnplate/southeast, +/area/bigredv2/outside/telecomm/warehouse) +"V" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/telecomm/warehouse) +"Z" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 + }, +/turf/open/floor/plating/warnplate/east, +/area/bigredv2/outside/telecomm/warehouse) + +(1,1,1) = {" +b +b +b +n +p +n +b +b +b +b +"} +(2,1,1) = {" +i +O +O +H +q +j +u +j +j +b +"} +(3,1,1) = {" +i +K +D +V +q +j +v +w +y +b +"} +(4,1,1) = {" +i +K +K +V +q +j +j +j +j +b +"} +(5,1,1) = {" +i +S +Z +T +q +j +j +j +j +b +"} +(6,1,1) = {" +b +g +m +j +r +j +v +w +y +b +"} +(7,1,1) = {" +b +h +m +j +q +j +j +j +j +b +"} +(8,1,1) = {" +b +f +j +j +q +j +j +j +z +b +"} +(9,1,1) = {" +c +j +j +j +q +j +j +g +g +b +"} +(10,1,1) = {" +c +j +j +j +q +j +m +h +g +b +"} +(11,1,1) = {" +d +k +k +k +s +j +j +m +A +b +"} +(12,1,1) = {" +b +l +j +j +q +j +j +j +j +b +"} +(13,1,1) = {" +b +f +j +j +q +j +j +x +B +b +"} +(14,1,1) = {" +b +l +j +j +q +j +j +j +j +b +"} +(15,1,1) = {" +b +e +j +j +q +j +v +w +y +b +"} +(16,1,1) = {" +b +j +j +j +q +j +j +j +j +b +"} diff --git a/maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm b/maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm new file mode 100644 index 000000000000..291b83899b4b --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm @@ -0,0 +1,288 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"c" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"d" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port) +"e" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/lz1_north_cas) +"f" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"h" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"i" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz1_north_cas) +"j" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"F" = ( +/obj/structure/sign/safety/hazard, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port) + +(1,1,1) = {" +a +a +a +a +a +a +a +d +d +d +f +h +f +d +d +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +d +d +F +d +d +a +"} +(3,1,1) = {" +a +a +a +a +a +a +a +a +a +a +j +j +j +j +a +"} +(4,1,1) = {" +a +a +a +a +a +a +a +a +a +c +c +c +c +c +a +"} +(5,1,1) = {" +a +a +a +a +a +a +a +a +a +c +c +c +c +a +a +"} +(6,1,1) = {" +a +a +a +a +a +a +a +a +c +c +c +c +c +a +a +"} +(7,1,1) = {" +a +a +a +a +a +a +c +c +c +c +c +c +a +a +a +"} +(8,1,1) = {" +a +a +a +a +c +c +c +c +c +c +c +c +a +a +a +"} +(9,1,1) = {" +c +c +c +c +c +c +c +c +c +c +c +c +c +a +a +"} +(10,1,1) = {" +c +c +c +c +c +c +c +c +c +c +c +c +c +c +a +"} +(11,1,1) = {" +c +c +c +c +c +c +c +a +a +c +c +c +c +c +e +"} +(12,1,1) = {" +c +c +c +c +c +c +a +a +a +a +c +c +c +c +e +"} +(13,1,1) = {" +c +c +a +a +a +a +a +a +a +c +c +c +c +c +e +"} +(14,1,1) = {" +c +c +c +a +a +a +a +a +a +c +c +c +c +c +e +"} +(15,1,1) = {" +c +c +c +c +a +a +a +a +c +c +c +i +c +c +e +"} diff --git a/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm b/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm new file mode 100644 index 000000000000..45d1945cdcf9 --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm @@ -0,0 +1,732 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"ac" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"ad" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"af" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Spaceport" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"ah" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"ai" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"aj" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"al" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"am" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"an" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/space_port) +"ap" = ( +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"aq" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"ar" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/door_control{ + id = "Spaceport"; + name = "Storm Shutters"; + pixel_x = 32 + }, +/obj/item/tool/pen, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"at" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"au" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"av" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"ax" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Spaceport"; + name = "\improper Spaceport Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"ay" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/landing/console) +"az" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"aA" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aB" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aC" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aD" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"aE" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"aF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"aG" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aH" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/outside/space_port) +"aI" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"aJ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"aK" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"aL" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"aM" = ( +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"aN" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/outside/space_port) +"aP" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Spaceport"; + name = "\improper Spaceport Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aQ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aU" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port) +"aV" = ( +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"aW" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"aX" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"aY" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"bd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"be" = ( +/obj/item/shard, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"bf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"bg" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"bi" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"bj" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"bk" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"bl" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"bm" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"bn" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"bs" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/space_port) +"ch" = ( +/obj/structure/cargo_container/arious/rightmid, +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"dg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"fU" = ( +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/space_port) +"ii" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"kN" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/space_port) +"lo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"mx" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"oV" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"tf" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"tu" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"xP" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"yf" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"yg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"yZ" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"Aw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"DA" = ( +/obj/structure/cargo_container/arious/right, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"In" = ( +/obj/structure/cargo_container/arious/leftmid, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"KQ" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"NH" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/space_port) +"OZ" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"QA" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"Ta" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"Ww" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-in" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) + +(1,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +aU +ab +bf +ab +bf +bf +ab +ab +ab +"} +(2,1,1) = {" +ac +ac +ac +ac +ac +ac +ac +ac +aV +ac +ii +lo +fU +fU +ii +lo +QA +"} +(3,1,1) = {" +ac +ac +ac +ac +aA +ac +ac +ac +aV +ac +tu +Ta +fU +fU +yg +mx +ac +"} +(4,1,1) = {" +ac +ac +ac +ac +aB +ac +ac +ac +aV +ac +Aw +dg +fU +fU +Aw +KQ +bl +"} +(5,1,1) = {" +ac +ac +ac +ac +aC +ac +ac +ac +aW +ac +ac +ac +fU +fU +ac +aC +bm +"} +(6,1,1) = {" +ad +al +ac +ac +ac +ac +ac +ac +aX +ac +ii +lo +fU +fU +ii +lo +bn +"} +(7,1,1) = {" +ac +ac +ac +ac +ac +aG +ac +ac +aY +ac +yg +xP +fU +fU +yg +Ta +ac +"} +(8,1,1) = {" +ac +ac +ac +ac +ac +ac +ac +ac +aV +ac +Aw +dg +fU +kN +Aw +dg +ac +"} +(9,1,1) = {" +ac +am +ac +ac +ac +am +ac +ac +aV +ac +bg +ac +fU +NH +ac +ac +ac +"} +(10,1,1) = {" +af +an +an +ax +ax +an +an +ac +aV +ac +ii +lo +fU +bs +ii +lo +ac +"} +(11,1,1) = {" +ai +oV +at +ay +aD +aH +an +aT +aV +ac +yg +Ta +fU +fU +yg +Ta +ac +"} +(12,1,1) = {" +ah +ah +ah +ah +aE +aI +aP +ac +aV +ac +Aw +OZ +fU +fU +Aw +tf +ac +"} +(13,1,1) = {" +ai +ah +ai +ah +ah +aJ +aP +ac +aV +ac +ac +ac +fU +fU +ac +ac +bi +"} +(14,1,1) = {" +ai +ap +ai +ai +ah +aK +an +ac +aV +bd +ii +lo +fU +fU +Ww +In +bj +"} +(15,1,1) = {" +ah +ah +au +ah +ah +aL +aQ +ac +aV +be +yZ +Ta +fU +fU +yg +ch +bk +"} +(16,1,1) = {" +ah +aq +ah +ah +ai +aM +aR +ac +aV +ac +yf +dg +fU +fU +Aw +DA +ac +"} +(17,1,1) = {" +aj +ar +av +az +aF +aN +aP +ac +aV +ac +aC +ac +fU +fU +ac +ac +ac +"} diff --git a/maps/map_files/BigRed/sprinkles/25.vault_v2.dmm b/maps/map_files/BigRed/sprinkles/25.vault_v2.dmm new file mode 100644 index 000000000000..5c1c05d3e258 --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/25.vault_v2.dmm @@ -0,0 +1,546 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"ab" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 + }, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"ac" = ( +/obj/item/tool/pickaxe/drill, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"ad" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave, +/area/bigredv2/caves_lambda) +"ae" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) +"af" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) +"ag" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"ah" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_lambda) +"ai" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) +"aj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"ak" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"al" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"am" = ( +/obj/structure/machinery/door_control{ + id = "sci_br"; + name = "Observation Shutters"; + pixel_y = 28 + }, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"an" = ( +/obj/effect/decal/cleanable/mucus, +/obj/structure/machinery/door_control{ + id = "sci_br"; + name = "Observation Shutters"; + pixel_y = 28 + }, +/obj/effect/landmark/corpsespawner/pmc, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"ao" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"ap" = ( +/obj/structure/sign/safety/bulkhead_door, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/lambda/breakroom) +"aq" = ( +/turf/open/floor/almayer/w_y0/north, +/area/bigredv2/caves/lambda/breakroom) +"ar" = ( +/obj/structure/filingcabinet{ + density = 0; + layer = 3.1; + pixel_x = 8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/bigredv2/caves/lambda/breakroom) +"as" = ( +/obj/structure/filingcabinet{ + pixel_x = 7 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -7; + pixel_y = 19 + }, +/obj/structure/filingcabinet{ + pixel_x = -9 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/bigredv2/caves/lambda/breakroom) +"at" = ( +/turf/open/floor/plating/almayer, +/area/bigredv2/caves/lambda/breakroom) +"au" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/bigredv2/caves/lambda/breakroom) +"av" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/bigredv2/caves/lambda/breakroom) +"aw" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"ax" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"aA" = ( +/turf/template_noop, +/area/template_noop) +"aB" = ( +/turf/open/floor/almayer/w_y1/north, +/area/bigredv2/caves/lambda/breakroom) +"aC" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"aD" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"aE" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"aF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/door/window/brigdoor/southright, +/obj/item/clothing/accessory/medal/gold{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/bronze/science{ + pixel_x = -5 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/bigredv2/caves/lambda/breakroom) +"aG" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + id = "sci_br"; + name = "\improper Lambda Observation Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/breakroom) +"aH" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"aI" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/lambda/breakroom) +"aJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/strata/white_cyan1/east, +/area/bigredv2/caves/lambda/breakroom) +"aK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door_control{ + id = "vault"; + name = "Vault Lockdown" + }, +/turf/open/floor/strata/white_cyan1/east, +/area/bigredv2/caves/lambda/breakroom) +"aL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/turf/open/floor/strata/white_cyan1/east, +/area/bigredv2/caves/lambda/breakroom) +"aM" = ( +/turf/open/floor/almayer/w_y2/north, +/area/bigredv2/caves/lambda/breakroom) +"aN" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_lambda) +"aP" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) +"aQ" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_lambda) +"aR" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 19 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/bigredv2/caves/lambda/breakroom) +"aS" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"aT" = ( +/turf/open/mars_cave/mars_cave_4, +/area/bigredv2/caves_lambda) +"aV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"aW" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced/colony{ + icon_state = "door_locked" + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "vault"; + name = "Vault Lockdown" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"aX" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/caves_lambda) +"aY" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_lambda) +"aZ" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_lambda) +"ba" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"vm" = ( +/obj/item/shard{ + icon_state = "small" + }, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_lambda) +"zP" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_lambda) +"EW" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "sci_br"; + name = "\improper Lambda Observation Shutters" + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/window_frame/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/breakroom) +"Gv" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "sci_br"; + name = "\improper Lambda Observation Shutters" + }, +/obj/item/shard, +/obj/structure/window_frame/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/breakroom) +"RW" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) + +(1,1,1) = {" +aA +aA +aA +aA +aA +aI +am +al +aI +aA +aA +aY +aT +ak +"} +(2,1,1) = {" +aA +aA +aA +aA +zP +aG +aw +aD +aG +ai +ai +aZ +ba +aX +"} +(3,1,1) = {" +aA +aA +ah +ai +ai +aG +aH +aE +aG +aP +ba +aP +ai +aZ +"} +(4,1,1) = {" +aA +ae +aP +ba +aZ +aI +ax +aC +aI +ae +RW +ac +ba +aZ +"} +(5,1,1) = {" +ai +ai +aj +ad +aZ +aG +ao +ag +EW +af +ba +ba +ba +aZ +"} +(6,1,1) = {" +aY +ai +ai +ba +ba +aG +aa +aD +Gv +vm +aN +aS +ba +aZ +"} +(7,1,1) = {" +ba +ba +ak +ak +ak +aI +an +ab +ap +aA +aA +aP +aS +aZ +"} +(8,1,1) = {" +ba +ak +ak +aI +aI +aI +aI +aW +aI +aI +aA +ba +aP +aZ +"} +(9,1,1) = {" +aZ +ak +ak +aI +aR +as +au +au +aK +aI +aA +aY +ba +aZ +"} +(10,1,1) = {" +ak +aA +aA +aI +au +at +aq +at +au +aI +aA +aP +ba +aZ +"} +(11,1,1) = {" +ak +aA +aA +aI +aF +at +aB +at +aJ +aI +aA +aP +ba +aZ +"} +(12,1,1) = {" +aA +aA +aA +aI +au +at +aM +at +aL +aI +aA +aQ +aV +ba +"} +(13,1,1) = {" +aA +aA +aA +aI +ar +av +aL +aL +aL +aI +aA +ba +ba +ba +"} +(14,1,1) = {" +aA +aA +aA +aI +aI +aI +aI +aI +aI +aI +aA +ba +ba +ba +"} diff --git a/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm b/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm new file mode 100644 index 000000000000..7cb6e167725d --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm @@ -0,0 +1,1051 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"ab" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"ad" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ae" = ( +/obj/structure/largecrate, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"af" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ag" = ( +/obj/structure/largecrate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ah" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ai" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/cargo) +"aj" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ak" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"al" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"am" = ( +/obj/structure/largecrate/cow, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"an" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ao" = ( +/obj/structure/largecrate/cow, +/turf/open/floor/loadingarea, +/area/bigredv2/outside/cargo) +"ap" = ( +/obj/structure/closet/emcloset, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aq" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ar" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"as" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"at" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/lighter/random, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"au" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"av" = ( +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ax" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ay" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"az" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aA" = ( +/obj/structure/machinery/light, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aB" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aC" = ( +/turf/open/floor/loadingarea, +/area/bigredv2/outside/cargo) +"aD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Cargo Offices" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"aE" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Cargonia"; + name = "\improper Cargo Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aF" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"aG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"aH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/cargo_container/arious/right, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"aI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aJ" = ( +/obj/structure/largecrate, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"aK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"aL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"aN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aO" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"aP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"aQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/good_item, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"aR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"aS" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"aT" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"aU" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"aV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Cargo Bay Security" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"aX" = ( +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"aY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/loadingarea, +/area/bigredv2/outside/cargo) +"aZ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ba" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bd" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"be" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bf" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bg" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bh" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bj" = ( +/obj/structure/largecrate, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bk" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bm" = ( +/obj/item/device/flashlight, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bp" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"bs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"by" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Cargo Bay" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"bz" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bA" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/megaphone, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bG" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bH" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bI" = ( +/obj/item/reagent_container/spray/cleaner, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"bJ" = ( +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"bK" = ( +/turf/open/floor/loadingarea/east, +/area/bigredv2/outside/cargo) +"bM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/largecrate/random/barrel, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bN" = ( +/turf/open/floor/loadingarea/west, +/area/bigredv2/outside/cargo) +"bO" = ( +/obj/structure/machinery/door_control{ + id = "Cargonia"; + name = "Storm Shutters"; + pixel_x = 32 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Cargo Bay Quartermaster" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"bS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/loadingarea/east, +/area/bigredv2/outside/cargo) +"bV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bZ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cb" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cc" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cd" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ce" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Cargo Bay Quartermaster" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"cf" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cg" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ch" = ( +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ci" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cj" = ( +/obj/structure/machinery/computer/ordercomp, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ck" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cl" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + health = 25000 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + health = 25000 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cn" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"co" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cp" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cq" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cr" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cs" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ct" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"cu" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Cargonia"; + name = "\improper Cargo Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"cv" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/engineering) +"cw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Complex" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"cx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"zL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"AS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"Gu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"KO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) + +(1,1,1) = {" +aa +aa +aa +ai +aE +aE +aE +ai +ai +ai +bq +by +ai +ai +ai +ai +ce +ai +ai +"} +(2,1,1) = {" +ab +al +ab +ai +av +av +av +ai +aZ +bA +ax +av +bH +aB +ai +aN +av +cg +ai +"} +(3,1,1) = {" +av +av +av +aY +aF +aO +av +ak +ba +bJ +zL +bJ +bJ +av +ai +av +cf +ch +cu +"} +(4,1,1) = {" +ad +ad +au +ad +aG +aP +av +ak +bh +bJ +aI +bb +bI +ad +bR +ad +ad +ci +cu +"} +(5,1,1) = {" +ae +av +av +aC +aH +aQ +av +ai +av +bJ +zL +bJ +AS +bP +ak +cb +af +cj +cu +"} +(6,1,1) = {" +af +an +av +am +aI +ad +ad +bR +ad +bQ +bp +bz +KO +Gu +ak +cb +av +av +cu +"} +(7,1,1) = {" +ag +av +av +aC +aJ +aR +aX +ai +ai +ai +bq +by +ai +ai +ai +cc +av +ck +ai +"} +(8,1,1) = {" +av +av +av +av +ar +af +av +af +av +av +ax +af +bA +ae +ai +ak +ce +ak +ai +"} +(9,1,1) = {" +av +av +av +aC +aK +aS +av +bc +aX +av +ax +bB +av +av +av +av +av +aA +cv +"} +(10,1,1) = {" +ap +av +aw +ad +aL +aT +av +bd +aO +av +aI +ad +ad +ad +bS +af +av +cl +cw +"} +(11,1,1) = {" +ap +av +ax +ao +aX +aU +av +be +bj +av +ax +av +av +av +aI +ad +ad +cm +cx +"} +(12,1,1) = {" +ah +av +ay +av +av +av +av +av +av +av +bs +bD +bK +av +bU +av +av +cn +cv +"} +(13,1,1) = {" +ai +ai +ai +ai +ak +ak +ak +ai +aN +av +bt +bD +aX +av +bV +af +av +co +cv +"} +(14,1,1) = {" +aj +aq +az +ai +av +av +av +ai +bk +av +af +bD +bf +av +bW +af +av +cp +cv +"} +(15,1,1) = {" +af +ar +aA +ai +af +af +av +ai +av +af +af +af +bg +av +bX +av +av +aj +cv +"} +(16,1,1) = {" +af +as +ad +aD +au +aV +ad +aD +ad +au +bv +au +bM +ad +bY +av +av +cq +cv +"} +(17,1,1) = {" +av +at +af +ab +af +ar +av +ab +av +af +bs +av +bN +av +bN +av +av +cr +cv +"} +(18,1,1) = {" +av +av +av +ai +aN +ax +av +ai +av +bm +ax +av +av +av +av +av +av +cs +cv +"} +(19,1,1) = {" +ak +ak +ai +ai +ak +aW +ak +ai +av +av +ax +bG +bO +av +bZ +cd +cd +ct +cv +"} diff --git a/maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm b/maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm new file mode 100644 index 000000000000..8f710225f0c5 --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm @@ -0,0 +1,150 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/virology) +"c" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside) +"d" = ( +/turf/open/mars, +/area/bigredv2/outside/nw) +"e" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/nw) +"f" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/nw) +"g" = ( +/turf/open/mars, +/area/bigredv2/outside/w) +"h" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/w) +"i" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/nw) +"j" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/nw) +"k" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"l" = ( +/turf/open/mars/mars_dirt_5, +/area/bigredv2/outside/w) +"m" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/w) +"n" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/w) +"o" = ( +/turf/open/mars/mars_dirt_6, +/area/bigredv2/outside/w) +"U" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/w) + +(1,1,1) = {" +b +b +b +b +b +b +b +b +b +"} +(2,1,1) = {" +c +c +b +c +c +b +c +c +b +"} +(3,1,1) = {" +c +c +c +c +g +g +g +c +c +"} +(4,1,1) = {" +c +c +d +d +g +g +g +g +c +"} +(5,1,1) = {" +d +d +d +d +d +U +m +m +o +"} +(6,1,1) = {" +d +i +j +j +j +k +l +n +n +"} +(7,1,1) = {" +e +f +f +f +f +f +h +h +h +"} +(8,1,1) = {" +a +a +a +a +a +a +a +a +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm b/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm new file mode 100644 index 000000000000..702980ac1f79 --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm @@ -0,0 +1,1392 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/filtration_plant) +"ad" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/filtration_plant) +"ah" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"ai" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"aj" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"ay" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris, +/area/bigredv2/outside/filtration_plant) +"az" = ( +/turf/open/floor, +/area/bigredv2/outside/filtration_plant) +"aF" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"aY" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/filtration_plant) +"bf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/filtration_plant) +"bt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/outside/filtration_plant) +"bv" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bw" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/outside/filtration_plant) +"bA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bD" = ( +/obj/structure/window/framed/solaris/reinforced/hull, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bI" = ( +/obj/structure/window_frame/solaris/reinforced, +/obj/item/shard{ + icon_state = "small" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bK" = ( +/turf/open/mars, +/area/bigredv2/outside/se) +"bX" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/filtration_plant) +"cd" = ( +/obj/structure/dispenser/oxygen, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"cg" = ( +/obj/structure/machinery/door_control{ + id = "FiltrationShutters"; + name = "Airlock Shutters"; + pixel_y = 25 + }, +/turf/open/floor, +/area/bigredv2/outside/filtration_plant) +"dk" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"dP" = ( +/obj/structure/largecrate/random, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"dS" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/se) +"dV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"fp" = ( +/obj/structure/machinery/computer/general_air_control, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"gg" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/solar_tracker, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"gJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/delivery, +/area/bigredv2/outside/filtration_plant) +"gO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"ib" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"iw" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/se) +"iZ" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/filtration_plant) +"jh" = ( +/obj/structure/machinery/light, +/turf/open/floor, +/area/bigredv2/outside/filtration_plant) +"kg" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"kh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"kv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"la" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot/north, +/area/bigredv2/outside/filtration_plant) +"lC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"lO" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"nk" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/solaris, +/area/bigredv2/outside/filtration_plant) +"no" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"np" = ( +/obj/item/tank/air, +/turf/open/floor, +/area/bigredv2/outside/filtration_plant) +"nu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/firecloset/full, +/turf/open/floor/bot/north, +/area/bigredv2/outside/filtration_plant) +"nF" = ( +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/filtration_plant) +"oQ" = ( +/obj/structure/machinery/light, +/obj/structure/largecrate/random, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"pd" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"pF" = ( +/obj/structure/surface/rack, +/obj/item/tank/air, +/obj/item/tool/pickaxe, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"qm" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Filtration Facility" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"qH" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "U-N" + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"qL" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"rq" = ( +/obj/item/tank/air, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"rA" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/bot/north, +/area/bigredv2/outside/filtration_plant) +"rQ" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"rS" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"sf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"sv" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"sF" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"tc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "U-N" + }, +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"tx" = ( +/obj/structure/machinery/door_control{ + id = "FiltrationShutters"; + name = "Airlock Shutters"; + pixel_x = -32 + }, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"tE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"tT" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"um" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"us" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/filtration_plant) +"uu" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/floor/bot/north, +/area/bigredv2/outside/filtration_plant) +"uE" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/se) +"uT" = ( +/obj/structure/cryofeed/right{ + name = "\improper coolant feed" + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/outside/filtration_plant) +"vz" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"vF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/filtration_cave_cas) +"wo" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/se) +"wL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/frame/table, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"wQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"wZ" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"xY" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"yR" = ( +/obj/item/weapon/twohanded/fireaxe, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/filtration_plant) +"yU" = ( +/obj/item/tool/warning_cone, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/se) +"zD" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"zJ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/filtration_plant) +"zL" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"Ai" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"Aw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"Bd" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/se) +"Bt" = ( +/obj/structure/cryofeed, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/outside/filtration_plant) +"Bx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"BF" = ( +/obj/item/tool/warning_cone, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"BZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/filtration_plant) +"Ce" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/se) +"Cy" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/filtration_plant) +"CK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"De" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Filtration Facility" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"DI" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"DT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_plant) +"EP" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"Fe" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Filtration Facility" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"FD" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"FG" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"Ga" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/filtration_cave_cas) +"Gd" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Filtration Facility" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"Gm" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"GL" = ( +/obj/item/tank/air, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"IX" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/se) +"Jc" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"Ji" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"Jo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/bot/north, +/area/bigredv2/outside/filtration_plant) +"Jp" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/bot/north, +/area/bigredv2/outside/filtration_plant) +"Jq" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"KF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"KG" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/floor/bot/north, +/area/bigredv2/outside/filtration_plant) +"KP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"Li" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_plant) +"LU" = ( +/turf/open/mars/mars_dirt_6, +/area/bigredv2/outside/se) +"Mf" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"MH" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"Nn" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/filtration_plant) +"Oi" = ( +/obj/structure/surface/table, +/obj/effect/landmark/good_item, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"On" = ( +/obj/item/tool/pickaxe, +/turf/open/floor/bot/north, +/area/bigredv2/outside/filtration_plant) +"Oq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/filtration_plant) +"OG" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/se) +"OX" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "U-S" + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"Pt" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"Qw" = ( +/obj/structure/machinery/computer/area_atmos/area{ + dir = 8 + }, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"QM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"Rf" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"Rn" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"RX" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"Sw" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "FiltrationShutters"; + name = "\improper Airlock Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"SA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/headset, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"SL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"SR" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"Tn" = ( +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"TW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"Uq" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"UB" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/se) +"UD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"Vh" = ( +/turf/open/floor/bot/north, +/area/bigredv2/outside/filtration_plant) +"Vm" = ( +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"Vr" = ( +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"Vz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"VB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "U-S" + }, +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"Wg" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"WF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/filtration_plant) +"WR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"Xj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"Xl" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"Xz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"XD" = ( +/obj/item/frame/table, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"XZ" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/filtration_plant) +"Yx" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"YC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Atmospherics Condenser Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"Zz" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/filtration_plant) +"ZG" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) + +(1,1,1) = {" +aa +YC +aa +aa +aa +aa +aa +aa +aa +ah +ah +bI +bw +bw +RX +SR +SR +SR +SR +SR +SR +SR +SR +SR +aa +"} +(2,1,1) = {" +wZ +UD +Ai +aa +lO +Vr +lO +lO +aa +Tn +rQ +yR +bw +bw +bw +bw +RX +RX +RX +RX +RX +RX +RX +Yx +bw +"} +(3,1,1) = {" +wZ +UD +Mf +aa +no +kh +kh +kh +De +Jq +qL +Pt +bw +bw +bw +bw +iZ +iZ +iZ +iZ +gJ +iZ +iZ +iZ +aY +"} +(4,1,1) = {" +wZ +UD +Pt +aa +sv +xY +sv +Vr +aa +rS +UD +XZ +tE +FD +Zz +aY +cg +az +az +ad +az +ad +az +az +aY +"} +(5,1,1) = {" +aa +YC +aa +aa +aa +aa +aa +aa +aa +wQ +MH +Jq +Jq +Jq +tx +aY +bf +ad +la +la +az +Vh +Vh +jh +aY +"} +(6,1,1) = {" +zD +Vz +BZ +aa +Tn +OX +qH +nF +aa +rS +UD +Jq +Jq +Jq +Jq +Sw +az +ad +la +Vh +az +Vh +uu +az +bw +"} +(7,1,1) = {" +CK +um +kv +Gm +Jq +Jq +Jq +Jq +qm +Jq +UD +Jq +Jq +Jq +Jq +Sw +az +az +az +az +az +Vh +KG +az +bw +"} +(8,1,1) = {" +WR +tT +zL +ah +rS +VB +tc +sf +ah +SL +UD +Jq +Jq +Jq +Jq +Sw +az +az +Vh +Vh +az +Vh +Jp +az +bw +"} +(9,1,1) = {" +Xj +Xj +TW +Xl +Bx +Bx +kv +Pt +ah +rS +UD +Jq +Jq +Jq +Jq +Sw +az +az +Vh +Vh +np +Jo +Vh +jh +aY +"} +(10,1,1) = {" +CK +SA +Rn +aa +wQ +Jq +Vz +vz +aa +Oq +UD +Vm +EP +dP +oQ +aY +bf +az +Vh +On +az +Vh +Vh +az +aY +"} +(11,1,1) = {" +DI +Qw +FG +aa +Jc +Wg +kg +Xz +aa +aa +Gd +aa +bw +bD +bD +bw +az +az +az +az +az +az +az +az +aY +"} +(12,1,1) = {" +ah +ah +ah +aa +Jc +Jq +UD +Pt +aa +Tn +UD +zJ +bw +uT +uT +bw +iZ +iZ +iZ +iZ +iZ +iZ +iZ +iZ +aY +"} +(13,1,1) = {" +ai +aF +ai +aa +fp +Rf +Aw +Bx +Fe +Bx +kg +ib +bt +Bt +Bt +bw +RX +RX +RX +RX +RX +RX +RX +Yx +aY +"} +(14,1,1) = {" +ai +ai +ai +aa +pd +Jq +Jq +Mf +ay +wQ +UD +Ji +bw +uT +uT +bw +Li +Li +Li +Li +DT +Li +Li +Li +nk +"} +(15,1,1) = {" +ai +aF +ai +aa +Nn +KF +Oi +gg +aa +rS +UD +ib +bw +Bt +Bt +bw +sF +Uq +BF +Uq +Uq +BF +Uq +Uq +Uq +"} +(16,1,1) = {" +aa +aa +aa +aa +aa +aa +ay +aa +aa +rS +UD +Pt +bw +bD +bD +bw +sF +cd +rq +Uq +Uq +Uq +Uq +Uq +Uq +"} +(17,1,1) = {" +OG +Bd +Bd +Bd +UB +aY +QM +pF +pF +Cy +UD +XD +aa +sF +sF +sF +sF +BF +Uq +Uq +Uq +Uq +Uq +Uq +Uq +"} +(18,1,1) = {" +yU +wo +wo +wo +iw +Vr +Jq +Jq +Jq +Jq +wL +CK +gO +sF +Uq +Uq +Uq +Uq +Uq +Uq +Uq +Uq +Uq +Uq +Uq +"} +(19,1,1) = {" +IX +wo +wo +wo +iw +Vr +Jq +Jq +Rf +Wg +KP +Jq +Vr +sF +Uq +Uq +Uq +Uq +Uq +Uq +Uq +Uq +Uq +Uq +Uq +"} +(20,1,1) = {" +IX +wo +wo +wo +iw +Vr +Vm +Vm +WF +GL +Jq +dV +Vr +sF +Uq +Uq +Uq +Uq +Uq +Uq +ZG +Uq +Uq +Uq +Uq +"} +(21,1,1) = {" +IX +wo +wo +Ce +dS +aY +nu +rA +us +Vm +Vm +dk +bX +sF +Uq +Uq +Uq +BF +Uq +Uq +Uq +Uq +Uq +Uq +Uq +"} +(22,1,1) = {" +wo +wo +iw +LU +uE +aY +aY +aY +aY +ah +bA +ah +aY +sF +Uq +Uq +Uq +Uq +Uq +Uq +Uq +Ga +Uq +Uq +Uq +"} +(23,1,1) = {" +wo +wo +iw +uE +bK +bK +bK +bK +aY +bv +bv +bv +aY +aj +Uq +Uq +aj +aj +Uq +Uq +Uq +Ga +Uq +Uq +Uq +"} +(24,1,1) = {" +wo +wo +iw +uE +bK +bK +bK +bK +aY +aY +aY +aY +aY +aj +aj +aj +aj +aj +aj +lC +lC +vF +lC +lC +lC +"} diff --git a/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm b/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm new file mode 100644 index 000000000000..8eefcb16466a --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm @@ -0,0 +1,668 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/admin_building) +"ad" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"ae" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/admin_building) +"ak" = ( +/obj/structure/window_frame/solaris, +/obj/item/shard, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"ap" = ( +/obj/structure/flora/jungle/plantbot1{ + pixel_y = 10 + }, +/turf/open/jungle, +/area/bigredv2/outside/admin_building) +"aB" = ( +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aC" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aD" = ( +/obj/effect/acid_hole, +/turf/closed/wall/solaris, +/area/bigredv2/outside/admin_building) +"aJ" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aK" = ( +/obj/structure/surface/table, +/obj/item/device/radio/marine, +/obj/effect/landmark/objective_landmark/medium, +/obj/item/weapon/gun/pistol/m4a3/training{ + name = "dented M4A3 service pistol" + }, +/obj/item/ammo_magazine/pistol/rubber, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aL" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aQ" = ( +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aS" = ( +/obj/item/ammo_magazine/rifle/rubber{ + current_rounds = 3; + pixel_x = -3; + pixel_y = -6 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aV" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/rifle/rubber, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aW" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/tool/weldingtool, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"ba" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/item/clothing/head/helmet/marine/veteran/pmc/leader, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"bc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"bp" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bs" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Operations"; + name = "\improper Operations Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"bY" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"cD" = ( +/obj/item/shard, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"dC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"ed" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"ee" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"eg" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"gb" = ( +/obj/item/ammo_box/magazine{ + num_of_magazines = 2 + }, +/obj/item/ammo_magazine/rifle{ + current_rounds = 0; + pixel_x = -8; + pixel_y = 13 + }, +/obj/item/ammo_magazine/rifle{ + current_rounds = 0; + pixel_x = 14; + pixel_y = 17 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"gR" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"he" = ( +/obj/structure/platform, +/obj/structure/flora/jungle/planttop1{ + pixel_y = 10 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"hf" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/darkred2/southeast, +/area/bigredv2/outside/admin_building) +"hz" = ( +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"hC" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"hM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"hN" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"jh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/outside/admin_building) +"jm" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"jq" = ( +/obj/item/weapon/gun/rifle/m41a/corporate{ + current_mag = /obj/item/ammo_magazine/rifle/rubber; + desc = "A Weyland-Yutani creation, this M41A MK2 comes equipped in corporate white. Uses 10x24mm caseless ammunition. It seems to be pretty battered and broken up."; + name = "battered M41A pulse rifle MK2"; + pixel_x = 4 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"jY" = ( +/obj/item/ammo_magazine/rifle/rubber{ + current_rounds = 0; + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/stack/sheet/metal{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"kr" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 3; + pixel_y = -11 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"la" = ( +/obj/item/ammo_magazine/pistol/rubber{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"lv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"mi" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/platform_decoration, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"mr" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_2" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"nd" = ( +/obj/item/ammo_magazine/rifle{ + current_rounds = 0; + pixel_x = -8; + pixel_y = 9 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"oI" = ( +/obj/item/shard, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"oZ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkred2/southwest, +/area/bigredv2/outside/admin_building) +"pZ" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Operations Meeting Room"; + density = 0; + icon_state = "door_open" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"qR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations Office" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"re" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"sX" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"ts" = ( +/obj/item/storage/secure/briefcase, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"tz" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"uH" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/wygoon, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"xe" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"xQ" = ( +/obj/effect/acid_hole{ + dir = 4 + }, +/turf/closed/wall/solaris, +/area/bigredv2/outside/admin_building) +"yd" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"za" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations Meeting Room" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"AF" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"Br" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular/empty, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"Cj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"Cw" = ( +/obj/effect/landmark/corpsespawner/wygoon/lead, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"CO" = ( +/obj/item/ammo_magazine/rifle{ + current_rounds = 0; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"EO" = ( +/obj/item/ammo_magazine/pistol/rubber{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"ER" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"Gc" = ( +/obj/item/ammo_box/magazine/ext{ + num_of_magazines = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"Mu" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"Nb" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/item/ammo_magazine/pistol/rubber{ + current_rounds = 0 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"Nc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkredcorners2, +/area/bigredv2/outside/admin_building) +"Nl" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"NS" = ( +/obj/item/ammo_magazine/rifle/rubber{ + current_rounds = 0; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"Op" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"PU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"PX" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"Sz" = ( +/obj/item/ammo_magazine/rifle/rubber{ + current_rounds = 0; + pixel_x = 5; + pixel_y = -5 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"TJ" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"Ua" = ( +/obj/item/stack/sheet/metal{ + amount = 3 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"Ux" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/storage/toolbox/syndicate, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"WY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"Yb" = ( +/obj/item/ammo_magazine/rifle{ + current_rounds = 0 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"YI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"Zg" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"ZN" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/ammo_magazine/rifle{ + current_rounds = 0; + pixel_x = -2; + pixel_y = -10 + }, +/obj/item/ammo_box/magazine/m4a3{ + num_of_magazines = 2 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"ZO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) + +(1,1,1) = {" +yd +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(2,1,1) = {" +Zg +aD +lv +Mu +NS +Cw +Yb +ZN +Gc +ab +"} +(3,1,1) = {" +cD +yd +jY +la +Ua +ts +aJ +aQ +gb +bp +"} +(4,1,1) = {" +hz +ak +gR +aB +aK +Br +aV +ba +sX +CO +"} +(5,1,1) = {" +hz +ae +jq +aC +aQ +kr +Sz +uH +sX +sX +"} +(6,1,1) = {" +TJ +pZ +Nl +aW +aL +aS +ed +bc +sX +EO +"} +(7,1,1) = {" +hz +ae +PX +mr +bY +Nb +bY +nd +sX +sX +"} +(8,1,1) = {" +hz +ae +ae +ak +ad +ad +ae +za +xQ +ae +"} +(9,1,1) = {" +jh +ZO +re +WY +YI +re +PU +hC +oZ +ak +"} +(10,1,1) = {" +mi +jm +eg +Cj +oI +hN +TJ +Cj +TJ +ak +"} +(11,1,1) = {" +he +ap +ER +Nc +Op +Ux +ee +dC +hf +bs +"} +(12,1,1) = {" +tz +AF +xe +hM +ae +ae +ae +qR +ae +ae +"} diff --git a/maps/map_files/BigRed/sprinkles/40.dorms_party.dmm b/maps/map_files/BigRed/sprinkles/40.dorms_party.dmm new file mode 100644 index 000000000000..38b92227e1f1 --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/40.dorms_party.dmm @@ -0,0 +1,578 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/plate, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ac" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ad" = ( +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ae" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"af" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Fitness APC" + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ag" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ah" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ai" = ( +/obj/item/reagent_container/food/drinks/bottle/absinthe, +/obj/effect/landmark/corpsespawner/colonist/random, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aj" = ( +/obj/structure/bed/chair, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"al" = ( +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"an" = ( +/obj/item/trash/chunk, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"ao" = ( +/obj/item/trash/chunk{ + pixel_x = 3; + pixel_y = -4 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"ap" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"aq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ar" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"as" = ( +/obj/structure/surface/table, +/obj/item/toy/deck, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"at" = ( +/obj/structure/surface/table, +/obj/item/ashtray/bronze, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"au" = ( +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"av" = ( +/obj/structure/surface/table, +/obj/item/storage/donut_box/empty, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ax" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ay" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/good_item, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"az" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"aA" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/obj/effect/landmark/corpsespawner/colonist/random, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"aB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/trash/chunk{ + pixel_y = 5 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"aC" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aD" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aF" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aG" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/obj/item/reagent_container/food/snacks/meatpizzaslice, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aH" = ( +/obj/structure/surface/table, +/obj/item/poster, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aI" = ( +/obj/structure/surface/table, +/obj/item/pizzabox/margherita, +/obj/item/pizzabox/meat{ + pixel_x = -5; + pixel_y = 12 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"aK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"aL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/chunk{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/bottle/rum, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"aM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/trash/chunk, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"aN" = ( +/obj/item/trash/chunk, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aO" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aP" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aR" = ( +/obj/item/reagent_container/food/drinks/bottle/rum, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aS" = ( +/obj/item/device/megaphone, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"aT" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/item/reagent_container/food/drinks/bottle/rum, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"aU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"aV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"aW" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aX" = ( +/obj/effect/landmark/good_item, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ba" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"bb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"bc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"bd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"bf" = ( +/obj/structure/machinery/vending/snack{ + icon_state = "snack-broken"; + stat = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"bg" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"bh" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"bi" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"bj" = ( +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"bk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "Dormitories"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"bl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"bm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"bn" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"bo" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"dl" = ( +/obj/item/reagent_container/food/drinks/bottle/rum, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"do" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/colonist/random, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"el" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"iE" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/camera/autoname, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"lN" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"zO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/colonist/random, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"XP" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/dorms) + +(1,1,1) = {" +aY +aY +aY +aC +aY +aY +bb +"} +(2,1,1) = {" +ab +ah +ad +ah +aN +ah +bc +"} +(3,1,1) = {" +ac +ai +ad +ad +ad +aX +bd +"} +(4,1,1) = {" +ad +XP +ad +ah +ad +ah +aq +"} +(5,1,1) = {" +ad +ad +ad +ad +aD +ad +bf +"} +(6,1,1) = {" +ae +ad +ar +aE +ad +ad +bg +"} +(7,1,1) = {" +ad +aj +as +au +aO +ad +bh +"} +(8,1,1) = {" +ad +aj +at +aF +aP +aY +bi +"} +(9,1,1) = {" +el +aj +au +aG +aO +XP +zO +"} +(10,1,1) = {" +ad +aj +au +aH +aO +XP +bj +"} +(11,1,1) = {" +af +aj +av +aI +aO +ad +bk +"} +(12,1,1) = {" +ad +ad +aw +aw +ad +ad +bl +"} +(13,1,1) = {" +ad +ad +ax +ax +aR +ah +aq +"} +(14,1,1) = {" +ad +dl +ay +aJ +aJ +do +bm +"} +(15,1,1) = {" +ag +al +lN +al +aS +aJ +aq +"} +(16,1,1) = {" +ad +an +az +aD +aT +aK +bn +"} +(17,1,1) = {" +ad +ao +aA +aL +aU +aJ +bo +"} +(18,1,1) = {" +iE +ap +aB +aM +aV +ba +aq +"} +(19,1,1) = {" +ad +aq +ad +ad +aW +ad +aq +"} diff --git a/maps/map_files/BigRed/sprinkles/40.viro_open.dmm b/maps/map_files/BigRed/sprinkles/40.viro_open.dmm new file mode 100644 index 000000000000..e1be44cacdfe --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/40.viro_open.dmm @@ -0,0 +1,650 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"ai" = ( +/turf/open/mars, +/area/bigredv2/outside/virology) +"aU" = ( +/turf/open/mars, +/area/bigredv2/outside/nw) +"aV" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars, +/area/bigredv2/outside/nw) +"bc" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside) +"bd" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/virology) +"br" = ( +/obj/structure/inflatable/popped, +/turf/open/mars, +/area/bigredv2/outside/virology) +"bJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + name = "\improper Virology Lab Decontamination" + }, +/turf/open/floor/warnwhite/north, +/area/bigredv2/outside/virology) +"bX" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/virology) +"da" = ( +/obj/structure/inflatable, +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/virology) +"df" = ( +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"dk" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/virology) +"gD" = ( +/obj/structure/inflatable, +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/virology) +"gH" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"ia" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"jg" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/virology) +"jQ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) +"kt" = ( +/obj/structure/bed/roller, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/virology) +"lY" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/virology) +"mu" = ( +/obj/structure/sign/safety/biohazard, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/virology) +"nR" = ( +/obj/structure/bed/roller, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/virology) +"oe" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/virology) +"ou" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/virology) +"oM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"oS" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/virology) +"pG" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) +"qc" = ( +/obj/structure/inflatable/door, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/virology) +"qW" = ( +/obj/structure/inflatable/door, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"re" = ( +/obj/item/weapon/gun/flamer, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/virology) +"rh" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass, +/obj/item/storage/syringe_case/regular{ + pixel_y = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) +"ru" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/inflatable, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/virology) +"rM" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"rP" = ( +/obj/structure/inflatable, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/virology) +"sm" = ( +/obj/structure/inflatable/door, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/virology) +"uC" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/virology) +"uO" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/virology) +"vY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/nw) +"xm" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/virology) +"xU" = ( +/obj/structure/closet/bodybag{ + icon_state = "bodybag_open" + }, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/virology) +"yk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"As" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/virology) +"AF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/virology) +"Bq" = ( +/obj/structure/inflatable/popped, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/virology) +"CQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/inflatable/door, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"Dt" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/surgery/scalpel, +/obj/item/device/autopsy_scanner, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/virology) +"Ee" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/virology) +"Et" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"ED" = ( +/obj/structure/inflatable/popped, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"EF" = ( +/obj/structure/inflatable/door, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/virology) +"Fb" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/virology) +"FA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/virology) +"FX" = ( +/obj/structure/closet/bodybag{ + icon_state = "bodybag_open" + }, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/virology) +"GA" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/virology) +"GF" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"GP" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/virology) +"GX" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"HZ" = ( +/obj/structure/inflatable/popped, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/virology) +"Ie" = ( +/obj/structure/inflatable, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/virology) +"IZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) +"KY" = ( +/obj/structure/inflatable/door, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"LF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/inflatable, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/virology) +"LZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/virology) +"MQ" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/virology) +"Nt" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/virology) +"OX" = ( +/obj/structure/inflatable, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/virology) +"Pb" = ( +/obj/structure/inflatable, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/virology) +"PU" = ( +/obj/structure/inflatable, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/bigredv2/outside/nw) +"QV" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/virology) +"RE" = ( +/obj/structure/inflatable, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/bigredv2/outside/nw) +"RN" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"Sh" = ( +/obj/structure/inflatable/popped/door, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"TE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/inflatable/popped/door, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"UE" = ( +/obj/structure/inflatable, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"Vw" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/virology) +"Wm" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) +"Xm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"XA" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"XR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/inflatable, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/bigredv2/outside/virology) +"Yn" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/virology) +"Yy" = ( +/obj/structure/closet/bodybag{ + icon_state = "bodybag_open" + }, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/virology) +"ZB" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/virology) +"ZY" = ( +/obj/structure/closet/bodybag{ + icon_state = "bodybag_open" + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/virology) + +(1,1,1) = {" +aa +aa +bX +MQ +Nt +Nt +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +aa +oS +Yn +jg +ZB +aa +aa +aa +aa +"} +(3,1,1) = {" +aa +aa +xm +dk +re +lY +lY +Dt +OX +bd +"} +(4,1,1) = {" +aa +Ie +xU +ZY +FX +ai +ai +kt +da +bd +"} +(5,1,1) = {" +aa +OX +Ie +EF +EF +gD +gD +OX +LF +bd +"} +(6,1,1) = {" +aa +ZY +ZY +uC +LZ +As +As +As +AF +bJ +"} +(7,1,1) = {" +bd +Yy +ZY +oe +yk +GX +GX +GX +Wm +mu +"} +(8,1,1) = {" +bd +br +Bq +oe +yk +GX +GF +GX +IZ +bd +"} +(9,1,1) = {" +bd +GP +uO +GX +yk +GX +GX +GX +pG +bd +"} +(10,1,1) = {" +bd +HZ +UE +GX +yk +GX +Ee +Ee +Fb +bd +"} +(11,1,1) = {" +bd +nR +qW +GX +yk +Wm +GA +GA +GA +bd +"} +(12,1,1) = {" +bd +HZ +ED +GX +yk +Wm +GA +lY +GA +bd +"} +(13,1,1) = {" +bd +nR +qW +GX +yk +Wm +GA +ai +QV +bd +"} +(14,1,1) = {" +bd +Pb +Pb +GX +yk +GX +rP +qc +sm +bd +"} +(15,1,1) = {" +bd +GA +GA +oe +yk +GX +UE +GX +Wm +bd +"} +(16,1,1) = {" +bd +GA +GA +oe +yk +GX +UE +GX +Wm +bd +"} +(17,1,1) = {" +bd +GA +XR +qW +TE +qW +ru +ia +rh +bd +"} +(18,1,1) = {" +bd +GA +bd +Vw +RN +jQ +bd +FA +ou +bd +"} +(19,1,1) = {" +bd +bd +bd +oe +yk +Wm +bd +bd +bd +bd +"} +(20,1,1) = {" +vY +gH +bd +Vw +Xm +jQ +bd +aU +bd +bc +"} +(21,1,1) = {" +oM +gH +RE +KY +CQ +Sh +PU +aU +bc +bc +"} +(22,1,1) = {" +df +gH +gH +rM +XA +Et +gH +aV +aU +bc +"} diff --git a/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm b/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm new file mode 100644 index 000000000000..51e1ab45af22 --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm @@ -0,0 +1,388 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"b" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/eta/xenobiology) +"c" = ( +/turf/closed/wall/solaris, +/area/bigredv2/caves/eta/xenobiology) +"d" = ( +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"e" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"f" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"g" = ( +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) +"h" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) +"i" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/xenobiology) +"j" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/xenobiology) +"k" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"l" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"m" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/xenobiology) +"n" = ( +/obj/item/toy/beach_ball, +/turf/open/ice, +/area/bigredv2/caves/eta/xenobiology) +"o" = ( +/turf/open/ice, +/area/bigredv2/caves/eta/xenobiology) +"p" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) +"q" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Cell" + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"r" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"s" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"t" = ( +/mob/living/simple_animal/hostile/carp{ + faction = "neutral"; + name = "strange fish" + }, +/turf/open/ice, +/area/bigredv2/caves/eta/xenobiology) +"u" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/ice, +/area/bigredv2/caves/eta/xenobiology) +"v" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"w" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) +"x" = ( +/obj/item/toy/plush/farwa, +/turf/open/ice, +/area/bigredv2/caves/eta/xenobiology) +"y" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"z" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/caves/eta/xenobiology) +"A" = ( +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"B" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/eta/xenobiology) +"C" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/caves/eta/xenobiology) +"D" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/caves/eta/xenobiology) +"E" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/eta/xenobiology) +"F" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/eta/xenobiology) +"G" = ( +/turf/open/mars_cave/mars_cave_22, +/area/bigredv2/caves/eta/xenobiology) +"H" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/eta/xenobiology) +"O" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/xenobiology) +"P" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) +"X" = ( +/turf/open/floor/plating, +/area/bigredv2/caves/eta/xenobiology) + +(1,1,1) = {" +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(2,1,1) = {" +b +g +p +h +b +h +p +g +b +z +B +P +b +"} +(3,1,1) = {" +b +h +g +g +b +w +g +g +b +g +C +E +G +"} +(4,1,1) = {" +b +g +g +h +b +g +g +h +b +g +D +F +O +"} +(5,1,1) = {" +b +i +q +i +b +i +q +i +b +i +q +X +O +"} +(6,1,1) = {" +c +j +r +j +c +j +r +j +c +j +r +O +H +"} +(7,1,1) = {" +d +d +s +d +v +d +s +d +d +d +k +d +H +"} +(8,1,1) = {" +e +k +k +k +r +k +k +k +r +k +r +r +O +"} +(9,1,1) = {" +f +l +a +l +l +l +k +l +y +A +r +l +X +"} +(10,1,1) = {" +c +m +r +m +c +m +r +m +c +m +r +m +b +"} +(11,1,1) = {" +b +i +q +i +b +i +q +i +b +i +q +i +b +"} +(12,1,1) = {" +b +n +o +t +b +o +o +o +b +t +o +o +b +"} +(13,1,1) = {" +b +o +t +o +b +o +t +o +b +t +o +t +b +"} +(14,1,1) = {" +b +o +u +o +b +t +u +x +b +o +u +o +b +"} +(15,1,1) = {" +b +b +b +b +b +b +b +b +b +b +b +b +b +"} diff --git a/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm b/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm new file mode 100644 index 000000000000..c60a4e6854af --- /dev/null +++ b/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm @@ -0,0 +1,530 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/filtration_cave_cas) +"aM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement2, +/area/bigredv2/outside/filtration_cave_cas) +"aN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor, +/area/bigred/ground/security) +"bp" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + icon_state = "door_locked"; + name = "\improper Checkpoint Office" + }, +/turf/open/floor, +/area/bigred/ground/security) +"bx" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/motiondetector, +/turf/open/floor, +/area/bigred/ground/security) +"el" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs, +/turf/open/floor, +/area/bigred/ground/security) +"ge" = ( +/obj/structure/closet/secure_closet/marshal, +/turf/open/floor/greengrid, +/area/bigred/ground/security) +"gr" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/turf/open/asphalt/cement/cement3, +/area/bigredv2/outside/filtration_cave_cas) +"hz" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Checkpoint Office" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/delivery, +/area/bigred/ground/security) +"ie" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"kd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "red"; + phone_id = "Filtration Checkpoint" + }, +/turf/open/floor/greengrid, +/area/bigred/ground/security) +"kX" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigred/ground/security) +"nY" = ( +/turf/open/asphalt/cement/cement3, +/area/bigredv2/outside/filtration_cave_cas) +"oT" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/filtration_cave_cas) +"pI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement/cement2, +/area/bigredv2/outside/filtration_cave_cas) +"pV" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigred/ground/security) +"qy" = ( +/obj/item/device/radio, +/obj/structure/surface/table/almayer, +/turf/open/floor, +/area/bigred/ground/security) +"qS" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/se) +"rD" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor, +/area/bigred/ground/security) +"rF" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/greengrid, +/area/bigred/ground/security) +"sd" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor, +/area/bigred/ground/security) +"tV" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/filtration_cave_cas) +"uk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigred/ground/security) +"uF" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/greengrid, +/area/bigred/ground/security) +"ve" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Checkpoint Office" + }, +/turf/open/floor/delivery, +/area/bigred/ground/security) +"vH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigred/ground/security) +"vO" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/small_stack, +/turf/open/floor, +/area/bigred/ground/security) +"xa" = ( +/turf/open/floor/greengrid, +/area/bigred/ground/security) +"xj" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigred/ground/security) +"xr" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigred/ground/security) +"xw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/bigredv2/outside/filtration_cave_cas) +"An" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement1/north, +/area/bigredv2/outside/filtration_cave_cas) +"AY" = ( +/turf/open/floor, +/area/bigred/ground/security) +"DT" = ( +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/filtration_cave_cas) +"Es" = ( +/turf/open/asphalt/cement/cement14, +/area/bigredv2/outside/filtration_cave_cas) +"Fv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/filtration_cave_cas) +"Gi" = ( +/turf/open/asphalt/cement/cement9, +/area/bigredv2/outside/filtration_cave_cas) +"HM" = ( +/obj/item/tool/warning_cone, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/se) +"IS" = ( +/obj/structure/filingcabinet, +/turf/open/floor/greengrid, +/area/bigred/ground/security) +"KD" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1/north, +/area/bigredv2/outside/filtration_cave_cas) +"KO" = ( +/obj/item/trash/sosjerky, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigred/ground/security) +"Lw" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement9, +/area/bigredv2/outside/filtration_cave_cas) +"LX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigred/ground/security) +"Mo" = ( +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/filtration_cave_cas) +"Mq" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/greengrid, +/area/bigred/ground/security) +"Nv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement15, +/area/bigredv2/outside/filtration_cave_cas) +"NQ" = ( +/obj/structure/largecrate, +/turf/open/floor/greengrid, +/area/bigred/ground/security) +"NU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/vending/security, +/turf/open/floor, +/area/bigred/ground/security) +"On" = ( +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"Ot" = ( +/turf/open/asphalt/cement/cement15, +/area/bigredv2/outside/filtration_cave_cas) +"Pf" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor, +/area/bigred/ground/security) +"Pg" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/se) +"PS" = ( +/turf/open/mars, +/area/bigredv2/outside/se) +"Qf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/filtration_cave_cas) +"Qo" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/solaris/reinforced, +/area/bigred/ground/security) +"Rv" = ( +/obj/item/tool/warning_cone, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/filtration_cave_cas) +"RA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/filtration_cave_cas) +"Sr" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor, +/area/bigred/ground/security) +"SF" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigred/ground/security) +"Tw" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement3, +/area/bigredv2/outside/filtration_cave_cas) +"Vn" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor/greengrid, +/area/bigred/ground/security) +"VI" = ( +/obj/structure/largecrate, +/turf/open/floor, +/area/bigred/ground/security) +"XS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"XX" = ( +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement/cement1/north, +/area/bigredv2/outside/filtration_cave_cas) +"Ya" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/filtration_cave_cas) +"Yo" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid, +/turf/open/floor, +/area/bigred/ground/security) +"YZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv{ + dir = 8 + }, +/turf/open/floor/greengrid, +/area/bigred/ground/security) +"Zn" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"ZK" = ( +/obj/effect/landmark/crap_item, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigred/ground/security) + +(1,1,1) = {" +PS +HM +qS +qS +Pg +kX +kX +kX +kX +kX +kX +kX +kX +Qo +"} +(2,1,1) = {" +oT +tV +tV +tV +tV +kX +IS +LX +qy +bx +el +NU +rF +Qo +"} +(3,1,1) = {" +oT +pI +xw +nY +Es +SF +kd +AY +KO +uk +uk +AY +rF +Qo +"} +(4,1,1) = {" +oT +Gi +KD +XX +Ot +SF +Vn +xj +uk +AY +uk +uk +AY +hz +"} +(5,1,1) = {" +oT +tV +tV +Qf +Qf +kX +YZ +aN +rD +AY +uk +AY +ge +Qo +"} +(6,1,1) = {" +oT +aM +Tw +gr +Es +kX +kX +kX +kX +bp +kX +kX +kX +Qo +"} +(7,1,1) = {" +oT +Ya +On +On +Mo +kX +VI +VI +AY +uk +AY +pV +Mq +Qo +"} +(8,1,1) = {" +oT +DT +XS +On +Mo +kX +sd +AY +uk +uk +AY +AY +uF +Qo +"} +(9,1,1) = {" +oT +Fv +XS +XS +Mo +ve +uk +uk +AY +AY +uk +AY +xa +Qo +"} +(10,1,1) = {" +oT +RA +On +Zn +Mo +kX +AY +Pf +vH +AY +uk +uk +xa +Qo +"} +(11,1,1) = {" +oT +Rv +On +XS +aH +kX +vH +ZK +Sr +Yo +vO +xr +NQ +Qo +"} +(12,1,1) = {" +ie +Lw +An +An +Nv +Qo +Qo +Qo +Qo +Qo +Qo +Qo +Qo +Qo +"} diff --git a/maps/map_files/BigRed/standalone/crashlanding-eva.dmm b/maps/map_files/BigRed/standalone/crashlanding-eva.dmm new file mode 100644 index 000000000000..cce52624863f --- /dev/null +++ b/maps/map_files/BigRed/standalone/crashlanding-eva.dmm @@ -0,0 +1,1843 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"an" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/caves_north) +"at" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/bigredv2/caves_north) +"au" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars, +/area/bigredv2/caves_north) +"aw" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy20" + }, +/area/bigredv2/caves_north) +"ax" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy27" + }, +/area/bigredv2/caves_north) +"ay" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy25" + }, +/area/bigredv2/caves_north) +"aB" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/general_offices) +"aD" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy22" + }, +/area/bigredv2/outside/general_offices) +"aF" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy23" + }, +/area/bigredv2/outside/general_offices) +"aG" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy21" + }, +/area/bigredv2/outside/general_offices) +"aH" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy25" + }, +/area/bigredv2/outside/general_offices) +"aI" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/general_offices) +"aK" = ( +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"aP" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy18" + }, +/area/bigredv2/outside/general_offices) +"aQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars, +/area/bigredv2/caves_north) +"aR" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, +/area/bigredv2/outside/general_offices) +"aS" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/bigredv2/outside/general_offices) +"aT" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, +/area/bigredv2/outside/general_offices) +"aV" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy19" + }, +/area/bigredv2/outside/general_offices) +"aZ" = ( +/obj/structure/window_frame/solaris, +/obj/item/shard, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"bf" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"bg" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/shuttle/dropship/can_surgery, +/area/bigredv2/outside/general_offices) +"bi" = ( +/obj/item/paper/crumpled/bloody, +/obj/effect/decal/cleanable/blood{ + icon_state = "u_psycopath_l" + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"bk" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"bp" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"br" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy16" + }, +/area/bigredv2/outside/general_offices) +"bt" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"bw" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy17" + }, +/area/bigredv2/outside/general_offices) +"bA" = ( +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"bE" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy14" + }, +/area/bigredv2/outside/general_offices) +"bF" = ( +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"bG" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy15" + }, +/area/bigredv2/outside/general_offices) +"bJ" = ( +/obj/structure/bed/chair/dropship/passenger, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"bM" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy12" + }, +/area/bigredv2/outside/general_offices) +"bN" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy13" + }, +/area/bigredv2/outside/general_offices) +"ca" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy4" + }, +/area/bigredv2/outside/general_offices) +"cc" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, +/area/bigredv2/outside/general_offices) +"cd" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, +/area/bigredv2/outside/general_offices) +"cf" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy5" + }, +/area/bigredv2/outside/general_offices) +"cj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"cm" = ( +/obj/effect/spawner/gibspawner/human, +/obj/effect/decal/cleanable/blood, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/bigredv2/outside/general_offices) +"cn" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy_leftengine" + }, +/area/bigredv2/outside/general_offices) +"co" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy8" + }, +/area/bigredv2/outside/general_offices) +"cp" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy9" + }, +/area/bigredv2/outside/general_offices) +"cq" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy_rightengine" + }, +/area/bigredv2/outside/general_offices) +"cs" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 + }, +/area/bigredv2/outside/general_offices) +"cv" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_3"; + opacity = 0 + }, +/area/bigredv2/outside/general_offices) +"cA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories Tool Storage" + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"cC" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_2"; + opacity = 0 + }, +/area/bigredv2/outside/general_offices) +"cD" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_2"; + opacity = 0 + }, +/area/bigredv2/outside/general_offices) +"cE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"cF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"cG" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/bigredv2/outside/general_offices) +"cH" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy1" + }, +/area/bigredv2/outside/general_offices) +"cI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/human, +/turf/open/mars, +/area/bigredv2/caves_north) +"cJ" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy2" + }, +/area/bigredv2/outside/general_offices) +"cK" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy3" + }, +/area/bigredv2/outside/general_offices) +"cL" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/area/bigredv2/outside/general_offices) +"cO" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Dormitories"; + name = "\improper Dormitories Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"cP" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"cV" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/bigredv2/caves_north) +"di" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"dx" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/bar) +"dQ" = ( +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/ne) +"dR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"dX" = ( +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"eF" = ( +/turf/template_noop, +/area/template_noop) +"eL" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/shuttle/dropship/can_surgery, +/area/bigredv2/outside/general_offices) +"fm" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"fw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"fB" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"fY" = ( +/obj/item/clothing/under/darkred, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"ge" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/chef, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"gp" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"gP" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/general_offices) +"hf" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/wood, +/area/bigredv2/outside/general_offices) +"hs" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"id" = ( +/obj/structure/surface/rack, +/obj/item/xeno_restraints, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"ig" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"iq" = ( +/obj/structure/surface/table, +/turf/open/floor/plating/wood, +/area/bigredv2/outside/general_offices) +"iM" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/general_offices) +"jr" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"jQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/ne) +"kL" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"kV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/hydroponics) +"lv" = ( +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" + }, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/general_offices) +"mr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/ne) +"mt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"mC" = ( +/turf/open/floor/plating/wood, +/area/bigredv2/outside/general_offices) +"mL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/wood_broken3, +/area/bigredv2/outside/general_offices) +"nD" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"nN" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/general_offices) +"nR" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"nW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"og" = ( +/obj/item/stack/sheet/plasteel, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"oi" = ( +/obj/structure/surface/rack, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"oD" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"oW" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/general_offices) +"ph" = ( +/obj/structure/surface/rack, +/obj/item/device/mass_spectrometer/adv, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"pn" = ( +/obj/structure/surface/rack, +/obj/item/map/big_red_map, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"pt" = ( +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/general_offices) +"pM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"qb" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"qo" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/remains, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"rg" = ( +/obj/structure/machinery/light, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"rk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/uranium{ + amount = 50 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"rv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Bedroom" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"rw" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"rK" = ( +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/hydroponics) +"sm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"ta" = ( +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"tI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/ne) +"tQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"uj" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"uw" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"vi" = ( +/turf/open/floor/plating/wood_broken5, +/area/bigredv2/outside/general_offices) +"vU" = ( +/turf/open/floor/plating/wood_broken6, +/area/bigredv2/outside/general_offices) +"wM" = ( +/obj/structure/girder, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/general_offices) +"xs" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"xt" = ( +/obj/item/clothing/under/darkred{ + pixel_y = 7; + pixel_x = 10 + }, +/obj/structure/surface/rack, +/obj/item/clothing/under/darkred, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"xU" = ( +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" + }, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"xW" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/general_offices) +"yy" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"zM" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Dormitories EVA" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"AA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"AX" = ( +/obj/structure/surface/rack, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"Bb" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars/mars_dirt_11, +/area/bigredv2/caves_north) +"Bv" = ( +/obj/structure/computerframe, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"BC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/tool, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"BJ" = ( +/obj/structure/surface/table, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_y = -7; + pixel_x = 8 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_y = 3; + pixel_x = -1 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"BP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"CA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"CU" = ( +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" + }, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/ne) +"Dg" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/general_offices) +"Dh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"Dk" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"EO" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy20" + }, +/area/bigredv2/outside/general_offices) +"Fw" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"FF" = ( +/obj/structure/bed, +/turf/open/floor/plating/wood, +/area/bigredv2/outside/general_offices) +"Gn" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"Gz" = ( +/obj/structure/machinery/camera/autoname, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"GM" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/brown{ + pixel_y = 7; + pixel_x = 12 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"Hj" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_north) +"Hk" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"Hq" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"Hw" = ( +/obj/structure/bed/chair/dropship/passenger, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"HG" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/general_offices) +"HN" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Dormitories Lavatory" + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"HS" = ( +/obj/structure/surface/table, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"Id" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/uranium{ + amount = 50 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"Ie" = ( +/turf/open/floor/plating/wood_broken4, +/area/bigredv2/outside/general_offices) +"Jl" = ( +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/hydroponics) +"Js" = ( +/turf/open/floor/plating/wood_broken3, +/area/bigredv2/outside/general_offices) +"Jv" = ( +/obj/structure/bed/bedroll, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"JI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"JW" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"Lw" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"Mc" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"Ml" = ( +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/general_offices) +"Od" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/ne) +"Oh" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"OI" = ( +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/general_offices) +"Pb" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/general_offices) +"Pg" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"Ph" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"PE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"PI" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"PN" = ( +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/general_offices) +"PO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"Rk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"Ro" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"RI" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/lightbrown{ + pixel_x = 10; + pixel_y = -5 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"Tz" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"TX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"Ul" = ( +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"UZ" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/ne) +"VB" = ( +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/ne) +"VQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"WR" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/prop/helmetgarb/spent_buckshot{ + pixel_x = 9; + pixel_y = -10 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"Xl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/wood_broken2, +/area/bigredv2/outside/general_offices) +"XK" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_north) +"Yg" = ( +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"Yt" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/general_offices) +"YB" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"YL" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/silver, +/obj/item/stack/sheet/mineral/silver{ + amount = 20 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"YQ" = ( +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/ne) +"YV" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves_north) +"ZD" = ( +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) + +(1,1,1) = {" +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +"} +(2,1,1) = {" +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +"} +(3,1,1) = {" +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +"} +(4,1,1) = {" +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +"} +(5,1,1) = {" +eF +eF +eF +eF +eF +eF +eF +aB +aB +aB +HN +aB +aB +aB +aB +aB +aB +aB +cE +aK +aK +di +bA +dx +eF +eF +eF +eF +eF +"} +(6,1,1) = {" +eF +eF +eF +eF +eF +eF +eF +aB +xt +PI +AA +PI +WR +aB +oi +oi +oi +aB +aK +aK +aK +aB +aB +dx +dx +eF +eF +eF +eF +"} +(7,1,1) = {" +eF +eF +eF +eF +eF +eF +eF +aB +RI +CA +dR +PI +BJ +aB +nW +PO +jr +aB +cF +aK +aK +rv +mC +hf +aB +eF +eF +eF +eF +"} +(8,1,1) = {" +eF +eF +eF +eF +eF +eF +eF +aB +PI +sm +dR +CA +GM +aB +Dk +PO +Yg +aB +PO +bf +bf +aB +iq +FF +aB +eF +eF +eF +eF +"} +(9,1,1) = {" +eF +eF +eF +eF +eF +eF +eF +aB +gp +fY +Jv +PI +bf +nD +uw +BC +Yg +wM +TX +Yg +Pb +aB +aB +aB +aB +eF +eF +eF +eF +"} +(10,1,1) = {" +eF +eF +eF +eF +eF +eF +eF +aB +oD +bf +bp +Yg +Yg +wM +PE +Yg +Yg +cA +Yg +Yg +PN +rv +vi +Xl +aB +eF +eF +eF +eF +"} +(11,1,1) = {" +eF +eF +eF +eF +eF +eF +eF +aB +Yg +OI +bf +PN +Yg +pt +Yg +PO +PO +aK +ge +qb +PN +aB +rw +YB +aB +eF +eF +eF +eF +"} +(12,1,1) = {" +eF +eF +eF +eF +eF +eF +eF +aB +Yg +Yg +PN +HG +Yg +Yg +Yg +PO +Yg +pt +OI +dX +Yg +aB +aB +aB +aB +eF +eF +eF +eF +"} +(13,1,1) = {" +eF +eF +eF +eF +eF +ab +ab +aB +aB +aB +aB +pt +dX +pt +dX +Yg +tQ +oW +PO +OI +PO +rv +vU +mL +wM +tI +UZ +eF +eF +"} +(14,1,1) = {" +eF +eF +eF +eF +eF +aQ +cV +EO +aP +bg +br +bE +bM +bg +ca +cn +cs +cC +cG +Yg +gP +pt +Js +Ie +JW +tI +rK +Jl +Jl +"} +(15,1,1) = {" +eF +eF +eF +eF +eF +aQ +cI +aG +AX +Ul +Hq +Hq +Hq +pM +id +co +ca +ca +cH +ZD +Ml +Ml +JI +Yt +pt +jQ +ta +ta +Dh +"} +(16,1,1) = {" +eF +eF +eF +eF +eF +at +aw +aD +aR +bi +bt +bF +bF +bF +cc +Ul +Ul +Ul +eL +gP +Gn +Yg +PN +PN +PN +mr +kV +Rk +BP +"} +(17,1,1) = {" +eF +eF +eF +eF +eF +aQ +ax +Bv +cm +bJ +bJ +bJ +Hw +bJ +aS +bk +bk +bk +cJ +OI +Yg +Yg +YQ +YQ +Od +dQ +ta +Mc +fw +"} +(18,1,1) = {" +eF +eF +eF +eF +eF +au +ay +aF +aT +bk +bk +bk +bk +bk +cd +Ul +qo +Ul +eL +Ml +Ro +lv +CU +VB +CU +eF +xU +xs +ta +"} +(19,1,1) = {" +eF +eF +eF +eF +eF +aQ +an +aG +pn +Fw +ig +ig +ig +Ul +AX +cp +cf +cf +cK +PO +PO +nN +eF +eF +eF +eF +Hk +ta +fw +"} +(20,1,1) = {" +eF +eF +eF +eF +eF +Bb +an +aH +aV +bg +bw +bG +bN +bg +cf +cq +cv +cD +cL +OI +Yg +mt +eF +eF +eF +eF +Jl +ta +eF +"} +(21,1,1) = {" +eF +eF +eF +eF +eF +XK +an +Dg +OI +PO +PO +OI +Yg +pt +Yg +Yg +Yg +pt +PO +fB +OI +OI +eF +eF +eF +eF +eF +eF +eF +"} +(22,1,1) = {" +eF +eF +eF +eF +eF +YV +ab +aB +PN +PO +xW +Yg +fB +dX +kL +Yg +Yg +JW +PO +OI +Yg +wM +eF +eF +eF +eF +eF +eF +eF +"} +(23,1,1) = {" +eF +eF +eF +eF +eF +Hj +ab +aB +Pg +Yg +Yg +fm +HS +wM +Oh +Oh +Oh +wM +iM +iM +rg +aB +eF +eF +eF +eF +eF +eF +eF +"} +(24,1,1) = {" +eF +eF +eF +eF +eF +Hj +ab +aI +aZ +zM +aZ +aZ +aI +aI +aI +aI +aI +aI +cj +aK +cP +aB +eF +eF +eF +eF +eF +eF +eF +"} +(25,1,1) = {" +eF +eF +eF +eF +eF +ab +ab +aI +yy +uj +Tz +VQ +rk +VQ +Lw +uj +nR +aI +cO +cO +cO +aB +eF +eF +eF +eF +eF +eF +eF +"} +(26,1,1) = {" +eF +eF +eF +eF +eF +eF +eF +aI +uj +uj +uj +VQ +VQ +VQ +uj +VQ +uj +aI +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +"} +(27,1,1) = {" +eF +eF +eF +eF +eF +eF +eF +aI +uj +uj +uj +uj +og +uj +hs +uj +Gz +aI +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +"} +(28,1,1) = {" +eF +eF +eF +eF +eF +eF +eF +aI +ph +uj +Id +uj +YL +uj +Ph +uj +Ph +aI +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +"} +(29,1,1) = {" +eF +eF +eF +eF +eF +eF +eF +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +eF +"} diff --git a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm new file mode 100644 index 000000000000..6fd3ae9aad83 --- /dev/null +++ b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm @@ -0,0 +1,1917 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ai" = ( +/turf/open/mars, +/area/bigredv2/outside/e) +"ap" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/office_complex) +"as" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Office Complex 1"; + name = "\improper Office Complex Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/office_complex) +"ax" = ( +/obj/structure/window_frame/solaris, +/obj/item/shard, +/turf/open/floor/plating, +/area/bigredv2/outside/office_complex) +"aC" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy20" + }, +/area/bigredv2/outside/office_complex) +"aD" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy27" + }, +/area/bigredv2/outside/office_complex) +"aE" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy25" + }, +/area/bigredv2/outside/office_complex) +"aL" = ( +/obj/effect/decal/mecha_wreckage/ripley/firefighter, +/turf/open/floor/mech_bay_recharge_floor, +/area/bigredv2/outside/office_complex) +"aN" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy21" + }, +/area/bigredv2/outside/office_complex) +"aO" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy22" + }, +/area/bigredv2/outside/office_complex) +"aQ" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy23" + }, +/area/bigredv2/outside/office_complex) +"aT" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy18" + }, +/area/bigredv2/outside/office_complex) +"aW" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"aX" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy19" + }, +/area/bigredv2/outside/office_complex) +"aY" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Office Complex 1"; + name = "\improper Office Complex Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/office_complex) +"ba" = ( +/obj/structure/window_frame/solaris, +/obj/item/shard, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/bigredv2/outside/office_complex) +"bc" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"be" = ( +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bf" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bj" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy16" + }, +/area/bigredv2/outside/office_complex) +"bl" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, +/area/bigredv2/outside/office_complex) +"bm" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/bigredv2/outside/office_complex) +"bn" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_middle, +/area/bigredv2/outside/office_complex) +"bo" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, +/area/bigredv2/outside/office_complex) +"bq" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy17" + }, +/area/bigredv2/outside/office_complex) +"bs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/paper, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bz" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy14" + }, +/area/bigredv2/outside/office_complex) +"bA" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy15" + }, +/area/bigredv2/outside/office_complex) +"bF" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy12" + }, +/area/bigredv2/outside/office_complex) +"bG" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy13" + }, +/area/bigredv2/outside/office_complex) +"bH" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Private Office" + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/plating, +/area/bigredv2/outside/office_complex) +"bK" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bN" = ( +/obj/structure/window_frame/solaris, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/bigredv2/outside/office_complex) +"bQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bU" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"cx" = ( +/obj/effect/spawner/gibspawner/human, +/obj/item/limb/arm/l_arm, +/obj/item/limb/leg/l_leg, +/obj/item/limb/hand/r_hand, +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, +/area/bigredv2/outside/office_complex) +"cD" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy_leftengine" + }, +/area/bigredv2/outside/office_complex) +"cE" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy8" + }, +/area/bigredv2/outside/office_complex) +"cF" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy9" + }, +/area/bigredv2/outside/office_complex) +"cG" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy_rightengine" + }, +/area/bigredv2/outside/office_complex) +"cL" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 + }, +/area/bigredv2/outside/office_complex) +"cM" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy4" + }, +/area/bigredv2/outside/office_complex) +"cN" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy5" + }, +/area/bigredv2/outside/office_complex) +"cO" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_3"; + opacity = 0 + }, +/area/bigredv2/outside/office_complex) +"cR" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/office_complex) +"cT" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_2"; + opacity = 0 + }, +/area/bigredv2/outside/office_complex) +"cU" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_2"; + opacity = 0 + }, +/area/bigredv2/outside/office_complex) +"da" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris, +/area/bigredv2/outside/office_complex) +"dc" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/bigredv2/outside/office_complex) +"dd" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/area/bigredv2/outside/office_complex) +"dg" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy1" + }, +/area/bigredv2/outside/office_complex) +"dh" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy2" + }, +/area/bigredv2/outside/office_complex) +"di" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy3" + }, +/area/bigredv2/outside/office_complex) +"dk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex Janitor Room" + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"dm" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy1" + }, +/area/bigredv2/outside/se) +"dn" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/se) +"do" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy3" + }, +/area/bigredv2/outside/se) +"ds" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/outside/se) +"dz" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"dB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"dE" = ( +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"dF" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, +/area/bigredv2/outside/office_complex) +"dH" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/bigredv2/outside/office_complex) +"dJ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"eY" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/c) +"fp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/mass_spectrometer/adv, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"gu" = ( +/obj/structure/surface/table, +/obj/item/trash/semki, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"gV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"hl" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"hv" = ( +/turf/open/floor/warnwhite, +/area/bigredv2/outside/office_complex) +"hA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/black, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"hU" = ( +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"ie" = ( +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"ip" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"jl" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) +"jo" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/se) +"jr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) +"jx" = ( +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" + }, +/obj/item/limb/leg/l_leg, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"jz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"jE" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"ka" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/e) +"kP" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"lH" = ( +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"lN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"lX" = ( +/obj/item/device/analyzer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"mu" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"mx" = ( +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"mP" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/se) +"nn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"ny" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/e) +"nC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/se) +"oc" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"of" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"oE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"pt" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"pu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"pW" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/item/clothing/under/marine/veteran/pmc, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"qf" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/e) +"qk" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"ql" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"qw" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/item/device/radio/headset/distress/pmc/hvh, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"qY" = ( +/obj/structure/girder, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"si" = ( +/obj/item/clothing/head/helmet/marine/veteran/pmc, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"sR" = ( +/obj/item/storage/firstaid, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"sX" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"tz" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/c) +"tF" = ( +/obj/item/frame/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"tG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/office_complex) +"ua" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"ue" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/nsg23, +/obj/item/ammo_magazine/rifle/nsg23/extended, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"ut" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/e) +"uw" = ( +/obj/structure/girder, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/office_complex) +"uC" = ( +/obj/effect/spawner/gibspawner/human, +/obj/item/weapon/gun/rifle/m41a/corporate/no_lock{ + desc = "A Weyland-Yutani creation, this M41A MK2 comes equipped in corporate white. Uses 10x24mm caseless ammunition. The IFF electronics appear to be non-functional."; + name = "battered M41A pulse rifle Mk2" + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"uL" = ( +/obj/item/weapon/gun/rifle/nsg23/no_lock, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"va" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"ve" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top, +/area/bigredv2/outside/office_complex) +"vl" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) +"vw" = ( +/obj/item/limb/arm/l_arm, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/bigredv2/outside/office_complex) +"vH" = ( +/obj/structure/janitorialcart, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"wm" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/item/limb/hand/l_hand, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"wn" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"ws" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"wO" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"wZ" = ( +/obj/item/device/multitool, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"xp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"xr" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/c) +"xx" = ( +/obj/structure/surface/rack, +/obj/item/map/big_red_map, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"xU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"yI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"zf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"zh" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/pmc, +/obj/item/weapon/gun/rifle/nsg23/no_lock, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"zl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"zq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex Janitor Room" + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"zv" = ( +/obj/structure/janitorialcart, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"zH" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"zX" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"Ak" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Al" = ( +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Au" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"Av" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"AF" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"AK" = ( +/obj/item/shard, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"Be" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/e) +"Bj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"Bu" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/obj/item/limb/arm/l_arm, +/obj/item/limb/leg/l_leg, +/obj/item/limb/hand/r_hand, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Bz" = ( +/obj/item/clothing/head/welding, +/turf/open/floor/warnwhite, +/area/bigredv2/outside/office_complex) +"BX" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/e) +"Ct" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/se) +"Cy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Cz" = ( +/obj/item/clothing/shoes/galoshes, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"CB" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"CD" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Db" = ( +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"Dn" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"DN" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"DP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Eo" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/item/device/radio/headset/distress/pmc/hvh, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Eq" = ( +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"Fc" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Fi" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Fp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"FH" = ( +/obj/item/trash/raisins, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"FV" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"FZ" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Gr" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/e) +"Gx" = ( +/obj/item/weapon/gun/rifle/nsg23/no_lock/stripped{ + desc = "A rare sight, this rifle is seen most commonly in the hands of Weyland-Yutani PMCs. Compared to the M41A MK2, it has noticeably improved handling and vastly improved performance at long and medium range, but compares similarly up close. This one seems to have been heavily damaged from impact, you can still see some debris that resembles a scope and underbarrel attachment point on it."; + name = "smashed NSG 23 assault rifle" + }, +/turf/open/shuttle/dropship/can_surgery/dark_grey_bottom, +/area/bigredv2/outside/office_complex) +"GG" = ( +/obj/item/weapon/gun/rifle/m41a/corporate/no_lock{ + desc = "A Weyland-Yutani creation, this M41A MK2 comes equipped in corporate white. Uses 10x24mm caseless ammunition. The IFF electronics appear to be non-functional."; + name = "battered M41A pulse rifle Mk2" + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"GI" = ( +/obj/structure/machinery/mecha_part_fabricator, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"GK" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_top, +/area/bigredv2/outside/office_complex) +"Hq" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"Hr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"HE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"HG" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"HP" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/e) +"Ic" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/c) +"Ik" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/e) +"Iq" = ( +/obj/item/shard, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"Is" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/se) +"Iz" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/e) +"IZ" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"JH" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Ko" = ( +/obj/structure/computerframe, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Kp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"Kq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"KK" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Lq" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"Lx" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"LN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"LQ" = ( +/obj/structure/surface/rack, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Mb" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/limb/leg/r_leg, +/obj/item/weapon/gun/pistol/m4a3/training{ + name = "dented M4A3 service pistol" + }, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Ml" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"MJ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"Na" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/se) +"Nc" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/ammo_magazine/pistol/rubber, +/obj/item/ammo_magazine/pistol/rubber, +/obj/item/ammo_magazine/pistol/rubber, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"NQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Office Complex Storage" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"NZ" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/obj/item/clothing/head/helmet/marine/veteran/pmc, +/obj/item/clothing/under/marine/veteran/pmc, +/obj/item/clothing/head/helmet/marine/veteran/pmc, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Oi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"OH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"ON" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"OU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"OX" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Pp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"Pv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/lighter/random, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"PH" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner/bigred_crashed_cl, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Qh" = ( +/obj/item/stack/rods, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"Qr" = ( +/obj/structure/surface/rack, +/obj/item/device/binoculars, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"QD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Rd" = ( +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/office_complex) +"Sf" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"Sm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Sy" = ( +/obj/structure/surface/rack, +/obj/item/xeno_restraints, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"SD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/syndi_cakes, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"SK" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"Tb" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"Tk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/se) +"Ts" = ( +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"TC" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/cigarette, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/device/healthanalyzer, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"TH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/taperecorder, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"TU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"UB" = ( +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"UR" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/rubber, +/obj/item/ammo_magazine/rifle/rubber, +/obj/item/ammo_magazine/rifle/rubber, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Vg" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/bigredv2/outside/office_complex) +"Vi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Vk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"Vy" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/c) +"VG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"Wb" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"Wd" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Wn" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/e) +"Wt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/se) +"Wv" = ( +/obj/structure/machinery/robotic_fabricator, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"WA" = ( +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"WB" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"WG" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"WU" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"WV" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc_engineer, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"WZ" = ( +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Xg" = ( +/obj/effect/spawner/random/tech_supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"Xm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex" + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"XS" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"Yd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"Yj" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"Ym" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/office_complex) +"YI" = ( +/obj/item/frame/table, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"YP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/hotdog, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"Zl" = ( +/obj/item/frame/table, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"ZG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"ZR" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc_medic, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) + +(1,1,1) = {" +Hq +xr +tz +Lx +Lx +Lx +Lx +Iq +Lx +Lx +Lx +Lx +Lx +Lx +Lx +Iq +Lx +Qh +Lx +SK +SK +SK +SK +SK +SK +"} +(2,1,1) = {" +Hq +xr +FV +ap +ap +ap +aY +bN +aY +ap +ap +ap +ap +ap +ap +ap +bN +ax +aY +ap +ap +SK +SK +SK +ap +"} +(3,1,1) = {" +Hq +xr +FV +ap +Wv +hv +Ts +sX +sX +Sf +ap +mu +mu +WG +ap +Dn +YI +Yj +lH +gu +ap +SK +SK +SK +ap +"} +(4,1,1) = {" +Hq +xr +kP +as +Ts +hv +xp +YP +Ts +Bj +fp +Cy +Zl +Xg +ap +UB +FH +OU +SD +TC +as +SK +SK +SK +ap +"} +(5,1,1) = {" +Hq +xr +FV +as +DN +Bz +xp +Ml +UB +Cy +OU +pt +TH +FZ +ap +ip +ZG +IZ +Vi +zf +cR +zX +SK +SK +ap +"} +(6,1,1) = {" +Hq +xr +FV +as +aL +hv +Cy +hA +Cy +WU +ap +QD +xp +UB +WZ +CD +gV +wZ +UB +YI +as +SK +SK +SK +ap +"} +(7,1,1) = {" +Hq +xr +FV +ap +Ts +hv +lX +UB +HG +Kp +WB +Cy +UB +tF +UB +DP +Ak +UB +xU +xU +ap +lN +SK +Av +ap +"} +(8,1,1) = {" +Hq +xr +FV +ap +GI +UB +WA +UB +Cy +Cy +ap +WB +WB +ap +UB +NQ +ap +ap +WB +WB +ap +da +ap +ap +ap +"} +(9,1,1) = {" +Hq +xr +FV +ap +ap +ap +AF +QD +LN +oE +tG +jz +Cy +uw +jz +ON +TU +Vi +Vi +TU +Sm +VG +HE +Vk +Pp +"} +(10,1,1) = {" +Hq +Vy +FV +SK +SK +ap +aC +bj +bz +bF +bJ +bj +bz +bF +bJ +bj +bz +bF +cD +cL +cT +dc +Eq +Tb +Eq +"} +(11,1,1) = {" +Ic +tz +SK +SK +SK +WB +aN +WV +Mb +hl +Al +KK +Nc +OX +Al +ws +hl +hl +cE +cM +cM +cM +dg +tG +tG +"} +(12,1,1) = {" +XS +ap +ap +ap +aC +aT +aO +bl +dz +bc +bc +dB +bc +bc +bc +bc +Bu +dF +pW +zH +ws +hl +cE +dm +Is +"} +(13,1,1) = {" +XS +ap +qk +Eq +aN +Sy +KK +bm +wO +ql +oc +oc +oc +oc +PH +oc +ql +GK +si +GG +bc +dz +bc +dn +Wt +"} +(14,1,1) = {" +va +Xm +yI +aC +aO +Al +Al +Vg +hl +qw +ws +hl +zH +hl +hl +hl +hl +dH +KK +KK +KK +Wd +cF +do +ds +"} +(15,1,1) = {" +eY +Eq +zl +aD +Ko +aW +uL +bn +NZ +jx +dE +dE +bc +bc +bc +bc +bc +Gx +bc +bc +bc +bc +dh +jr +nC +"} +(16,1,1) = {" +ny +ba +Hr +aE +aQ +Al +Al +vw +wm +wO +oc +oc +oc +oc +CB +oc +oc +bm +xx +ue +Fc +UR +cE +dm +Ct +"} +(17,1,1) = {" +ka +ap +MJ +Tb +aN +KK +Qr +bm +hl +hl +hl +zH +ZR +hl +hl +hl +pW +ve +dz +dJ +dJ +dJ +dJ +dn +mP +"} +(18,1,1) = {" +ka +ap +ap +ap +aE +aX +aQ +bo +bc +bc +uC +bc +sR +bc +bc +bc +bc +cx +wO +Eo +ql +oc +cF +do +jl +"} +(19,1,1) = {" +Wn +Ik +of +of +of +Ym +aN +ql +Fi +oc +Al +LQ +KK +KK +Al +ql +wO +oc +cF +cN +cN +cN +di +Tk +jl +"} +(20,1,1) = {" +ai +Be +ka +Au +Au +qY +aE +bq +bA +bG +bJ +bq +bA +bG +bJ +bq +bA +bG +cG +cO +cU +dd +Rd +Tk +Na +"} +(21,1,1) = {" +Gr +vl +ka +of +Au +qY +Kq +Lq +Wb +QD +WA +Eq +jE +uw +Cy +Eq +uw +AF +Cy +JH +Cy +UB +Rd +Tk +Na +"} +(22,1,1) = {" +BX +HP +ka +of +Au +ap +WB +ap +UB +ap +Cy +nn +Oi +WB +QD +Cy +ap +zv +UB +Kp +QD +UB +WB +Tk +Na +"} +(23,1,1) = {" +Iz +ut +ka +of +of +ap +bQ +UB +bQ +bH +WA +bQ +bU +ap +Kp +ua +ap +vH +UB +Fp +Kp +Cy +dk +Tk +jl +"} +(24,1,1) = {" +qf +vl +ka +of +of +bN +bf +bs +wn +ap +WB +UB +UB +ap +Yd +ie +zq +pu +Cy +Cz +Pv +pu +be +Tk +jl +"} +(25,1,1) = {" +ai +Be +ka +of +AK +ap +ap +ap +ap +ap +bK +UB +be +ap +mx +UB +Db +UB +zh +pu +OH +hU +ap +Na +jo +"} diff --git a/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm b/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm new file mode 100644 index 000000000000..d191e7b68068 --- /dev/null +++ b/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm @@ -0,0 +1,297 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_lambda) +"b" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"c" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"d" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/lambda/virology) +"e" = ( +/turf/open/floor/bluegrid/damaged3, +/area/bigredv2/caves/lambda/virology) +"f" = ( +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"g" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/lambda/virology) +"h" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_lambda) +"i" = ( +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"j" = ( +/turf/open/floor/bluegrid/damaged5, +/area/bigredv2/caves/lambda/virology) +"k" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/lambda/virology) +"l" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"m" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"n" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/lambda/virology) +"o" = ( +/obj/structure/curtain/medical, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"p" = ( +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) +"q" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave, +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"r" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) +"w" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_lambda) +"F" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/caves_lambda) +"H" = ( +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_lambda) +"I" = ( +/turf/open/mars_cave/mars_cave_12, +/area/bigredv2/caves_lambda) +"K" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_lambda) +"O" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_lambda) +"P" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"X" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/caves_lambda) + +(1,1,1) = {" +a +h +H +c +b +b +"} +(2,1,1) = {" +b +b +l +l +b +b +"} +(3,1,1) = {" +b +b +c +r +I +b +"} +(4,1,1) = {" +b +b +r +O +H +h +"} +(5,1,1) = {" +h +F +I +X +h +c +"} +(6,1,1) = {" +b +O +I +I +c +b +"} +(7,1,1) = {" +b +b +c +K +c +b +"} +(8,1,1) = {" +b +b +K +F +I +O +"} +(9,1,1) = {" +b +h +c +K +I +c +"} +(10,1,1) = {" +h +H +m +c +O +I +"} +(11,1,1) = {" +I +h +H +H +O +O +"} +(12,1,1) = {" +b +c +O +K +I +c +"} +(13,1,1) = {" +b +b +c +c +w +O +"} +(14,1,1) = {" +b +b +c +O +c +c +"} +(15,1,1) = {" +b +b +c +O +c +b +"} +(16,1,1) = {" +b +I +K +P +b +b +"} +(17,1,1) = {" +b +c +h +O +b +b +"} +(18,1,1) = {" +b +c +m +c +b +b +"} +(19,1,1) = {" +c +K +K +c +b +b +"} +(20,1,1) = {" +H +O +K +b +b +b +"} +(21,1,1) = {" +h +c +b +b +b +b +"} +(22,1,1) = {" +d +d +n +b +b +b +"} +(23,1,1) = {" +e +i +n +n +b +b +"} +(24,1,1) = {" +f +j +o +n +n +b +"} +(25,1,1) = {" +g +k +p +q +n +b +"} diff --git a/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm b/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm new file mode 100644 index 000000000000..8bf2e282de1f --- /dev/null +++ b/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm @@ -0,0 +1,271 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"b" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"c" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"g" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) + +(1,1,1) = {" +a +a +a +a +a +a +b +b +b +b +b +b +b +b +b +"} +(2,1,1) = {" +b +a +g +a +b +b +b +b +b +b +b +b +b +b +b +"} +(3,1,1) = {" +b +a +a +a +a +b +b +b +b +b +b +b +b +b +a +"} +(4,1,1) = {" +b +a +a +a +c +a +a +a +b +b +b +b +b +a +a +"} +(5,1,1) = {" +b +b +a +a +a +a +a +a +a +b +b +b +b +a +a +"} +(6,1,1) = {" +b +b +b +a +a +a +g +a +c +a +b +b +a +a +a +"} +(7,1,1) = {" +b +b +b +b +a +a +a +a +a +a +a +b +a +g +a +"} +(8,1,1) = {" +b +b +b +b +b +a +a +a +a +g +a +a +a +a +a +"} +(9,1,1) = {" +b +b +c +c +b +a +c +a +a +c +a +a +a +a +a +"} +(10,1,1) = {" +b +c +a +a +c +a +a +b +b +b +b +b +a +a +a +"} +(11,1,1) = {" +b +c +a +a +a +g +a +b +b +b +b +b +b +a +a +"} +(12,1,1) = {" +b +c +a +c +a +c +a +c +b +b +b +b +b +b +a +"} +(13,1,1) = {" +b +b +c +c +c +a +c +a +b +b +b +b +b +b +b +"} +(14,1,1) = {" +b +b +b +b +c +c +b +b +b +b +b +b +b +b +b +"} +(15,1,1) = {" +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} diff --git a/maps/map_files/BigRed/standalone/lambda-graveyard.dmm b/maps/map_files/BigRed/standalone/lambda-graveyard.dmm new file mode 100644 index 000000000000..47964ff5ea79 --- /dev/null +++ b/maps/map_files/BigRed/standalone/lambda-graveyard.dmm @@ -0,0 +1,292 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/open/mars, +/area/bigredv2/outside/se) +"e" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) +"f" = ( +/obj/item/stool, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) +"g" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/se) +"h" = ( +/obj/structure/flora/bush/ausbushes{ + cut_level = 1 + }, +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/se) +"i" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/se) +"j" = ( +/obj/item/trash/cigbutt{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/trash/cigbutt, +/turf/open/mars, +/area/bigredv2/outside/se) +"k" = ( +/obj/item/reagent_container/food/drinks/bottle/rum{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/weapon/gun/revolver/small, +/obj/item/reagent_container/food/drinks/bottle/rum, +/obj/effect/landmark/corpsespawner/colonist/random, +/turf/open/mars, +/area/bigredv2/outside/se) +"l" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/se) +"m" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/se) +"n" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/se) +"o" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/se) +"p" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/mars, +/area/bigredv2/outside/se) +"q" = ( +/obj/structure/prop/dam/gravestone, +/turf/open/mars, +/area/bigredv2/outside/se) +"r" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/mars, +/area/bigredv2/outside/se) +"s" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"t" = ( +/obj/structure/fence, +/turf/open/mars, +/area/bigredv2/outside/se) +"D" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves) + +(1,1,1) = {" +e +a +a +a +a +a +a +a +a +D +"} +(2,1,1) = {" +e +a +a +a +a +a +a +a +a +s +"} +(3,1,1) = {" +e +a +a +a +a +a +a +a +a +a +"} +(4,1,1) = {" +e +a +a +a +a +a +a +a +a +a +"} +(5,1,1) = {" +e +a +a +o +o +o +o +a +a +a +"} +(6,1,1) = {" +e +a +a +o +o +o +o +o +o +a +"} +(7,1,1) = {" +e +a +a +a +o +o +o +o +o +o +"} +(8,1,1) = {" +e +g +l +a +a +a +q +a +a +t +"} +(9,1,1) = {" +e +h +m +a +a +a +a +a +a +t +"} +(10,1,1) = {" +e +i +n +a +a +a +a +q +a +t +"} +(11,1,1) = {" +e +a +a +a +a +a +a +a +a +t +"} +(12,1,1) = {" +e +a +a +a +o +q +a +a +a +t +"} +(13,1,1) = {" +e +a +a +o +o +q +a +a +r +t +"} +(14,1,1) = {" +e +a +o +o +o +a +a +a +a +t +"} +(15,1,1) = {" +e +j +o +o +q +a +a +a +a +t +"} +(16,1,1) = {" +f +k +o +q +a +a +a +a +s +s +"} +(17,1,1) = {" +e +a +p +a +a +a +q +a +s +s +"} +(18,1,1) = {" +e +a +a +a +a +a +a +a +s +s +"} diff --git a/maps/map_files/BigRed/standalone/medbay-passage.dmm b/maps/map_files/BigRed/standalone/medbay-passage.dmm new file mode 100644 index 000000000000..9dc1327ab65c --- /dev/null +++ b/maps/map_files/BigRed/standalone/medbay-passage.dmm @@ -0,0 +1,130 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"c" = ( +/obj/structure/sign/safety/medical{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"d" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"e" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"f" = ( +/obj/structure/sign/safety/medical{ + pixel_y = 32 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"h" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"i" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"l" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"m" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"n" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"w" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"R" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/admin_building) +"S" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Operations" + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"T" = ( +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"X" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) + +(1,1,1) = {" +a +a +l +l +l +R +"} +(2,1,1) = {" +a +a +c +h +n +R +"} +(3,1,1) = {" +a +a +d +i +w +S +"} +(4,1,1) = {" +a +a +e +l +X +T +"} +(5,1,1) = {" +a +a +f +l +m +R +"} +(6,1,1) = {" +a +a +l +l +l +R +"} diff --git a/maps/map_files/BigRed/standalone/medbay-v3.dmm b/maps/map_files/BigRed/standalone/medbay-v3.dmm new file mode 100644 index 000000000000..924485050ce9 --- /dev/null +++ b/maps/map_files/BigRed/standalone/medbay-v3.dmm @@ -0,0 +1,2231 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/medical) +"ac" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"af" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/medical) +"aj" = ( +/obj/structure/window_frame/solaris, +/obj/item/shard, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"am" = ( +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ap" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"bV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"co" = ( +/obj/structure/window_frame/solaris, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"de" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"di" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"eq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"fu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/ammo_casing/bullet, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"fx" = ( +/obj/structure/surface/table, +/obj/item/device/autopsy_scanner, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"fF" = ( +/obj/structure/bed, +/turf/open/floor/damaged2/west, +/area/bigredv2/outside/medical) +"gg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"gj" = ( +/obj/structure/window_frame/solaris, +/obj/item/stack/sheet/metal, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"gs" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/medical) +"gx" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"hm" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"hr" = ( +/obj/structure/bed/chair, +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"hs" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"hv" = ( +/obj/item/stack/rods, +/obj/item/shard, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"hE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"hQ" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"hZ" = ( +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"id" = ( +/obj/structure/bed/chair, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"io" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"iv" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/wygoon, +/obj/item/reagent_container/food/snacks/margheritaslice, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"iB" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"iJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"iX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"jg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic"; + icon_state = "door_open"; + density = 0 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"ji" = ( +/obj/item/clothing/glasses/meson, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"jr" = ( +/obj/structure/surface/table, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"jB" = ( +/obj/structure/machinery/chem_master, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"jG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/extinguisher, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"jQ" = ( +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"jT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"kb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control{ + id = "Medical"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"ku" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"kV" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"li" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"ly" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"lz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"lA" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_id = "Clinic Reception" + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"lP" = ( +/obj/structure/sink{ + dir = 8; + icon_state = "sink"; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/tool/surgery/scalpel/manager, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"lW" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Storage" + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"lX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"lZ" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"mv" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"mF" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"mM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/shell, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"mU" = ( +/obj/item/stack/sheet/metal, +/obj/item/ammo_casing/bullet, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"ne" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) +"ny" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"og" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"oE" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"oG" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"oK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/obj/item/ammo_casing/shell, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"oU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"pr" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"pC" = ( +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"pV" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"pZ" = ( +/obj/item/shard, +/obj/item/frame/table, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"qb" = ( +/obj/structure/curtain/medical, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"qf" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"qF" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"qG" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"ra" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "\improper Medical Clinic Morgue"; + locked = 1 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"re" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) +"rf" = ( +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"rh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"rm" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"rx" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"rB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"rC" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/outside/medical) +"rD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"rG" = ( +/obj/item/device/healthanalyzer, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"rO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"rU" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"rV" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"sj" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"sn" = ( +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/outside/medical) +"sr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"st" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"sA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/turf/open/floor/damaged2/west, +/area/bigredv2/outside/medical) +"sH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"sL" = ( +/obj/item/device/defibrillator, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ta" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"tj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"tu" = ( +/obj/structure/transmitter/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "green"; + phone_id = "Clinic Labs"; + pixel_y = 24 + }, +/turf/open/floor/damaged2/west, +/area/bigredv2/outside/medical) +"tC" = ( +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"tT" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"tX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) +"tZ" = ( +/obj/structure/window/framed/solaris, +/obj/structure/curtain, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"ug" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"uo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"uz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/surgery/bonesetter, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"uE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"uG" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"uM" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"uX" = ( +/obj/structure/bed/chair, +/obj/item/shard, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"vv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"vy" = ( +/obj/item/stack/rods, +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) +"vF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"vN" = ( +/obj/item/shard, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"vT" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"wh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"wq" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"wH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"wJ" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"xm" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"xq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"xv" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) +"xD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"xP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Clinic" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"xT" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"yb" = ( +/obj/item/shard, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"yM" = ( +/obj/item/reagent_container/pill/happy, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"yS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"yY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"zb" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"zn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"zH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"zO" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"zR" = ( +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/medical) +"Ab" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"Ad" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged2/west, +/area/bigredv2/outside/medical) +"Al" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Bd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Bh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"Bs" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"Bw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"BF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"BH" = ( +/obj/item/shard, +/obj/structure/bed/roller, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"BV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/latex, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Cm" = ( +/obj/structure/surface/table, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/storage/box/beakers, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"Cw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"CP" = ( +/obj/structure/machinery/light, +/obj/item/tool/surgery/cautery, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"CV" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"CZ" = ( +/obj/structure/bed, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/outside/medical) +"Db" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/medical) +"Dj" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"Dk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Dy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"DA" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"DR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/item/shard, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"Ei" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"Ej" = ( +/obj/item/shard, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"Em" = ( +/obj/item/frame/table, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Eq" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/reagent_container/food/snacks/margheritaslice, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"Et" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/damaged2/west, +/area/bigredv2/outside/medical) +"Eu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) +"EH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/shell, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"EI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"ER" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"EY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Clinic CMO's Office" + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Fh" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"Fi" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"FH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"FJ" = ( +/obj/item/reagent_container/pill/happy, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Gh" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Gn" = ( +/obj/structure/surface/table, +/obj/item/trash/burger, +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"GD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"He" = ( +/obj/item/stack/sheet/metal, +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"Hi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"HI" = ( +/obj/item/clothing/mask/breath/medical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"HJ" = ( +/obj/structure/surface/table, +/obj/item/storage/pill_bottle/tramadol, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"HQ" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"Ia" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/shard, +/turf/open/floor/damaged2/west, +/area/bigredv2/outside/medical) +"IH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"IL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/shell, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"IU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged2/west, +/area/bigredv2/outside/medical) +"IY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"IZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"Ja" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) +"Jd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Jg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Storage" + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Jl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"Jp" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"Jy" = ( +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"JF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"JH" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/surgery/blue, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"JX" = ( +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"KI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"KS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"KT" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"KV" = ( +/obj/structure/bed/chair, +/obj/item/ammo_casing/shell, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Lf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"LB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Operating Theatre" + }, +/turf/open/floor/damaged2/west, +/area/bigredv2/outside/medical) +"LF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"LR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"LS" = ( +/obj/item/clothing/gloves/latex, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Mb" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/damaged2/west, +/area/bigredv2/outside/medical) +"Ml" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"MH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"MS" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/item/device/healthanalyzer, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"MY" = ( +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) +"MZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/crap_item, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Ng" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"Nt" = ( +/obj/structure/bed/chair, +/turf/open/floor/damaged2/west, +/area/bigredv2/outside/medical) +"NA" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"NK" = ( +/obj/structure/machinery/sleep_console, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"Od" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Ok" = ( +/obj/structure/surface/table, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"Ov" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"OG" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"OK" = ( +/obj/effect/acid_hole{ + dir = 4 + }, +/turf/closed/wall/solaris, +/area/bigredv2/outside/medical) +"OM" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/medical) +"ON" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Pd" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"Pp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"Pr" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = -32 + }, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"PB" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/bed/roller, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"PC" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"PT" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"PW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/shell, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"Qk" = ( +/obj/structure/bed, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Qn" = ( +/obj/item/shard, +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"Qu" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"Qy" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/item/stack/sheet/metal, +/turf/open/floor/damaged2/west, +/area/bigredv2/outside/medical) +"QF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"QO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"Rg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"Rm" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"Ro" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Rw" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/item/trash/kepler, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"Rz" = ( +/obj/structure/girder, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/medical) +"RE" = ( +/obj/structure/bed/roller, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"RN" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"RY" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"Sg" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"Sk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"Sz" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) +"SF" = ( +/obj/item/device/healthanalyzer, +/obj/structure/pipes/vents/pump, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"SI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"SJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged2/west, +/area/bigredv2/outside/medical) +"SL" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"SZ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Tc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Tt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"TJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"TO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"UK" = ( +/obj/structure/surface/table, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"UP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/buritto, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"Vg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"Vj" = ( +/obj/structure/machinery/body_scanconsole, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"Vn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) +"VR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"VS" = ( +/obj/structure/machinery/camera/autoname{ + network = list("interrogation") + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"VX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"WG" = ( +/obj/structure/machinery/medical_pod/sleeper, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"WH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"WQ" = ( +/turf/open/floor/damaged2/west, +/area/bigredv2/outside/medical) +"WV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) +"WY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"Xc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/trash/chips, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/outside/medical) +"Xl" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"Xr" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Xs" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = 32 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) +"Xt" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"XF" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"XQ" = ( +/obj/structure/window_frame/solaris, +/obj/item/shard, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Yl" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"Yv" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"YE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged2/west, +/area/bigredv2/outside/medical) +"YF" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"YQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/outside/medical) +"YY" = ( +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"Zh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"Zo" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"Zp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/explosive/grenade/custom/large, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"ZC" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"ZH" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/frame/table, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"ZQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) + +(1,1,1) = {" +aa +aa +aa +aa +Rz +vy +MY +aa +aa +OK +aa +zO +TJ +aa +Ml +Rz +aa +aa +aa +aa +aa +aa +aa +aa +aa +rm +"} +(2,1,1) = {" +aa +Xl +Qy +Cm +Ab +Jy +Jy +Jy +aa +Gn +HJ +MY +Dk +Jy +Al +aa +og +hr +ap +fx +SL +lP +PT +pr +aa +rm +"} +(3,1,1) = {" +aa +tu +jQ +MY +Jy +vT +WY +Tc +Jy +MY +KI +Sg +oK +JX +VS +aa +og +og +ap +UK +uz +TO +Eq +PT +aa +rm +"} +(4,1,1) = {" +aa +sA +sr +Zp +JF +tj +WH +tj +co +DR +IU +rO +BF +qG +YY +jQ +hZ +Qn +ac +Fh +TO +iv +tC +CP +aa +rm +"} +(5,1,1) = {" +Rz +jB +re +hs +SI +SI +rO +rO +SZ +li +yS +JX +YY +Xr +RE +rf +id +Nt +aj +Ok +pC +ER +HI +PT +aa +rm +"} +(6,1,1) = {" +Rz +Bs +OG +XF +yb +kV +Ml +jr +aa +rh +jQ +DA +BH +HQ +Jy +Rz +rx +Nt +aj +pC +Ia +hE +hQ +wq +aa +rm +"} +(7,1,1) = {" +Jy +aa +ON +aj +Jy +Ml +rf +aa +aa +rD +iX +aa +aa +Ml +wH +Rz +aa +aa +pC +yb +aa +LB +aa +aa +aa +rm +"} +(8,1,1) = {" +Jy +pC +YY +uG +Jy +yb +bV +tT +Jy +Ja +tj +XQ +Ml +YY +YY +Xr +sj +Jy +Jy +Sg +Jy +Jd +Tc +Ro +aa +rm +"} +(9,1,1) = {" +ac +CV +Jy +zH +Tc +Jy +sj +mM +NA +ny +FH +rO +rO +IZ +Jl +Tc +rO +rO +KS +rO +MZ +GD +IL +zn +aa +rm +"} +(10,1,1) = {" +aj +fF +MY +zH +BV +wH +XQ +zn +Sz +YQ +Bw +TO +TO +Tc +Cw +Ng +sj +Od +TJ +JH +oU +PW +qf +JX +Jy +ku +"} +(11,1,1) = {" +aj +CZ +Mb +QF +gx +ly +xP +Rg +rO +LR +Lf +aj +Xs +JX +yY +Vj +aa +aj +Jg +aa +aa +Rz +Ml +Dj +JX +rm +"} +(12,1,1) = {" +Rm +IY +jQ +Jd +tT +Sg +ac +Xr +Jp +SJ +iX +aa +aa +pC +Jd +aa +aa +Em +Jd +Jy +Jy +Jy +XF +Jy +rf +rm +"} +(13,1,1) = {" +Tt +Xc +rO +PC +Xr +rV +Jy +wH +Jy +wh +zn +di +Jy +vN +yY +WG +aa +hm +ji +jG +Jy +Jp +Tc +Jy +aa +rm +"} +(14,1,1) = {" +af +ZH +Qu +PB +JX +Jy +Jy +YY +Gh +Bh +zH +Ej +yb +Xr +sH +NK +aa +Jy +Jd +JX +YY +yM +zH +Em +aa +rm +"} +(15,1,1) = {" +af +ac +gj +aj +YY +rf +Ov +YY +JX +vF +yb +Ml +XF +pC +Jd +jQ +Rz +SF +FJ +wH +Et +YY +oU +jr +aa +rm +"} +(16,1,1) = {" +af +MS +pZ +lZ +JX +Jy +sj +yb +jQ +Jd +YY +hv +pC +yb +RN +Sk +re +JX +Jy +re +uo +zH +Jp +Jy +aa +rm +"} +(17,1,1) = {" +af +sL +pV +WQ +xv +EI +EY +JX +xD +iJ +Jy +rU +YY +Jp +yY +pC +re +jQ +MY +Xt +Jy +zb +Jy +Jy +rf +rm +"} +(18,1,1) = {" +af +Zo +Yv +mF +oE +Jy +XQ +JX +Pd +ne +YY +aa +aa +rf +vF +jQ +Jy +ac +lW +aa +aa +aa +Xr +Ml +HQ +OM +"} +(19,1,1) = {" +af +aa +aa +aa +aa +Rz +aa +YY +Jy +VX +jQ +Xr +Pr +Sg +Jy +mU +JX +Jy +WQ +Jy +fF +Jy +Jy +xm +Rz +Db +"} +(20,1,1) = {" +af +LF +de +de +de +xq +zR +Jy +lZ +ZQ +Ad +Jy +Xr +lX +TJ +Tc +YY +iB +st +TO +jQ +He +He +xm +aa +Db +"} +(21,1,1) = {" +af +Yl +ug +ug +ug +IH +xT +fu +Hi +Fi +uE +Jp +Sg +Bd +Vn +TO +YE +vv +rG +qb +fF +ta +uM +Qk +aa +Db +"} +(22,1,1) = {" +af +Yl +ug +ug +ug +wJ +oG +YY +JX +Dk +YY +re +Eu +YE +gg +LS +Tc +aa +JX +aa +aa +aa +aa +aa +aa +aa +"} +(23,1,1) = {" +af +Yl +ug +ug +ug +wJ +ac +rf +YE +jT +Ei +tX +eq +eq +PC +YY +kb +Rz +io +tT +Jy +jQ +Rw +rB +rB +aa +"} +(24,1,1) = {" +af +Yl +ug +ug +ug +wJ +ac +pC +KI +MH +jQ +JF +oU +TO +TJ +KT +pC +gs +KV +EH +Pp +lz +qF +lz +lz +jg +"} +(25,1,1) = {" +af +Yl +ug +ug +ug +wJ +ac +sn +ZC +RY +hv +vv +Dy +KI +mv +xm +Dj +sj +uX +WV +yY +TO +am +vv +vv +oG +"} +(26,1,1) = {" +af +Yl +ug +ug +ug +YF +aa +aa +tZ +ra +aj +aa +aa +QO +VR +Jy +iX +XQ +rC +Zh +Vg +UP +lA +ap +ap +aa +"} diff --git a/maps/map_files/CORSAT/Corsat.dmm b/maps/map_files/CORSAT/Corsat.dmm new file mode 100644 index 000000000000..59f0a59d6ca5 --- /dev/null +++ b/maps/map_files/CORSAT/Corsat.dmm @@ -0,0 +1,108968 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "dome-sigma" + }, +/turf/closed/wall/r_wall/biodome, +/area/corsat/theta/airlock/control) +"aab" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/hangar/arrivals) +"aac" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/omega/airlocknorth) +"aad" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/hangar/monorail/control) +"aae" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/office) +"aaf" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aag" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"aah" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "1" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"aai" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"aaj" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/residential/east) +"aak" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/hangar/monorail) +"aal" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/gamma/residential/east) +"aam" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/office) +"aan" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/hangar) +"aao" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/binoculars, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aap" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/hangar/flightcontrol) +"aaq" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aar" = ( +/obj/structure/window/framed/corsat/hull/research, +/turf/open/floor/plating, +/area/corsat/gamma/sigmaremote) +"aas" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"aat" = ( +/obj/structure/surface/rack, +/obj/structure/prop/mech/drill, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"aau" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"aav" = ( +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"aaw" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"aax" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/sigmaremote) +"aay" = ( +/turf/open/floor/almayer/tcomms, +/area/corsat/gamma/sigmaremote) +"aaz" = ( +/obj/structure/window/framed/corsat/research, +/turf/open/floor/plating, +/area/corsat/gamma/sigmaremote) +"aaA" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "2" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"aaB" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/bronze, +/obj/item/trash/cigbutt/cigarbutt, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aaC" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Hangar Security"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/security) +"aaD" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"aaE" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/flightcontrol) +"aaF" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "CORSAT Armory"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/armory) +"aaG" = ( +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"aaH" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"aaI" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"aaJ" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"aaK" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/corsat/gamma/sigmaremote) +"aaL" = ( +/turf/open/floor/almayer/plating_striped, +/area/corsat/gamma/sigmaremote) +"aaM" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/plating/warnplate/east, +/area/corsat/gamma/hangar) +"aaN" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/corsat/gamma/hangar) +"aaO" = ( +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) +"aaP" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/corsat/gamma/hangar) +"aaQ" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/plating/warnplate/west, +/area/corsat/gamma/hangar) +"aaR" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"aaS" = ( +/turf/open/floor/plating/warnplate/west, +/area/corsat/gamma/hangar) +"aaU" = ( +/turf/open/floor/plating/warnplate/east, +/area/corsat/gamma/hangar) +"aaV" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/plating/warnplate/east, +/area/corsat/gamma/hangar) +"aaW" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "3" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"aaX" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/icefloor, +/area/corsat/gamma/hangar) +"aaY" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/plating/warnplate/west, +/area/corsat/gamma/hangar) +"aaZ" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"aba" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/fancy/cigar, +/obj/item/tool/lighter/zippo, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"abb" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"abc" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"abd" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"abe" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/gamma/cargo) +"abf" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/sigmaremote) +"abg" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/hangar/office) +"abh" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"abi" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/hangar/flightcontrol) +"abj" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/plating/warnplate, +/area/corsat/gamma/hangar) +"abk" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/plating/warnplate, +/area/corsat/gamma/hangar) +"abl" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) +"abm" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) +"abn" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/mod88, +/obj/item/weapon/gun/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/security/armory) +"abo" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/warnplate/west, +/area/corsat/gamma/hangar) +"abp" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/warnplate/east, +/area/corsat/gamma/hangar) +"abq" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "4" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"abr" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"abs" = ( +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"abt" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"abu" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"abv" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"abw" = ( +/obj/structure/surface/rack, +/obj/item/cell/hyper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"abx" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat, +/area/corsat/omega/control) +"aby" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/plating/warnplate, +/area/corsat/gamma/hangar) +"abz" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/plating/warnplate, +/area/corsat/gamma/hangar) +"abA" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/hangar/security) +"abB" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) +"abC" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) +"abD" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/residential/east) +"abE" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"abF" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/sigmaremote) +"abG" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/gamma/residential/researcher) +"abH" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"abI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"abJ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"abK" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "7" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"abL" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"abM" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"abN" = ( +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"abO" = ( +/obj/structure/bed{ + icon_state = "psychbed" + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"abP" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/residential/researcher) +"abQ" = ( +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/researcher) +"abR" = ( +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"abS" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/residential/researcher) +"abT" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Quarters"; + req_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"abU" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"abV" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/corsat/gamma/hangar) +"abX" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/corsat/gamma/hangar) +"abY" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/corsat/gamma/hangar) +"abZ" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/warnplate, +/area/corsat/gamma/hangar) +"aca" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/warnplate, +/area/corsat/gamma/hangar) +"acc" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"acd" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/window/reinforced{ + layer = 3.8 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/gamma/foyer) +"ace" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) +"acf" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) +"acg" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"ach" = ( +/obj/structure/bed, +/obj/structure/machinery/light, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aci" = ( +/obj/structure/machinery/door/window/southleft{ + dir = 8; + layer = 2.8 + }, +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/item/tool/soap, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"acj" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"ack" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/east) +"acl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"acm" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/machinery/door/window/southleft{ + dir = 1; + layer = 2.8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"acn" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"aco" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"acp" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/east, +/area/corsat/gamma/hangar) +"acq" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/west, +/area/corsat/gamma/hangar) +"acr" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"acs" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/east, +/area/corsat/gamma/hangar) +"act" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/west, +/area/corsat/gamma/hangar) +"acu" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"acv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Researcher Quarters"; + req_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"acw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"acx" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"acy" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "8" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"acz" = ( +/obj/structure/coatrack, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"acA" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/window/reinforced{ + layer = 3.8 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/gamma/foyer) +"acB" = ( +/obj/structure/machinery/door/window/southleft{ + dir = 1; + layer = 2.8 + }, +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"acC" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/foyer) +"acD" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"acE" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/foyer) +"acF" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/hangar) +"acG" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"acH" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"acI" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"acJ" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "5" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"acK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"acL" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/arrivals) +"acM" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/residential) +"acN" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/residential/lounge) +"acO" = ( +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/residential/east) +"acP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hallwaysouth) +"acQ" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"acR" = ( +/obj/structure/machinery/light, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"acS" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential) +"acT" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"acU" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "6" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"acV" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/residential/lounge) +"acW" = ( +/obj/structure/machinery/door/window/southleft{ + dir = 1; + layer = 2.8 + }, +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/item/tool/soap, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"acX" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "10" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"acY" = ( +/obj/structure/surface/rack, +/obj/item/tool/wrench, +/obj/item/device/camera/oldcamera, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"acZ" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "11" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"ada" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "12" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"adb" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/hangar/checkpoint) +"adc" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/mod88, +/obj/item/weapon/gun/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security/armory) +"add" = ( +/turf/closed/wall/biodome, +/area/corsat/sigma/cafe) +"ade" = ( +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"adf" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "13" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"adg" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"adh" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/residential/east) +"adi" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"adj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/lounge) +"adk" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "14" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"adl" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential) +"adm" = ( +/obj/structure/bed/chair/wood/normal, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"adn" = ( +/turf/open/floor/wood, +/area/corsat/gamma/residential/lounge) +"ado" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/white/southwest, +/area/corsat/gamma/residential/east) +"adp" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"adq" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/monorail/control) +"adr" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/checkpoint) +"ads" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"adt" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/sigma/cafe) +"adu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/security) +"adv" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"adw" = ( +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/weapon/gun/smg/mp5, +/obj/structure/surface/rack, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security/armory) +"adx" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/deck, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"ady" = ( +/obj/structure/fence, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/checkpoint) +"adz" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"adA" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/checkpoint) +"adB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"adC" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/corsat/spiralwoodalt, +/area/corsat/gamma/residential/lounge) +"adD" = ( +/obj/structure/coatrack, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"adE" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"adF" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/residential/east) +"adG" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/item/folder/blue, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"adH" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"adI" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/hangar/cargo) +"adJ" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/residential/west) +"adK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/west) +"adL" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/office) +"adM" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/gamma/residential/lounge) +"adN" = ( +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"adO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"adP" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"adQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Researcher's Lounge" + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/lounge) +"adR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"adS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"adT" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) +"adU" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"adV" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/residential/researcher) +"adW" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar) +"adX" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer1, +/area/corsat/gamma/biodome) +"adY" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/deck, +/obj/item/spacecash/c10, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"adZ" = ( +/turf/open/floor/corsat/purplecorner/north, +/area/corsat/gamma/residential) +"aea" = ( +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential) +"aeb" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/hangar/cargo) +"aec" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"aed" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aee" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aef" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aeg" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet6_2/west, +/area/corsat/gamma/residential/lounge) +"aei" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aek" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/gamma/residential) +"ael" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "GammaHangarCargoC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/cargo) +"aem" = ( +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential) +"aen" = ( +/turf/open/mars, +/area/corsat/sigma/biodome) +"aeo" = ( +/turf/open/auto_turf/snow/layer2, +/area/corsat/gamma/biodome) +"aep" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/residential/lounge) +"aeq" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet10_8/west, +/area/corsat/gamma/residential/lounge) +"aer" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/residential/lounge) +"aes" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/arrivals) +"aet" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/cargo) +"aeu" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"aev" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/window/reinforced{ + layer = 3.8 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/gamma/foyer) +"aew" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "15" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"aex" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/arrivals) +"aey" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/residential/lounge) +"aez" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/security/armory) +"aeA" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Cells"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"aeB" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"aeC" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/arrivals) +"aeD" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/sigma/hangar/arrivals) +"aeE" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/corsat/sigma/hangar) +"aeF" = ( +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) +"aeG" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/corsat/sigma/hangar) +"aeH" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"aeI" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar) +"aeJ" = ( +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/hangar) +"aeL" = ( +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/hangar) +"aeM" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar/office) +"aeN" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/icefloor, +/area/corsat/sigma/hangar) +"aeO" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/airlock/south/id) +"aeP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"aeQ" = ( +/turf/open/floor/corsat/blue/northwest, +/area/corsat/sigma/hangar) +"aeR" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar) +"aeS" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential) +"aeT" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"aeU" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar) +"aeV" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"aeW" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential) +"aeX" = ( +/obj/structure/surface/table/woodentable, +/obj/item/spacecash/c10, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aeY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security) +"aeZ" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/airlock/south) +"afa" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/cargo/disposal) +"afb" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"afc" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hallwaysouth) +"afd" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/south) +"afe" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/office) +"aff" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/hangar) +"afg" = ( +/turf/open/floor/corsat/brown, +/area/corsat/gamma/foyer) +"afh" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "16" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"afi" = ( +/turf/open/floor/plating, +/area/corsat/sigma/hangar) +"afj" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/carpet5_1/west, +/area/corsat/gamma/residential/lounge) +"afk" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/plating, +/area/corsat/sigma/hangar) +"afl" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/plating, +/area/corsat/sigma/hangar) +"afm" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/hangar) +"afn" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/hangar) +"afo" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/hangar) +"afp" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/hangar) +"afq" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/plating, +/area/corsat/sigma/hangar) +"afr" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/residential/lounge) +"afs" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/hangar) +"aft" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/hangar) +"afu" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "17" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"afv" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar) +"afx" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/carpet9_4/west, +/area/corsat/gamma/residential/lounge) +"afy" = ( +/obj/structure/surface/table/woodentable, +/obj/item/folder/white, +/obj/item/spacecash/c10, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"afz" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/north/id) +"afA" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"afB" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar) +"afC" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar) +"afD" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar) +"afE" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/plating/warnplate, +/area/corsat/sigma/hangar) +"afF" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/plating/warnplate, +/area/corsat/sigma/hangar) +"afG" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) +"afH" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) +"afI" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/gamma/hangar/office) +"afJ" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar/arrivals) +"afK" = ( +/obj/structure/window/reinforced, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"afL" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar) +"afM" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar) +"afN" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/corsat/sigma/hangar) +"afP" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/corsat/sigma/hangar) +"afQ" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/corsat/sigma/hangar) +"afR" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/north) +"afS" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar) +"afT" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar) +"afU" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "18" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"afV" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/plating/warnplate, +/area/corsat/sigma/hangar) +"afW" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/plating/warnplate, +/area/corsat/sigma/hangar) +"afX" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) +"afY" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) +"afZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hangar) +"aga" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/airlock/north/id) +"agb" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar/security) +"agc" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "19" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"agd" = ( +/obj/structure/window/reinforced, +/obj/structure/platform, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"age" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/south/id) +"agf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/medical_pod/sleeper{ + flags_atom = 18 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"agg" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/security) +"agh" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "20" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"agi" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "21" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"agj" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar/id) +"agk" = ( +/obj/structure/bed, +/obj/item/spacecash/c10, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"agl" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"agm" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"agn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/hangar) +"ago" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "22" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"agp" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "23" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"agq" = ( +/obj/structure/machinery/atm{ + pixel_x = -30 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"agr" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "24" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"ags" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/security) +"agt" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/security) +"agu" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Laundry Unit" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"agv" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/security) +"agw" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"agx" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/checkpoint) +"agy" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "25" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"agz" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"agA" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"agB" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "1" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"agC" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/north) +"agD" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/sigma/south) +"agE" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "2" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"agF" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/hallwaysouth) +"agG" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south) +"agH" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"agI" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/residential/laundry) +"agJ" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Airlock Control" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"agK" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/cargo) +"agL" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/cargo) +"agM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/residential) +"agN" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hallways) +"agO" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"agP" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "3" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"agQ" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"agR" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"agS" = ( +/obj/structure/machinery/computer/teleporter_console/corsat{ + dir = 8 + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"agT" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/residential) +"agU" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/engineering/core) +"agV" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/security) +"agW" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar) +"agX" = ( +/mob/living/simple_animal/hostile/carp{ + color = "orange"; + faction = "neutral"; + harm_intent_damage = 0; + melee_damage_lower = 0; + melee_damage_upper = 0 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"agY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"agZ" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/checkpoint) +"aha" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ + id = "delta_gamma2"; + name = "Gamma Checkpoint"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"ahb" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "4" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"ahc" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + damage_cap = 4000; + dir = 1; + name = "\improper Emergency Access"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"ahd" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"ahe" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "5" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"ahf" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/hangar/checkpoint) +"ahg" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/id) +"ahh" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "6" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"ahi" = ( +/obj/structure/machinery/vending/shared_vending, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"ahj" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "7" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"ahk" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/sigmaremote) +"ahl" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"ahm" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"ahn" = ( +/turf/closed/wall/biodome, +/area/corsat/omega/cargo) +"aho" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"ahp" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"ahq" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"ahr" = ( +/turf/open/floor/corsat/brown, +/area/corsat/sigma/north) +"ahs" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/residential/lavatory) +"aht" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/engineering/atmos) +"ahu" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"ahv" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + layer = 3.8 + }, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/gamma/foyer) +"ahw" = ( +/turf/closed/wall/biodome, +/area/corsat/sigma/laundry) +"ahx" = ( +/obj/structure/computerframe, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"ahy" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/window/reinforced{ + layer = 3.8 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/gamma/hallwaysouth) +"ahz" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/residential/maint) +"ahA" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/omega/offices) +"ahB" = ( +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"ahC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"ahD" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + name = "Cargo Bay"; + req_one_access_txt = "100" + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"ahE" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/hangar/monorail/control) +"ahF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"ahG" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/south) +"ahH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "GammaHCargoN"; + name = "Checkpoint Control"; + pixel_x = -5; + pixel_y = 6; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "GammaHCargoW"; + name = "Checkpoint Control"; + pixel_x = -5; + pixel_y = -3; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "GammaHangarCargoC"; + name = "Security Shutters"; + pixel_x = 5; + pixel_y = 2; + use_power = 0 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/cargo) +"ahI" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "8" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"ahJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"ahK" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "9" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"ahL" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/cargo) +"ahM" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/id) +"ahN" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"ahO" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"ahP" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/residential) +"ahQ" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/security) +"ahR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "GammaHangarH"; + name = "Hangar Lockdown"; + pixel_x = 5; + pixel_y = 2; + use_power = 0 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/office) +"ahS" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/omega/cargo) +"ahT" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "10" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"ahU" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "11" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"ahV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Hangar Security"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"ahW" = ( +/turf/open/floor/plating, +/area/prison/hangar_storage/research/shuttle) +"ahX" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/bronze, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"ahY" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "specimen control cabinet"; + req_access_txt = "103" + }, +/obj/item/weapon/gun/flamer, +/obj/item/explosive/grenade/incendiary, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/hangar/security) +"ahZ" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"aia" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy22" + }, +/area/prison/hangar_storage/research/shuttle) +"aib" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"aic" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaHangarN"; + name = "Checkpoint Control"; + use_power = 0 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"aid" = ( +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) +"aie" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy4" + }, +/area/prison/hangar_storage/research/shuttle) +"aif" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "12" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"aig" = ( +/obj/structure/machinery/computer3, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"aih" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aii" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy23" + }, +/area/prison/hangar_storage/research/shuttle) +"aij" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/prison/hangar_storage/research/shuttle) +"aik" = ( +/turf/open/shuttle/dropship/light_grey_top_right, +/area/prison/hangar_storage/research/shuttle) +"ail" = ( +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/west) +"aim" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"ain" = ( +/turf/open/shuttle/dropship/light_grey_top_left, +/area/prison/hangar_storage/research/shuttle) +"aio" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/security) +"aip" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"aiq" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy5" + }, +/area/prison/hangar_storage/research/shuttle) +"air" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "13" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"ais" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "14" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"ait" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"aiu" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"aiv" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy_leftengine" + }, +/area/prison/hangar_storage/research/shuttle) +"aiw" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy8" + }, +/area/prison/hangar_storage/research/shuttle) +"aix" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, +/area/prison/hangar_storage/research/shuttle) +"aiy" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "15" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"aiz" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 + }, +/area/prison/hangar_storage/research/shuttle) +"aiA" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy9" + }, +/area/prison/hangar_storage/research/shuttle) +"aiB" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/hangar/security) +"aiC" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "16" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"aiD" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/plating, +/area/corsat/omega/hangar) +"aiE" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy_rightengine" + }, +/area/prison/hangar_storage/research/shuttle) +"aiF" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"aiG" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_3"; + opacity = 0 + }, +/area/prison/hangar_storage/research/shuttle) +"aiH" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_2"; + opacity = 0 + }, +/area/prison/hangar_storage/research/shuttle) +"aiI" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_2"; + opacity = 0 + }, +/area/prison/hangar_storage/research/shuttle) +"aiJ" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/checkpoint) +"aiK" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"aiL" = ( +/turf/closed/wall/biodome, +/area/corsat/omega/offices) +"aiM" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "17" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"aiN" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "18" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"aiO" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/airlock/south) +"aiP" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "19" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"aiQ" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/omega/offices) +"aiR" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/card, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/hangar/security) +"aiS" = ( +/turf/open/floor/carpet6_2/west, +/area/corsat/gamma/administration) +"aiT" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/airlock/north) +"aiU" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/biodome) +"aiW" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"aiX" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/north) +"aiY" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/structure/machinery/door/window/brigdoor/eastleft, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"aiZ" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/gamma/hallwaysouth) +"aja" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/airlock/south/id) +"ajb" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/gamma/airlock/north) +"ajc" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"ajd" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/airlock/north) +"aje" = ( +/turf/open/floor/corsat/purple, +/area/corsat/sigma/south) +"ajf" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/omega/security) +"ajg" = ( +/turf/open/floor/corsat/brown/northwest, +/area/corsat/gamma/cargo) +"ajh" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/warnplate, +/area/corsat/sigma/hangar) +"aji" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/warnplate, +/area/corsat/sigma/hangar) +"ajj" = ( +/turf/closed/wall/biodome, +/area/corsat/sigma/north) +"ajk" = ( +/turf/closed/wall/biodome, +/area/corsat/sigma/cargo) +"ajl" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "20" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"ajm" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/south) +"ajn" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/south) +"ajo" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/sigma/cargo) +"ajp" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/control) +"ajq" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/biodome) +"ajr" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/sigma/laundry) +"ajs" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"ajt" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"aju" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/north) +"ajv" = ( +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"ajw" = ( +/turf/open/floor/corsat/browncorner/east, +/area/corsat/sigma/cargo) +"ajx" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"ajy" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/sigma/laundry) +"ajz" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/north) +"ajA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"ajB" = ( +/turf/closed/wall/biodome, +/area/corsat/sigma/lavatory) +"ajC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"ajD" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/hangar/monorail/control) +"ajE" = ( +/obj/structure/curtain, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"ajF" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "21" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"ajG" = ( +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/east) +"ajH" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"ajI" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"ajJ" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) +"ajK" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) +"ajL" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaCheckpointC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/checkpoint) +"ajM" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"ajN" = ( +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/control) +"ajO" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "22" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"ajP" = ( +/obj/structure/machinery/door_control{ + id = "GammaSecC"; + name = "Security Shutters"; + pixel_y = -25; + use_power = 0 + }, +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/hangar/security) +"ajQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/east/id) +"ajR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/device/flashlight, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/control) +"ajS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"ajT" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar) +"ajU" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar) +"ajV" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/hangar) +"ajW" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "23" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"ajX" = ( +/turf/closed/wall/biodome, +/area/corsat/sigma/south/complex) +"ajY" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "24" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"ajZ" = ( +/obj/structure/foamed_metal, +/turf/open/floor/corsat, +/area/corsat/gamma/hangar) +"aka" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "25" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"akb" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/hangar) +"akc" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar) +"akd" = ( +/obj/structure/window/framed/corsat/research, +/turf/open/floor/plating, +/area/corsat/sigma/south/complex) +"ake" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"akf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/sigmaremote) +"akg" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + name = "Cargo Bay"; + req_one_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"akh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"aki" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/sigma/dorms) +"akj" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/hangar/monorail) +"akk" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"akl" = ( +/turf/closed/wall/biodome, +/area/corsat/sigma/dorms) +"akm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"akn" = ( +/obj/structure/stairs, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"ako" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"akp" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/arrivals) +"akq" = ( +/turf/closed/wall/biodome, +/area/corsat/sigma/airlock/south) +"akr" = ( +/obj/structure/computer3frame/server{ + icon_state = "4" + }, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/sigma/south/complex) +"aks" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"akt" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/rnr/library) +"aku" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"akv" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/south/complex) +"akw" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"akx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/clothing/head/welding, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/control) +"aky" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/omega/hallways) +"akz" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/hangar) +"akB" = ( +/turf/closed/wall/biodome, +/area/corsat/theta/airlock/east) +"akC" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"akD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"akE" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"akG" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/sigmaremote) +"akH" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"akI" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Class Room"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"akJ" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/residential) +"akK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"akL" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/cargo) +"akM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/flightcontrol) +"akN" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"akP" = ( +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/item/tool/stamp/hos, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"akQ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"akR" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/white/southeast, +/area/corsat/gamma/residential) +"akS" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"akT" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"akU" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/airlock/control) +"akV" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/sigma/airlock/south) +"akW" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/datalab) +"akX" = ( +/obj/structure/surface/table/woodentable, +/obj/item/folder/blue, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"akY" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/airlock/south/id) +"akZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/monorail/control) +"ala" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/plastic, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"alb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"alc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"ald" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/residential) +"ale" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/camera/oldcamera, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"alh" = ( +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo) +"ali" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/keycard_auth/lockdown/corsat, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/administration) +"alj" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"alk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/skills{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"all" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"alp" = ( +/obj/structure/machinery/door_control{ + id = "GammaAdmin"; + name = "Security Shutters"; + pixel_x = 24; + use_power = 0 + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/administration) +"alr" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"als" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"alt" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/residential) +"alu" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"alv" = ( +/obj/structure/stairs, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"alw" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/dorms) +"alx" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/hangar/arrivals) +"aly" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/wood, +/area/corsat/gamma/residential/lounge) +"alz" = ( +/obj/structure/machinery/computer/teleporter_console/corsat{ + dir = 1 + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"alA" = ( +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/gamma/airlock/north) +"alB" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaIDSC2"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/south/id) +"alC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"alD" = ( +/obj/item/clothing/head/beret/sec/warden, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"alE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"alF" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/brown/northwest, +/area/corsat/gamma/cargo) +"alG" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/white/northwest, +/area/corsat/sigma/dorms) +"alH" = ( +/obj/structure/surface/rack, +/obj/item/tool/screwdriver, +/obj/item/device/assembly/igniter, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"alI" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/rnr/bar) +"alK" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/rnr/bar) +"alL" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/white/northeast, +/area/corsat/sigma/dorms) +"alM" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"alN" = ( +/obj/structure/surface/table/woodentable, +/obj/item/spacecash/c10, +/obj/item/toy/deck, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"alO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"alP" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/gamma/hangar/office) +"alQ" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/south/id) +"alR" = ( +/obj/structure/bed, +/obj/item/folder/yellow, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"alS" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"alU" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/item/device/camera, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"alV" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "GammaSecC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/security) +"alW" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Cargo Desk" + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Cargo Desk"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo/lobby) +"alX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hangar) +"alY" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"alZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"ama" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/dorms) +"amb" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/residential) +"amc" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/residential/maint) +"amd" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/corsat/white/west, +/area/corsat/sigma/dorms) +"ame" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/glass, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"amf" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/sigma/dorms) +"amg" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"amh" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/dorms) +"ami" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"amj" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/monorail/control) +"amk" = ( +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aml" = ( +/obj/item/trash/raisins, +/obj/item/trash/popcorn, +/obj/item/trash/chips, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"amm" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/dorms) +"amn" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"amo" = ( +/obj/item/trash/chips, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"amp" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + dir = 1; + name = "Cargo Bay"; + req_one_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"amq" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"amr" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"ams" = ( +/obj/structure/surface/table/woodentable, +/obj/item/folder/blue, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"amt" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/deck, +/obj/item/spacecash/c10, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"amu" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"amv" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/airlock/south/id) +"amw" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"amx" = ( +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/dorms) +"amy" = ( +/turf/open/floor/corsat/white/west, +/area/corsat/sigma/dorms) +"amz" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"amA" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/emails, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"amB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"amC" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"amD" = ( +/obj/structure/surface/table/woodentable, +/obj/item/newspaper, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"amE" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"amF" = ( +/obj/item/trash/chips, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"amG" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"amH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"amI" = ( +/obj/structure/surface/rack, +/obj/item/device/assembly/igniter, +/obj/item/tool/screwdriver, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"amJ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/bronze, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"amK" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/dorms) +"amL" = ( +/obj/structure/surface/table/woodentable, +/obj/item/pizzabox/margherita, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"amM" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/item/folder/yellow, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"amN" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/checkpoint) +"amO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/residential) +"amP" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"amQ" = ( +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/sigma/dorms) +"amR" = ( +/obj/structure/window/reinforced, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) +"amS" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/checkpoint) +"amT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"amU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/sigma/dorms) +"amV" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/barricade/handrail{ + layer = 3 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"amW" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"amX" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Disposals"; + req_one_access_txt = "102;101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo/disposal) +"amY" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/barricade/handrail{ + layer = 3 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"amZ" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Engineering Desk" + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Engineering Desk"; + req_access_txt = "13" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering/lobby) +"ana" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/checkpoint) +"anb" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"anc" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"and" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/dorms) +"ane" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/dorms) +"anf" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"ang" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/cargo/disposal) +"anh" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/dorms) +"ani" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/hangar) +"anj" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/hangar) +"ank" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"anl" = ( +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/sigma/dorms) +"anm" = ( +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/sigma/dorms) +"ann" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/cargo/lobby) +"ano" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/white/northeast, +/area/corsat/sigma/dorms) +"anp" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/monorail/control) +"anq" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering/atmos) +"anr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"ans" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/camera, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"ant" = ( +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"anu" = ( +/obj/structure/stairs{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"anv" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/airlock/east) +"anw" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/hallwaysouth) +"anx" = ( +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/sigma/south/complex) +"any" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"anz" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/item/folder/red, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"anA" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/omega/hallways) +"anB" = ( +/obj/structure/surface/table/woodentable, +/obj/item/folder/yellow, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"anC" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ + id = "GammaEastW"; + name = "Gamma East Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/control) +"anD" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/theta/airlock/east) +"anE" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/south/security) +"anF" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/south/id) +"anG" = ( +/turf/open/floor/corsat/purple, +/area/corsat/omega/hallways) +"anH" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"anI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"anJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/hangar/monorail) +"anK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"anL" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/alien/weeds/node, +/turf/open/floor/almayer/research/containment/floor2, +/area/corsat/inaccessible) +"anM" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Office"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"anN" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"anO" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/omega/containment) +"anP" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/almayer/research/containment/floor2, +/area/corsat/inaccessible) +"anQ" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/containment) +"anR" = ( +/turf/open/floor/almayer/research/containment/corner1, +/area/corsat/inaccessible) +"anS" = ( +/turf/open/floor/almayer/research/containment/corner4, +/area/corsat/inaccessible) +"anT" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/airlocknorth/id) +"anU" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/airlock/south) +"anV" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/retractor, +/obj/item/tool/surgery/bonegel, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"anW" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo/disposal) +"anX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purple/west, +/area/corsat/gamma/residential) +"anY" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/id) +"anZ" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"aoa" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/omega/airlocknorth/id) +"aob" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo/lobby) +"aoc" = ( +/turf/closed/wall/biodome, +/area/corsat/omega/complex) +"aod" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/hallwaysouth) +"aoe" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/theta/airlock/west/id) +"aof" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"aog" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/hangar/checkpoint) +"aoh" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/checkpoint) +"aoi" = ( +/turf/open/floor/corsat/arrow_west, +/area/corsat/sigma/cargo) +"aoj" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/sigma/dorms) +"aok" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/omega/complex) +"aol" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"aom" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/north) +"aon" = ( +/obj/structure/shuttle/diagonal{ + dir = 9; + icon_state = "wall"; + layer = 3 + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/monorail/railcart) +"aoo" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"aop" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/gamma/airlock/north) +"aoq" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"aor" = ( +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/cargo) +"aos" = ( +/turf/open/floor/almayer/research/containment/corner2, +/area/corsat/inaccessible) +"aot" = ( +/turf/open/floor/almayer/research/containment/corner3, +/area/corsat/inaccessible) +"aou" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo/disposal) +"aov" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/airlock/south) +"aow" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/west) +"aox" = ( +/obj/structure/sink, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"aoy" = ( +/obj/structure/machinery/door/window/southleft{ + dir = 8; + layer = 2.8 + }, +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"aoz" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/south) +"aoA" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/airlocknorth) +"aoB" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/airlocknorth) +"aoC" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/airlocknorth) +"aoD" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/dorms) +"aoE" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/complex) +"aoF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth/id) +"aoG" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"aoH" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/theta/airlock/west/id) +"aoI" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/white, +/area/corsat/sigma/dorms) +"aoJ" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/theta/airlock/west) +"aoK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/hallways) +"aoL" = ( +/obj/structure/window/reinforced, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/crap_item, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) +"aoM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"aoN" = ( +/obj/structure/window/framed/corsat/research, +/turf/open/floor/plating, +/area/corsat/omega/complex) +"aoO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"aoP" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west/id) +"aoQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"aoR" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/plating, +/area/corsat/theta/airlock/west) +"aoS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/structure/machinery/door/window/brigdoor/eastleft, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"aoT" = ( +/turf/open/floor/corsat/omega, +/area/corsat/omega/checkpoint) +"aoU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security/cells) +"aoV" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/security) +"aoW" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/airlock/control) +"aoX" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/airlock/control) +"aoY" = ( +/turf/closed/wall/biodome, +/area/corsat/omega/maint) +"aoZ" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"apa" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/omega/maint) +"apb" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/white/southeast, +/area/corsat/sigma/dorms) +"apc" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/omega/hallways) +"apd" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"ape" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/omega/complex) +"apf" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"apg" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/hangar) +"aph" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/airlock/east) +"api" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"apj" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/prison/hangar_storage/research/shuttle) +"apk" = ( +/turf/open/floor/plating, +/area/corsat/omega/hangar) +"apl" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/laundry) +"apm" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy1" + }, +/area/prison/hangar_storage/research/shuttle) +"apn" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/hangar/security) +"apo" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Researcher Quarters"; + req_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"app" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/cargo) +"apq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/red, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"apr" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential) +"aps" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Office"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/id) +"apt" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/southeast/generator) +"apu" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/airlock/north/id) +"apv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/residential) +"apw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/north/id) +"apx" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/residential/maint) +"apy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/residential/maint) +"apz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/southeast/generator) +"apA" = ( +/obj/structure/fence, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"apB" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo/lobby) +"apC" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "GammaSecC"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/security) +"apD" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/southeast/generator) +"apE" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"apF" = ( +/obj/structure/machinery/computer3/laptop/secure_data, +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"apG" = ( +/turf/open/floor/corsat/brown/northwest, +/area/corsat/omega/cargo) +"apH" = ( +/obj/structure/machinery/computer/telecomms/monitor{ + req_one_access_txt = "19;106;104" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"apI" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/engineering/core) +"apJ" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/north) +"apK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/researcher) +"apL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"apM" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/residential/maint) +"apN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"apO" = ( +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering/core) +"apP" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Toilet Unit" + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"apQ" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/residential/maint) +"apR" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/residential/maint) +"apS" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"apT" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/airlock/north) +"apU" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/gamma/airlock/north) +"apV" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/dorms) +"apW" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"apX" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"apY" = ( +/obj/structure/stairs{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"apZ" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering/core) +"aqa" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"aqb" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aqc" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/residential/maint) +"aqd" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/residential/maint) +"aqe" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/airlock/north) +"aqf" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"aqg" = ( +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"aqh" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/north) +"aqi" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/engineering) +"aqj" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"aqk" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/gamma/airlock/north) +"aql" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"aqm" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering) +"aqn" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"aqo" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/theta/airlock/control) +"aqp" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/southeast/generator) +"aqq" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"aqr" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/hallways) +"aqs" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/checkpoint) +"aqt" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/engineering/atmos) +"aqu" = ( +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering/atmos) +"aqv" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering/atmos) +"aqw" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/gamma/residential/maint) +"aqx" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"aqy" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/engineering/lobby) +"aqz" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Engineering"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"aqA" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/lobby) +"aqB" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/lobby) +"aqC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/southeast/generator) +"aqD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/atmos) +"aqE" = ( +/obj/structure/machinery/meter, +/obj/structure/pipes/standard/simple/visible{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"aqF" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hallwaysouth) +"aqG" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hallwaysouth) +"aqH" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"aqI" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"aqJ" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/hallwaysouth) +"aqK" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/gamma/hallwaysouth) +"aqL" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/theta/biodome) +"aqM" = ( +/turf/open/floor/corsat/greencorner/west, +/area/corsat/gamma/hallwaysouth) +"aqN" = ( +/turf/closed/wall/almayer/white, +/area/corsat/gamma/medbay/morgue) +"aqO" = ( +/turf/closed/wall/almayer/white, +/area/corsat/gamma/medbay) +"aqP" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"aqQ" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"aqR" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay/morgue) +"aqS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/morgue) +"aqT" = ( +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"aqU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/southeast/generator) +"aqV" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Telecommunications"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/generator) +"aqW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/morgue) +"aqX" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"aqY" = ( +/turf/closed/wall/almayer/white, +/area/corsat/gamma/medbay/lobby) +"aqZ" = ( +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/lobby) +"ara" = ( +/turf/open/floor/corsat/greenwhitecorner, +/area/corsat/gamma/medbay/lobby) +"arb" = ( +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay/lobby) +"arc" = ( +/turf/closed/shuttle, +/area/corsat/gamma/hangar/monorail/railcart) +"ard" = ( +/obj/structure/showcase{ + icon_state = "broadcast receiver"; + name = "Subspace Receiver" + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"are" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"arf" = ( +/turf/closed/wall/almayer/white, +/area/corsat/gamma/medbay/surgery) +"arg" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/surgery) +"arh" = ( +/turf/closed/wall/almayer/white, +/area/corsat/gamma/medbay/chemistry) +"ari" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"arj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/surgery) +"ark" = ( +/obj/structure/showcase{ + icon_state = "comm_server"; + name = "Communications Server" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"arl" = ( +/obj/structure/closet/crate/freezer, +/obj/item/organ/heart, +/obj/item/organ/kidneys, +/obj/item/organ/kidneys, +/obj/item/organ/liver, +/obj/item/organ/lungs, +/obj/item/organ/brain, +/obj/item/organ/eyes, +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay) +"arm" = ( +/turf/open/floor/corsat/browncorner/west, +/area/corsat/sigma/north) +"aro" = ( +/turf/open/floor/corsat/blue, +/area/corsat/gamma/hallwaysouth) +"arp" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/administration) +"arq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security/armory) +"arr" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/administration) +"ars" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security/armory) +"art" = ( +/obj/structure/computerframe, +/obj/effect/decal/cleanable/cobweb{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"aru" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"arv" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + damage_cap = 4000; + name = "\improper Emergency Access"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"arx" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/freezer) +"ary" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/hydroponics) +"arz" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/airlock/north) +"arA" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/cargo) +"arB" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/sigma/north) +"arC" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/sigma/north) +"arE" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/sigma/north) +"arF" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"arG" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/north) +"arH" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"arI" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"arJ" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/south) +"arK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hangar/security) +"arL" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/rnr/arcade) +"arM" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/sigma/north) +"arN" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/residential/laundry) +"arO" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"arP" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/browncorner/west, +/area/corsat/gamma/cargo/disposal) +"arQ" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"arR" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"arT" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/sigma/north) +"arU" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"arV" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/offices) +"arW" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/residential/lavatory) +"arY" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"arZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/sigma/north) +"asa" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/rnr) +"asb" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Reactor Core"; + req_one_access_txt = "102" + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"asc" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/kitchen) +"asd" = ( +/turf/open/floor/corsat/brown/southeast, +/area/corsat/sigma/cargo) +"ase" = ( +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"asf" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"asg" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"ash" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/sigma/north) +"asi" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/sigma/north) +"asj" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"ask" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat, +/area/corsat/sigma/southeast/generator) +"asm" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/residential/showers) +"asn" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/sigma/north) +"aso" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"asp" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/rnr/library) +"asq" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/rnr/library) +"asr" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"ass" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/gamma/rnr) +"ast" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/airlock/south) +"asu" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"asv" = ( +/obj/structure/curtain/shower, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"asw" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat, +/area/corsat/sigma/southeast/generator) +"asy" = ( +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"asz" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/security) +"asA" = ( +/obj/structure/shuttle/window, +/turf/open/shuttle/plating, +/area/corsat/gamma/hangar/monorail/railcart) +"asB" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"asC" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/canteen) +"asD" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/airlock/south) +"asE" = ( +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/canteen) +"asF" = ( +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/canteen) +"asG" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"asH" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/airlock/south/id) +"asI" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/window/reinforced{ + layer = 3.8 + }, +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/sigma/north) +"asJ" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/southeast) +"asK" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/southeast/dataoffice) +"asL" = ( +/obj/structure/window/reinforced{ + layer = 3.8 + }, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/sigma/north) +"asM" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + layer = 3.8 + }, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/sigma/north) +"asN" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/camera/oldcamera, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"asO" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "riot cabinet"; + req_access_txt = "100" + }, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/security/armory) +"asP" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"asQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"asR" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"asS" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/popcorn, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"asT" = ( +/obj/item/trash/candy, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"asU" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"asV" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/assembly/signaller, +/obj/item/tool/screwdriver, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"asW" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/donut_box, +/obj/item/tool/lighter, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"asX" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat, +/area/corsat/sigma/southeast/generator) +"asY" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/southeast) +"asZ" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"atb" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"atc" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/obj/item/tool/stamp, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo/lobby) +"atd" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/sigma/southeast) +"ate" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/north) +"atf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"atg" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/sigma/southeast/dataoffice) +"ath" = ( +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/administration) +"ati" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/southeast/generator) +"atj" = ( +/turf/open/floor/carpet10_8/west, +/area/corsat/gamma/administration) +"atk" = ( +/turf/closed/wall/biodome, +/area/corsat/sigma/southeast/dataoffice) +"atl" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/southeast/generator) +"atm" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/sigma/southeast) +"atn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"ato" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/southeast/telecomm) +"atp" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/sigma/southeast/dataoffice) +"atr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"ats" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/sigma/dorms) +"att" = ( +/turf/closed/wall/biodome, +/area/corsat/sigma/southeast/datalab) +"atu" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"atv" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/sigma/southeast/datalab) +"atw" = ( +/turf/open/floor/corsat, +/area/corsat/sigma/dorms) +"atx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential) +"aty" = ( +/turf/open/floor/carpet5_1/west, +/area/corsat/gamma/administration) +"atz" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/southeast/telecomm) +"atA" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/theta/airlock/east) +"atB" = ( +/turf/closed/wall/biodome, +/area/corsat/sigma/southeast/datamaint) +"atC" = ( +/obj/structure/closet/cabinet, +/obj/effect/spawner/random/tool, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"atD" = ( +/turf/open/floor/corsat, +/area/corsat/sigma/southeast/generator) +"atF" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/containment) +"atG" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/southeast/datamaint) +"atH" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/theta/airlock/west) +"atI" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/east) +"atJ" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/airlock/east/id) +"atK" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"atL" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/security/armory) +"atM" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/security/armory) +"atN" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"atO" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/corsat, +/area/corsat/sigma/southeast/generator) +"atP" = ( +/obj/structure/foamed_metal, +/turf/open/floor/corsat, +/area/corsat/sigma/hangar/id) +"atQ" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/airlock/east) +"atR" = ( +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"atS" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"atT" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaHCargoC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/id) +"atU" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/handcuffs, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/security/armory) +"atV" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/south) +"atW" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"atX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"atY" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/airlock/north) +"atZ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Food Storage"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"aua" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/north/id) +"aub" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"auc" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "GammaDSC2"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/gamma/airlock/north/id) +"aud" = ( +/turf/closed/wall/biodome, +/area/corsat/sigma/airlock/east) +"aue" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"auf" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"aug" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"auh" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/theta/airlock/east) +"aui" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/theta/airlock/east) +"auj" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/theta/airlock/east/id) +"auk" = ( +/obj/structure/window/reinforced, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/airlock/south) +"aul" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"aum" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Administration"; + req_access_txt = "106" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaAdmin"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"aun" = ( +/obj/structure/window/reinforced, +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"auo" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/corsat, +/area/corsat/sigma/southeast/generator) +"aup" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Senior Engineer's Office"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"auq" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/security) +"aur" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/east) +"aus" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"aut" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "SigmaSouthN"; + name = "Sigma South Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/south) +"auu" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"auv" = ( +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/south) +"auw" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"aux" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"auy" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"auz" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/southeast/datalab) +"auA" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/administration) +"auB" = ( +/turf/closed/wall/biodome, +/area/corsat/sigma/south/offices) +"auC" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"auD" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/south/id) +"auE" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/sigma/south/offices) +"auF" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south) +"auG" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/complex) +"auH" = ( +/turf/closed/wall/biodome, +/area/corsat/sigma/south/engineering) +"auJ" = ( +/turf/closed/wall/biodome, +/area/corsat/sigma/south/robotics) +"auK" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/sigma/south/robotics) +"auL" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/airlocknorth) +"auN" = ( +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/engineering) +"auO" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/whitecorner, +/area/corsat/sigma/dorms) +"auP" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"auQ" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/sigma/south/engineering) +"auR" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/sigma/south/robotics) +"auS" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/sigma/south/engineering) +"auU" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/corsat, +/area/corsat/sigma/southeast/generator) +"auV" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south) +"auW" = ( +/obj/structure/machinery/power/smes, +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"auX" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"auY" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"auZ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "GammaNorthN"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = 6; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "GammaNorthS"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = -3; + use_power = 0 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/airlock/north) +"ava" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/airlock/north) +"avb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Bar Rear" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"avc" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"avd" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/gamma/airlock/north) +"ave" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/obj/structure/surface/table/almayer, +/obj/item/evidencebag, +/obj/item/evidencebag, +/obj/item/evidencebag, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security/cells) +"avf" = ( +/obj/item/cell/crap, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/corsat/sigma/southeast/generator) +"avg" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/checkpoint) +"avh" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering/core) +"avj" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar/checkpoint) +"avl" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"avm" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/south/offices) +"avn" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/checkpoint) +"avo" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/checkpoint) +"avp" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"avq" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Medical Bay"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"avr" = ( +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/south) +"avs" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/corsat/sigma/hangar/checkpoint) +"avt" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ + id = "SigmaEastW"; + name = "Sigma East Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/east) +"avu" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/south/id) +"avv" = ( +/obj/structure/machinery/door_control{ + id = "GammaSecC"; + name = "Security Shutters"; + pixel_x = 25; + use_power = 0 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/security) +"avx" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"avy" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/brown/north, +/area/corsat/omega/cargo) +"avz" = ( +/turf/open/floor/carpet9_4/west, +/area/corsat/gamma/administration) +"avA" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red, +/area/corsat/sigma/airlock/south/id) +"avD" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper, +/obj/item/tool/pen, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"avE" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/hangar) +"avF" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/airlock/north) +"avG" = ( +/obj/structure/machinery/door/window/brigdoor/southleft{ + id = "CORSAT Sec 1"; + name = "Cell 1" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"avH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/east/id) +"avI" = ( +/turf/open/floor/corsat/cargo, +/area/corsat/omega/hangar) +"avJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hangar) +"avK" = ( +/turf/open/floor/corsat/browncorner/north, +/area/corsat/omega/cargo) +"avL" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/cargo) +"avM" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/southeast) +"avN" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"avO" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/gamma/residential) +"avP" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/gamma/residential) +"avQ" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/maint) +"avR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Office"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"avS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"avT" = ( +/obj/structure/window/framed/corsat/cell/research, +/turf/open/floor/plating, +/area/corsat/inaccessible) +"avU" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Morgue"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/medbay/morgue) +"avV" = ( +/turf/open/floor/corsat/blue, +/area/corsat/gamma/residential) +"avW" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/residential) +"avX" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"avY" = ( +/turf/open/floor/corsat/red, +/area/corsat/gamma/residential) +"avZ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"awa" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/residential) +"awb" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/airlock/north) +"awc" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/residential) +"awd" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/residential) +"awe" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/residential) +"awf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/residential/maint) +"awg" = ( +/obj/structure/machinery/bot/medbot/mysterious, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"awh" = ( +/obj/structure/surface/table/almayer, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"awi" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "GammaHangarCargoC"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/cargo) +"awj" = ( +/obj/structure/surface/table/reinforced, +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/checkpoint) +"awk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"awl" = ( +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay/chemistry) +"awm" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/chemistry) +"awn" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/greenwhitecorner/north, +/area/corsat/gamma/medbay/chemistry) +"awo" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/chemistry) +"awp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/id) +"awq" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/green/north, +/area/corsat/gamma/hallwaysouth) +"awr" = ( +/obj/structure/shuttle/diagonal{ + dir = 5; + icon_state = "wall"; + layer = 3 + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/monorail/railcart) +"aws" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"awt" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/gamma/administration) +"awu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"awv" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"aww" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Administration Desk"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"awx" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaDSC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/gamma/airlock/north/id) +"awy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"awz" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaDSC"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/north/id) +"awA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/stool, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"awB" = ( +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/airlock/north/id) +"awC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"awD" = ( +/obj/structure/machinery/door/window/brigdoor/southleft{ + id = "CORSAT Sec 2"; + name = "Cell 2" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"awE" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"awF" = ( +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"awG" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/north/id) +"awH" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/airlock/north) +"awJ" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"awK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "GammaDSC"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/north/id) +"awL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"awM" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/airlock/south/id) +"awN" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/north/id) +"awO" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"awP" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/checkpoint) +"awQ" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/residential/lavatory) +"awR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/airlock/north/id) +"awS" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Autopsy"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/morgue) +"awT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo/disposal) +"awU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"awV" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/airlock/north/id) +"awW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "GammaDSC2"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/airlock/north/id) +"awX" = ( +/obj/structure/closet/wardrobe/white, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/black, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/airlock/north/id) +"awY" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/biodome) +"awZ" = ( +/obj/structure/machinery/computer/emails, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"axa" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + layer = 3 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"axb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/checkpoint) +"axc" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/hallwaysouth) +"axd" = ( +/obj/structure/bed, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security/cells) +"axe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"axf" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/white/southwest, +/area/corsat/gamma/hallwaysouth) +"axg" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/south/id) +"axh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/gamma/administration) +"axi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"axj" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"axk" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/gamma/administration) +"axl" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"axm" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"axn" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"axo" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/airlock/north/id) +"axp" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering/core) +"axq" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/north/id) +"axr" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Custorial Closet"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"axs" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/residential/maint) +"axt" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"axu" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"axv" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/airlock/north/id) +"axw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"axx" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"axy" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"axz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"axB" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"axC" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/administration) +"axD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"axE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/gamma/administration) +"axF" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/gamma/administration) +"axG" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/omega/checkpoint) +"axH" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"axI" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/hangar/checkpoint) +"axJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Laundry" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"axK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/checkpoint) +"axL" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/checkpoint) +"axM" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/airlock/north) +"axN" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/gamma/airlock/north) +"axO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"axP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/airlock/east/id) +"axQ" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"axR" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/airlock/east/id) +"axS" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/airlock/east/id) +"axT" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/airlock/east/id) +"axV" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"axW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/east/id) +"axX" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/east/id) +"axY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Bar" + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr/bar) +"axZ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/east/id) +"aya" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaEastID2"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/airlock/east/id) +"ayb" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"ayc" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "SigmaEastID2"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/east/id) +"ayd" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/id) +"aye" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/north) +"ayf" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") + }, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/north) +"ayg" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/hangar/id) +"ayh" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"ayi" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/id) +"ayj" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/id) +"ayk" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"ayl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"aym" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"ayn" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/id) +"ayo" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"ayp" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/id) +"ayq" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/id) +"ayr" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/id) +"ays" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Hub"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"ayt" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/north) +"ayu" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/north) +"ayv" = ( +/obj/structure/machinery/optable, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"ayw" = ( +/turf/open/floor/corsat/blue, +/area/corsat/sigma/north) +"ayx" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/id) +"ayy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/hangar/id) +"ayz" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/bedsheet, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"ayA" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/hangar/id) +"ayB" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Hub"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"ayC" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo) +"ayD" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay) +"ayE" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/id) +"ayF" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/id) +"ayG" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) +"ayH" = ( +/turf/open/floor/corsat/purple/east, +/area/corsat/omega/airlocknorth) +"ayI" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaHCargoS"; + name = "Checkpoint Control"; + pixel_y = 7; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "SigmaHCargoN"; + name = "Checkpoint Control"; + pixel_x = -5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "SigmaHCargoC"; + name = "Security Shutters"; + pixel_x = 5; + use_power = 0 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/id) +"ayJ" = ( +/obj/structure/machinery/door_control{ + id = "SigmaEastW"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "SigmaEastE"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/sigma/airlock/east) +"ayK" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHCargoN"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/id) +"ayL" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("sigma") + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/east) +"ayM" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/chemimp, +/obj/item/storage/box/trackimp, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"ayN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/north) +"ayO" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"ayP" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/east) +"ayQ" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/east) +"ayR" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"ayS" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"ayT" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/east) +"ayU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"ayV" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/east) +"ayW" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/east) +"ayX" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/sigma/airlock/east) +"ayY" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/airlock/east) +"ayZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/airlock/east) +"aza" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "GammaNorthN"; + name = "Gamma North Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/north) +"azb" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"azc" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"azd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"aze" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"azf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"azg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"azh" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/airlock/east) +"azi" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"azj" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/airlock/east) +"azk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"azl" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"azm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"azn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"azo" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/security) +"azp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"azq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"azr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"azs" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/checkpoint) +"azt" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"azu" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/security) +"azv" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"azw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"azx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Airlock Control"; + req_access_txt = "102" + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"azy" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"azz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"azA" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"azB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"azC" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/gamma/administration) +"azD" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/airlock/east) +"azE" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"azF" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/east) +"azG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"azH" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/east) +"azI" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/east) +"azJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/east) +"azK" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"azL" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/east) +"azM" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/east) +"azN" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/east) +"azO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"azP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/south) +"azQ" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"azR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/south) +"azS" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"azT" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"azU" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"azV" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaIDSC2"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/south/id) +"azW" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/toxins) +"azX" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/biodome) +"azY" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"azZ" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + dir = 1; + name = "Cargo Bay"; + req_one_access_txt = "100" + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"aAa" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + dir = 1; + name = "Cargo Bay"; + req_one_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"aAb" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aAc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aAd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"aAe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"aAf" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/airlock/south) +"aAg" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/hangar/security) +"aAh" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"aAi" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"aAj" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"aAk" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaSouthS"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "SigmaSouthN"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aAl" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aAm" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"aAo" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 8; + name = "Harmful Gas Ejector" + }, +/turf/open/space, +/area/space) +"aAp" = ( +/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/atmos) +"aAq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/airlock/south) +"aAr" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/canteen) +"aAs" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aAt" = ( +/obj/structure/pipes/standard/simple/hidden/universal, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"aAu" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 32 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/security) +"aAv" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering/lobby) +"aAw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"aAx" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 32 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/south) +"aAy" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo) +"aAz" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/south) +"aAA" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aAB" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aAC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"aAD" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/airlock/south) +"aAE" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/medbay/morgue) +"aAF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aAG" = ( +/obj/effect/decal/mecha_wreckage/hoverpod, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"aAH" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/airlock/south) +"aAI" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/airlock/south) +"aAJ" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/south) +"aAK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/sigma/airlock/south) +"aAL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"aAM" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay/surgery) +"aAN" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar/checkpoint) +"aAO" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay/lobby) +"aAP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/south) +"aAQ" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/checkpoint) +"aAR" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aAS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/security) +"aAT" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/south) +"aAU" = ( +/obj/item/tool/pen, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"aAV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/south) +"aAW" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/purple/west, +/area/corsat/sigma/south) +"aAX" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/south) +"aAY" = ( +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/airlock/south) +"aAZ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaAdmin"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"aBa" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/airlock/south) +"aBb" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo) +"aBc" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aBe" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hallways) +"aBf" = ( +/turf/open/floor/corsat/arrow_east, +/area/corsat/omega/cargo) +"aBg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"aBh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"aBi" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + name = "Cargo Bay"; + req_one_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"aBj" = ( +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/corsat/inaccessible) +"aBk" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/inaccessible) +"aBl" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/corsat/inaccessible) +"aBm" = ( +/obj/item/clothing/mask/gas, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"aBn" = ( +/turf/open/floor/almayer/research/containment/entrance/west, +/area/corsat/inaccessible) +"aBo" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/corsat/inaccessible) +"aBq" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/corsat/inaccessible) +"aBr" = ( +/turf/open/floor/almayer/research/containment/corner/north, +/area/corsat/inaccessible) +"aBs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/airlock/south) +"aBt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/south) +"aBu" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"aBv" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/airlock/south) +"aBw" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/airlock/south) +"aBx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"aBy" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aBz" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/obj/structure/machinery/light, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aBD" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aBE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/west/id) +"aBF" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ + id = "SigmaEastE"; + name = "Sigma East Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/east) +"aBG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/west) +"aBH" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/south/id) +"aBJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"aBK" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/airlock/south) +"aBL" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/south) +"aBM" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"aBO" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/hangar/office) +"aBP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"aBQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aBR" = ( +/obj/structure/machinery/door_control{ + id = "SigmaWestW"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaWestE"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 + }, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"aBS" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/south) +"aBT" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/south) +"aBU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/sigma/airlock/south) +"aBV" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/hallways) +"aBW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aBX" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/theta/airlock/east) +"aBY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Airlock Control Office"; + req_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/south) +"aBZ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/omega/maint) +"aCa" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"aCb" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aCc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"aCd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aCe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/airlocknorth/id) +"aCf" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aCg" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"aCh" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"aCi" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aCj" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/security) +"aCk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"aCl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Airlock Control Office"; + req_access_txt = "102" + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/theta/airlock/east) +"aCm" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/theta/airlock/east) +"aCn" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Administration Desk"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"aCo" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/south) +"aCp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"aCq" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" + }, +/turf/open/floor/corsat/plate, +/area/corsat/inaccessible) +"aCr" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"aCs" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"aCt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering) +"aCu" = ( +/turf/open/floor/corsat, +/area/corsat/sigma/airlock/south) +"aCv" = ( +/obj/structure/surface/table/reinforced, +/obj/item/implantcase, +/obj/item/implantcase, +/obj/item/implantcase, +/obj/item/implantpad, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"aCw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"aCx" = ( +/obj/structure/prop/almayer/cannon_cables{ + color = "#55BBFF"; + name = "\improper Cables" + }, +/turf/open/floor/corsat/plate, +/area/corsat/inaccessible) +"aCy" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/southeast) +"aCz" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"aCA" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/southeast/generator) +"aCB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"aCC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"aCD" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"aCE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/brown/southwest, +/area/corsat/gamma/cargo/lobby) +"aCF" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"aCG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"aCH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"aCI" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Medical Bay"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"aCJ" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" + }, +/turf/open/floor/corsat/plate, +/area/corsat/inaccessible) +"aCK" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/corsat/sigma/airlock/south) +"aCL" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering/lobby) +"aCM" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Research Complex"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"aCN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"aCO" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/corsat/theta/airlock/east) +"aCP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"aCQ" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/theta/airlock/east) +"aCS" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Reception Desk"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/lobby) +"aCT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"aCU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"aCV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"aCW" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/checkpoint) +"aCX" = ( +/turf/open/floor/corsat, +/area/corsat/theta/airlock/east) +"aCY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "Medical Lobby"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"aCZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/dorms) +"aDa" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"aDb" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/theta/airlock/east) +"aDc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"aDd" = ( +/turf/open/floor/corsat/blue/southwest, +/area/corsat/sigma/south) +"aDe" = ( +/turf/open/floor/corsat/blue, +/area/corsat/sigma/south) +"aDf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"aDg" = ( +/obj/structure/closet/crate/science, +/obj/item/cell/hyper/empty, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/sigma/south/complex) +"aDh" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"aDi" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential) +"aDj" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/westleft{ + name = "Medical Desk" + }, +/obj/structure/machinery/door/window/eastright{ + name = "Medical Desk" + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/lobby) +"aDk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/theta/airlock/east) +"aDl" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"aDm" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/bluegrey, +/area/corsat/theta/airlock/east) +"aDn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"aDo" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"aDp" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/north) +"aDq" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/theta/airlock/east) +"aDr" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/theta/airlock/east) +"aDs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"aDt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"aDu" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/browncorner/north, +/area/corsat/sigma/cargo) +"aDv" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"aDw" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/spiralplate, +/area/corsat/theta/airlock/east) +"aDx" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("theta") + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/theta/airlock/east) +"aDy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Cafe" + }, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"aDz" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"aDA" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "ThetaEastE"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "ThetaEastW"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/theta/airlock/east) +"aDB" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"aDC" = ( +/obj/structure/showcase{ + icon_state = "broadcast receiver"; + name = "Subspace Receiver" + }, +/turf/open/floor/corsat/plate, +/area/corsat/inaccessible) +"aDD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"aDE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/theta/airlock/east) +"aDF" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/east) +"aDG" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"aDH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/theta/airlock/east) +"aDI" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/id) +"aDJ" = ( +/obj/structure/machinery/door_control{ + id = "SigmaCargo"; + name = "Cargo Door"; + pixel_x = -24; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"aDK" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/hangar) +"aDL" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"aDM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"aDN" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"aDO" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"aDP" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"aDQ" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/hangar) +"aDR" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"aDS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/darkgreen/northwest, +/area/corsat/gamma/hangar/arrivals) +"aDT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/chem_master/condimaster, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"aDU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"aDV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Firing Range"; + req_access_txt = "106"; + use_power = 0 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"aDX" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/arrivals) +"aDY" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy20" + }, +/area/corsat/omega/hangar) +"aDZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Control Room"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"aEa" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Teleporter Power Room"; + req_access_txt = "103"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"aEb" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/hangar/checkpoint) +"aEc" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy27" + }, +/area/corsat/omega/hangar) +"aEd" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy25" + }, +/area/corsat/omega/hangar) +"aEe" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy21" + }, +/area/corsat/omega/hangar) +"aEf" = ( +/obj/structure/window/framed/corsat/hull, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/omega/hallways) +"aEg" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/hangar/checkpoint) +"aEh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"aEi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hallways) +"aEj" = ( +/turf/open/floor/plating/warnplate, +/area/prison/hangar_storage/research/shuttle) +"aEk" = ( +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/omega/airlocknorth) +"aEl" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/omega/airlocknorth) +"aEn" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/airlocknorth) +"aEq" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/cargo) +"aEr" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/cargo/lobby) +"aEt" = ( +/turf/open/floor/corsat/arrow_west, +/area/corsat/gamma/engineering/core) +"aEu" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 32 + }, +/turf/open/floor/corsat/purplecorner, +/area/corsat/omega/airlocknorth) +"aEv" = ( +/turf/open/floor/corsat/arrow_north, +/area/corsat/sigma/southeast/generator) +"aEw" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/south/engineering) +"aEx" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/south/robotics) +"aEy" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/hangar) +"aEz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/hangar/monorail) +"aEC" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/airlocknorth) +"aED" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/airlocknorth) +"aEE" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/corsat/red, +/area/corsat/omega/airlocknorth) +"aEF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaO"; + name = "Dome Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/airlocknorth) +"aEG" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"aEH" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"aEJ" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"aEK" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"aEL" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/omega/complex) +"aEM" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Secondary Generators"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"aEN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"aEP" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/ice, +/area/corsat/gamma/biodome) +"aEQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"aER" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/alien/weeds/node, +/turf/open/ice, +/area/corsat/gamma/biodome) +"aES" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"aET" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Administration"; + req_access_txt = "106" + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"aEU" = ( +/obj/structure/closet/secure_closet/engineering_chief{ + req_access_txt = "101" + }, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering) +"aEV" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo/disposal) +"aEW" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"aEX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/ice, +/area/corsat/gamma/biodome) +"aEY" = ( +/obj/structure/bed, +/obj/structure/machinery/light, +/obj/item/bedsheet, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"aEZ" = ( +/obj/effect/alien/weeds/node, +/turf/open/ice, +/area/corsat/gamma/biodome) +"aFb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/checkpoint) +"aFc" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"aFd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/alien/weeds/node, +/turf/open/ice, +/area/corsat/gamma/biodome) +"aFe" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"aFf" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"aFg" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aFh" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/corsat/gamma/biodome) +"aFi" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"aFj" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"aFk" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/researcher) +"aFl" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + layer = 3 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aFm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential) +"aFn" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aFo" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer3/laptop/secure_data, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aFp" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering) +"aFq" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + layer = 3 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aFr" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar/checkpoint) +"aFs" = ( +/obj/structure/bed/chair/comfy, +/turf/open/shuttle/black, +/area/corsat/gamma/hangar/monorail/railcart) +"aFt" = ( +/obj/structure/closet/cabinet, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aFu" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"aFv" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/emails, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aFw" = ( +/turf/open/shuttle/black, +/area/corsat/gamma/hangar/monorail/railcart) +"aFx" = ( +/obj/structure/surface/table/woodentable, +/obj/item/pizzabox/margherita, +/obj/item/trash/chips, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aFy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar) +"aFz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/foyer) +"aFA" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"aFB" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"aFC" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/donut_box, +/obj/item/tool/lighter, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aFD" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"aFE" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"aFF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/foyer) +"aFG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/monorail/control) +"aFH" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"aFI" = ( +/obj/structure/bed{ + icon_state = "psychbed" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aFJ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/theta/airlock/east) +"aFK" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/foyer) +"aFL" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/theta/airlock/east) +"aFM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aFN" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"aFO" = ( +/obj/item/paper, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"aFP" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") + }, +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/theta/airlock/east) +"aFR" = ( +/obj/structure/bed, +/obj/item/pizzabox/margherita, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aFS" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/theta/airlock/east) +"aFT" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Waste Tank Control" + }, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/airlock/control) +"aFU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aFV" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar/cargo) +"aFW" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"aFX" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aFY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"aGb" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper, +/obj/item/tool/pen, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aGc" = ( +/obj/item/weapon/gun/pistol/mod88, +/obj/item/weapon/gun/pistol/mod88, +/obj/item/weapon/gun/pistol/mod88, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/south/security) +"aGd" = ( +/obj/structure/surface/table, +/obj/item/folder/yellow, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"aGe" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"aGf" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/control) +"aGg" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"aGh" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo) +"aGi" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/theta/airlock/east) +"aGj" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aGk" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/cargo) +"aGl" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar) +"aGm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo) +"aGn" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/browncorner/north, +/area/corsat/gamma/cargo) +"aGo" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"aGp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"aGq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"aGr" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south) +"aGs" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"aGt" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Surgery Room"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/surgery) +"aGu" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/theta/airlock/east) +"aGv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/theta/airlock/east) +"aGw" = ( +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/east) +"aGx" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaAdmin"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/gamma/administration) +"aGy" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "OmegaN"; + name = "Omega Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/airlocknorth) +"aGz" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"aGA" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/gamma/residential) +"aGB" = ( +/turf/open/floor/corsat/marked, +/area/corsat/omega/airlocknorth) +"aGC" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/browncorner, +/area/corsat/gamma/cargo) +"aGD" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) +"aGE" = ( +/obj/structure/stairs{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"aGF" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/officesquares, +/area/corsat/theta/airlock/east) +"aGG" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/theta/airlock/east) +"aGI" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"aGJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"aGK" = ( +/obj/structure/bedsheetbin, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"aGL" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"aGM" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/mp27, +/obj/item/weapon/gun/smg/mp27, +/obj/item/ammo_magazine/smg/mp27, +/obj/item/ammo_magazine/smg/mp27, +/obj/item/ammo_magazine/smg/mp27, +/obj/item/ammo_magazine/smg/mp27, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"aGN" = ( +/obj/structure/machinery/bioprinter{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"aGO" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south/security) +"aGP" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Data Laboratory"; + req_access_txt = "106;102;103" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"aGQ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Chemistry"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/chemistry) +"aGR" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering"; + req_one_access_txt = "102" + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"aGS" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Secondary Generators"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"aGT" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/southeast/datalab) +"aGU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"aGV" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "riot cabinet"; + req_access_txt = "100" + }, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/south/security) +"aGW" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/southeast/datalab) +"aGX" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/southeast/datalab) +"aGY" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"aHa" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"aHb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/brown/west, +/area/corsat/gamma/cargo) +"aHc" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Administration"; + req_access_txt = "106" + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"aHd" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/east/id) +"aHe" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"aHf" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"aHg" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Quarters"; + req_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aHh" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Administration"; + req_access_txt = "106" + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"aHi" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Administration"; + req_access_txt = "106" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"aHj" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Access Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"aHk" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Center"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"aHm" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/northeast, +/area/corsat/gamma/cargo) +"aHn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/omega, +/area/corsat/omega/hallways) +"aHo" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"aHp" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/west/id) +"aHq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Airlock Control"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/west) +"aHr" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + name = "Cargo Bay"; + req_one_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"aHs" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"aHt" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/red, +/area/corsat/sigma/south/security) +"aHu" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"aHv" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"aHw" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"aHx" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/south/security) +"aHy" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Remote Complex"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"aHz" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Teleportation Lab"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"aHA" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Virology Lab"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"aHB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"aHC" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Containment Cell"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"aHD" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Virology Lab"; + req_one_access_txt = "103" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Viro"; + name = "Virology Lockdown" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"aHE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/juicer, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"aHF" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Decontamination Chamber"; + req_one_access_txt = "103" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Viro"; + name = "Virology Lockdown" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"aHG" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Access Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"aHH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner, +/area/corsat/omega/cargo) +"aHI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("omega") + }, +/turf/open/floor/corsat/brown, +/area/corsat/omega/cargo) +"aHJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"aHK" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"aHL" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/hangar/security) +"aHM" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "OmegaS"; + name = "Omega Airlock" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/omega/airlocknorth) +"aHN" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/theta/airlock/east) +"aHO" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Hydroponics"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"aHP" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Food Storage"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"aHQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Food Storage"; + req_one_access = null + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"aHR" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"aHS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/theta/airlock/east) +"aHT" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"aHU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/theta/airlock/east) +"aHV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Kitchen" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"aHW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Canteen" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"aHX" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"aHY" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Cafe"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"aHZ" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"aIa" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Research Complex"; + req_one_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"aIb" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"aIc" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Subject den"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"aId" = ( +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"aIe" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/security) +"aIf" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/east/id) +"aIg" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Administration Desk" + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Administration Desk"; + req_access_txt = "104" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaAdmin"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"aIh" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"aIi" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/airlocknorth) +"aIj" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aIk" = ( +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"aIl" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer2, +/area/corsat/gamma/biodome) +"aIm" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/biodome/virology) +"aIn" = ( +/obj/structure/window/framed/corsat/research, +/turf/open/floor/plating, +/area/corsat/gamma/biodome/virology) +"aIo" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/biodome/virology) +"aIp" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"aIq" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"aIr" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"aIs" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"aIt" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/biodome/complex) +"aIu" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/biodome/complex) +"aIv" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/hangar/office) +"aIw" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"aIx" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/airlock/control) +"aIy" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "GammaNorthS"; + name = "Gamma North Airlock" + }, +/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ + id = "map_lockdown"; + name = "Gamma Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/north) +"aIz" = ( +/obj/structure/closet/crate/science, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"aIA" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/airlock/control) +"aIB" = ( +/turf/open/floor/corsat/purple/west, +/area/corsat/gamma/biodome/complex) +"aIC" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/airlock/control) +"aID" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/control) +"aIE" = ( +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/airlock/control) +"aIF" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/airlock/control) +"aIG" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"aIH" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"aII" = ( +/obj/structure/window/framed/corsat/research, +/turf/open/floor/plating, +/area/corsat/gamma/biodome/complex) +"aIJ" = ( +/turf/open/floor/corsat/purple/northwest, +/area/corsat/gamma/biodome/complex) +"aIK" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/gamma/airlock/control) +"aIL" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"aIM" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"aIN" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"aIO" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/biodome) +"aIP" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/biodome/complex) +"aIQ" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/control) +"aIR" = ( +/obj/structure/closet/secure_closet/brig{ + id = "CORSAT Sec 1" + }, +/obj/structure/machinery/brig_cell{ + id = "CORSAT Sec 1"; + name = "Cell 1"; + pixel_x = -32 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security/cells) +"aIS" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"aIT" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"aIU" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Teleporter Power Room"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"aIV" = ( +/obj/structure/closet/secure_closet/brig{ + id = "CORSAT Sec 2" + }, +/obj/structure/machinery/brig_cell{ + id = "CORSAT Sec 2"; + name = "Cell 2"; + pixel_x = 32 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security/cells) +"aIW" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"aIX" = ( +/turf/open/floor/wood, +/area/corsat/gamma/biodome/complex) +"aIY" = ( +/obj/structure/window/framed/corsat/research, +/turf/open/floor/plating, +/area/corsat/gamma/biodome/toxins) +"aIZ" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"aJa" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/biodome/toxins) +"aJb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Toilet Unit"; + req_access_txt = "100"; + req_one_access_txt = "0" + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/biodome/complex) +"aJc" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/airlock/control) +"aJd" = ( +/obj/structure/coatrack, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"aJe" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"aJf" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"aJg" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_y = 24 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/biodome/complex) +"aJh" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/cargo) +"aJi" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_y = 24 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/biodome/complex) +"aJj" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/spiralplate, +/area/corsat/theta/airlock/east) +"aJk" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/airlock/control) +"aJl" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/control) +"aJm" = ( +/turf/closed/wall/r_wall, +/area/corsat/sigma/biodome/gunrange) +"aJn" = ( +/turf/open/floor/asteroidwarning/north, +/area/corsat/sigma/biodome) +"aJo" = ( +/turf/open/floor/carpet6_2/west, +/area/corsat/gamma/biodome/complex) +"aJp" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/biodome/complex) +"aJq" = ( +/turf/open/floor/carpet10_8/west, +/area/corsat/gamma/biodome/complex) +"aJr" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"aJs" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/biodome/complex) +"aJt" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/airlock/control) +"aJu" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/hallwaysouth) +"aJv" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/airlock/control) +"aJw" = ( +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome) +"aJx" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"aJy" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"aJz" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south) +"aJA" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/brown/northwest, +/area/corsat/gamma/cargo/disposal) +"aJB" = ( +/turf/open/floor/carpet5_1/west, +/area/corsat/gamma/biodome/complex) +"aJC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/biodome/complex) +"aJD" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/biodome/complex) +"aJE" = ( +/obj/structure/disposaloutlet, +/turf/open/floor/corsat/brown/northeast, +/area/corsat/gamma/cargo/disposal) +"aJF" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"aJG" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/airlock/control) +"aJH" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/airlock/control) +"aJI" = ( +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome) +"aJJ" = ( +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome) +"aJK" = ( +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"aJL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Sigma Dome Control" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"aJM" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"aJN" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security) +"aJO" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/control) +"aJP" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/corsat/arrow_east, +/area/corsat/gamma/cargo) +"aJQ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"aJR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Sigma Remote Complex"; + req_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"aJS" = ( +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"aJT" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south/security) +"aJU" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/theta/airlock/control) +"aJV" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/theta/airlock/control) +"aJW" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/theta/airlock/control) +"aJX" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"aJY" = ( +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/control) +"aJZ" = ( +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"aKa" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/theta/airlock/control) +"aKb" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"aKc" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHCargoS"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/id) +"aKe" = ( +/turf/open/floor/corsat/blue/northwest, +/area/corsat/gamma/airlock/control) +"aKf" = ( +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/control) +"aKg" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/theta/airlock/control) +"aKh" = ( +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"aKi" = ( +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"aKj" = ( +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"aKk" = ( +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"aKl" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"aKm" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/corsat/theta/biodome) +"aKn" = ( +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"aKo" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"aKp" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/corsat/theta/biodome) +"aKq" = ( +/turf/closed/wall/biodome, +/area/corsat/theta/biodome) +"aKs" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/theta/biodome/hydrowest) +"aKt" = ( +/turf/closed/wall/biodome, +/area/corsat/theta/biodome/complex) +"aKu" = ( +/obj/structure/window/framed/corsat/research, +/turf/open/floor/plating, +/area/corsat/theta/biodome/complex) +"aKv" = ( +/obj/structure/closet/crate/science, +/obj/item/ore/diamond, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/sigma/south/complex) +"aKw" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"aKx" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/turf/open/floor/corsat/theta, +/area/corsat/sigma/south) +"aKy" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/theta/biodome/hydroeast) +"aKz" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"aKA" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/south) +"aKB" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/south) +"aKC" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/theta/biodome/complex) +"aKD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/theta/biodome/complex) +"aKE" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"aKF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/south) +"aKG" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"aKH" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/theta, +/area/corsat/theta/biodome/complex) +"aKI" = ( +/obj/structure/machinery/door_control{ + id = "GammaEastW"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "GammaEastE"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/airlock/control) +"aKJ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("theta") + }, +/turf/open/floor/corsat/purplecorner/west, +/area/corsat/theta/biodome/complex) +"aKK" = ( +/turf/closed/wall/biodome, +/area/corsat/theta/biodome/hydrowest) +"aKL" = ( +/turf/closed/wall/biodome, +/area/corsat/theta/biodome/hydroeast) +"aKM" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydrowest) +"aKN" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydrowest) +"aKO" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydrowest) +"aKP" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/hydrowest) +"aKQ" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydroeast) +"aKR" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/hydroeast) +"aKS" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydroeast) +"aKT" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) +"aKV" = ( +/obj/structure/prop/almayer/particle_cannon/corsat, +/turf/open/floor/corsat/plate, +/area/corsat/inaccessible) +"aKW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"aKX" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"aKY" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/biodome/complex) +"aKZ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/biodome/complex) +"aLa" = ( +/obj/structure/closet/crate/trashcart, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/brown/west, +/area/corsat/gamma/cargo/disposal) +"aLb" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"aLc" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aLd" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"aLe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"aLf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Hangar Office" + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"aLg" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"aLh" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/control) +"aLi" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Viro"; + name = "Virology Lockdown" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Virology Wing"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"aLj" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"aLk" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/control) +"aLl" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"aLm" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/sigma/south/complex) +"aLn" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/airlock/control) +"aLo" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "GammaControl"; + name = "Observation Shutters"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/gamma/airlock/control) +"aLp" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/airlocknorth) +"aLq" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"aLs" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/control) +"aLt" = ( +/turf/open/floor/corsat/omega, +/area/corsat/omega/control) +"aLu" = ( +/turf/open/floor/corsat/omega, +/area/corsat/omega/hallways) +"aLv" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/omega/control) +"aLw" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/airlock/south/id) +"aLx" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/theta/airlock/east/id) +"aLy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/theta, +/area/corsat/sigma/south) +"aLA" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south/id) +"aLB" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south/id) +"aLC" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/dataoffice) +"aLD" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"aLE" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/south) +"aLH" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "GammaCargo"; + name = "Gamma Cargo Bay"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/cargo) +"aLI" = ( +/obj/structure/machinery/door_control{ + id = "GammaCargo"; + name = "Cargo Door"; + pixel_x = -24; + use_power = 0 + }, +/turf/open/floor/corsat/arrow_north, +/area/corsat/gamma/cargo) +"aLK" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/security) +"aLL" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"aLM" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"aLN" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"aLO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"aLP" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/sigma/south) +"aLQ" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/south) +"aLR" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"aLS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/theta/airlock/east/id) +"aLT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"aLU" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "ThetaIDEC2"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/theta/airlock/east/id) +"aLV" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/theta/airlock/east/id) +"aLW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"aLX" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"aLY" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "ThetaIDEC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/theta/airlock/east/id) +"aLZ" = ( +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/west) +"aMa" = ( +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/east) +"aMb" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"aMc" = ( +/turf/open/floor/corsat/omega, +/area/corsat/omega/airlocknorth) +"aMd" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west/id) +"aMf" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/south/security) +"aMg" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "ThetaIDEC2"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/red/northwest, +/area/corsat/theta/airlock/east/id) +"aMh" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/east/id) +"aMi" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"aMj" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/east/id) +"aMk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/east/id) +"aMl" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/theta/airlock/east/id) +"aMm" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/theta/airlock/east/id) +"aMn" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"aMo" = ( +/obj/item/device/assembly/voice, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"aMp" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"aMq" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"aMr" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"aMs" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/obj/structure/closet/wardrobe/medic_white, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"aMt" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"aMu" = ( +/obj/structure/machinery/r_n_d/organic_analyzer, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"aMv" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"aMw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"aMx" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth/id) +"aMy" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/east/id) +"aMz" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"aMA" = ( +/obj/structure/surface/table/reinforced, +/obj/item/xeno_restraints, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth/id) +"aMB" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"aMC" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"aMD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/airlocknorth) +"aME" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"aMF" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"aMG" = ( +/turf/open/floor/corsat/arrow_south, +/area/corsat/gamma/cargo) +"aMH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/arrow_west, +/area/corsat/gamma/cargo) +"aMI" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/east/id) +"aMJ" = ( +/turf/open/floor/corsat/arrow_north, +/area/corsat/gamma/cargo) +"aMK" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo/disposal) +"aML" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"aMM" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Data Maintainence"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datamaint) +"aMN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/east/id) +"aMO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datamaint) +"aMP" = ( +/obj/structure/bed{ + icon_state = "psychbed" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aMR" = ( +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/east/id) +"aMS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "ThetaIDEC"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/theta/airlock/east/id) +"aMT" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/south) +"aMU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south) +"aMV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"aMW" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast/datamaint) +"aMX" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datamaint) +"aMY" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal{ + amount = 25; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/rods{ + amount = 25 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/residential/maint) +"aMZ" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"aNa" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"aNb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Administration Office" + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"aNc" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/dataoffice) +"aNe" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/dataoffice) +"aNg" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"aNh" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/purple/northeast, +/area/corsat/sigma/south) +"aNi" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"aNj" = ( +/obj/structure/surface/rack, +/obj/item/evidencebag, +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/red/southwest, +/area/corsat/theta/airlock/east/id) +"aNk" = ( +/obj/structure/machinery/computer/cameras{ + network = list("omega"); + pixel_y = 22 + }, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"aNl" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/southeast, +/area/corsat/theta/airlock/east/id) +"aNm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Data Office"; + req_access_txt = "102;103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"aNn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"aNo" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Administration"; + req_access_txt = "106" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"aNp" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Administration"; + req_access_txt = "106" + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"aNq" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/south/offices) +"aNr" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/southeast/datalab) +"aNs" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/datalab) +"aNt" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/datalab) +"aNu" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Data Laboratory"; + req_access_txt = "106;102;103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/datalab) +"aNv" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"aNw" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/plating, +/area/corsat/theta/airlock/east/id) +"aNx" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"aNy" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"aNz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"aNB" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"aNC" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/surgery) +"aND" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/chemistry) +"aNE" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/south/security) +"aNF" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/chemistry) +"aNG" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/material, +/obj/structure/machinery/door/window/eastright{ + name = "Prototype Racks"; + req_access_txt = "103" + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"aNH" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "SigmaResC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/sigma/checkpoint) +"aNI" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"aNJ" = ( +/obj/structure/machinery/door_control{ + id = "GammaCargo"; + name = "Cargo Door"; + pixel_x = 24; + use_power = 0 + }, +/turf/open/floor/corsat/arrow_north, +/area/corsat/gamma/cargo) +"aNK" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/security/armory) +"aNL" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security/cells) +"aNM" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/night, +/obj/structure/machinery/door/window/eastright{ + name = "Prototype Racks"; + req_access_txt = "103" + }, +/obj/structure/window/reinforced/toughened, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"aNN" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/security) +"aNO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"aNP" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/security/cells) +"aNQ" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"aNR" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security/armory) +"aNS" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/security/cells) +"aNT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security/cells) +"aNU" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/security) +"aNV" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"aNW" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"aNX" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security) +"aNY" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/gamma/hangar/arrivals) +"aNZ" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"aOa" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/checkpoint) +"aOb" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/checkpoint) +"aOc" = ( +/obj/structure/fence, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"aOd" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/checkpoint) +"aOe" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/corsat/gamma/hangar/monorail/railcart) +"aOf" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/hangar/checkpoint) +"aOg" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/sigma/south) +"aOh" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/foyer) +"aOi" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"aOj" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"aOk" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south/security) +"aOl" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail/control) +"aOm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "Medbay"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"aOn" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south/security) +"aOo" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south) +"aOp" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Hangar Security"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/security) +"aOq" = ( +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/gamma/hangar/office) +"aOr" = ( +/turf/open/floor/corsat/blue/northwest, +/area/corsat/gamma/hangar) +"aOs" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/hangar) +"aOt" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/hangar) +"aOu" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hangar/arrivals) +"aOv" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"aOw" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/hangar) +"aOx" = ( +/turf/open/floor/corsat/arrow_west, +/area/corsat/gamma/hangar) +"aOy" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/south/security) +"aOz" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/cargo) +"aOA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/hangar/cargo) +"aOB" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/sigma/south/security) +"aOC" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/corsat/sigma/biodome) +"aOD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"aOE" = ( +/obj/structure/showcase, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/window/reinforced/toughened{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/south) +"aOF" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"aOG" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/hangar/monorail/control) +"aOH" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"aOI" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/sigma/south/complex) +"aOJ" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/hangar) +"aOK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"aOL" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"aOM" = ( +/turf/open/floor/corsat/arrow_south, +/area/corsat/sigma/hangar) +"aON" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/hangar/id) +"aOP" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"aOQ" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/inaccessible) +"aOR" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/platform{ + density = 0; + dir = 1; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"aOS" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" + }, +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"aOT" = ( +/turf/closed/wall/biodome, +/area/corsat/emergency_access) +"aOU" = ( +/turf/open/floor/corsat/purplecorner, +/area/corsat/theta/biodome/complex) +"aOW" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"aOX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"aOY" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/office) +"aOZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"aPa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"aPb" = ( +/obj/structure/computerframe, +/obj/effect/decal/cleanable/cobweb{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"aPc" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 1 + }, +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"aPd" = ( +/obj/structure/machinery/power/apc/upgraded/power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security/armory) +"aPe" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/armory) +"aPf" = ( +/obj/effect/alien/weeds/node, +/turf/open/mars_cave/mars_cave_18, +/area/corsat/sigma/biodome) +"aPg" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"aPh" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/security) +"aPj" = ( +/obj/item/paper, +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"aPk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/security) +"aPl" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"aPm" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering/atmos) +"aPn" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"aPo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/security) +"aPp" = ( +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock/master, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"aPq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"aPr" = ( +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/researcher) +"aPs" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aPt" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"aPu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"aPv" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/sigma/airlock/south) +"aPw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"aPx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"aPy" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"aPz" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/checkpoint) +"aPA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/checkpoint) +"aPB" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/shuttle/black, +/area/corsat/gamma/hangar/monorail/railcart) +"aPC" = ( +/obj/effect/landmark/yautja_teleport, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"aPD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"aPE" = ( +/turf/open/floor/corsat/arrow_south, +/area/corsat/gamma/hangar) +"aPF" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/crap_item, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/foyer) +"aPG" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"aPH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Arrivals" + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"aPJ" = ( +/obj/structure/flora/jungle/alienplant1, +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/corsat/theta/biodome) +"aPK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("sigma") + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/hangar/monorail/control) +"aPL" = ( +/obj/structure/shuttle/diagonal{ + dir = 5; + layer = 3 + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/monorail/railcart) +"aPM" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/checkpoint) +"aPN" = ( +/obj/effect/landmark/yautja_teleport, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"aPO" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/gamma/security/cells) +"aPP" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/gamma/security) +"aPQ" = ( +/obj/structure/machinery/door/airlock/dropship_hatch/monorail{ + dir = 1 + }, +/turf/open/shuttle/black, +/area/corsat/gamma/hangar/monorail/railcart) +"aPR" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/airlock/south) +"aPS" = ( +/turf/open/floor/corsat/arrow_east, +/area/corsat/gamma/engineering/core) +"aPT" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/engineering) +"aPU" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "ThetaIDEC"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/east/id) +"aPV" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/foyer) +"aPW" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/engineering/lobby) +"aPX" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"aPY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"aPZ" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"aQa" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/cargo) +"aQb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"aQc" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"aQd" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/residential/maint) +"aQe" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy2" + }, +/area/prison/hangar_storage/research/shuttle) +"aQf" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy3" + }, +/area/prison/hangar_storage/research/shuttle) +"aQg" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/area/prison/hangar_storage/research/shuttle) +"aQh" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hangar/office) +"aQi" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/plating, +/area/corsat/omega/hangar/security) +"aQj" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/plating, +/area/corsat/omega/hangar/office) +"aQl" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "ThetaNorthS"; + name = "Airlock Control"; + pixel_y = -2; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "ThetaNorthN"; + name = "Airlock Control"; + pixel_y = 5; + use_power = 0 + }, +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"aQm" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/hangar/office) +"aQn" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, +/area/prison/hangar_storage/research/shuttle) +"aQo" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/omega/hangar/security) +"aQp" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/raisins, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"aQq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/core) +"aQr" = ( +/turf/open/floor/corsat/omega, +/area/corsat/omega/hangar) +"aQs" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar) +"aQt" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) +"aQu" = ( +/turf/open/floor/corsat/arrow_west, +/area/corsat/omega/hangar) +"aQv" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/glass, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"aQw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/core) +"aQx" = ( +/obj/effect/alien/weeds/node, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"aQy" = ( +/obj/structure/tunnel{ + id = "hole4" + }, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"aQz" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/emergency_access) +"aQA" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"aQB" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"aQC" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/emergency_access) +"aQD" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/hangar/security) +"aQE" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hangar/office) +"aQF" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"aQG" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aQH" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"aQI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"aQJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"aQK" = ( +/obj/item/tool/wet_sign, +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"aQL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security/cells) +"aQM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"aQN" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/residential/maint) +"aQO" = ( +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"aQP" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/rnr) +"aQQ" = ( +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"aQR" = ( +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"aQS" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering) +"aQT" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"aQU" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"aQV" = ( +/obj/structure/computerframe, +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"aQW" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"aQX" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/researcher) +"aQY" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"aQZ" = ( +/obj/item/paper_bin, +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/residential/lounge) +"aRa" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"aRb" = ( +/obj/structure/computerframe, +/obj/effect/decal/cleanable/cobweb{ + dir = 1 + }, +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"aRc" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"aRd" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"aRe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"aRf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"aRg" = ( +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/residential/lounge) +"aRh" = ( +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/structure/closet/crate/freezer, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"aRj" = ( +/obj/item/paper, +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/residential/lounge) +"aRk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering) +"aRl" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aRm" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/yellow, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"aRn" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/kitchen) +"aRo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Chemistry"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"aRp" = ( +/turf/open/floor/plating, +/area/corsat/sigma/hangar/monorail/railcart) +"aRq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"aRr" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/arrivals) +"aRs" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/residential/lounge) +"aRt" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/sigmaremote) +"aRu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"aRv" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/canteen) +"aRw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"aRx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/hangar) +"aRy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"aRz" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"aRA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/canteen) +"aRB" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"aRD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hallwaysouth) +"aRE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/hallwaysouth) +"aRF" = ( +/obj/item/paper, +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/carpet11_12/west, +/area/corsat/gamma/residential/lounge) +"aRG" = ( +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"aRH" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/office) +"aRJ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/hangar) +"aRK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"aRM" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"aRN" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hangar/monorail) +"aRO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/biodome/virology) +"aRP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/morgue) +"aRQ" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"aRS" = ( +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"aRT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay) +"aRU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"aRV" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"aRW" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"aRX" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/cargo/disposal) +"aRY" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"aRZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"aSa" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aSb" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"aSc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"aSd" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"aSe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"aSf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"aSg" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"aSh" = ( +/obj/structure/machinery/light, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar) +"aSi" = ( +/obj/structure/surface/table/almayer, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay) +"aSj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"aSk" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"aSl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay) +"aSm" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/corsat/gamma/medbay) +"aSn" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/corsat/gamma/medbay/lobby) +"aSo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"aSp" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/corsat/gamma/medbay/surgery) +"aSq" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/corsat/gamma/medbay/chemistry) +"aSr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/secure_closet/medical2{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"aSs" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/checkpoint) +"aSt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/control) +"aSu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"aSv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/airlock/control) +"aSw" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"aSx" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaHangarC"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"aSy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"aSz" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail) +"aSA" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"aSB" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail) +"aSC" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"aSD" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purple/west, +/area/corsat/gamma/biodome/complex) +"aSE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/purple/east, +/area/corsat/gamma/biodome/complex) +"aSF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"aSG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"aSH" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"aSJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/security) +"aSL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/complex) +"aSM" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + name = "Reception Desk"; + req_one_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo/lobby) +"aSN" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"aSO" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purple, +/area/corsat/gamma/biodome/complex) +"aSP" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"aSQ" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"aSR" = ( +/obj/item/trash/chips, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"aSS" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"aST" = ( +/obj/item/trash/candy, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"aSU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"aSV" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 4; + id_tag = "waste_corsat_out" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"aSW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"aSX" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydrowest) +"aSY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/wardrobe/toxins_white, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"aSZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"aTa" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/airlock/control) +"aTb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/gamma/airlock/control) +"aTc" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"aTd" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"aTe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/airlock/control) +"aTf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"aTg" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"aTi" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/security) +"aTj" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/drinkingglass, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"aTk" = ( +/obj/item/trash/burger, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"aTl" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"aTm" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"aTn" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bottle/capsaicin, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/biodome/toxins) +"aTo" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/blue, +/area/corsat/gamma/airlock/control) +"aTp" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/hallwaysouth) +"aTq" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"aTr" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/id) +"aTs" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/id) +"aTt" = ( +/obj/item/trash/buritto, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"aTu" = ( +/obj/item/device/camera, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"aTv" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 4; + id_tag = "mixed_corsat_out" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"aTw" = ( +/obj/item/storage/fancy/cigar, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"aTx" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"aTy" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail) +"aTz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"aTA" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"aTB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"aTC" = ( +/obj/item/device/flashlight/lamp/green, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/biodome/complex) +"aTD" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/sigma/airlock/control) +"aTE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/north) +"aTF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/north) +"aTG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"aTH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"aTJ" = ( +/obj/item/phone, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/biodome/complex) +"aTK" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/biodome/complex) +"aTL" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/hangar/arrivals) +"aTM" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet11_12/west, +/area/corsat/gamma/biodome/complex) +"aTN" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/north) +"aTO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"aTP" = ( +/turf/open/floor/corsat/marked, +/area/corsat/omega/biodome) +"aTQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/smartfridge/chemistry{ + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/toxins) +"aTR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/toxins) +"aTS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/space_heater, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"aTT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"aTU" = ( +/obj/structure/machinery/door_control{ + id = "Toxins"; + name = "Toxins Lockdown"; + pixel_y = -5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "Viro"; + name = "Virology Lockdown"; + pixel_y = 8; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "GammaLab"; + name = "Privacy Shutters"; + pixel_y = 1; + use_power = 0 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet9_4/west, +/area/corsat/gamma/biodome/complex) +"aTV" = ( +/obj/structure/machinery/computer/skills{ + dir = 4 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"aTW" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"aTX" = ( +/obj/item/storage/box/monkeycubes, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/containment) +"aTY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/canteen) +"aTZ" = ( +/obj/structure/lamarr, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"aUa" = ( +/obj/item/tool/stamp/rd, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"aUb" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"aUc" = ( +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"aUd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/north) +"aUe" = ( +/obj/structure/machinery/light, +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"aUf" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"aUg" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"aUh" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"aUi" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/sigma/north) +"aUj" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"aUk" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"aUl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"aUm" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"aUn" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/hangar) +"aUo" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"aUp" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/hangar/cargo) +"aUq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"aUr" = ( +/obj/item/storage/fancy/cigar, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"aUs" = ( +/obj/item/weapon/pole/fancy_cane, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"aUt" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"aUv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner/east, +/area/corsat/gamma/foyer) +"aUw" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/green/west, +/area/corsat/gamma/hallwaysouth) +"aUx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"aUy" = ( +/obj/item/disk/botany, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"aUz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/cargo) +"aUA" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"aUB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/dorms) +"aUC" = ( +/obj/item/toy/prize/ripley{ + pixel_y = 15 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"aUD" = ( +/obj/structure/surface/table/woodentable, +/obj/item/newspaper, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aUE" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aUF" = ( +/obj/structure/closet/cabinet, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aUG" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/biodome/toxins) +"aUH" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/biodome/virology) +"aUI" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/biodome/complex) +"aUJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aUK" = ( +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet10_8/west, +/area/corsat/gamma/administration) +"aUL" = ( +/obj/structure/surface/table/woodentable, +/obj/item/newspaper, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aUM" = ( +/obj/structure/surface/rack, +/obj/item/tank/air, +/obj/item/tank/air, +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"aUN" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 4; + id_tag = "nit_corsat_out" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"aUO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/sigma/dorms) +"aUP" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"aUQ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"aUR" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"aUS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"aUT" = ( +/obj/structure/surface/rack, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"aUU" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet6_2/west, +/area/corsat/gamma/administration) +"aUV" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/dorms) +"aUW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/checkpoint) +"aUX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/dorms) +"aUY" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan, +/area/corsat/sigma/dorms) +"aUZ" = ( +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet6_2/west, +/area/corsat/gamma/administration) +"aVa" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/brown/north, +/area/corsat/omega/cargo) +"aVb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"aVc" = ( +/turf/open/floor/corsat/blue, +/area/corsat/theta/airlock/control) +"aVd" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aVe" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/deck, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aVf" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aVg" = ( +/obj/structure/closet/cabinet, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aVh" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/white, +/area/corsat/sigma/dorms) +"aVi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"aVj" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aVl" = ( +/obj/item/folder/blue, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/administration) +"aVm" = ( +/obj/item/paper, +/obj/item/tool/pen/red, +/obj/item/tool/stamp/rd, +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"aVn" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/stamp/rd, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"aVo" = ( +/obj/structure/shuttle/diagonal{ + dir = 6; + icon_state = "wall"; + layer = 3 + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/monorail/railcart) +"aVp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/theta/airlock/control) +"aVq" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay) +"aVr" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"aVs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"aVt" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet11_12/west, +/area/corsat/gamma/administration) +"aVu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/hallways) +"aVv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/checkpoint) +"aVw" = ( +/obj/item/folder/black, +/obj/item/tool/stamp/rd, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/administration) +"aVx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/south/id) +"aVy" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"aVz" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet11_12/west, +/area/corsat/gamma/administration) +"aVA" = ( +/obj/item/folder/white, +/obj/item/tool/stamp/rd, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/administration) +"aVB" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/theta/biodome/complex) +"aVC" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"aVD" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"aVE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast) +"aVF" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"aVG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/north) +"aVH" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"aVI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"aVJ" = ( +/obj/item/paper, +/obj/item/tool/pen/red, +/obj/item/tool/stamp/rd, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/administration) +"aVK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/south) +"aVL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"aVM" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"aVO" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Armory"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"aVP" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"aVQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/southeast/dataoffice) +"aVT" = ( +/obj/item/folder/yellow, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"aVU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"aVV" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/arrivals) +"aVW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"aVX" = ( +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"aVY" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"aVZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/south) +"aWa" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security) +"aWb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"aWc" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"aWd" = ( +/turf/open/floor/corsat/arrow_north, +/area/corsat/sigma/cargo) +"aWf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"aWh" = ( +/obj/structure/largecrate/cow, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"aWi" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"aWj" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/platform{ + dir = 4; + layer = 2.8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"aWk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/security_empty{ + name = "Warden's Locker" + }, +/obj/item/clothing/head/beret/sec/warden, +/obj/item/clothing/mask/fakemoustache, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/security) +"aWl" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/crap_item, +/obj/structure/platform{ + dir = 8; + layer = 2.8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"aWm" = ( +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"aWn" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/sigma/south/complex) +"aWo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/airlocknorth/id) +"aWp" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/hangar/office) +"aWq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/hallways) +"aWr" = ( +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"aWs" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/south) +"aWt" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/southeast) +"aWu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/cargo) +"aWv" = ( +/obj/structure/machinery/conveyor_switch, +/turf/open/floor/corsat/browncorner, +/area/corsat/gamma/cargo/disposal) +"aWw" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast) +"aWx" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/hallways) +"aWy" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purple, +/area/corsat/omega/hallways) +"aWz" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/south/id) +"aWA" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"aWB" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"aWC" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"aWD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"aWF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/southeast/datalab) +"aWG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/southeast/datalab) +"aWH" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purple, +/area/corsat/sigma/south) +"aWI" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/southeast/datalab) +"aWK" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"aWM" = ( +/obj/item/tool/stamp/hop, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"aWN" = ( +/obj/item/ashtray/bronze, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"aWO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/south/security) +"aWP" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast/datalab) +"aWQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/airlocknorth/id) +"aWR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/containment) +"aWS" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/hallways) +"aWT" = ( +/obj/structure/machinery/faxmachine{ + density = 0; + req_one_access_txt = "106" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"aWW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"aWY" = ( +/obj/structure/surface/rack, +/obj/item/device/toner, +/obj/item/device/toner, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/residential/maint) +"aWZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/datalab) +"aXa" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"aXb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/datalab) +"aXc" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"aXd" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"aXe" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/security) +"aXg" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"aXh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/southeast/datalab) +"aXi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/canteen) +"aXj" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"aXk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"aXl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"aXm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + network = list("gamma") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/cargo) +"aXn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/omega, +/area/corsat/omega/airlocknorth) +"aXo" = ( +/obj/structure/machinery/computer/telecomms/server{ + req_one_access_txt = "19;106;102" + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"aXp" = ( +/obj/structure/showcase{ + icon_state = "broadcaster_send" + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"aXq" = ( +/obj/structure/showcase{ + icon_state = "relay"; + name = "Telecommunication Relay" + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"aXr" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Telecommunications"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/telecomm) +"aXs" = ( +/obj/structure/machinery/door_control{ + id = "OmegaAccessC"; + name = "Security Shutters"; + pixel_y = 5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "OmegaWarden"; + name = "Privacy Shutters"; + pixel_y = -3; + use_power = 0 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"aXt" = ( +/obj/structure/machinery/recycler, +/turf/open/floor/corsat/brown/southeast, +/area/corsat/gamma/cargo/disposal) +"aXu" = ( +/obj/item/folder/black_random, +/obj/item/clothing/mask/cigarette/cigar/havana, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/security) +"aXv" = ( +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter/random, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"aXw" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/sigma/southeast/datalab) +"aXx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"aXy" = ( +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"aXz" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/sigma/southeast/datalab) +"aXB" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"aXC" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"aXD" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/airlocknorth) +"aXE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/airlocknorth) +"aXF" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"aXG" = ( +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = -30 + }, +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bottle/random, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"aXH" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"aXJ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/id) +"aXM" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/hangar/monorail) +"aXN" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"aXO" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Hazardous Materials Lab"; + req_one_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"aXP" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/hangar/monorail) +"aXQ" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/hangar/monorail) +"aXR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/theta, +/area/corsat/theta/biodome/complex) +"aXS" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"aXT" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"aXU" = ( +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"aXV" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/security) +"aXW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/shuttle/escapepod/floor1, +/area/corsat/theta/biodome/complex) +"aXX" = ( +/obj/item/toy/deck, +/obj/structure/machinery/light, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/white, +/area/corsat/sigma/dorms) +"aXY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"aXZ" = ( +/obj/item/folder/black_random, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"aYa" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"aYb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/atmos) +"aYc" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/bot/cleanbot, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydrowest) +"aYd" = ( +/obj/structure/machinery/shower, +/obj/structure/machinery/door/window/southleft{ + opacity = 1 + }, +/obj/item/tool/soap, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"aYe" = ( +/obj/structure/machinery/shower, +/obj/structure/machinery/door/window/southleft{ + opacity = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"aYf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) +"aYg" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/hydrowest) +"aYh" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"aYi" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"aYj" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = -32 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"aYk" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"aYl" = ( +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red, +/area/corsat/sigma/south/security) +"aYn" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/theta/biodome/hydroeast) +"aYp" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"aYq" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Waste Tank Control" + }, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering/atmos) +"aYr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"aYs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"aYt" = ( +/obj/structure/machinery/light, +/obj/item/clothing/mask/gas, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"aYu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"aYv" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/hangar/monorail/control) +"aYw" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/corsat/theta/biodome/complex) +"aYy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"aYz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/wardrobe/virology_white, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"aYA" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bottle/random, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"aYB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar) +"aYC" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/hangar/monorail/control) +"aYD" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"aYE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"aYF" = ( +/obj/effect/decal/mecha_wreckage/ripley/firefighter, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"aYG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"aYH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"aYI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar) +"aYJ" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"aYK" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"aYL" = ( +/turf/open/floor/corsat/greenwhitecorner/east, +/area/corsat/gamma/medbay/chemistry) +"aYM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"aYN" = ( +/obj/structure/machinery/pipedispenser, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"aYO" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"aYP" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"aYQ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"aYR" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/theta/biodome) +"aYS" = ( +/obj/structure/machinery/processor, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"aYT" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"aYV" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"aYW" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/airlock/south) +"aYX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"aYY" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/researcher) +"aYZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"aZa" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/plating, +/area/corsat/omega/checkpoint) +"aZb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar/security) +"aZc" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaAccessC"; + name = "Security Shutters"; + pixel_y = 5; + use_power = 0 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"aZd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) +"aZe" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/rnr/library) +"aZf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/office) +"aZg" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/office) +"aZh" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"aZi" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) +"aZj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"aZk" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/morgue) +"aZl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"aZm" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"aZn" = ( +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"aZo" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"aZp" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"aZq" = ( +/obj/structure/bed/chair/wood/normal, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aZr" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/deck, +/obj/item/spacecash/c10, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aZs" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"aZt" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"aZu" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/security) +"aZv" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"aZw" = ( +/obj/structure/bed/chair/wood/normal, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aZx" = ( +/obj/structure/bed/chair/wood/normal, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aZy" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/bronze, +/obj/item/trash/cigbutt/cigarbutt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aZz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"aZA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"aZB" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aZC" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "delta_gamma"; + name = "Gamma Emergency Access"; + pixel_x = -5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "delta_gamma2"; + name = "Checkpoint Gamma"; + pixel_x = 5; + use_power = 0 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"aZD" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "SigmaSouthS"; + name = "Sigma South Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/south) +"aZE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"aZF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"aZG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"aZH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast/generator) +"aZI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"aZJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"aZK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"aZL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/sigma/south/complex) +"aZM" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"aZN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/sigma/south/complex) +"aZQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/research/containment/entrance/west, +/area/corsat/inaccessible) +"aZR" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/corsat/inaccessible) +"aZS" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datamaint) +"aZT" = ( +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"aZV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"aZW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"aZX" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"aZY" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"aZZ" = ( +/obj/structure/surface/table, +/obj/item/folder/black, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"baa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/control) +"bab" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"bac" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"bad" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"bae" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/blue/west, +/area/corsat/omega/control) +"baf" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"bag" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/engineering) +"bah" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/control) +"bai" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "OmegaHangarN"; + name = "Landing Bay Omega" + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) +"baj" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "OmegaHangarNE"; + name = "Landing Bay Omega" + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) +"bak" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"bal" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"bam" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("omega") + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"ban" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"bao" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Omega Dome Control" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/blue, +/area/corsat/omega/control) +"bap" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ + id = "OmegaHangarW"; + name = "Landing Bay Omega" + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) +"baq" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ + id = "OmegaHangarE"; + name = "Landing Bay Omega" + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) +"bar" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Hangar Security"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"bas" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"bat" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/airlock/control) +"bau" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Hangar Office"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"bav" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/control) +"baw" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"bax" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/omega, +/area/corsat/omega/control) +"bay" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Omega Dome Control" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"baz" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"baA" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/checkpoint) +"baB" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/checkpoint) +"baC" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/checkpoint) +"baD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"baE" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("omega") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/checkpoint) +"baF" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"baG" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/checkpoint) +"baH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaAccessC"; + name = "Security Shutters" + }, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"baI" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ + id = "delta_gamma"; + name = "Gamma Emergency Access"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"baJ" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/hangar/checkpoint) +"baK" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"baL" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/omega, +/area/corsat/omega/control) +"baM" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/control) +"baN" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/omega/control) +"baO" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaAccessC"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"baR" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "delta_omega"; + name = "Checkpoint Omega"; + pixel_x = -5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "delta_theta"; + name = "Theta Emergency Access"; + pixel_x = 5; + use_power = 0 + }, +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"baT" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/hallways) +"baU" = ( +/obj/structure/window/framed/corsat/hull, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/omega/airlocknorth) +"baX" = ( +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("omega") + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"baY" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Robotics"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"baZ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering"; + req_one_access_txt = "102" + }, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"bba" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "OmegaCSC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/omega/control) +"bbb" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red, +/area/corsat/omega/control) +"bbc" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "OmegaCSC"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/control) +"bbd" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "Sigma Dome Control"; + req_one_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) +"bbe" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Hall Maintainence"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/north) +"bbf" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/checkpoint) +"bbg" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"bbh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Theta Dome Control" + }, +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"bbi" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Airlock Control"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"bbj" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Theta Dome Control"; + req_one_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) +"bbk" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"bbl" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"bbm" = ( +/turf/open/floor/corsat/theta, +/area/corsat/omega/checkpoint) +"bbn" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/checkpoint) +"bbo" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile{ + id = "ThetaNorthS"; + name = "Theta North Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/control) +"bbp" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"bbr" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"bbs" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "ThetaWestE"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "ThetaWestW"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/west) +"bbt" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "ThetaEastW"; + name = "Theta East Airlock" + }, +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ + id = "map_lockdown"; + name = "Theta Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/east) +"bbu" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "ThetaEastE"; + name = "Theta East Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/east) +"bbv" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"bbx" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Hangar Security"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"bby" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"bbz" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/hangar/monorail/control) +"bbA" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/hangar/monorail/control) +"bbB" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Viro"; + name = "Virology Lockdown" + }, +/turf/open/floor/plating, +/area/corsat/gamma/biodome/virology) +"bbC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Research Complex Gamma"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"bbD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"bbE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"bbF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "OmegaAccessC"; + name = "Security Shutters"; + pixel_y = 5; + use_power = 0 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/checkpoint) +"bbG" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Research Desk" + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/complex) +"bbH" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"bbI" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/biodome/complex) +"bbJ" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "GammaLab"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/corsat/gamma/biodome/complex) +"bbK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"bbL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Research Complex Gamma" + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/biodome/complex) +"bbM" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Toxins"; + name = "Toxins Lockdown" + }, +/turf/open/floor/plating, +/area/corsat/gamma/biodome/toxins) +"bbN" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"bbO" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/checkpoint) +"bbP" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/checkpoint) +"bbQ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "GammaLab"; + name = "Privacy Shutters" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Director's Room"; + req_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/biodome/complex) +"bbR" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Toxins"; + name = "Toxins Lockdown" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"bbS" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"bbT" = ( +/obj/structure/machinery/door_control{ + id = "Toxins"; + name = "Lab Lockdown"; + pixel_y = 24; + use_power = 0 + }, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/biodome/toxins) +"bbU" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering) +"bbV" = ( +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) +"bbW" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/containment) +"bbX" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"bbZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sink{ + pixel_y = 25 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"bca" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Research Complex"; + req_one_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"bcb" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydrowest) +"bcc" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Toxins"; + name = "Toxins Lockdown" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "Toxins Lab"; + req_one_access_txt = "103" + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"bcd" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) +"bce" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Reception Desk"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"bcf" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Viro"; + name = "Virology Lockdown" + }, +/turf/open/floor/plating, +/area/corsat/gamma/biodome/virology) +"bcg" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Toxins"; + name = "Toxins Lockdown" + }, +/turf/open/floor/plating, +/area/corsat/gamma/biodome/toxins) +"bci" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "GammaControl"; + name = "Observation Shutters"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/gamma/airlock/control) +"bcj" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaControl"; + name = "Observation Shutters"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/gamma/airlock/control) +"bck" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "OmegaControl"; + name = "Observation Shutters"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/omega/control) +"bcl" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaControl"; + name = "Observation Shutters"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/omega/control) +"bcm" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaControl"; + name = "Observation Shutters"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/control) +"bcn" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaControl"; + name = "Observation Shutters"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/control) +"bco" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaControl"; + name = "Observation Shutters"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/control) +"bcp" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "ThetaControl"; + name = "Observation Shutters"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/theta/airlock/control) +"bcq" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "ThetaControl"; + name = "Observation Shutters"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/theta/airlock/control) +"bcr" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "ThetaControl"; + name = "Observation Shutters"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/theta/airlock/control) +"bcs" = ( +/obj/structure/machinery/door_control{ + id = "GammaSecC"; + name = "Security Shutters"; + pixel_x = -24; + use_power = 0 + }, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/security) +"bct" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"bcu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"bcv" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Hangar Security"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"bcw" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/checkpoint) +"bcx" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 1 + }, +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"bcy" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaHCargoC"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/id) +"bcz" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Gamma Dome Control"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"bcA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Gamma Dome Control" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"bcB" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Gamma Dome Control"; + req_one_access_txt = "102" + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"bcC" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Research Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Research Desk" + }, +/obj/structure/machinery/bot/medbot, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"bcD" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, +/area/corsat/theta/biodome) +"bcE" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"bcF" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"bcG" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/corsat/theta/biodome) +"bcH" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"bcI" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"bcJ" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"bcK" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"bcL" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/corsat/theta/biodome) +"bcM" = ( +/obj/structure/fence, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"bcN" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bcO" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 32 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"bcP" = ( +/obj/structure/sign/safety/storage, +/turf/closed/wall/biodome, +/area/corsat/gamma/cargo) +"bcQ" = ( +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/structure/closet/crate/freezer, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"bcR" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/coast/beachcorner/north_west, +/area/corsat/theta/biodome) +"bcS" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"bcT" = ( +/turf/open/gm/coast/beachcorner2/south_west, +/area/corsat/theta/biodome) +"bcU" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"bcV" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/corsat/theta/biodome) +"bcW" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"bcX" = ( +/obj/structure/machinery/colony_floodlight{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/corsat/theta/biodome) +"bcY" = ( +/obj/structure/machinery/colony_floodlight{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"bcZ" = ( +/obj/structure/machinery/colony_floodlight{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"bda" = ( +/obj/structure/machinery/colony_floodlight{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"bdb" = ( +/obj/structure/machinery/colony_floodlight{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"bdc" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome/gunrange) +"bdd" = ( +/turf/open/mars_cave/mars_cave_19, +/area/corsat/sigma/biodome/gunrange) +"bde" = ( +/turf/open/mars/mars_dirt_13, +/area/corsat/sigma/biodome) +"bdf" = ( +/turf/open/mars/mars_dirt_10, +/area/corsat/sigma/biodome) +"bdg" = ( +/turf/open/mars_cave/mars_cave_17, +/area/corsat/sigma/biodome/gunrange) +"bdh" = ( +/obj/structure/target/syndicate, +/turf/open/mars_cave/mars_cave_17, +/area/corsat/sigma/biodome/gunrange) +"bdi" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_17, +/area/corsat/sigma/biodome/gunrange) +"bdj" = ( +/obj/structure/target, +/obj/item/clothing/suit/storage/militia, +/turf/open/mars_cave/mars_cave_17, +/area/corsat/sigma/biodome/gunrange) +"bdk" = ( +/turf/open/mars_cave/mars_cave_20, +/area/corsat/sigma/biodome/gunrange) +"bdl" = ( +/turf/open/mars_cave/mars_cave_16, +/area/corsat/sigma/biodome/gunrange) +"bdm" = ( +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/gunrange) +"bdn" = ( +/turf/open/mars/mars_dirt_14, +/area/corsat/sigma/biodome) +"bdo" = ( +/turf/open/mars/mars_dirt_11, +/area/corsat/sigma/biodome) +"bdp" = ( +/turf/open/mars_cave/mars_cave_18, +/area/corsat/sigma/biodome/gunrange) +"bdq" = ( +/turf/open/mars/mars_dirt_12, +/area/corsat/sigma/biodome) +"bdr" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/gunrange) +"bds" = ( +/obj/structure/target, +/obj/item/clothing/suit/storage/militia, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/gunrange) +"bdt" = ( +/turf/open/mars_cave/mars_cave_13, +/area/corsat/sigma/biodome/gunrange) +"bdu" = ( +/obj/structure/target/syndicate, +/turf/open/mars_cave/mars_cave_16, +/area/corsat/sigma/biodome/gunrange) +"bdv" = ( +/turf/open/mars_cave/mars_cave_22, +/area/corsat/sigma/biodome/gunrange) +"bdw" = ( +/turf/open/mars_cave/mars_cave_11, +/area/corsat/sigma/biodome/gunrange) +"bdx" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, +/area/corsat/theta/biodome) +"bdy" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/corsat/theta/biodome) +"bdz" = ( +/turf/open/gm/coast/beachcorner/north_west, +/area/corsat/theta/biodome) +"bdA" = ( +/turf/open/gm/coast/north, +/area/corsat/theta/biodome) +"bdB" = ( +/turf/open/gm/coast/beachcorner/north_east, +/area/corsat/theta/biodome) +"bdC" = ( +/turf/open/gm/coast/beachcorner2/north_west, +/area/corsat/theta/biodome) +"bdD" = ( +/turf/open/gm/river, +/area/corsat/theta/biodome) +"bdE" = ( +/turf/open/gm/coast/beachcorner2/north_east, +/area/corsat/theta/biodome) +"bdF" = ( +/turf/open/gm/coast/west, +/area/corsat/theta/biodome) +"bdG" = ( +/turf/open/gm/coast/east, +/area/corsat/theta/biodome) +"bdI" = ( +/turf/open/gm/coast/beachcorner/south_east, +/area/corsat/theta/biodome) +"bdJ" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/corsat/theta/biodome) +"bdK" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"bdL" = ( +/turf/open/gm/coast/south, +/area/corsat/theta/biodome) +"bdM" = ( +/turf/open/gm/coast/beachcorner/south_west, +/area/corsat/theta/biodome) +"bdO" = ( +/turf/open/gm/coast/beachcorner2/south_east, +/area/corsat/theta/biodome) +"bdP" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bdQ" = ( +/turf/closed/gm/dense, +/area/corsat/theta/biodome) +"bdR" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bdS" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bdT" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, +/area/corsat/theta/biodome) +"bdU" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"bdV" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"bdW" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"bdX" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"bdY" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/corsat/theta/biodome) +"bdZ" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bea" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"beb" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"bec" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/corsat/theta/biodome) +"bed" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"bee" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"bef" = ( +/turf/open/mars_cave/mars_cave_4, +/area/corsat/sigma/biodome/gunrange) +"beg" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"beh" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bei" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bej" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Research Complex Sigma"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"bek" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ + id = "delta_omega"; + name = "Omega Checkpoint"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"bel" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"bem" = ( +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"ben" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/corsat/theta/biodome) +"beo" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bep" = ( +/obj/structure/flora/jungle/planttop1, +/turf/closed/gm/dense, +/area/corsat/theta/biodome) +"beq" = ( +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome/gunrange) +"ber" = ( +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"bes" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"bet" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ + id = "delta_theta"; + name = "Theta Emergency Access"; + use_power = 0 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"beu" = ( +/obj/structure/target/syndicate, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/gunrange) +"bev" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, +/area/corsat/theta/biodome) +"bew" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"bex" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/coast/north, +/area/corsat/theta/biodome) +"bey" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river, +/area/corsat/theta/biodome) +"bez" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/river, +/area/corsat/theta/biodome) +"beA" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/gm/river, +/area/corsat/theta/biodome) +"beB" = ( +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/river, +/area/corsat/theta/biodome) +"beD" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"beE" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"beF" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"beG" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/corsat/theta/biodome) +"beH" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"beI" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"beJ" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/corsat/theta/biodome) +"beK" = ( +/turf/open/mars_cave/mars_cave_12, +/area/corsat/sigma/biodome/gunrange) +"beL" = ( +/turf/open/mars_cave/mars_cave_8, +/area/corsat/sigma/biodome/gunrange) +"beM" = ( +/turf/open/mars_cave/mars_cave_23, +/area/corsat/sigma/biodome/gunrange) +"beN" = ( +/turf/open/mars_cave/mars_cave_7, +/area/corsat/sigma/biodome/gunrange) +"beO" = ( +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"beP" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 6; + icon_state = "full_corners" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"beQ" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"beR" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/corsat/theta/biodome) +"beS" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"beT" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"beU" = ( +/obj/structure/target, +/obj/item/clothing/suit/storage/militia, +/turf/open/mars_cave/mars_cave_13, +/area/corsat/sigma/biodome/gunrange) +"beV" = ( +/turf/open/mars_cave/mars_cave_9, +/area/corsat/sigma/biodome/gunrange) +"beW" = ( +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome/gunrange) +"beX" = ( +/turf/open/auto_turf/snow/layer1, +/area/corsat/gamma/biodome) +"beY" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/corsat/theta/biodome) +"beZ" = ( +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfa" = ( +/turf/closed/ice/end, +/area/corsat/gamma/biodome) +"bfb" = ( +/turf/closed/ice/end{ + dir = 8 + }, +/area/corsat/gamma/biodome) +"bfc" = ( +/turf/open/ice, +/area/corsat/gamma/biodome) +"bfd" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 8; + icon_state = "single_ends" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfe" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 4; + icon_state = "single_ends" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bff" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 9; + icon_state = "full_corners" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfg" = ( +/obj/structure/ice/thin/single, +/turf/open/ice, +/area/corsat/gamma/biodome) +"bfh" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 10; + icon_state = "full_corners" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfi" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 5; + icon_state = "full_corners" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfj" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 6; + icon_state = "single_ends" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfk" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "single_ends" + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"bfl" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + icon_state = "north_wall" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfm" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "south_wall" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfn" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + icon_state = "single" + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"bfo" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1 + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfp" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "full_corners" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfq" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 4 + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfr" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 6; + icon_state = "east_wall" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfs" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "full_corners" + }, +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 8 + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bft" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 6 + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfu" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 6; + icon_state = "single" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfv" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + icon_state = "west_wall" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfw" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome/gunrange) +"bfx" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + icon_state = "east_wall" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfy" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 6; + icon_state = "south_wall" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfz" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 8 + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfA" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 4 + }, +/obj/structure/ice/ice_rock/cornerOverlay, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfB" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "single_part" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfC" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 8; + icon_state = "single_part" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfD" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 10; + icon_state = "single_part" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfE" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 4; + icon_state = "single_tshape" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfF" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 6; + icon_state = "single_part" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfG" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 9; + icon_state = "single_part" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfH" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 4 + }, +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 8 + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfI" = ( +/obj/structure/ice/ice_rock/cornerOverlay, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfJ" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 8 + }, +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 4 + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfK" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "west_wall" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfL" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 5; + icon_state = "single_part" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfM" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "full_corners" + }, +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1 + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfN" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "full_corners" + }, +/obj/structure/ice/ice_rock/cornerOverlay, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfO" = ( +/turf/open/mars_cave/mars_cave_14, +/area/corsat/sigma/biodome/gunrange) +"bfP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"bfQ" = ( +/turf/closed/ice, +/area/corsat/gamma/biodome) +"bfR" = ( +/turf/closed/ice/end{ + dir = 4 + }, +/area/corsat/gamma/biodome) +"bfS" = ( +/turf/closed/ice/end{ + dir = 1 + }, +/area/corsat/gamma/biodome) +"bfT" = ( +/turf/closed/ice/corner, +/area/corsat/gamma/biodome) +"bfU" = ( +/turf/closed/ice/corner{ + dir = 1 + }, +/area/corsat/gamma/biodome) +"bfV" = ( +/turf/closed/ice/straight{ + dir = 4 + }, +/area/corsat/gamma/biodome) +"bfW" = ( +/turf/closed/ice/straight, +/area/corsat/gamma/biodome) +"bfX" = ( +/turf/closed/ice/corner{ + dir = 4 + }, +/area/corsat/gamma/biodome) +"bfY" = ( +/turf/closed/ice/corner{ + dir = 8 + }, +/area/corsat/gamma/biodome) +"bfZ" = ( +/obj/structure/ice/thin/end{ + dir = 1 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"bga" = ( +/obj/structure/ice/thin/corner, +/turf/open/ice, +/area/corsat/gamma/biodome) +"bgb" = ( +/obj/structure/ice/thin/corner{ + dir = 1 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"bgc" = ( +/obj/structure/ice/thin/end{ + dir = 4 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"bgd" = ( +/obj/structure/ice/thin/straight, +/turf/open/ice, +/area/corsat/gamma/biodome) +"bge" = ( +/obj/structure/ice/thin/end, +/turf/open/ice, +/area/corsat/gamma/biodome) +"bgf" = ( +/obj/structure/ice/thin/end{ + dir = 8 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"bgg" = ( +/obj/structure/ice/thin/straight{ + dir = 4 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"bgh" = ( +/obj/structure/ice/thin/corner{ + dir = 4 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"bgi" = ( +/obj/structure/ice/thin/corner{ + dir = 8 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"bgj" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/corsat/sigma/biodome/gunrange) +"bgk" = ( +/turf/closed/ice_rock/singleEnd, +/area/corsat/gamma/biodome) +"bgl" = ( +/turf/open/floor/asteroidwarning/north, +/area/corsat/sigma/biodome/gunrange) +"bgm" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"bgn" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"bgo" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/corsat/sigma/biodome/gunrange) +"bgp" = ( +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome/gunrange) +"bgq" = ( +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome/gunrange) +"bgr" = ( +/turf/closed/wall, +/area/corsat/sigma/biodome/gunrange) +"bgs" = ( +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"bgt" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"bgu" = ( +/turf/open/mars/mars_dirt_3, +/area/corsat/sigma/biodome) +"bgv" = ( +/turf/open/mars/mars_dirt_9, +/area/corsat/sigma/biodome) +"bgw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Research Complex Gamma"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"bgx" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/obj/effect/decal/cleanable/cobweb{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"bgy" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/high_explosive, +/obj/item/explosive/grenade/high_explosive, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"bgz" = ( +/obj/structure/machinery/m56d_hmg{ + dir = 1 + }, +/obj/structure/machinery/door/window/northright{ + name = "Firing Lane" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome/gunrange) +"bgB" = ( +/turf/closed/wall, +/area/corsat/sigma/biodome/scrapyard) +"bgC" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome/scrapyard) +"bgD" = ( +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome/scrapyard) +"bgE" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/scrapyard) +"bgF" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome/scrapyard) +"bgG" = ( +/turf/open/mars_cave/mars_cave_19, +/area/corsat/sigma/biodome/scrapyard) +"bgH" = ( +/turf/open/mars_cave/mars_cave_17, +/area/corsat/sigma/biodome/scrapyard) +"bgI" = ( +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"bgJ" = ( +/turf/open/mars_cave/mars_cave_20, +/area/corsat/sigma/biodome/scrapyard) +"bgK" = ( +/turf/open/mars_cave/mars_cave_16, +/area/corsat/sigma/biodome/scrapyard) +"bgL" = ( +/turf/open/mars_cave/mars_cave_18, +/area/corsat/sigma/biodome/scrapyard) +"bgM" = ( +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome/scrapyard) +"bgN" = ( +/turf/open/mars_cave/mars_cave_13, +/area/corsat/sigma/biodome/scrapyard) +"bgO" = ( +/turf/open/mars_cave/mars_cave_22, +/area/corsat/sigma/biodome/scrapyard) +"bgP" = ( +/turf/open/mars_cave/mars_cave_11, +/area/corsat/sigma/biodome/scrapyard) +"bgQ" = ( +/turf/open/mars_cave/mars_cave_4, +/area/corsat/sigma/biodome/scrapyard) +"bgR" = ( +/turf/open/mars_cave/mars_cave_12, +/area/corsat/sigma/biodome/scrapyard) +"bgS" = ( +/turf/open/mars_cave/mars_cave_23, +/area/corsat/sigma/biodome/scrapyard) +"bgT" = ( +/turf/open/mars_cave/mars_cave_8, +/area/corsat/sigma/biodome/scrapyard) +"bgU" = ( +/turf/open/mars_cave/mars_cave_7, +/area/corsat/sigma/biodome/scrapyard) +"bgV" = ( +/turf/open/mars/mars_dirt_8, +/area/corsat/sigma/biodome) +"bgW" = ( +/turf/open/mars_cave/mars_cave_9, +/area/corsat/sigma/biodome/scrapyard) +"bgX" = ( +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome/scrapyard) +"bgY" = ( +/turf/open/mars_cave/mars_cave_14, +/area/corsat/sigma/biodome/scrapyard) +"bgZ" = ( +/turf/closed/wall/r_wall, +/area/corsat/sigma/biodome/testgrounds) +"bha" = ( +/obj/structure/fence, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"bhb" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"bhc" = ( +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"bhd" = ( +/obj/structure/largecrate/supply/ammo/m39/half, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"bhe" = ( +/turf/open/mars_cave/mars_cave_11, +/area/corsat/sigma/biodome) +"bhf" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/door/window/eastright{ + name = "Weapon Rack" + }, +/obj/structure/window/reinforced/toughened{ + dir = 1 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"bhg" = ( +/turf/open/floor/plating, +/area/corsat/sigma/biodome/testgrounds) +"bhh" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/corsat/sigma/biodome/testgrounds) +"bhi" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential) +"bhj" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/door/window/westright{ + name = "Weapon Rack" + }, +/obj/structure/window/reinforced/toughened{ + dir = 1 + }, +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"bhk" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"bhl" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/corsat/sigma/biodome/testgrounds) +"bhm" = ( +/obj/structure/largecrate/supply/ammo/pistol/half, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"bhn" = ( +/turf/closed/mineral{ + color = "#c48664" + }, +/area/corsat/sigma/biodome) +"bho" = ( +/turf/open/mars_cave/mars_cave_23, +/area/corsat/sigma/biodome) +"bhp" = ( +/turf/open/mars_cave/mars_cave_22, +/area/corsat/sigma/biodome) +"bhq" = ( +/turf/open/mars_cave/mars_cave_12, +/area/corsat/sigma/biodome) +"bhr" = ( +/turf/open/mars_cave/mars_cave_18, +/area/corsat/sigma/biodome) +"bhs" = ( +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome) +"bht" = ( +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome) +"bhu" = ( +/turf/open/mars_cave/mars_cave_13, +/area/corsat/sigma/biodome) +"bhv" = ( +/turf/open/mars_cave/mars_cave_9, +/area/corsat/sigma/biodome) +"bhw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_14, +/area/corsat/sigma/biodome) +"bhx" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"bhy" = ( +/obj/structure/machinery/botany/editor, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"bhz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"bhA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security/cells) +"bhB" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"bhC" = ( +/obj/structure/machinery/computer/shuttle_control/monorail{ + dir = 8 + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/monorail/control) +"bhD" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"bhE" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"bhF" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"bhI" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"bhJ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/security/cells) +"bhK" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo/lobby) +"bhL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Mixed Air Control" + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"bhM" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/atmos) +"bhN" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering) +"bhO" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"bhP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"bhQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"bhR" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Atmospherics"; + req_one_access_txt = "102" + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"bhS" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hallways) +"bhT" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"bhU" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering/atmos) +"bhV" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"bhW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/window/northright{ + name = "Firing Lane" + }, +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome/gunrange) +"bhX" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/northwest, +/area/corsat/theta/airlock/control) +"bhY" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"bhZ" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/atmos) +"bia" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"bib" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"bic" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/brown/southwest, +/area/corsat/gamma/cargo/lobby) +"bid" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"bie" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering) +"bif" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering/atmos) +"big" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"bih" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"bii" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"bij" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"bik" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering/atmos) +"bil" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"bim" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering/atmos) +"bin" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Nitrogen Control Console" + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"bio" = ( +/obj/structure/dispenser/phoron, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/atmos) +"bip" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/atmos) +"biq" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"bir" = ( +/obj/structure/bed/stool, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/chemistry) +"bis" = ( +/obj/structure/powerloader_wreckage, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"biu" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"biv" = ( +/obj/structure/closet/crate/internals, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"biw" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/purple, +/area/corsat/omega/hallways) +"bix" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"biy" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/dice, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"biz" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"biA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"biB" = ( +/obj/structure/largecrate/supply/ammo/m41a/half, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"biC" = ( +/obj/structure/pipes/trinary/mixer{ + dir = 4; + name = "Gas mixer N2/O2" + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"biE" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"biF" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"biG" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"biH" = ( +/obj/structure/machinery/optable, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/surgery) +"biI" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/surgery) +"biJ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay/morgue) +"biK" = ( +/obj/structure/largecrate/supply/medicine/blood, +/turf/open/floor/corsat/greenwhite/southwest, +/area/corsat/gamma/medbay) +"biL" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay) +"biM" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/chemistry) +"biO" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"biP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/science, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/toxins) +"biQ" = ( +/obj/structure/machinery/smartfridge/chemistry{ + req_access_txt = "100"; + req_one_access = null + }, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"biR" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/chem_dispenser/soda/beer{ + dir = 8; + pixel_x = 15 + }, +/obj/item/reagent_container/food/drinks/drinkingglass, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"biS" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/airlocknorth) +"biT" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"biU" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/mars_cave/mars_cave_7, +/area/corsat/sigma/biodome/scrapyard) +"biV" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/chem_dispenser/soda{ + dir = 8; + pixel_x = 15 + }, +/obj/item/reagent_container/food/drinks/shaker, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"biW" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/hallways) +"biX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"biY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"biZ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"bja" = ( +/obj/structure/machinery/message_server, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"bjb" = ( +/obj/structure/showcase{ + icon_state = "hub"; + name = "Telecommunication Hub" + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"bjc" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"bjd" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"bje" = ( +/obj/structure/machinery/botany/extractor, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"bjf" = ( +/obj/structure/machinery/r_n_d/bioprinter, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) +"bjg" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/theta/biodome/complex) +"bjh" = ( +/obj/structure/machinery/biogenerator, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) +"bji" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/smartfridge/seeds, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"bjj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"bjk" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/engineering/atmos) +"bjl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "OmegaA"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = 6; + use_power = 0 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"bjm" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"bjn" = ( +/obj/structure/surface/rack, +/obj/item/implanter/neurostim, +/obj/item/implanter/neurostim, +/obj/item/implanter/adrenalin, +/obj/item/implanter/adrenalin, +/obj/item/implanter/loyalty, +/obj/item/implanter/loyalty, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"bjp" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"bjq" = ( +/obj/structure/bed, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"bjr" = ( +/obj/item/broken_device, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"bjs" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"bjt" = ( +/obj/structure/machinery/mecha_part_fabricator, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"bju" = ( +/obj/item/cell/crap, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"bjv" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"bjw" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bjx" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hallways) +"bjy" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/trash/plate, +/obj/item/reagent_container/glass/rag{ + pixel_y = 10 + }, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"bjz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/microwave, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"bjA" = ( +/obj/item/reagent_container/food/snacks/meat/monkey, +/obj/item/reagent_container/food/snacks/meat/monkey, +/obj/item/reagent_container/food/snacks/meat/monkey, +/obj/item/reagent_container/food/snacks/meat/monkey, +/obj/item/reagent_container/food/snacks/meat/monkey, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/structure/closet/crate/freezer, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"bjB" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/gamma/administration) +"bjC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"bjD" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"bjE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"bjG" = ( +/obj/structure/closet/crate/medical, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"bjH" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"bjI" = ( +/obj/structure/pipes/standard/simple/visible, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"bjJ" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/red, +/area/corsat/omega/hallways) +"bjK" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"bjM" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/incendiary, +/obj/item/explosive/grenade/incendiary, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"bjN" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"bjO" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 1 + }, +/obj/structure/machinery/door/window/eastright{ + name = "Weapon Rack" + }, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"bjP" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 1 + }, +/obj/structure/machinery/door/window/westright{ + name = "Weapon Rack" + }, +/obj/item/weapon/gun/smg/mp5, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"bjQ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/containment) +"bjR" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bjU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "CORSAT Library" + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"bjV" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "CORSAT Library"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"bjW" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "SigmaCargo"; + name = "Sigma Cargo Bay"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/cargo) +"bjY" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Armory"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"bjZ" = ( +/obj/structure/machinery/door_control{ + id = "OmegaCargo"; + name = "Cargo Door"; + pixel_x = -24; + use_power = 0 + }, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"bka" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "OmegaCargo"; + name = "Omega Cargo Bay"; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/omega/cargo) +"bkb" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "OmegaCargo"; + name = "Omega Cargo Bay"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/cargo) +"bkc" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south/id) +"bkd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Research Complex Theta" + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) +"bke" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "RemoteGateO"; + name = "Outer Gate Shutters"; + pixel_x = 5; + pixel_y = 24; + use_power = 0 + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "RemoteGate"; + name = "Gate Shutters"; + pixel_x = -5; + pixel_y = 24; + use_power = 0 + }, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"bki" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "RemoteGate"; + name = "Gate Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/sigmaremote) +"bko" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Research Complex"; + req_one_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"bkp" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Research Complex"; + req_one_access_txt = "101" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"bkq" = ( +/obj/structure/surface/rack{ + name = "Acid Resistant Rack"; + unacidable = 1 + }, +/obj/item/weed_extract, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/omega/complex) +"bkr" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Implantation Chamber"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"bks" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/hangar/monorail/control) +"bku" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Hangar Office" + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"bkv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Flight Control" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"bkx" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/cargo) +"bky" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/monorail) +"bkA" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaHCargoN"; + name = "Gamma Cargo Checkpoint"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/cargo) +"bkB" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "GammaHCargoW"; + name = "Gamma Cargo Checkpoint"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/cargo) +"bkC" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaResC"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/checkpoint) +"bkD" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaIDSC"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/airlock/south/id) +"bkE" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "SigmaIDSC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/south/id) +"bkF" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "SigmaIDSC"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/south/id) +"bkJ" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaSecC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/sigma/south/security) +"bkK" = ( +/obj/structure/machinery/door_control{ + id = "SigmaSecC"; + name = "Security Shutters"; + pixel_x = -24; + use_power = 0 + }, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/south/security) +"bkL" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"bkM" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "GammaHOS"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/corsat/gamma/security) +"bkN" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Head of Security Office"; + req_access_txt = "101" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "GammaHOS"; + name = "Privacy Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"bkO" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "OmegaO"; + name = "Omega Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/biodome) +"bkP" = ( +/obj/structure/window/framed/corsat/cell/security, +/turf/open/floor/plating, +/area/corsat/gamma/security/cells) +"bkR" = ( +/obj/structure/surface/table/almayer, +/obj/item/form_printer, +/obj/item/tool/pen, +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/containment) +"bkS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/complex) +"bkT" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 + }, +/obj/item/organ/lungs, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"bkU" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 + }, +/obj/item/organ/heart, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"bkV" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/containment) +"bkW" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/stamp/ce, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"bkX" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"bkY" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Chief Engineer's Office"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"bkZ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"blb" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/engineering) +"blc" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"bld" = ( +/obj/structure/target/syndicate, +/obj/structure/target/syndicate, +/obj/structure/target/syndicate, +/obj/structure/target/syndicate, +/obj/structure/target/syndicate, +/obj/structure/closet/crate{ + desc = "A rectangular steel crate containing firing targets."; + name = "target crate" + }, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"blg" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/flashbang, +/obj/item/explosive/grenade/flashbang, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"blh" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/high_explosive/training, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"blj" = ( +/obj/structure/machinery/pipedispenser, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"blk" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/cargo) +"bll" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/assembly/igniter, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"blm" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/chemistry) +"bln" = ( +/obj/structure/machinery/door/airlock/dropship_hatch/monorail{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"blo" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/hangar/monorail) +"blp" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/hangar/monorail) +"blr" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hangar/monorail) +"bls" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/hangar/monorail) +"blt" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"bly" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"blz" = ( +/obj/structure/machinery/light, +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/hangar/monorail) +"blA" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"blB" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/hangar/arrivals) +"blC" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"blD" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar) +"blF" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"blG" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hangar) +"blH" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"blI" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hangar) +"blJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar) +"blK" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/hangar/arrivals) +"blL" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Office"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"blM" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/hangar/office) +"blN" = ( +/obj/structure/foamed_metal, +/turf/open/floor/corsat, +/area/corsat/gamma/hangar/cargo) +"blO" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/cargo) +"blP" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"blQ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/office) +"blS" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/hangar/monorail/control) +"blT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"blU" = ( +/obj/structure/monorail, +/turf/open/space, +/area/space) +"blW" = ( +/obj/structure/monorail{ + dir = 5 + }, +/turf/open/space, +/area/space) +"blX" = ( +/obj/structure/monorail{ + dir = 10 + }, +/turf/open/space, +/area/space) +"blY" = ( +/obj/structure/monorail{ + dir = 8 + }, +/turf/open/space, +/area/space) +"blZ" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/hangar/monorail/control) +"bma" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/hangar/monorail/control) +"bmb" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/monorail/control) +"bmc" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/sigma/hangar) +"bmd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/recharge_station, +/turf/open/floor/corsat/darkgreen/northwest, +/area/corsat/sigma/hangar) +"bme" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar) +"bmh" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"bmi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + id = "OmegaA"; + name = "Xenobiology"; + req_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"bmj" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/monorail) +"bmk" = ( +/obj/structure/machinery/door/airlock/dropship_hatch/monorail{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"bml" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"bmm" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/monorail/control) +"bmn" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/sigma/hangar/monorail) +"bmo" = ( +/turf/open/floor/corsat/darkgreen/northwest, +/area/corsat/sigma/hangar/monorail) +"bmp" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"bmq" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/monorail) +"bmr" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail) +"bms" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/monorail) +"bmu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/monorail/control) +"bmv" = ( +/obj/structure/monorail, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"bmw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"bmx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/sigma/hangar/monorail) +"bmz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/monorail) +"bmA" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/sigma/hangar/monorail) +"bmB" = ( +/obj/structure/monorail{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"bmC" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/monorail) +"bmD" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/monorail/control) +"bmF" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar/monorail) +"bmG" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar/monorail/control) +"bmH" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Flight Control" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"bmI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"bmJ" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Hangar Office" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"bmL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"bmM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/office) +"bmN" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"bmO" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/arrivals) +"bmS" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/arrivals) +"bmV" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Xenobiology"; + req_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"bmW" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile{ + id = "GammaCheckpointS"; + name = "Gamma Checkpoint"; + unacidable = 1 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/checkpoint) +"bmX" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/checkpoint) +"bmY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/checkpoint) +"bmZ" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/cargo) +"bna" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"bnb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/hangar/arrivals) +"bnd" = ( +/obj/structure/fence, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"bne" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/monorail/control) +"bnf" = ( +/obj/structure/sign/safety/fridge, +/turf/closed/wall/biodome, +/area/corsat/gamma/freezer) +"bni" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/residential/maint) +"bnj" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"bnk" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Hazardous Materials Storage"; + req_access_txt = "103"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"bnl" = ( +/obj/structure/sign/safety/high_voltage, +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/engineering/core) +"bnm" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/browncorner/north, +/area/corsat/gamma/cargo) +"bnn" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/hallwaysouth) +"bno" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/obj/effect/landmark/nightmare{ + insert_tag = "lockdown-gamma-north" + }, +/turf/open/auto_turf/snow/layer1, +/area/corsat/gamma/biodome) +"bnp" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/canteen) +"bnq" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"bnr" = ( +/obj/structure/sign/safety/galley, +/turf/closed/wall/biodome, +/area/corsat/gamma/canteen) +"bns" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"bnw" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar/monorail) +"bnx" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/canteen) +"bny" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/canteen) +"bnz" = ( +/obj/structure/sign/safety/biohazard, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/phoron/small_stack, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"bnA" = ( +/obj/structure/surface/rack{ + name = "Acid Resistant Rack"; + unacidable = 1 + }, +/obj/item/xenos_claw, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"bnB" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/virology) +"bnC" = ( +/obj/structure/sign/safety/biohazard, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"bnD" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/virology) +"bnE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/visible, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Oxygen Supply Console" + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"bnF" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"bnH" = ( +/obj/structure/sign/safety/biohazard, +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/biodome/virology) +"bnI" = ( +/obj/structure/sign/safety/biohazard, +/obj/structure/machinery/space_heater, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"bnJ" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer/white, +/area/corsat/gamma/medbay) +"bnK" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer/white, +/area/corsat/gamma/medbay/lobby) +"bnL" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar) +"bnM" = ( +/obj/structure/sign/safety/medical, +/turf/closed/wall/almayer/white, +/area/corsat/gamma/medbay) +"bnN" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"bnO" = ( +/obj/structure/sign/safety/medical, +/turf/closed/wall/almayer/white, +/area/corsat/gamma/medbay/lobby) +"bnP" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/biodome) +"bnQ" = ( +/obj/structure/sign/safety/chem_lab{ + pixel_y = -30 + }, +/turf/open/floor/corsat/greenwhitecorner, +/area/corsat/gamma/medbay) +"bnR" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/airlock/control) +"bnU" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar/security) +"bnV" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/id) +"bnW" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 32 + }, +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome) +"bnY" = ( +/obj/structure/safe, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"bnZ" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar/id) +"boc" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/north) +"boe" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/biodome) +"bof" = ( +/obj/structure/sign/safety/storage, +/turf/closed/wall/biodome, +/area/corsat/sigma/cargo) +"bog" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/brown/north, +/area/corsat/sigma/cargo) +"boh" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"boi" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"boj" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"bon" = ( +/obj/structure/fence, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/auto_turf/snow/layer2, +/area/corsat/gamma/biodome) +"boo" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome) +"bop" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = -32 + }, +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/control) +"boq" = ( +/obj/structure/sign/safety/storage, +/turf/closed/wall/biodome, +/area/corsat/omega/cargo) +"bor" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/theta/biodome) +"bou" = ( +/obj/structure/sign/safety/high_voltage, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/southeast/generator) +"bov" = ( +/obj/structure/sign/safety/storage{ + pixel_y = 32 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"bow" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/south/complex) +"box" = ( +/obj/structure/sign/safety/radio_rad, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/southeast/telecomm) +"boy" = ( +/obj/structure/sign/safety/terminal, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/southeast/telecomm) +"boz" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = -32 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"boA" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 32 + }, +/turf/open/floor/corsat/omega, +/area/corsat/omega/hallways) +"boB" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 32 + }, +/obj/effect/landmark/nightmare{ + insert_tag = "lockdown-theta-east" + }, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"boD" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security) +"boE" = ( +/obj/structure/sign/safety/biolab{ + pixel_y = 32 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydrowest) +"boF" = ( +/obj/structure/sign/safety/biolab{ + pixel_y = 32 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydroeast) +"boG" = ( +/obj/structure/sign/safety/biolab{ + pixel_y = -32 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydrowest) +"boH" = ( +/obj/structure/sign/safety/biolab{ + pixel_y = -32 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydroeast) +"boJ" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/hangar) +"boK" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) +"boL" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/browncorner/east, +/area/corsat/gamma/cargo) +"boM" = ( +/turf/open/floor/corsat/browncorner/west, +/area/corsat/gamma/cargo/lobby) +"boN" = ( +/obj/structure/surface/table/almayer, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/greenwhitecorner/north, +/area/corsat/gamma/medbay) +"boP" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo) +"boQ" = ( +/obj/vehicle/train/cargo/engine{ + dir = 2 + }, +/turf/open/floor/corsat/arrow_west, +/area/corsat/sigma/cargo) +"boR" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/cargo) +"boT" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/hangar/cargo) +"boU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/brown/northeast, +/area/corsat/gamma/cargo) +"boV" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/chips, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"boW" = ( +/obj/item/bananapeel, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"boX" = ( +/obj/structure/surface/rack, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"boY" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/condiment/sugar, +/obj/item/reagent_container/food/condiment/sugar, +/obj/item/reagent_container/food/condiment/sugar, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"bpa" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"bpb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/purplecorner/north, +/area/corsat/gamma/residential) +"bpd" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"bpe" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/east) +"bph" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/gm/river/desert/shallow/pool, +/area/corsat/gamma/residential/showers) +"bpi" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"bpj" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/chocolatebar, +/obj/item/reagent_container/food/snacks/chocolatebar, +/obj/item/reagent_container/food/snacks/chocolatebar, +/obj/item/reagent_container/food/snacks/chocolatebar, +/obj/item/reagent_container/food/snacks/chocolatebar, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"bpl" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"bpn" = ( +/obj/structure/surface/table/almayer, +/obj/item/light_bulb/tube/large, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"bpq" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, +/obj/item/tool/stamp/cmo, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"bpr" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/darkgreen/southeast, +/area/corsat/gamma/rnr) +"bps" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"bpt" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"bpv" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail/control) +"bpz" = ( +/obj/structure/machinery/botany/editor, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"bpA" = ( +/obj/item/tool/minihoe, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"bpB" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"bpC" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/chef_recipes, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"bpD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/knife, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"bpE" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/suit/chef/classic, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"bpF" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"bpG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"bpH" = ( +/obj/structure/machinery/meter, +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"bpK" = ( +/obj/structure/surface/table, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"bpL" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering/atmos) +"bpM" = ( +/obj/structure/surface/rack, +/obj/item/device/transfer_valve, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"bpN" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"bpO" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/gamma/canteen) +"bpP" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"bpR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"bpS" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/sigma/north) +"bpT" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/retractor, +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/corsat/greenwhitecorner/east, +/area/corsat/gamma/medbay/morgue) +"bpU" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"bpW" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"bpX" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"bqa" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"bqb" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"bqd" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/biodome/complex) +"bqe" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/complex) +"bqf" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"bqg" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay/chemistry) +"bqh" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"bqi" = ( +/obj/item/cell/super/empty, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"bqj" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/fire, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"bqk" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"bqm" = ( +/obj/structure/closet/secure_closet/medical2{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"bqn" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"bqo" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 4; + id_tag = "oxy_corsat_out" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bqp" = ( +/obj/structure/pipes/unary/outlet_injector{ + name = "Waste Air Injector" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bqq" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/administration) +"bqr" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "GammaLab"; + name = "Privacy Shutters" + }, +/turf/open/floor/wood, +/area/corsat/gamma/biodome/complex) +"bqs" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/hallwaysouth) +"bqw" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"bqx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"bqy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"bqz" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"bqA" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/gamma/administration) +"bqC" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"bqD" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/administration) +"bqE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"bqG" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 1 + }, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/theta/airlock/control) +"bqI" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west/id) +"bqJ" = ( +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) +"bqK" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"bqL" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"bqM" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"bqO" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/monorail) +"bqR" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/sigma/hangar/monorail) +"bqS" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/monorail) +"bqU" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"bqV" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/hangar/office) +"bqW" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"bqY" = ( +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/hangar/office) +"bqZ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering) +"brd" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/security/cells) +"brf" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential) +"brg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"brj" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"brm" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"brn" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"bro" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"brq" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"brr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"brs" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"brt" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"bru" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"brw" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"brx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bry" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"brz" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/checkpoint) +"brB" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet14_10/west, +/area/corsat/omega/offices) +"brD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"brE" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"brF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/barricade/handrail{ + layer = 3 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"brI" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"brN" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/security) +"brO" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"brP" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"brQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"brR" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"brT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"brU" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"brX" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"brY" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"brZ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"bsa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"bsb" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/gamma/administration) +"bsd" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/sigma/southeast/dataoffice) +"bse" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/security) +"bsf" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/security) +"bsg" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/security) +"bsi" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"bsl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("omega") + }, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/security) +"bsm" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"bsn" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"bso" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/checkpoint) +"bsp" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"bsq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"bsr" = ( +/obj/structure/surface/rack, +/obj/item/evidencebag, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/security) +"bss" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/security) +"bsx" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"bsy" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/scalpel/laser{ + pixel_y = 10 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"bsz" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"bsB" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"bsD" = ( +/obj/structure/machinery/computer/cameras{ + network = list("omega") + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/airlocknorth) +"bsE" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"bsG" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"bsI" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/chem_dispenser/soda{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"bsJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"bsK" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/omega/complex) +"bsL" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"bsM" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/south/offices) +"bsN" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/chem_dispenser/soda/beer{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"bsO" = ( +/obj/structure/machinery/botany{ + name = "hydroponics tray" + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"bsP" = ( +/obj/structure/machinery/botany{ + name = "hydroponics tray" + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"bsQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"bsR" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"bsS" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bsT" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/south/security) +"bsU" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"bsW" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/botany{ + name = "hydroponics tray" + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"bsX" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/theta/biodome/complex) +"bsY" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/botany{ + name = "hydroponics tray" + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"bsZ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"bta" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"btb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"btf" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"btg" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"bth" = ( +/obj/structure/machinery/lapvend, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"bti" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/theta/biodome/hydrowest) +"btj" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/hydroeast) +"btk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"btl" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/theta/biodome/complex) +"btn" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/botany{ + name = "hydroponics tray" + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"bto" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/botany{ + name = "hydroponics tray" + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"btq" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"bts" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/hallways) +"btt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/hemostat{ + name = "Acid Resistant Hemostat"; + unacidable = 1 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"btv" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/botanydisk, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/theta/biodome/complex) +"btw" = ( +/obj/structure/surface/rack, +/obj/item/cell/potato{ + charge = 1000; + maxcharge = 3000; + name = "overpowered potato" + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"btx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"btz" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"btB" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"btC" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"btD" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"btE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"btF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"btG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"btH" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"btI" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"btJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/gamma/hangar/flightcontrol) +"btK" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"btL" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"btM" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"btN" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/flightcontrol) +"btO" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"btQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/flightcontrol) +"btR" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/gamma/hangar/flightcontrol) +"btS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/office) +"btT" = ( +/obj/structure/sign/safety/biohazard, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/virology) +"btU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"btV" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/dataoffice) +"btW" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/dataoffice) +"btX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"btY" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"btZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bua" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/southeast/dataoffice) +"bub" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/southeast/dataoffice) +"buc" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"bud" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"bue" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bug" = ( +/obj/structure/surface/table/almayer, +/obj/item/phone, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/southeast/datalab) +"buh" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/datalab) +"bui" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/datalab) +"buj" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/datalab) +"bum" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"bun" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"buo" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"bup" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"buq" = ( +/obj/structure/bed/chair/wood/wings, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"bur" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"bus" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"but" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"buw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"bux" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"buy" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"buz" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) +"buA" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) +"buB" = ( +/obj/structure/sign/safety/distribution_pipes{ + desc = "A sign that denotes the proximity of a life support system." + }, +/turf/closed/wall/biodome, +/area/corsat/gamma/engineering/atmos) +"buC" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/tool/pen, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/omega/complex) +"buD" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"buE" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/obj/item/tool/stamp, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/lobby) +"buF" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering) +"buG" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"buI" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"buJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar) +"buK" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"buL" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/closet/wardrobe/virology_white, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"buM" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/sigma/hangar/office) +"buN" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/cargo) +"buO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/hallwaysouth) +"buP" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering) +"buQ" = ( +/obj/item/alien_embryo, +/obj/item/alien_embryo, +/obj/item/alien_embryo, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"buR" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"buS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"buT" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hallwaysouth) +"buU" = ( +/obj/structure/window/framed/corsat/hull, +/obj/structure/pipes/standard/simple/visible, +/turf/open/floor/plating, +/area/corsat/inaccessible) +"buV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/sigma/dorms) +"buW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/checkpoint) +"buX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/containment) +"buY" = ( +/obj/structure/prop/mech/drill, +/turf/open/floor/corsat, +/area/corsat/sigma/south/robotics) +"buZ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Robotics"; + req_one_access_txt = "102" + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/corsat/sigma/south/robotics) +"bvf" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering Head Office"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"bvh" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Electronics"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"bvi" = ( +/obj/structure/surface/rack, +/obj/item/tool/soap/deluxe, +/obj/item/tool/soap/deluxe, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/residential/maint) +"bvj" = ( +/turf/open/floor/mech_bay_recharge_floor, +/area/corsat/sigma/south/robotics) +"bvk" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/corsat/sigma/south/robotics) +"bvm" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"bvn" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/robot_module/engineering, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/robotics) +"bvo" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/robot_module/butler, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"bvp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/robotic_fabricator, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"bvq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/head/welding, +/obj/item/tool/weldingtool, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"bvs" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/mars_cave/mars_cave_17, +/area/corsat/sigma/biodome/scrapyard) +"bvt" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/south/offices) +"bvw" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/engineering) +"bvx" = ( +/obj/structure/bed, +/obj/effect/landmark/survivor_spawner, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"bvy" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/south/engineering) +"bvB" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bvC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bvD" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold{ + amount = 10 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bvE" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/tritium{ + amount = 10 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"bvF" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"bvJ" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"bvK" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"bvL" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/robotics) +"bvM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"bvN" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/silver{ + amount = 10 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bvO" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/robotics) +"bvP" = ( +/obj/structure/surface/table/almayer, +/obj/item/stock_parts/smes_coil, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bvQ" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"bvR" = ( +/obj/structure/bed, +/obj/structure/machinery/light, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"bvS" = ( +/obj/structure/bed, +/obj/item/tool/lighter/zippo, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"bvT" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"bvX" = ( +/obj/item/tool/weldingtool/experimental, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bvY" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/south/engineering) +"bvZ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/platinum{ + amount = 10 + }, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/south/engineering) +"bwa" = ( +/obj/structure/machinery/smartfridge/secure/virology{ + req_access_txt = "103" + }, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/biodome/virology) +"bwb" = ( +/obj/structure/machinery/smartfridge/chemistry/virology{ + req_access_txt = "103"; + req_one_access = null + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"bwc" = ( +/obj/structure/surface/rack, +/obj/item/device/chameleon, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"bwe" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"bwg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"bwh" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/engineering) +"bwi" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/robot_module/medic, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"bwk" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"bwm" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"bwn" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"bwo" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"bwp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"bwq" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Mech Assembly"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"bwr" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"bwt" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/analyzer, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south/engineering) +"bwu" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/engineering) +"bww" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"bwx" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Robotics"; + req_one_access_txt = "102" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"bwz" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Robotics Workshop"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"bwA" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bwB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bwC" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/t_scanner, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"bwD" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"bwE" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bwG" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/wirecutters, +/obj/item/tool/screwdriver, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/residential/maint) +"bwH" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"bwI" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/machine/circuit_imprinter, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bwJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"bwK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bwN" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bwO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"bwP" = ( +/turf/open/floor/corsat, +/area/corsat/sigma/south/robotics) +"bwQ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"bwR" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"bwS" = ( +/obj/structure/machinery/light, +/turf/closed/wall/biodome, +/area/corsat/sigma/south/engineering) +"bwT" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/south/engineering) +"bwU" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/south/engineering) +"bwV" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"bwW" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"bwZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"bxa" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"bxb" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Engineering Workshop"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"bxe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/surgicaldrill, +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"bxf" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/hemostat, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"bxg" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/sigmaremote) +"bxh" = ( +/obj/item/implant/neurostim, +/obj/item/implant/neurostim, +/obj/item/implant/adrenalin, +/obj/item/implant/adrenalin, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"bxi" = ( +/obj/item/implant/loyalty, +/obj/item/implant/loyalty, +/obj/item/implant/compressed, +/obj/item/implant/compressed, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"bxj" = ( +/obj/item/implant/death_alarm, +/obj/item/implant/death_alarm, +/obj/item/implant/tracking, +/obj/item/implant/tracking, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"bxm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/mech/tesla_energy_relay, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"bxn" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"bxo" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/obj/item/stack/cable_coil, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"bxp" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool, +/obj/item/tool/screwdriver, +/obj/item/tool/wrench, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/robotics) +"bxs" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/ripley_build_and_repair, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"bxt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/mech/armor_booster, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"bxw" = ( +/turf/open/floor/corsat/arrow_east, +/area/corsat/sigma/south/robotics) +"bxx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/robotics) +"bxy" = ( +/turf/open/floor/corsat/arrow_west, +/area/corsat/sigma/south/robotics) +"bxz" = ( +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/south/robotics) +"bxB" = ( +/obj/structure/girder/displaced, +/turf/open/floor/corsat, +/area/corsat/sigma/south/robotics) +"bxC" = ( +/obj/structure/surface/rack, +/obj/structure/prop/mech/hydralic_clamp, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"bxF" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south/robotics) +"bxH" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/yellow, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bxI" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/robotics) +"bxJ" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"bxK" = ( +/obj/structure/surface/rack, +/obj/item/holder/drone, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/robotics) +"bxL" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/light_bulb/tube/large, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/engineering) +"bxM" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Engineering Storage"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"bxN" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/rack, +/obj/item/powerloader_clamp, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"bxO" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + autoclose = 0; + density = 0; + icon_state = "door_open"; + id = "CORSAT Containment 4"; + name = "Containment Cell 1"; + req_one_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/inaccessible) +"bxP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Robotics Storage"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"bxQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"bxR" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/blue/southwest, +/area/corsat/gamma/airlock/control) +"bxS" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + autoclose = 0; + density = 0; + icon_state = "door_open"; + id = "CORSAT Containment 4"; + name = "Containment Cell 4"; + req_one_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/inaccessible) +"bxT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/cell/secborg, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"bxU" = ( +/obj/structure/machinery/r_n_d/server, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"bxV" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Cybernetics Lab"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"bxW" = ( +/obj/structure/closet/crate, +/obj/item/organ/brain/prosthetic, +/obj/item/organ/eyes/prosthetic, +/obj/item/organ/heart/prosthetic, +/obj/item/organ/kidneys/prosthetic, +/obj/item/organ/liver/prosthetic, +/obj/item/organ/lungs/prosthetic, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"bxX" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"bxY" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + autoclose = 0; + density = 0; + icon_state = "door_open"; + id = "CORSAT Containment 2"; + name = "Containment Cell 4"; + req_one_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/inaccessible) +"bxZ" = ( +/obj/structure/closet/crate, +/obj/item/robot_parts/robot_component/actuator, +/obj/item/robot_parts/robot_component/armour, +/obj/item/robot_parts/robot_component/camera, +/obj/item/robot_parts/robot_component/diagnosis_unit, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"bya" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/reinforced, +/obj/item/tool/crowbar, +/obj/item/tool/screwdriver, +/obj/item/tool/wrench, +/obj/item/stack/nanopaste, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"byb" = ( +/obj/structure/machinery/optable, +/obj/item/robot_parts/robot_suit, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"byc" = ( +/obj/structure/surface/rack, +/obj/item/frame/firstaid_arm_assembly, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"byd" = ( +/obj/structure/surface/rack, +/obj/item/frame/bucket_sensor, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"bye" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Gamma Director's Office"; + req_access_txt = "106" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"byg" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"byh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"byi" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal{ + amount = 25; + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/south/engineering) +"byj" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/robotics) +"byk" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"byl" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"bym" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"byn" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Omega Director's Office"; + req_access_txt = "106" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"byo" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Theta Director's Office"; + req_access_txt = "106" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"byp" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Sigma Director's Office"; + req_access_txt = "106" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"byr" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"bys" = ( +/obj/structure/machinery/microwave, +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"byt" = ( +/obj/structure/machinery/juicer, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"byu" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/drinkingglass, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"byv" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"byw" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"byy" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"byz" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"byB" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"byE" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"byF" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"byG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"byH" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 + }, +/obj/item/organ/liver, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"byI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Storage"; + req_access_txt = "100"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"byJ" = ( +/obj/structure/surface/rack, +/obj/item/xeno_restraints, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"byL" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/camera, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"byM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/closed/wall/biodome, +/area/corsat/omega/complex) +"byN" = ( +/obj/structure/machinery/shower, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"byO" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"byP" = ( +/obj/structure/machinery/optable, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"byQ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/form_printer, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/omega/complex) +"byR" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Omega Research Storage"; + req_access_txt = "103"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"byS" = ( +/obj/structure/sink{ + pixel_y = 25 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"byT" = ( +/obj/item/storage/box/masks, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"byU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/storage/box/gloves, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"byV" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 + }, +/obj/item/organ/eyes, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"byW" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/omega/complex) +"byX" = ( +/obj/item/xeno_egg, +/obj/item/xeno_egg, +/obj/item/xeno_egg, +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"byY" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"byZ" = ( +/obj/structure/surface/rack, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/engineering) +"bzb" = ( +/obj/structure/surface/table/almayer, +/obj/item/stock_parts/matter_bin/super, +/obj/item/stock_parts/capacitor/super, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"bzc" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/voice, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bzd" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/meson, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"bze" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"bzf" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"bzg" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/omega/complex) +"bzj" = ( +/obj/structure/surface/table/almayer, +/obj/item/form_printer, +/obj/item/tool/pen, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"bzk" = ( +/obj/structure/surface/table/almayer, +/obj/item/form_printer, +/obj/item/tool/pen, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"bzl" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"bzm" = ( +/obj/structure/window/framed/corsat/hull/research, +/turf/open/floor/plating, +/area/corsat/inaccessible) +"bzn" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + autoclose = 0; + density = 0; + icon_state = "door_open"; + id = "CORSAT Containment 4"; + name = "Containment Cell 3"; + req_one_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/inaccessible) +"bzo" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "SigmaIDSC"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"bzp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"bzq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Research Complex Theta"; + req_one_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"bzr" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Autopsy Storage"; + req_access_txt = "103"; + req_one_access = null + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"bzs" = ( +/obj/structure/machinery/door/airlock/almayer/research{ + name = "\improper Containment Chambers"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"bzt" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"bzu" = ( +/obj/structure/machinery/door/airlock/almayer/research{ + name = "\improper Xeno Autopsy"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"bzv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) +"bzw" = ( +/obj/structure/machinery/door/airlock/almayer/research{ + dir = 1; + locked = 1; + name = "\improper Decontamination Chamber"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"bzx" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Xenobiology Reception Desk"; + req_one_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"bzy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"bzz" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/clothing/glasses/welding, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/residential/maint) +"bzA" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 2; + name = "Secure Racks"; + req_access_txt = "103" + }, +/obj/item/tool/weedkiller/triclopyr, +/obj/item/tool/weedkiller/lindane, +/obj/item/tool/weedkiller/D24, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"bzB" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/omega/complex) +"bzC" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"bzD" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 2; + name = "Secure Racks"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"bzE" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/machine/clonescanner, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bzF" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"bzG" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"bzH" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/obj/item/clothing/glasses/meson, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"bzI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"bzJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"bzK" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bzL" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bzM" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/wirecutters, +/obj/item/stack/cable_coil, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/south/robotics) +"bzN" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/assembly/infra, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"bzP" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"bzQ" = ( +/obj/structure/machinery/computer/pandemic, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"bzS" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/engineering_guide, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"bzT" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) +"bzV" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/robotanalyzer, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"bzW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"bzY" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/mmi/radio_enabled, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/robotics) +"bzZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"bAa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"bAb" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"bAd" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"bAe" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"bAf" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"bAg" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay) +"bAh" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"bAi" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"bAj" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/syringe_case/regular, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/omega/complex) +"bAk" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/greenwhitecorner/east, +/area/corsat/gamma/medbay) +"bAl" = ( +/obj/structure/machinery/chem_dispenser{ + req_access_txt = "100" + }, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/chemistry) +"bAm" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"bAn" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/omega/complex) +"bAo" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"bAp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"bAq" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1; + name = "Secure Racks"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"bAr" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"bAs" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/fire, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"bAu" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"bAv" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"bAw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Hydroponics Lab"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"bAx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Laboratory"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"bAy" = ( +/obj/structure/surface/rack, +/obj/item/oldresearch/Resin, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1; + name = "Secure Racks"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/omega/complex) +"bAz" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"bAA" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/lobby) +"bAB" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"bAC" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/hemostat, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/surgery) +"bAD" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/scalpel, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 12; + pixel_y = 2 + }, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/surgery) +"bAE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "Genetics Lab"; + req_one_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"bAF" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/omega/complex) +"bAG" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"bAH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"bAI" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30 + }, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"bAJ" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"bAK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 3 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"bAL" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"bAO" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"bAP" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/corsat/greenwhitecorner/north, +/area/corsat/gamma/medbay) +"bAR" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/omega/complex) +"bAS" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"bAT" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay) +"bAV" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"bAW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"bAX" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/greenwhite/southwest, +/area/corsat/gamma/medbay/surgery) +"bAY" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/retractor, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/surgery) +"bAZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/turf/open/floor/corsat/greenwhite/southwest, +/area/corsat/gamma/medbay/lobby) +"bBa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bBb" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"bBc" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "CMO Office"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"bBd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"bBe" = ( +/obj/structure/surface/table/almayer, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"bBf" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"bBh" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/surgery) +"bBj" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/inaprovaline{ + pixel_x = 7 + }, +/obj/item/storage/pill_bottle/dexalin, +/obj/item/storage/pill_bottle/antitox{ + pixel_x = -5 + }, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/chemistry) +"bBk" = ( +/obj/structure/machinery/smartfridge/chemistry{ + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/chemistry) +"bBl" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/tramadol, +/obj/item/storage/pill_bottle/bicaridine{ + pixel_x = 5 + }, +/obj/item/storage/pill_bottle/kelotane{ + pixel_x = -7 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/chemistry) +"bBm" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/syringes, +/turf/open/floor/corsat/greenwhite/southwest, +/area/corsat/gamma/medbay/chemistry) +"bBn" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/chemistry) +"bBo" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/chemistry) +"bBp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/beakers, +/obj/item/storage/box/beakers, +/obj/item/tool/hand_labeler, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/chemistry) +"bBq" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"bBr" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/paper, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"bBs" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/clipboard, +/obj/item/clipboard, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"bBt" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"bBu" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"bBw" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"bBx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"bBy" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/omega/complex) +"bBz" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/fire, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("omega") + }, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/omega/complex) +"bBA" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) +"bBB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"bBC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"bBD" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential/researcher) +"bBE" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/omega/complex) +"bBF" = ( +/obj/item/storage/box/masks, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/omega/complex) +"bBG" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"bBH" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 2; + name = "Secure Racks"; + req_access_txt = "103" + }, +/obj/item/oldresearch/Blood, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"bBI" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"bBJ" = ( +/obj/structure/surface/rack, +/obj/item/oldresearch/Chitin, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1; + name = "Secure Racks"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"bBL" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Containment"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"bBM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"bBN" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/omega/complex) +"bBO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/corsat/omega/complex) +"bBP" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/floor/corsat, +/area/corsat/omega/complex) +"bBQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "Dehydration Chamber"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"bBT" = ( +/obj/structure/machinery/door/window/eastright, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"bBW" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"bBX" = ( +/turf/open/floor/plating/warnplate, +/area/corsat/gamma/hangar) +"bBY" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"bBZ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"bCa" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"bCb" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"bCc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"bCd" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"bCe" = ( +/obj/structure/bookcase/manuals/medical, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"bCf" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"bCg" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"bCh" = ( +/obj/structure/bookcase{ + icon_state = "book-5"; + name = "\improper Mentor's Guide Bookcase" + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"bCi" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"bCj" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/thermal, +/obj/structure/machinery/door/window/eastright{ + name = "Prototype Racks"; + req_access_txt = "103" + }, +/obj/structure/window/reinforced/toughened, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"bCk" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"bCm" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"bCn" = ( +/obj/structure/bookcase, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"bCo" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"bCp" = ( +/obj/structure/surface/table/woodentable, +/obj/item/book/manual/engineering_hacking, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"bCq" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"bCr" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"bCu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Laboratory"; + req_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"bCv" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"bCw" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/security) +"bCx" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"bCy" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"bCB" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"bCD" = ( +/obj/item/storage/belt/gun/m4a3/vp78{ + desc = "The M276 is the standard load-bearing equipment of the TGMC. It consists of a modular belt with various clips. This version has a holster assembly that allows one to carry the VP78 comfortably secure. It also contains side pouches that can store XX magazines."; + name = "M276 pattern VP78 holster rig" + }, +/obj/structure/closet/secure_closet/detective{ + name = "Head of Security's Cabinet" + }, +/obj/item/device/flash, +/obj/item/device/hailer, +/obj/item/device/megaphone, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security) +"bCE" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"bCF" = ( +/obj/structure/closet/secure_closet/security_empty{ + icon_broken = "hossecurebroken"; + icon_closed = "hossecure"; + icon_locked = "hossecure1"; + icon_off = "hossecureoff"; + icon_opened = "hossecureopen"; + icon_state = "hossecure1"; + name = "Head of Security's Locker" + }, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/device/binoculars, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/security) +"bCG" = ( +/obj/structure/machinery/door_control{ + id = "ThetaIDEC"; + name = "Privacy Shutters"; + pixel_y = -24; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "GammaSecC"; + name = "Security Shutters"; + pixel_x = 10; + pixel_y = -24; + use_power = 0 + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"bCH" = ( +/obj/item/storage/toolbox/mechanical, +/obj/structure/surface/rack, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"bCI" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaSecC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/gamma/security) +"bCJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/cargo) +"bCL" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"bCM" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"bCN" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/id) +"bCQ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"bCR" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"bCS" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "OmegaAccessC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/omega/checkpoint) +"bCV" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaAccessC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/omega/checkpoint) +"bCW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/airlock/south/id) +"bCX" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "GammaSouthAirlockC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/gamma/airlock/south) +"bCZ" = ( +/obj/structure/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"bDa" = ( +/obj/structure/machinery/computer/rdservercontrol, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"bDd" = ( +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/security) +"bDe" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"bDf" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "riot cabinet"; + req_access_txt = "100" + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"bDg" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"bDk" = ( +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"bDl" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/security) +"bDn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/checkpoint) +"bDp" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "OmegaSecC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/omega/security) +"bDs" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/south/security) +"bDt" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"bDu" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/checkpoint) +"bDv" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Armory"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"bDw" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Warden's Office"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"bDy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"bDz" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/security) +"bDC" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"bDD" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/flasher{ + pixel_y = 24 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"bDF" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/red, +/area/corsat/sigma/south/security) +"bDH" = ( +/obj/structure/window/framed/corsat/cell/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaHolding2"; + name = "Holding Cell 2" + }, +/turf/open/floor/plating, +/area/corsat/sigma/south/security) +"bDI" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/theta/airlock/west/id) +"bDJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Holding Cell 2"; + req_access_txt = "101" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaHolding2"; + name = "Holding Cell 2" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"bDM" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 8; + id_tag = "mix_sigma_out" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bDN" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/airlock/control) +"bDO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/skills, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/gamma/administration) +"bDP" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/keycard_auth/lockdown/corsat, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"bDT" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/airlock/control) +"bDU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/checkpoint) +"bDX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("sigma") + }, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/airlock/south/id) +"bDY" = ( +/obj/item/device/taperecorder, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"bDZ" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"bEb" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/datalab) +"bEf" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"bEg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"bEi" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaHangarNE"; + name = "Checkpoint Control"; + use_power = 0 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hangar/security) +"bEj" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/control) +"bEk" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("omega") + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"bEl" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/chemistry) +"bEm" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"bEn" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/corsat/red, +/area/corsat/omega/control) +"bEo" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"bEp" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaHangarE"; + name = "Checkpoint Control"; + pixel_x = 7; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "OmegaHangarW"; + name = "Checkpoint Control"; + pixel_x = -7; + use_power = 0 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hangar/security) +"bEq" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"bEr" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("omega") + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"bEs" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"bEt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/phone, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"bEv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Research Complex Omega"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"bEy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Laboratory"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"bEC" = ( +/obj/structure/machinery/lapvend, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"bED" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"bEE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/pen/red, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"bEF" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"bEG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"bEH" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"bEI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"bEK" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/administration) +"bEM" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bEN" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/zippo, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"bEO" = ( +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/administration) +"bES" = ( +/turf/open/floor/carpet11_12/west, +/area/corsat/gamma/administration) +"bET" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"bEU" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/administration) +"bEV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/administration) +"bEW" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/administration) +"bEX" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/administration) +"bFc" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"bFf" = ( +/turf/open/floor/carpet6_2/west, +/area/corsat/omega/offices) +"bFg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bFi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bFj" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bFm" = ( +/turf/open/floor/carpet7_3/west, +/area/corsat/omega/offices) +"bFn" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"bFo" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bFp" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"bFq" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/security) +"bFr" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/security) +"bFs" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"bFt" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/security) +"bFu" = ( +/obj/structure/window/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Forensics" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/security) +"bFv" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"bFw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"bFx" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/security) +"bFy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + network = list("gamma") + }, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/security) +"bFz" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Holding Cell 1"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"bFA" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"bFB" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/security) +"bFC" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"bFD" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/security) +"bFF" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"bFG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"bFH" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/gloves/latex, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/security) +"bFI" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/taperecorder, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/security) +"bFK" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"bFL" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/residential/maint) +"bFM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"bFN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"bFO" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/gamma/hangar/flightcontrol) +"bFP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"bFQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"bFR" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"bFT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"bFU" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/gamma/hangar/flightcontrol) +"bFV" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"bFW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"bFX" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/gamma/hangar/flightcontrol) +"bFY" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"bFZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"bGa" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bGc" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"bGd" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"bGe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"bGf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"bGg" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bGh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"bGi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"bGj" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/residential/maint) +"bGn" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"bGp" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/south, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"bGq" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/hangar/monorail/control) +"bGr" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/hangar/monorail/control) +"bGs" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/monorail/control) +"bGt" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/hangar/monorail/control) +"bGu" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/monorail) +"bGy" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Monorail Control"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"bGB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/sigma/hangar/arrivals) +"bGE" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") + }, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/arrivals) +"bGH" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"bGI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/landing/console) +"bGJ" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/office) +"bGL" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/office) +"bGM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/office) +"bGN" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"bGO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/office) +"bGP" = ( +/obj/structure/prop/dam/crane, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"bGQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/foyer) +"bGR" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/foyer) +"bGT" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/foyer) +"bGW" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"bGZ" = ( +/obj/structure/bed/chair, +/obj/item/bananapeel, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"bHa" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet9_4/west, +/area/corsat/gamma/administration) +"bHb" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet5_1/west, +/area/corsat/gamma/administration) +"bHc" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security) +"bHd" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential/researcher) +"bHe" = ( +/obj/structure/surface/table, +/obj/item/book, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"bHf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"bHg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"bHi" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/researcher) +"bHj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/researcher) +"bHk" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"bHl" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential/east) +"bHy" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"bHz" = ( +/obj/structure/showcase{ + icon_state = "bus" + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"bHA" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"bHB" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/canteen) +"bHC" = ( +/obj/structure/machinery/botany{ + name = "hydroponics tray" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"bHL" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/arrivals) +"bHR" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"bIa" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"bIe" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"bIk" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/arrivals) +"bIU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/south/id) +"bIX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"bJa" = ( +/obj/structure/machinery/conveyor_switch, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo) +"bJc" = ( +/obj/structure/machinery/conveyor_switch, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"bJf" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"bJg" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/canteen) +"bJh" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"bJi" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"bJj" = ( +/obj/vehicle/powerloader, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"bJk" = ( +/obj/vehicle/powerloader, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/cargo) +"bJl" = ( +/obj/vehicle/powerloader, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"bJm" = ( +/obj/structure/powerloader_wreckage, +/turf/open/mars_cave/mars_cave_22, +/area/corsat/sigma/biodome/scrapyard) +"bJq" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/east, +/area/corsat/theta/airlock/west) +"bJr" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/west) +"bJu" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 1 + }, +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/west) +"bJw" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/assembly/infra, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering) +"bJx" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/hangar/cargo) +"bJA" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("gamma") + }, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/gamma/airlock/control) +"bJB" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/blue/northwest, +/area/corsat/sigma/airlock/control) +"bJC" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"bJD" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue/northwest, +/area/corsat/gamma/airlock/control) +"bJE" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/mars, +/area/corsat/sigma/biodome) +"bJF" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"bJG" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"bJH" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/northwest, +/area/corsat/theta/airlock/control) +"bJI" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"bJJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"bJK" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"bJL" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"bJM" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"bJN" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 1 + }, +/turf/open/floor/corsat/blue, +/area/corsat/gamma/airlock/control) +"bJO" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert{ + dir = 1 + }, +/turf/open/floor/corsat/blue/southeast, +/area/corsat/gamma/airlock/control) +"bJP" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/blue/southwest, +/area/corsat/sigma/airlock/control) +"bJQ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("theta") + }, +/turf/open/floor/corsat/blue/northwest, +/area/corsat/theta/airlock/control) +"bJR" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/theta/airlock/control) +"bJS" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"bJT" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"bJU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"bJV" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"bJW" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"bJX" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/blue/southeast, +/area/corsat/sigma/airlock/control) +"bJY" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "SigmaBioAtmos"; + name = "Access Shutter" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"bJZ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"bKa" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "SigmaBioAtmos"; + name = "Access Shutter" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"bKb" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"bKc" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/blue/southwest, +/area/corsat/theta/airlock/control) +"bKd" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/obj/structure/machinery/camera/autoname{ + network = list("sigma") + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"bKe" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"bKf" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/sigma/airlock/control) +"bKg" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/blue/southwest, +/area/corsat/gamma/airlock/control) +"bKh" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/blue, +/area/corsat/gamma/airlock/control) +"bKi" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/blue, +/area/corsat/gamma/airlock/control) +"bKj" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("theta") + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"bKk" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"bKl" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/blue/southeast, +/area/corsat/theta/airlock/control) +"bKm" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/sigma/airlock/control) +"bKn" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/airlock/control) +"bKo" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"bKp" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"bKq" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"bKr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/corsat/blue, +/area/corsat/gamma/airlock/control) +"bKs" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"bKt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"bKv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"bKw" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/blue, +/area/corsat/theta/airlock/control) +"bKx" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue/southeast, +/area/corsat/theta/airlock/control) +"bKy" = ( +/obj/structure/machinery/computer3, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/airlock/control) +"bKz" = ( +/obj/structure/machinery/computer3, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"bKA" = ( +/turf/open/floor/corsat/blue/southeast, +/area/corsat/sigma/airlock/control) +"bKB" = ( +/obj/structure/machinery/computer3, +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"bKC" = ( +/turf/open/floor/corsat/blue/southwest, +/area/corsat/theta/airlock/control) +"bKD" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/sigma/dorms) +"bKE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/sigma/dorms) +"bKF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/sigma/dorms) +"bKG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/sigma/dorms) +"bKH" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/sigma/dorms) +"bKI" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/sigma/dorms) +"bKJ" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/sigma/dorms) +"bKK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"bKL" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/sigma/dorms) +"bKM" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/sigma/dorms) +"bKN" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/gamma/administration) +"bKQ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail/control) +"bKR" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"bKS" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/monorail/control) +"bKT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail/control) +"bKU" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/hangar/monorail) +"bKX" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/hangar/monorail) +"bKY" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"bKZ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Monorail Control"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/monorail/control) +"bLc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/hangar/monorail) +"bLd" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/monorail/control) +"bLg" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/hangar/monorail/control) +"bLh" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("gamma") + }, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/monorail/control) +"bLi" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"bLk" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/residential/maint) +"bLl" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/omega/maint) +"bLm" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail/control) +"bLn" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/shuttle_control/monorail{ + dir = 4 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/monorail/control) +"bLq" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail/control) +"bLr" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/hangar/monorail/control) +"bLs" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"bLu" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail/control) +"bLw" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/office) +"bLx" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"bLy" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"bLz" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"bLA" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"bLB" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering) +"bLC" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/maint) +"bLD" = ( +/obj/structure/closet/l3closet/janitor, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/omega/maint) +"bLE" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"bLF" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"bLG" = ( +/obj/structure/surface/rack, +/obj/item/stock_parts/capacitor/super, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"bLI" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Custodial Closet"; + req_one_access = null + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"bLL" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/omega/maint) +"bLM" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"bLO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"bLQ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"bLR" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"bLS" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"bLT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"bLW" = ( +/obj/structure/surface/table/almayer, +/obj/item/stock_parts/matter_bin/super, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"bLY" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/omega/maint) +"bMb" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"bMc" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"bMf" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"bMh" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + dir = 1; + name = "Quartermaster's Office"; + req_one_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"bMi" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"bMj" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"bMk" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"bMm" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 25; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/omega/maint) +"bMo" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/omega/maint) +"bMp" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/meson, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/omega/maint) +"bMu" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"bMv" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/assembly/timer, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"bMw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering/lobby) +"bMA" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications{ + dir = 1 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"bMB" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"bMC" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"bMD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"bME" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/paper, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"bMI" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bMM" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/omega/offices) +"bMN" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/omega/offices) +"bMO" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"bMP" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"bMQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/omega/offices) +"bMR" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"bMS" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"bMT" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/sigma/southeast/dataoffice) +"bMU" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/sigma/southeast/dataoffice) +"bMX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/southeast/dataoffice) +"bMY" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"bNb" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bNc" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bNd" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"bNe" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"bNh" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"bNi" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"bNj" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bNk" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"bNl" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bNm" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bNo" = ( +/obj/structure/surface/table/almayer, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/item/paper_bin, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"bNp" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"bNq" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/southeast/dataoffice) +"bNr" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/southeast/dataoffice) +"bNs" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/dataoffice) +"bNt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/dataoffice) +"bNu" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/dataoffice) +"bNv" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/omega/offices) +"bNw" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/sigma/south/offices) +"bNx" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"bNy" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/sigma/south/offices) +"bNz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"bNA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/south/offices) +"bNB" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"bNC" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"bND" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"bNE" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"bNF" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"bNI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/south/offices) +"bNJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/south/offices) +"bNK" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/sigma/south/offices) +"bNM" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"bNN" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/lobby) +"bNO" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Engineering Storage"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"bNP" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/brown/northwest, +/area/corsat/sigma/cargo) +"bNQ" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"bNR" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"bNS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering) +"bNT" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering) +"bNW" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering) +"bNX" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering) +"bNY" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering) +"bNZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering) +"bOa" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/blue/northwest, +/area/corsat/omega/control) +"bOb" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"bOc" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/obj/item/pamphlet/skill/powerloader, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) +"bOd" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) +"bOe" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/omega/control) +"bOf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair, +/turf/open/floor/corsat/brown/north, +/area/corsat/sigma/cargo) +"bOg" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/brown/north, +/area/corsat/sigma/cargo) +"bOh" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/brown/northeast, +/area/corsat/sigma/cargo) +"bOi" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"bOj" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Viro"; + name = "Virology Lockdown" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"bOl" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"bOm" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"bOn" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/browncorner/east, +/area/corsat/sigma/cargo) +"bOo" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/cargo) +"bOp" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/browncorner/west, +/area/corsat/sigma/cargo) +"bOq" = ( +/obj/structure/machinery/light, +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"bOr" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"bOs" = ( +/obj/structure/largecrate/lisa, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"bOt" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"bOu" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"bOw" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"bOx" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"bOy" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"bOA" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"bOB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"bOC" = ( +/obj/structure/surface/table/almayer, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"bOD" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"bOE" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/trash/popcorn, +/turf/open/floor/corsat/brown, +/area/corsat/omega/cargo) +"bOF" = ( +/obj/structure/machinery/light, +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"bOG" = ( +/obj/structure/surface/rack, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/cell/high, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"bOH" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/brown/northwest, +/area/corsat/gamma/cargo/lobby) +"bOI" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo/lobby) +"bOJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"bOK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"bOL" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"bON" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"bOP" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/maint) +"bOQ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"bOR" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"bOS" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/tool/crowbar, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/hangar/cargo) +"bOT" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/hangar/cargo) +"bOU" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"bOV" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hangar/arrivals) +"bOW" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hangar/arrivals) +"bOX" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/hangar/checkpoint) +"bOY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/hangar/checkpoint) +"bOZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/checkpoint) +"bPa" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/checkpoint) +"bPb" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"bPe" = ( +/obj/structure/surface/table/almayer, +/obj/item/robot_parts/robot_component/radio, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"bPf" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/device/radio, +/obj/item/device/radio, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"bPg" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"bPh" = ( +/obj/structure/surface/rack, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/hangar/monorail/control) +"bPi" = ( +/obj/structure/surface/table, +/obj/item/corncob, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"bPj" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/assembly/mousetrap, +/obj/item/device/assembly/mousetrap, +/obj/item/clothing/glasses/welding, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering) +"bPk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/southeast/datamaint) +"bPl" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/southeast/datamaint) +"bPm" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering) +"bPn" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/brown/northwest, +/area/corsat/sigma/cargo) +"bPp" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen, +/obj/item/tool/stamp{ + name = "Quartermaster's stamp" + }, +/turf/open/floor/corsat/brown/north, +/area/corsat/sigma/cargo) +"bPq" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/brown/north, +/area/corsat/sigma/cargo) +"bPr" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/brown/northeast, +/area/corsat/sigma/cargo) +"bPs" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"bPt" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"bPv" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"bPw" = ( +/obj/structure/surface/table/almayer, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"bPx" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigar, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"bPy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/corsat/brown/southwest, +/area/corsat/sigma/cargo) +"bPC" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/chips, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"bPD" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"bPE" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/meat{ + pixel_y = 8 + }, +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/cargo) +"bPG" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box, +/obj/item/storage/box{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"bPH" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/brown/southwest, +/area/corsat/sigma/cargo) +"bPI" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"bPJ" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/cargotech, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"bPK" = ( +/obj/structure/closet/secure_closet/cargotech, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"bPL" = ( +/obj/structure/closet/secure_closet/cargotech, +/turf/open/floor/corsat/brown/southeast, +/area/corsat/sigma/cargo) +"bPM" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/north) +"bPO" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lights, +/obj/item/device/lightreplacer, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/north) +"bPQ" = ( +/obj/structure/machinery/computer/general_air_control, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"bPR" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering/atmos) +"bPS" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering/atmos) +"bPV" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Atmospherics"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"bPW" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"bPX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"bPY" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/north) +"bPZ" = ( +/obj/structure/pipes/standard/simple/visible, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"bQa" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/north) +"bQb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/north) +"bQc" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/north) +"bQd" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/north) +"bQe" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering) +"bQf" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"bQg" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/wood{ + amount = 10 + }, +/obj/item/stack/sheet/wood{ + amount = 10 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"bQh" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/light_bulb/tube/large, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"bQi" = ( +/obj/structure/surface/rack, +/obj/item/device/assembly/signaller, +/obj/item/device/assembly/signaller, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/prox_sensor, +/obj/item/device/assembly/prox_sensor, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"bQj" = ( +/obj/structure/surface/rack, +/obj/item/cell, +/obj/item/cell, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"bQk" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/camera, +/turf/open/floor/corsat/blue/northwest, +/area/corsat/omega/control) +"bQl" = ( +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"bQm" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering/lobby) +"bQn" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/lobby) +"bQo" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/north) +"bQp" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"bQq" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal{ + amount = 25; + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"bQr" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"bQs" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering) +"bQt" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bQv" = ( +/obj/structure/window/framed/corsat/hull, +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/inaccessible) +"bQw" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/southeast/datamaint) +"bQx" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"bQy" = ( +/turf/open/floor/corsat, +/area/corsat/gamma/hallwaysouth) +"bQA" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full, +/obj/item/device/multitool, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/southeast/datamaint) +"bQB" = ( +/obj/structure/machinery/meter, +/obj/structure/pipes/standard/simple/visible{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"bQC" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/southeast/datamaint) +"bQE" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"bQF" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/southeast) +"bQG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"bQH" = ( +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bQJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"bQK" = ( +/obj/item/tool/wet_sign, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/southeast/datamaint) +"bQL" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"bQM" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"bQN" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/inaccessible) +"bQO" = ( +/obj/structure/surface/rack, +/obj/item/cell/high, +/obj/item/cell/high, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/southeast/datamaint) +"bQP" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/atmos) +"bQQ" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering/atmos) +"bQR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"bQS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/blue/north, +/area/corsat/omega/control) +"bQT" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/science, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"bQU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/meson, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"bQV" = ( +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bQW" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"bQX" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"bQY" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/item/clothing/glasses/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"bQZ" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"bRa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"bRc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"bRd" = ( +/obj/item/device/analyzer/plant_analyzer, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"bRe" = ( +/obj/item/reagent_container/glass/bucket, +/obj/item/reagent_container/glass/bucket, +/obj/structure/surface/table/almayer, +/obj/item/tool/minihoe, +/obj/item/tool/hatchet, +/obj/item/tool/shovel/spade, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/theta/biodome/complex) +"bRf" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"bRg" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "OmegaWarden"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/corsat/omega/security) +"bRh" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Warden's Office"; + req_access_txt = "101" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "OmegaWarden"; + name = "Privacy Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"bRj" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"bRk" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/checkpoint) +"bRn" = ( +/obj/structure/surface/rack, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/checkpoint) +"bRo" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/complex) +"bRp" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"bRq" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"bRr" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"bRv" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"bRw" = ( +/obj/item/clothing/gloves/latex, +/obj/structure/surface/table/reinforced, +/obj/item/clothing/gloves/latex, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"bRx" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"bRy" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"bRz" = ( +/obj/structure/closet/secure_closet/security_empty{ + name = "Warden's Locker" + }, +/obj/item/clothing/head/beret/sec/warden, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south/security) +"bRE" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"bRH" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Forensics" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"bRI" = ( +/obj/structure/machinery/computer/rdconsole, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"bRJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/evidencebag, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"bRK" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"bRQ" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/security) +"bRT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"bRV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"bRW" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"bRX" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"bRY" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"bRZ" = ( +/obj/structure/surface/rack, +/obj/item/evidencebag, +/obj/item/evidencebag, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"bSa" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"bSb" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/restraint/handcuffs/zip, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"bSe" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"bSf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/checkpoint) +"bSg" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "riot cabinet"; + req_access_txt = "100" + }, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/checkpoint) +"bSh" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "riot cabinet"; + req_access_txt = "100" + }, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"bSi" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/checkpoint) +"bSk" = ( +/obj/structure/window/framed/corsat/cell/security, +/turf/open/floor/plating, +/area/corsat/omega/checkpoint) +"bSl" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"bSm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/checkpoint) +"bSn" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/security) +"bSo" = ( +/obj/structure/machinery/door_control{ + id = "OmegaAccessC2"; + name = "Security Shutters"; + pixel_x = -24; + use_power = 0 + }, +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" + }, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/checkpoint) +"bSp" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" + }, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/checkpoint) +"bSr" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"bSx" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/engineering_construction, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"bSE" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"bSG" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaCheckpointC"; + name = "Security Shutters"; + pixel_x = 7; + use_power = 0 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"bSK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/checkpoint) +"bSM" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/hangar/checkpoint) +"bSO" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"bSW" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/arrivals) +"bSX" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar) +"bSZ" = ( +/obj/structure/bed/chair, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"bTb" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"bTh" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar) +"bTj" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"bTk" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/theta/airlock/west/id) +"bTl" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"bTo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"bTp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"bTq" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 1 + }, +/obj/structure/machinery/door/window/eastright{ + name = "Weapon Rack" + }, +/obj/item/weapon/gun/revolver/m44, +/obj/item/weapon/gun/revolver/m44, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"bTr" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 1 + }, +/obj/structure/machinery/door/window/westright{ + name = "Weapon Rack" + }, +/obj/item/weapon/gun/smg/m39, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"bTs" = ( +/obj/structure/target, +/obj/structure/target, +/obj/structure/target, +/obj/structure/target, +/obj/structure/target, +/obj/structure/target, +/obj/structure/closet/crate{ + desc = "A rectangular steel crate containing firing targets."; + name = "target crate" + }, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"bTt" = ( +/obj/structure/closet/bombcloset, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"bTu" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaGrounds"; + name = "Testing Grounds" + }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/biodome/testgrounds) +"bTv" = ( +/obj/structure/machinery/door_control{ + id = "SigmaGrounds"; + name = "Testing Grounds"; + pixel_x = 24 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"bTw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Testing Grounds"; + req_access_txt = "106"; + use_power = 0 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"bTx" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaGrounds"; + name = "Testing Grounds" + }, +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/biodome/testgrounds) +"bTy" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaGrounds"; + name = "Testing Grounds" + }, +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/biodome/testgrounds) +"bTz" = ( +/obj/item/explosive/plastic, +/obj/item/explosive/plastic, +/obj/item/explosive/plastic, +/obj/item/explosive/plastic, +/obj/structure/closet/secure_closet/guncabinet{ + name = "explosives cabinet"; + req_access_txt = "100" + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"bTA" = ( +/obj/item/explosive/mine/pmc, +/obj/item/explosive/mine/pmc, +/obj/item/explosive/mine/pmc, +/obj/item/explosive/mine/pmc, +/obj/structure/closet/secure_closet/guncabinet{ + name = "explosives cabinet"; + req_access_txt = "100" + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"bTB" = ( +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/explosive/grenade/high_explosive/pmc, +/obj/structure/closet/secure_closet/guncabinet{ + name = "explosives cabinet"; + req_access_txt = "100" + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"bTC" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaGrounds"; + name = "Testing Grounds" + }, +/turf/open/floor/plating/warnplate, +/area/corsat/sigma/biodome/testgrounds) +"bTH" = ( +/obj/item/paper/crumpled, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"bTM" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"bTN" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/armor/laserproof, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"bTO" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"bTQ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/prop/gripper, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"bTU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"bTV" = ( +/obj/structure/surface/table/reinforced, +/obj/item/cell/hyper/empty, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"bTW" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/head/helmet/augment, +/obj/item/tool/pen/paralysis, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"bTX" = ( +/obj/item/paper/crumpled, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/sigma/south/complex) +"bTZ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"bUa" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/welding/superior, +/obj/structure/machinery/door/window/eastright{ + name = "Prototype Racks"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"bUc" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Sigma RnD"; + req_one_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"bUg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/corsat/sigma/south/complex) +"bUh" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Teleport Control"; + req_one_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"bUi" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"bUl" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/drinkingglass, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"bUm" = ( +/obj/structure/machinery/power/smes, +/turf/open/floor/corsat, +/area/corsat/sigma/south/complex) +"bUn" = ( +/turf/open/floor/corsat, +/area/corsat/omega/complex) +"bUo" = ( +/obj/item/weapon/gun/flamer, +/obj/item/explosive/grenade/incendiary, +/obj/structure/closet/secure_closet/guncabinet{ + name = "specimen control cabinet"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"bUr" = ( +/obj/structure/surface/table/reinforced, +/obj/item/explosive/grenade/custom/metal_foam, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"bUs" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/assembly/infra, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"bUt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/explosive/grenade/empgrenade, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"bUv" = ( +/obj/structure/surface/table/reinforced, +/obj/item/explosive/grenade/custom/large, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"bUx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"bUz" = ( +/obj/structure/safe{ + spawnkey = 0 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"bUA" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/explosive/grenade/custom/antiweed, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"bUC" = ( +/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bUD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"bUF" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/phoron, +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 8; + id_tag = "mix_sigma_out" + }, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/biodome/toxins) +"bUI" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"bUJ" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bUK" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/closed/gm/dense, +/area/corsat/theta/biodome) +"bUL" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"bUM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/obj/effect/landmark/nightmare{ + insert_tag = "lockdown-theta-control" + }, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"bUN" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"bUO" = ( +/obj/structure/machinery/door_control{ + id = "SigmaBioAtmos"; + name = "Access Shutters"; + pixel_y = 24 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"bUP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) +"bUQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) +"bUS" = ( +/obj/structure/pipes/standard/simple/hidden/universal, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"bUT" = ( +/obj/structure/pipes/standard/simple/hidden/universal, +/turf/open/floor/corsat/yellow/east, +/area/corsat/theta/airlock/control) +"bUU" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "CO2 Control" + }, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/theta/airlock/control) +"bUV" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 + }, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/east, +/area/corsat/theta/airlock/control) +"bUW" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 8; + name = "Mixed Air Injector" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bUY" = ( +/obj/structure/pipes/trinary/mixer, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/theta/airlock/control) +"bUZ" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 1 + }, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/theta/airlock/control) +"bVb" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 8 + }, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/airlock/control) +"bVc" = ( +/obj/structure/surface/rack, +/obj/item/tank/air, +/obj/item/tank/air, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/airlock/control) +"bVg" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Mixed Air Control" + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) +"bVh" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"bVm" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"bVn" = ( +/obj/item/device/binoculars, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "GammaControl"; + name = "Observation Shutters"; + pixel_y = 5; + use_power = 0 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/airlock/control) +"bVs" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"bVv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) +"bVw" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) +"bVx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"bVC" = ( +/obj/item/device/binoculars, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "SigmaControl"; + name = "Observation Shutters"; + pixel_y = 5; + use_power = 0 + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/airlock/control) +"bVD" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"bVE" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bVG" = ( +/obj/structure/machinery/door_control{ + id = "GammaBioAtmos"; + name = "Access Shutters"; + pixel_y = -24 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"bVH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bVI" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"bVJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"bVL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/theta/airlock/control) +"bVM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/theta/airlock/control) +"bVN" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 1; + id_tag = "car_sigma_out" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bVO" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bVQ" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/theta/airlock/control) +"bVS" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Mixed Air Control" + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) +"bVT" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 1; + name = "Mixed Air Injector" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bVU" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/theta/airlock/control) +"bVV" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/west, +/area/corsat/theta/airlock/control) +"bVW" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/east, +/area/corsat/theta/airlock/control) +"bVX" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bWb" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/control) +"bWc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/computer/cameras{ + network = list("theta") + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"bWd" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/northeast, +/area/corsat/theta/airlock/control) +"bWe" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"bWf" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"bWg" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/theta/airlock/control) +"bWh" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"bWi" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/control) +"bWj" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"bWk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"bWl" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"bWm" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/theta/airlock/control) +"bWn" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/theta/airlock/control) +"bWo" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/west, +/area/corsat/theta/airlock/control) +"bWp" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/blue, +/area/corsat/theta/airlock/control) +"bWq" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/red/northwest, +/area/corsat/theta/airlock/control) +"bWr" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/southwest, +/area/corsat/theta/airlock/control) +"bWs" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/control) +"bWt" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/control) +"bWu" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"bWv" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"bWw" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/control) +"bWx" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"bWy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) +"bWz" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"bWA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"bWB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/airlock/control) +"bWC" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/airlock/control) +"bWD" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/airlock/control) +"bWE" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/airlock/control) +"bWG" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/airlock/control) +"bWH" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/airlock/control) +"bWI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"bWJ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/airlock/control) +"bWK" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/airlock/control) +"bWL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"bWM" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/airlock/control) +"bWN" = ( +/obj/structure/pipes/trinary/mixer{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/airlock/control) +"bWO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"bWQ" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "CO2 Control" + }, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/airlock/control) +"bWR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"bWS" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/airlock/control) +"bWT" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/airlock/control) +"bWU" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Waste Tank Control" + }, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/theta/airlock/control) +"bWV" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"bWW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "GammaEastD"; + name = "Entrance Airlock Control"; + pixel_x = 5; + use_power = 0 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"bWX" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"bWZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) +"bXa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"bXb" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/airlock/control) +"bXc" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"bXd" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"bXe" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"bXh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"bXl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"bXn" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"bXo" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"bXp" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/airlock/control) +"bXq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"bXr" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/airlock/control) +"bXs" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"bXu" = ( +/obj/item/folder/black_random, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/control) +"bXv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/airlock/control) +"bXw" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/control) +"bXx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"bXz" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/control) +"bXA" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"bXB" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"bXC" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/airlock/control) +"bXD" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/corsat/red, +/area/corsat/sigma/airlock/control) +"bXE" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/airlock/control) +"bXG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/control) +"bXH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"bXI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) +"bXK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"bXN" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"bXO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"bXQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"bXW" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"bXY" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/airlock/control) +"bXZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/obj/effect/landmark/nightmare{ + insert_tag = "lockdown-gamma-control" + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"bYa" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Gamma Dome Control"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"bYb" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"bYd" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + id_tag = "nit_gamma_out" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bYf" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Mixed Air Control" + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"bYh" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/airlock/control) +"bYl" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Nitrogen Control Console" + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"bYm" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 4; + name = "Mixed Air Injector" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bYo" = ( +/obj/structure/pipes/trinary/mixer{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/airlock/control) +"bYp" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/airlock/control) +"bYq" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"bYr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/hallways) +"bYs" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/airlock/control) +"bYt" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/airlock/control) +"bYu" = ( +/obj/structure/surface/rack, +/obj/item/tank/air, +/obj/item/tank/air, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/airlock/control) +"bYv" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"bYw" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 4; + id_tag = "mix_gamma_out" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bYx" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/airlock/control) +"bYy" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/airlock/control) +"bYz" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/airlock/control) +"bYA" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/airlock/control) +"bYC" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"bYD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"bYE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "GammaBioAtmos"; + name = "Access Shutter" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"bYF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"bYI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"bYJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "GammaBioAtmos"; + name = "Access Shutter" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"bYK" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/airlock/control) +"bYL" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 + }, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/airlock/control) +"bYM" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Waste Tank Control" + }, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/airlock/control) +"bYN" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 1; + name = "Waste Air Injector" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bYP" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bYQ" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 8; + name = "Waste Air Injector" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bYR" = ( +/obj/structure/surface/rack, +/obj/item/tank/air, +/obj/item/tank/air, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellow/west, +/area/corsat/theta/airlock/control) +"bYS" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 4; + id_tag = "car_theta_out" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bYT" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 1; + id_tag = "mix_theta_out" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bYU" = ( +/obj/structure/closet/l3closet/general, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/control) +"bYW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 1 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/control) +"bYX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/omega/control) +"bYY" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/omega/control) +"bYZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"bZa" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/binoculars, +/turf/open/floor/corsat/blue/west, +/area/corsat/omega/control) +"bZb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/plate, +/area/corsat/omega/control) +"bZc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/blue/southwest, +/area/corsat/omega/control) +"bZd" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/control) +"bZe" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/blue, +/area/corsat/omega/control) +"bZf" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "Omega Dome Control"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/control) +"bZg" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/blue, +/area/corsat/omega/control) +"bZh" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/omega/control) +"bZi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 1 + }, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/omega/control) +"bZj" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/corsat/omega/control) +"bZk" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/omega, +/area/corsat/omega/control) +"bZl" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/blue/southeast, +/area/corsat/omega/control) +"bZm" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/control) +"bZp" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Weapons Development"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"bZq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/reinforced, +/obj/item/xeno_restraints, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/control) +"bZr" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/control) +"bZt" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/effect/spawner/random/tool, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"bZu" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/white/northwest, +/area/corsat/sigma/dorms) +"bZv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/sigma/dorms) +"bZy" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("gamma") + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"bZz" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass{ + dir = 1 + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar/cargo) +"bZD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"bZE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/biodome/complex) +"bZF" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/biodome/complex) +"bZI" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Toxins Lab"; + req_one_access_txt = "103" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Toxins"; + name = "Toxins Lockdown" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"bZK" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/obj/structure/closet/wardrobe/toxins_white, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"bZN" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/sigma/south/complex) +"bZP" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/south) +"bZW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/east) +"bZX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/east) +"cab" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/west) +"caf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) +"cah" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/hydrowest) +"cai" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/hydroeast) +"cak" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydrowest) +"cal" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "West Hydroponics Wing"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"cam" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"cao" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"cap" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"caq" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "East Hydroponics Wing"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"car" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydroeast) +"cau" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/theta/biodome/complex) +"caw" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"caA" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/green, +/area/corsat/gamma/hallwaysouth) +"caG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"caH" = ( +/obj/structure/machinery/light, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"caI" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/airlock/control) +"caM" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "SigmaWestE"; + name = "Sigma West Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"caQ" = ( +/obj/item/weapon/gun/flamer, +/obj/item/explosive/grenade/incendiary, +/obj/structure/closet/secure_closet/guncabinet{ + name = "specimen control cabinet"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"caS" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/floor/plating, +/area/corsat/sigma/biodome/testgrounds) +"caT" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/colony_floodlight_switch{ + desc = "This switch controls the floodlights around the biodome. It only functions when there is power." + }, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/theta/airlock/control) +"caU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"caV" = ( +/obj/structure/machinery/door_control{ + id = "ThetaBioAtmos"; + name = "Access Shutters"; + pixel_x = 24 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"caW" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"caX" = ( +/obj/item/device/binoculars, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "ThetaControl"; + name = "Observation Shutters"; + pixel_y = 5; + use_power = 0 + }, +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"caZ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaControl"; + name = "Observation Shutters"; + pixel_y = 5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "OmegaO"; + name = "Dome Lockdown"; + req_one_access_txt = "106;103"; + use_power = 0 + }, +/turf/open/floor/corsat/blue/west, +/area/corsat/omega/control) +"cbc" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaO"; + name = "Dome Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/red, +/area/corsat/omega/control) +"cbo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay) +"cbS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/rnr) +"cbV" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"cbW" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"cce" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"ccq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"cec" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/theta/airlock/control) +"cem" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"ces" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast/datalab) +"ceB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/east) +"ceE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/sigmaremote) +"ceR" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"cfh" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/slime, +/obj/item/device/flashlight/slime{ + pixel_y = 8 + }, +/obj/item/device/flashlight/slime{ + pixel_x = -10 + }, +/obj/item/device/flashlight/slime{ + pixel_x = 10 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"cfA" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/south/offices) +"cfO" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/foyer) +"cfZ" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/hallwaysouth) +"cgh" = ( +/obj/structure/surface/rack, +/obj/item/storage/wallet, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"cgs" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"cgt" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"chg" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"chJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"chL" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/cargo) +"cia" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydroeast) +"cii" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/checkpoint) +"ciW" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/obj/structure/machinery/door/window/southleft{ + dir = 4; + layer = 2.8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"cjg" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dressing room" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"cjs" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/hallwaysouth) +"cjy" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/containment) +"ckt" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"cku" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"ckz" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/hangar/checkpoint) +"ckY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"clg" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/security) +"clp" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/omega/offices) +"clI" = ( +/turf/open/floor/corsat/darkgreen/southwest, +/area/corsat/gamma/rnr) +"clN" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/south) +"cmk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"cms" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"cmy" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"cnj" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"cnA" = ( +/obj/structure/surface/rack, +/obj/item/alienjar, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 2; + name = "Secure Racks"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/omega/complex) +"cnC" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"cog" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"cok" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/office) +"coy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"coS" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/sigma/hangar/monorail) +"cpS" = ( +/obj/item/bodybag, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) +"cpU" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"cqv" = ( +/obj/structure/computerframe, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"cqy" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"cqT" = ( +/obj/effect/landmark/corpsespawner/wysec, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"cru" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/corsat/omega/hangar) +"crC" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"crG" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"crH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"csk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"cst" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"csE" = ( +/turf/open/floor/corsat/plate, +/area/corsat/inaccessible) +"csI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"csM" = ( +/obj/structure/surface/table/almayer, +/obj/item/phone, +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/southeast/datalab) +"cth" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"ctA" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"cuo" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"cut" = ( +/obj/structure/sign/safety/biolab, +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/hallwaysouth) +"cuO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"cvi" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"cvm" = ( +/obj/structure/surface/rack, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"cvr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential/researcher) +"cvO" = ( +/obj/structure/flora/jungle/plantbot1, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"cvW" = ( +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/datalab) +"cwp" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/phoron, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"cwr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"cwF" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/mars, +/area/corsat/sigma/biodome) +"cxh" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaHangarC-N"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/security) +"cxE" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/foyer) +"cxO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"cyK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/southeast/datalab) +"cyX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"czg" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/omega/control) +"czh" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"cAg" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar) +"cAV" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/sigmaremote) +"cAW" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"cAX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"cCK" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("omega") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hallways) +"cCP" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/sigma/hangar) +"cEC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"cEI" = ( +/turf/open/floor/corsat/greenwhitecorner/east, +/area/corsat/gamma/medbay/lobby) +"cEQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_14, +/area/corsat/sigma/biodome) +"cFe" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"cGb" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"cGi" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/medbay/morgue) +"cGF" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar/arrivals) +"cGO" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/gamma/hangar/arrivals) +"cIs" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/theta/airlock/west/id) +"cIB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"cJS" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"cJU" = ( +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/sigma/south) +"cJW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/machinery/door/window/southright, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"cKa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"cKi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"cKv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"cLh" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"cLF" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/biodome/toxins) +"cLZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"cMa" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"cMv" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"cMw" = ( +/obj/structure/machinery/computer/telecomms/traffic{ + req_one_access_txt = "19;106;102" + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"cMy" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/control) +"cNG" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/control) +"cNI" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"cOf" = ( +/turf/open/floor/corsat/brown/north, +/area/corsat/sigma/cargo) +"cOv" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"cOU" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/hangar) +"cPi" = ( +/obj/structure/monorail{ + dir = 8 + }, +/turf/open/space/transit/east/shuttlespace_ew10, +/area/space) +"cPC" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/hangar/checkpoint) +"cPR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"cPT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner/north, +/area/corsat/omega/hallways) +"cQs" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"cQv" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"cQR" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"cRn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"cRx" = ( +/obj/item/cell/crap, +/turf/open/floor/corsat, +/area/corsat/gamma/cargo/disposal) +"cSi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_9, +/area/corsat/sigma/biodome) +"cSI" = ( +/turf/open/floor/corsat/green/north, +/area/corsat/gamma/hallwaysouth) +"cTc" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"cTs" = ( +/obj/structure/stairs{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"cUc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/mars, +/area/corsat/sigma/biodome) +"cUp" = ( +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/omega/offices) +"cUT" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/landmark/corpsespawner/wysec, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/security) +"cVq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"cVK" = ( +/turf/open/floor/corsat/greencorner/east, +/area/corsat/gamma/hallwaysouth) +"cVR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"cWa" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"cWf" = ( +/turf/open/floor/corsat/browncorner/east, +/area/corsat/gamma/hallwaysouth) +"cWu" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/residential) +"cWI" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/rnr) +"cWX" = ( +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/sigma/south) +"cXm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"cXt" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"cXH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"cYj" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"cYL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + req_access_txt = "201" + }, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/control) +"cYU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/residential) +"cZu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars, +/area/corsat/sigma/biodome) +"cZw" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("theta") + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"cZO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south/id) +"daL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"daO" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/toxins) +"daR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/southeast/datalab) +"dbn" = ( +/obj/structure/surface/table, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"dbr" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/containment) +"dbV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"dbY" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"dcr" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"dct" = ( +/turf/open/floor/corsat, +/area/corsat/gamma/airlock/south/id) +"dcw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/airlock/south/id) +"dcK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/researcher) +"dcU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"ddo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"ddS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/residential/east) +"dem" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"dex" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/camera/autoname{ + network = list("sigma") + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"deD" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"deG" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"deR" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/hallwaysouth) +"dfg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"dfB" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"dfT" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/item/tool/mop, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"dfV" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"dgp" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/west) +"dgq" = ( +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/omega/offices) +"dgx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"dgJ" = ( +/obj/structure/machinery/door_control{ + id = "RemoteGateO"; + name = "Gate Shutters"; + pixel_x = 24; + use_power = 0 + }, +/obj/structure/closet/crate/science, +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"dhG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"dhN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"dio" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail/control) +"diw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_cave_9, +/area/corsat/sigma/biodome) +"diD" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"diI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"diP" = ( +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/researcher) +"djC" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"djF" = ( +/turf/open/floor/corsat, +/area/corsat/gamma/residential/researcher) +"djM" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"djR" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"dky" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"dkK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"dlz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagent_analyzer, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"dlO" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"dlP" = ( +/obj/structure/closet/coffin, +/turf/open/floor/corsat/green/west, +/area/corsat/gamma/medbay/morgue) +"dlU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"dml" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/checkpoint) +"dmD" = ( +/obj/structure/machinery/door_control{ + id = "SigmaGate"; + name = "Gate Shutters"; + pixel_y = 24; + use_power = 0 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"dmE" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/east) +"dmK" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"dmP" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydroeast) +"dmR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) +"dnZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/purple, +/area/corsat/omega/hallways) +"dos" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"dqi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"dqt" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Teachers' Office"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"dqu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/sigma/dorms) +"dqQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"dqR" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"drp" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Gamma Landing Zone" + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"drv" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/gm/river/desert/shallow/pool, +/area/corsat/gamma/residential/showers) +"drC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/sigma/dorms) +"drE" = ( +/obj/structure/machinery/power/reactor/colony{ + desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; + name = "\improper G-17 Thermoelectric Generator" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering/core) +"drW" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/southeast/datamaint) +"dso" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"dsw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"dsF" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"dta" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"dtd" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"dte" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/south/engineering) +"dtl" = ( +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/flightcontrol) +"dtU" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"dug" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"dui" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/theta/airlock/control) +"duk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"duC" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/corsat/white/northwest, +/area/corsat/sigma/south) +"duW" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"duY" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/hallwaysouth) +"dvn" = ( +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/hallwaysouth) +"dvp" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/platform, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"dvx" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"dvE" = ( +/turf/open/floor/corsat/purplecorner/west, +/area/corsat/gamma/residential) +"dvI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"dwa" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/theta/biodome/complex) +"dwl" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/hangar) +"dwr" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/dorms) +"dwH" = ( +/obj/structure/prop/almayer/computers/mapping_computer, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"dwM" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Cables" + }, +/obj/structure/cryofeed/right{ + color = "silver"; + desc = "A bewildering tangle of machinery and pipes."; + name = "\improper coolant feed" + }, +/turf/open/shuttle/escapepod/floor5, +/area/corsat/theta/biodome/complex) +"dwS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"dwW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer2, +/area/corsat/gamma/biodome) +"dxx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/assembly/signaller, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"dxy" = ( +/turf/open/gm/river/desert/shallow/pool, +/area/corsat/gamma/residential/showers) +"dxB" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"dxS" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "GammaCargo"; + name = "Gamma Cargo Bay"; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/cargo) +"dyd" = ( +/obj/structure/machinery/light, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"dyK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"dyU" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/hangar/monorail) +"dyY" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west) +"dzB" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"dzT" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/security) +"dzV" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"dzX" = ( +/turf/open/floor/corsat/browncorner, +/area/corsat/gamma/foyer) +"dzZ" = ( +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"dAk" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/south) +"dAW" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"dBi" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/security) +"dBx" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"dBy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_13, +/area/corsat/sigma/biodome) +"dBW" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/sigmaremote) +"dCv" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"dCP" = ( +/obj/structure/stairs{ + dir = 8 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/sigma/south) +"dDj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"dDl" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth/id) +"dDt" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/foyer) +"dEe" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"dET" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"dFb" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"dFe" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"dFL" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/theta/biodome/complex) +"dFP" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast/generator) +"dGb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"dHa" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"dHG" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"dIa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"dIo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/complex) +"dII" = ( +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"dJR" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"dJV" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy16" + }, +/area/prison/hangar_storage/research/shuttle) +"dKg" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/hangar/security) +"dKn" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"dKv" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"dKE" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/monorail) +"dLL" = ( +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"dLX" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"dMo" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"dMH" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"dMR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"dNa" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"dNb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"dNd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"dNs" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/omega/maint) +"dNC" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/sigma/north) +"dNS" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"dOo" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"dOq" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) +"dOu" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"dOw" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"dOB" = ( +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/canteen) +"dOF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"dPH" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"dPK" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/core) +"dPV" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/omega/control) +"dQc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"dQp" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/airlocknorth/id) +"dQJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"dQL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"dQQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/lounge) +"dQW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"dRz" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south) +"dRI" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/gamma/hangar/flightcontrol) +"dSc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"dSi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"dSM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/foyer) +"dTb" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"dTy" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"dUj" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Sigma Landing Zone" + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar) +"dUn" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/canteen) +"dVM" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"dVN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"dVQ" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"dWc" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"dWk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/residential) +"dWJ" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"dWY" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south/engineering) +"dXm" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"dXp" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"dXq" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/virology) +"dXy" = ( +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering/core) +"dXO" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"dXW" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"dYh" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/phone, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"dYk" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"dYB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"dYJ" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"dYM" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hangar/arrivals) +"dZe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"dZu" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"dZH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"dZW" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"eaL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"eaN" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"ebq" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"eby" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"ebE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"ebH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/residential/east) +"ebK" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"ect" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"ecA" = ( +/obj/structure/machinery/light, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/toxins) +"ecX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"edy" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"edN" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"edO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/hangar) +"edP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"eeG" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"eeL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/browncorner/west, +/area/corsat/gamma/cargo) +"eeN" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"efN" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/west) +"egd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"egq" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"egJ" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/airlock/control) +"egM" = ( +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"egZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/sigma/south/complex) +"ehg" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/vents/pump, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"ehj" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/omega/offices) +"ehy" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/gamma/hangar/flightcontrol) +"ehC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"ehN" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"ehS" = ( +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/researcher) +"ehU" = ( +/obj/structure/surface/table, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"eii" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, +/area/corsat/theta/biodome) +"eiG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"eiQ" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"eiR" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hallways) +"ejb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/security) +"eji" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/airlocknorth/id) +"ejk" = ( +/obj/structure/cargo_container/hd/mid/alt, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"ejl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/mars, +/area/corsat/sigma/biodome) +"ejD" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/pistachios, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"ejL" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"ekd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"ekK" = ( +/obj/structure/machinery/smartfridge/seeds, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydrowest) +"ekM" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/south/security) +"elt" = ( +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/south/id) +"elG" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"elR" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"elX" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"ema" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"emb" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south) +"eme" = ( +/obj/structure/janitorialcart, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) +"emC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"enf" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/omega/complex) +"enu" = ( +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/morgue) +"enU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"eon" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"eoE" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/checkpoint) +"eoF" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"eoZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"epc" = ( +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/omega/hallways) +"epg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetancorner, +/area/corsat/sigma/dorms) +"epm" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"epq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"epI" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/airlock/south/id) +"epN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/security) +"eqa" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"eqg" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"eql" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"eqt" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"equ" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/airlock/control) +"eqz" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/engineering/atmos) +"eqF" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential) +"eqK" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/foyer) +"eqM" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"erb" = ( +/turf/open/floor/corsat/brown, +/area/corsat/omega/cargo) +"erc" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"erh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/theta/airlock/control) +"ero" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"erP" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/residential/east) +"ese" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"esg" = ( +/obj/structure/surface/table/reinforced, +/obj/item/ashtray/plastic, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"esA" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/south/offices) +"esF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"esV" = ( +/obj/structure/morgue, +/turf/open/floor/corsat/green/west, +/area/corsat/gamma/medbay/morgue) +"etb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) +"etp" = ( +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/west) +"etD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/mars/mars_dirt_12, +/area/corsat/sigma/biodome) +"euc" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/southeast/generator) +"eun" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"euV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_18, +/area/corsat/sigma/biodome) +"evq" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"evv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/robotics) +"ewM" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "CORSAT Academy"; + req_one_access = null + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"ewN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"ewP" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/checkpoint) +"ewT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/turf/open/floor/almayer/research/containment/corner/east, +/area/corsat/gamma/sigmaremote) +"ewW" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/offices) +"exb" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"exf" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/datalab) +"exz" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Teleporter Power Room"; + req_access_txt = "103"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"exC" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/theta/airlock/west/id) +"exY" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"eym" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast) +"eyz" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/corsat/omega/hangar) +"eyA" = ( +/obj/structure/bed{ + icon_state = "psychbed" + }, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"eyK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat, +/area/corsat/gamma/freezer) +"ezs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"ezx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydrowest) +"ezJ" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"ezQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"ezR" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"eAD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/coast/south, +/area/corsat/theta/biodome) +"eBl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"eBx" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"eCr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"eDd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"eDe" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"eDq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/south/id) +"eDz" = ( +/turf/open/floor/plating/warnplate, +/area/corsat/sigma/hangar) +"eDK" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"eDM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"eDP" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"eDZ" = ( +/turf/open/floor/corsat/blue/northeast, +/area/corsat/gamma/hallwaysouth) +"eEJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/theta/airlock/control) +"eEW" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/southeast/generator) +"eGx" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hangar/security) +"eGM" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"eGQ" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"eHn" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"eIq" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/corsat/sigma/cargo) +"eIL" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/corsat/theta/biodome) +"eJg" = ( +/turf/open/floor/corsat/green/northeast, +/area/corsat/gamma/hallwaysouth) +"eJz" = ( +/obj/effect/landmark/corpsespawner/wysec, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"eKm" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"eKJ" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"eKL" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/administration) +"eKV" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/sigma/south/complex) +"eLc" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"eLP" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"eLR" = ( +/obj/structure/stairs{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"eMu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr/bar) +"eMB" = ( +/obj/structure/flora/jungle/planttop1, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"eMI" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" + }, +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"eMM" = ( +/obj/effect/alien/weeds/node, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"eNm" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/sigmaremote) +"eNn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/research/containment/corner/north, +/area/corsat/sigma/south/complex) +"eNI" = ( +/obj/structure/platform{ + density = 0; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner, +/area/corsat/sigma/south) +"eNM" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"eOe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer2, +/area/corsat/gamma/biodome) +"eOI" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"eOS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/greenwhite/southwest, +/area/corsat/gamma/medbay) +"eOZ" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"ePL" = ( +/obj/structure/closet/l3closet/general, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"eQR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"eRg" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"eRi" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"eRE" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/theta/airlock/west/id) +"eRX" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"eSg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"eSC" = ( +/obj/structure/machinery/light, +/obj/structure/bed, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"eSY" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"eTf" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"eTg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/theta/airlock/control) +"eTj" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"eTC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/residential/east) +"eTR" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"eUe" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"eUf" = ( +/turf/open/floor/corsat/purplecorner/north, +/area/corsat/sigma/south) +"eUn" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/omega/containment) +"eUB" = ( +/turf/open/floor/corsat/green/east, +/area/corsat/gamma/hallwaysouth) +"eUE" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"eUK" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/hydrowest) +"eUR" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south) +"eVe" = ( +/turf/open/floor/corsat/browncorner/north, +/area/corsat/omega/hallways) +"eVr" = ( +/obj/structure/coatrack, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"eVI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/complex) +"eVQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/sigma/south/complex) +"eWX" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"eXi" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hangar/arrivals) +"eXO" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/camera, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"eXS" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/sigma/dorms) +"eXX" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"eYe" = ( +/obj/structure/bedsheetbin, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"eYr" = ( +/obj/structure/surface/rack, +/obj/item/storage/briefcase, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/hangar/security) +"eYv" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"eYG" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"eYT" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/security) +"eZq" = ( +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/residential/west) +"eZv" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) +"eZQ" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"fax" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"faF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/complex) +"faT" = ( +/turf/open/floor/corsat/browncorner/north, +/area/corsat/gamma/cargo) +"fbe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"fbs" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"fcd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"fcq" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) +"fdc" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/corsat, +/area/corsat/gamma/residential/researcher) +"fdf" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/omega/hallways) +"fdh" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/biodome/complex) +"feg" = ( +/obj/structure/closet/crate/science, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"fey" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"feC" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"feD" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"feQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"feZ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/robotics) +"ffa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/hallwaysouth) +"ffc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/security) +"ffl" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"ffp" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential/east) +"ffC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/sigma/hangar/office) +"ffF" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"ffQ" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south) +"fgs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/corsat/sigma/south/complex) +"fgu" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"fgN" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"fha" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/north) +"fhb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"fhG" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/black_random, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"fid" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/toxins) +"fie" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"fip" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"fkn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"fkG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Hangar Security"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"fkV" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"fkX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"flh" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner, +/area/corsat/omega/cargo) +"fll" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south) +"flo" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/gamma/foyer) +"flt" = ( +/obj/vehicle/train/cargo/trolley, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"flB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"flQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"fmd" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"fmk" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"fmq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"fmw" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"fmC" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/reinforced, +/obj/item/device/assembly/voice, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"fmF" = ( +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar) +"fmM" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"fmR" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) +"fmZ" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/north) +"fnd" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("omega") + }, +/turf/open/floor/corsat/purple, +/area/corsat/omega/hallways) +"fnz" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"fog" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"foQ" = ( +/obj/structure/tunnel{ + id = "hole2" + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"fps" = ( +/obj/structure/machinery/atm{ + pixel_y = -30 + }, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) +"fpI" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"fpL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"fqj" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"fqk" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("theta") + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydrowest) +"fqp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"frk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome) +"fsd" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/red, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"fsn" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"fsr" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"fst" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"fsu" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hallways) +"fsx" = ( +/turf/open/auto_turf/snow/layer4, +/area/corsat/gamma/biodome) +"fsL" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"fsP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"fsS" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"ftj" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/syringes, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"ftx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"ftX" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar) +"fue" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/closed/gm/dense, +/area/corsat/theta/biodome) +"fum" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south) +"fuG" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"fuK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/airlocknorth/id) +"fwq" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"fwQ" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) +"fxf" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/residential/east) +"fxn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"fxM" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/airlock/control) +"fxW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/airlocknorth/id) +"fyq" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) +"fyy" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering/atmos) +"fyC" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/gamma/hangar/office) +"fyM" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/datalab) +"fyO" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"fzd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"fzm" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"fzo" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/hangar/security) +"fzy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"fzV" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"fBG" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hallways) +"fCi" = ( +/obj/structure/surface/table, +/obj/item/folder, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"fCx" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/gamma/administration) +"fCK" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"fCN" = ( +/obj/item/storage/box/masks, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"fDx" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"fDY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/east) +"fEl" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"fEC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"fEI" = ( +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"fEP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"fFa" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"fFh" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/maint) +"fFI" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"fGJ" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Teleportation Chamber"; + req_one_access_txt = "103" + }, +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"fGM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"fGO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/sigmaremote) +"fGP" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"fGS" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/hallwaysouth) +"fGU" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/sigma/south/complex) +"fGV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"fHO" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat, +/area/corsat/sigma/hangar) +"fHP" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/dorms) +"fHX" = ( +/obj/structure/closet, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay/morgue) +"fIr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/complex) +"fIY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/hallways) +"fIZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/north) +"fJf" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/southeast) +"fJm" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat, +/area/corsat/gamma/cargo/disposal) +"fJx" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/beakers, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"fJZ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"fKw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"fLm" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/biodome/complex) +"fLz" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"fMi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"fMn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"fMv" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"fMN" = ( +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/canteen) +"fNy" = ( +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/canteen) +"fOd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"fOh" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"fPp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) +"fPK" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/airlock/control) +"fQl" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/airlock/control) +"fQm" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"fQC" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/cargo) +"fRD" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/arrivals) +"fRR" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"fSo" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"fSr" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hallwaysouth) +"fSA" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"fSB" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/sigma/hangar/arrivals) +"fSU" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/security) +"fSX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/plating, +/area/prison/hangar_storage/research/shuttle) +"fTw" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/datamaint) +"fTx" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering) +"fTK" = ( +/obj/structure/prop/mech/parts/durand_left_leg, +/turf/open/floor/corsat/arrow_east, +/area/corsat/sigma/south/robotics) +"fTT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"fUj" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"fUp" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"fUA" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/security) +"fVl" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"fVm" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/robotics) +"fVo" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"fWe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"fWx" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"fWK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"fWM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"fWN" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"fXx" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"fXA" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/airlock/control) +"fXE" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"fXJ" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"fXP" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/security) +"fYL" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"fZq" = ( +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/security) +"fZQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"fZW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"gab" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"gak" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/east) +"gaF" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/security) +"gaO" = ( +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south) +"gaP" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/virology) +"gbd" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"gbm" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"gbw" = ( +/turf/open/floor/corsat/browncorner/east, +/area/corsat/gamma/cargo) +"gbQ" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"gcs" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/hydroeast) +"gcy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/hangar) +"gcE" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hallwaysouth) +"gcM" = ( +/turf/open/floor/plating/warnplate, +/area/corsat/omega/hangar) +"gcW" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/theta/airlock/control) +"gdy" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"gdD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_cave_12, +/area/corsat/sigma/biodome) +"gdM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/id) +"gdO" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"ged" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"gei" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"gew" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south) +"geN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/corsat/theta/biodome) +"geV" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"gft" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"gfC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"gfL" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("theta") + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"gfM" = ( +/obj/structure/machinery/smartfridge/seeds, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydroeast) +"ggc" = ( +/obj/structure/closet/crate/science, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"ggh" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/monorail/control) +"ggq" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"ggO" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security/cells) +"ggU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"ghu" = ( +/obj/effect/landmark/corpsespawner/wysec, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"ghx" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"ghB" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"ghJ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"gio" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/airlock/control) +"giX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purplecorner/west, +/area/corsat/sigma/south) +"gjb" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome/scrapyard) +"gjh" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/security) +"gjj" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"gjt" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/plating, +/area/prison/hangar_storage/research/shuttle) +"gjw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"gjX" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/checkpoint) +"gke" = ( +/turf/open/floor/corsat/brown/southwest, +/area/corsat/sigma/cargo) +"gki" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"gkx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"gkA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"gkC" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail) +"gkH" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/sigmaremote) +"gkU" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "GammaSouthAirlockC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/gamma/airlock/south/id) +"glr" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"gne" = ( +/turf/open/floor/corsat/brown/north, +/area/corsat/omega/hallways) +"gnm" = ( +/obj/structure/closet/wardrobe/toxins_white, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"gnC" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay) +"gnF" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/southeast/datalab) +"gnO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + layer = 3 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"gnR" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"goe" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/omega/airlocknorth) +"gok" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"goV" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"gpn" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south/robotics) +"gpu" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering Storage"; + req_one_access_txt = "102" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"gpP" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"gqd" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"gqi" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"gqo" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"gqE" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"gqH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"gqK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"gqT" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/vents/pump, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"gqV" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"gra" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"grc" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/engineering) +"gre" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/river, +/area/corsat/theta/biodome) +"grf" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"grg" = ( +/obj/structure/surface/table, +/obj/item/book, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"grD" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"grK" = ( +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) +"gsg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"gtc" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"gth" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"gtp" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"gtr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"gtI" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"gtP" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential) +"gtX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"gud" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/hallways) +"gui" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"guq" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"guA" = ( +/obj/structure/curtain/open/medical, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"guG" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"guS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/foyer) +"gvh" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"gvi" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"gvl" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"gvs" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/wood, +/area/corsat/theta/biodome/complex) +"gwV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/east/id) +"gwW" = ( +/obj/structure/surface/table/reinforced, +/obj/item/phone, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/hangar/office) +"gwY" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"gxb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"gxp" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/virology) +"gxu" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"gyg" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/datalab) +"gys" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/cmb, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) +"gyx" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Hangar Security"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"gyK" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"gze" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/hangar/monorail) +"gzf" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/corsat, +/area/corsat/sigma/cargo) +"gzz" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) +"gzB" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"gzL" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west) +"gAh" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"gAt" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential) +"gAv" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"gBh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"gBx" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"gCo" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential) +"gCN" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"gCO" = ( +/turf/open/floor/corsat/green, +/area/corsat/gamma/hallwaysouth) +"gEf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"gEm" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"gEy" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"gEU" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"gEV" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/gamma/airlock/control) +"gFh" = ( +/obj/structure/flora/jungle/alienplant1, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"gGb" = ( +/obj/structure/surface/table, +/obj/item/book, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"gGF" = ( +/turf/open/floor/corsat/greenwhitecorner, +/area/corsat/gamma/medbay/morgue) +"gGQ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("omega") + }, +/turf/open/floor/corsat/blue/southwest, +/area/corsat/omega/control) +"gGR" = ( +/obj/structure/surface/rack, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"gGT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"gGZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"gHg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"gHn" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"gIe" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/purple/east, +/area/corsat/omega/hallways) +"gIT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/omega/offices) +"gJn" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/foyer) +"gJr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"gJz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"gJS" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/checkpoint) +"gJX" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/biodome, +/area/corsat/theta/airlock/west/id) +"gKn" = ( +/obj/structure/closet/wardrobe, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"gKu" = ( +/turf/open/floor/corsat/browncorner, +/area/corsat/gamma/hallwaysouth) +"gKQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/gamma/sigmaremote) +"gLs" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/inaccessible) +"gLM" = ( +/obj/structure/fence, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"gLW" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/hangar/arrivals) +"gMC" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar) +"gMY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/hangar/security) +"gNb" = ( +/turf/open/floor/corsat/purple, +/area/corsat/omega/complex) +"gNt" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"gOk" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"gOx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/rnr) +"gOO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/biodome/complex) +"gOP" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"gOU" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"gOZ" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"gPd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"gPk" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/foyer) +"gPo" = ( +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/hallwaysouth) +"gPC" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/arrivals) +"gPN" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"gPU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"gPX" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"gQj" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/corsat/gamma/airlock/south/id) +"gQL" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay/lobby) +"gRf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purple/west, +/area/corsat/sigma/south) +"gRg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"gRm" = ( +/obj/structure/bed/stool{ + pixel_y = 15 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"gRB" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/north) +"gRE" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"gRP" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Morgue"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/morgue) +"gSm" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"gSu" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/sigma/south/complex) +"gSC" = ( +/obj/structure/largecrate/random/barrel, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/corsat/gamma/cargo/disposal) +"gSI" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/office) +"gSQ" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" + }, +/turf/open/shuttle/escapepod/floor5, +/area/corsat/theta/biodome/complex) +"gTe" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"gUe" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/prop/almayer/computers/mapping_computer, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"gUj" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/dorms) +"gUs" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"gUw" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 + }, +/obj/item/organ/kidneys, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"gUX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/theta/biodome/complex) +"gVr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"gVw" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/dorms) +"gVM" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/offices) +"gVR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"gWS" = ( +/obj/structure/surface/table, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"gWU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome) +"gXp" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"gXv" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"gXG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"gXL" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) +"gXM" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/purple/southwest, +/area/corsat/sigma/south) +"gXN" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"gYm" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/maint) +"gYr" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"gYA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"gYL" = ( +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/gamma/sigmaremote) +"gZc" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"gZj" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/southeast/dataoffice) +"gZs" = ( +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/sigma/south) +"gZw" = ( +/obj/effect/landmark/corpsespawner/chef, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"gZB" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"gZF" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"gZH" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"hap" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"hat" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetancorner, +/area/corsat/sigma/dorms) +"hay" = ( +/obj/structure/closet/secure_closet/security_empty{ + name = "Warden's Locker" + }, +/obj/item/clothing/head/beret/sec/warden, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/office) +"haG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Showers" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"hbu" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/beakers, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"hbB" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/south/robotics) +"hbF" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/omega/control) +"hbX" = ( +/turf/open/floor/carpet5_1/west, +/area/corsat/omega/offices) +"hcg" = ( +/obj/structure/pipes/vents/pump, +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"hcH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/north) +"hcU" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"hdB" = ( +/obj/structure/flora/jungle/plantbot1, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"hdG" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"hdR" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"heb" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"hed" = ( +/obj/structure/sign/safety/storage, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/cargo) +"hei" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"hel" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"heo" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/hallwaysouth) +"hep" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/security) +"heL" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"hfG" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8; + layer = 2.8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"hgB" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/airlocknorth/id) +"hhb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"hhj" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/west) +"hho" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/gamma/sigmaremote) +"hhA" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/blue, +/area/corsat/gamma/hallwaysouth) +"hhP" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"hhT" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"hiw" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/theta/biodome/complex) +"hjq" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"hjU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"hkn" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/theta/biodome/complex) +"hkp" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"hkZ" = ( +/turf/open/floor/corsat/brown/southeast, +/area/corsat/omega/cargo) +"hle" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"hlf" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/almayer/plating_striped, +/area/corsat/gamma/sigmaremote) +"hls" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/corsat, +/area/corsat/omega/complex) +"hlC" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/security) +"hlM" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "SigmaWestW"; + name = "Sigma West Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"hmO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/theta/airlock/control) +"hnr" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/sigma/hangar/arrivals) +"hnx" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"hnR" = ( +/obj/structure/flora/jungle/plantbot1, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"hoh" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"hok" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"hoC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"hpB" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"hpC" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"hpM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"hqa" = ( +/obj/structure/machinery/light, +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/arrivals) +"hqd" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/airlock/control) +"hqv" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"hqA" = ( +/turf/open/floor/corsat/brown/west, +/area/corsat/gamma/cargo) +"hqU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/corsat/theta/biodome) +"hqX" = ( +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"hrf" = ( +/obj/structure/surface/table, +/obj/item/folder/yellow, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"hsq" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"hsr" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"hsD" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/south) +"hsJ" = ( +/obj/structure/surface/table, +/obj/item/paper, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"hsM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + pixel_x = 5; + pixel_y = 2; + use_power = 0 + }, +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/hangar/office) +"hta" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"hte" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/west) +"htv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"htZ" = ( +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential) +"huc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"hun" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"huo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"hur" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"huu" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/ice, +/area/corsat/gamma/biodome) +"huv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"huK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/airlock/control) +"huL" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/morgue) +"huQ" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"hva" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/dorms) +"hvj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/white/southeast, +/area/corsat/gamma/hallwaysouth) +"hvl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"hvn" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"hvz" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"hvD" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south) +"hvT" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"hvZ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"hwe" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"hws" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"hwI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/security) +"hwV" = ( +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"hwW" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/airlock/control) +"hxc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/researcher) +"hxl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"hxW" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"hyf" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"hyG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/toxins) +"hyY" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/binoculars, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"hze" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/ice, +/area/corsat/gamma/biodome) +"hzk" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/surgery) +"hzm" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/barricade/handrail{ + layer = 3 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"hzM" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast/datamaint) +"hzU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/researcher) +"hAB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"hBo" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/core) +"hBp" = ( +/obj/structure/machinery/medical_pod/sleeper{ + flags_atom = 18 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"hBq" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"hBA" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"hBF" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/robotics) +"hBM" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"hCm" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"hCt" = ( +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/residential/east) +"hCG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"hCJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Firing Range"; + req_one_access_txt = "106;102;103"; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"hCY" = ( +/obj/structure/safe, +/obj/item/stack/sheet/mineral/diamond{ + amount = 5 + }, +/obj/item/stack/sheet/mineral/uranium{ + amount = 5 + }, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"hDl" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"hDE" = ( +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay/morgue) +"hDF" = ( +/turf/open/floor/corsat, +/area/corsat/gamma/cargo/disposal) +"hDO" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, +/area/corsat/theta/biodome) +"hDX" = ( +/turf/open/floor/corsat/browncorner/west, +/area/corsat/omega/cargo) +"hEb" = ( +/obj/structure/closet/cabinet, +/obj/item/device/camera, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"hEi" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"hEt" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/east) +"hEH" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"hFc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"hFh" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaSecC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/omega/security) +"hFm" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"hFo" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"hFR" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/hangar/monorail/control) +"hFW" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hangar) +"hGd" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Hub"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"hGf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/corsat/theta/biodome) +"hGg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"hHg" = ( +/obj/item/reagent_container/spray/cleaner, +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"hHn" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Airlock Control"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/control) +"hHx" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hangar) +"hHy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/ice, +/area/corsat/gamma/biodome) +"hHA" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/inaccessible) +"hHL" = ( +/obj/item/alien_embryo{ + color = "#00ff80"; + name = "corrupted alien embryo" + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/inaccessible) +"hHM" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"hId" = ( +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/residential) +"hIh" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) +"hIo" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/gamma/hangar/flightcontrol) +"hJw" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"hJG" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/hangar/arrivals) +"hJI" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) +"hKc" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"hKi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/white/southeast, +/area/corsat/gamma/residential/east) +"hKt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"hKA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"hKD" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"hKH" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"hKZ" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"hLh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"hLL" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"hMo" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"hMx" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"hMR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"hNh" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"hNA" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/theta/biodome/hydrowest) +"hNI" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/tunnel{ + id = "hole3" + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"hNL" = ( +/obj/structure/machinery/power/reactor/colony{ + desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; + name = "\improper G-17 Thermoelectric Generator" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "0-8"; + layer = 2.1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering/core) +"hOb" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/airlock/south) +"hOw" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/office) +"hOU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintenance Closet"; + req_one_access = null + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/sigmaremote) +"hOV" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"hPg" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"hPi" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"hPr" = ( +/obj/item/storage/box/gloves, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"hPy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"hPF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) +"hPL" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"hQb" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"hQf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/checkpoint) +"hQS" = ( +/turf/open/floor/corsat/blue, +/area/corsat/omega/hallways) +"hRb" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/control) +"hRI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"hRK" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"hRQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"hSo" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/checkpoint) +"hSr" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"hSv" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Research Desk" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"hSQ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("gamma") + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/airlock/south) +"hST" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"hTd" = ( +/obj/structure/showcase, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"hTe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"hTr" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/hallwaysouth) +"hTI" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintenance Closet"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"hUR" = ( +/obj/structure/machinery/door/window/southleft, +/obj/structure/machinery/door/window/northleft, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"hUS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/sigmaremote) +"hUY" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/hallways) +"hVq" = ( +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/omega/complex) +"hVx" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/maint) +"hVF" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "ThetaWestW"; + name = "Theta West Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/west) +"hVR" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/containment) +"hWg" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/southeast) +"hWx" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"hWW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/monkeycubes, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"hXH" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/south/offices) +"hYo" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"hYs" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/security) +"hYI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/southeast/datamaint) +"hYU" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"hYZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"hZu" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/security) +"hZO" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/syringe/antiviral, +/obj/item/reagent_container/syringe/antiviral, +/obj/item/reagent_container/glass/beaker/vial, +/obj/item/reagent_container/glass/beaker/vial, +/obj/item/reagent_container/glass/beaker/vial, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"hZU" = ( +/obj/structure/machinery/botany{ + name = "hydroponics tray" + }, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"iav" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/south/security) +"ibe" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"ibz" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"ick" = ( +/turf/open/floor/corsat/purplecorner/north, +/area/corsat/omega/hallways) +"ict" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/monorail/control) +"icZ" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"idf" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/item/tank/air, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"idU" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"iei" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"iem" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"ieU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"ieZ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"ifh" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/researcher) +"ifj" = ( +/obj/structure/window/reinforced, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"ifx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) +"ifS" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/east) +"ifX" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/airlock/south/id) +"igg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"iho" = ( +/turf/open/floor/corsat/white/east, +/area/corsat/sigma/dorms) +"ihD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"ihL" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/datalab) +"ihN" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/complex) +"iik" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"iiI" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/corsat/theta/biodome) +"iiS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/airlock/south) +"iiX" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/airlock/east/id) +"iiY" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"ijA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"ijV" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"ikv" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/sigma/southeast/datalab) +"ikC" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Holding Cell"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"ikQ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"ill" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/researcher) +"ilm" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/theta/airlock/west/id) +"ilo" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"ilr" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"ilF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"ilI" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/west/id) +"ilZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"ims" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/ice, +/area/corsat/gamma/biodome) +"imz" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"imK" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/assembly/timer, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"ing" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"inT" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/greenwhitecorner, +/area/corsat/gamma/medbay) +"inY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/mars/mars_dirt_3, +/area/corsat/sigma/biodome) +"inZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner/west, +/area/corsat/omega/cargo) +"ioh" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/residential/lounge) +"ipE" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"iqp" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"iqx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"iqE" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("gamma") + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"iqY" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/north) +"irp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/arrow_south, +/area/corsat/sigma/hangar) +"irP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"ish" = ( +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hallways) +"isS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Laboratory"; + req_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"isY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/sigma/dorms) +"itb" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/virology) +"ito" = ( +/obj/structure/janitorialcart, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"its" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"itD" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("omega") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/airlocknorth) +"iul" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/hangar) +"iuz" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/hangar) +"iuD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"ivy" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"ivW" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/north/id) +"iwx" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"iwB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/gamma/residential/west) +"iwU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"ixd" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/datalab) +"ixm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"ixZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"iyp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "SigmaHangarC-E"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/security) +"iys" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"iyA" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"izl" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "riot cabinet"; + req_access_txt = "100" + }, +/obj/item/xeno_restraints, +/obj/item/xeno_restraints, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/security) +"izn" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"izt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/airlock/control) +"iAy" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/southeast/datalab) +"iAD" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"iAI" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"iAO" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/biodome/toxins) +"iBg" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"iBo" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"iBs" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"iBO" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"iCm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"iCo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/rnr) +"iCA" = ( +/obj/structure/machinery/botany{ + name = "hydroponics tray" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"iCN" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/machine/clonepod, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"iCP" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/south/id) +"iDB" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/dorms) +"iDD" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/corsat/omega/hangar) +"iDH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"iDV" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"iEg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/security) +"iEF" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"iEH" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"iEN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"iEY" = ( +/turf/open/floor/corsat/brown/southeast, +/area/corsat/gamma/cargo) +"iFy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"iFL" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/hallways) +"iGT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/sigma/south/complex) +"iHc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/medbay/morgue) +"iHo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"iHY" = ( +/turf/open/floor/corsat/browncorner/east, +/area/corsat/omega/hallways) +"iIf" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Research Hallway"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"iIu" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/west) +"iIK" = ( +/obj/structure/bed/sofa/vert/white/bot, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"iIU" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"iJv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"iJz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/cargo) +"iJB" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"iKn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/white/southwest, +/area/corsat/sigma/dorms) +"iLj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"iLv" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"iLw" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/hangar/cargo) +"iLN" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"iLZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"iMM" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/gamma/administration) +"iNk" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"iNl" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/corsat, +/area/corsat/gamma/cargo/disposal) +"iNR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/south/id) +"iNZ" = ( +/turf/open/floor/carpet9_4/west, +/area/corsat/omega/offices) +"iOe" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/omega/hallways) +"iOi" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydrowest) +"iOL" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"iOP" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"iOR" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/hangar/checkpoint) +"iOW" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"iPn" = ( +/obj/structure/platform{ + density = 0; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"iPo" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/corsat, +/area/corsat/sigma/south/robotics) +"iQh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"iQi" = ( +/turf/open/floor/corsat/green/east, +/area/corsat/gamma/medbay/morgue) +"iQs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"iQE" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential/researcher) +"iQH" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"iQL" = ( +/obj/structure/closet/wardrobe/robotics_black, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"iQQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"iQY" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"iRw" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/hangar) +"iSB" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/arrivals) +"iTt" = ( +/obj/structure/platform{ + density = 0; + dir = 1; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/hallwaysouth) +"iTL" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/sigma/south/complex) +"iTT" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/north/id) +"iTW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/corsat/theta/biodome) +"iVp" = ( +/obj/structure/machinery/light, +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"iVA" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"iWo" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"iWx" = ( +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/gamma/residential/west) +"iWA" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper, +/obj/item/tool/pen, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"iWH" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering) +"iWK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"iWO" = ( +/obj/structure/surface/table, +/obj/item/folder/blue, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"iXU" = ( +/turf/open/floor/corsat/whitetancorner, +/area/corsat/sigma/dorms) +"iYj" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"iYG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/theta/biodome/complex) +"iYR" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/engineering/core) +"iZu" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/hallwaysouth) +"iZv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"iZz" = ( +/obj/structure/closet/cabinet, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"iZQ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Living Room"; + req_one_access = null + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"iZZ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/sigma/dorms) +"jai" = ( +/obj/structure/platform{ + density = 0; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/hallwaysouth) +"jaJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"jba" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"jbj" = ( +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/west) +"jbN" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/checkpoint) +"jcl" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"jcA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"jdj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "GammaA"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = 6; + use_power = 0 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = 8; + pixel_y = 3 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"jdk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/auto_turf/snow/layer2, +/area/corsat/gamma/biodome) +"jdt" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/deck/uno, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"jdV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"jee" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west/id) +"jeE" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/theta/airlock/control) +"jfP" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/rnr) +"jfW" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/exosuit/main/max, +/obj/item/circuitboard/exosuit/peripherals/max/targeting, +/obj/item/circuitboard/exosuit/peripherals/max, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"jgb" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/retractor, +/obj/item/tool/surgery/bonesetter, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/surgery) +"jgG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) +"jgI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"jgM" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/airlock/control) +"jho" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/complex) +"jhz" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"jhL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"jhN" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/theta/airlock/control) +"jhO" = ( +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/administration) +"jhR" = ( +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/prison/hangar_storage/research/shuttle) +"jja" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/gamma/hallwaysouth) +"jjb" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"jjz" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"jjC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"jjN" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"jkb" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"jlp" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/west) +"jlL" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"jlU" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("theta") + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"jme" = ( +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"jmg" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/checkpoint) +"jmL" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/syringes, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/biodome/complex) +"jmO" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) +"jmQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/turf/open/floor/almayer/research/containment/corner/east, +/area/corsat/sigma/south/complex) +"jmU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"jnb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"jno" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/sigma/hangar/monorail) +"jns" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"jnt" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaEastID"; + name = "Security Shutters"; + use_power = 0 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/east/id) +"jnA" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"jnI" = ( +/obj/structure/xenoautopsy/tank, +/turf/open/floor/corsat, +/area/corsat/omega/complex) +"jnX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"jok" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/skills{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/biodome/complex) +"jpn" = ( +/obj/structure/surface/rack, +/obj/item/toy/plush/farwa, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hangar/security) +"jpB" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/hangar/arrivals) +"jqo" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/biodome, +/area/corsat/theta/airlock/west) +"jqz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"jrQ" = ( +/obj/structure/bed/stool{ + pixel_y = 15 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"jsp" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/obj/structure/machinery/vending/cola, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"jsq" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"jsK" = ( +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/brown/west, +/area/corsat/gamma/cargo) +"jtY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"juf" = ( +/obj/structure/closet/cabinet, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"juh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"juk" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/security) +"juq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"juA" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/security) +"juI" = ( +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"jvk" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"jvC" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"jvG" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"jwv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_11, +/area/corsat/sigma/biodome) +"jwx" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"jwE" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"jxA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"jxN" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"jxR" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"jyb" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"jyk" = ( +/obj/structure/surface/rack, +/obj/item/device/binoculars, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"jyK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/black, +/area/corsat/gamma/hangar/monorail/railcart) +"jyM" = ( +/turf/open/floor/corsat/browncorner/west, +/area/corsat/omega/hallways) +"jyR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"jyX" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"jyZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"jzn" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"jzM" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"jAd" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"jAq" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/security) +"jAz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"jAE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"jAO" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/corsat/sigma/hangar) +"jBx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_12, +/area/corsat/sigma/biodome) +"jBC" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/wood, +/area/corsat/theta/biodome/complex) +"jCO" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"jDp" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"jDO" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"jEI" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/southeast) +"jEK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/west) +"jFF" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential/researcher) +"jFJ" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/sigma/hangar/arrivals) +"jFP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"jGa" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/sigma/dorms) +"jGd" = ( +/obj/structure/platform{ + density = 0; + dir = 1; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/hallwaysouth) +"jGk" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/gamma/sigmaremote) +"jGH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/airlock/east) +"jGZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/hangar) +"jHa" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"jHF" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/gamma/hallwaysouth) +"jHV" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/sigma/hangar/monorail) +"jIm" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"jIw" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/brown/north, +/area/corsat/omega/hallways) +"jJm" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/plating/platingdmg3/west, +/area/corsat/sigma/biodome/testgrounds) +"jJp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"jJt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Arrivals" + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"jJv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"jJD" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"jJM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/greenwhitecorner/east, +/area/corsat/gamma/medbay) +"jJN" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/hangar/monorail) +"jJQ" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"jKy" = ( +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/omega/complex) +"jLa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/auto_turf/snow/layer2, +/area/corsat/gamma/biodome) +"jLT" = ( +/obj/structure/bed/chair, +/obj/structure/platform{ + dir = 8; + layer = 2.8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"jLU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"jNU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"jOh" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/airlock/south) +"jOn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/gamma/residential/west) +"jOw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential) +"jOE" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential/researcher) +"jPe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"jPL" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/sparker, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"jQL" = ( +/obj/structure/closet/wardrobe, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"jQT" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"jRl" = ( +/obj/structure/pipes/vents/pump, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"jRw" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/corsat/theta/biodome/complex) +"jRL" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/hallways) +"jSm" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/residential) +"jTg" = ( +/obj/structure/machinery/door_control{ + id = "OmegaCargoN"; + name = "Cargo Door"; + pixel_x = 24; + use_power = 0 + }, +/turf/open/floor/corsat/browncorner/east, +/area/corsat/omega/cargo) +"jTS" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"jUa" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/rnr) +"jUn" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"jUx" = ( +/obj/structure/window/reinforced, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"jUJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"jVn" = ( +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/sigma/dorms) +"jVW" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/gamma/hallwaysouth) +"jWb" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 1 + }, +/turf/open/shuttle/escapepod/floor1, +/area/corsat/theta/biodome/complex) +"jWw" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"jWy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/researcher) +"jWB" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"jWE" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/sigma/north) +"jXg" = ( +/turf/open/floor/corsat/browncorner/west, +/area/corsat/sigma/cargo) +"jXo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/id) +"jYc" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"jYs" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"jYC" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"jYD" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/south/security) +"jYY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"jZk" = ( +/obj/structure/fence, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer1, +/area/corsat/gamma/biodome) +"jZA" = ( +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential/researcher) +"jZU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"kad" = ( +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/robotics) +"kaf" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"kap" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/airlocknorth) +"kar" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"kat" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"kbm" = ( +/obj/structure/surface/table, +/obj/item/device/megaphone, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"kbS" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/mech_bay_recharge_port{ + pixel_x = 8 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"kcb" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"kdl" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/gamma/airlock/north) +"kdn" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"kdA" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"kdH" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"ker" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"keE" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"kfc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/complex) +"kfJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/west) +"kfZ" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"kgn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"kgD" = ( +/turf/open/floor/corsat/brown/northeast, +/area/corsat/gamma/cargo) +"kgO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"kha" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/security/cells) +"khv" = ( +/obj/structure/machinery/lapvend, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"khD" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/sigma/south) +"kiO" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/control) +"kje" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"kjm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/west) +"kjC" = ( +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/residential) +"kjH" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"kjU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/bluecorner, +/area/corsat/gamma/airlock/control) +"kjZ" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"kky" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"kkI" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"kkK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"kkR" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/south/security) +"kkV" = ( +/obj/structure/closet, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/morgue) +"klD" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security/cells) +"klS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"kmf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) +"kmj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/sigma/dorms) +"kmC" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"kmI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/scrapyard) +"kmV" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"knx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"knD" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"knG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/security) +"knS" = ( +/turf/open/floor/corsat/brown/southwest, +/area/corsat/gamma/cargo) +"kof" = ( +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/airlock/east/id) +"koh" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"kow" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"koV" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"koY" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/hallwaysouth) +"kps" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/mars/mars_dirt_8, +/area/corsat/sigma/biodome) +"kpD" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"kpS" = ( +/turf/open/floor/corsat/brown/north, +/area/corsat/omega/cargo) +"kqm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"kqp" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"kqs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential) +"kqA" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth/id) +"kqE" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"kqZ" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/west) +"krn" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/shuttle/escapepod/floor1, +/area/corsat/theta/biodome/complex) +"krK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"krR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"ksk" = ( +/obj/structure/machinery/processor, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"ksn" = ( +/turf/open/floor/corsat/browncorner, +/area/corsat/sigma/cargo) +"ksF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"ksH" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lockdown-highsec" + }, +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/checkpoint) +"ksT" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"ksX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/sigma/dorms) +"kuq" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/airlock/control) +"kuC" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"kuO" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south/id) +"kuU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"kuW" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/bed/nest, +/turf/open/floor/almayer/research/containment/entrance/west, +/area/corsat/inaccessible) +"kvm" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/foyer) +"kvN" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/rnr) +"kwK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"kxc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Hangar Office"; + req_access_txt = "106" + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/office) +"kxs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/brown/southwest, +/area/corsat/gamma/cargo) +"kyb" = ( +/obj/structure/surface/rack, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"kyQ" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/maint) +"kzd" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"kzm" = ( +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/sigmaremote) +"kzA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"kzN" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"kAq" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"kAM" = ( +/turf/open/floor/corsat/purplecorner/north, +/area/corsat/gamma/biodome/complex) +"kBA" = ( +/obj/structure/machinery/disease2/diseaseanalyser, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"kBE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"kBN" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"kBW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/sigmaremote) +"kCb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/mars_cave/mars_cave_12, +/area/corsat/sigma/biodome) +"kCk" = ( +/obj/structure/pipes/vents/pump, +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome) +"kCm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"kCq" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/airlocknorth) +"kCH" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"kDt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/corsat/theta/biodome) +"kDL" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"kEj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"kEq" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/southeast/generator) +"kEJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"kFo" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"kFq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/corsat/gamma/sigmaremote) +"kFE" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/monkeycubes, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"kFZ" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"kGi" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"kGJ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/green/west, +/area/corsat/gamma/hallwaysouth) +"kGK" = ( +/obj/structure/surface/table, +/obj/item/book, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"kGP" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"kGV" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"kHe" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/corsat/gamma/residential/lounge) +"kHk" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"kHP" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/corsat/theta/biodome) +"kIz" = ( +/turf/open/floor/corsat/greencorner/north, +/area/corsat/gamma/hallwaysouth) +"kID" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("theta") + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydroeast) +"kIW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"kJa" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"kJk" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydroeast) +"kJT" = ( +/obj/structure/closet/wardrobe/virology_white, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/virology) +"kKs" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"kKw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"kKB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/security) +"kKK" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = -32 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"kLC" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"kMu" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"kMZ" = ( +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/residential/east) +"kNB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/chemistry) +"kNQ" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/mars_cave/mars_cave_12, +/area/corsat/sigma/biodome) +"kOc" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) +"kOd" = ( +/turf/open/floor/corsat/white, +/area/corsat/gamma/hallwaysouth) +"kOi" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 1 + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/airlock/south) +"kOv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"kOA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/residential/east) +"kOL" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"kPl" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"kPp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"kPC" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"kPH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"kPP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"kPS" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"kQb" = ( +/obj/structure/fence, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"kQd" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"kQe" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"kQS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/shuttle/escapepod/floor5, +/area/corsat/theta/biodome/complex) +"kRa" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "9" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"kRc" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"kRB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"kRO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"kSa" = ( +/turf/open/floor/corsat/greenwhitecorner, +/area/corsat/gamma/medbay) +"kSt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"kSx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/bananapeel{ + name = "tactical banana peel" + }, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"kSD" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"kSG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"kSM" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/engineering) +"kSY" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south/id) +"kTg" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/white/southwest, +/area/corsat/gamma/residential) +"kTx" = ( +/turf/open/floor/corsat/purplecorner/west, +/area/corsat/sigma/south) +"kUp" = ( +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/east) +"kUt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) +"kUV" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/deck, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"kVn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/sigma/dorms) +"kVy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"kVT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"kVZ" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"kWe" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/lobby) +"kWL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"kWZ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"kXj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"kXp" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"kXz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"kYn" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"kYC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/foyer) +"kZy" = ( +/obj/structure/machinery/power/apc/upgraded/power/north, +/turf/open/floor/corsat/red/northwest, +/area/corsat/theta/airlock/west) +"lac" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/theta/airlock/west) +"laE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"laV" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"lbC" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/pillbottles, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"lbY" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"lco" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"lcF" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/biodome/toxins) +"lda" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/airlocknorth) +"ldg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/residential/east) +"ldy" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/sigmaremote) +"ldE" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"ldN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"ldS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydroeast) +"leg" = ( +/obj/structure/sign/safety/laser{ + pixel_x = 32 + }, +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"leI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/machinery/door/window/southright, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"leJ" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/sigma/hangar/arrivals) +"leM" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"leP" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"leR" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/west/id) +"leS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"leW" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("theta") + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"lfF" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/morgue) +"lfH" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/morgue) +"lgo" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/datalab) +"lgt" = ( +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/hallwaysouth) +"lgv" = ( +/obj/structure/surface/table, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"lgx" = ( +/obj/structure/stairs{ + dir = 8 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/hallwaysouth) +"lhi" = ( +/obj/structure/surface/rack, +/obj/item/clothing/shoes/sandal, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"lhl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"lhI" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/security/cells) +"lhL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/security) +"lhS" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"lib" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"lig" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/theta/biodome/complex) +"liQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"ljw" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential) +"lkd" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"lki" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"lkk" = ( +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/datalab) +"lkm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"lko" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"lkv" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/sigmaremote) +"lkF" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"lla" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"llr" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/lounge) +"llM" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/south) +"lmx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"lmD" = ( +/obj/structure/machinery/autodispenser{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"lmV" = ( +/obj/structure/pipes/vents/pump, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"lnc" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"lnG" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "GammaSouthID"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/airlock/south/id) +"lnM" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/security) +"lnQ" = ( +/obj/structure/window_frame/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/biodome/complex) +"lnW" = ( +/obj/structure/surface/table/reinforced, +/obj/item/phone, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"lom" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/south/id) +"lop" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"loF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/researcher) +"lps" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/machinery/camera/autoname{ + network = list("sigma") + }, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/monorail) +"lqm" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/corsat/purple/north, +/area/corsat/omega/hallways) +"lqK" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/south) +"lqR" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/toy/deck/uno, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"lqX" = ( +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"lrQ" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "GammaSouthS"; + name = "Gamma South Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/south) +"lsc" = ( +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) +"lsk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"lsu" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat, +/area/corsat/gamma/freezer) +"lsB" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"lsH" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"ltk" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"ltl" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/theta/airlock/control) +"ltX" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"lue" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/toy/dice/d20, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"lug" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 1; + name = "Administration Office" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaOffice"; + name = "Privacy Shutters" + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"luj" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"luE" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/virology) +"luQ" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"lvg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/hallwaysouth) +"lvE" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"lvR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"lvU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"lwk" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/engineering) +"lwl" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating_striped/north, +/area/corsat/gamma/sigmaremote) +"lwu" = ( +/turf/open/floor/corsat, +/area/corsat/sigma/hangar) +"lwy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"lwL" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"lxi" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"lxj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"lxS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"lyd" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Teleportation Lab"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"lyu" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/lobby) +"lyK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/hangar/office) +"lyW" = ( +/turf/open/floor/corsat/purplecorner/west, +/area/corsat/gamma/biodome/complex) +"lzc" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) +"lzI" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/southeast) +"lAd" = ( +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay) +"lBj" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"lBx" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/hallwaysouth) +"lCa" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tech_supply, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"lCq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/sigma/dorms) +"lCr" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/sigma/hangar/arrivals) +"lCv" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"lDb" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security/cells) +"lDh" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/cable_coil, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/sigmaremote) +"lDJ" = ( +/obj/structure/machinery/door_control{ + id = "RemoteGateO"; + name = "Gate Shutters"; + pixel_y = 24; + use_power = 0 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"lDT" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/dorms) +"lEb" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/hallways) +"lER" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"lFq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"lFP" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/monorail) +"lFU" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Hangar Security"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"lFX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"lFY" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"lGj" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) +"lGo" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"lGp" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Hydroponics"; + req_one_access = null + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"lGq" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"lGD" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") + }, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/security) +"lGP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"lHk" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"lHB" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"lHK" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"lHU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"lId" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/south/security) +"lIf" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"lIq" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"lIu" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"lIE" = ( +/obj/structure/machinery/smartfridge/chemistry{ + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"lIQ" = ( +/turf/open/floor/corsat/browncorner/east, +/area/corsat/sigma/north) +"lIW" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"lIX" = ( +/obj/structure/surface/table/reinforced, +/obj/item/phone, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"lIY" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/south) +"lJj" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"lJq" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/east) +"lJz" = ( +/turf/open/floor/corsat/brown, +/area/corsat/gamma/hallwaysouth) +"lJR" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar) +"lKy" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"lKC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"lLc" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"lLe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"lLO" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/cargo) +"lMf" = ( +/obj/structure/machinery/bot/cleanbot, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydrowest) +"lMU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"lNS" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/hangar/security) +"lOn" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/east) +"lOM" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"lON" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/hangar) +"lOS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"lOV" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"lOW" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + autoclose = 0; + density = 0; + dir = 1; + icon_state = "door_open"; + name = "Containment Cell 5"; + req_one_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/inaccessible) +"lPh" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/control) +"lPi" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"lPD" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/sigmaremote) +"lPH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"lPY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"lQk" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"lQr" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/sigma/dorms) +"lQu" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"lQw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/datalab) +"lRg" = ( +/obj/structure/computer3frame/server{ + icon_state = "4" + }, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/sigmaremote) +"lRQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/id) +"lRW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/researcher) +"lRY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/complex) +"lSS" = ( +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/residential/east) +"lSU" = ( +/obj/structure/machinery/computer/pandemic, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/virology) +"lTA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/corsat/gamma/sigmaremote) +"lTC" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"lTU" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"lUc" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/airlock/south) +"lUI" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/sigma/south/complex) +"lUM" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/airlocknorth/id) +"lUY" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"lVb" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/airlock/control) +"lVo" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo) +"lVw" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/west) +"lVx" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"lVF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"lVW" = ( +/obj/structure/platform, +/turf/open/gm/river/desert/shallow/pool, +/area/corsat/gamma/residential/showers) +"lWf" = ( +/obj/structure/machinery/chem_dispenser{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"lWD" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"lWG" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar/security) +"lXA" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/security) +"lXJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/hangar/id) +"lXP" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"lXV" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Containment Unit"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"lYc" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/corsat/theta/biodome) +"lYd" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/hangar/security) +"lYq" = ( +/turf/open/floor/corsat/purple/east, +/area/corsat/omega/complex) +"lYt" = ( +/obj/structure/sign/safety/high_voltage, +/obj/structure/platform{ + dir = 8 + }, +/obj/item/stack/sheet/metal{ + pixel_x = 1 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"lYv" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/security) +"lYM" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/airlock/control) +"lYO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"lYX" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + icon_state = "single" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"lZm" = ( +/turf/open/floor/wood, +/area/corsat/omega/offices) +"lZp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Researcher's Lounge" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/lounge) +"lZF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/hangar) +"mab" = ( +/obj/structure/sign/safety/high_rad{ + pixel_x = 32 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"mag" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"mbp" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) +"mbz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"mbI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"mbO" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"mbZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"mcj" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"mdI" = ( +/obj/structure/closet/crate/trashcart, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/corsat/gamma/cargo/disposal) +"mdV" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/security) +"mea" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"mer" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"meu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/complex) +"mey" = ( +/obj/structure/sign/safety/biohazard, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"meC" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/hallwaysouth) +"meD" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/toxins) +"meJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"mfm" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) +"mfw" = ( +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/sigma/dorms) +"mfH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/toxins) +"mfN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"mfS" = ( +/obj/effect/landmark/corpsespawner/wysec, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"mfX" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"mgq" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"mgt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"mgw" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"mgO" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"mgW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"mhg" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/checkpoint) +"mhq" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/sigma/south) +"mim" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"miE" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/residential) +"miJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"miU" = ( +/turf/open/floor/corsat/browncorner/west, +/area/corsat/gamma/cargo) +"miX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"mjc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/complex) +"mjt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"mjv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"mkM" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "SigmaCargo"; + name = "Sigma Cargo Bay"; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/cargo) +"mlo" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/CM_uniform, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) +"mlr" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"mmh" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering) +"mmj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"mmp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"mmr" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"mmy" = ( +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/theta/airlock/control) +"mop" = ( +/obj/structure/surface/rack, +/obj/item/tool/soap/deluxe, +/obj/item/tool/soap/deluxe, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"moU" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast) +"mpj" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/airlocknorth) +"mpS" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"mqn" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"mqr" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/containment) +"mqK" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"mqL" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/theta/biodome/complex) +"mqU" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"mrb" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"mrr" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "GammaHCargoW"; + name = "Gamma Cargo Checkpoint"; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/cargo) +"mrG" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"mrO" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"mrQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/biodome/complex) +"msj" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/gamma/hangar/flightcontrol) +"msm" = ( +/turf/open/shuttle/dropship/dark_grey_bottom, +/area/prison/hangar_storage/research/shuttle) +"msp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"msu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/brown/southeast, +/area/corsat/gamma/cargo) +"msB" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat, +/area/corsat/gamma/cargo/disposal) +"msP" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"msY" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"mti" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"mtG" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/river, +/area/corsat/theta/biodome) +"muo" = ( +/obj/structure/surface/rack, +/obj/item/clothing/shoes/sandal, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"muu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"mvL" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/mars, +/area/corsat/sigma/biodome) +"mvM" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"mvS" = ( +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/sigma/dorms) +"mwa" = ( +/obj/structure/cargo_container/hd/left/alt, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"mwk" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"mwo" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/north) +"mwy" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"mwC" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/biodome, +/area/corsat/emergency_access) +"mwH" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/sigmaremote) +"mwK" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"mxa" = ( +/obj/structure/platform{ + density = 0; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"mxc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/researcher) +"mxO" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigar, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"mxZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/FixOVein, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/surgery) +"myt" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/southeast) +"mzi" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/airlock/south) +"mzn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/corsat/sigma/south/complex) +"mAc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/hangar/checkpoint) +"mAt" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"mAx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"mAK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"mAV" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/airlocknorth/id) +"mBp" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red, +/area/corsat/sigma/checkpoint) +"mBq" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/rnr) +"mBs" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/hangar/arrivals) +"mCe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/sigma/airlock/control) +"mCj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/cargo) +"mCD" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"mCE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"mCU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/brown/north, +/area/corsat/omega/hallways) +"mDe" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/hangar/cargo) +"mEd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"mEt" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hallways) +"mEy" = ( +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"mEG" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/hangar/cargo) +"mFm" = ( +/turf/open/floor/corsat/greencorner, +/area/corsat/gamma/hallwaysouth) +"mFp" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/sigma/hangar/monorail) +"mFE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluecorner, +/area/corsat/theta/airlock/control) +"mFP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/hangar/security) +"mFS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Interrogation" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"mFT" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"mGl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"mGn" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"mGL" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"mGN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"mGU" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "ThetaNorthD"; + name = "Theta Dome Airlock" + }, +/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ + id = "map_lockdown"; + name = "Theta Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/control) +"mHd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"mHM" = ( +/turf/open/floor/corsat/arrow_east, +/area/corsat/gamma/cargo) +"mIa" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"mIn" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/foyer) +"mIs" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"mIx" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"mIY" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"mJa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/mars/mars_dirt_11, +/area/corsat/sigma/biodome) +"mJm" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass{ + reason = "Visitor" + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"mJq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"mJy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"mJC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/rnr) +"mKc" = ( +/turf/open/floor/corsat/blue, +/area/corsat/gamma/airlock/control) +"mKk" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/masks, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/complex) +"mKP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"mLq" = ( +/turf/open/floor/corsat/purple/southeast, +/area/corsat/omega/complex) +"mLu" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"mLL" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/north) +"mLR" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"mNe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"mNV" = ( +/obj/item/tool/soap, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"mNW" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"mOr" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"mOw" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/omega/control) +"mOV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"mPg" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/checkpoint) +"mPS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/airlocknorth/id) +"mQk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"mQu" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential/researcher) +"mQF" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/robot_module/janitor, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/south/robotics) +"mQG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/sigmaremote) +"mQU" = ( +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/residential/east) +"mRl" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"mRp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"mRB" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/foyer) +"mRC" = ( +/obj/effect/alien/weeds/node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/corsat/omega/biodome) +"mRI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/virology) +"mSi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"mSo" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/corsat/theta/biodome) +"mSz" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"mSG" = ( +/obj/effect/landmark/corpsespawner/pmc, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"mSR" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/administration) +"mTa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/mars, +/area/corsat/sigma/biodome) +"mTz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"mTF" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"mTO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security/cells) +"mUj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"mUo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"mUu" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") + }, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"mUv" = ( +/obj/structure/machinery/conveyor, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"mUA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"mUE" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/east/id) +"mVk" = ( +/obj/structure/machinery/smartfridge/seeds, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"mVq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"mVA" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/effect/spawner/gibspawner/human, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"mWj" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/virology) +"mWo" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"mWG" = ( +/obj/structure/machinery/chem_dispenser{ + req_access_txt = "100" + }, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"mXC" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"mYe" = ( +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"mYQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"mYS" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "SigmaGate"; + name = "Gate Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/south/complex) +"mZf" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/residential/east) +"mZm" = ( +/obj/structure/prop/mech/parts/durand_head, +/turf/open/floor/corsat/arrow_north, +/area/corsat/sigma/south/robotics) +"naG" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"nbl" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy18" + }, +/area/prison/hangar_storage/research/shuttle) +"nbn" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"nbN" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat, +/area/corsat/sigma/hangar) +"nbO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/airlock/south) +"nbS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/mars, +/area/corsat/sigma/biodome) +"nbT" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river, +/area/corsat/theta/biodome) +"nck" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"ncR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"ncW" = ( +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"nde" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"ndr" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"nds" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"ndF" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"nen" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"neB" = ( +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/sigma/south/complex) +"neY" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy19" + }, +/area/prison/hangar_storage/research/shuttle) +"nfz" = ( +/turf/closed/wall/resin/membrane, +/area/corsat/gamma/biodome) +"ngc" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("omega") + }, +/turf/open/floor/corsat/browncorner, +/area/corsat/omega/cargo) +"ngx" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"nhE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"nhG" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"nid" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"niv" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"njh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"njv" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"njI" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/checkpoint) +"njL" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/theta/biodome/complex) +"njP" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"nkz" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/sigma/southeast/datalab) +"nkO" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"nlk" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "CORSAT Academy"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"nlm" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"nln" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"nls" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"nlU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"nmb" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/airlocknorth/id) +"nmp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"nna" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/researcher) +"nnm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"nnx" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/north) +"nny" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"nnC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/ice, +/area/corsat/gamma/biodome) +"noy" = ( +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"noK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"noW" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" + }, +/obj/structure/prop/almayer/missile_tube{ + color = "grey"; + desc = "An linear accelerator used in experimental genetic treatments. It hums ominously."; + icon_state = "missiletubesouth"; + name = "\improper genetic LINAC system"; + pixel_x = -15 + }, +/turf/open/shuttle/escapepod/floor1, +/area/corsat/theta/biodome/complex) +"noY" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Teleportation Chamber"; + req_one_access_txt = "101;103" + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"npl" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/west) +"npm" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "RemoteGate"; + name = "Gate Shutters"; + use_power = 0 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/hangar/monorail) +"npA" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("omega") + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) +"npI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/purple, +/area/corsat/gamma/biodome/complex) +"npN" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"nqd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Administration"; + req_access = null; + req_one_access_txt = "106;104" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"nqE" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"nqF" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"nqI" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/hangar/office) +"nrd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"nri" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"nrl" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"nrO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/mars/mars_dirt_9, +/area/corsat/sigma/biodome) +"nrT" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "GammaSouthID"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south/id) +"nrU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/hangar/monorail) +"nsg" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/carpet13_5/west, +/area/corsat/omega/offices) +"ntg" = ( +/turf/open/shuttle/escapepod/floor5, +/area/corsat/theta/biodome/complex) +"ntn" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy13" + }, +/area/prison/hangar_storage/research/shuttle) +"ntp" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south) +"ntt" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"ntx" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"nui" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"nuj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red, +/area/corsat/omega/airlocknorth) +"nuq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/hangar) +"nuF" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Theta Dome Control"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/theta/airlock/control) +"nuI" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"nuS" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"nvx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/omega/control) +"nvA" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/structure/stairs, +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/residential/east) +"nwj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"nws" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/cargo) +"nwu" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"nwL" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast) +"nwT" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"nxh" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hangar/office) +"nxv" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"nxI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/north) +"nxN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"nxP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"nxZ" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"nzB" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/gamma/airlock/control) +"nzR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/whitetan, +/area/corsat/sigma/dorms) +"nzS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/complex) +"nAa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/sigma/dorms) +"nAl" = ( +/turf/open/floor/corsat, +/area/corsat/gamma/freezer) +"nAm" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"nAu" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/complex) +"nAE" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Engineering"; + req_one_access_txt = "102" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"nAO" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/hangar/office) +"nAR" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"nBa" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"nBi" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/corsat/white/northeast, +/area/corsat/sigma/south) +"nBk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/researcher) +"nBw" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"nBy" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"nBD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"nBO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome) +"nCh" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) +"nCl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"nDc" = ( +/obj/structure/machinery/processor, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/complex) +"nDs" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"nDD" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"nDN" = ( +/obj/structure/safe, +/obj/item/xeno_egg, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"nDX" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ + id = "GammaEastE"; + name = "Gamma East Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/control) +"nEQ" = ( +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/morgue) +"nFc" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"nFt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/bodybags, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/complex) +"nFy" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome) +"nGq" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/hallways) +"nGs" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"nGU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south) +"nHs" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/centrifuge, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/virology) +"nHu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"nHS" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/airlock/control) +"nHU" = ( +/obj/structure/surface/rack, +/obj/item/stock_parts/smes_coil, +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"nIy" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"nIF" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/pillbottles, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"nJb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/residential/east) +"nJl" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/gamma/administration) +"nJn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/security) +"nJt" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"nJx" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"nJC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"nJP" = ( +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/hallways) +"nJR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_10, +/area/corsat/sigma/biodome) +"nKt" = ( +/obj/structure/pipes/unary/freezer, +/turf/open/shuttle/escapepod/floor0, +/area/corsat/theta/biodome/complex) +"nKH" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/residential) +"nLl" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/rnr) +"nLK" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Hypersleep Chamber"; + req_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"nLP" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/omega/maint) +"nLW" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tank/air, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"nLX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/datalab) +"nMc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"nMk" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"nMP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/arrow_west, +/area/corsat/gamma/hangar) +"nNo" = ( +/obj/structure/machinery/chem_dispenser{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"nNq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/landmark/railgun_camera_pos, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"nNB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"nNW" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/engineering/atmos) +"nOb" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/checkpoint) +"nOj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"nOH" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"nOP" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"nQB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/white/southeast, +/area/corsat/sigma/dorms) +"nQZ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"nSb" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"nSm" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"nSp" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/exosuit/peripherals/alice, +/obj/item/circuitboard/exosuit/main/alice, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"nSA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/arrow_west, +/area/corsat/sigma/hangar) +"nSC" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"nSL" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"nSP" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"nSV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"nTb" = ( +/turf/open/floor/corsat/greenwhitecorner/east, +/area/corsat/gamma/medbay/morgue) +"nTg" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/analyzer, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"nTx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/theta/biodome/complex) +"nTz" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"nTO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Arcade" + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"nUa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"nUd" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"nUg" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/checkpoint) +"nUi" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"nUs" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"nUz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"nUU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"nWh" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/snack_bowl, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"nWr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"nWV" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"nXj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"nXo" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"nXu" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"nXv" = ( +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/sigma/south/offices) +"nXD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"nXY" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/dorms) +"nYn" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"nYO" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"nYP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/west) +"nZB" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/southeast, +/area/corsat/sigma/cargo) +"nZN" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/sigma/north) +"nZR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"oaa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"oay" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/airlocknorth) +"oaE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/brown/southeast, +/area/corsat/omega/cargo) +"oaF" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"oaV" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hallways) +"obd" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/complex) +"obz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"obW" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo/disposal) +"ocD" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaHangarC-S"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/security) +"ocT" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("omega") + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"odm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"odC" = ( +/turf/open/floor/corsat/browncorner, +/area/corsat/sigma/north) +"odN" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/sigma/south) +"odW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"ofq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/checkpoint) +"ofP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"oge" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"ohe" = ( +/turf/open/floor/corsat/blue/northwest, +/area/corsat/sigma/southeast) +"ohV" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"oia" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/biodome/complex) +"ois" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"oiu" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/corsat, +/area/corsat/sigma/south/engineering) +"oiE" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"oiI" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"oiQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"oje" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"ojN" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"oks" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/checkpoint) +"okE" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/south) +"okT" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"olm" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("theta") + }, +/turf/open/floor/corsat/blue, +/area/corsat/theta/airlock/control) +"olB" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/sigmaremote) +"olD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"olX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/omega, +/area/corsat/omega/hallways) +"olY" = ( +/obj/effect/alien/weeds/node, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/almayer/research/containment/floor2, +/area/corsat/inaccessible) +"ome" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"omw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"omL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/residential) +"ong" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"onz" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"onY" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"oob" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"ooX" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"opf" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/turf/open/shuttle/escapepod/floor12, +/area/corsat/theta/biodome/complex) +"opi" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"opl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"opo" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"opH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"opW" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars, +/area/corsat/sigma/biodome) +"oqs" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar) +"oqz" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"oqB" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/canteen) +"oqI" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"orz" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"orI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer1, +/area/corsat/gamma/biodome) +"ost" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"osY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"otC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) +"otY" = ( +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential) +"ouk" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"ouv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"ouC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"ouM" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/theta/airlock/control) +"ovc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/sigma/dorms) +"ovC" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"ovP" = ( +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar/cargo) +"ovT" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/theta/airlock/west/id) +"owL" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/biodome/complex) +"owP" = ( +/obj/structure/bed/nest, +/turf/open/mars_cave/mars_cave_11, +/area/corsat/sigma/biodome) +"oxk" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"oxr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"oxL" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential/researcher) +"oyu" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr/bar) +"oyA" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"oyJ" = ( +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/residential/east) +"ozo" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"ozp" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "GammaSouthN"; + name = "Gamma South Airlock" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/south) +"ozH" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/datalab) +"ozR" = ( +/turf/open/space/transit/east/shuttlespace_ew10, +/area/corsat/sigma/hangar/monorail/railcart_transit) +"ozY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"oAa" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"oBe" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/southeast/datalab) +"oBq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"oBX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) +"oCa" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"oCp" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"oCt" = ( +/obj/structure/prop/mech/parts/durand_torso, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/south/robotics) +"oCz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/theta/airlock/west) +"oDt" = ( +/turf/open/floor/corsat/white/southwest, +/area/corsat/gamma/residential) +"oDD" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/hangar) +"oEa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"oEu" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"oEE" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Holding Cell 1"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/office) +"oEK" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/residential/lounge) +"oEU" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/binoculars, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"oFe" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/biodome/complex) +"oFq" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/airlock/control) +"oFU" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat, +/area/corsat/sigma/cargo) +"oGe" = ( +/obj/structure/surface/table/gamblingtable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"oGf" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "ThetaWestE"; + name = "Theta West Airlock" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/west) +"oGz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"oGI" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/corsat, +/area/corsat/sigma/south/robotics) +"oHs" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/cargo) +"oHI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo/lobby) +"oHP" = ( +/obj/structure/bed, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/security/cells) +"oHT" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/theta/airlock/west) +"oHU" = ( +/turf/open/floor/plating/warnplate/east, +/area/corsat/omega/hangar) +"oIf" = ( +/turf/open/floor/corsat/purple/west, +/area/corsat/gamma/residential) +"oIx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/office) +"oJb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"oJn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"oJB" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering) +"oJT" = ( +/obj/item/stack/sheet/metal, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"oJV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"oKg" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering/core) +"oKh" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/hangar/security) +"oKk" = ( +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/west/id) +"oKp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/hallways) +"oKr" = ( +/turf/open/floor/corsat/purple/east, +/area/corsat/theta/biodome/complex) +"oKA" = ( +/turf/open/floor/corsat/blue/southwest, +/area/corsat/omega/hallways) +"oKQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"oLe" = ( +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"oLg" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/almayer/research/containment/floor2, +/area/corsat/inaccessible) +"oLA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/east) +"oLX" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "RemoteGateO"; + name = "Gate Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/sigmaremote) +"oMp" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/airlocknorth/id) +"oMG" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/airlocknorth) +"oMZ" = ( +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/omega/complex) +"oNc" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/complex) +"oNi" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"oNI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"oNL" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"oNR" = ( +/obj/structure/bed, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"oNU" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"oOg" = ( +/turf/open/floor/corsat/green/southeast, +/area/corsat/gamma/medbay/morgue) +"oOj" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/canteen) +"oOk" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"oOr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"oOz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"oOH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/southeast/dataoffice) +"oOL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + network = list("sigma") + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/security) +"oPa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/white/southwest, +/area/corsat/gamma/residential) +"oPq" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat, +/area/corsat/sigma/dorms) +"oPu" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/sigma/southeast/datalab) +"oPC" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/security) +"oQf" = ( +/turf/open/floor/corsat/whitecorner, +/area/corsat/sigma/dorms) +"oQF" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"oQO" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/virology) +"oQR" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hallwaysouth) +"oQY" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"oRo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"oRJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"oTq" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"oTs" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/engineering) +"oTw" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Research Desk" + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"oTE" = ( +/obj/structure/surface/table, +/obj/item/book, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"oUz" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"oUJ" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"oVe" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/rnr) +"oVj" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"oVr" = ( +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"oVF" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"oVM" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/arrivals) +"oVO" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/corsat/theta/airlock/west/id) +"oVT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"oWg" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar) +"oXl" = ( +/obj/structure/closet/coffin, +/turf/open/floor/corsat/green/southwest, +/area/corsat/gamma/medbay/morgue) +"oXK" = ( +/obj/structure/closet/coffin, +/turf/open/floor/corsat/green/northwest, +/area/corsat/gamma/medbay/morgue) +"oXL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"oXZ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Holding Cell 1"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/office) +"oYC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"oYH" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/gamma/residential/west) +"oYP" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"oYY" = ( +/turf/open/floor/corsat/theta, +/area/corsat/gamma/hallwaysouth) +"oZj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/airlock/south) +"oZv" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/rnr) +"oZx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"oZD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"oZH" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"oZQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"oZW" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"paH" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"pbS" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south) +"pbX" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/syringes, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"pcb" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"pcu" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"pcK" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/checkpoint) +"pdg" = ( +/turf/open/space/transit/east/shuttlespace_ew10, +/area/space) +"pdh" = ( +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/hallwaysouth) +"pdk" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/west) +"pdw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"pdR" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential/researcher) +"pdW" = ( +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/residential) +"peh" = ( +/obj/structure/surface/table, +/obj/item/book, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"pfk" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) +"pfz" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/sigma/hangar/monorail) +"pfG" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/monorail) +"pfQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"pge" = ( +/obj/structure/stairs, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"pgf" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"pgn" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"pgC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"pgH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/security) +"pgO" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"pgV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/airlock/east) +"pgX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"phl" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"phK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"phM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"phN" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/virology) +"phX" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/purple, +/area/corsat/sigma/south) +"pir" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/hallwaysouth) +"piI" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/cable_coil, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/engineering) +"piZ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat, +/area/corsat/gamma/residential/researcher) +"pji" = ( +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"pjP" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/hallwaysouth) +"pkc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"pkh" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/hallways) +"pkP" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"plI" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/airlock/north) +"plM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/arrow_east, +/area/corsat/sigma/southeast/datalab) +"plV" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"pmf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"pnc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"pnt" = ( +/obj/structure/xenoautopsy/tank/alien, +/turf/open/floor/corsat, +/area/corsat/omega/complex) +"pnQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/corsat/theta/biodome) +"pov" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay) +"ppi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"ppr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"ppy" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"ppP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer1, +/area/corsat/gamma/biodome) +"pqt" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("theta") + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"prw" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/theta/airlock/west/id) +"prB" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"prF" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"prG" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/hallwaysouth) +"prI" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"psV" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"ptq" = ( +/obj/item/paper/crumpled, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"pue" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast) +"puh" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"puF" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/foyer) +"pvh" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"pvo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"pvA" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"pwd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"pwp" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "single_ends" + }, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"pws" = ( +/turf/open/floor/corsat/browncorner/east, +/area/corsat/omega/cargo) +"pwu" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"pwO" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"pxj" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"pxl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/foyer) +"pxH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/platform{ + dir = 8; + layer = 2.8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"pya" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"pyL" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/hangar/security) +"pzr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"pzH" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "SigmaWestD"; + name = "Sigma Dome Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"pAo" = ( +/obj/structure/cargo_container/hd/right/alt, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"pAt" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/airlock/south/id) +"pAB" = ( +/obj/structure/machinery/door/window/northleft, +/obj/structure/machinery/door/window/southleft, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"pAM" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/powercell, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"pBm" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south/id) +"pBJ" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"pCh" = ( +/obj/structure/machinery/light, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"pCi" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"pCT" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"pCW" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/hangar/office) +"pDt" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/whitetan, +/area/corsat/sigma/dorms) +"pDB" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/omega/offices) +"pDP" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/southeast/generator) +"pDR" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/biodome) +"pEe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"pEj" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"pEm" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"pEQ" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/hangar/office) +"pEX" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential/researcher) +"pFe" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/hangar) +"pFX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/arrivals) +"pGp" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"pIj" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"pIo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/residential/lounge) +"pIU" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/hangar) +"pJa" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) +"pJn" = ( +/turf/open/floor/corsat/blue/southwest, +/area/corsat/sigma/southeast/datalab) +"pJo" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"pJP" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"pJY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"pKg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"pKi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/engineering) +"pLy" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/toxins) +"pLO" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaHangarC-S"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/security) +"pMh" = ( +/turf/open/floor/corsat/purple/southwest, +/area/corsat/omega/hallways) +"pMI" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/south) +"pMN" = ( +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/gamma/residential) +"pMU" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"pMZ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/hangar) +"pNa" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"pOs" = ( +/obj/structure/machinery/colony_floodlight{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"pPp" = ( +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"pPN" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"pPX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/west) +"pQt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/airlocknorth/id) +"pQA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"pQK" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/south/offices) +"pRl" = ( +/turf/open/floor/corsat, +/area/corsat/omega/maint) +"pRE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome) +"pRX" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/white/southeast, +/area/corsat/sigma/south) +"pSb" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/monorail) +"pSc" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"pSo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer2, +/area/corsat/gamma/biodome) +"pSp" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/sigma/hangar/monorail) +"pSu" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"pSB" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/security) +"pSZ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"pTp" = ( +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"pTt" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"pTD" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/north) +"pUa" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"pUy" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/exosuit/peripherals/work_loader, +/obj/item/circuitboard/exosuit/peripherals/work_loader, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"pUA" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/omega/offices) +"pUP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"pVm" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/residential/maint) +"pVo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_8, +/area/corsat/sigma/biodome) +"pVr" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"pVD" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential) +"pVL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"pVS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"pWc" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"pWj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"pWl" = ( +/turf/open/floor/corsat/purplecorner/west, +/area/corsat/omega/hallways) +"pWr" = ( +/obj/structure/pipes/unary/freezer{ + icon_state = "freezer_1" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"pWE" = ( +/obj/structure/computer3frame/server{ + icon_state = "4" + }, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/sigma/south/complex) +"pWR" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/corsat/theta/biodome) +"pXp" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"pXx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"pXU" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"pXY" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar/checkpoint) +"pYS" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"pYW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"pZf" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/south) +"pZt" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"qaa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/rack, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"qac" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/researcher) +"qaf" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/phone, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast/datalab) +"qaj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"qaB" = ( +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/hallwaysouth) +"qaG" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"qaO" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/foyer) +"qaS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/surgery) +"qaY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/gamma/sigmaremote) +"qba" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"qbc" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"qbB" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/security) +"qbG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydrowest) +"qbV" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaHangarC-E"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/security) +"qcx" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"qcR" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"qdK" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 12; + pixel_y = 2 + }, +/obj/item/tool/surgery/bonegel, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/surgery) +"qeg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/lobby) +"qeh" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"qeC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"qeE" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/turf/open/floor/corsat/purple/north, +/area/corsat/omega/hallways) +"qeF" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"qeY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"qfl" = ( +/obj/structure/bed/nest, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"qfp" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaOffice"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/corsat/omega/offices) +"qgg" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"qgl" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/airlocknorth) +"qgm" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/gamma/hangar/arrivals) +"qgo" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/blue/southeast, +/area/corsat/sigma/southeast/datalab) +"qgt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"qgF" = ( +/obj/effect/alien/weeds/node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"qgR" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"qhl" = ( +/obj/structure/bed, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/security/cells) +"qhT" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/residential) +"qig" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"qiw" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar) +"qiW" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"qje" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"qjf" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"qjG" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"qjL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"qkr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"qkt" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"qkw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/sigma/hangar) +"qkz" = ( +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"qkD" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/hallways) +"qkJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/white/bot, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"qkL" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Pool" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"qkW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"qlh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/airlock/control) +"qlt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"qlx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"qlF" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security) +"qlI" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"qmD" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"qmT" = ( +/obj/structure/sign/safety/biohazard, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/biodome/virology) +"qnb" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/south/security) +"qnw" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west/id) +"qoh" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"qoq" = ( +/obj/structure/coatrack, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"qou" = ( +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"qoN" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"qpo" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/hallwaysouth) +"qpB" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"qpC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/complex) +"qqg" = ( +/obj/structure/computer3frame/server{ + icon_state = "4" + }, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/sigmaremote) +"qqF" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"qqI" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"qqK" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/omega/airlocknorth) +"qqW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"qqY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/theta/airlock/control) +"qsg" = ( +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/south/offices) +"qsC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/hallwaysouth) +"qsT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_cave_18, +/area/corsat/sigma/biodome) +"qsW" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"qsY" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/gamma/hangar/flightcontrol) +"qtf" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"qti" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/residential/west) +"qtm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_11, +/area/corsat/sigma/biodome) +"qtI" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"qtZ" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"quG" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"quI" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"qvz" = ( +/turf/open/shuttle/dropship/light_grey_middle, +/area/prison/hangar_storage/research/shuttle) +"qvB" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"qvD" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar) +"qwr" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"qww" = ( +/obj/structure/surface/table, +/obj/item/folder, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"qwM" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/omega/complex) +"qwO" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"qxi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"qxB" = ( +/obj/structure/surface/table/reinforced, +/obj/item/newspaper, +/turf/open/floor/corsat/red, +/area/corsat/sigma/checkpoint) +"qxR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/residential/west) +"qyg" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/rnr) +"qys" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"qyO" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/virology) +"qzo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"qzy" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/airlock/control) +"qAg" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"qAk" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"qAl" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/biodome) +"qAs" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"qAG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"qAH" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"qBk" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/sigma/hangar) +"qBJ" = ( +/turf/open/floor/corsat/green, +/area/corsat/gamma/medbay/morgue) +"qBZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/glasses/meson, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"qCi" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"qCU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/hangar) +"qDx" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"qEe" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/purple/west, +/area/corsat/sigma/south) +"qEk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/hangar/monorail) +"qEu" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"qEw" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"qEG" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("theta") + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"qFp" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/south/offices) +"qFq" = ( +/obj/structure/surface/table/woodentable, +/obj/item/newspaper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"qFA" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"qFJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/north) +"qFK" = ( +/obj/structure/surface/table, +/obj/item/folder, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"qGn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/residential/west) +"qGz" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, +/area/corsat/theta/biodome) +"qGF" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/hangar/monorail/control) +"qGY" = ( +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/omega/complex) +"qHF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"qHM" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Airlock Security"; + req_access_txt = "101" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"qIr" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"qIw" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/north) +"qIS" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"qIU" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/inaccessible) +"qJa" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"qJi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"qJl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"qJA" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"qJJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) +"qJO" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/airlock/control) +"qJZ" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/floor/corsat, +/area/corsat/omega/complex) +"qKc" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"qKN" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/hallways) +"qKZ" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/hallwaysouth) +"qLa" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/airlock/control) +"qLo" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/hallwaysouth) +"qLz" = ( +/obj/structure/prop/mech/tesla_energy_relay, +/turf/open/floor/corsat, +/area/corsat/sigma/south/robotics) +"qLE" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/south) +"qLI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1 + }, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"qMT" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"qNe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications{ + dir = 8 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"qNF" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/hangar/checkpoint) +"qNJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"qNM" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"qOr" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"qOF" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Hangar Office"; + req_access_txt = "106" + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/office) +"qOJ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/hangar/security) +"qPo" = ( +/obj/structure/window/reinforced, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast/datalab) +"qPJ" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"qQe" = ( +/obj/structure/window/framed/corsat/research, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"qQg" = ( +/turf/open/floor/wood, +/area/corsat/theta/biodome/complex) +"qQq" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"qQU" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"qRv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"qRY" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/sigmaremote) +"qSi" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/airlock/east/id) +"qSt" = ( +/obj/structure/closet/wardrobe/white, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/black, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/south/id) +"qSG" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"qST" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"qTd" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/hallwaysouth) +"qTe" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/dorms) +"qTj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/id) +"qTZ" = ( +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/gamma/canteen) +"qUt" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south/id) +"qUI" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"qUT" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/atmos) +"qVd" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/shuttle/escapepod/floor5, +/area/corsat/theta/biodome/complex) +"qVe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo) +"qVs" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("theta") + }, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"qVz" = ( +/obj/effect/landmark/corpsespawner/pmc, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"qVA" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"qVF" = ( +/obj/structure/platform{ + density = 0; + dir = 1; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"qVJ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome) +"qWf" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"qWr" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/residential) +"qWK" = ( +/obj/structure/window/reinforced, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"qWQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"qWX" = ( +/turf/open/floor/corsat/blue/northwest, +/area/corsat/gamma/hallwaysouth) +"qXL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"qYj" = ( +/turf/open/floor/corsat/darkgreen/northeast, +/area/corsat/gamma/hangar/monorail) +"qZj" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/hangar) +"qZs" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"qZW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"raw" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"rba" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"rbo" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/biodome/complex) +"rbC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/south/robotics) +"rcg" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"rch" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/theta/biodome/complex) +"rcT" = ( +/obj/structure/computer3frame/server{ + icon_state = "4" + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"rdn" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"rdA" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/south/security) +"rdZ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/foyer) +"reh" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/hallwaysouth) +"rei" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/hangar/office) +"reN" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Lounge"; + req_one_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/theta/biodome/complex) +"rfa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"rfh" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"rfo" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/north) +"rfQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/theta/airlock/control) +"rgc" = ( +/obj/structure/bed/nest, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"rgm" = ( +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/southeast/datalab) +"rhr" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"rhu" = ( +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"rhv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"riC" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/southeast/datalab) +"riE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"rjv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"rjO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"rjT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"rki" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"rkK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"rlh" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/obj/structure/machinery/door/window/southleft{ + dir = 4; + layer = 2.8 + }, +/obj/item/tool/soap, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"rlk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/airlock/south/id) +"rlG" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"rlH" = ( +/turf/open/floor/corsat/brown/northeast, +/area/corsat/omega/cargo) +"rmc" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo/disposal) +"rmk" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/virology) +"rmm" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"rmI" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"rno" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") + }, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar) +"rnK" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"roh" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"roj" = ( +/obj/structure/safe, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"ros" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/north) +"rox" = ( +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/gamma/administration) +"roL" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hangar) +"roZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"rpi" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"rpr" = ( +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"rpB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"rpP" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/core) +"rpZ" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"rqg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"rqo" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"rrs" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/turf/open/shuttle/escapepod/floor2, +/area/corsat/theta/biodome/complex) +"rrv" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"rrE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"rrG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/landing/console2) +"rrY" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/hangar/security) +"rtr" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/browncorner/north, +/area/corsat/gamma/cargo/disposal) +"rtN" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"rtT" = ( +/obj/structure/surface/table/almayer, +/obj/item/form_printer, +/obj/item/tool/pen, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"rtZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"rur" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"rut" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"ruw" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"rvg" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/west) +"rvp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/corsat/gamma/sigmaremote) +"rvC" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/airlock/east/id) +"rvD" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/sigma/dorms) +"rvL" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/rnr) +"rwl" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"rwo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"rws" = ( +/obj/structure/platform{ + density = 0; + dir = 1; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"rwF" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/sigma/hangar) +"rwK" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/hallways) +"rxd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"rxk" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/engineering) +"rxD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"ryc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"ryn" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"ryE" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"ryR" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/east) +"rzk" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/hangar/security) +"rzy" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"rzU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"rAc" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"rAm" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/southeast) +"rBf" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"rBX" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"rCb" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/south/robotics) +"rCd" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"rCr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"rCA" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar) +"rCE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydroeast) +"rCH" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/sigmaremote) +"rCO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/west) +"rDr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"rDF" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("omega") + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"rEq" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/residential) +"rED" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"rEG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"rEX" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/omega/control) +"rFf" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"rFm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"rFw" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"rFC" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/hangar/arrivals) +"rFJ" = ( +/turf/open/floor/carpet10_8/west, +/area/corsat/omega/offices) +"rFS" = ( +/turf/open/floor/plating/warnplate/north, +/area/corsat/omega/hangar) +"rGb" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Cables" + }, +/obj/structure/cryofeed{ + color = "silver"; + desc = "A bewildering tangle of machinery and pipes."; + name = "coolant feed" + }, +/turf/open/shuttle/escapepod/floor1, +/area/corsat/theta/biodome/complex) +"rGc" = ( +/obj/structure/closet/wardrobe/genetics_white, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) +"rGn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/residential/east) +"rGu" = ( +/obj/item/paper/crumpled, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"rGC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"rGH" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"rHb" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"rId" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"rJo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"rJu" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"rKa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"rKo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"rKq" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/hangar/monorail) +"rKy" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"rKG" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/hangar/checkpoint) +"rKN" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/sigma/south/complex) +"rLp" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/asteroidwarning/north, +/area/corsat/sigma/biodome) +"rLw" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert{ + dir = 1 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/theta/airlock/west) +"rLZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/maint) +"rMq" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/ice, +/area/corsat/gamma/biodome) +"rMD" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"rMR" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"rMU" = ( +/obj/structure/foamed_metal, +/turf/open/floor/corsat, +/area/corsat/sigma/dorms) +"rMX" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/sigma/south/complex) +"rNc" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar/security) +"rOq" = ( +/obj/structure/bed/sofa, +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"rOH" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/hangar/cargo) +"rOP" = ( +/obj/structure/window/reinforced, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"rOS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"rPI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/omega/control) +"rPZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hallways) +"rQh" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/mars_cave/mars_cave_23, +/area/corsat/sigma/biodome/scrapyard) +"rQD" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/hangar/monorail/control) +"rQQ" = ( +/obj/item/weapon/gun/flamer, +/obj/item/explosive/grenade/incendiary, +/obj/structure/closet/secure_closet/guncabinet{ + name = "specimen control cabinet"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"rQY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"rRh" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/revolver/cmb, +/obj/item/ammo_magazine/revolver/cmb, +/obj/item/ammo_magazine/revolver/cmb, +/obj/item/ammo_magazine/revolver/cmb, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/hangar/security) +"rRm" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/obj/structure/platform, +/turf/open/floor/corsat/white/southwest, +/area/corsat/gamma/hallwaysouth) +"rRR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/corsat/theta/biodome) +"rSz" = ( +/obj/structure/closet/wardrobe/white, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/black, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/control) +"rSG" = ( +/obj/structure/machinery/computer/cameras{ + network = list("gamma"); + pixel_y = 22 + }, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"rSP" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar) +"rSR" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/airlock/control) +"rTb" = ( +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/sigma/hangar/monorail) +"rTf" = ( +/obj/structure/surface/table, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"rTj" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"rTo" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/monorail) +"rTw" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/south) +"rTD" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/residential/showers) +"rTX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"rUd" = ( +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/lobby) +"rUq" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"rUH" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"rUK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"rUQ" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/hallwaysouth) +"rVh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"rVK" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"rVS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/omega/offices) +"rWh" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"rWE" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"rWG" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/maint) +"rWM" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"rWN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"rWY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/omega/airlocknorth) +"rXj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"rXs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan, +/area/corsat/sigma/dorms) +"rXB" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) +"rXE" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"rYj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"rYp" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"rYq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"rYB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/omega/hallways) +"rZC" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/south) +"rZJ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering) +"rZK" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/checkpoint) +"rZR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/north, +/area/corsat/sigma/biodome) +"rZU" = ( +/turf/open/floor/corsat/browncorner, +/area/corsat/gamma/cargo) +"sam" = ( +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/residential/researcher) +"sap" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat, +/area/corsat/sigma/southeast/generator) +"saV" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"sba" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"sbs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datamaint) +"sbw" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"sbF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"sbJ" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"sbN" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering) +"scj" = ( +/obj/structure/window/reinforced, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"scH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"sdm" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "GammaWestD"; + name = "Gamma Dome Airlock" + }, +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ + id = "map_lockdown"; + name = "Gamma Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/control) +"sdu" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"sdv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"sdR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/biodome/complex) +"sem" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"sez" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaHangarC-S"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"seB" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/south) +"sfx" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"sfJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Baths" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/showers) +"sga" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/hangar/arrivals) +"sgl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"sgn" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/airlock/control) +"sgu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"sgN" = ( +/obj/structure/machinery/power/reactor/colony{ + desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; + name = "\improper G-17 Thermoelectric Generator" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "0-8"; + layer = 2.1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"sgX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/checkpoint) +"shg" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Computer Room"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"shq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"shW" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"sid" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/west) +"sii" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/complex) +"sip" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/sigma/south/complex) +"siu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/coast/east, +/area/corsat/theta/biodome) +"siU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/west) +"sjr" = ( +/obj/structure/fence, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"sjs" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/residential) +"sjw" = ( +/obj/structure/machinery/door_control{ + id = "Viro"; + name = "Lab Lockdown"; + pixel_x = 24; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/virology) +"sjx" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"sjK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/morgue) +"sjL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"sjR" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/hangar/monorail) +"skc" = ( +/turf/open/floor/corsat/purple/west, +/area/corsat/sigma/south) +"skf" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/south/id) +"skk" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"skp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"skK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"skS" = ( +/obj/item/toy/spinningtoy{ + desc = "It echoed loudly within him because he was hollow at the core." + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"sll" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"slL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/foyer) +"slU" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"smk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/hangar/office) +"smP" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"snc" = ( +/obj/structure/morgue, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/medbay/morgue) +"snA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"snG" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"snO" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar) +"snP" = ( +/obj/structure/platform{ + density = 0; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/hallwaysouth) +"snS" = ( +/mob/living/carbon/human/yiren, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"snU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"snW" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"soi" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/foyer) +"sor" = ( +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/sigma/dorms) +"sos" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"spD" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaHangarC-N"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"spN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/security) +"spP" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"spU" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"sqn" = ( +/obj/structure/machinery/colony_floodlight{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"sqr" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"sqY" = ( +/turf/open/floor/corsat/darkgreen/northeast, +/area/corsat/gamma/hangar/arrivals) +"srY" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/theta/biodome/complex) +"ssh" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"ssw" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"stg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/autolathe, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"stA" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/security) +"suf" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"sum" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"sur" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"svn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"svB" = ( +/obj/structure/bed/sofa/vert/white/top, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"svD" = ( +/turf/open/floor/corsat/greenwhitecorner/north, +/area/corsat/gamma/medbay) +"svH" = ( +/obj/structure/pipes/unary/freezer, +/turf/open/shuttle/escapepod/floor4, +/area/corsat/theta/biodome/complex) +"svU" = ( +/obj/structure/surface/rack, +/obj/item/tool/soap, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"svX" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/hangar/cargo) +"swf" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/robotics) +"swY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"sxa" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"sxB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_y = 30 + }, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"sxI" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hangar/arrivals) +"sxJ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/arrivals) +"sxO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaOffice"; + name = "Privacy Shutters" + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"sxU" = ( +/obj/structure/prop/dam/crane/cargo, +/turf/open/floor/almayer/plating_striped/north, +/area/corsat/gamma/sigmaremote) +"syk" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"syG" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/engineering) +"sAj" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"sBc" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"sBH" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/corsat/gamma/hangar/monorail/railcart) +"sBV" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"sCf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"sCl" = ( +/obj/structure/coatrack, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"sCv" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "GammaSouthID"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/gamma/airlock/south/id) +"sCZ" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security) +"sDi" = ( +/obj/structure/pipes/vents/pump, +/turf/open/mars, +/area/corsat/sigma/biodome) +"sDx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"sDV" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/residential) +"sEb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/research/containment/corner/north, +/area/corsat/gamma/sigmaremote) +"sEc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"sEo" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/checkpoint) +"sFd" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/gamma/hangar/flightcontrol) +"sFD" = ( +/obj/structure/closet/l3closet/general, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"sFF" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/ice, +/area/corsat/gamma/biodome) +"sFI" = ( +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/hallwaysouth) +"sGB" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"sGQ" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"sGV" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Administration"; + req_access_txt = "106" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"sHB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"sHR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"sHX" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"sIm" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("theta") + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/theta/airlock/west) +"sIs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"sIw" = ( +/turf/open/floor/corsat/browncorner/north, +/area/corsat/sigma/cargo) +"sIC" = ( +/obj/structure/surface/table, +/obj/item/toy/deck/uno, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"sIL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/residential/east) +"sIR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south/id) +"sIV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/corsat/brown/southeast, +/area/corsat/sigma/cargo) +"sJe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/sigma/dorms) +"sJg" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy17" + }, +/area/prison/hangar_storage/research/shuttle) +"sJk" = ( +/turf/open/floor/plating/warnplate/west, +/area/corsat/omega/hangar) +"sJr" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red, +/area/corsat/sigma/airlock/east/id) +"sKa" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"sKQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"sKZ" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile{ + id = "ThetaNorthN"; + name = "Theta North Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/control) +"sLw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/residential) +"sLF" = ( +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast/datalab) +"sMb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"sMO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/purple/northeast, +/area/corsat/gamma/biodome/complex) +"sMW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"sNo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"sNE" = ( +/obj/structure/morgue/crematorium{ + id = "CORSAT Crema" + }, +/obj/structure/machinery/crema_switch{ + id = "CORSAT Crema"; + pixel_x = 28; + pixel_y = 28; + req_one_access_txt = "2;8;19" + }, +/turf/open/floor/corsat/green/north, +/area/corsat/gamma/medbay/morgue) +"sNG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"sNO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"sNU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"sOq" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/south) +"sOt" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"sON" = ( +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/omega/offices) +"sPx" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/monorail/control) +"sPB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"sPI" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/green/north, +/area/corsat/gamma/hallwaysouth) +"sQb" = ( +/obj/structure/bed, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security/cells) +"sQz" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"sQI" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/obj/structure/stairs, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/residential/east) +"sRe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "SigmaWestD"; + name = "Entrance Airlock Control"; + pixel_x = -5; + use_power = 0 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"sRo" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"sRx" = ( +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/residential) +"sRI" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"sRK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + req_one_access_txt = "201;104" + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"sSg" = ( +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/toxins) +"sSZ" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/omega/hallways) +"sTq" = ( +/obj/structure/flora/jungle/planttop1, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"sTr" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/security) +"sTt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/assembly/igniter, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"sTD" = ( +/obj/structure/surface/table/woodentable, +/obj/item/folder/blue, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"sTH" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/toxins) +"sTN" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/gamma/hangar/flightcontrol) +"sTW" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"sUR" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering/atmos) +"sVk" = ( +/turf/open/floor/corsat, +/area/corsat/sigma/south/engineering) +"sVo" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/floor/corsat, +/area/corsat/sigma/south/robotics) +"sVs" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"sVt" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"sVA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/corsat/gamma/sigmaremote) +"sVO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/control) +"sWd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"sWP" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/corsat/omega/biodome) +"sXf" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/security) +"sXg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"sXl" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/airlocknorth/id) +"sXG" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/latex, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/biodome/complex) +"sYc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"sYh" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper/Toxin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"sYk" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/south) +"sZc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"sZg" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"tad" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"tae" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"tav" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"taF" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) +"taL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/theta/airlock/control) +"taO" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/hangar/office) +"taQ" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/residential/maint) +"taT" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"taX" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering) +"taY" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"tbc" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"tbd" = ( +/obj/structure/surface/rack, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/hangar/security) +"tbm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"tbY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Auditorium" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"tcF" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/surgery) +"tdi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"tdp" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"tdH" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Research Complex"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"teZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/hangar/office) +"tfi" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"tfu" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"tfz" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"tfC" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/hallwaysouth) +"tfF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"tfP" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) +"tfY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"tgE" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("omega") + }, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) +"tgJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"thb" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"thv" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"tja" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/sigma/south/complex) +"tjf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"tjQ" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"tjT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"tkO" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"tlx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"tlD" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"tlP" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/sigma/south) +"tlX" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/hangar/security) +"tml" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"tmv" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/north) +"tnS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"toa" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/foyer) +"toi" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"ton" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/hangar/monorail) +"tov" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/sigma/hangar) +"toC" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"toG" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"toJ" = ( +/turf/open/floor/corsat/blue/northeast, +/area/corsat/sigma/southeast/datalab) +"toL" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"tpz" = ( +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"tpA" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"tpF" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"tpH" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"tpM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"tpW" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"tqb" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat, +/area/corsat/sigma/hangar/monorail) +"trU" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"trV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"tsb" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/sigma/north) +"tsA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/bluecorner, +/area/corsat/omega/control) +"tta" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/control) +"ttB" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"ttJ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"ttK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"tuo" = ( +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"tuu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"tuB" = ( +/obj/structure/surface/rack, +/obj/item/folder/red, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"tvc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"tvf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"tvG" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/control) +"tvO" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/greencorner/east, +/area/corsat/gamma/medbay/morgue) +"tvW" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"twm" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"twS" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/pipes/vents/pump/on, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"twW" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/hydroponics) +"txp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"txB" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"txK" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/southeast/datalab) +"tyb" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"tyv" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/corsat/omega/hangar) +"tzz" = ( +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/gamma/biodome/complex) +"tzF" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"tzX" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/security) +"tzY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"tAF" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"tBh" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/hangar/monorail) +"tBG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/id) +"tBI" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/robot_module/surgeon, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"tBT" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"tCi" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering) +"tCn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"tCs" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/north) +"tCu" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy15" + }, +/area/prison/hangar_storage/research/shuttle) +"tCH" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/theta/biodome/hydroeast) +"tCI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/sigma/dorms) +"tDc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"tDf" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/darkgreen/southeast, +/area/corsat/gamma/residential) +"tDt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"tDK" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/corsat/theta/biodome) +"tDQ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) +"tEm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/control) +"tEJ" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/omega/hallways) +"tFp" = ( +/turf/open/floor/corsat/green/west, +/area/corsat/gamma/hallwaysouth) +"tFs" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/pistol/mod88, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"tFv" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"tFG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/corsat/theta/biodome) +"tGq" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/corsat, +/area/corsat/omega/maint) +"tGr" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"tGG" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/lobby) +"tGV" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"tHy" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"tHC" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/purple/east, +/area/corsat/gamma/biodome/complex) +"tHR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purple/west, +/area/corsat/sigma/south) +"tIk" = ( +/turf/closed/wall/resin/membrane, +/area/corsat/sigma/biodome) +"tIL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Hub"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"tIP" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"tJf" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"tJs" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"tJv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"tJA" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"tJY" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydroeast) +"tKy" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/sigmaremote) +"tKI" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/theta/biodome/complex) +"tLa" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar) +"tLr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"tLz" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") + }, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"tLF" = ( +/turf/open/floor/corsat/purplecorner, +/area/corsat/omega/hallways) +"tLR" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"tMq" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/airlock/control) +"tMG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"tMX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"tNp" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/vents/pump, +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"tNJ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/theta/airlock/west/id) +"tNS" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"tNT" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"tOa" = ( +/obj/structure/bed, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"tOo" = ( +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/theta/biodome/complex) +"tOL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/goat, +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"tOT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"tPk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Administration"; + req_access_txt = "106" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaAdmin"; + name = "Security Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"tPT" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"tPV" = ( +/turf/closed/wall/biodome, +/area/corsat/sigma/hangar/security) +"tQd" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"tQk" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"tQs" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"tRA" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"tRC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/residential/east) +"tRM" = ( +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/sigma/south) +"tSo" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential) +"tSu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"tSD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) +"tSE" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"tSG" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/datamaint) +"tTd" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"tTf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/residential) +"tTv" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"tTE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/west) +"tUa" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/sigma/south/offices) +"tUG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"tUO" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/gamma/hallwaysouth) +"tUR" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/north) +"tVr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"tVu" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/hangar) +"tVx" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/toxins) +"tVW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"tWu" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/door_control{ + id = "OmegaOffice"; + name = "Privacy Shutters"; + pixel_y = 1; + use_power = 0 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"tWw" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"tWy" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"tWM" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/omega/offices) +"tXa" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaE"; + name = "Airlock Control"; + pixel_x = 8; + pixel_y = 3; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "OmegaN"; + name = "Airlock Control"; + pixel_x = -2; + pixel_y = 8; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "OmegaS"; + name = "Airlock Control"; + pixel_x = -2; + use_power = 0 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/airlocknorth) +"tXo" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"tXq" = ( +/obj/structure/cargo_container/trijent/left, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"tXB" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"tYg" = ( +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/canteen) +"tYF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"tYX" = ( +/turf/open/shuttle/dropship/light_grey_top, +/area/prison/hangar_storage/research/shuttle) +"tZp" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"tZD" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Atmospherics"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"tZN" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hangar/monorail) +"tZT" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"uag" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/sigma/south/complex) +"ubq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"ubv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"ubJ" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/residential/east) +"ubW" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"ucj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"uco" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"ucu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"ucx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"ucW" = ( +/obj/structure/surface/table/reinforced, +/obj/item/explosive/grenade/flashbang/cluster, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"uez" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/gamma/hangar/arrivals) +"ueK" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"ufN" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Reactor Core"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"ufT" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"ugy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/control) +"ugB" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy12" + }, +/area/prison/hangar_storage/research/shuttle) +"ugC" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"ugK" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"ugM" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/brown/west, +/area/corsat/gamma/cargo) +"uhx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"uip" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"uiW" = ( +/obj/structure/closet/wardrobe/science_white, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"uji" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/hangar/security) +"ujX" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/robotics) +"ukb" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"ukf" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/corsat/inaccessible) +"ukz" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/monorail/control) +"ukQ" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"ukV" = ( +/obj/structure/window_frame/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/biodome/toxins) +"ukY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome) +"ulb" = ( +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/west) +"uli" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"ulq" = ( +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/sigma/south) +"ulr" = ( +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/canteen) +"ulC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"umo" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/south/security) +"umz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"umU" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"unf" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/southeast/generator) +"unL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/white/top, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"unN" = ( +/turf/open/floor/corsat/purple/northwest, +/area/corsat/omega/hallways) +"uoh" = ( +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay/morgue) +"uov" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"uoQ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"upe" = ( +/obj/structure/machinery/computer/cameras{ + network = list("sigma"); + pixel_y = 22 + }, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"upg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"upr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"upA" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"upN" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"uqb" = ( +/obj/structure/cargo_container/trijent/right, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"uqx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/west) +"urx" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"urN" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 4; + id_tag = "oxy_corsat_out" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"urX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"usz" = ( +/obj/effect/landmark/corpsespawner/pmc, +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"usD" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"usK" = ( +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"usS" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"usW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"utp" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/complex) +"utS" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/complex) +"utV" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"uua" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/airlock/south) +"uuu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"uuP" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"uuQ" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"uuT" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/green/east, +/area/corsat/gamma/medbay/morgue) +"uvd" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/security) +"uvy" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Airlock Control"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south) +"uwo" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/airlock/north) +"uww" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"uwy" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/foyer) +"uwC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome) +"uwP" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Arcade" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"uxj" = ( +/obj/structure/machinery/door/window/eastright, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"uya" = ( +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/researcher) +"uyd" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/southeast/dataoffice) +"uyg" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Gamma Dome Control"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"uyw" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"uyT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"uzl" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/monorail) +"uzS" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/hallwaysouth) +"uzW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/complex) +"uAc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/pen, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"uAl" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/airlock/control) +"uAN" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"uAW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "ThetaNorthD"; + name = "Entrance Airlock Control"; + pixel_y = 5; + use_power = 0 + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"uBj" = ( +/obj/structure/window/framed/corsat/hull/research, +/turf/open/floor/plating, +/area/corsat/omega/hallways) +"uBk" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/showers) +"uBH" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/corsat/theta/biodome) +"uCn" = ( +/obj/structure/fence, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer2, +/area/corsat/gamma/biodome) +"uCU" = ( +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/west) +"uDh" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"uDW" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"uDZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"uEC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"uEZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) +"uFg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purple/north, +/area/corsat/omega/hallways) +"uFr" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/lobby) +"uFy" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/omega/hallways) +"uFJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) +"uFM" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar) +"uGv" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/hydrowest) +"uGC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"uGI" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/sigma/south/complex) +"uGQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/airlock/control) +"uHb" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"uHh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/purplecorner, +/area/corsat/gamma/biodome/complex) +"uHm" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy14" + }, +/area/prison/hangar_storage/research/shuttle) +"uHr" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/south/engineering) +"uIh" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/corsat/theta/biodome) +"uIJ" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"uIM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"uIX" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"uIZ" = ( +/turf/open/shuttle/escapepod/floor1, +/area/corsat/theta/biodome/complex) +"uJq" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south/robotics) +"uJr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"uJI" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south) +"uJV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"uKg" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"uKy" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/surgery) +"uKE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/beakers, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"uKV" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/hangar/cargo) +"uLN" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/dorms) +"uLV" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"uMf" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"uMo" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/theta/airlock/west) +"uMq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("omega") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"uMD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/east) +"uMV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"uNW" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/theta/airlock/control) +"uOe" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"uOi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"uOz" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering/atmos) +"uPy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"uPK" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"uPR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"uQt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"uQz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/hallwaysouth) +"uQT" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/residential) +"uRd" = ( +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/hallways) +"uRp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/residential/east) +"uRs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/south/security) +"uRw" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/theta/airlock/control) +"uRA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/corsat/theta/biodome) +"uRC" = ( +/obj/structure/machinery/botany{ + name = "hydroponics tray" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"uRQ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"uRU" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/southeast/datamaint) +"uSc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"uSi" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/hangar/monorail) +"uSk" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaHangarC-N"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/security) +"uSy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/arrow_north, +/area/corsat/gamma/cargo) +"uSz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"uSM" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/south) +"uST" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"uTf" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/corsat/theta/biodome) +"uTg" = ( +/obj/structure/safe, +/obj/item/device/locator, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/sigmaremote) +"uTq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"uTU" = ( +/obj/structure/closet/crate/trashcart, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"uUk" = ( +/obj/structure/cryofeed{ + color = "silver"; + desc = "A bewildering tangle of machinery and pipes."; + layer = 2; + name = "coolant feed" + }, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat, +/area/corsat/gamma/sigmaremote) +"uUW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"uVe" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"uVo" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south) +"uVD" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"uVH" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"uWJ" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/rnr/arcade) +"uXa" = ( +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/control) +"uXk" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"uXw" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"uXL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"uXU" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"uYb" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"uYe" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"uYq" = ( +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/canteen) +"uYR" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/security) +"uZh" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"uZA" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"uZL" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"uZM" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/airlock/control) +"vad" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/residential/researcher) +"vaj" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"val" = ( +/obj/structure/machinery/optable, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/complex) +"var" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"vaw" = ( +/obj/structure/machinery/computer/WYresearch, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/theta/biodome/complex) +"vaI" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"vaK" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/pillbottles, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"vaY" = ( +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"vbv" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/gloves, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"vbB" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"vbW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"vcs" = ( +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) +"vcx" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/vents/pump, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"vcy" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"vcJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"vda" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/residential/west) +"vdt" = ( +/obj/structure/machinery/light, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/sigma/south/complex) +"vfb" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"vfd" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/rnr) +"vff" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"vfK" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"vfR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/ice, +/area/corsat/gamma/biodome) +"vgl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"vgn" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"vgV" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/hallwaysouth) +"vhg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/cargo) +"vht" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red, +/area/corsat/gamma/airlock/south/id) +"vhz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/researcher) +"vhN" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) +"vhS" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/checkpoint) +"vhU" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/theta/airlock/control) +"vhZ" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/corsat/theta/biodome) +"vic" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"vii" = ( +/turf/open/floor/carpet11_12/west, +/area/corsat/omega/offices) +"vim" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/corsat/omega/maint) +"viq" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"viL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/control) +"vjb" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"vjd" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar/office) +"vjA" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"vjF" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"vjW" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/southeast/datalab) +"vka" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/monorail/control) +"vkq" = ( +/obj/structure/computer3frame/server{ + icon_state = "4" + }, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"vks" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"vkt" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"vkO" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"vkW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"vlv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"vme" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"vmh" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/checkpoint) +"vmm" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/complex) +"vmJ" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"vnc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/coast/beachcorner/south_west, +/area/corsat/theta/biodome) +"vnF" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"vnH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"voj" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"voo" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south) +"voF" = ( +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering) +"voM" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"vpl" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hangar) +"vpT" = ( +/obj/structure/closet/crate/science, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/cargo) +"vqA" = ( +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/hallwaysouth) +"vqF" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + damage_cap = 4000; + name = "\improper Emergency Access"; + req_access_txt = "100"; + req_one_access = null + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"vqP" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering) +"vrx" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"vrA" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"vrC" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/toxins) +"vsg" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"vsn" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"vsu" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"vsN" = ( +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/hallwaysouth) +"vsP" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"vth" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/phoron/small_stack, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"vtk" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/biodome/virology) +"vtq" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast) +"vuq" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"vur" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/hangar/arrivals) +"vuu" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"vwu" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"vxb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Baths" + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"vxj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"vxk" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"vxv" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 1 + }, +/turf/open/shuttle/escapepod/floor5, +/area/corsat/theta/biodome/complex) +"vyk" = ( +/turf/open/floor/corsat/greenwhitecorner/north, +/area/corsat/gamma/medbay/morgue) +"vyA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/southeast/datalab) +"vyB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/mars, +/area/corsat/sigma/biodome) +"vyH" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/control) +"vyR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/foyer) +"vyY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"vza" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/pipes/vents/pump, +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"vzc" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south) +"vzp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/dataoffice) +"vzv" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"vzA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHCargoN"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/id) +"vzK" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"vzV" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/complex) +"vAm" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/east) +"vAP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"vAX" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"vBb" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/containment) +"vBS" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/arrivals) +"vCj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"vCo" = ( +/turf/open/floor/corsat/greenwhite/southwest, +/area/corsat/gamma/medbay/morgue) +"vCr" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/item/tool/mop, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) +"vCx" = ( +/turf/closed/wall/resin/membrane, +/area/corsat/omega/biodome) +"vCR" = ( +/turf/open/floor/corsat/greenwhitecorner/north, +/area/corsat/gamma/medbay/lobby) +"vCS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome) +"vDg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/east) +"vDt" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"vDu" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"vDF" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"vEs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/south) +"vEK" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"vEM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast/datamaint) +"vEY" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"vFf" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"vFk" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar) +"vFm" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"vFo" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/virology) +"vFJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/mars, +/area/corsat/sigma/biodome) +"vFL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/security/cells) +"vGn" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"vGz" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"vGW" = ( +/turf/open/floor/corsat/purple/east, +/area/corsat/omega/hallways) +"vHf" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"vHx" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"vHM" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"vHP" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"vHQ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"vHU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"vIb" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"vJr" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"vJz" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/monkeycubes/farwacubes, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"vKa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/hangar/cargo) +"vKH" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, +/area/corsat/theta/biodome) +"vKN" = ( +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"vLb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"vLO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"vLQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"vLX" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"vLZ" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/omega/offices) +"vMA" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential) +"vMI" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"vMM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"vMP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"vMV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/residential/east) +"vMX" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"vNe" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar) +"vND" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/south) +"vOh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"vOw" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"vOK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydrowest) +"vPM" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar) +"vQg" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"vQs" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/monorail/control) +"vQt" = ( +/turf/open/floor/corsat/purple/east, +/area/corsat/sigma/south) +"vQA" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/theta/biodome/complex) +"vRc" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/rnr) +"vSa" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"vSE" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"vSF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"vTr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"vTF" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"vTT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"vUl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"vUn" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "Omega Dome Control"; + req_one_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/control) +"vVc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"vVA" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydrowest) +"vVI" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/north) +"vVJ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay) +"vVO" = ( +/obj/item/stool, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"vVU" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/south) +"vWM" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/researcher) +"vXy" = ( +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/sigma/south) +"vYe" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"vYt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"vYY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"vZD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"vZJ" = ( +/obj/effect/alien/weeds/node, +/turf/closed/wall/resin/membrane, +/area/corsat/omega/biodome) +"wah" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/id) +"waF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"wbf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/coast/beachcorner/south_east, +/area/corsat/theta/biodome) +"wbK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/white/northeast, +/area/corsat/sigma/dorms) +"wcn" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"wcw" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"wcB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/mars/mars_dirt_3, +/area/corsat/sigma/biodome) +"wda" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"wdn" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/chemistry) +"wea" = ( +/obj/structure/surface/rack, +/obj/item/storage/photo_album, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"wet" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/corsat/sigma/south/complex) +"wfn" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/west) +"wfD" = ( +/obj/structure/tunnel{ + id = "hole0" + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"wfK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"wfL" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/theta/biodome/complex) +"wgY" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "RemoteGate"; + name = "Gate Shutters"; + use_power = 0 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/hangar/monorail) +"whe" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"wie" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"wim" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/hangar/office) +"wiF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/ice, +/area/corsat/gamma/biodome) +"wiJ" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"wiQ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/hallways) +"wjb" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/corsat/gamma/hangar/monorail/railcart) +"wji" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"wjn" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "GammaSouthN"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = 6; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "GammaSouthS"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = -3; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "GammaSouthAirlockC"; + name = "Security Shutters"; + pixel_x = 5; + pixel_y = 2; + use_power = 0 + }, +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/south) +"wjw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/hangar/office) +"wkm" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"wkr" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/security) +"wkG" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south/security) +"wlc" = ( +/obj/vehicle/train/cargo/engine{ + dir = 2 + }, +/turf/open/floor/almayer/plating_striped, +/area/corsat/gamma/sigmaremote) +"wlj" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/hangar/office) +"wlt" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/rack, +/obj/item/device/reagent_scanner, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/complex) +"wlY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"wmf" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"wmi" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat, +/area/corsat/sigma/hangar) +"wmj" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/gloves, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/complex) +"wmr" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"wmE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"wmU" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/hangar) +"wmV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Hypersleep Chamber"; + req_access_txt = "100" + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"wnB" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"wnJ" = ( +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential/east) +"wnL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/arrow_west, +/area/corsat/omega/hangar) +"wnO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"wop" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/optable, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"woz" = ( +/obj/structure/safe, +/obj/item/device/yautja_teleporter, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/sigmaremote) +"wpk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"wpA" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"wpO" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Engineering"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"wpV" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"wpZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"wqn" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"wqr" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar) +"wqN" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/hangar/security) +"wqP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"wrd" = ( +/obj/structure/surface/rack, +/obj/item/xeno_restraints, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"wrC" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"wrR" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"wrX" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/south/security) +"wsn" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"wss" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/id) +"wsJ" = ( +/turf/open/floor/corsat, +/area/corsat/sigma/hangar/checkpoint) +"wsQ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Construction Yard"; + req_one_access_txt = "102" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"wtu" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"wtM" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"wuh" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south/id) +"wui" = ( +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/hallwaysouth) +"wuC" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"wuK" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar) +"wuS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"wvx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"wvG" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat, +/area/corsat/sigma/south/robotics) +"wvK" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"wvN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"wvZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"wwi" = ( +/obj/structure/machinery/computer/area_atmos/area, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering/atmos) +"wwB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/river/desert/shallow/pool, +/area/corsat/gamma/residential/showers) +"wwC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"wwE" = ( +/turf/open/floor/corsat/brown/northeast, +/area/corsat/sigma/cargo) +"wwQ" = ( +/obj/structure/largecrate/chick, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"wwT" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"wxi" = ( +/mob/living/carbon/human/yiren, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"wxF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHCargoS"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/id) +"wya" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/arrow_south, +/area/corsat/gamma/hangar) +"wye" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/sigma/north) +"wyz" = ( +/turf/open/floor/corsat/arrow_west, +/area/corsat/sigma/hangar) +"wyL" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/security) +"wzK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"wAk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"wAz" = ( +/obj/structure/tunnel{ + id = "hole1" + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"wAF" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"wBc" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/security) +"wBf" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"wBk" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"wBJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"wBK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"wBP" = ( +/turf/open/floor/corsat/greencorner, +/area/corsat/gamma/medbay/morgue) +"wCI" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"wCJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/north) +"wDi" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "Sigma Dome Control"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/airlock/control) +"wDw" = ( +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/residential) +"wDC" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar) +"wEd" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/autopsy_scanner, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/hemostat, +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/complex) +"wEn" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"wFJ" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"wFO" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 5; + icon_state = "single_part" + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"wFU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"wGb" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"wGm" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("omega") + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"wGr" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"wGT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Gamma Dome Control"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"wGW" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"wGZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"wHN" = ( +/obj/item/weapon/gun/flamer, +/obj/item/explosive/grenade/incendiary, +/obj/structure/closet/secure_closet/guncabinet{ + name = "specimen control cabinet"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"wHQ" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"wIk" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"wIr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"wIu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"wIy" = ( +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/residential) +"wII" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"wIT" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/security) +"wIY" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"wIZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/white, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"wJp" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/wrench, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/sigmaremote) +"wJq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"wJz" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"wJA" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/arrivals) +"wJM" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south) +"wJU" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar) +"wKb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"wKf" = ( +/obj/structure/prop/mech/parts/durand_right_arm, +/turf/open/floor/corsat/arrow_west, +/area/corsat/sigma/south/robotics) +"wKh" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"wKD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/south/engineering) +"wKF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/airlock/control) +"wKK" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo/lobby) +"wKL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/airlock/south) +"wKT" = ( +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/theta/biodome/complex) +"wLS" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "OmegaCargoN"; + name = "Omega Cargo Room"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/cargo) +"wMg" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/item/stack/sheet/metal{ + pixel_x = 3 + }, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/complex) +"wOt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/administration) +"wOQ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/fancy/cigarettes/arcturian_ace, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"wOX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/blue/southwest, +/area/corsat/sigma/southeast/datalab) +"wPq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"wPz" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/complex) +"wQd" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purple/southwest, +/area/corsat/omega/complex) +"wQG" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south) +"wQJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"wQZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags, +/turf/open/floor/corsat/green/northeast, +/area/corsat/gamma/medbay/morgue) +"wRH" = ( +/obj/vehicle/train/cargo/trolley, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/cargo) +"wSb" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"wSg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/coast/west, +/area/corsat/theta/biodome) +"wSq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"wSz" = ( +/obj/structure/cargo_container/trijent/mid, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"wSM" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"wTp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"wTZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"wUc" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"wUd" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"wUx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"wUE" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/checkpoint) +"wVb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/phoron/small_stack, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/complex) +"wVz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer2, +/area/corsat/gamma/biodome) +"wVA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/security) +"wVG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"wWr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"wWW" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "SigmaEastID"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/east/id) +"wXD" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"wXE" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/corsat/sigma/dorms) +"wXT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"wYj" = ( +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"wYt" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"wYA" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"wYD" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/morgue) +"wYP" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/robotics) +"wZg" = ( +/obj/structure/cryofeed/right{ + name = "\improper coolant feed" + }, +/turf/open/floor/corsat, +/area/corsat/sigma/south/complex) +"wZu" = ( +/obj/structure/pipes/vents/pump, +/turf/open/ice, +/area/corsat/gamma/biodome) +"wZB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/residential/east) +"wZC" = ( +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/residential) +"xap" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south) +"xaF" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"xaQ" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/hallwaysouth) +"xbu" = ( +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/hallwaysouth) +"xbW" = ( +/obj/structure/safe, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"xbX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"xcG" = ( +/obj/structure/machinery/chem_dispenser{ + req_access_txt = "100" + }, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"xdi" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"xdB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/hangar) +"xeO" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"xeV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"xfe" = ( +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/theta/biodome/complex) +"xfC" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/barricade/handrail{ + layer = 3 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"xfT" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar) +"xha" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/ice, +/area/corsat/gamma/biodome) +"xhd" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south/engineering) +"xhx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydroeast) +"xhA" = ( +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/sigma/dorms) +"xiy" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/southeast/dataoffice) +"xiV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"xiW" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/north) +"xjw" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/south/security) +"xjX" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"xkn" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/hangar/monorail) +"xkt" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"xkB" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"xkE" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"xkH" = ( +/turf/open/floor/corsat/green/north, +/area/corsat/gamma/medbay/morgue) +"xld" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/sigma/south) +"xlg" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"xlv" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/omega/hallways) +"xlF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/cryofeed/right{ + name = "\improper coolant feed" + }, +/turf/open/floor/corsat, +/area/corsat/sigma/south/complex) +"xlG" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"xlR" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"xlU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"xmg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"xmh" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"xmC" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/south/offices) +"xmF" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/brown/southwest, +/area/corsat/omega/cargo) +"xmV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"xnk" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"xnU" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"xoj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/mars, +/area/corsat/sigma/biodome) +"xoq" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/residential) +"xoy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"xoG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"xoK" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/southeast/generator) +"xoV" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"xpk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"xqh" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/omega/complex) +"xqz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/complex) +"xsm" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/sigma/hangar/office) +"xsE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"xsU" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"xsZ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat, +/area/corsat/sigma/southeast/generator) +"xtF" = ( +/obj/structure/machinery/camera/autoname{ + network = list("theta") + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"xtO" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"xtR" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/green/east, +/area/corsat/gamma/medbay/morgue) +"xtW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"xuo" = ( +/obj/item/cell/crap, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential/researcher) +"xuF" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 + }, +/obj/item/organ/brain, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"xuI" = ( +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/morgue) +"xvj" = ( +/obj/structure/surface/table/reinforced, +/obj/item/form_printer, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"xvB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/ashtray/plastic{ + pixel_x = 4 + }, +/obj/item/phone{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast/datalab) +"xvE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"xvG" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"xvV" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/airlocknorth/id) +"xwg" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/omega/control) +"xxF" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/hangar) +"xxO" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"xxZ" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/hangar/office) +"xys" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/gamma/hangar/flightcontrol) +"xzg" = ( +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"xzI" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"xzU" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"xzW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/mars, +/area/corsat/sigma/biodome) +"xzX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"xAo" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/foyer) +"xBa" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"xBb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Observation Chamber"; + req_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"xBs" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/southwest, +/area/corsat/theta/airlock/west) +"xBz" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/residential) +"xBA" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar) +"xBK" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"xCe" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/airlock/south/id) +"xCy" = ( +/obj/structure/bed/nest, +/turf/open/ice, +/area/corsat/gamma/biodome) +"xCE" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"xDC" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "SigmaEastID"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/east/id) +"xEP" = ( +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/researcher) +"xER" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"xEW" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/hangar/office) +"xEX" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"xFf" = ( +/obj/structure/stairs{ + dir = 4 + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/hallwaysouth) +"xFk" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hallwaysouth) +"xFK" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/corsat/theta/biodome/complex) +"xFN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/mars, +/area/corsat/sigma/biodome) +"xGd" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/hydroeast) +"xGI" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"xHd" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaHCargoN"; + name = "Gamma Cargo Checkpoint"; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/cargo) +"xHk" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"xHm" = ( +/turf/open/floor/corsat/white, +/area/corsat/sigma/dorms) +"xHy" = ( +/turf/open/floor/corsat/greenwhitecorner/east, +/area/corsat/gamma/medbay) +"xHM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/airlock/control) +"xHN" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"xHV" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/hallwaysouth) +"xIJ" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"xJc" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"xJB" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/airlocknorth/id) +"xJH" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/dorms) +"xJI" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"xKr" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/hangar/monorail) +"xKu" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/airlock/east) +"xKA" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/gamma/hallwaysouth) +"xKC" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("omega") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/airlocknorth/id) +"xKV" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"xLg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"xLv" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/south) +"xMg" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"xMi" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/hangar/monorail/control) +"xMy" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"xMA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"xMJ" = ( +/turf/closed/wall/biodome, +/area/corsat/omega/hallways) +"xMS" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/obj/effect/decal/cleanable/cobweb{ + dir = 1 + }, +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"xNa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/ice, +/area/corsat/gamma/biodome) +"xNw" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydrowest) +"xNL" = ( +/obj/structure/surface/table/almayer, +/obj/item/evidencebag, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/security) +"xNR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/arrow_east, +/area/corsat/sigma/southeast/datalab) +"xOJ" = ( +/turf/open/floor/corsat/darkgreen/northwest, +/area/corsat/gamma/hangar/arrivals) +"xPi" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/west/id) +"xPw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"xPy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"xPF" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/omega/offices) +"xQb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"xQk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/lounge) +"xQF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/corsat/omega/control) +"xQH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/researcher) +"xQS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"xRb" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/white/southeast, +/area/corsat/gamma/hallwaysouth) +"xRq" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/corsat/theta/biodome) +"xRM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"xSj" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/plating, +/area/corsat/omega/security) +"xSk" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"xSL" = ( +/turf/open/floor/corsat/purplecorner, +/area/corsat/sigma/south) +"xSO" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"xST" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/sigma/hangar) +"xTU" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/control) +"xUd" = ( +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/west) +"xUj" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/omega/hallways) +"xUr" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"xVS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"xWm" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"xWE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_3, +/area/corsat/sigma/biodome) +"xWH" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/browncorner/east, +/area/corsat/gamma/cargo) +"xWS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"xXp" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar) +"xYI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Auditorium" + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"xYP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"xYY" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"xZc" = ( +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast) +"xZn" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar) +"xZB" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/south/complex) +"yaq" = ( +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/researcher) +"yau" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"yaD" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/sigmaremote) +"yaN" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/security) +"ybl" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/hangar) +"ybq" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/robotics) +"ybv" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/hallwaysouth) +"ybJ" = ( +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"ybP" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/surgery) +"ybQ" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail) +"ycd" = ( +/turf/open/floor/corsat/darkgreen/northwest, +/area/corsat/gamma/rnr/bar) +"ycg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/sigma/hangar/monorail) +"ydU" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"ydX" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"ydY" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"ydZ" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydrowest) +"yea" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/monorail) +"yeL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"yeW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"yfh" = ( +/turf/open/floor/corsat, +/area/corsat/sigma/cargo) +"yfB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"yfH" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"yfO" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"yfQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/north) +"yga" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"ygx" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/complex) +"ygy" = ( +/obj/structure/pipes/standard/simple/hidden/universal, +/turf/open/floor/corsat/yellow/west, +/area/corsat/theta/airlock/control) +"ygF" = ( +/obj/structure/machinery/computer/cameras{ + network = list("theta"); + pixel_y = 22 + }, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"ygN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential) +"yhc" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"yhw" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"yhy" = ( +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/researcher) +"yhC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"yhI" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"yhK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"yio" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"yji" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"yjw" = ( +/obj/structure/fence, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"yki" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/sigmaremote) +"ykJ" = ( +/obj/structure/machinery/power/reactor/colony{ + desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; + name = "\improper G-17 Thermoelectric Generator" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"ykO" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/security) +"yla" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/omega/control) +"yle" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"ylo" = ( +/turf/open/space, +/area/space) +"ylS" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"ymj" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/hangar/security) + +(1,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aer +aer +adM +adM +aer +adM +adM +aer +aer +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aiU +aiU +aiU +aiU +aiU +aiU +aiU +aiU +aiU +aiU +aiU +aiU +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(2,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aer +adB +adO +adO +aFN +adO +adO +adB +aer +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aiU +aiU +aiU +aiU +aiU +aiU +bfF +bfB +bgk +bfS +bfa +bfZ +bgd +bge +bfQ +bfe +aiU +aiU +aiU +aiU +aiU +aiU +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(3,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aer +aer +aer +adC +adn +adn +adn +adn +adn +lJj +aer +aer +aer +abG +abG +adV +ylo +ylo +ylo +ylo +adV +abG +abG +adV +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aiU +aiU +aiU +aiU +bfS +bfW +bfa +pwp +bfB +bfG +bfc +bfc +bfc +bfc +bfc +bfc +bfc +pwp +bfG +bfg +nfz +xCy +ims +nfz +aiU +aiU +aiU +aiU +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(4,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aer +aFH +aPj +lJj +adn +aeg +aQZ +afj +adn +lJj +aRG +aFH +acN +anf +anf +adV +adV +adV +adV +adV +adV +apF +abJ +adV +adV +adV +adV +adV +ylo +ylo +adV +adV +adV +adV +adV +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aiU +aiU +aiU +bfS +bfW +bfa +bfZ +bge +bfc +bfc +bfc +bfc +bfc +bfc +bfc +aEZ +tWy +bfc +bfc +bfc +bfc +bfc +bfc +aEZ +bfc +wFO +wFO +bfc +bfc +aiU +aiU +aiU +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(5,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +adV +abG +abG +abG +adV +adV +adV +adV +abG +abG +abG +aer +awZ +adj +adn +adn +aey +aRg +afr +adn +adn +aly +aRQ +acN +aFM +abN +abJ +abH +abP +aFW +abP +eTj +abN +ank +abP +aFi +acj +acB +adV +ylo +ylo +adV +aFi +acj +acB +adV +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aiU +aiU +aiU +bfc +nZR +wiF +wiF +wiF +wiF +wiF +wiF +wiF +wiF +wiF +wiF +wiF +wiF +wiF +fWM +wiF +wiF +nnC +huu +bfc +bfc +bfc +bfc +wFO +bfc +bfc +bfc +bfc +bfc +aiU +aiU +aiU +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ahA +ahA +ahA +ahA +ahA +ahA +ahA +ylo +ylo +ylo +ahA +ahA +ahA +ahA +ahA +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +azX +azX +azX +azX +azX +azX +azX +azX +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(6,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +adV +adV +abL +abN +eTj +adV +aFi +acj +acg +abN +acH +exb +acN +aAU +adn +llr +adn +aep +aRj +afr +adn +llr +adn +aFH +acN +acu +lsH +abN +ank +abP +aox +acg +abN +lsH +asQ +abP +abP +acw +abP +adV +abG +abG +adV +abP +acw +abP +adV +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aiU +aiU +aiU +bfF +bgk +bfc +oJn +bfc +bfc +bfc +bfc +bfc +aEZ +bfc +bfc +bfc +bfS +bfa +bfc +bfc +bfc +bfc +bfc +hHy +huu +bfc +foQ +bfc +bfc +bfc +bfc +bfc +aEZ +bfc +bgf +bfb +bfu +aiU +aiU +aiU +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ahA +bFj +brx +vHP +brx +bOL +ahA +ylo +ylo +ylo +ahA +bsS +brx +bNb +ahA +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +azX +azX +azX +azX +azX +sWP +sWP +sWP +sWP +sWP +sWP +azX +azX +azX +azX +azX +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(7,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abG +abH +abM +abN +eTj +abP +aci +abP +abP +adE +abN +abJ +acN +aFH +adj +dQQ +kHe +aep +aRs +ioh +adn +dQQ +aly +aRS +acN +abL +oGz +abN +abO +abP +aoy +abP +acz +oGz +abO +abP +acc +abN +acz +abP +xEP +apK +abP +acz +abN +lQu +adV +adV +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aiU +aiU +aiU +bfF +bfB +bfG +bfc +bfc +oJn +aEZ +aIt +aIt +aIt +aIt +aIt +aII +aII +aIt +aIt +aIt +lnQ +aII +aIt +aIt +bfc +oJn +bfc +bfc +bfc +bfc +bfc +sFF +bfc +bfc +sFF +bfc +bgc +bfU +bfT +pwp +bgk +aiU +aiU +aiU +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ahA +ahA +arV +bNc +brO +aHe +brO +jzM +arV +arV +arV +arV +arV +aZI +brO +aZJ +arV +ahA +ahA +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +azX +azX +azX +sWP +sWP +sWP +sWP +sWP +avX +avX +avX +avX +sWP +sWP +sWP +sWP +sWP +azX +azX +azX +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(8,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abG +abJ +abN +lsH +asQ +abP +abP +abP +abL +fFa +lsH +aFn +acN +aFO +adn +dQQ +adn +aeq +aRF +afx +adn +dQQ +adn +aPj +acN +eTj +oGz +abP +abP +abP +abP +abP +abP +acv +abP +abP +aqb +rcg +pkc +apo +sCf +cRn +apo +pkc +aIj +acH +acI +abG +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aiU +aiU +bfF +bfB +bfG +bfc +aEZ +bfc +bfc +oJn +bfc +aIt +vHx +oCp +aIt +aSL +mSz +mWG +xMy +aSC +xMy +mWG +mSz +wlt +aIt +bfc +aER +bfc +bfc +bfc +hze +bfc +bfc +bfc +bfc +tWy +bfc +bfc +bfg +bfU +bfW +bfT +pwp +bgk +aiU +aiU +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ahA +bjR +aZz +dgq +aHu +aHu +aHu +aHu +aHu +bMM +aiL +ehj +aHu +aHu +aHu +aHu +aHu +bMM +ahA +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +azX +azX +sWP +sWP +sWP +avX +aFc +avX +avX +avX +avX +aFc +avX +avX +avX +avX +avX +sWP +sWP +sWP +azX +azX +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(9,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +abF +aar +aar +aar +aar +aar +abF +abF +ylo +abF +aar +aar +aar +abF +abF +abF +abF +abF +abF +adE +oGz +abN +acg +acj +abP +abP +adE +qJl +acc +acN +awZ +adj +xQk +pIo +pIo +pIo +pIo +pIo +oEK +aly +aRQ +acN +juf +oGz +abP +aFW +acW +abP +yhy +diP +gth +uya +abP +uST +aGb +abO +abP +vad +aPr +abP +abL +aMP +eTj +abJ +abG +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aiU +aiU +aiU +pwp +bfG +bfc +bfc +bfc +bfc +bfc +bfc +oJn +aIt +aIt +aIG +aIG +aIt +lbC +bbH +vnF +bbH +bbH +bbH +vnF +bbH +vaK +aIt +aIt +oJn +bfc +bfc +bfc +bfc +bfc +bfc +bfc +bfc +hHy +huu +bfc +bfc +bfZ +bge +bfU +bfW +bfT +bfu +aiU +aiU +aiU +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ahA +btU +bry +aHw +aMZ +iLZ +aMZ +aMZ +aMZ +gbQ +aiQ +aHw +aMZ +aMZ +aMZ +aMZ +aMZ +gbQ +ahA +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +azX +azX +azX +sWP +sWP +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +aFc +sWP +sWP +azX +azX +azX +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(10,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +abF +ajS +aas +aas +aas +aas +aas +mQG +abF +abF +abF +akC +akE +akG +abf +anV +bxe +bxf +bxg +aax +abO +oGz +iZz +abP +aFj +acm +abP +abO +oGz +acz +acN +aGo +aPp +dQQ +adn +aeu +afb +afA +adn +dQQ +aFH +aFH +acN +acz +oGz +acg +acx +abP +abP +aBx +abU +gth +uya +abP +abP +abP +abP +abP +coy +uya +abP +abP +abP +abP +adV +adV +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aiU +aiU +bfc +bfc +bfc +bfc +aEZ +bfc +bfc +bfc +bfc +bfc +oJn +aIt +xYY +pcb +aSA +aIt +lmD +bbH +rMD +kmV +njv +uZh +rMD +bbH +vGn +vzV +aIt +oJn +bfc +aEZ +bfc +bfc +bfc +bfc +bfc +bfc +hHy +huu +bfc +bfc +aEZ +bfc +bfZ +bge +bfU +bfT +bfh +bfi +aiU +aiU +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ahA +btX +bFg +aHw +aMZ +rFm +aMZ +aMZ +aMZ +gbQ +aiQ +aHw +aMZ +bEM +bNj +brw +aMZ +kQe +ahA +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +azX +azX +sWP +sWP +sWP +avX +avX +avX +avX +avX +avX +avX +aFe +aFe +aFe +aFe +avX +avX +aFc +avX +avX +avX +avX +sWP +sWP +sWP +azX +azX +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(11,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +vkq +ldy +olB +olB +olB +olB +olB +tKy +qqg +abf +tjQ +ldy +nrl +wGZ +abf +ayv +axj +axj +tpW +aax +abP +acv +abP +abP +abP +abP +abP +abP +acv +abP +acN +acV +acV +dQQ +adQ +acV +acV +acV +adn +lZp +acV +acV +acN +abP +acv +abP +abP +abP +yhy +diP +abU +gth +abQ +apK +xEP +bHi +xEP +apK +ifh +aQX +abP +aFi +acj +acB +adV +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aiU +aiU +nZR +wiF +wiF +wiF +wiF +wiF +wiF +wiF +wiF +qkt +wiF +xNa +aIt +ito +iDH +syk +aIt +lIE +bbH +dQL +ncR +klS +bbH +bbH +bbH +vGn +jho +aIt +nri +wiF +vfR +vfR +vfR +wiF +aFd +wiF +wiF +fWM +wiF +wiF +wiF +wiF +wiF +tlx +bfc +bfc +bfU +bfT +bfh +bfi +aiU +aiU +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ahA +btZ +brD +aHw +aYO +bMI +bsS +aZY +aMZ +aVF +aiL +xmg +aMZ +bNb +aHe +bNl +aMZ +kQe +ahA +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +azX +azX +sWP +sWP +qfl +avX +avX +avX +aFc +avX +avX +sWP +vCx +vCx +hwe +hwe +vCx +vCx +sWP +avX +avX +avX +avX +avX +aFc +qfl +sWP +sWP +azX +azX +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(12,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +abF +rcT +axj +axj +axj +axj +axj +axj +axj +lRg +abf +lPD +axj +axj +azU +abf +aCv +axj +mGL +bxh +aax +atu +mGl +mxc +vhz +vhz +hzU +vhz +loF +chJ +dcK +vhz +lRW +loF +hur +cRn +mxc +vhz +loF +cRn +hur +mxc +vhz +vhz +nBk +chJ +mxc +vhz +hzU +loF +mim +cRn +vbB +abU +abU +abU +abU +abU +abU +gth +uya +abP +abP +acw +abP +adV +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aiU +aiU +bfc +oJn +aEZ +bfc +bfc +bfc +bfc +bfc +bfc +aEZ +uXU +bfc +xCy +aIt +dfT +iDH +onz +aIt +xaF +bbH +sEc +vmm +jZU +uiW +gRE +fJx +jmL +wVb +aIt +bfe +bfc +bfc +huu +bfc +bfc +bfc +bfc +bfc +bfc +pwp +bfL +bfQ +bfc +bfc +oJn +bfc +bfc +bfc +bfU +bfW +bfa +bfi +aiU +aiU +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ahA +bue +bry +aHw +aYO +bFo +bFj +aZY +aMZ +pUA +aNb +sON +aMZ +aHe +aHe +aHe +aMZ +gbQ +ahA +ylo +ylo +ylo +ylo +ylo +ylo +ylo +sXl +sXl +sXl +sXl +sXl +sXl +auL +auL +auL +auL +auL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +azX +azX +sWP +sWP +dWJ +avX +avX +avX +avX +avX +avX +avX +vCx +toC +qfl +avX +avX +dPH +qfl +vCx +avX +avX +avX +avX +avX +avX +avX +qfl +sWP +sWP +azX +azX +ylo +ylo +ylo +ylo +ylo +ylo +"} +(13,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aar +woz +iYj +axj +eXX +nBw +mGL +nlU +ugK +axj +axj +aDZ +axj +axj +mGL +gZB +abf +bjn +axj +oVT +bxi +aax +ppy +gth +aPr +yaq +sam +gth +aPr +aFk +sam +gth +aPr +aFk +sam +gth +aPr +sam +abU +aPr +sam +xQH +aPr +aFk +sam +xQH +aPr +aFk +sam +gth +aPr +sam +abU +mGl +cRn +cRn +unL +wIZ +qkJ +cRn +vbB +ill +abP +acc +abN +eTj +adV +adV +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aiU +aiU +bfc +bfc +oJn +bfc +aIm +bcf +bcf +bcf +aIm +bfc +bfc +bfc +xCy +bfg +aIt +aIt +bbE +aIt +aIt +aII +bbH +aRo +aII +aIt +aIt +aIt +aIt +aIt +aIt +aIt +bfD +bfL +bfc +bfc +bfc +bfc +aUG +bcg +ukV +bcg +aUG +bfD +bfL +bfQ +bfc +oJn +bfc +bfc +bfc +bfc +bfZ +bga +bfh +bfi +aiU +aiU +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ahA +btX +aHe +aHw +aYO +bGa +aGJ +jaJ +oZD +rVS +tSD +gIT +oZD +pVS +pVS +pVS +sba +gbQ +ahA +ylo +ylo +ylo +ylo +ylo +ylo +ylo +sXl +dDl +dDl +dDl +dDl +anT +aMB +aMB +wHN +wHN +auL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +azX +sWP +sWP +qfl +avX +avX +avX +aFc +avX +avX +avX +aFe +vCx +qfl +aFf +aFe +aFe +aFe +qfl +vCx +aFe +avX +avX +avX +avX +avX +avX +avX +dPH +sWP +sWP +azX +ylo +ylo +ylo +ylo +ylo +ylo +"} +(14,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aar +uTg +iYj +axj +eXO +nrl +hap +wKb +tMG +xsE +xsE +xsE +xsE +xsE +qST +uRQ +abf +ayM +kBW +oVT +bxj +aax +abR +gth +uya +abP +abP +acv +abP +abP +abP +acv +abP +abP +abP +acv +abP +abP +pEX +abP +abP +acv +abP +abP +abP +acv +abP +abP +abP +acv +abP +aYY +sam +tDc +abU +abU +abU +abU +abU +abU +mGl +cRn +apo +pkc +uDW +aqb +uEC +abG +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aiU +aiU +bfc +bfc +bfc +oJn +aIm +aIm +gaP +pVL +dXq +aIm +aIm +pwp +bgk +bfg +aIt +aIt +vHM +iLN +sXG +dWc +aIu +bbH +sEc +aSN +aIt +aJd +iyA +iyA +aTO +aTV +aIt +aIt +bfd +bfc +aEZ +bfc +aUG +aUG +nUs +ucu +pbX +aUG +aUG +bfD +bfL +bfc +oJn +bfe +bfc +bfc +bfc +bfc +bgb +bge +bfh +bfi +aiU +aiU +ylo +ylo +ylo +ylo +ylo +ylo +ylo +arV +gJr +bry +aHw +aYO +bGg +brw +aZY +aMZ +aVF +aiL +xmg +aMZ +bsS +aHe +bNm +rFm +aVF +arV +ylo +ylo +ylo +ylo +ylo +sXl +sXl +sXl +xvV +eji +eji +oMp +anT +aoB +oay +oay +aXD +auL +auL +auL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +azX +azX +sWP +qfl +avX +aFc +avX +avX +avX +avX +avX +avX +aFe +hwe +avX +aFe +aFe +aFe +aFe +avX +hwe +aFe +avX +avX +avX +avX +avX +hwe +hwe +aFc +qfl +sWP +azX +azX +ylo +ylo +ylo +ylo +ylo +"} +(15,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +abF +dwH +axj +axj +axj +axj +axj +axj +axj +rCH +abf +dBW +axj +oVT +xvj +abf +abf +abf +bkr +abf +aax +abR +gth +uya +abP +eTj +oGz +acz +abP +abL +oGz +acc +abP +adE +oGz +eTj +abP +jOE +abP +abJ +oGz +eTj +abP +acz +oGz +adE +abP +abO +oGz +abP +abP +abR +tDc +aPr +jWy +yaq +bHj +yaq +jWy +vad +aPr +abP +abO +aQG +abH +iWA +abG +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aiU +aiU +nZR +wiF +aFd +wiF +xNa +aIm +kJT +aIo +ltk +xHN +jzn +aIm +aIm +aIm +aIt +aIt +xqz +aIu +sEc +bbH +bbH +bbH +bbH +sEc +vGn +bbJ +aIX +aIX +aIX +aIX +aIX +roj +aIt +aIt +bfc +bfc +aUG +aUG +aTQ +aJr +gbm +aJr +ecA +aUG +aUG +bfd +bfc +oJn +bfC +bfQ +bfe +bfc +bfc +bfc +bfc +bfQ +bfh +bfi +aiU +aiU +ylo +ylo +ylo +ylo +ylo +ylo +arV +bsS +aHe +aHw +aMZ +rFm +aMZ +aMZ +aMZ +gbQ +aiQ +aHw +aMZ +bNc +bEM +bFj +rFm +rDF +arV +ylo +ylo +ylo +ylo +ylo +sXl +xJB +eji +hgB +mbO +mbO +mAV +xKC +kCq +aMC +aMC +oMG +oay +kap +auL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +azX +azX +sWP +sWP +avX +avX +avX +avX +avX +avX +lTU +avX +avX +eMM +hwe +avX +aFe +eeG +aFe +aFe +avX +hwe +eMM +avX +avX +aFc +hwe +avX +hwe +hwe +avX +avX +sWP +sWP +azX +azX +ylo +ylo +ylo +ylo +"} +(16,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +izn +dBW +qRY +ahk +qRY +ahk +qRY +rCH +lkv +abf +nYO +dBW +oVT +tKy +abf +hyf +fGO +oVT +oob +aax +abR +mGl +nna +abP +avD +mqn +lQu +abP +aFo +fqp +abJ +abP +aFt +erc +acI +abP +jOE +abP +aFv +fqp +uEC +abP +aFI +erc +acI +abP +avD +mqn +lQu +abP +gab +vbB +uya +abP +abP +abP +abP +abP +coy +uya +abP +abP +abP +abP +adV +adV +ylo +ylo +ylo +ylo +ylo +ylo +aiU +aiU +bfc +oJn +bfc +bfc +bfc +bfe +aIm +aYz +aIq +aIq +vtk +rWM +wTZ +ezJ +bbB +sHB +aSj +aIu +bbH +sEc +vmm +aSk +obd +bbH +sEc +owL +bbJ +aIX +aJo +aTC +aJB +aIX +aIX +aTZ +aIt +bfc +bfc +aUG +aJf +hBq +aIZ +aIZ +jUx +pVr +aJf +aUG +bfg +bfc +oJn +bfD +bfE +bfG +bfc +bfc +bfc +bfc +bfc +bfQ +bfh +bff +aiU +aiU +aQz +aQz +aQz +aQz +aQz +aQz +opl +bry +egM +aMZ +rFm +aMZ +aMZ +aMZ +gbQ +aiQ +aHw +aMZ +aMZ +aMZ +aMZ +rFm +gbQ +arV +aqr +aky +aky +aqr +aqr +sXl +aCe +fxW +aWQ +mPS +pQt +mPS +mPS +aMD +dMR +dMR +fxn +aMC +qgl +auL +auL +auL +ylo +ylo +ylo +ylo +ylo +azX +sWP +sWP +avX +avX +avX +hwe +hwe +avX +aFc +avX +avX +avX +aFe +vCx +qfl +aFe +aFe +aFe +aFf +dWJ +vCx +aFe +avX +avX +hwe +hwe +avX +avX +avX +avX +avX +avX +sWP +sWP +azX +ylo +ylo +ylo +ylo +"} +(17,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +abF +abF +bke +vrA +lnW +agS +oEU +qSG +akf +abF +abF +abF +iYj +hap +xsE +aHy +xsE +kky +igg +oob +aax +abR +gth +uya +abP +abH +abM +abO +abP +eyA +abN +eTj +abP +abO +abN +abJ +abP +fdc +abP +acu +abN +abO +abP +alU +abN +eTj +abP +abH +abM +eTj +abP +abR +gth +uya +abP +aFi +nSC +acW +abP +vjF +aQX +abP +aFi +acj +acB +adV +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aiU +nZR +wiF +xNa +bfc +bfc +bfc +bfd +aIm +njP +aIr +yeW +jDO +aIq +aIq +aIq +aLi +bbH +bbH +bbH +bbH +sEc +voM +aIt +brm +bbH +scH +ncR +bbQ +mrQ +rbo +aTJ +aJC +fdh +aIX +aUa +bbJ +bfc +bfc +aUG +ese +scj +aIZ +kSD +jUx +taY +ese +aUG +bfc +aEZ +oJn +bfc +bfd +bfc +bfc +huu +huu +aEZ +bfc +bfc +bfc +bfc +bfu +awY +aQC +kOL +aQQ +aQO +xMS +aQC +bEM +bFi +aHw +aMZ +sQz +aMZ +aMZ +clp +bNv +aiL +vLZ +lsc +lsc +lsc +pDB +rFm +edN +aiL +hUY +eiR +eiR +gud +jRL +lUM +fuK +mAV +anT +anT +anT +anT +anT +aIi +aMC +aMC +fTT +cth +mpj +kap +aEG +auL +aSa +aSa +aSa +aSa +azX +azX +sWP +avX +avX +avX +avX +hwe +hwe +avX +avX +avX +avX +avX +avX +vCx +qfl +dWJ +avX +avX +jyX +qfl +vCx +avX +avX +avX +avX +avX +avX +aFc +avX +avX +avX +avX +avX +sWP +azX +azX +ylo +ylo +ylo +"} +(18,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +abF +abF +aax +aaz +aaz +aaz +aaz +aaz +aax +abF +abF +abF +kXz +qIS +nqF +abf +dBW +oVT +axj +tpW +aax +abR +gth +uya +abP +abP +acw +abP +abP +abP +acw +abP +abP +abP +acw +abP +abP +djF +abP +abP +acw +abP +abP +abP +acw +abP +abP +abP +acw +abP +abP +abR +gth +uya +abP +abP +acw +abP +abP +coy +uya +abP +abP +acw +abP +adV +ylo +ylo +ylo +ylo +ylo +ylo +aiU +aiU +oJn +bfc +aUH +aUH +bcf +bcf +aUH +aUH +buL +muu +rMR +vLQ +oJV +oJV +oJV +bOj +ncR +ncR +ncR +ncR +iLN +bPt +aIt +brn +bbH +sEc +bbH +bqr +aIX +aJp +aTK +aJD +aIX +aIX +aUc +lnQ +bfc +bfc +aUG +aJf +oTw +aIZ +cuO +hSv +taY +aJf +aUG +bfc +bfc +oJn +bfc +bfc +bfc +bfc +huu +huu +bfc +bfc +bfc +bfc +bfc +bfc +bfc +ahc +aQQ +aQQ +aQO +aQO +aQC +aQC +aiL +aHw +aMZ +aMZ +aMZ +aMZ +gbQ +aiL +aiL +aiL +aiQ +aiQ +aiL +aHw +rFm +gbQ +aiL +rPZ +aLM +aLM +aWx +jRL +aWo +aGq +aMw +aMv +aMw +aXc +aMA +anT +bsD +oZH +aMC +aMC +usz +aMC +qgl +ged +auL +aSa +aSa +aSa +aSa +azX +sWP +sWP +avX +avX +aFc +avX +avX +avX +avX +avX +avX +avX +avX +aFc +sWP +vCx +vCx +hwe +hwe +vCx +vCx +sWP +avX +avX +avX +avX +avX +avX +avX +avX +avX +aFc +avX +aFc +sWP +sWP +azX +ylo +ylo +ylo +"} +(19,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +abF +abF +gYL +gYL +gYL +gYL +gYL +gYL +gYL +abF +abF +abF +abf +abf +abf +abf +vGz +oVT +sYc +tpW +aax +abS +iIf +abS +abP +aFi +acx +acB +abP +aFi +acx +acW +abP +aFi +acx +acB +abP +jFF +abP +aFi +acx +acB +abP +aFi +acx +acW +abP +aFi +acx +acB +abP +abS +iIf +abS +abP +acz +abN +abO +abP +coy +abQ +abP +acz +abN +abL +adV +adV +ylo +ylo +ylo +ylo +aiU +aiU +bfc +oJn +aEZ +aUH +rmk +wTp +fGM +phN +bbB +mgO +aIq +dVN +oQO +sum +aRK +slU +bbB +gjw +aSk +obd +bbH +cIB +oia +bTU +gOO +ncR +iLN +vmm +bbJ +aIX +aJq +aTM +aTU +aIX +aIX +biO +aIt +aEZ +bfc +aUG +aJf +mOr +aIZ +cuO +jUx +xSk +aJf +aUG +bfe +bfc +bYI +wiF +wiF +wiF +wiF +wiF +wiF +wiF +tlx +bfc +bfc +bfc +bfc +bfc +aQC +aQC +aQO +aQW +aQQ +aQQ +ahc +aHe +aHw +aMZ +aMZ +aMZ +aMZ +brI +aiL +bMN +dso +uKg +iEN +eYG +sON +rFm +gbQ +aiQ +agN +sIC +aLN +qKN +jRL +dQp +aGp +nmb +anT +aMx +aMz +kqA +anT +tXa +aEC +aMC +aXE +lda +aEC +qgl +lhS +auL +ylo +ylo +ylo +ylo +azX +sWP +avX +avX +avX +avX +avX +avX +avX +avX +qVA +hwe +aFc +avX +avX +avX +avX +aFe +eMM +aFe +aFe +avX +avX +avX +avX +aFc +hwe +hwe +avX +avX +avX +avX +avX +avX +avX +avX +sWP +azX +ylo +ylo +ylo +"} +(20,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +gYL +rvp +kFq +kFq +kFq +kFq +kFq +ewT +gYL +aax +auW +auW +asf +ntt +abf +wIr +uQt +wmr +mRl +aax +mQu +hxc +qac +abP +abP +abP +abP +abP +abP +abP +abP +abP +abP +abP +abP +abP +jOE +abP +abP +abP +abP +abP +abP +abP +abP +abP +abP +abP +abP +abP +cvr +hxc +qac +abP +abH +mfX +pkc +apo +jyZ +cRn +apo +pkc +kJa +abN +eTj +abG +ylo +ylo +ylo +ylo +aiU +nZR +wiF +xNa +bfc +aUH +aRq +lla +gOU +xHN +bbB +qyO +gxp +dVN +xHN +jzn +aIm +aIm +aIm +aIt +aIt +faF +obd +bbH +bbH +bbH +bbH +jvG +sEc +vGn +bbJ +aIX +aIX +aIX +aIX +aIX +ltX +aIt +aIt +bfc +bfc +aUG +aUG +aTR +pLy +cuO +vrC +aTn +aUG +aUG +bfd +bfc +oJn +bfc +bfe +bfc +bfc +bfc +aEZ +bfc +oJn +bfc +aEZ +bfc +bfc +bfc +bfc +aQC +aPb +aQO +aQQ +hQb +aQC +iOP +cUp +pDB +aMZ +aMZ +clp +bNv +aiL +bMO +brO +aHe +brO +bjR +aMZ +rFm +gbQ +aiQ +agN +aLO +aLO +qKN +jRL +anT +aMt +anT +anT +aoa +aoF +aoa +aoA +aac +aac +qHM +aoA +aoA +aED +aEE +aoG +auL +ylo +ylo +ylo +ylo +azX +sWP +avX +avX +avX +avX +avX +avX +aFc +avX +hwe +hwe +avX +avX +avX +avX +avX +avX +avX +avX +avX +aFc +avX +avX +avX +avX +hwe +hwe +avX +avX +avX +avX +avX +avX +avX +avX +sWP +azX +ylo +ylo +ylo +"} +(21,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +gKQ +hho +aah +acU +acZ +afh +agi +qaY +jGk +aax +pTp +jkb +fUj +pTp +abf +ldy +oVT +eXX +meJ +aax +bHd +hxc +ehS +pdR +jOE +jOE +iQE +djF +djF +djF +jOE +oxL +piZ +djF +djF +jOE +iQE +jOE +djF +djF +djF +xuo +jOE +djF +piZ +djF +iQE +oxL +oxL +pdR +jZA +hxc +vWM +abP +iWA +aGj +abN +abP +aYY +jWy +abP +abO +aRl +abJ +anf +abG +ylo +ylo +ylo +aiU +aiU +oJn +bfc +aUH +aUH +aUH +mLu +oQY +rED +bnC +aUH +aUH +fMv +dVN +dqR +aIm +aIm +aeo +beO +beO +aIt +aIt +bqe +vrx +bTO +fax +obd +goV +sEc +dyd +aIt +aTu +aTw +ubv +aTl +nBa +aIt +aIt +xCy +bfc +bfc +xCy +aUG +aUG +aJa +aIc +aJa +aUG +aUG +bfu +bfQ +bfc +oJn +aEZ +beP +bfv +bfi +nfz +aEP +nfz +bYI +fVl +rMq +bfc +bfc +bfc +bfc +aQC +aQz +aQz +aQz +aQz +aQz +arV +aiL +qfp +sxO +lug +qfp +aiL +aiL +bNo +aMZ +aMZ +aMZ +aMZ +aMZ +rFm +gbQ +aiQ +agN +aLL +aLL +pkh +cCK +qkD +azf +pkh +eiR +eiR +qkD +aLu +aGy +aMc +aMC +aoC +nuj +aoA +aLp +aEF +aEH +auL +ylo +ylo +ylo +azX +azX +sWP +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +elG +avX +avX +avX +avX +avX +avX +avX +avX +avX +aFc +avX +avX +avX +avX +avX +avX +avX +sWP +azX +azX +ylo +ylo +"} +(22,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +gYL +hho +aaA +abK +ada +afu +ago +qaY +gYL +aax +pTp +odW +odm +fKw +aIU +xsE +qST +axj +tpW +aaz +bBD +hxc +ehS +abP +abP +abP +abP +abP +abP +abP +abP +abP +abP +pEX +abP +abP +abP +abP +abP +abP +abP +abP +abP +abP +pEX +abP +abP +abP +abP +abP +jZA +hxc +ehS +apR +apR +apR +apR +apR +apR +apR +apR +apQ +adV +adV +adV +adV +aSa +aSa +aSa +aiU +bfc +aER +bfc +aUH +luE +biq +aIo +vkO +aIq +vtk +bnD +aUH +bnH +aHF +bnH +aUH +aeo +aeo +bfg +beO +aeo +aIt +aIt +aIt +aIt +aIt +biG +bbH +lOS +wqn +aUI +aUI +aUI +aUI +aUI +aUI +aUI +xCy +nfz +aEP +aEP +nfz +xCy +aUG +ucj +cuO +aUf +aUG +bfc +bfc +bfc +bfc +oJn +bfc +bfh +bfq +bfi +ims +xCy +aEP +oJn +bfc +bfc +bfc +bfc +bfc +bfc +bfc +aiU +ylo +ylo +ylo +ylo +arV +umU +djM +djM +djM +djM +tWu +aiL +bNp +aMZ +iIU +oZD +oZD +oZD +fVo +gbQ +aiQ +xUj +agQ +bhk +agQ +agQ +agQ +azf +agQ +agQ +eLP +agQ +agQ +aGB +aoC +aoC +aoC +qgl +aoA +aac +qqK +aoA +auL +baU +baU +baU +azX +sWP +sWP +avX +aFc +avX +avX +avX +avX +avX +avX +avX +aFc +avX +sWP +vCx +dWJ +dWJ +dPH +avX +avX +toC +dPH +jyX +vCx +sWP +avX +avX +avX +avX +avX +avX +aFc +avX +avX +avX +avX +sWP +sWP +azX +ylo +ylo +"} +(23,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +gYL +hho +aaW +acy +adf +afU +agp +qaY +gYL +aEa +pTp +iBO +jkb +nHU +abf +dBW +oVT +axj +tKy +aaz +bpb +vbW +pdW +oPa +adJ +adJ +oTE +mIa +oyA +vxk +ehU +xjX +xjX +vaY +grg +oYH +adJ +adJ +pPp +tIP +vaY +pge +vaY +tIP +vaY +jOn +adJ +adJ +kSG +agT +kjC +vbW +amb +apR +axs +bni +apR +bFL +aqc +aqc +bLk +ahz +ylo +ylo +ylo +aSa +ylo +ylo +aiU +aiU +bfc +oJn +aUH +aUH +dYB +aIq +aIq +raw +emC +aIq +vtk +aIm +hHg +mUj +dcr +aUH +aeo +bgf +bfb +bgf +aeo +aII +xqz +aSj +aIw +aII +aIu +bbH +sEc +owL +bbM +gnm +aSY +bZK +aJr +azW +aUG +bfc +bfc +bfc +bfc +bfc +bfc +bbM +vTF +cuO +wEn +ukV +bfc +bfc +aEZ +wZu +fWM +wiF +tlx +bfl +bfo +bfi +xCy +nfz +oJn +bfc +bfc +bfc +aEZ +bfc +bfc +bfc +aiU +aiU +ylo +ylo +ylo +arV +nDN +lZm +lZm +lZm +lZm +eVr +aiL +bMP +brP +aHe +brP +ojN +aMZ +rFm +gbQ +aiL +xUj +agQ +ahC +azk +azk +azk +iCm +agQ +bhk +agQ +agQ +agQ +aGB +aoC +aoC +aoC +oMG +itD +oay +kCq +aXn +aHM +aoG +aMc +aoG +bkO +hwe +hwe +avX +avX +avX +avX +avX +aFc +avX +sWP +sWP +avX +avX +sWP +sWP +sWP +sWP +sWP +hwe +hwe +sWP +sWP +sWP +sWP +sWP +avX +avX +sWP +sWP +avX +avX +avX +hwe +hwe +avX +avX +avX +sWP +azX +ylo +ylo +"} +(24,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +gYL +hho +abq +kRa +adk +agc +agr +qaY +gYL +aax +dEe +jkb +jkb +nHU +abf +ugC +sll +xsE +xsE +aJR +jAE +acK +awk +otY +adJ +avZ +ulb +dbY +adH +adH +adH +dbY +adH +adH +aEJ +gvl +adJ +pPp +ulb +als +aZn +aZM +aZn +aZM +aZn +uCU +jOn +adJ +hKD +aem +all +acK +jAE +axr +ghx +aQK +apR +aWY +apS +apS +bNR +aqw +ylo +ylo +ylo +aSa +ylo +ylo +aiU +nZR +wiF +xNa +aUH +jzn +aIp +mGN +sjw +mRI +kEj +oJV +gfC +aHD +aIs +ssh +sFD +aUH +beO +bgg +bfV +bgg +aeo +aII +aIH +dQL +ncR +aIa +ncR +bZD +ozY +ncR +bZI +qHF +qHF +qHF +lwy +ilr +aUG +aEZ +bfc +bfc +bfc +bfc +aEZ +ukV +eRg +cuO +wEn +bbM +bfc +bfc +bfc +bfc +bfc +bfc +oJn +bfh +bfq +bfo +bfi +bgk +oJn +bfc +bfc +bfc +bfc +bfc +bfc +bfc +bfc +aiU +ylo +ylo +ylo +arV +djM +bFf +bFm +bFm +hbX +djM +aiL +bMQ +fPp +kOc +kUt +fcq +pDB +rFm +gbQ +aiL +xUj +agQ +azf +tLF +vGW +vGW +gIe +vGW +vGW +vGW +rYB +boA +aGB +aMc +aoC +aoC +aoC +aoC +aoC +aoC +aoC +goe +aoC +aoC +aoC +aTP +hwe +hwe +avX +avX +avX +qVA +hwe +avX +avX +avX +sWP +hwe +hwe +sWP +sWP +vCx +qfl +vZJ +avX +avX +vCx +qfl +vCx +sWP +sWP +hwe +hwe +sWP +avX +aFc +avX +avX +hwe +hwe +avX +aFc +avX +sWP +azX +ylo +ylo +"} +(25,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +gKQ +hho +acJ +acX +aew +agh +agy +qaY +jGk +aax +cvi +jkb +jkb +pTp +abf +obz +oVT +axj +axj +axj +aec +aec +vbW +otY +adJ +rur +jns +jns +adH +adH +uAN +oZx +diI +diI +xYP +hnx +adJ +rur +aEJ +pEj +aZt +pEj +aZt +pEj +bab +adH +cLZ +adJ +lPi +aem +vbW +aec +sjs +apR +aQd +bvi +apR +bwG +apS +apS +bOG +aqw +ylo +ylo +ylo +aSa +ylo +aiU +aiU +oJn +bfc +aUH +aUH +aIn +aIn +aHA +aIm +bnB +snG +mWj +dVN +aIm +cGb +aRW +ePL +aUH +beO +bgc +bfR +bgc +beO +aII +aIH +sEc +mKk +aII +kfc +sEc +bbH +lRY +bbM +aJe +aJe +meD +cuO +aYt +aUG +bfc +aUG +bcg +bcg +aUG +bfc +aUG +qAs +cuO +taY +aUG +bfu +bfQ +bfc +bfc +bfc +bfc +oJn +bgf +bfl +bfp +bfm +bfb +oJn +bfc +bfc +bfc +bfb +bfe +bfc +bfc +bfc +aiU +aiU +ylo +ylo +ahA +djM +brB +dJR +fhG +nsg +djM +aiL +aiL +aiL +aiQ +aiQ +aiL +aHw +rFm +pUA +aiQ +fdf +agQ +azf +anG +qIU +qIU +qIU +qIU +qIU +qIU +qIU +qIU +qIU +rWY +aoC +aoC +aoC +biS +aoC +aEn +aoC +goe +aoC +aoC +aoC +aTP +hwe +qgF +avX +avX +avX +hwe +hwe +avX +wAz +avX +sWP +avX +avX +avX +mRC +vCx +hwe +vCx +avX +avX +vCx +hwe +vCx +sWP +avX +avX +avX +sWP +avX +wfD +avX +avX +avX +avX +avX +avX +avX +sWP +azX +ylo +ylo +"} +(26,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +gYL +lTA +sVA +sVA +sVA +sVA +sVA +sEb +gYL +aax +eMI +eMI +pJP +eMI +abf +oVr +oVT +axj +cAV +aaz +pMN +aec +vbW +otY +adJ +vDu +pGp +pEj +adH +adH +kGV +adH +adH +jns +tdi +sCl +adJ +rur +aEJ +pEj +aZt +cgs +aZt +pEj +bab +adH +fEI +adJ +aRY +aem +vbW +aec +tSo +apR +apR +apR +apR +bzz +xKV +apS +bPf +ahz +aSa +aSa +aSa +aSa +aSa +aiU +bfc +aER +bfc +aUH +nHs +ftj +aIo +dVN +aIm +aIm +aIm +aIm +lXV +aIm +aIm +aIm +aIm +aUH +aeo +aeo +bfg +beO +beO +aIt +aSy +puh +vbv +aIt +aIt +sEc +bbC +aIt +aUG +xkt +aJf +kqp +qEu +aBm +aUG +aUG +aUG +sYh +ucu +aUG +aUG +aUG +qAs +cuO +taY +aUG +aUG +pwp +bfB +bgk +bfc +aEZ +oJn +bgg +bfl +beZ +bfm +bfR +oJn +bfc +bfc +bfg +bfR +bfC +bfc +bfc +bfc +bfc +aiU +ylo +ylo +ahA +djM +brB +uip +dYh +nsg +djM +aiL +tWM +brT +bsa +lnc +bJh +sON +aNn +oZD +aNo +azk +azk +azE +anG +qIU +aBj +kuW +aBq +qIU +aBj +aZQ +aBq +qIU +aEl +aEn +aoC +aEu +ayH +ayH +aEk +aMc +goe +aoG +aMc +aoG +aTP +hwe +hwe +avX +aFc +avX +avX +avX +aFc +avX +avX +sWP +avX +avX +aFc +avX +avX +avX +avX +aFc +avX +avX +avX +avX +aFc +avX +avX +aFc +sWP +avX +avX +avX +avX +avX +avX +avX +avX +avX +sWP +azX +ylo +ylo +"} +(27,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +abF +abF +gYL +gYL +gYL +gYL +gYL +gYL +gYL +abF +abF +abF +abf +abf +abf +abf +oVr +oVT +rCH +eNm +aax +aDi +aec +vbW +otY +adJ +dLL +aEJ +sHX +adH +aEJ +wfn +qpB +nSm +qti +tdi +sCl +adJ +qgg +aEJ +bHe +aZt +pEj +aZt +qFK +bab +bHe +fEI +adJ +jyb +aem +vbW +aec +apr +apR +aMY +aQN +aqc +pVm +huo +apS +bPg +aqw +ylo +ylo +ylo +aSa +aiU +aiU +bfc +oJn +aUH +aUH +uKE +aIq +mGN +itb +aIm +lop +ebK +aIn +dVN +aRO +bnI +aIm +lop +aUH +aUH +aeo +aeo +beO +aIt +aIt +kmC +bbH +jdj +aII +oFe +bZE +bbI +npI +aUG +wGr +aSZ +iOW +cuO +cLF +bcc +aJr +aTA +aJr +gbm +hEi +biQ +aTS +lcF +cuO +cLF +tVx +aUG +aUG +aUG +aUG +bfc +bfc +oJn +bgc +bfl +bft +bff +bfc +oJn +bfc +bfc +beP +bfv +bfi +bfg +bfc +aEZ +bfc +aiU +aiU +ylo +ahA +djM +brB +bFn +pEm +nsg +djM +aiL +brR +aMZ +aMZ +aMZ +aMZ +aMZ +rFm +clp +aiQ +sSZ +agQ +azf +aWy +qIU +hHL +oLg +aBk +qIU +aBk +anL +aBk +qIU +aoE +bkZ +bBL +aoE +aoE +aoN +ape +aoE +auG +baU +baU +baU +azX +sWP +sWP +avX +avX +avX +avX +avX +avX +avX +avX +sWP +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +avX +sWP +avX +avX +avX +avX +avX +avX +avX +avX +sWP +sWP +azX +ylo +ylo +"} +(28,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +abF +abF +abF +bki +bki +bki +bki +bki +bki +bki +abF +abF +abF +uUk +uUk +uUk +abf +abf +aHz +abf +abf +aax +ljw +aec +vbW +otY +adJ +adK +agm +agl +mJq +ajM +pfk +adJ +adJ +adJ +dqt +adJ +adJ +sMW +aEJ +pEj +aZv +pEj +aZt +pEj +bab +kbm +ahd +adJ +kSG +aem +vbW +aec +amb +apR +apS +apS +apS +apS +huo +apS +bGn +aqw +ylo +ylo +ylo +aSa +aiU +bfe +bfc +oJn +aUH +spP +aIp +aIq +dVN +bnz +aIm +aRy +oJV +aHC +kEj +gfC +oJV +aHC +oJV +rdn +aUH +beO +aeo +beX +aIt +jho +tml +bbH +dtU +bbG +fLm +bZE +bbI +aSO +aUI +aUI +aUI +sSg +gft +xiV +bbR +hyG +qHF +qHF +qHF +qHF +qHF +yga +qHF +oJb +aIZ +jWw +aUG +aJF +aJF +aUG +aUG +bfc +oJn +bfc +bfh +bff +bfb +bfc +aER +bfc +bgf +bfl +bfp +bfM +bfi +bfc +bfc +bfc +bfc +aiU +ylo +ahA +djM +brB +uip +aVn +nsg +djM +aiL +xnU +aMZ +iIU +oZD +oZD +oZD +phM +toi +aiQ +xUj +agQ +azf +anG +qIU +aBl +aBo +anR +qIU +aBl +aBo +aos +qIU +bUo +bCv +bCv +aoN +bzg +kVZ +kVZ +aEL +auG +ylo +ylo +ylo +azX +azX +sWP +avX +avX +avX +avX +avX +avX +avX +avX +sWP +avX +avX +avX +avX +vCx +vCx +vCx +vCx +vCx +vCx +vCx +vCx +avX +avX +avX +avX +sWP +avX +avX +aFc +avX +avX +avX +avX +avX +sWP +azX +azX +ylo +ylo +"} +(29,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +abF +abF +abF +aaL +aId +aay +aId +aay +aId +aaK +abF +abF +abF +aav +aas +aas +atn +ldy +oVT +tKy +yki +aax +ljw +aec +vbW +otY +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +lxj +tdi +uCU +vda +ulb +aEJ +qFK +aZF +pEj +aZt +aZZ +bab +cgs +gYr +adJ +hKD +aem +hRI +jAE +jAE +aIb +cwr +cwr +cwr +cwr +awf +bGj +taQ +ahz +ylo +ylo +ylo +aSa +aiU +bfd +aEP +aEX +bbB +xcG +dHG +uGC +eDd +aXF +aIm +oNR +aIm +aIm +btT +dVN +vFo +aIn +ebK +tOa +aUH +beX +aIk +aeo +aIt +sii +eVI +sTW +jok +aII +fLm +bZE +bbI +lyW +aIt +aJg +aUI +aUG +aJa +aJa +aJa +eKJ +aIZ +dlz +dos +aIZ +aIZ +pTt +aIZ +aIZ +aIZ +oVj +aIY +aJF +heb +aJF +aUG +bfc +oJn +bfc +bfc +bfC +bfV +bfc +oJn +bfc +bgc +bfh +bfp +bfp +bfm +bfc +bfc +bfc +bfc +aiU +ylo +arV +djM +rFJ +vii +vii +iNZ +djM +aiL +bRj +brU +brX +brE +brU +aMZ +aMZ +pUA +aiQ +fdf +agQ +azf +anG +qIU +avT +bxO +avT +qIU +avT +bxY +avT +qIU +byJ +bCv +bCv +aoN +bzj +bCv +qAH +ocT +auG +ylo +ylo +ylo +ylo +azX +sWP +avX +avX +avX +avX +avX +hwe +hwe +avX +hwe +avX +aFc +avX +avX +vCx +bcl +bcl +bcl +bcl +bcl +bcl +vCx +avX +avX +avX +avX +hwe +avX +avX +hwe +hwe +avX +avX +avX +aFc +sWP +azX +ylo +ylo +ylo +"} +(30,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +tJA +aax +snW +aaL +aId +aay +aId +aay +aId +aaK +snW +aax +sKa +ldy +axj +axj +axj +axj +oVT +axj +oob +aax +ljw +aec +vbW +otY +adJ +tNS +xjX +gXp +fCi +vaY +vaY +iWx +adJ +dLL +xtW +adH +xYI +jns +aEJ +pEj +aZF +bHe +aZt +pEj +bab +adH +fEI +adJ +aRY +aem +vbW +fXJ +sjs +apR +apS +apS +apS +apS +axt +apR +apR +ahz +aqk +aqk +awb +aiU +aiU +nZR +wiF +xNa +bbB +mwK +aIp +vIb +aIq +aXG +aIm +aIm +aIm +kCH +aIp +sZc +fmM +aIm +aIm +aIm +aUH +aIk +tQd +aIk +aIt +aIt +aII +aII +aII +aIt +bqd +bZE +bbI +bbI +aJb +aKY +aJs +aUG +hle +hbu +aJa +bbT +aIZ +vth +lki +aIZ +aIZ +aIZ +aIZ +aIZ +aIZ +cLF +aIY +aJF +urN +aUk +aUG +bfe +oJn +bfc +bfc +bfC +bfb +bfc +oJn +bfc +bfX +bfa +bfp +bfN +bff +bgf +bfc +bfc +bfb +aiU +aiU +arV +lTC +lZm +lZm +lZm +lZm +bNd +aiL +jAz +brU +brX +brY +brU +aMZ +aMZ +aMZ +aNp +agQ +agQ +azf +anG +atF +bbW +anQ +anO +aWR +eUn +anQ +anO +aWR +aok +bCv +bCv +aoN +byw +bCv +nUa +crG +auG +ylo +ylo +ylo +ylo +azX +sWP +avX +avX +avX +avX +avX +hwe +hwe +aFc +hwe +avX +avX +avX +avX +vCx +bck +bQk +caZ +bZa +bZc +bck +vCx +avX +avX +aFc +avX +hwe +avX +avX +hwe +qVA +aFc +avX +avX +avX +sWP +azX +ylo +ylo +ylo +"} +(31,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +uTU +aax +aeP +wlc +aId +aay +aId +aay +aId +aaK +alS +aax +mwH +axj +aav +aas +aas +aas +hUS +axj +gZB +aax +gtP +aec +vbW +otY +vda +pJo +pEj +aEJ +pEj +adH +bHe +ahd +vda +dLL +juq +diI +diI +diI +akD +alu +aZG +pEj +aZt +pEj +bak +adH +cLZ +adJ +aSc +aem +vbW +aec +apr +apR +amc +apx +apy +apM +aqd +apT +ajb +aqe +aqe +ava +kdl +awY +bfg +oJn +bfc +bfc +aUH +hZO +aIp +dfV +aIq +aYA +aIm +ebK +aIm +aIm +qmT +dVN +vtk +aIn +mXC +ebK +aUH +aeo +iQh +aIk +aIt +eun +aIJ +aIB +aIB +aSD +kAM +bZF +sdR +cms +aIt +aIt +aIt +aUG +aTm +aJF +bbX +aIZ +aIZ +aIZ +aIZ +aIZ +sTH +ouC +fid +aIZ +aIZ +nMc +wXD +uIM +ixm +aJF +aUG +bfC +aEX +aEP +aEP +bfd +aFh +aEP +aEX +bfS +bfY +beP +bfp +bff +bfb +bgg +aEP +aEP +bfU +bfT +awY +ewW +lTC +djM +mxO +mxO +djM +bNd +aiL +xPF +hPF +lsc +lsc +lsc +lsc +hPF +bNv +aiQ +sSZ +bhk +sPB +dnZ +atF +bjQ +anQ +anQ +hVR +anQ +dbr +dbr +anQ +bCv +xvG +bCv +aoN +byw +xvG +nUa +crG +auG +aSa +aSa +aSa +aSa +azX +sWP +sWP +aFc +avX +avX +avX +avX +avX +avX +sWP +avX +avX +avX +vCx +vCx +bck +bQS +bYZ +bYZ +bZe +bck +vCx +vCx +avX +avX +avX +sWP +avX +avX +avX +avX +avX +avX +avX +sWP +sWP +azX +ylo +ylo +ylo +"} +(32,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +cWa +aax +aId +hlf +aId +aay +aId +aay +aId +aaK +aId +fGJ +dBW +axj +iYj +yaD +qBZ +gkH +knx +axj +nLW +aax +atx +aec +vbW +otY +vda +pJo +lgv +sBc +pEj +adH +qvB +fEI +vda +dLL +pKg +xUd +vda +jme +eZq +aZh +aZK +aZh +aZT +aZh +aZT +xUd +oBX +adJ +jyb +aem +vbW +aec +apr +apR +apR +apR +apR +apR +apR +apT +ajd +aqf +aqf +avc +uwo +awY +bfc +oJn +bfc +bfe +aUH +aUH +aRq +aIq +aIq +aRB +aIm +aRy +oJV +aHC +oJV +kEj +oJV +aHC +oJV +eSC +aUH +aeo +iQh +beO +aIt +bnN +fLm +aIG +aIP +aIG +bbI +bZE +bbI +bbI +aJb +aKZ +aJs +aUG +cwp +nXu +aJa +kFE +aTB +meD +aIZ +onY +nNo +aJa +lWf +eRi +aIZ +mfH +aUG +aJF +aJF +aUG +aUG +bfd +oJn +bfc +bfc +bfc +bfc +bfc +oJn +bfc +pwp +bfH +bfI +bff +bfR +bgc +bfc +bfc +bfc +bfR +awY +hOb +aiO +aiO +aiO +aiO +aiO +aiO +aiL +aiL +aiL +aiL +aiL +aiL +aiL +aiL +aiL +aiL +xUj +agQ +azf +anG +atF +bkR +anQ +anQ +anQ +vBb +anQ +anQ +dbr +bCv +lHB +bCv +aoN +byw +bCv +nUa +aYp +auG +aSa +aSa +aSa +aSa +azX +azX +sWP +avX +avX +avX +aFc +avX +avX +avX +sWP +avX +avX +avX +vCx +aLh +aLh +bYX +aLl +aLl +bZg +aLh +aLh +vCx +avX +avX +avX +sWP +aFc +avX +avX +avX +avX +avX +avX +sWP +azX +azX +ylo +ylo +ylo +"} +(33,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +jkb +hOU +aId +hlf +aId +aay +fst +aay +aId +aaK +aId +aax +lFX +axj +iYj +nTg +abf +fmC +hFc +axj +idf +aax +ljw +aec +vbW +otY +vda +pJo +pEj +jsq +bHe +adH +xUd +grK +adJ +rur +tdi +cLZ +adJ +adJ +jbj +cem +jme +alv +jme +cem +jme +oBX +adJ +adJ +kSG +aem +vbW +aec +amb +awc +awc +awc +awd +akH +avO +apT +alA +atK +aqf +avd +axN +awY +bfc +oJn +bfc +bfD +bfL +aUH +lSU +kBA +bwb +bwa +aIm +tOa +wKh +aIn +feQ +ijV +mey +aIm +wKh +aUH +aUH +beX +jFP +beX +aIt +aIt +sMO +tHC +tHC +aSE +tzz +bZE +bbI +uHh +aIt +aJi +aIt +aUG +aUG +aUG +aUG +aUG +aUG +biP +nIF +fqj +iAO +aJa +daO +fqj +nIF +bUF +aUG +aUG +aUG +aUG +aeo +bfc +bYI +wiF +wiF +wiF +wiF +wiF +fWM +tlx +bfc +bfh +bff +bfZ +bge +bfc +aIk +aIk +bfc +bgc +awY +hOb +iiS +aVZ +rTw +rTw +mzi +aiO +hUY +eiR +eiR +qkD +dET +anA +xlv +xlv +oKA +xMJ +xUj +agQ +azf +anG +atF +bkV +anQ +cjy +buX +mqr +anQ +cjy +aTX +aXj +bCv +bCv +aoN +byw +bCv +nUa +aEN +auG +ylo +ylo +ylo +ylo +ylo +azX +sWP +sWP +avX +avX +avX +avX +avX +avX +sWP +avX +aFc +avX +vCx +bck +bOa +bYY +wSM +oNI +bZh +gGQ +bck +vCx +avX +avX +avX +sWP +avX +avX +avX +avX +avX +avX +sWP +sWP +azX +ylo +ylo +ylo +ylo +"} +(34,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +phK +aax +aId +aaL +aId +aay +aId +aay +aId +aaK +aId +aaz +vVO +axj +iYj +wJp +kLC +lDh +tpW +axj +nLW +aax +ljw +aec +vbW +otY +vda +pJo +hrf +jsq +pEj +adH +tLz +adJ +adJ +dLL +tdi +fEI +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +aem +hRI +jAE +jAE +jAE +jAE +jAE +jAE +alZ +jAE +agJ +anr +anr +auX +avF +arz +awY +bfQ +oJn +bfc +bfc +bfd +aUH +aUH +bcf +bcf +aUH +aUH +aUH +aUH +aUH +aUH +aUH +aUH +aUH +aUH +aUH +beO +beO +jFP +beO +beO +aIt +aII +aII +aIt +aIt +aII +bZE +bbL +aII +aIt +aIt +aIt +beO +beX +aIk +beO +beO +aUG +aUG +bcg +bcg +aUG +aUG +aUG +bcg +bcg +aUG +aUG +aeo +aeo +aeo +aeo +aeo +oJn +bfc +bfc +bfc +bfc +bfc +bfc +oJn +aeo +aeo +beX +beX +aIk +aIk +aIk +aIk +aIk +aIk +awY +hOb +vND +fll +aGr +eUR +kOi +aiO +agN +ahC +azk +azk +azw +azk +azk +qjL +hQS +xMJ +xUj +agQ +azf +anG +qIU +avT +bxS +avT +qIU +avT +bzn +avT +qIU +auG +bzs +auG +auG +aoE +bCv +xBb +aoE +auG +auG +auG +auG +auG +auG +azX +azX +sWP +sWP +avX +avX +avX +avX +avX +sWP +avX +avX +avX +vCx +bck +bOe +xwg +rEX +tsA +xwg +bZl +bck +vCx +avX +avX +aFc +sWP +avX +avX +avX +avX +avX +sWP +sWP +azX +azX +ylo +ylo +ylo +ylo +"} +(35,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +ikQ +aax +aId +aaL +aId +aay +aId +aay +aId +sxU +aId +aaz +vVO +axj +juI +vFm +vFm +vFm +kzm +axj +bXN +aax +ljw +aec +vbW +otY +adJ +dLL +adH +tdi +adH +adH +uCU +adJ +vxk +ulb +tdi +uCU +vaY +vxk +adJ +vaY +tUG +vaY +vaY +ctA +tdp +vUl +vaY +iWx +adJ +aem +vbW +aec +hId +wIy +amO +hId +wIy +vbW +avP +apT +aop +aqf +aqf +awH +arz +awY +bfe +oJn +aIk +aIk +aIk +beO +beO +aIk +aIk +aIk +aIk +aIk +aIk +aeo +aeo +aeo +aeo +aeo +beO +beO +beO +beO +oJn +bfc +beX +beO +beO +beO +beO +aIO +aIk +iQh +aIk +aIk +aIO +beO +beO +aeo +aIk +tQd +aIk +beX +beO +beX +beO +beO +beO +beO +beO +aeo +aeo +aeo +beO +aIk +aIk +aIk +beO +aeo +eOe +bfZ +bga +bfc +bfF +beZ +bfg +jFP +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +awY +hOb +xLv +dRz +hvD +fum +oZj +aiO +agN +bhQ +tLF +epc +olX +tLF +epc +azf +anA +xlv +fdf +agQ +bhQ +anG +qIU +aBj +aBn +anS +qIU +aBj +aBn +aot +qIU +byN +bCv +qwM +auG +bAF +bCv +nUa +qwM +bBy +byM +bBE +bzQ +bAa +bAj +auG +sWP +sWP +sWP +avX +avX +avX +avX +avX +sWP +sWP +sWP +sWP +sWP +aLh +aLh +aLh +dPV +bao +aLh +aLh +aLh +sWP +sWP +sWP +sWP +sWP +avX +avX +avX +avX +avX +sWP +azX +azX +ylo +ylo +ylo +ylo +ylo +"} +(36,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +pTp +aax +tOL +aaL +aId +aay +aId +aay +aId +aaK +alS +aax +iYj +axj +axj +axj +axj +axj +axj +wII +leP +aax +ljw +aec +vbW +otY +adJ +adK +eZq +daL +diI +diI +diI +akI +diI +diI +prF +diI +diI +mRp +akI +diI +oZx +pgn +alu +gqi +pEj +pGp +adH +fEI +adJ +aem +vbW +aec +otY +acM +acM +acM +aem +vbW +avV +apT +ajd +aqf +auY +axM +arz +bfF +bfG +iQh +aIk +aIk +aIk +beX +aeo +beX +aIk +aIk +tQd +aIk +beX +beO +beO +beO +fsx +beO +beO +beO +fsx +aeo +oJn +bfb +bfc +bfc +beO +beO +beO +bcW +aIk +gkx +kIW +kIW +sjr +oiQ +pSo +kIW +kIW +egd +kIW +kIW +kIW +kIW +orI +oiQ +oiQ +pSo +pSo +pSo +oiQ +kIW +nny +kIW +kIW +kIW +oiQ +oiQ +lGP +bfe +bgc +bfF +bfG +beO +beO +jFP +aIk +aIk +aIk +aIk +dFb +aIk +aIk +aIk +aIk +fsx +beO +hOb +wjn +aGr +gaO +aGr +uua +aiO +agN +azf +anG +aqr +aqr +aqr +iOe +sPB +azk +azk +azk +azk +azE +aWy +qIU +aBk +anP +hHA +qIU +aBk +anL +aBk +qIU +bbZ +xvG +bCv +bzw +bCv +bCv +aBJ +wAk +bBz +aoc +bBF +aLX +bAh +bUA +auG +aFc +avX +hwe +avX +avX +avX +avX +avX +sWP +aLh +aLh +aLh +aLh +aLh +aLk +bae +hbF +rPI +bae +czg +aLh +aLh +aLh +aLh +xQF +sWP +avX +avX +aFc +avX +sWP +sWP +azX +ylo +ylo +ylo +ylo +ylo +ylo +"} +(37,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +jkb +aax +dgJ +aaL +aId +aay +aId +aay +aId +lwl +aId +aax +dLX +nwu +nwu +rYp +sNo +rYp +rwl +vrA +ceE +aax +ljw +aec +vbW +otY +adJ +adJ +kqZ +qpB +cbV +gGb +eUe +adJ +mJq +alc +jme +eZq +adH +tTE +adJ +adJ +eZq +aEJ +pEj +kar +iWO +adH +bHe +ahd +adJ +aem +vbW +aec +otY +acM +ylo +acM +aem +vbW +avV +apT +apU +atY +auZ +axN +arz +bfd +beX +iQh +aIk +aIk +beX +beO +aeo +aeo +aeo +aIk +gkx +kIW +oiQ +pSo +pSo +oiQ +oiQ +pSo +oiQ +oiQ +pSo +pSo +xha +bfU +bfW +bfT +bfc +beO +beO +bcW +aIk +iQh +aIk +aIk +bcW +beO +bij +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +beO +bfZ +bgd +bge +beO +beO +beO +iQh +aIk +aIk +aIk +beX +beX +pwp +beP +bfi +bfd +beO +beO +beX +ppP +beO +beX +aIk +beO +aIk +beX +aIk +aIk +beX +beO +beO +hOb +hSQ +seB +hsD +lUc +gew +aiO +agN +azf +anG +aqr +ylo +aqr +iOe +azf +agQ +agQ +agQ +agQ +azf +anG +qIU +ukf +aZR +aBr +qIU +aBl +aZR +aBr +qIU +byS +bCv +bzT +auG +bAG +bCv +xGI +aBJ +azO +bCu +azO +wAk +hJI +bAn +auG +avX +avX +hwe +avX +avX +avX +aFc +avX +sWP +aLh +bEj +bZq +bZr +aLh +dzZ +aLt +aLl +bjE +aLt +aLv +aLh +baN +ajR +czg +abx +avX +avX +avX +avX +sWP +sWP +azX +azX +ylo +ylo +ylo +ylo +ylo +ylo +"} +(38,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +abF +jYc +aax +aax +oLX +oLX +oLX +oLX +oLX +oLX +oLX +aRt +aax +aax +aax +aax +aax +aax +aax +aax +aax +aax +aax +aDi +aec +vbW +otY +kSG +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +ylS +adH +jEK +iWx +adJ +kaf +aEJ +lgv +aEJ +pEj +adH +qvB +fEI +adJ +aem +vbW +aec +otY +aek +ylo +aek +aem +vbW +avO +apT +awb +plI +plI +plI +awb +bno +aIk +kQb +adX +aIl +beX +beO +adX +adX +adX +aIk +iQh +bcW +aIl +aIl +aeo +aeo +aeo +aeo +beO +beO +aeo +aeo +oJn +bfZ +bga +bfV +bgh +bge +beO +bcW +aIk +iQh +aIk +aIk +bcW +beO +beX +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aeo +bgf +bfS +bfW +bfa +bgf +aeo +aeo +iQh +aIk +aIk +uIJ +uIJ +aeo +aeo +bfh +bff +aeo +beX +beX +adX +yjw +aIl +beX +beX +adX +adX +adX +aIk +aIk +bcW +aIl +aIl +ast +bCX +bCX +aiO +bCX +uvy +aiO +agN +azf +anG +uBj +ylo +uBj +iOe +bhQ +tLF +gIe +epc +agQ +azf +fnd +qIU +qIU +qIU +qIU +qIU +qIU +qIU +qIU +qIU +byN +bCv +bAm +auG +bAJ +bCv +bCv +nUa +bCv +bCv +bCv +rVh +qwM +aoE +auG +hwe +hwe +sWP +sWP +sWP +sWP +avX +avX +sWP +aLh +bEk +bEm +cbc +bba +aLj +wSM +wSq +kXp +bZj +aLv +aLh +ajp +aLl +aLv +abx +avX +avX +avX +sWP +sWP +azX +azX +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(39,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +acM +acM +akH +qba +qWr +lDJ +aec +aec +aec +aec +aec +aec +dvE +anX +oIf +oIf +oIf +oIf +oIf +anX +oIf +oIf +oIf +oIf +adZ +aec +vbW +pdW +htZ +gAt +htZ +htZ +htZ +htZ +htZ +htZ +htZ +oDt +adJ +hte +jme +qGn +cLZ +adJ +kqZ +oOk +eUe +oOk +gGb +jme +jme +oBX +adJ +aem +vbW +aec +otY +aek +ylo +aek +aem +vbW +akH +ahP +aza +vVI +aiT +tUR +aIy +aIk +aIk +iQh +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +iQh +aIk +beX +aIl +aeo +fsx +beO +beO +beO +beO +beO +aeo +eOe +bfc +bgc +bfR +bgg +bfc +beO +beX +aIk +iQh +aIk +aIk +beX +beO +aeo +aeo +aIk +aIk +beX +aeo +aIk +aIk +bfZ +bgi +beP +bfv +bfi +bgb +bge +aeo +jFP +aIk +aIk +uIJ +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +iQh +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +ozp +aBa +aGr +lrQ +tEJ +azf +pkh +qkD +azf +anG +uBj +ylo +uBj +iOe +azf +anG +xMJ +iOe +agQ +azf +anG +qIU +aBj +aBn +aBq +avT +aLX +btt +bsy +auG +auG +bzu +auG +auG +bAK +bBw +xvG +nUa +bBA +aoc +rtT +nUa +bCv +bAx +bCv +bCv +bCv +aoE +pDR +pDR +sWP +sWP +sWP +sWP +aLh +caQ +aLl +bbb +bbc +aLj +aLl +aLl +kqm +bZb +bZd +aLh +ajN +akw +aLv +xQF +sWP +sWP +sWP +sWP +azX +azX +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(40,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +acM +hNh +akH +iVp +qWr +aec +aec +aec +aec +aec +aec +aec +dXm +eHn +aec +all +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +alZ +acK +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +awk +otY +adJ +adJ +adJ +ilZ +fEI +adJ +adJ +vda +vda +vda +vda +vda +adJ +adJ +adJ +aem +hRI +jAE +eqF +acM +ylo +acM +aem +hRI +jAE +jAE +aVG +ros +aqh +aqh +afR +aIk +aIk +iQh +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +iQh +aIk +beX +adX +aeo +beO +beO +fsx +aeo +aeo +snS +aeo +eOe +bfc +bfc +bfZ +bgi +bfc +beO +beX +beX +iQh +aIk +aIk +beX +aeo +aeo +aeo +aeo +beO +beO +aeo +aIk +bfc +bfc +bfc +bfg +bfh +bfx +bff +bgk +beO +mAx +oiQ +orI +kIW +kIW +kIW +nny +kIW +kIW +kIW +kIW +kIW +kIW +egd +kIW +kIW +kIW +kIW +kIW +kIW +nny +kIW +kIW +kIW +kIW +vVU +lqK +ahG +atV +agQ +azf +agQ +agQ +azf +anG +aqr +ylo +aqr +iOe +azf +anG +xMJ +iOe +bhk +azf +anG +qIU +aBk +olY +aBk +lOW +aLX +jKy +kVZ +kVZ +aok +bCv +byL +aoN +bAL +bCv +bCv +nUa +bBB +aoN +bzy +ect +bCv +bCv +bCv +xvG +byE +kYn +aoE +pDR +pDR +azX +sWP +sWP +aLh +caQ +lLc +bEn +aLh +bac +aLt +aLl +kqm +bZk +bZm +aLh +ajp +lLc +bYU +aLh +sWP +sWP +azX +azX +azX +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(41,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +acM +mop +eby +uyT +hTI +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +hGg +hGg +ldE +aec +aec +aec +aec +aec +aec +aec +aec +aec +vbW +aec +aec +aec +aec +aec +aec +aec +aec +aec +aec +vbW +otY +cKa +vda +vgn +sid +uCU +vaY +vaY +vaY +vaY +vaY +vaY +vaY +iwB +vda +cKa +aem +vbW +aec +otY +acM +ylo +acM +bhi +vbW +aec +aec +afR +aqh +aqh +nxI +aVG +kIW +kIW +egd +kIW +nny +kIW +kIW +kIW +kIW +kIW +kIW +egd +wuS +aIk +beX +aeo +aeo +aeo +bfg +bfb +beO +aeo +beO +jFP +aeo +aeo +bfc +bfc +beO +beO +adX +beX +iQh +aIk +aIk +adX +aeo +aeo +beP +bfv +bfi +bfQ +bfg +bfc +bfc +bfc +bfc +bfc +bfc +bfc +bfd +bfg +beO +jFP +beO +beX +beO +aIk +aIk +iQh +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +iQh +aIk +aIk +aIk +aIk +clN +ahG +bZP +azR +azk +hdR +bhP +azk +azE +anG +aqr +ylo +aqr +iOe +azf +anG +xMJ +qeE +agQ +azf +anG +qIU +aBl +aZR +aBr +avT +aLX +kGP +byP +xvG +bCv +byE +byO +aoN +kGP +bCv +bCv +nUa +bzk +aoN +bBG +xGI +rXB +aoE +wUc +bCv +bCv +bBW +aoE +aoE +aoE +azX +azX +sWP +aLh +baf +kqm +kiO +bav +aLs +aLl +akw +vkt +wSq +nvx +bZf +yla +dwS +bYW +aLh +sWP +azX +azX +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(42,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +acM +dZu +fXE +kfZ +qWr +aea +aea +aea +kqs +aea +aea +aea +aea +wIy +eHn +vbW +hId +aea +aea +aea +aea +ygN +wIy +ahP +hId +brf +wIy +ahP +hId +ygN +aea +aea +aea +aea +wIy +aec +vbW +otY +ahP +vda +eeN +tdi +adH +svB +iIK +adH +adH +svB +iIK +adH +hnx +vda +ahP +aem +vbW +aec +otY +aek +ylo +aek +aem +vbW +akH +ahP +afR +tUR +aiT +yfQ +afR +aIk +aIk +aIk +aIk +iQh +aIk +aIk +aIk +aIk +aIk +aIk +aIk +iQh +aIk +beO +beO +beO +bfg +lYX +bfR +bgf +aeo +beO +eOe +aeo +beO +aeo +aeo +beO +beO +adX +aIk +iQh +aIk +aIk +adX +aeo +beP +bfz +beZ +bfm +bfF +bgk +bfc +bfc +bfc +bfc +bfc +bfc +bfc +bfc +aeo +beX +jFP +aIk +beX +bcW +aIk +aIk +iQh +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +beX +beX +aIk +aIk +iQh +aIk +aIk +aIk +aIk +clN +aBa +aGr +atV +tEJ +azf +lEb +fsu +azf +anG +uBj +ylo +uBj +iOe +azf +anG +xMJ +iOe +agQ +azf +anG +qIU +qIU +qIU +qIU +qIU +aoE +kGP +bCv +bCv +bCv +hJI +byQ +aoN +bAR +bBx +bCv +nUa +bBC +aoc +bQT +bCv +bBI +aoE +kGP +bCv +bCv +bCv +wGm +bCv +yhc +auG +azX +azX +aGf +bah +baa +viL +cNG +ugy +wSq +wSq +kXp +aLl +mOw +vUn +xTU +akx +bZi +aGf +azX +azX +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(43,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaj +aal +aal +aal +aaj +qWr +qWr +qWr +qWr +qWr +qWr +qWr +qWr +qWr +qWr +qWr +qWr +aem +eHn +kwK +otY +acM +aek +aek +aek +acM +akJ +acS +akR +ald +akJ +aeS +akR +acM +aek +aek +aek +acM +aem +aec +vbW +otY +kSG +vda +rCO +qGn +adH +adH +adH +adH +adH +adH +adH +xUd +pJa +vda +kSG +aem +vbW +aec +otY +aek +ylo +aek +aem +vbW +avW +apu +aga +auc +auc +auc +aga +hWx +beX +adX +adX +kQb +aIk +aIk +adX +bcW +bcW +aIk +aIk +iQh +aIk +bcW +beO +bfb +beP +bfi +lYX +bgc +bfc +aeo +jdk +pSo +oiQ +kIW +kIW +epq +beX +adX +aIk +iQh +aIk +aIk +adX +beP +bfz +beZ +beZ +bfm +bfd +bfZ +bgd +bge +beP +bfv +bfi +bfc +bfc +aeo +aeo +dyK +yau +aIk +aIk +uIJ +aIk +aIk +iQh +aIk +bcW +bcW +beX +beO +bcW +bcW +bcW +beO +aeo +adX +adX +adX +iQh +aIk +adX +adX +bon +ifX +sCv +nrT +aja +gkU +pBm +ifX +agN +azf +anG +uBj +ylo +uBj +iOe +bhQ +pWl +bYr +ick +agQ +azf +pWl +nJP +nJP +nJP +nJP +pMh +aoE +bkq +bnA +bCv +bzv +bzB +aoE +aoE +aoc +aoc +bCv +bmi +aoc +aoc +bzA +bCv +bAq +aoE +bBN +bBT +xpk +xpk +xpk +uxj +xpk +auG +ylo +ylo +aGf +aGf +aGf +aGf +aGf +baw +bax +aLl +kqm +baL +baM +aGf +aGf +aGf +aGf +aGf +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(44,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaj +evq +abs +abE +abD +abD +abD +tuB +abD +abD +abD +abb +abD +hBp +pCT +hBp +abD +wnJ +ack +uMD +lJq +aaj +ylo +ylo +ylo +acM +aek +aek +aek +acM +aek +aek +aek +acM +ylo +ylo +ylo +acM +bhi +aec +vbW +pdW +htZ +adJ +adJ +pPX +diI +siU +rba +jme +jme +eZq +adH +npl +adJ +adJ +htZ +kjC +kwK +aec +otY +acM +ylo +acM +aem +vbW +avY +awx +awB +awK +ivW +awV +apu +beO +beO +aIk +aIk +iQh +aIk +aIk +beO +beO +bcW +aIk +aIk +iQh +aIk +bcW +bfc +bfR +bfh +bff +bfg +bfc +bfc +bfc +aeo +aeo +aIk +aIk +aIk +iQh +aIk +aIk +aIk +iQh +aIk +aIk +beO +bfh +bfq +beZ +beZ +bfm +bfc +bfc +bfc +bfc +bfQ +bfl +bfo +bfi +bgf +aeo +aIk +aIk +iQh +wxi +aIk +uIJ +aIk +aIk +iQh +aIk +aIl +beO +beO +beO +beO +bfc +bfc +bfc +beO +beO +aIk +aIk +iQh +aIk +beX +beO +okT +epI +lnG +aBH +lom +pAt +sIR +aja +agN +azf +anG +aqr +ylo +aqr +iOe +azf +agQ +agQ +agQ +agQ +azf +agQ +agQ +agQ +agQ +agQ +anG +aoE +aoE +aoE +bzr +aoE +aoE +aoE +byT +bCv +bzx +bCv +nUa +crG +aoc +bBH +bCv +bAq +aoE +bBO +bUn +bBO +bBO +bBO +bUn +bBO +auG +ylo +ylo +aSa +ylo +ylo +ylo +aGf +aGf +lPh +mwy +bay +lPh +aGf +aGf +ylo +ylo +aSa +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(45,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaj +aaj +dem +pXp +abb +abD +abs +abs +ads +abD +ads +abs +abv +abD +hBp +cnC +hBp +abD +wnJ +ack +uMD +kUp +aal +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aek +aem +aec +vbW +aec +aec +aec +ewM +adH +adH +fEI +tdi +adH +adH +dLL +adH +adH +ewM +aec +aec +eHn +kwK +aec +otY +acM +acM +acM +aem +vbW +avY +awz +awG +aua +aua +awW +apu +beO +beX +aIk +aIk +wcw +aIk +beX +bij +beO +bcW +aIk +aIk +iQh +aIk +bcW +beO +bfc +bfZ +bge +bfc +bfc +bfc +bfe +bfc +beO +aeo +aIk +dyK +egd +kIW +kIW +kIW +yau +aIk +aIk +beO +beX +bfh +bfq +bfI +bff +bfc +bfc +beO +beO +beX +bfh +bfq +bfm +bgg +beO +aIk +aIk +iQh +aIk +aIk +aIk +aIk +aIk +iQh +aIk +beO +beO +bij +beO +bfc +bfQ +bfc +bfg +bfc +beO +aeo +beX +iQh +aIk +aIk +beO +beO +epI +qSt +aLA +kuO +aLA +rlk +aja +agN +azf +anG +aqr +aqr +aqr +iOe +sPB +azk +azk +azk +azk +jUJ +azk +azk +azk +azk +oje +aWy +aoE +byH +bib +bib +bib +byH +aoE +byU +bCv +aoc +bzp +dHa +crG +aoc +bzD +bCv +bBJ +aoE +jnI +bUn +qJZ +bUn +hls +bUn +bBP +auG +ylo +ylo +aSa +ylo +ylo +ylo +ylo +aEf +aLL +agQ +azf +aLL +aEf +ylo +ylo +ylo +aSa +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(46,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aal +aaB +abr +ong +ach +abD +aei +adm +jdt +abD +aeX +ong +adR +abD +agf +hcU +hBp +abD +wnJ +ack +uMD +kUp +aal +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aek +aem +aec +vbW +aec +aec +eKm +adJ +aai +qwO +fEI +tdi +hTd +adH +dLL +qwO +adH +adJ +ydX +aec +aec +vbW +aec +pdW +kjC +apv +pdW +kjC +vbW +awa +awx +aua +awN +aua +axv +apu +awY +beO +beX +aIk +aIk +aIk +aeo +beO +beO +beO +aIk +aIk +iQh +aIk +adX +beO +bfc +bfc +bfc +bfc +bfc +bfg +beP +bfi +bfc +aeo +aIk +aIk +aIk +aIk +uIJ +aIk +iQh +aIk +aIk +adX +beX +beO +bfh +bff +bfc +bfc +bfc +beO +beO +beX +bfg +bfh +bff +bgc +beO +beX +aIk +iQh +dFb +aIk +aIk +aIk +aIk +iQh +aIk +aIk +beO +beO +bfc +bfX +bfW +bfW +bfW +bfT +bfc +bfc +beO +jFP +aIk +aIk +beO +awY +epI +iNR +kSY +aLB +cZO +dcw +aja +agN +azf +pWl +ick +aHn +pWl +ick +azf +lEb +oaV +oaV +oaV +oaV +oaV +oaV +fsu +agQ +azf +anG +aoE +bkT +bib +bib +bib +byV +aoE +bjl +byF +bzo +xvG +nUa +crG +aoc +cnA +aol +bAy +aoE +pnt +bUn +bBP +bUn +bBP +bUn +qJZ +auG +ylo +ylo +aSa +ylo +ylo +ylo +ylo +aEf +aLu +agQ +azf +aLu +aEf +ylo +ylo +ylo +aSa +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(47,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aal +aba +abr +uPy +abb +abD +abb +mfN +aaq +abD +adY +mfN +abb +abD +hBp +kBE +hBp +abD +wnJ +ack +uMD +kUp +aal +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aek +aem +aec +hRI +jAE +jAE +jAE +nlk +diI +prF +xLg +prF +diI +mRp +hvl +prF +diI +nlk +jAE +jAE +jAE +acK +jAE +alZ +jAE +jAE +jAE +jAE +acK +jAE +iTT +apw +awR +axq +awX +apu +awY +beO +beO +bfc +bfZ +bga +bfc +aeo +beO +beX +aIk +aIk +iQh +aIk +adX +beO +aeo +aeo +bfc +bfc +bfc +beP +bfs +bfm +bfj +beO +aIk +aIk +aIk +aIk +uIJ +aIk +iQh +aIk +aIk +bcW +beO +beO +beO +bfc +bfc +bfc +beO +beO +aIk +aIk +aIk +bfZ +bge +beO +beO +aIk +aIk +iQh +aIk +beO +adX +aIk +aIk +iQh +aIk +uIJ +beX +bfc +bgf +bfR +beP +bfK +bfi +bfR +bfZ +bga +bfc +eOe +aIk +beO +beO +awY +epI +elt +aLA +aLA +bkc +vht +aja +agN +kKw +bhP +azk +anI +azk +azk +iCm +qKN +ahQ +ahQ +ahQ +ahQ +ahQ +ahQ +agN +agQ +bhQ +anG +aoE +xuF +bkU +buQ +byX +gUw +aoE +byW +byG +aoN +bCv +nUa +crG +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +auG +ylo +ylo +aSa +ylo +ylo +ylo +ylo +aEf +aLL +agQ +azf +aLL +aEf +ylo +ylo +ylo +aSa +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(48,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaj +abD +abI +mfN +abv +abD +abv +mfN +adD +abD +aaq +mfN +abv +abD +hBp +kBE +hBp +abD +wnJ +ack +uMD +lJq +aaj +ylo +ylo +ylo +aaj +aal +aal +aal +aaj +aal +aal +aal +aaj +ylo +ylo +ylo +acM +bhi +aec +vbW +hId +aea +adJ +adJ +qxR +adH +uCU +vaY +vaY +xPy +ulb +qoN +kfJ +adJ +adJ +aea +wIy +aec +aec +vbW +xoq +rEq +rEq +awe +akH +alt +apu +afz +axo +aga +aga +aga +aiU +beO +bfc +bfg +bfe +bgb +bga +bfc +beO +adX +aIk +aIk +iQh +aIk +beX +beO +aeo +beO +aeo +bfc +bfg +bfl +bft +bff +bfg +aIk +aIk +aIk +aIk +aIk +uIJ +aIk +iQh +aIk +aIk +bcW +bcW +bcW +beO +beX +adX +adX +aIl +aIk +aIk +uIJ +uIJ +bcW +aeo +beX +adX +uIJ +uIJ +iQh +beX +aIl +adX +aIk +aIk +iQh +aIk +uIJ +aIk +bfc +bgg +beP +bfz +beZ +bfo +bfK +bfi +bgb +bga +eOe +aIk +beX +beO +awY +epI +aLw +skf +aWz +bIU +xCe +aja +aBe +oaV +oaV +fsu +uHb +lEb +oaV +oaV +baT +ahQ +bDY +bRw +bbK +bRJ +ahQ +ish +agQ +azf +anG +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +bkZ +bmV +aoE +aoE +bsz +aLX +bAi +bBM +bzt +aLX +bAi +bBM +bzt +aLX +bBY +auG +auG +auG +auG +auG +auG +auG +auG +auG +epc +bhk +azf +aWS +aHL +aHL +aQi +aQi +aHL +aQi +aQi +aHL +aQi +aQi +aHL +aHL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(49,1,1) = {" +ylo +ylo +ylo +ylo +ylo +aaj +aaj +aaj +abD +abD +abT +abD +abD +abD +abT +abD +abD +abD +abT +abD +abD +abD +nLK +abD +abD +wnJ +ack +uMD +kUp +aaj +aal +aal +aal +aaj +adh +acT +ado +adF +adh +acT +ado +aaj +aal +aal +aal +aaj +aem +aec +vbW +otY +kSG +vda +vgn +ulb +adH +adH +adH +adH +tdi +adH +adH +uCU +iwB +vda +kSG +aem +aec +aec +vbW +cWu +arW +arW +arW +arW +arW +awQ +awQ +awQ +ahs +ylo +ylo +aiU +beO +bfc +bfQ +bfD +bfL +bgc +bfc +beO +bcW +aIk +aIk +iQh +aIk +beO +beO +aeo +aeo +aeo +bfc +pwp +bfh +bff +bfg +aeo +aIk +aIk +aIk +aIk +beX +beX +aIk +iQh +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +iQh +aIk +aIk +aIk +aIk +aIk +iQh +aIk +uIJ +aIk +beX +bgc +bfh +bfx +bfx +bfq +beZ +bfo +bfi +bgc +oJn +aIk +beO +fsx +awY +epI +aja +qUt +aja +aja +aja +ifX +ahQ +hFh +hFh +ahQ +ahQ +ahQ +hFh +hFh +ahQ +ahQ +bRv +bRE +bRH +bRK +ahQ +agN +agQ +azf +pWl +aoN +kVZ +bpB +aXH +aXH +bpB +bzl +bzC +bAW +aok +bCv +nUa +bsK +aoE +bzP +aLX +bAi +bAz +bzt +aLX +bAi +bAz +bzt +aLX +aLX +aoc +bkS +wmj +nFt +val +wEd +uzW +wQd +aoc +iOe +agQ +azf +qKN +aiB +apn +luj +luj +btB +bEq +bEt +aYQ +luj +dOw +lYd +aHL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(50,1,1) = {" +ylo +ylo +ylo +ylo +ylo +aal +ftx +tjf +wQJ +ldg +dNb +vMV +acl +ldg +dNb +vMV +vOh +ldg +dNb +kOA +tOT +ldg +dNb +kOA +wmE +ldg +fDY +vAm +sIL +wQJ +wQJ +vVc +wQJ +wQJ +ldg +uRp +kOA +uPR +ldg +uRp +kOA +wQJ +wQJ +wQJ +wQJ +wQJ +dWk +jAE +ldE +otY +ahP +vda +ttB +adH +adH +svB +iIK +adH +tdi +svB +iIK +adH +hnx +vda +ahP +aem +aec +aec +vbW +cWu +arW +aGs +apP +asg +asg +asg +apP +aGI +ahs +ylo +ylo +aiU +beO +beO +bfc +bfb +bfD +bgk +bfc +aeo +bcW +aIk +aIk +iQh +aIk +uIJ +beO +bij +aeo +aeo +bfc +bfc +bfZ +bge +beO +aIk +aIk +aIk +aIk +bij +beO +beX +aIk +iQh +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +iQh +aIk +aIk +aIk +aIk +aIk +iQh +aIk +beX +beO +beO +bfc +bfZ +bgd +bga +bfh +bfq +bft +bfx +bgk +iQh +aIk +beO +beO +awY +epI +aLA +dct +gQj +dct +aLA +wuh +eYT +knD +knD +bSn +ahQ +bsl +bFF +bRa +umz +lXA +azK +azK +azK +sTr +bDp +qkD +agQ +azf +agQ +bgw +bCv +bCv +xvG +bCv +bCv +bCv +bCv +bCv +bCv +bCv +nUa +bCv +wGm +bCv +bCv +bCv +xvG +bCv +bCv +bCv +bCv +mCE +azO +azO +byR +mjc +oNc +oNc +oNc +oNc +oNc +gNb +aoc +lqm +azk +azE +bjJ +aQo +apq +niv +aAj +aAj +bEr +niv +aAj +aAj +vme +taF +aQi +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(51,1,1) = {" +ylo +ylo +ylo +ylo +ylo +aal +kBE +acO +ade +lSS +iWK +wZB +wBf +lSS +iWK +wZB +ade +lSS +pCT +acO +iPn +lOM +lOM +lOM +mQU +pCT +ack +vDg +wZB +ade +lSS +kBE +acO +ade +lSS +kBE +acO +tgJ +lSS +kBE +acO +iPn +lOM +lOM +lOM +mQU +akH +aec +vbW +otY +cKv +vda +rCO +jme +ome +jme +jme +eZq +tTE +jme +jme +jme +pJa +vda +cKv +sRx +aea +wIy +vbW +cWu +arW +arW +arW +apf +asg +aQY +arW +arW +ahs +ylo +ylo +aiU +aiU +beO +aeo +bfR +bfg +bfc +aIk +aeo +bcW +aIk +aIk +iQh +aIk +uIJ +aIk +aeo +aeo +aeo +aeo +beO +beO +beO +beO +aIk +aIk +aIk +beO +beO +beO +uIJ +aIk +gkx +kIW +kIW +kIW +kIW +kIW +kIW +kIW +kIW +kIW +kIW +nny +kIW +kIW +kIW +kIW +kIW +kIW +kIW +kIW +nny +egd +kIW +kIW +kIW +kIW +kIW +yau +aIk +beO +beO +fsx +bfc +bfc +bfc +bgb +bga +bfh +bfy +bfc +bfc +iQh +aIk +beX +aiU +aiU +ifX +ifX +ifX +ifX +ifX +ifX +ifX +azu +azK +azK +sTr +knD +wIT +azK +azK +azK +azK +azK +azK +pgX +wzK +hGd +azk +azk +hdR +azk +azO +azO +azO +azO +azO +azO +azO +cku +azO +azO +hST +pYW +azO +cku +azO +azO +azO +azO +azO +azO +azO +azO +dHa +xvG +tgE +aoc +lYq +lYq +lYq +lYq +lYq +lYq +mLq +aoc +iOe +agQ +azf +qKN +aQo +sgu +aAj +aBM +aBM +esg +aBM +aBM +aBM +aAj +ifx +aQi +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(52,1,1) = {" +ylo +ylo +ylo +ylo +aaj +aaj +abT +abD +abD +abD +abT +abD +abD +abD +abT +abD +abD +abD +abD +abD +abD +mqU +mqU +xfC +mZf +mQU +ack +uMD +kUp +abD +abD +abT +abD +abD +abD +abT +abD +abD +abD +abT +abD +abD +mqU +mqU +xfC +mZf +wZC +aec +vbW +otY +adJ +adJ +adJ +adJ +adJ +adJ +adJ +dLL +kVT +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +aem +vbW +cWu +arW +aGs +apP +asg +aEW +asg +apP +dsF +ahs +ylo +ylo +ylo +aiU +beO +fsx +aeo +beO +beX +aIk +aIk +bcW +aIk +aIk +iQh +aIk +uIJ +uIJ +uIJ +aIk +beO +aIl +aIl +aIl +aeo +aeo +uIJ +adX +adX +beX +beO +uIJ +uIJ +aIk +iQh +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +iQh +aIk +aIk +beX +beX +beX +beX +aIk +aIk +iQh +aIk +aIk +aIk +aIk +aIk +aIk +iQh +aIk +bcW +beO +beO +aeo +bfc +bfc +bfc +bgb +bge +bfD +bgk +beX +iQh +aIk +beX +aiU +ylo +ylo +ylo +xSj +aWk +knD +aXV +bRg +azu +azK +azK +hwI +oXL +ffc +wzK +wzK +wzK +wzK +wzK +wzK +qzo +dBi +bDp +bhS +agQ +azf +tLF +aoN +aol +aol +aol +aol +aol +wUc +nUa +hJI +aol +aol +aol +aol +koh +tVW +djR +sbF +cog +rnK +aol +aol +wUc +nUa +bCv +nkO +aoc +eDK +eDK +eDK +eDK +eDK +eDK +eDK +aoc +iOe +agQ +azf +pkh +aiB +aAg +aAj +aBM +aBM +gbd +aBM +aBM +aBM +aAj +qJJ +aHL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(53,1,1) = {" +ylo +ylo +ylo +aaj +aaj +abb +mfN +adR +abD +aef +mfN +aef +abD +abb +mfN +abv +abD +ssw +jdt +abs +fxf +qFq +qKc +abs +aFl +bHl +ack +uMD +oLA +abD +adD +mfN +ads +abD +ads +mfN +abb +abD +adG +mfN +aed +abD +qFq +qNM +abs +aFl +vMA +aec +vbW +otY +adJ +xER +qlI +mIa +khv +khv +adJ +kjm +dgp +vxk +adJ +vxk +vaY +tUG +cFe +iWx +adJ +jOw +vbW +cWu +arW +arW +arW +apf +asg +aQY +arW +arW +ahs +ylo +ylo +ylo +aiU +beO +beO +aeo +aeo +aIk +aIk +aIk +aIk +aIk +aIk +iQh +aIk +aIk +aIk +aIk +aIk +aIk +beX +beX +beX +beX +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +iQh +aIk +aIk +aIl +aIl +aIl +aIk +aIk +uIJ +uIJ +uIJ +iQh +aIk +bcW +aIl +aIl +aeo +beP +bfi +bcW +yjw +beX +aIk +uIJ +uIJ +uIJ +aIk +gkx +jZk +uCn +oiQ +oiQ +pSo +wiF +wiF +wiF +tlx +bfc +bfc +bfg +beO +iQh +beX +beO +aiU +ylo +ylo +ylo +xSj +bDl +azK +bRf +bRg +azu +fEl +wzK +wYA +ahQ +bsr +bDZ +bRq +bRr +hpC +wie +pSB +dBi +bRQ +ahQ +agN +agQ +azf +anG +aoc +aoc +aoN +aoN +aoN +aoc +aoc +aXO +aoc +aoc +aoN +aoN +aoN +aoc +aoc +aoc +aoc +aoc +aoc +aoc +aoc +aoN +nUa +bEv +aoN +aoc +aoc +aoc +aoc +aoc +aoc +aoc +aoc +aoc +iOe +agQ +sPB +azk +bar +pzr +sNU +hHM +mjt +tvc +mjt +gAv +aBM +aAj +hIh +aIv +aIv +aQj +aQj +aQj +aIv +aIv +ylo +ylo +"} +(54,1,1) = {" +ylo +ylo +ylo +aal +aao +abr +mfN +adR +abD +abs +mfN +abv +abD +abb +mfN +ads +abD +mea +akS +abs +fxf +aFU +aFU +abs +fCK +bHl +ack +uMD +kUp +abD +adR +mfN +alN +abD +adY +jCO +abb +abD +abb +mfN +aaq +abD +qKc +qNM +abs +fCK +vMA +aec +vbW +otY +vda +ueK +dbY +dbY +cxO +diI +shg +mgW +juq +diI +akI +diI +xYP +bHe +qvB +fEI +adJ +aem +vbW +cWu +arW +aGs +apP +asg +mmr +asg +apP +aGI +ahs +aSa +aSa +aSa +aiU +aiU +beO +beO +aeo +aIk +aIk +aIk +aIk +aIk +aIk +bro +kIW +kIW +kIW +kIW +gJz +kIW +kIW +kIW +kIW +kIW +kIW +kIW +kIW +kIW +kIW +kIW +kIW +kIW +kIW +yau +aIk +aIk +adX +beO +beX +aIk +aIk +aIk +aIk +aIk +iQh +aIk +beO +beO +bfg +beP +bfz +bfy +bgf +jFP +beO +aIk +aIk +aIk +aIk +aIk +iQh +aIk +beO +beO +aeo +bfc +bfZ +bga +bfc +nri +qkt +pSo +oiQ +pSo +kXj +beO +aiU +aiU +aSa +asz +asz +asz +bDl +ufT +sTr +ahQ +ejb +azK +azK +lHU +ahQ +ahQ +ahQ +ahQ +ahQ +ajf +ahQ +fZq +rHb +ahQ +ahQ +agN +agQ +azf +anG +aoc +buC +byB +kVZ +kVZ +kVZ +aok +nUa +qwM +kVZ +kVZ +kVZ +ero +qGY +aoc +rId +urx +urx +aoc +unN +nJP +ick +azf +agQ +pWl +nJP +bYr +nJP +nJP +nJP +nGq +nJP +nJP +nJP +ick +agQ +azf +lEb +aiB +eGx +uUW +bEs +wpZ +aBM +aBM +uAc +wpZ +aAj +tlX +aQm +hay +gSI +gSI +oIx +gwW +aIv +ylo +ylo +"} +(55,1,1) = {" +ylo +ylo +ylo +aal +aaq +abs +sfx +aaf +abD +aub +sfx +abv +abD +asu +sfx +akS +abD +abs +abs +aaf +abD +alb +abs +abs +aFq +bHl +ack +uMD +lJq +abD +aei +sfx +aaq +abD +aFx +gBx +abv +abD +aei +sfx +aed +abD +wnO +aFU +abs +aFq +vMA +aec +vbW +otY +vda +tNT +vsP +vsP +tdi +xUd +adJ +eZq +tTE +mJq +adJ +eZq +tdi +adH +adH +fEI +vda +aem +vbW +cWu +arW +arW +arW +apf +nWr +aQY +arW +arW +ahs +ylo +ylo +ylo +ylo +aiU +beO +fsx +aIk +aIk +aIk +aIk +adX +aIk +aIk +aIk +aIk +aIk +aIk +aIk +iQh +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +iQh +aIk +aIk +adX +beO +bij +beX +aIk +aIk +aIk +aIk +iQh +aIk +aIk +beX +beP +bfh +bfx +bff +bgc +jFP +aIk +aIk +aIk +aIk +aIk +aIk +iQh +aIk +beO +beO +bfZ +bge +bfQ +bgb +bga +aeo +eOe +beX +beO +aIk +aIk +beO +aiU +ylo +ylo +xSj +aXe +aXs +aXu +twm +wzK +bRh +wzK +wzK +wzK +epN +ahQ +bDe +uYR +ahQ +bse +bJi +qsW +wIT +sTr +brN +ahQ +agN +agQ +azf +anG +aoc +bAK +bzZ +mCE +uEZ +ouv +ouv +gPU +ouv +ouv +ddo +azO +wAk +aYp +aoc +nOH +nOH +nOH +aoc +iOe +agQ +agQ +azf +agQ +bhk +agQ +agQ +agQ +agQ +agQ +azf +agQ +agQ +bhk +agQ +agQ +azf +bjJ +aiB +aAh +uUW +aAj +aAj +aAj +aAj +api +pzr +pzr +pzr +bau +aBP +aBP +hPy +gqd +hOw +aQj +ylo +ylo +"} +(56,1,1) = {" +ylo +ylo +ylo +aaj +aaj +abv +abv +abs +abD +ale +abr +abs +abD +abv +abs +ads +abD +dZW +abs +abs +iZQ +abs +abs +abs +sQI +kMZ +ack +uMD +kUp +abD +alr +abv +abs +abD +aaq +abs +abs +abD +abv +abs +aaq +abD +abE +abs +abs +sQI +wDw +aec +vbW +otY +vda +ueK +koV +pSu +mgW +ieZ +vda +dLL +kVT +adJ +adJ +qgg +xoV +pEj +cgs +hnx +vda +aem +vbW +cWu +arW +cst +apP +asg +nWr +asg +apP +hMx +ahs +ylo +ylo +ylo +ylo +aiU +aiU +beX +aIk +aIk +aIk +aIk +uIJ +aIk +aIk +aIk +aIk +aIk +aIk +aIk +iQh +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +iQh +aIk +aIk +aeo +beO +beO +beX +aIk +aIk +aIk +aIk +gkx +jxR +aIk +bgf +beP +bfi +bfb +bgf +beO +jFP +aIk +aIk +aIk +aIk +aIk +beX +jFP +beO +beO +bfc +bfX +bfa +beP +bfi +bgc +aeo +iQh +aIk +aIk +aIk +beO +aiU +aiU +ylo +ylo +xSj +azu +bDg +aXv +bNk +dBi +ahQ +hlC +azK +azK +azK +bjY +azv +aWc +ahQ +bsf +azv +azv +azK +bsn +bsq +ahQ +rPZ +agQ +azf +aWy +aoc +anN +bCv +xGI +aYp +qIU +qIU +qIU +qIU +qIU +kGP +bCv +xGI +enf +aoc +bib +bib +bib +aoc +iOe +agQ +ahC +azw +azk +azk +azk +azk +azk +azk +azk +azw +azk +azk +azk +azk +azk +azE +pkh +aiB +rQQ +uUW +aQD +aZb +rNc +eGx +uUW +aAj +aQD +lWG +aQm +nxh +aQA +aQB +fsd +cok +aQj +ylo +ylo +"} +(57,1,1) = {" +ylo +ylo +ylo +ylo +aaj +abD +abD +acY +abD +abD +abD +abb +abD +abD +abD +akX +abD +pSZ +abs +abs +fxf +abs +abs +abs +ffp +pCT +ack +uMD +kUp +abD +abD +abD +abb +abD +abD +abD +abv +abD +abD +abD +aee +abD +pSZ +abs +abs +ffp +akH +aec +vbW +otY +vda +tNT +vsP +vsP +xUd +vhN +vda +dLL +xlG +adJ +lQk +ulb +vJr +sxa +dbY +xJI +vda +aem +vbW +cWu +arW +arW +arW +apf +nWr +aQY +arW +arW +ahs +ylo +ylo +ylo +ylo +ylo +aiU +beO +beX +aIk +aIk +aeo +aIl +aIl +uIJ +aIk +aIk +uIJ +uIJ +uIJ +iQh +aIk +uIJ +uIJ +bcW +beO +beX +adX +bcW +bcW +beO +beO +bcW +bcW +aIk +iQh +aIk +aIk +aeo +beO +beO +beO +beO +beO +beO +beO +iQh +aIk +aeo +bgc +bfh +bff +bfR +bgc +beO +jFP +aIk +aIk +aIk +aIk +beO +beO +jFP +beO +bfc +bfg +bfR +beP +bfi +bff +bfQ +aIk +iQh +aIk +aIk +aIk +beO +aiU +ylo +ylo +ylo +xSj +azo +wie +bNe +wie +fUA +ahQ +bDd +bDk +bDk +bDk +ahQ +bDf +izl +ahQ +bsg +wie +pSB +azK +bSe +bsi +bDp +agN +agQ +azf +biw +aoc +byz +bCv +bCv +aYp +bzm +hqX +hqX +hqX +bzm +kGP +bCv +bCv +bCv +bnk +bib +bib +byy +aoc +uFg +agQ +azf +lEb +oaV +oaV +oaV +oaV +oaV +bjx +oaV +mEt +oaV +oaV +fsu +aBV +aBV +aEi +aBV +aiB +aiB +fzV +aiB +aiB +aiB +aiB +gyx +bbx +aiB +aiB +aQm +aZf +aQA +aQA +aQA +aZg +aIv +ylo +ylo +"} +(58,1,1) = {" +ylo +ylo +ylo +ylo +aaj +abE +abD +abD +abD +afy +abD +abD +abD +aee +abD +abD +abD +jsp +abs +abs +fxf +abs +abs +abs +ffp +pCT +ack +uMD +bpe +abD +alH +abD +abD +abD +abb +abD +abD +abD +aml +abD +abD +abD +psV +abs +abs +ffp +akH +aec +hRI +eqF +adJ +jlp +pvh +eLc +grK +adJ +adJ +vDu +kVT +vda +kGK +adH +lgv +pEj +pEj +hnx +vda +aem +vbW +cWu +arW +aGs +apP +avx +nWr +asg +apP +aGI +ahs +ylo +ylo +ylo +ylo +ylo +aiU +aiU +beO +aIk +aIk +beO +beO +beX +aIk +aIk +aIk +aIk +aIk +aIk +iQh +aIk +aIk +aIk +beX +beX +beX +beO +aeo +aeo +beO +beO +beO +bcW +aIk +iQh +aIk +aIk +beO +bci +bci +bci +bci +bci +bci +beO +ppP +aeo +bgf +bfS +bfT +bfd +bfg +aeo +beX +ppP +aIk +aIk +aIk +aIk +beX +beO +eOe +aeo +bfc +bfQ +beP +bfz +bfy +bfb +bgf +aIk +gkx +kIW +jxR +aIk +aiU +aiU +ylo +ylo +ylo +asz +ahQ +ahQ +ahQ +ahQ +ahQ +ahQ +ahQ +ahQ +ahQ +ahQ +ahQ +ahQ +ahQ +ahQ +ahQ +ahQ +azu +azK +bJK +bsi +bDp +agN +agQ +azf +anG +aoc +byz +xvG +bCv +aYp +bzm +hqX +skS +hqX +bzm +kGP +bCv +bCv +hJI +aoc +bib +bib +dAW +aoc +iOe +agQ +azf +pkh +aiB +aiB +aiB +aiB +aiB +aiB +aiB +aiB +aiB +aiB +aiB +aid +aid +jgG +bap +aiB +eDe +uUW +fwQ +aiB +eYr +mFP +uUW +aAj +dKg +tbd +aQm +aQh +nxh +oNL +pEQ +xEW +aIv +ylo +ylo +"} +(59,1,1) = {" +ylo +ylo +ylo +aaj +aaj +abs +abs +abb +abD +abs +abs +aee +abD +abs +abs +aFg +abD +vuq +abs +abs +iZQ +abs +abs +dem +nvA +mQU +ack +uMD +kUp +abD +abs +abs +abb +abD +ads +abs +abv +abD +abs +abs +ads +abD +abE +abs +dem +nvA +wZC +aec +vbW +otY +adJ +adJ +adJ +adJ +adJ +adJ +wBK +ulb +kVT +vda +kGK +adH +dbY +dbY +dbY +xJI +vda +aem +vbW +cWu +arW +arW +arW +arW +axy +arW +arW +arW +ahs +ylo +ylo +ylo +ylo +ylo +aSa +aiU +bfZ +bgd +bge +aeo +beO +beO +aIk +aIk +aIk +bRT +kIW +kIW +egd +nny +kIW +kIW +oiQ +pSo +pSo +pSo +pSo +pSo +pSo +lUY +nHu +uCn +kIW +yau +aIk +aIk +beO +bcj +bJD +bKn +bDT +bxR +bcj +beO +jFP +beO +bgb +bge +bfR +bfg +aeo +beX +aeo +iQh +aIk +aIk +beP +bfi +bfu +aeo +eOe +bfc +bfc +pwp +bfJ +beZ +bfy +bfR +bgc +beX +iQh +aIk +aIk +beO +aiU +aSa +aSa +aSa +arA +arA +avL +avL +bOt +bOu +ahn +apG +aVL +bJl +aqg +aVU +ahn +aLD +mEy +bOB +xmF +ahQ +aLK +wie +bsp +bss +ahQ +agN +agQ +azf +anG +aoc +hVq +aol +aol +oMZ +bzm +hqX +bBa +hqX +bzm +hVq +dTy +dTy +xqh +aoc +bUz +bib +dAW +aoc +iOe +bhk +azf +agQ +bai +aAj +aYG +aAj +aAj +aQo +ahY +aYQ +aAi +aAi +aiB +aAj +aBM +baD +aAj +aQo +bEo +uUW +hIh +aiB +wea +aBM +uUW +aAj +aBM +mlo +aQm +eoF +oXZ +aQm +oEE +eoF +aQj +ylo +ylo +"} +(60,1,1) = {" +ylo +ylo +ylo +aal +aaB +abr +ong +ach +abD +aei +ong +ads +abD +aei +ong +ala +abD +abs +abs +aaf +abD +alb +abs +pXp +aFl +bHl +ack +uMD +lJq +abD +ibz +ong +alR +abD +aFC +ong +aee +abD +aFR +amo +sdu +abD +mcj +aFX +pXp +aFl +vMA +aec +vbW +otY +adJ +mNW +vaY +tUG +vaY +vaY +iIu +adH +kVT +vda +ttB +adH +pEj +qvB +pEj +peh +adJ +aem +vbW +xBz +vLX +aQM +vLX +nLl +gtr +qyg +clI +bhz +ass +ylo +ylo +ylo +ylo +ylo +aSa +aiU +aiU +bfS +bfa +bfg +beO +beO +aIk +beX +aeo +ppP +aIk +aIk +aIk +wcw +aIk +aIk +beO +beO +aeo +aeo +bfc +bfg +beO +aeo +jFP +aIl +aIk +iQh +aIk +aIk +beO +bcj +bVn +bJI +bKq +bKr +bcj +beO +jFP +beO +beO +beO +bfg +aeo +beO +beO +aIk +iQh +aIk +beP +bff +bff +bfQ +fsx +eOe +bfc +bgf +bfb +bfh +bfx +bff +bgf +beO +aeo +iQh +aIk +beO +aiU +aiU +aSa +aSa +aSa +arA +bOs +bOr +avN +ggc +bOu +ahS +kpS +aBf +aBf +aBf +aHB +aAa +uhx +sVt +bOC +bOE +ahQ +ahQ +ahQ +ahQ +ahQ +ahQ +agN +agQ +azf +anG +aoc +aoc +aoc +aoc +aoc +qIU +qIU +qIU +qIU +qIU +aoc +aoc +aoc +aoc +aoc +aoc +aoc +aoc +aoc +iOe +agQ +azf +agQ +aid +aAj +aBM +aBM +aAj +aQo +aic +aBM +lKC +aAj +aiB +aYX +mjt +fie +aAj +ait +bal +ilF +hIh +aiB +cgh +aBM +ilF +aAj +aBM +gys +aQm +aBO +taO +aQm +xxZ +nqI +aQj +ylo +ylo +"} +(61,1,1) = {" +ylo +ylo +ylo +aal +aba +abr +mfN +abb +abD +abb +mfN +adx +abD +abb +mfN +aaq +abD +ssw +adx +abs +fxf +aFX +aFX +abs +fCK +bHl +ack +uMD +kUp +abD +adx +mfN +abv +abD +ame +mfN +abv +abD +abv +mfN +ads +abD +qNM +qKc +abs +gtc +vMA +aec +vbW +otY +adJ +hte +eZq +adH +wvN +siU +oZQ +dgx +uFJ +adJ +kqZ +jme +pvh +eLc +pvh +dOq +adJ +jOw +hRI +hGg +wPq +wPq +kkK +kkK +hvT +awL +rvL +bOU +ass +ylo +ylo +ylo +ylo +aSa +aSa +aSa +aiU +pwp +bfi +bfQ +bfg +beO +beO +beO +aeo +eOe +aeo +beX +aIk +aIk +aIk +beX +aeo +aeo +bfc +bfZ +bge +lYX +beO +aeo +eOe +aIl +aIk +iQh +aIk +aIk +qDx +bcj +fPK +aIL +aIL +mKc +bcj +beO +jLU +oiQ +oiQ +oiQ +oiQ +wVz +pSo +kIW +kIW +kXj +aIk +bfh +bff +bfQ +bfg +beO +eOe +bfc +bgc +bfU +bfa +bfd +bfZ +bgi +jLa +kIW +kXj +beX +beO +aiU +ylo +ylo +ylo +ylo +arA +rUK +aqg +avN +aqg +bOu +ahS +kpS +avN +avN +avN +aHH +ahn +bOy +sbJ +bOD +oaE +ahn +bRx +bRx +mCU +pkh +eiR +qkD +agQ +azf +pWl +nJP +nJP +nJP +bYr +nJP +nJP +nJP +nJP +nJP +wiQ +nJP +nJP +nJP +nJP +nJP +bYr +nJP +nJP +nJP +ick +agQ +sPB +azk +otC +pzr +mjt +nBD +aAj +ait +bal +aBM +uUW +aAj +aiB +aAj +aBM +baD +aAj +aQo +bEp +aZb +pyL +aiB +jpn +lWG +lWG +lWG +lWG +rRh +aQm +aQE +vjd +aQm +vjd +xEW +aIv +ylo +ylo +"} +(62,1,1) = {" +ylo +ylo +ylo +aaj +aaj +abI +mfN +abv +abD +abv +mfN +aaq +abD +abb +mfN +agk +abD +mea +nWh +abs +fxf +sTD +wOQ +abs +aFq +bHl +ack +uMD +oLA +abD +aaq +mfN +abb +abD +aaq +mfN +adD +abD +abb +mfN +sdu +abD +sTD +qNM +abs +aFq +vMA +aec +vbW +otY +adJ +adJ +vda +adH +tbY +vda +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +adJ +aem +kwK +qhT +cWI +cWI +cWI +cWI +jUa +gtr +rvL +arN +agI +agI +agI +agI +agI +agI +aSa +ylo +aiU +aiU +bfh +beP +bfi +bfZ +bgd +bga +aeo +eOe +beO +aeo +bfc +bfc +aeo +aeo +aeo +aeo +lYX +beP +bfv +bfi +bfg +beO +eOe +bnP +aIk +iQh +aIk +lkd +aIx +aIx +aTa +aIL +aIL +aTo +aIx +aIx +beO +beO +beO +beO +beO +jFP +beX +aIk +aIk +aIk +aIk +aIk +bfu +bfg +aeo +aeo +eOe +bfc +beP +bfi +bfZ +bge +aeo +beX +iQh +aIk +beX +beO +aiU +aiU +ylo +ylo +ylo +ylo +arA +bOr +bOr +avN +avN +hDX +ahn +avK +avN +nDs +avN +aHI +ahn +ahn +ahn +ahn +ahn +ahn +bov +aLu +gne +agQ +agQ +agQ +bhk +azf +agQ +agQ +agQ +agQ +agQ +agQ +agQ +bhk +agQ +agQ +azf +agQ +agQ +bhk +agQ +agQ +agQ +agQ +agQ +agQ +agQ +agQ +azf +agQ +aid +aAj +aAj +uUW +aAj +aQo +arK +bEi +uUW +aAj +aiB +aid +aid +jgG +baq +aiB +aiB +aiB +aiB +aiB +aiB +aiB +aQo +aQo +aiB +aiB +aQm +aQm +aQj +aQj +aQj +aQm +aIv +ylo +ylo +"} +(63,1,1) = {" +ylo +ylo +ylo +ylo +aaj +aaj +abT +abD +abD +abD +abT +abD +abD +abD +abT +abD +abD +abD +abD +abD +abD +bpU +bpU +hzm +erP +kMZ +ack +uMD +kUp +abD +abD +abT +abD +abD +abD +abT +abD +abD +abD +abT +abD +abD +bpU +bpU +hzm +erP +wDw +aec +vbW +otY +adJ +fmk +iIu +adH +tdi +uCU +iWx +adJ +omL +htZ +htZ +htZ +htZ +gCo +htZ +htZ +htZ +kjC +vbW +cWu +rqo +aSg +aSg +rut +asa +gtr +oZv +arN +arU +arO +aGL +arO +arU +aQz +aQz +aQz +aQz +aQz +aQz +bfh +bff +lYX +bfQ +bgc +beO +eOe +aeo +bfc +beP +bfi +bfc +beO +bfc +bfc +bfc +bfh +bfq +bfo +bfi +bfc +eOe +aIx +aIQ +tEm +aIQ +anC +aIx +aKe +nzB +aIL +aIL +gEV +bKg +gLs +gLs +gLs +gLs +gLs +gLs +jFP +beX +aIk +aIk +aIk +aIk +aIk +aIk +beX +beO +aIk +iQh +beP +bfI +bff +aeo +aeo +aIk +aIk +iQh +aIk +beO +aiU +aiU +aSa +aSa +aSa +arA +arA +arA +avy +avN +nDs +avN +avN +azZ +avN +avN +aBh +avN +inZ +brZ +pWc +bOA +bjZ +aWi +ahn +aWq +uRd +eVe +agQ +ahC +azk +azk +azw +azk +azk +azk +azk +azk +azk +azk +anI +azk +azk +azw +azk +azk +azk +azk +azk +anI +azk +azk +azk +azk +azk +biY +lEb +aiB +aid +aid +jgG +baj +aiB +aiB +aQo +fzV +ban +aiB +aQr +aQu +wnL +aQr +boJ +boK +aQt +npA +aZd +aQt +aQt +aQt +aQt +aQt +aQt +aZd +aQt +aQt +aQt +aQt +aQt +aEy +ylo +ylo +"} +(64,1,1) = {" +ylo +ylo +ylo +ylo +ylo +aal +kBE +hCt +mYe +oyJ +qxi +ddS +qNJ +oyJ +qxi +ddS +mYe +oyJ +pCT +hCt +rws +oYP +oYP +oYP +kMZ +pCT +ack +vDg +ddS +mYe +oyJ +kBE +hCt +mYe +oyJ +kBE +hCt +tTv +oyJ +kBE +hCt +rws +oYP +oYP +oYP +kMZ +akH +aec +vbW +otY +adJ +vHf +hPi +jJQ +lWD +jJQ +fEI +adJ +aem +all +jAE +jAE +jAE +acK +jAE +jAE +jAE +jAE +axe +cWu +rqo +aSg +aSg +rut +asa +gtr +qyg +arN +arU +arO +arU +arO +arU +aQC +ahx +aQQ +any +apX +aQC +bfc +bfc +bfZ +bge +bfc +bfc +jFP +bfg +lYX +bfl +bfo +bfi +bfQ +bfc +bfc +bfc +bfg +bfh +bfq +bfm +bfc +eOe +aIx +aJt +dqi +aIL +aJt +aIx +bKy +aIS +xkE +cXm +aIS +bKh +gLs +hqX +bQt +bQt +hqX +gLs +jFP +beO +beO +aIk +aIk +aIk +aIk +aIk +aIk +aIk +aIk +iQh +bfh +bfm +aeo +aeo +beX +aIk +aIk +iQh +aIk +beO +aiU +ylo +ylo +ylo +ylo +arA +apG +mEy +avK +avN +avS +uhx +uhx +aAa +uhx +aBg +gUs +uhx +gUs +uhx +uhx +uhx +uhx +uhx +bka +azk +azk +azk +azk +azE +lEb +oaV +oaV +oaV +oaV +oaV +oaV +oaV +oaV +fsu +azf +agQ +lEb +oaV +apc +agQ +uFy +biW +apc +azf +uFy +iFL +iFL +iFL +oKp +oaV +bts +boJ +aQr +aQu +wnL +aQr +apg +rSP +cOU +uMV +ahZ +aEh +ahZ +ahZ +uMV +ahZ +oDD +rSP +rSP +rSP +rSP +rSP +rSP +xXp +rSP +rSP +rSP +rSP +rSP +rSP +rSP +rSP +pFe +aEy +aEy +aEy +"} +(65,1,1) = {" +ylo +ylo +ylo +ylo +ylo +aal +iwU +lco +mKP +ebH +mSi +eTC +adS +ebH +mSi +eTC +opH +ebH +mSi +rGn +fuG +ebH +mSi +rGn +mKP +ebH +fDY +vAm +tRC +mKP +mKP +eBl +mKP +ebH +vxj +nJb +rGn +uXL +ebH +nJb +rGn +mKP +pEe +leM +ofP +mKP +cYU +jAE +ldE +otY +adJ +eLR +rTf +hsJ +aGd +rTf +cTs +adJ +aem +vbW +xoq +rEq +tTf +rEq +rEq +rEq +sDV +rEq +rEq +tDf +rqo +aSu +aSg +rut +asa +axD +kkK +axJ +mjv +mjv +dTb +arO +arQ +aQC +aQC +aQO +aQO +aQQ +ahc +bfc +bfc +bfc +bfc +bfc +bfc +oJn +bfg +bfQ +bfl +beZ +bfo +bfi +bfQ +bfc +bfc +bfc +bfg +bfh +bff +bfc +jFP +aIx +aSU +rWN +aIL +aIS +aJc +aLn +aIS +aIL +dqi +aIS +bKi +gLs +hqX +hqX +bYm +bYw +gLs +jFP +aeo +beX +aeo +aeo +aIk +aIk +aIk +aIk +aIk +aIk +iQh +beX +bfd +beO +aIk +aIk +aIk +aIk +jFP +beO +aiU +aiU +ylo +ylo +ylo +ylo +arA +kpS +aqg +avL +bOr +avL +bOr +ngc +ahn +pws +aBh +avL +avL +avL +avL +avL +avL +avL +avN +bkb +agQ +agQ +agQ +agQ +azf +qKN +ahQ +ahQ +ajf +ajf +ajf +ajf +ahQ +ahQ +agN +azf +agQ +qKN +kyQ +aoY +bLI +aoY +aoY +aoY +aDU +aoY +aoY +aoY +aoY +aoY +apg +apg +apg +avJ +ahZ +htv +gPd +aYM +gPd +gPd +ulC +gPd +gPd +gPd +gPd +wqP +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +gvh +ahZ +ahZ +ahZ +ahZ +oDD +pFe +aQt +aiD +"} +(66,1,1) = {" +ylo +ylo +ylo +ylo +ylo +aaj +aaj +aaj +abD +abD +abT +abD +abD +abD +abT +abD +abD +abD +abT +abD +abD +abD +wmV +abD +abD +wnJ +ack +uMD +kUp +aaj +aal +aal +aal +aaj +ubJ +adg +hKi +adF +ubJ +aeT +hKi +aaj +aal +aal +aal +aaj +aem +aec +vbW +otY +adJ +sMW +sjx +jJQ +sbw +jJQ +cLZ +adJ +bhi +vbW +cWu +asm +asm +asm +asm +asm +asm +asm +asm +asm +asm +asm +asm +asm +asa +gtr +arY +arO +arO +arO +arO +arO +eYe +aQC +aQQ +aQO +aQO +aQQ +aQC +bfg +bfc +bfc +bfc +bfc +bfc +oJn +bfc +bfg +bfl +bfp +bfp +bfo +bfi +bfQ +bfc +beO +aeo +lYX +beO +beO +jFP +aIx +aIS +aIL +ieU +cQv +aJc +aKI +bJF +aIL +dqi +bJL +bJN +gLs +gLs +gLs +bQv +bQv +gLs +eOe +aeo +beO +bfg +beP +bfi +beX +mVq +kIW +nny +kIW +dwW +orI +kIW +kIW +kIW +oiQ +oiQ +oiQ +lGP +aiU +aiU +ylo +ylo +ylo +ylo +ylo +arA +aVa +bOr +avL +bOr +avL +aqg +erb +ahS +kpS +aBh +avL +avL +avL +avL +avL +avL +avL +avN +bkb +agQ +agQ +agQ +agQ +azf +qKN +ahQ +juk +nSL +uMq +tFs +wUd +oPC +ahQ +rPZ +azf +agQ +qKN +kyQ +bKY +kjZ +bLC +aoY +bLQ +aCc +aoY +bMb +bMf +bMi +bMm +apg +avE +avE +qiw +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +gvh +ahZ +ahZ +ahZ +gvh +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +xfT +aQt +aiD +"} +(67,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaj +abD +adR +mfN +ads +abD +abE +mfN +ads +abD +adG +mfN +aed +abD +hBp +kBE +hBp +abD +wnJ +ack +uMD +lJq +aaj +ylo +ylo +ylo +aaj +aal +aal +aal +aaj +aal +aal +aal +aaj +ylo +ylo +ylo +acM +bhi +aec +vbW +otY +adJ +eLR +qww +gWS +dbn +rTf +cTs +adJ +aem +vbW +cWu +asm +rlh +asm +ciW +asm +ciW +asm +gKn +jQL +hsq +lhi +muo +asm +nLl +gtr +vfd +arN +ndF +fzm +arQ +arO +arO +ahc +aQQ +aQW +aQO +aQC +aQz +aiU +aiU +aiU +bfc +bfc +bfc +oJn +bfc +bfc +bfh +bfq +bfp +beZ +bfm +bfn +aeo +aeo +aeo +aeo +beX +beX +jFP +aIx +aJt +aIL +dqi +aJt +aIx +bJA +aTb +aIL +dqi +kjU +bJO +gLs +bYd +buU +bYo +bYx +aIx +eOe +aeo +bfg +bfQ +bfl +bfy +bgk +eOe +aIk +wcw +aIk +aIk +aIk +aIk +aIk +beX +beO +beO +beO +awY +aiU +ylo +ylo +ylo +ylo +ylo +ylo +arA +kpS +bOr +avL +aqg +avL +bOr +erb +ahS +kpS +aBh +avN +avN +avN +avN +avN +avN +avN +avN +bkb +agQ +bhk +agQ +agQ +azf +pkh +ajf +wIT +azv +gPN +azv +azv +sTr +ajf +qkD +azf +agQ +qKN +kyQ +bLD +bQR +bLL +aoY +bLR +ezQ +bRp +huc +uDZ +apd +bOP +apg +avI +avI +qiw +ahZ +aQt +aQt +ahZ +apk +apk +apk +gcM +rFS +apk +apk +apk +gcM +rFS +apk +apk +apk +apk +apk +gcM +rFS +apk +apk +apk +gcM +rFS +apk +apk +apk +ahZ +xfT +aQt +aiD +"} +(68,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aal +abb +abs +mfN +ahX +abD +abs +mfN +adv +abD +abb +mfN +aaq +abD +hBp +kBE +hBp +abD +wnJ +ack +uMD +kUp +aal +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aek +aem +aec +vbW +otY +adJ +dLL +adH +adH +adH +adH +fEI +adJ +aem +vbW +cWu +asm +asv +asm +asv +asm +asv +asm +aso +aso +oOr +aso +aso +vxb +arY +gtr +rvL +arN +arO +fzm +aGK +arO +arO +aQC +aiW +aQQ +aQQ +art +aQz +ylo +aSa +aiU +aiU +bfc +wZu +xha +bfc +bfc +bfc +bfh +bfr +bfr +bff +aeo +aeo +aeo +beO +aIk +aIk +aIk +jFP +aIx +aIQ +aIQ +tEm +nDX +aIx +aIx +aIx +aIL +bcA +aIx +aIx +gLs +bQH +bQN +bYp +bYy +aIx +eOe +bfc +bfg +beP +bfz +bfy +bfQ +eOe +aIk +aIk +aIk +aIk +snS +aeo +aeo +bfZ +bge +aQC +arv +aQC +aiU +ylo +ylo +ylo +ylo +ylo +ylo +arA +rlH +jTg +avN +avN +avN +flh +hkZ +ahn +kpS +aBh +flh +bOw +bOx +aVs +bOw +bOw +ncW +bOF +ahn +fIY +rwK +iHY +agQ +sPB +dta +tIL +hoC +hoC +kPp +hoC +hoC +hoC +tIL +dta +azE +agQ +qKN +kyQ +aoY +aoY +aoY +aoY +bLS +aCc +aoY +bLs +bLz +bMj +bLY +apg +aQt +aQt +qiw +ahZ +mbp +mbp +ahZ +apk +tyv +sJk +sJk +sJk +sJk +sJk +sJk +sJk +sJk +sJk +sJk +sJk +sJk +sJk +sJk +sJk +sJk +sJk +sJk +sJk +sJk +sJk +cru +apk +gvh +xfT +aQt +aiD +"} +(69,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aal +abb +abs +sfx +aih +abD +aei +sfx +aaq +abD +aei +sfx +aed +abD +agf +kpD +hBp +abD +wnJ +ack +uMD +kUp +aal +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aek +aem +aec +vbW +otY +adJ +adK +eZq +cgs +bHe +xUd +oBX +adJ +aem +vbW +cWu +asm +aso +cce +esF +yhK +yhK +haG +qJi +mNV +dhN +yhK +yhK +yhK +kkK +voj +rvL +asp +asp +asp +asp +asp +asp +aZe +aZe +aZe +aZe +aZe +akt +aSa +aSa +aSa +aiU +aiU +bfc +nri +wiF +tlx +bfc +bfc +bfg +bfk +bgk +beO +snS +aeo +aIk +aIk +aIk +aIk +iQh +aIx +bnR +aIL +dqi +aJt +gEV +hwW +nzB +aIL +dqi +gEV +aIC +gLs +gLs +gLs +nHS +bYz +aIx +oJn +bfc +bfc +bfh +bfA +bff +bgf +oJn +aIk +aIk +aIk +beX +aeo +aeo +bfg +beP +aQC +aQC +aQQ +aUR +aqs +aqs +aqs +aqs +aqs +aqs +arA +arA +ahn +ahn +wLS +wLS +wLS +ahn +ahn +ahn +boq +aBi +ahn +ahS +ahS +ahn +ahn +ahS +ahS +ahn +ahn +bsm +aLu +jIw +agQ +azf +lEb +ajf +pSB +azv +biz +utV +azv +dBi +ajf +fsu +azf +agQ +qKN +kyQ +aBZ +bOJ +bLM +bLM +nLP +aCc +aoY +aoY +aoY +aoY +aoY +apg +avE +avI +qiw +gvh +mbp +mbp +ahZ +apk +rFS +apk +apk +apk +aDY +dJV +uHm +ugB +gjt +dJV +uHm +ugB +gjt +dJV +uHm +ugB +aiv +aiz +aiH +apj +ahW +apk +gcM +apk +ahZ +xfT +aQt +aiD +"} +(70,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaj +aaj +abs +abs +abs +abD +adi +abv +abs +abD +abv +abs +aaq +abD +hBp +sRo +hBp +abD +wnJ +ack +uMD +kUp +aal +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aek +aem +aec +vbW +otY +adJ +adJ +jbj +qwr +pvh +grK +adJ +adJ +bhi +vbW +cWu +asm +gKn +gKn +fgu +svU +cvm +asm +oOr +aso +aso +qaa +cvm +asm +jUa +gtr +rvL +asp +aRf +aRe +aRf +bCd +aRe +bCi +aRe +bCh +bCa +asr +akt +akt +aSa +aSa +aSa +aiU +aiU +bfc +bfc +oJn +bfc +bfc +bfc +bfg +bfg +aeo +aeo +aIk +aIk +bRT +kIW +kIW +lGP +aIx +jnb +aIL +dbV +sdv +sdv +sdv +sdv +yfB +bXO +sdv +sdv +bYa +sdv +sdv +lxi +bYA +aIx +oJn +bfc +bfc +bfg +bfd +bfQ +bgc +oJn +bfc +aeo +aeo +aeo +bfg +beP +bfv +bfz +aQC +axH +aQQ +aQO +agZ +bbn +baE +bbO +bbP +agZ +agN +jyM +aoK +eVe +aBV +aBV +aBV +jyM +uRd +uRd +eVe +azf +jyM +uRd +uRd +uRd +uRd +uRd +uRd +uRd +uRd +uRd +uRd +cPT +agQ +azf +aWx +ahQ +hep +aoq +epm +dZe +tLR +bRQ +ahQ +agN +azf +agQ +qKN +kyQ +bLE +apd +apd +apd +apd +aCc +bLl +bMk +bON +bLy +bMo +apg +avI +avE +qiw +ahZ +mbp +mbp +ahZ +oHU +rFS +apk +apk +apk +aEe +aip +aip +aip +aib +gGR +cpU +aim +aib +aip +aip +aip +aiw +aie +aie +aie +apm +ahW +gcM +oHU +ahZ +xfT +aQt +aiD +"} +(71,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaj +abv +abv +adR +aaj +aaj +aaj +hEb +abD +abD +abD +aee +abD +hBp +pCT +hBp +abD +wnJ +ack +uMD +lJq +aaj +ylo +ylo +ylo +acM +aek +aek +aek +acM +aek +aek +aek +acM +ylo +ylo +ylo +acM +bhi +aec +vbW +otY +sLw +adJ +adJ +adJ +adJ +adJ +adJ +sLw +aem +vbW +cWu +asm +asm +asm +asm +asm +asm +asm +oOr +aso +asm +asm +asm +asm +oVe +nSV +rvL +asq +aRz +jnA +bCb +bCe +asy +bCk +asy +bCk +bCo +bCp +bCq +akt +akt +aSa +aSa +aSa +aiU +aiU +bfc +nri +wiF +wiF +wiF +wiF +oiQ +pSo +pSo +kIW +kIW +yau +aIk +aIk +beX +aIx +uVD +aIL +aIL +aIL +aIL +aIL +aIL +dqi +aIL +aIL +aIL +bcB +aIL +aIL +tfF +dbV +bYE +xha +bfc +bfc +bfc +bfZ +bge +bfc +oJn +bfc +bfc +bfZ +bge +beP +bfz +beZ +aiU +aQC +aQV +aQQ +baz +agZ +aZc +ahp +ahq +uMf +bCS +agN +agQ +agQ +agQ +agQ +agQ +agQ +agQ +agQ +bhk +agQ +azf +agQ +agQ +agQ +agQ +agQ +agQ +agQ +agQ +agQ +agQ +agQ +azf +agQ +azf +qKN +ahQ +ahQ +ajf +ajf +ajf +ajf +ahQ +ahQ +agN +bhQ +agQ +qKN +kyQ +bLF +apd +grf +huc +huc +gkA +apd +apd +apd +apd +apa +apg +aQt +aQt +qiw +ahZ +mbp +mbp +ahZ +sJk +rFS +apk +aDY +nbl +aia +ain +dXp +aiF +aiF +aiF +aiF +rpr +aiF +aiF +aiF +aQn +aip +aip +aip +aip +aiw +apm +aEj +sJk +ahZ +xfT +aZi +aEy +"} +(72,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaj +aal +aal +aal +aaj +ylo +aap +abi +abi +abi +abi +abi +abi +abi +abi +abi +abi +aem +aec +vbW +otY +acM +aek +aek +aek +acM +nKH +adl +kTg +ald +nKH +aeW +kTg +acM +aek +aek +aek +acM +aem +aec +vbW +pdW +htZ +htZ +htZ +htZ +htZ +htZ +htZ +htZ +kjC +vbW +xBz +vLX +vLX +xeO +aQM +vLX +asm +thv +oOr +aso +asm +dGb +nuI +asm +asa +hpM +rvL +asq +aRz +ffF +bCb +bCf +asy +bCk +asy +bCm +bCo +bBZ +bCb +aRf +akt +akt +aSa +aSa +aSa +aiU +aiU +aiU +bfS +bfT +bfc +bfc +beO +beO +aeo +beX +aIk +wcw +aIk +aIk +aIk +aIx +wFJ +wFJ +wFJ +wFJ +wFJ +qzy +aJt +dqi +aIL +aJt +aJG +aIx +bYf +bYl +bYs +bVG +aIx +bYI +wiF +wiF +wiF +wiF +wiF +wiF +xNa +bfc +bfg +beP +bfv +bfz +aiU +aiU +aiU +mwC +mwC +vqF +mwC +agZ +bbp +ahq +ahq +uMf +bCS +agN +agQ +ahC +azk +azk +azk +azk +anI +azk +azk +azk +azw +azk +azk +azk +azk +azk +bhP +azk +azk +azk +azk +azk +azw +azk +azE +pkh +eiR +eiR +eiR +eiR +eiR +eiR +eiR +eiR +qkD +azf +agQ +qKN +kyQ +bLG +apd +apd +jTS +rfa +bHy +jTS +apd +apd +apd +hVx +apg +avE +avI +qiw +ahZ +mbp +mbp +ahZ +apk +rFS +apk +aEe +wrd +gGR +aij +aiu +aiu +aiu +aiu +aiu +aiu +aiu +aiu +aiu +tYX +aiF +aiF +aiF +dXp +aiF +fSX +aEj +apk +ahZ +xfT +aQt +aiD +"} +(73,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aap +btJ +btG +bFR +bFU +abi +btR +asj +bGc +bGd +abi +aGA +aec +vbW +pdW +htZ +htZ +htZ +htZ +aFm +kjC +ahP +pdW +pVD +kjC +ahP +pdW +aFm +htZ +htZ +htZ +htZ +kjC +aec +kVy +aec +all +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +acK +jAE +kkK +kkK +hvT +gGZ +kkK +sfJ +yhK +dhN +yhK +cjg +iQQ +nuI +asm +asa +gtr +qyg +asp +xtO +asy +asy +bCe +asy +bCf +asy +bCe +asy +npN +asy +asy +dfB +akt +akt +aSa +ylo +ylo +ylo +aiU +aiU +bfU +bfa +bfc +bfc +beO +beO +beO +aIk +aIk +aIk +aIk +beX +aIx +aIK +aiY +aIx +aIx +aIx +aSt +bWV +dqi +aIL +bXW +qLa +aIx +aIx +aIx +aIx +bYC +aIx +oJn +bfc +bfc +bfc +bfc +bfc +bfc +bfc +bfg +beP +bfz +beZ +aiU +aiU +ylo +aqs +aQc +ahJ +agR +aQc +agZ +aiK +ahq +ahq +aoh +agZ +qkD +bhk +azf +lEb +mEt +oaV +fsu +azf +aVu +oaV +oaV +oaV +oaV +oaV +fBG +oaV +oaV +mEt +oaV +fsu +agQ +agQ +agQ +bhk +agQ +sPB +azk +azk +azk +azk +azk +anI +azk +azk +azk +azk +azE +agQ +qKN +kyQ +dNs +bOK +mAt +bLO +bLT +bLW +laV +bSx +bOK +aoZ +bMp +apg +avE +avI +qiw +ahZ +mbp +mbp +ahZ +apk +rFS +aDY +aia +aib +aib +aij +aip +aip +aip +aip +aip +aip +aip +aip +aip +aij +gGR +gGR +gGR +ilo +aiA +aQf +aEj +apk +ahZ +xfT +aQt +aiD +"} +(74,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aap +btM +btL +btO +bMA +abi +aNa +blT +mOV +mOV +bkv +jAE +jAE +acK +jAE +jAE +jAE +jAE +jAE +jAE +alZ +jAE +jAE +acK +jAE +jAE +jAE +jAE +jAE +jAE +alZ +jAE +jAE +alZ +qJa +jAE +ldE +xoq +rEq +tTf +rEq +rEq +rEq +tTf +rEq +rEq +rEq +cWI +cWI +jUa +gtr +arY +uBk +aso +aso +mbZ +asm +oOr +nuI +asm +asa +gtr +arY +bjU +asr +asy +asy +fsL +sGB +asy +asy +asy +asy +asy +asy +fsL +asy +asr +akt +akt +aqK +aqK +aqK +anw +aiU +aiU +aiU +pwp +bgk +bfZ +bge +aeo +aIx +aIx +aLo +aLo +aIx +aIx +bCM +aIW +aIx +sgn +aID +bWG +bWW +roZ +bXQ +bWl +bXY +jgM +uAl +aIx +bYt +aIL +aIx +bYJ +gLs +gLs +gLs +gLs +bfc +bfc +bfg +bfQ +bfh +aiU +aiU +aiU +ylo +ylo +aqs +aQF +agR +agR +aQc +agZ +bbr +ryE +mQk +mQk +aHj +azk +azk +azE +qKN +agZ +agZ +agZ +aHG +agZ +agZ +bCV +bCV +bCV +agZ +agZ +agZ +agZ +agZ +aqs +agN +agQ +agQ +agQ +agQ +agQ +azf +agQ +agQ +agQ +agQ +agQ +azf +agQ +agQ +agQ +agQ +azf +agQ +qKN +kyQ +kyQ +kyQ +kyQ +kyQ +kyQ +kyQ +kyQ +kyQ +kyQ +gYm +kyQ +apg +apg +apg +aYB +ahZ +cpS +cpS +ahZ +apk +rFS +aEc +aig +qjG +aiF +qvz +aiF +aiF +aiF +aiF +aiF +aiF +aiF +aiF +aiF +msm +aiF +aiF +aiF +aiF +aQe +ahW +aEj +apk +ahZ +xfT +aQt +aiD +"} +(75,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaE +aaE +aap +bum +aag +aag +bFV +abi +wGW +aNO +aag +aag +aag +aec +aec +aec +aec +aec +aec +aec +aec +aec +vbW +aec +aec +aec +aec +aec +aec +fXJ +aec +aec +vbW +aec +aec +vbW +eHn +eHn +vbW +cWu +alI +alI +alK +alK +alK +alI +alI +alI +alI +jfP +jfP +nLl +gtr +vRc +asm +asm +asm +asm +asm +qkL +asm +asm +oVe +axD +kkK +dZH +dZH +cVR +cVR +gVr +cVR +cVR +cVR +cVR +pya +pya +cVR +qig +asy +asy +aRf +akt +nQZ +aqQ +aTc +axc +pdh +axf +aiU +aiU +aiU +pwp +bgk +bfg +aIx +gio +aID +aID +rSz +cMy +hRb +aID +aIx +lYM +bWl +bWI +bYb +dqi +aIL +iys +iys +bYb +equ +aIx +bYu +aIL +aSG +bYq +bQN +hqX +aCa +gLs +bfZ +bge +bfQ +aiU +aiU +aiU +ylo +ylo +ylo +ylo +aqs +aRa +agR +agR +aQc +agZ +aZo +ahq +ahq +nOb +agZ +fsu +agQ +azf +qKN +agZ +brz +hSo +azr +aVv +vmh +bDu +bSm +vmh +bSo +agZ +bso +vmh +bSg +aqs +aBe +fBG +oaV +oaV +oaV +fsu +aEi +lEb +oaV +fsu +aLL +agQ +bhQ +aLL +lEb +oaV +fsu +azf +lEb +baT +rLZ +fFh +pRl +pRl +fFh +fFh +pRl +pRl +pRl +fFh +fFh +pRl +tGq +rWG +kyQ +qiw +ahZ +cpS +cpS +ahZ +apk +rFS +aEd +aii +aib +aib +jhR +aiu +aiu +aiu +aiu +aiu +aiu +mVA +aiu +aiu +aij +gGR +gGR +jjb +gGR +aiw +apm +aEj +apk +ahZ +xfT +aQt +aiD +"} +(76,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaE +agA +btC +bum +aag +aag +bFW +abi +bFY +aNO +aag +xys +abi +jSm +jSm +jSm +agM +miE +miE +miE +miE +uQT +vbW +alt +miE +miE +miE +miE +miE +miE +miE +acC +vMP +acD +bGQ +dDt +gPk +dky +vMP +aFK +alI +btI +gui +aXU +vAP +avb +uJV +cXt +uJV +uJV +avb +kkK +voj +rvL +rTD +dxy +dxy +bph +lVW +tfY +axl +rTD +asa +gtr +vfd +asp +ovC +asy +asy +bCe +asy +bCk +asy +bCe +asy +sGB +sGB +fmq +bCo +jnA +bCq +akt +mCD +aqI +axa +lBx +aqI +kOd +nQZ +gvi +aiU +aiU +aiU +bfu +aIx +cYL +qEw +aIL +aIL +aIL +aIL +aIL +bcz +aIL +aIL +aIL +aIL +roZ +sdv +sdv +sdv +sdv +sdv +wGT +sdv +bXQ +aIL +bYK +gLs +hqX +bYP +gLs +bfu +aiU +aiU +aiU +aSa +aSa +ylo +ylo +ylo +ylo +aqs +aQc +agR +agR +aQc +agZ +bbv +ahq +ahq +uMf +agZ +agN +agQ +azf +qKN +agZ +agO +ahq +bfP +mQk +mQk +uZA +ahq +ahq +bSp +agZ +bRk +ahq +bSh +aqs +aoe +aoe +aoe +aoe +aoH +aoH +aHp +aoH +aoH +aoe +rvg +aow +uqx +aLZ +lac +aoJ +aoJ +aHq +aoJ +aoJ +kyQ +rWG +vim +tGq +fFh +fFh +pRl +vim +pRl +fFh +fFh +pRl +vim +fFh +rLZ +qiw +ahZ +aQt +aQt +ahZ +apk +rFS +apk +aEe +gGR +jyk +aij +aip +aip +aip +aip +aip +aip +aip +aip +aip +tYX +dXp +aiF +aiF +aiF +aiF +fSX +aEj +apk +ahZ +xfT +aQt +aiD +"} +(77,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaE +ajC +btD +aeH +aag +aag +bFX +bjj +ehy +aNO +aag +aLR +aNK +aNK +aNK +aNK +aNK +auq +auq +auq +auq +auq +ays +auq +auq +auq +auq +auq +auq +auq +auq +aFz +vMP +acD +tDQ +acd +bGR +dky +edP +acD +axY +aXU +aXU +aXU +wtM +alI +ami +qbc +ami +aMF +alI +jUa +gtr +rvL +rTD +dxy +dxy +dxy +lVW +aso +aSw +rTD +asa +gtr +rvL +asq +aRz +jnA +bCb +bCg +asy +bCk +asy +bCf +bCo +jnA +bCb +fmq +bCo +ffF +bCr +akt +aSF +aqI +aqI +reh +aqI +kOd +aSb +mCD +anw +ylo +aiU +aiU +aoW +hqd +oYC +ckt +wKF +nYn +sdv +sdv +uyg +sdv +sdv +sdv +sdv +lxi +aIL +aIL +aIL +aIL +aIL +bcB +aIL +aIL +aIL +bYL +buU +bYN +hqX +qIU +aiU +aiU +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +aqs +atR +atR +atR +baI +aqs +aof +ahq +ahq +aoo +aqs +atR +atR +bcu +bek +ksH +hSo +ahq +ahq +iik +ahq +ahq +ahq +ahq +ahq +aVO +ahq +ahq +uMf +naG +aoP +oVO +jee +bqI +ovT +ilI +aBE +prw +cIs +bTk +ail +ail +nYP +hVF +atH +kZy +efN +aBG +oHT +xBs +avQ +avQ +avQ +avQ +avQ +avQ +avQ +avQ +avQ +avQ +avQ +avQ +avQ +avQ +aEy +qiw +ahZ +ahZ +ahZ +ahZ +oHU +rFS +apk +aEd +neY +aii +aik +aiF +aiF +dXp +aiF +aiF +aiF +aiF +aiF +aiF +aix +aiu +aiu +aiu +aiu +aiA +aQf +aEj +oHU +ahZ +xfT +aZi +aEy +"} +(78,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaE +aCk +aOi +aeH +aag +aag +aag +aOi +aag +aNO +aag +bGe +aNK +abn +arq +asO +aNK +aIe +aJN +aWa +aJN +bcs +tCn +azQ +auq +bFH +bFI +bFt +bFx +bFB +auq +puF +vMP +acD +amR +acA +aPF +dky +awu +oRo +eMu +awy +awy +awy +pPN +bHR +ami +ami +ami +ami +alI +asa +gtr +rvL +rTD +dxy +dxy +drv +lVW +aso +aSw +rTD +asa +gtr +rvL +asq +aRz +ffF +bCb +bCe +asy +bCf +asy +bCe +bCo +ffF +bCb +fmq +bCo +jnA +bCq +akt +aSH +aqI +aqI +reh +aqI +kOd +aSb +exY +aqK +ylo +ylo +ylo +aoW +aoW +aoW +aoW +bat +buS +cAW +cAW +aIx +qzy +aIS +aIS +aJt +dqi +aIL +aJt +aIS +aIS +aJG +aIx +bYv +bYD +bYF +bYM +qIU +qIU +qIU +qIU +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +aqs +axG +agR +agR +axG +bCS +aZC +tuo +ahq +baR +bCS +aoT +agR +aXk +aoT +bCS +ahq +ahq +nOb +agZ +bFz +bSk +agZ +bFz +bSk +agZ +bRn +bSf +bSi +aqs +bTk +bTk +bTk +bTk +xPi +oKk +qnw +oKk +leR +aMd +gzL +aow +cab +gzL +aoJ +bbs +etp +dyY +bJr +bJu +aoR +ylo +aSa +aSa +ylo +ylo +ylo +ylo +aSa +aSa +ylo +ylo +ylo +ylo +aEy +aYB +ahZ +ahZ +ahZ +ahZ +sJk +rFS +apk +apk +apk +aEe +aiu +aiu +aiu +aib +gSm +gGR +gGR +aib +aiu +aiu +aiu +aiA +aiq +aiq +aiq +aQf +ahW +gcM +sJk +ahZ +xfT +aQt +aiD +"} +(79,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaE +aUl +aOi +aeH +aag +gzB +aag +aOi +aag +aNO +btO +bqE +aNK +adc +aNR +atL +aNK +wyL +aNV +aNV +aNV +aNV +tCn +azS +aPP +bDz +bFr +bFu +bFy +wYj +bCI +puF +vMP +acD +gzz +aev +bGT +acD +vMP +xAo +alI +bsL +aXU +aXU +fSo +axV +ami +biR +biV +aCF +alI +oVe +gtr +rvL +rTD +dxy +dxy +wwB +lVW +aso +yio +rTD +asa +gtr +rvL +asp +aRf +crH +aRf +bCh +crH +bCi +crH +bCn +bCc +asr +asr +aRw +asr +asr +aRf +akt +iDV +fGS +lER +iZu +aqI +kOd +aSb +exY +aqK +ylo +ylo +ylo +ylo +ylo +ylo +aoW +aoW +aoW +aoW +aoW +aoW +uZM +bVh +bWO +qzy +dqi +aIL +aJG +bXZ +bVs +bYh +aoW +aoW +aoW +aoW +aoW +aoW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +aqs +aQc +agR +agR +aQc +bCS +bam +baF +baK +baX +bCS +aQc +agR +aXk +aQc +bCS +pcK +ahq +uMf +agZ +aQc +bSl +agZ +aQc +bSl +aqs +aqs +aqs +aqs +aqs +ylo +ylo +ylo +bTk +bDI +eRE +ilm +exC +tNJ +aoH +aLZ +pdk +aow +aLZ +aoJ +sIm +uMo +oCz +bJq +rLw +aoR +ylo +aSa +aSa +ylo +ylo +ylo +ylo +aSa +aSa +ylo +ylo +ylo +ylo +aEy +vpl +hHx +gvh +ahZ +ahZ +apk +rFS +apk +apk +apk +aEd +sJg +tCu +ntn +gjt +sJg +tCu +ntn +gjt +sJg +tCu +ntn +aiE +aiG +aiI +aQg +ahW +apk +gcM +apk +ahZ +xfT +aQt +aiD +"} +(80,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaE +cOv +btD +aeH +aag +aag +xys +akM +dRI +aNO +aag +bGf +aNK +aPd +aNR +aPe +aaF +aNW +aNW +aNW +nwT +mAK +aPn +uvd +aPP +boD +wyL +aNW +aNW +wYj +bCI +puF +vMP +acD +adT +eqK +mIn +acD +vMP +fps +alI +aXU +aXU +aXU +fSo +aTj +ami +alI +alI +alI +alI +asa +gtr +rvL +asm +rTD +rTD +asm +asm +rTD +rTD +asm +asa +gtr +rvL +asp +asp +asp +asp +asp +asp +asp +asp +asp +asp +asq +asq +bjV +asq +asq +asp +akt +aod +aod +aod +lgt +aqI +kOd +aSb +ggU +anw +anw +anw +anw +anw +anw +anw +anw +anw +anw +anw +anw +aoW +aoW +aoW +aoW +aIQ +tEm +aIQ +sdm +aoW +aoW +aoW +aoW +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +aqs +aQc +agR +agR +aQc +bCS +baA +baG +baG +bbf +bCS +aQc +agR +aXk +aQc +bCS +bbF +azs +cii +bDn +aQc +bSl +agZ +aQc +bSl +aqs +ylo +ylo +aSa +ylo +ylo +ylo +ylo +bTk +gJX +gJX +gJX +gJX +gJX +bTk +hhj +lVw +hhj +oGf +atH +jqo +jqo +jqo +jqo +jqo +atH +ylo +aSa +aSa +ylo +ylo +ylo +ylo +aSa +aSa +ylo +ylo +ylo +ylo +aEy +aEy +qiw +ahZ +ahZ +ahZ +apk +eyz +oHU +oHU +oHU +oHU +oHU +oHU +oHU +oHU +oHU +oHU +oHU +oHU +oHU +oHU +oHU +oHU +oHU +oHU +oHU +oHU +oHU +iDD +apk +gvh +xfT +aQt +aiD +"} +(81,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaE +aUm +ako +aeH +aag +aag +aLR +abi +aVP +aNO +btO +bqE +aNK +adw +aNR +atM +aNK +aAu +aNV +ghu +czh +aNV +xeV +mAK +ayB +pUP +mAK +mpS +aNW +ivy +auq +puF +vMP +acD +adT +hYU +mIn +acD +vMP +jmO +alI +awA +aXU +aXU +fSo +aFE +alI +alI +ycd +oyu +oyu +nLl +gtr +qyg +vLX +uSz +hpB +aSd +aSd +mrO +uSz +vLX +nLl +gtr +qyg +vLX +vLX +vLX +vLX +vLX +eiQ +vLX +vLX +vLX +vLX +vLX +nLl +gtr +qyg +vLX +qpo +aqI +aqI +aqI +aqI +aqI +aqI +sFI +pdh +pdh +vqA +aqI +oiI +aqI +aqI +aqI +aqI +aqI +oiI +aqI +mCD +aqK +ylo +aSa +ylo +aqK +aSb +eaL +aqH +aSb +aqK +ylo +aSa +ylo +aqK +aqK +aqK +anw +aqK +aqK +aqK +ylo +ylo +ylo +aqK +aqK +aqK +anw +aqK +aqK +aqK +ylo +aqs +aQc +agR +agR +aQc +aqs +bCV +baH +baO +bCV +aqs +aQc +agR +aXk +aQc +agZ +azp +aQb +aqs +aqs +aqs +aqs +aqs +aqs +aqs +aqs +ylo +ylo +aSa +ylo +ylo +aqL +aqL +aqL +aYR +aYR +aYR +aJZ +bdx +boz +aKi +gtX +aKi +aKi +gfL +aKh +bdJ +aYR +aYR +aYR +aqL +aqL +aqL +aSa +ylo +ylo +ylo +ylo +aSa +aSa +ylo +ylo +ylo +ylo +ylo +aEy +qiw +ahZ +ahZ +ahZ +apk +apk +apk +gcM +rFS +apk +apk +apk +gcM +rFS +apk +apk +apk +apk +apk +gcM +rFS +apk +apk +apk +gcM +rFS +apk +apk +apk +ahZ +xfT +aQt +aiD +"} +(82,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaE +aaE +aap +btH +aag +aag +aLR +abi +aVP +aNO +aag +bMD +aNK +aez +ars +atU +aNK +aCj +bCB +bCH +blA +aNU +tCn +hZu +aPP +aNU +mfS +aNW +aNW +wYj +bCI +puF +vMP +acD +adT +ggq +mIn +acD +vMP +adT +alK +bhx +bhx +aXU +xVS +bhx +bhx +alK +asa +arY +arY +arY +gtr +cQs +cQs +arY +arY +arY +arY +fsP +kkK +kkK +kkK +hvT +gGZ +kkK +kkK +kkK +kkK +kkK +kkK +kkK +kkK +kkK +gGZ +kkK +kkK +hvT +kkK +gGZ +lvR +lvR +kuU +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +cmk +aqI +exY +aqK +ylo +aSa +ylo +aqK +aJu +eaL +aqH +aJu +aqK +ylo +aSa +ylo +aqK +aqI +aqQ +rjv +rFw +aqI +aqK +ylo +ylo +ylo +aqK +aqI +aqQ +rjv +aqX +aqI +aqK +ylo +aqs +aQc +agR +agR +agR +atR +baB +vmh +vmh +eoE +atR +agR +agR +aXk +aQc +aqs +aqs +aqs +aqs +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +aqL +aqL +aqL +aqL +bcE +beF +aKi +ber +aKo +bcS +aKl +aKi +aKi +gtX +aKi +aKi +aKi +aKi +aKn +bdP +bdQ +bdQ +bdQ +bdQ +aqL +aqL +aqL +aqL +ylo +ylo +aSa +aSa +ylo +ylo +ylo +ylo +ylo +aEy +vpl +aQs +aQs +hHx +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +gvh +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +xfT +aQt +aiD +"} +(83,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aap +bFM +bFP +aag +sTN +akh +hIo +aNO +btO +bqE +aNK +aNK +aNK +aNK +aNK +auq +auq +auq +auq +aNX +tCn +wYj +aPP +aNX +aNV +bFv +bFK +bFC +bCI +puF +vMP +acD +adT +eqK +mIn +acD +vMP +adT +alK +axV +axV +hFm +mag +axV +bHR +alK +asa +fsP +kkK +kkK +hvT +kkK +rtZ +wPq +wPq +gGZ +kkK +axw +vfd +aQP +jUa +arY +gtr +vfd +aQP +cWI +cWI +cWI +cWI +aQP +jUa +arY +gtr +vfd +aQP +cWI +cWI +iCo +vgV +aqH +eaL +mFm +eUB +eUB +eUB +eUB +eUB +eUB +eUB +eUB +eUB +eUB +eUB +eUB +cVK +aqH +eaL +aqI +ggU +aqK +ylo +aSa +ylo +aqK +aSb +eaL +aqH +aSb +aqK +ylo +aSa +ylo +anw +aqI +aqQ +exY +aqX +aqI +anw +anw +ylo +anw +anw +aqI +aqQ +exY +aqX +aqI +anw +ylo +aqs +ahF +aVb +azg +azg +aus +bby +bbD +bbD +bct +aus +azg +azg +aZl +aoQ +aqs +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +aqL +aqL +aqL +bdR +bdP +bdP +bcE +aKi +nuS +aKi +bdU +bdU +aKi +aKi +aKi +gtX +aKi +aKi +aKi +wpV +kFZ +aKh +bdJ +bdZ +bdQ +bdQ +bdQ +oge +bdS +aqL +aqL +aqL +aSa +aSa +aSa +aSa +aSa +aSa +aQz +aQz +aQC +arv +aQC +aYB +ahZ +ahZ +ahZ +ahZ +gvh +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +ahZ +gvh +ahZ +ahZ +ahZ +ahZ +ahZ +pIU +tVu +aQt +aiD +"} +(84,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aap +bFN +bFQ +aag +aag +qqI +mOV +ehN +aag +csk +aNP +oHP +axd +lDb +bkP +aIR +aQL +bhJ +aNP +qlF +tCn +aPg +auq +bFq +bFs +bFw +bFA +bFD +auq +puF +vMP +acD +tDQ +acd +mIn +acD +vMP +adT +alK +bjD +bjD +aXU +xVS +bjD +bjD +alK +asa +gtr +vfd +cWI +aQP +jUa +gtr +vfd +cWI +gOx +cWI +mBq +bpr +asc +aRn +ase +aHV +aRn +asc +bhF +bHk +asC +bnr +asC +aRv +asG +aHW +aRv +asC +bnr +asC +waF +aqG +aqH +eaL +gCO +aqN +aqN +aqN +aqN +aqN +aqN +aqN +aqN +aqN +aqN +aqN +aqN +sPI +aqH +eaL +aqI +lOV +anw +anw +aSa +anw +anw +aws +eaL +aqH +aSb +anw +anw +aSa +anw +anw +kGi +aqI +aJu +aqI +pXU +aSb +anw +anw +anw +aSb +pXU +aqI +aJu +aqI +aul +anw +ylo +aqs +aQc +aXk +agR +agR +atR +deD +aQc +aQc +uMf +atR +agR +agR +agR +aQc +aqs +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aqL +aqL +aqL +bdP +bdP +bdR +bdP +bdP +vhZ +aKm +aKi +bdU +bdU +bel +aKi +aKi +aKi +gtX +aKi +aKi +aKi +aKi +aKi +var +aKn +aJZ +aJZ +bdP +bdQ +bdQ +bdP +bdP +bdP +aqL +aqL +aqL +aSa +aSa +aSa +aSa +aQz +ahx +aQQ +aQQ +aQC +vpl +wJU +aQs +aQs +aQs +aQs +aQs +aQs +aQs +aQs +aQs +aYI +aQs +aQs +aQs +wJU +aQs +aQs +aQs +aQs +aYI +aQs +aQs +aQs +aQs +aQs +tVu +aEy +aEy +aEy +"} +(85,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaE +aaE +aap +btK +aag +aag +aag +aOi +aag +aNO +btO +bqE +aNP +aoU +klD +urX +avG +urX +urX +aNT +aPO +aNX +tCn +aUg +auq +auq +auq +auq +auq +auq +auq +pxl +jxN +acD +aoL +acA +mIn +acD +vMP +jmO +alI +cKi +aXU +wmf +xVS +aXU +gwY +alI +oVe +gtr +rvL +mJC +arx +arx +atZ +bnf +arx +arx +arx +arx +asc +asc +ase +ase +sHR +ase +asc +asc +asc +asC +bnp +aTY +fMN +asG +rpB +tYg +aTY +bpO +asC +asC +aqG +aqH +eaL +caA +aqN +oXK +esV +esV +dlP +esV +esV +dlP +esV +esV +oXl +aqN +cSI +aqH +eaL +aqI +aSb +gvi +anw +anw +anw +aJu +aqI +eaL +aqH +aqI +aJu +anw +anw +anw +jGd +duY +xFf +xFf +xFf +rRm +jDp +dlO +hjU +dlO +sVs +uzS +xFf +xFf +xFf +duY +anw +aqs +aqs +aQc +aXk +agR +agR +atR +baC +baG +baG +cii +atR +agR +agR +agR +aQc +aqs +ylo +ylo +ylo +ylo +ylo +ylo +aqL +aqL +aqL +bdP +bdP +bdP +bdP +bdQ +bdQ +bdR +bdQ +vhZ +aKm +aKi +aKi +aKi +aKi +aKi +aKi +gtX +aKi +aKi +aKi +vaI +aKi +aKi +bee +lKy +aJZ +bdP +bdP +bdQ +bdP +aJZ +beg +bdP +bdQ +aqL +aqL +aqL +ylo +ylo +aQz +aQQ +aQO +bgx +aQz +aEy +aEy +aEy +aQt +aQt +aQt +aQt +aQt +aQt +aQt +aQt +aEy +aEy +aEy +aEy +aEy +aEy +aEy +aEy +aEy +aEy +aQt +aQt +aQt +aQt +aQt +aQt +aEy +ylo +ylo +"} +(86,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaE +aVM +btE +aeH +aag +aag +msj +btQ +qsY +aNO +aag +bGi +aNP +qhl +sQb +aNL +bkP +aNS +rBf +kha +aPO +wyL +tCn +bFG +auq +bCw +sCZ +aeY +bCD +bCF +auq +puF +vMP +acD +gzz +aev +mIn +acD +vMP +adT +alK +bhx +bhx +aXU +xVS +bhx +bhx +alK +asa +gtr +rvL +arx +arx +arH +uTq +boX +kyb +bpi +lkF +arx +aDT +ase +gZw +wuC +sHR +ase +aYS +buR +asc +asE +fMN +asG +asG +asG +rpB +asG +asG +tYg +qTZ +asC +aRD +aqH +eaL +gCO +aqN +xkH +cGi +cGi +cGi +cGi +cGi +cGi +cGi +cGi +qBJ +aqN +cSI +aqH +eaL +aqI +aqI +aqI +aqI +jyR +aqI +aqI +aqI +eaL +aqH +aqI +aqI +aqI +oiI +aqI +aqI +aqI +aqH +aqH +aqH +iTt +duY +duY +duY +duY +duY +lgt +aqH +aqH +aqH +aqI +aqI +aha +axG +aQc +aXk +agR +aQc +aqs +aZa +aZa +aZa +aZa +aqs +aQc +agR +agR +aQc +aqs +ylo +ylo +ylo +ylo +aqL +aqL +aqL +bdS +aJZ +aJZ +aJZ +bdP +bdQ +bdQ +bdQ +iQH +bdQ +bdQ +bdy +nMk +aKm +aKi +aKi +aKi +aKi +gtX +aKi +bdU +aKi +aKi +bel +aKi +bee +beo +aJZ +bdS +bdP +bdR +aJZ +bdZ +aJZ +bdP +bdQ +bdQ +bdQ +aqL +aqL +aqL +aQz +aQQ +aQW +aQz +aQz +aSa +aSa +aEy +aiD +aiD +aiD +aiD +aiD +aiD +aiD +aiD +aEy +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aEy +aiD +aiD +aiD +aiD +aiD +aiD +aEy +ylo +ylo +"} +(87,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaE +ajC +btD +aeH +aag +aag +fZQ +abi +bFY +aNO +btO +bqE +aNP +aNP +aNP +aNP +aNP +ave +aNQ +rjO +aeA +mAK +aPn +uvd +bkM +wyL +bCx +ahl +bCE +bCG +auq +puF +vMP +acD +adT +eqK +mIn +acD +vMP +adT +alK +axV +bHR +aXU +xVS +axV +axV +alK +asa +gtr +rvL +arx +rfh +kPl +awO +feD +arH +arH +arH +arx +bpt +ase +aHE +fLz +bpD +wuC +ase +ase +asB +asF +axQ +bHA +bnq +chg +rFf +bPi +bnq +axQ +bnx +aRv +aqG +aqH +eaL +gCO +aqN +xkH +snc +snc +cGi +snc +snc +cGi +snc +snc +qBJ +aqN +cSI +aqH +eaL +aqH +aqH +aqH +aqH +eaL +aqH +aqH +aqH +eaL +aqH +aqH +eqM +fsr +eqM +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +atR +agR +agR +aXk +agR +aQc +aZa +ylo +ylo +ylo +ylo +aZa +aQc +agR +agR +aQc +aqs +ylo +ylo +ylo +aqL +aqL +bdS +vKH +aKh +aKh +bcV +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +eOZ +aKi +aKi +aKi +aKi +flB +rwo +rwo +rwo +rwo +rwo +yfO +eZQ +jqz +jqz +bVX +fwq +pgO +jqz +jqz +jqz +jqz +fpI +bdQ +bdQ +bdQ +bdQ +aYR +aQC +aQQ +baz +aQz +ylo +aSa +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(88,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaE +bqx +aOi +aeH +aag +btO +bpR +abi +bFZ +aNO +aag +aZA +aNP +oHP +axd +ggO +bkP +lhI +aNQ +vFL +aPO +aNU +xeV +mAK +bkN +mAK +bCy +akN +aNW +akP +auq +puF +vMP +acD +adT +aJy +mIn +acD +vMP +adT +alK +bjD +huQ +aXU +xVS +bjD +bjD +alK +asa +gtr +rvL +arx +wwQ +bcQ +uTq +boY +bpd +bpj +arH +bnf +rGH +ase +bpF +bpC +bpE +hLh +gdy +ase +asB +asF +bGZ +bJf +bnq +asG +kzN +bHA +bnq +axQ +bnx +aRv +aqG +aqH +eaL +gCO +aqN +xkH +cGi +cGi +cGi +cGi +cGi +cGi +cGi +cGi +qBJ +aqN +cSI +aqH +wUx +lvR +lvR +lvR +lvR +mer +lvR +lvR +lvR +mer +kuU +sDx +sDx +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +kuU +lvR +lvR +aus +azg +azg +aZl +agR +aQc +aZa +ylo +ylo +ylo +ylo +aZa +aQc +agR +agR +aQc +aqs +ylo +aqL +aqL +aqL +vKH +aKh +aKl +jIm +mti +aKo +bdJ +bdQ +iQH +bdP +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdW +bdU +aKp +aKm +aKi +gtX +aKi +aKi +aKi +aKi +bdU +gXN +yle +aJZ +aJZ +aKK +aKK +aKK +aKK +aKK +xsU +aJZ +fip +kCm +bdP +bdQ +bdQ +bdQ +aQC +arv +aQC +aQz +ylo +aSa +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(89,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaE +aUl +aOi +aeH +aag +bGh +bMB +abi +aWD +aNO +btO +bqE +aNP +aoU +klD +urX +awD +urX +urX +mTO +aPO +aNX +tCn +hZu +bkM +aNU +aNV +ahl +aNV +alD +auq +soi +vMP +acD +adT +nTz +mIn +acD +vMP +adT +arL +arL +arL +arL +uwP +arL +arL +alI +asa +gtr +rvL +arx +aRh +aWh +aML +awU +ucx +oEa +awU +aHP +hLh +hLh +hLh +cEC +iei +ase +ase +tFv +asB +asF +asG +asG +asG +dVQ +rpB +asG +asG +asG +bny +asC +aqG +aqH +eaL +gCO +aqN +sNE +cGi +aAE +cGi +snc +snc +cGi +snc +snc +qBJ +aqN +eJg +cVK +eaL +mFm +eUB +eUB +eUB +eUB +eUB +eUB +cVK +aqH +nUz +tUO +buT +buT +buT +buT +buT +buT +buT +fSr +buT +buT +buT +buT +buT +buT +buT +buT +jHF +aqH +eaL +aqI +aqI +atR +axG +aQc +ahN +aQc +aQc +aZa +ylo +ylo +ylo +ylo +aZa +bbm +agR +agR +bbm +aqs +aqL +aqL +bdQ +bdP +aKk +aKi +var +aKi +gtX +aKi +tfu +aKh +aKh +wiJ +aKh +beG +bdQ +bdQ +bdQ +bcD +bdX +aKi +aKn +aKk +aKi +gtX +aKi +aKi +aKi +aKi +bdU +eIL +bea +beg +aJZ +aKK +lMf +aYc +lMf +aKK +bdS +bcN +bei +fip +eNM +kCm +bdP +bdR +bdR +bdR +aYR +aqL +ylo +aSa +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(90,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaE +ajC +btD +aeH +aag +aag +bFV +abi +bMC +aNO +aag +bME +aNP +qhl +sQb +aNL +bkP +aIV +bhA +brd +aNP +bHc +tCn +aBu +auq +gaF +ndr +axm +ndr +wBc +auq +puF +vMP +acD +adT +eqK +mIn +acD +vMP +adT +arL +bpa +jrQ +amg +rXj +agq +arL +uSz +nLl +gtr +rvL +arx +bjA +aQR +uTq +arx +vMI +arx +arx +arx +asc +asc +asc +asc +asc +bjy +bjz +bpG +asc +dUn +axQ +eGQ +bnq +asG +kzN +eGQ +bnq +axQ +bJg +aRv +aqG +aqH +eaL +gCO +aqN +wQZ +tvO +iHc +wBP +xtR +iQi +uuT +iQi +iQi +oOg +aqN +aqO +bnM +aCI +aqO +arf +arf +arf +arf +arf +arf +cSI +aqH +nUz +aro +nQZ +arp +arp +arp +arp +arp +arp +arp +arp +arp +arp +arp +arp +arp +arp +nQZ +cfZ +aqH +eaL +aqI +anw +aqs +aqs +aqs +aqs +aqs +aqs +aqs +aSa +aSa +aSa +aSa +aqs +cgt +cgt +cgt +bet +gjX +aqL +bdQ +bdQ +rUq +upr +rwo +iTW +geN +uXk +sTq +hdB +rwo +rwo +rwo +rwo +wlY +uBH +fwq +fwq +grD +jba +mrb +nwj +upr +rwo +fYL +aKi +aKi +aKi +aKp +aKj +tQk +aJZ +aJZ +aJZ +aKK +iOi +aKM +aKM +aKK +bdS +beo +aJZ +aJZ +aJZ +rTj +bdP +bdQ +aZm +aJZ +bdP +aqL +aqL +aSa +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(91,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaE +bqC +btF +aeH +aag +btO +bpR +abi +bum +aNO +btO +bqE +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +aNP +auq +ays +auq +auq +auq +auq +auq +auq +auq +auq +kvm +vMP +acD +tDQ +acd +bGR +acD +vMP +adT +arL +bpa +gRm +arR +rXj +arR +nTO +arY +arY +gtr +kvN +ary +ary +ary +aHO +ary +thb +hhP +eyK +lsu +nAl +uZL +mIs +asc +asc +asc +asc +asc +asc +aAr +axQ +eGQ +bnq +asG +kzN +bJf +bnq +axQ +bnx +aRv +aqG +aqH +eaL +gCO +aqN +aqN +aqN +avU +aqN +aqN +aqN +aqO +aqO +aqO +aqO +aqO +aqO +bpX +lxS +aAM +aSp +arj +ybP +arg +bAX +arf +cSI +eqM +nUz +aro +arp +arp +ahB +aTG +ahB +qoq +arp +bEC +bqw +arp +bDO +hLL +bEI +bqA +arp +arp +cfZ +aqH +eaL +aqI +aqK +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aqs +aQF +agR +agR +aQc +agZ +bdQ +bdQ +bdP +rTj +bdy +kHP +aKo +aKl +aKi +aKi +aKi +aKi +aKi +bdz +bdM +gtX +aKo +aKh +aKh +bdX +bdU +aKp +tQk +aKk +bel +gtX +aKi +aKi +aKp +bdK +aJZ +aKs +aKs +aKs +aKs +aKK +aKK +bcb +aKK +aKK +aKs +aKs +aKs +aKs +bdP +rTj +bdP +bdQ +bdQ +bdZ +beg +bdP +aqL +aqL +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(92,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aaE +aaE +aap +aeH +aag +bFT +aqq +abi +bum +aNO +aag +sTN +abA +yaN +aNN +aNN +hYs +aNN +yaN +aNN +aPh +ymj +aPo +gMY +abA +aOb +bOZ +bPa +bOZ +aOf +adb +puF +vMP +acD +amR +acA +aPV +acD +vMP +adT +arL +bpa +gRm +arR +eqt +arR +arR +arY +arY +gtr +rvL +ary +mVk +bhD +fZW +ary +ary +ary +ary +ary +ary +ary +thb +aRM +arH +toL +aKX +aKX +arx +aRA +jvk +asG +tWw +asG +boW +asG +asG +asG +bny +asC +aqG +aqH +eaL +gCO +aqN +aqR +vyk +aqW +hDE +vCo +aqN +cbo +its +bpq +tpz +eOS +aSm +bAO +fkX +lvU +aGt +qaS +biH +aNC +bAD +arf +cSI +aqH +eaL +aro +arp +bnY +aiS +aVl +aty +ahB +arp +aTT +nGs +arp +bEE +qWK +bjC +nJl +bKN +arp +cfZ +aqH +eaL +aqI +aqK +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aqs +aRa +agR +aoO +aQc +agZ +bdQ +bdQ +bdP +eiG +gqV +aKk +aKi +idU +aKi +bdU +aKi +aKi +bdz +bdC +bdL +gtX +aKi +jlL +aKi +ezR +bdU +beb +bcL +aKk +aKi +gtX +aKi +aKi +aKn +aJZ +aKs +aKs +bsO +bsO +bsW +aKK +cah +aKO +bti +aKK +btn +bsO +bsO +aKs +aKs +rTj +bdR +bdQ +bdQ +bdQ +bdQ +bdP +bdP +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(93,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aap +aeH +aag +aag +bFX +bjj +ehy +omw +mOV +mOV +aaC +adu +adu +adu +adu +adu +aPk +adu +adu +adu +spN +adu +aOp +hta +hta +hta +aPu +pXY +adb +aFz +vMP +acD +gzz +aev +bGT +acD +vMP +adT +arL +bpa +gRm +arR +arR +arR +arL +cbS +jUa +gtr +rvL +ary +bhI +arI +fZW +uRC +bHC +bHC +bHC +bHC +uRC +ary +ary +ary +aHR +arH +arH +boX +arx +asF +axQ +bpK +gTe +tWw +kzN +bJf +bnq +axQ +bHB +aRv +aqG +aqH +eaL +gCO +aqN +aqS +qWf +aqW +qQU +wYD +aqN +aqT +bAe +bAf +bAV +xzg +aSm +bAP +lxS +kSa +aSp +bBh +biI +bAC +bAY +arf +cSI +aqH +eaL +aro +arp +aUr +ath +aVm +eKL +tYF +bye +ppi +olD +arr +bqz +ayS +aDO +ayS +mSR +arp +cfZ +aqH +eaL +aqI +aqK +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aQz +aQC +arv +aQC +aQC +aYR +bdQ +bdQ +bdQ +eiG +aJZ +aKk +aKi +bdU +bdz +bdF +bdF +bdF +bdC +bdD +bdL +rpZ +aKi +aKi +aKi +aKi +aKi +bdU +bee +bcZ +aKi +gtX +aKi +aKi +bdb +aJZ +aKs +bsO +aKz +ema +mmj +bca +ezx +cak +ezx +bca +mmj +fmw +aKz +bsO +aKs +usS +iEH +bdP +bdQ +bdQ +bdQ +bdQ +bdP +aZm +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(94,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aap +aeH +aag +aag +aag +blT +mOV +bmL +aag +xys +abA +qOJ +aoV +aoV +agV +aoV +juA +agV +aoV +aoV +agV +oKh +abA +iOR +adz +adz +tDt +cPC +jbN +acE +vMP +acD +slL +gJn +vyR +acD +vMP +jmO +arL +arL +arR +oGe +lqR +arR +arL +arL +oVe +gtr +rvL +ary +bhy +vDt +vLO +nNB +nNB +nNB +nNB +nNB +nNB +nNB +nNB +aHQ +awU +aHT +dOu +boX +arx +asF +axQ +bJf +bnq +quI +rFf +bHA +bnq +axQ +bnx +aRv +aqG +aqH +eaL +gCO +aqN +aZk +rVK +aqW +rVK +nEQ +aqN +aSf +bAf +bAB +dCv +pov +bBc +lvU +oaF +aRZ +arf +arf +arf +arf +arf +arf +cSI +aqH +eaL +hhA +arp +rSG +bqq +aVr +auA +ahB +arr +azC +vff +arr +arr +ayS +ifj +bqy +bEU +arp +pir +aqH +eaL +aqI +anw +anw +anw +anw +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aQz +aQO +any +bcx +aQC +bdQ +bdQ +bdQ +bdQ +eiG +aJZ +aKk +bdz +bdF +bdC +nbT +bdD +bdD +bdD +bdD +bcT +vnc +aKi +aKi +aKi +bel +aKi +aKi +bee +aKk +aKi +gtX +aKi +aKi +aKo +bdJ +aKs +aKs +bsO +bsO +bsW +aKK +aKP +vOK +eUK +aKK +btn +bsO +bsO +aKs +aKs +rTj +bdP +bdP +aJZ +gqV +bdS +bdQ +bdQ +bdR +bdQ +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(95,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aap +bFO +dtl +dtl +dRI +aNO +xys +dtl +dtl +sFd +abA +aiR +agt +avv +aAS +agt +avv +aAS +agt +avv +aAS +ajP +abA +bOX +adz +adz +tDt +adz +aPH +acD +vMP +acD +acD +acD +acD +acD +vMP +adT +uWJ +qcR +arR +lue +oGe +arR +aQv +uWJ +asa +gtr +rvL +ary +bhB +arI +arI +arI +arI +arI +arI +arI +arI +arI +bTp +ary +bjK +uTq +arF +rfh +arx +ulr +uYq +asG +asG +asG +rpB +asG +asG +dOB +fNy +asC +aRD +aqH +eaL +gCO +aqN +kkV +nAm +sjK +jjz +lfF +aqN +aqT +ari +ari +ari +ari +aqO +bAk +lxS +lAd +aSp +arj +hzk +arg +bAX +arf +cSI +aqH +eaL +aro +arp +ahB +aUK +aVt +avz +ahB +arr +ayR +dQc +ppi +nqd +ppi +kje +ayS +bqD +arp +cfZ +aqH +eaL +aqI +aqI +oiI +vnH +anw +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aQz +aPb +aQQ +aQO +aQC +bdQ +bdQ +bep +bei +eiG +bdx +aKl +bex +bdD +bdD +bdD +bdD +bdD +bdD +bdD +beB +eAD +aKi +aKi +aKi +aKi +aKi +ezR +aKo +aKl +aKi +gtX +aKi +idU +aKi +aKo +bcL +aKs +aKs +aKs +aKs +aKK +boE +vOK +boG +aKK +aKs +aKs +aKs +aKs +bdP +rTj +beo +aJZ +aJZ +aJZ +bdP +bdR +bdR +bdP +bdP +bdP +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(96,1,1) = {" +ylo +aab +aab +acL +acL +acL +acL +aab +aab +acL +acL +acL +acL +aab +aap +abi +btN +btN +abi +bmH +abi +btN +btN +abi +abA +alV +apC +abA +alV +apC +abA +alV +apC +abA +alV +apC +abA +bOY +adz +adz +aPw +hta +hta +oRo +wBJ +oRo +oRo +oRo +oRo +oRo +jxN +adT +uWJ +kUV +flQ +wcn +xHk +flQ +biy +uWJ +asa +gtr +rvL +ary +ary +biZ +bpl +bHC +bHC +hZU +iCA +bHC +bHC +arI +bpA +ary +arx +atZ +arx +arx +arx +asC +oqB +aXi +uYq +asG +rpB +dOB +aXi +oOj +asC +asC +aqG +aqH +eaL +gCO +aqN +kkV +rVK +aqW +akT +huL +aqN +aqT +ari +ari +ari +kSa +bnJ +biE +fkX +lvU +aGt +qaS +biH +tcF +qdK +arf +cSI +aqH +eaL +aro +arp +ahB +ahB +aTH +ahB +ahB +arr +xCE +vff +ayS +ayS +ayS +qWK +bEN +bEV +arp +cfZ +aqH +qqW +lvR +cmk +aqH +aqI +anw +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aQz +aQC +arv +aQC +aQC +bdQ +bdQ +bdQ +aJZ +oVF +cbW +bdz +bdC +bdD +bdD +bdD +bdD +bdD +bdD +bdD +bdO +wbf +bel +bdU +vaI +wpV +bcI +aKi +aKi +aKi +aKi +gtX +aKi +aKi +aKi +bel +bee +aJZ +aJZ +aJZ +aJZ +aKK +ekK +vOK +fqk +aKK +bem +aJZ +bdS +bdS +aJZ +fip +jqz +eNM +bVX +jqz +fwq +pgO +fwq +fwq +jqz +jqz +kCm +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(97,1,1) = {" +aab +aab +aNi +viq +jJD +jJD +viq +jJD +aDS +dYM +dYM +dYM +dYM +dYM +blK +aOu +aOu +aOu +cGO +fEP +aNY +aOu +aOu +aOu +blB +bmO +bmO +bmO +bmO +bmO +bmO +bmO +bmO +bmO +bmO +bmO +adb +mAc +adz +gEm +tDt +ckz +jbN +toa +toa +toa +aFF +aOh +acC +acD +vMP +adT +arL +arL +arL +arL +arL +arL +arL +arL +asa +gtr +rvL +mJC +ary +ary +ary +twW +twW +ary +ary +twW +twW +lGp +ary +ary +acP +eaL +bnn +bhE +bPb +asC +bnr +asC +aRv +asG +aHW +aRv +asC +bnr +asC +gvi +aqG +aqH +eaL +gCO +aqN +fHX +nTb +aqW +gGF +enu +aqN +aVq +biu +biA +bjc +aRT +aqO +biF +lxS +kSa +aSp +bBh +biI +jgb +uKy +arf +cSI +aqH +eaL +aro +arp +arp +arp +arp +arp +arp +arp +dMH +vff +iMM +arr +jhO +jhO +jhO +fCx +arp +cfZ +aqH +aqH +aqH +eaL +aqH +aqI +aqK +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aqL +aqL +aJZ +aJZ +bdP +bdR +bdR +bdQ +bdP +aJZ +eii +bdX +bdA +bdD +bdD +bdD +mtG +bdD +bdD +bey +bdD +bdL +gtX +aKi +aKp +aKj +aKm +aKi +aKi +bdU +aKi +aKi +gtX +aKi +aKi +aKi +aKi +aKn +bdS +aJZ +bdZ +aJZ +aKK +ydZ +qbG +vVA +aKK +aJZ +bdZ +aJZ +beg +aJZ +aJZ +gqV +aJZ +aJZ +bdP +bdP +bdR +bdP +aJZ +beo +aJZ +eiG +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(98,1,1) = {" +aab +ahO +jJD +nls +dug +dug +nls +jJD +eXi +aNZ +nXo +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +fEP +aNZ +aNZ +aNZ +aNZ +blF +aNZ +aNZ +aNZ +aNZ +iAI +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +aOc +adz +gEm +gEm +tDt +aFr +adb +adb +adr +adr +adb +adb +puF +acD +vMP +qaO +mRB +mRB +dSM +mRB +mRB +dSM +mRB +mRB +uwy +vMP +qaO +mRB +aqF +afc +aqF +aqF +aqF +gcE +aqF +aqF +qpo +aqH +cut +aqF +qpo +eaL +tfC +aqF +aqF +aqF +aqF +afc +qpo +aqH +eaL +tfC +afc +aqF +aqF +aqF +qpo +aqH +eaL +gCO +aqN +aqN +aqN +gRP +aqN +aqN +aqN +aqO +aqO +aqO +aqO +aqO +aqO +aqT +lxS +sOt +arf +arf +arf +arf +arf +arf +cSI +aqH +eaL +aro +arp +ahB +ahB +aTG +ahB +ahB +arr +ayR +vff +nJl +arr +arr +arp +arp +arp +arp +eDZ +buT +buT +jHF +eaL +aqH +aqI +aqK +ylo +ylo +ylo +ylo +ylo +ylo +aqL +aqL +eMB +hnR +jqz +fwq +pgO +pvA +bdQ +bdP +aJZ +fOd +aKi +bdA +nbT +bdD +bdD +bdD +bdD +bdD +bdD +bdO +bdI +rpZ +aKp +bdK +aJZ +xRq +aKj +mSo +aKi +aKi +aKi +gtX +aKi +aKi +aKi +aKp +oZW +aKs +aKs +aKs +aKs +aKK +aKN +vOK +xNw +aKK +aKs +aKs +aKs +aKs +aJZ +aJZ +xsU +lKy +aJZ +bdQ +bdQ +bdQ +bdS +aJZ +bdS +aJZ +suf +bdS +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(99,1,1) = {" +aab +aDN +xOJ +dYM +sxI +dYM +dYM +dYM +mBs +nXo +rJu +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +nXo +nXo +eCr +eTf +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +gEm +gEm +gEm +adz +tDt +cPC +adb +aPz +aOb +aOb +aEg +adb +puF +acD +vMP +acD +acD +acD +acD +acD +acD +acD +acD +acD +acD +vMP +acD +acD +aqH +eqM +eqM +eqM +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +eaL +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +eaL +aqH +aqH +aqH +aqH +aqH +aqH +aqH +eaL +gCO +aqN +uoh +vyk +aqW +aqN +arl +tpz +bjG +biv +biK +aqO +bnj +bGW +aqT +lxS +lAd +aSp +arj +ybP +arg +bAX +arf +cSI +aqH +eaL +aro +arp +ahB +aUU +aVw +aty +ahB +arr +ayR +dQc +oqz +vuu +vuu +aum +ayS +ayS +arp +arr +arr +arp +cfZ +eaL +aqH +aqI +aqK +ylo +ylo +ylo +ylo +ylo +ylo +aqL +bdP +eiG +aJZ +aJZ +bdP +bdQ +tAF +pgO +fwq +jqz +msP +aKi +bdA +bdD +bdD +bdD +bdD +bez +beA +bdD +bdL +aKi +rRR +keE +aJZ +bdQ +aJZ +aJZ +bdY +aKj +aKm +aKi +gtX +aKi +aKi +aKi +aKn +aKs +aKs +bsO +bsO +bsW +aKK +uGv +vOK +hNA +aKK +btn +bsO +bsO +aKs +aKs +bdP +bdP +bdP +bdP +bdQ +bdQ +bdP +bdS +smP +aJZ +beg +eiG +aJZ +bdS +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(100,1,1) = {" +aab +aDP +sqY +jpB +jpB +sga +hJG +jpB +gLW +aNZ +aPa +sIs +sIs +sIs +wwC +wwC +wwC +wwC +sIs +bmI +tVr +sIs +sIs +sIs +sIs +sIs +sIs +tVr +sIs +sIs +sIs +sIs +sIs +aoM +wwC +wwC +usW +hta +hta +hta +aPx +hta +aPM +aPA +rZK +aOd +aAN +adb +puF +acD +vMP +acD +acD +acD +acD +acD +acD +acD +acD +acD +acD +vMP +acD +acD +aqH +aqH +aqH +eqM +uoQ +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +eaL +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +eaL +aqH +aqH +aqH +aqH +aqH +aqH +aqH +eaL +gCO +aqN +aRP +bAb +aqW +aqN +aGN +ari +ari +ari +xzg +aqO +bnF +bqa +aqT +fkX +lvU +aGt +qaS +biH +aNC +bAD +arf +cSI +aqH +eaL +aro +arp +aNk +bqq +aVy +auA +ahB +arr +rox +vff +qVz +ayS +ayS +aAZ +vuu +ayS +axh +axn +axE +arp +cfZ +eaL +aqH +aqI +anw +aSa +aSa +aSa +aSa +aSa +aqL +aqL +bdP +diD +lKy +aJZ +bdQ +bdQ +bdR +bdP +bdP +aJZ +oQF +aKi +bdB +bdE +bey +bdD +bdD +bdD +bdD +bdO +bdI +aKi +pXx +aJZ +bdQ +bdQ +bdR +bdQ +smP +aJZ +aKk +aKi +gtX +aKi +aKi +aKi +aKn +aKs +bsO +aKz +ema +mmj +bca +ezx +aSX +ezx +bca +mmj +fmw +aKz +bsO +aKs +bdR +bdR +bdR +bdQ +bdQ +bdP +tNp +jqz +jqz +eNM +jqz +jmU +bVX +kCm +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(101,1,1) = {" +aab +aDR +jJD +viq +jJD +jJD +viq +jJD +eXi +aNZ +fEP +aNZ +aNZ +aNZ +nXo +aNZ +aNZ +aNZ +aNZ +aPa +xQS +aNZ +aNZ +aNZ +bmN +aNZ +aNZ +fEP +aNZ +aNZ +aNZ +aNZ +nXo +eCr +aNZ +aNZ +aOc +adz +adz +adz +adz +ckz +adb +avg +awj +awP +aEb +adb +aFz +acD +vMP +acD +vwu +flo +flo +flo +ahv +bHf +ggq +eqK +ggq +vYt +flo +flo +xKA +ahy +bHg +aSb +aJu +aSb +rhv +xKA +xKA +xKA +ahy +bHg +aSb +qsC +aSb +rhv +xKA +xKA +xKA +ahy +bHg +aSb +qsC +aSb +rhv +xKA +xKA +xKA +ahy +aqH +eaL +caA +aqN +xuI +gAh +lfH +aqN +aHo +ari +bjH +bAr +bAS +aqO +bnj +bqa +aqT +lxS +kSa +aSp +bBh +biI +bAC +mxZ +arf +cSI +aqH +eaL +aro +arp +aUs +atj +aVz +bHa +tYF +byn +ppi +ixZ +iMM +arr +arr +arp +arp +bsb +vuu +ayS +nJl +arp +jVW +nUz +aqH +aqI +anw +aSa +aSa +aSa +aSa +aSa +aqL +bdQ +aJZ +eiG +nFc +bdP +bdQ +bdR +bdR +bcD +bdJ +aJZ +fOd +bdU +aKi +bdA +bdD +bdD +bdD +nbT +bdO +bdI +aKi +idU +pXx +bdQ +bdQ +bdP +oUJ +bdQ +bdQ +aJZ +aKk +aKi +rpZ +aKi +aKi +aKi +aKn +aKs +aKs +bsO +bsO +bsW +aKK +aKP +vOK +aYg +aKK +btn +bsO +bsO +aKs +aKs +bdP +bdP +bdQ +bdQ +bdQ +bdP +beo +bdZ +aJZ +lKy +gqV +aJZ +xsU +dzV +bdQ +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(102,1,1) = {" +aab +aab +aRu +nls +jJD +jJD +nls +jJD +eXi +aNZ +fEP +rFC +jpB +jpB +blK +mrG +blP +mrG +qgm +fEP +uez +mrG +wpA +rCd +blB +mrG +rOq +xSO +rOq +pQA +qgm +aNZ +aNZ +fEP +aNZ +bnb +adb +njI +njI +njI +njI +qNF +adb +adb +adr +adA +adb +adb +puF +dky +vMP +acD +acD +acD +acD +acD +acD +acD +acD +acD +acD +vMP +acD +acD +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +nUz +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +eaL +aqH +aqH +aqH +aqH +aqH +aqH +aqH +eaL +gCO +aqN +biJ +bpT +aqW +aqN +aSr +ari +bzW +bAs +biL +aqO +pWr +bqb +svD +oaa +bBu +arh +arh +arh +arh +arh +arh +cSI +aqH +eaL +aro +arp +bnY +ahB +aTH +ahB +qoq +arp +awt +vff +nJl +arr +bDP +alk +aGx +ayR +ayS +qtZ +vuu +aHc +eqM +eaL +aqH +aqI +aqK +ylo +ylo +ylo +ylo +aqL +aqL +bdQ +bdR +upg +bdQ +bdQ +bdQ +bdQ +bdQ +aKk +aKo +bdJ +uRA +aKm +bdU +bdA +bdD +bdD +bdO +bdG +bdI +aKi +aKp +aKj +wwT +twS +bdQ +bdQ +bdQ +bdQ +bdQ +bdx +aKl +aKi +gtX +aKi +aKi +aKi +aKn +aJZ +aKs +aKs +aKs +aKs +aKK +boE +vOK +boG +aKK +aKs +aKs +aKs +aKs +bdP +bdP +bdP +bdQ +bdQ +bdR +bdP +aJZ +aJZ +beg +aJZ +bdS +bdZ +aJZ +eiG +bdQ +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(103,1,1) = {" +ylo +aad +ajD +ajD +ajD +ajD +ajD +ajD +blr +blt +ewN +blo +bly +bps +abg +abg +abg +abg +aae +bmJ +aae +abg +abg +blM +blB +blB +bmS +bmS +bmS +blB +blB +bnd +aNZ +fEP +bnd +blB +adb +ady +ady +ady +ady +ady +adb +wUE +aOa +aOa +aOa +baJ +puF +acD +awu +oRo +oRo +fpL +oRo +oRo +oRo +oRo +fpL +oRo +oRo +wBJ +oRo +oRo +lvR +lvR +lvR +lvR +kuU +lvR +lvR +lvR +lvR +kuU +lvR +lvR +lvR +mer +kuU +lvR +lvR +lvR +lvR +lvR +lvR +lvR +mer +lvR +lvR +lvR +lvR +kuU +sDx +sDx +ayh +gCO +aqN +aqN +aqN +awS +aqN +bqm +ari +ghB +lvU +dhG +byI +dhG +lvU +dhG +oaF +bBe +arh +awl +bBj +bBl +bBm +arh +sPI +aqH +eaL +aro +arp +arp +arp +arp +arp +arp +arp +awv +vff +ayS +aww +ayS +bkL +aIg +ayR +ayS +axu +ayS +arp +aSb +eaL +aqH +aqI +aqK +ylo +ylo +ylo +ylo +aqL +bdR +bdR +bdR +kuC +bdQ +bdQ +bdQ +bdQ +bdQ +aKk +jlL +aKo +kDt +bdy +aKm +bdB +bdG +bdG +bdI +aKi +aKi +bdU +aKo +bdJ +eiG +bdQ +bdQ +bdQ +bdQ +bdQ +bev +aKl +aKi +aKi +gtX +aKi +aKi +aKi +aKn +bdS +lKy +aJZ +aJZ +beo +aKK +aKN +vOK +xNw +aKK +bdP +bdS +hKH +bdP +bdP +iQH +bdP +bdQ +aKt +aKu +aKu +aKu +aKu +aKu +aKt +aJZ +aJZ +aJZ +rTj +bdQ +bdQ +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(104,1,1) = {" +aad +aad +aYC +blZ +bGq +bGr +bGt +ajD +bLc +blt +ewN +blo +bly +bly +abg +alP +btS +bGJ +aOq +qkr +fyC +bmM +aOY +blM +bOV +bOW +aOu +aOu +aOu +aOu +cGO +aNZ +aNZ +fEP +aNZ +vur +aOb +aOb +aOb +aOb +aOb +aOb +aFb +sgX +aOb +aOb +aOb +bmW +acE +acD +kgO +acD +dzX +guS +cfO +cfO +aUv +acD +vMP +dzX +cfO +rdZ +cfO +cfO +buO +agF +agF +cWf +eaL +gKu +agF +agF +cWf +fMi +aqJ +koY +koY +xHV +nUz +aqJ +koY +koY +koY +uQz +koY +koY +pjP +koY +uQz +koY +koY +ffa +xHV +eqM +eaL +gCO +aqO +aSi +boN +lxS +aqO +aMs +iEF +ari +kdn +ari +ari +ari +kdn +ari +lxS +bBf +aSq +blm +aNF +aNF +bBn +arh +awq +lvR +ayh +hhA +arp +arp +arp +arp +arp +arp +arp +bED +dQc +ppi +aCn +olD +bkL +aIg +ayR +ayS +axx +byr +arp +aws +wUx +lvR +dFe +aqK +ylo +ylo +ylo +aqL +aqL +bdP +bdP +bdP +rTj +bdQ +bdQ +bdQ +bdQ +bdQ +aKk +prI +rwo +dOo +rJo +pnQ +osY +geN +rwo +yfO +jba +iTW +geN +rwo +nIy +lkm +beG +bdQ +bdQ +bdR +aJZ +aKk +aKi +aKi +aKi +gtX +aKi +aKi +aKi +aKn +bdZ +aJZ +bdS +aJZ +aJZ +aKK +aKN +vOK +xNw +aKK +bdP +bdP +bdS +bdS +bdP +bem +bdZ +bdQ +aKt +wKT +rmm +rmm +rmm +tOo +aKt +bdZ +aJZ +bdP +rTj +bdP +bdQ +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(105,1,1) = {" +aad +aOl +akZ +amj +dio +ict +vka +anp +wpk +wpk +xEX +blo +acQ +iwx +abg +aRH +aaH +aaH +aaH +qkr +aaH +iiY +aaH +bku +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +aNZ +fEP +aNZ +aNZ +adz +adz +adz +adz +adz +adz +adz +tDt +adz +adz +adz +bmX +acD +acD +vMP +dky +afg +pNa +agK +bcP +agK +ahD +akg +agK +aEq +agK +ann +ann +ann +ann +aSb +vsN +eaL +lJz +gvi +aqi +aqi +aqi +aqi +aqi +ahi +heo +eaL +deR +gvi +aqy +aqy +aqy +aqy +aqi +aqi +aqi +aqi +aqi +aqi +pMU +heo +eqM +nUz +gCO +aSm +aqT +aqP +lxS +bnJ +bAg +noy +bix +bix +bix +bnM +bBb +noy +xHy +lxS +awh +aSq +awm +aNF +aNF +bBo +aSq +cSI +aqH +eaL +aro +arp +xbW +ahB +aTG +ahB +qoq +arp +bjB +vff +iMM +arr +ali +alp +aGx +ayR +axi +axz +ppi +sGV +lvR +ayh +aqH +aqI +aqK +ylo +ylo +ylo +aqL +beo +aJZ +bdP +aJZ +eiG +bdQ +rUH +bdQ +bdQ +bdQ +beJ +tDK +aKi +bew +aJZ +aJZ +aJZ +aKk +aKi +gtX +aKi +aKn +bdy +aKm +aKi +aKi +aKo +beG +bdQ +bdQ +aJZ +aKk +aKi +aKi +aKi +gtX +aKi +aKi +aKi +aKn +aKt +aKt +aKt +aKt +aKt +aKt +aKu +cal +aKu +aKt +aKt +aKt +aKt +aKt +aKt +aKt +aKt +aKt +aKt +aXY +agX +agX +agX +aYi +aKt +aJZ +bdS +bdP +rTj +bdP +bdQ +bdQ +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(106,1,1) = {" +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +jJN +blt +ewN +blo +bly +bly +abg +aam +bGH +aaH +vjb +aOX +aOZ +bGN +aOZ +aOZ +sIs +sIs +sIs +tVr +sIs +sIs +bna +sIs +sIs +vMM +sIs +bna +hta +hta +hta +hta +hta +hta +hta +aPx +hta +hta +hta +bmY +oRo +oRo +wBJ +aPD +afg +agK +agK +lVo +aGm +alj +awC +eeL +hqA +knS +ann +bOH +aCE +ann +ann +vsN +eaL +lJz +aqi +aqi +aFp +biX +taX +aqi +aqi +heo +nUz +deR +aqy +aqy +aCL +bQm +aqy +buF +buD +hRK +aql +iWH +aqi +aqi +heo +aqH +nUz +gCO +aSm +aqT +qje +oaF +aqO +aqO +aSm +aSm +aSm +aqO +aqO +bAH +aqP +awg +lxS +lAd +arh +awn +wdn +aNF +awo +aSq +cSI +aqH +eaL +aro +arp +aUy +aiS +aVA +bHb +tYF +byo +ppi +ixZ +nJl +arr +arr +arp +arp +rox +vff +ayS +iMM +arp +jHF +eaL +aqH +aqI +anw +aSa +aSa +aqo +aqo +aJW +aJW +aJW +aJZ +tzY +pgO +lsB +bdQ +bdQ +bdQ +bdQ +vhZ +yfH +bdK +beh +bei +aJZ +aKk +aKi +gtX +aKi +aKn +bdx +tGV +aKi +aKi +aKi +yle +bdQ +bdQ +smP +bdy +aKm +aKi +aKi +gtX +aKi +aKi +aKp +bdK +aKt +svH +vxv +ntg +ntg +aKt +ygx +fzy +pCh +aKt +qVd +kQS +ntg +gSQ +dwM +dwM +opf +nnm +aKt +vcs +utS +bQZ +nAu +xfe +aKt +aKt +aKt +aKt +kuC +bdR +bdQ +bdQ +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(107,1,1) = {" +adq +aOG +aFG +bne +ggh +aFG +bne +adq +blp +blt +gki +nrU +bml +bGp +abg +afI +bGI +ahR +bGL +bGM +bLw +bGO +blQ +blM +qgm +aNZ +aNZ +fEP +aNZ +aTL +blB +blB +blB +blB +blB +blB +adb +njI +njI +njI +njI +njI +axb +njI +sEo +njI +njI +bmX +acC +acD +acD +vMP +afg +agK +ajg +jsK +faT +alj +awC +awJ +awF +bqJ +ann +aob +boM +bic +aEr +vsN +eaL +lJz +aqi +aCt +aQS +bkW +mmh +taX +aqi +prG +eaL +deR +aPW +bMw +aAv +aqA +aqy +buG +aQp +aqj +jAd +sbN +bNW +aqi +aRE +aqH +eaL +aqM +bnM +svD +aqP +lxS +aSl +aSe +vSE +fCN +hPr +kgn +aSo +tpz +tpz +svD +fkX +lvU +aGQ +aND +kNB +aNF +bBp +aSq +cSI +aqH +eaL +aro +arp +ygF +bqq +aVC +auA +ahB +arr +azC +dQc +ppi +ppi +ppi +tPk +ppi +ppi +axk +axC +axF +arp +cfZ +eaL +aqH +aqI +anw +aSa +aSa +aqo +bWq +bWg +bWr +aJW +beh +cvO +aJZ +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdP +aJZ +aJZ +aJZ +gpP +aKi +gtX +bel +aKn +aKk +aKi +jIm +aKi +aKi +aKo +aKh +aKh +aKh +oLe +aKl +aKi +aKi +gtX +aKi +aKi +aKn +xsU +aKt +nKt +jWb +aXW +uIZ +bRo +bQZ +cam +bQW +aKt +krn +uIZ +uIZ +noW +rGb +rGb +rrs +aKE +aKt +aKu +aKu +bkp +aKu +aKu +aKt +kPP +lBj +aKt +rTj +bdP +bdP +bdQ +bdR +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(108,1,1) = {" +adq +aPK +aYv +amj +bpv +vka +vka +bKZ +wpk +wpk +xEX +blo +bly +bly +blM +blM +adL +adL +blM +blM +blM +adL +adL +blM +acF +blD +blD +wuK +blD +acF +ajZ +ajZ +ajZ +ajZ +ajZ +ajZ +acF +aPy +aPy +aPy +aPy +aPy +acF +acF +acF +acF +acF +acF +aFz +acD +dky +vMP +cxE +agK +alh +awF +aMG +alj +awC +awJ +awF +bqJ +ann +bOI +wKK +apB +alW +vsN +eaL +aTp +aqi +aES +aqj +bkX +aVi +pYS +aqi +aRE +eaL +deR +amZ +aqB +lyu +bQn +aqy +akQ +bQG +qQq +aqj +aqj +buI +aqi +heo +aqH +wUx +lvR +avq +lvU +lvU +rCr +jjC +lvU +lvU +lvU +lvU +jjC +lvU +lvU +lvU +jjC +trV +bnQ +arh +aYL +aNF +aNF +bEl +arh +cSI +aqH +eaL +aro +arp +ahB +aUK +aVt +avz +ahB +arr +ayR +dQc +oqz +ayS +ayS +aAZ +ayS +ayS +arp +arr +arr +arp +cfZ +eaL +aqH +aqI +aqK +ylo +ylo +aqo +bWe +bWh +uXa +bcp +aJZ +eiG +aJZ +aJZ +bdQ +bdP +bdP +bdP +bdQ +bdQ +bdQ +xsU +aJZ +bdS +bdW +bdU +gtX +aKi +aKn +aKk +aKi +aKi +aKi +jlL +aKi +var +aKi +bdU +bdU +aKi +aKi +aKi +gtX +aKi +aKi +aKn +aJZ +aKt +aKt +aKt +aKt +aKt +aKt +utS +cam +cZw +aKt +kbS +jhz +gZc +hei +wMg +lYt +leg +mab +aKt +wKT +ihN +bQZ +srY +rmm +rmm +eGM +rch +aKu +eiG +beg +aJZ +bdQ +bdR +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(109,1,1) = {" +aad +aad +bks +bmu +bhC +bGs +sPx +adq +xKr +blt +ewN +blo +acQ +acR +acF +aOr +hFW +hFW +hFW +alX +hFW +hFW +hFW +hFW +acF +aOw +aOx +nMP +aOw +aUn +acF +acF +acF +acF +acF +acF +acF +wqr +wqr +wqr +wqr +wqr +aFy +adW +aOt +acF +ajZ +acF +puF +acD +acD +vMP +afg +agK +alh +aAy +aAy +alj +awC +flt +awF +lzc +ann +bhK +oHI +atc +aEr +vsN +eaL +lJz +aqi +aEU +oJB +mJy +oTs +voF +aqi +heo +eaL +deR +aPW +buE +qeg +bNN +aqy +bNS +bNT +mJy +oTs +aQT +bNX +aqi +heo +aqH +eaL +mFm +aqO +jJM +ari +ari +lxS +kSa +bAI +xHy +ari +lxS +inT +bAI +xHy +fXx +ari +gHn +arh +bqg +bAl +bir +biM +arh +cSI +aqH +eaL +aro +arp +ahB +ahB +aTH +ahB +ahB +arr +ayR +vff +iMM +arr +arr +arp +arp +arp +arp +qWX +oQR +oQR +jVW +eaL +aqH +aqI +aqK +ylo +aqo +aqo +tlD +aJS +uXa +bcp +aJZ +fip +jqz +nlm +fwq +fwq +fwq +fwq +fwq +pgO +pgO +jqz +bVX +qGz +sem +wvK +fYL +aKp +keE +aKk +vaI +aKi +aKp +aKm +aKi +bdU +bdU +bdU +aKi +aKi +aKi +aKi +gtX +aKi +aKi +aKn +aJZ +aKt +aVB +aKt +aVB +aKt +bsZ +bEf +cam +bQW +aKt +duW +bEf +sur +bQZ +bQW +aKt +aKt +aKt +aKt +bEf +qXL +kOv +kOv +fsS +bQZ +txB +tfz +aKu +eiG +aJZ +bdZ +aJZ +bdS +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(110,1,1) = {" +ylo +aad +aad +adq +adq +adq +aad +aad +blr +blt +ewN +blo +bly +bly +acF +qCU +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +anH +yeL +yeL +hRQ +yeL +yeL +anH +yeL +yeL +huv +yeL +anH +yeL +yeL +yeL +yeL +yeL +yeL +yeL +akK +fmF +acF +ajZ +acF +soi +acD +acD +vMP +afg +aEq +alh +bJj +aMG +alj +awC +aJP +mHM +bqJ +ann +ann +aSM +ann +ann +bcP +akg +agK +aqi +aqi +aPT +bkY +aPT +aqi +aqi +aqi +dVM +aqi +aqy +aqy +aCS +aqy +aqy +aqi +aqi +aup +aqi +aqi +aqi +aqi +qLo +aqH +eaL +gCO +aqO +aqO +bAd +bAd +guA +aqO +aqY +aqY +ayo +aOm +aqY +aqY +aqT +ari +ari +aRZ +arh +arh +aSq +bBk +arh +arh +cSI +aqH +eaL +aro +arp +arp +arp +arp +arp +arp +arp +lhl +vff +nJl +arr +ahB +aUr +aWK +aWK +arp +cfZ +aqH +aqH +aqH +eaL +aqH +aqI +aqK +ylo +aqo +bJH +tvG +aJS +bWs +aJW +xsU +aJZ +aJZ +aJZ +aJZ +bdP +bdQ +bdP +bdR +bdR +bdP +aJZ +aJZ +gpP +aKi +aKi +gtX +aKn +aJZ +bdY +aKm +bel +aKn +bdy +iNk +aKm +aKi +aKp +aKj +aKj +aKm +aKi +gtX +aKi +bel +aKn +bdZ +aKt +aKC +aKt +aKC +aKt +bta +bEf +cam +bQW +aKt +aKt +bEf +cam +bQZ +kKK +aKt +gUX +gHg +isS +fIr +meu +btx +pqt +mqK +mqK +eoZ +lig +aKt +tzY +cMa +jqz +jqz +xdi +bdP +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(111,1,1) = {" +ylo +aak +dKE +dKE +dKE +dKE +dKE +aak +blr +blt +ewN +aEz +acF +acF +acF +lZF +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +noK +fmF +acF +ajZ +acF +kYC +oRo +oRo +jxN +afg +aEq +alh +aAy +aAy +alj +awC +aAy +aAy +miU +ugM +faT +awC +miU +aHb +faT +awC +miU +aqi +aql +aqm +mJy +sbN +aql +aZj +aqm +mJy +bqL +aqi +bbN +mJy +aRk +bia +gqo +bie +mJy +bPm +bQU +bNY +aqi +heo +aqH +eaL +gCO +aqO +aAC +ari +ari +lxS +bqj +aqY +bAo +ayo +liQ +bBq +aqY +bAT +qLI +bBd +vVJ +aqY +aAO +rUd +rUd +bAZ +aqY +cSI +aqH +eaL +aro +arp +ahB +ahB +aTG +ahB +ahB +arr +ayR +vff +ayS +aET +ahB +aiS +bEO +aty +arp +cfZ +aqH +ayU +lvR +qRv +aqH +aqI +anw +ylo +aqo +bWc +bWf +aJS +bWt +aJW +aJW +aJW +aJW +aJW +aJW +aJW +aJW +aJW +aJW +aJW +aJW +bor +aKh +beQ +aKi +aKi +gtX +aKo +aKh +sqn +aKl +aKi +aKo +aKh +sqn +aKl +aKi +aKo +aKh +aKh +bda +aKi +gtX +aKi +aKi +qVs +aKq +aKt +aKD +aKt +aKD +aKt +aKt +aXY +cam +srY +cau +aKt +aKu +cam +bAE +aKu +aKt +nrd +nAu +mqK +mqK +xfe +aKt +aKt +aKu +aKu +aKu +aKt +aKt +suf +bdS +aJZ +beg +rTj +bdP +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(112,1,1) = {" +ylo +aak +aon +asA +asA +asA +aPL +bky +blr +blt +ewN +blz +acF +blG +afZ +lON +acG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +acG +noK +blJ +acF +acF +acF +puF +acD +acD +vMP +afg +agK +alh +awF +aMG +alj +awE +qZW +qZW +qZW +kRB +qZW +aAd +qZW +qZW +qZW +aAd +qZW +aqz +xbX +xbX +qZs +xbX +xbX +xbX +xbX +toG +sbN +aqi +bbU +mJy +aqj +aqj +aqj +aqj +mJy +aqj +aqj +rZJ +aqi +lvg +aqH +eaL +gCO +aqO +aym +kdn +qje +oaF +vEY +aqY +bAp +ayo +liQ +bBr +bnO +aDj +aSn +aSn +aDj +bnO +vKN +ayo +ayo +bBs +aqY +cSI +aqH +eaL +aro +arp +ahB +aUZ +aVJ +aty +ahB +arr +ayR +dQc +ppi +ppi +hKA +bEK +aWM +bEW +arp +cfZ +aqH +eaL +aqI +aqI +snA +vnH +anw +ylo +aqo +bKb +msp +aJS +bWi +bCR +aKa +tlD +jnX +bUN +bop +sKZ +aJY +aUS +aJX +aJY +bbo +aKi +aKi +aKi +aKi +aKi +rpZ +aKi +aKi +aKi +aKi +aKi +aKi +bel +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +gtX +aKi +aKi +aKo +aKh +aKu +fmR +aXR +bbV +aKJ +aKt +ihN +cam +bQZ +srY +aYr +ihN +cam +bQZ +srY +aYr +qpC +bQW +aKt +aKt +aKt +aKt +aJZ +aJZ +aJZ +aJZ +bdS +bdS +dzV +bdS +bdZ +bdP +rTj +bdP +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(113,1,1) = {" +aak +aak +arc +aFs +aOe +aPB +arc +bky +blr +blt +ewN +blt +aGl +acG +acG +noK +acG +aaG +aaG +aaZ +abd +hBM +abj +abl +abd +hBM +abt +aaZ +abd +aby +abB +aaZ +abd +hBM +abt +aaZ +abZ +ace +abt +aaZ +aaG +aaG +acG +noK +fmF +acF +ajZ +acF +aFz +acD +acD +vMP +cxE +agK +alh +aAy +aAy +alj +awC +alj +alj +alj +rKy +alj +alj +alj +rZU +lLO +lLO +lLO +aqi +cJS +cJS +aQT +nxZ +nxZ +nxZ +oJB +axO +xbX +xbX +xbX +aAw +aPY +aPY +ksT +aPY +ihD +ksT +xbX +xbX +aqz +lvR +lvR +uVe +gCO +aqO +rtN +kdn +aqP +lxS +vEY +bnK +bAu +ayo +liQ +arb +rUd +rUd +rUd +rUd +rUd +rUd +vCR +ayo +xnk +bBt +aSn +cSI +aqH +eaL +hhA +arp +upe +bqq +aVT +auA +ahB +arr +rox +vff +arr +arr +ijA +bEK +aWN +bEX +arp +pir +aqH +eaL +aqI +anw +anw +anw +anw +ylo +aqo +bWd +erh +jhN +ltl +bbk +bbl +tlD +aJS +riE +bXH +bXG +bXH +tuu +aJS +aJS +aKf +aKi +aKi +aKi +aKi +aKi +gtX +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +bel +aKi +aKi +gtX +aKi +aKi +aKi +aKi +bkd +nCh +mfm +bbV +bbV +bzq +bQZ +cao +lsk +kOv +kOv +mTz +jdV +qAG +kOv +kOv +iqp +lCv +aKu +bdZ +aJZ +aJZ +lKy +gqT +jqz +cMa +jqz +fwq +paH +bdP +bdQ +bdQ +kuC +bdR +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(114,1,1) = {" +aak +dKE +arc +aFs +aOe +aPB +arc +aak +bls +blt +gki +wpk +oqs +yeL +yeL +gqE +acG +aaG +aaI +aaN +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +abo +aaS +aaS +aaS +aaS +aaS +aaS +aaS +aaS +abV +acn +aaG +acG +noK +fmF +acF +ajZ +acF +puF +acD +acD +vMP +afg +agK +alh +bJj +aMG +alj +awC +bJa +awF +feg +bgt +awF +awF +alj +bqJ +apI +apI +apI +apI +apI +apI +apI +apI +apI +apI +roh +mJy +aqj +aqj +aqj +aqj +aPZ +aPZ +kQd +uyw +aPZ +pvo +aqj +oTs +aPT +xHV +aqH +eaL +gCO +aqO +ayz +ari +bpW +lxS +aEY +aqY +bAv +ayo +pWj +shq +jcA +jcA +jcA +aAL +wFU +wFU +wFU +sgl +ayo +bqn +aSn +cSI +aqH +eaL +aro +arp +aUC +ath +aVX +eKL +tYF +byp +ppi +dNd +arr +bEF +ijA +bEK +aWT +bEW +arp +cfZ +aqH +eaL +aqI +aqK +ylo +ylo +ylo +aqo +aqo +aJW +bbi +hHn +aJW +aJW +aJW +tlD +aJS +msp +aJS +aKf +aJS +aJS +riE +bXH +bXG +rwo +rwo +rwo +rwo +rwo +vYe +rwo +rwo +rwo +rwo +btk +rwo +rwo +rwo +rwo +rwo +rwo +rwo +rwo +rwo +rwo +vYe +rwo +rwo +btk +rwo +caf +etb +kmf +caf +caf +kOv +kOv +cap +aKE +bQZ +bQZ +bQZ +bQZ +cam +bQZ +bQZ +cam +lCv +aKu +aJZ +bdS +beo +aJZ +aJZ +bdZ +aJZ +bdP +bdP +bdP +bdQ +bdQ +bdQ +kuC +bdP +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(115,1,1) = {" +aak +dKE +arc +aFw +aOe +aFw +aPQ +bln +blt +blt +ewN +blt +aGl +acG +acG +noK +acG +aaG +aaJ +aaO +aaG +aaX +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaX +aaG +bBX +aco +aaG +acG +noK +fmF +acF +ajZ +aUn +puF +acD +acD +vMP +afg +agK +kgD +lLO +gbw +alj +awC +aMJ +aBb +aBb +aBb +aBb +aBb +alj +bqJ +apI +avh +aQq +dPK +dPK +dPK +dPK +aQq +oKg +apI +roh +mJy +oTs +aqi +oJB +aqj +jAd +aqj +aqj +aqj +aqj +mJy +aqj +bQX +aPT +heo +aqH +eaL +gCO +aqO +aym +aYK +bqf +lxS +vEY +aqY +sxB +ayo +liQ +ayo +ayo +ayo +cYj +irP +ayo +ayo +ayo +wji +ayo +qou +aqY +cSI +aqH +eaL +aro +arp +hCY +atj +aVt +avz +ahB +arp +wOt +jhO +arp +bEG +vTT +atj +bES +avz +arp +meC +aqH +eaL +aqI +aqK +ylo +ylo +ylo +aqo +bhX +aJU +sVO +vhU +aJU +dui +aJW +tlD +aJS +msp +aJY +aKf +aJY +aJX +skk +aJY +aKf +jlU +aKi +aKi +bel +aKi +aKi +aKi +aKi +aKi +aKi +gtX +aKi +aKi +aKi +aKi +bdU +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKi +rRR +aKj +aKu +dwa +aKH +aOU +oKr +aKt +utS +cam +bQZ +nAu +aYs +utS +bQZ +cam +nAu +aYs +nzS +bQW +aKt +aKt +aKt +aKt +bdZ +gqV +aJZ +aJZ +bdP +bdQ +bdQ +bdQ +bdQ +aJZ +eiG +aJZ +aJZ +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(116,1,1) = {" +aak +aak +arc +aFs +aOe +aPB +arc +aak +tBh +hDl +ewN +blt +aGl +acG +acG +noK +acG +aaG +aaM +aaO +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +bBX +acp +aaG +acG +aFB +acF +adI +adI +adI +bkB +bkB +bkB +mrr +bkB +agL +agL +agL +aGn +alj +awC +aAy +awF +aUb +awF +bgt +awF +alj +bqJ +apI +aau +axp +aqa +drE +drE +drE +axB +apZ +bnl +aqm +mJy +aRd +aqi +bhN +bhV +big +bLA +bLA +bLB +aqj +mJy +bag +bNZ +aqi +heo +aqH +eaL +gCO +aqO +aym +ari +ari +lxS +vEY +aqY +bqh +ayo +liQ +ara +uFr +cEI +ayo +liQ +ara +uFr +bAA +bAA +bAA +kWe +aqY +cSI +aqH +eaL +aro +arp +arp +ahB +aTH +ahB +qoq +arp +brq +bqw +arp +bEH +bEH +aWm +bET +arp +arp +cfZ +aqH +eaL +aqI +aqK +ylo +ylo +ylo +aqo +bhY +aJX +msp +aJS +bWj +uXa +aJW +tlD +aJS +msp +uNW +aJW +aJW +aKg +aKg +aJW +aJW +aJW +plV +aKj +aKj +aKj +aKm +aKi +aKp +bcX +aKi +gtX +qoh +aKi +beS +aKi +aKi +aKi +aKi +aKi +aKi +aKi +aKp +aKj +aKj +fzd +aKq +aKt +aKt +aKu +bcC +aKu +aKt +aXY +cam +nAu +btl +aKt +aKu +bQZ +bBQ +aKu +aKt +nrd +srY +bEy +rmm +tOo +aKt +aKt +aKu +aKu +aKu +aKt +aKt +bdQ +bdQ +beg +lKy +eiG +bdS +gqV +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(117,1,1) = {" +ylo +bky +asA +aFs +aOe +aPB +asA +bky +aRN +blt +hhb +aXM +aUn +dwl +aaD +noK +acG +aaG +aaQ +aaO +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +bBX +acq +aaG +acG +noK +aOw +bkx +asP +bkA +adU +adU +adU +csI +adU +aLH +alj +aLI +alj +alj +awC +aMJ +aBb +aBb +aBb +aBb +aBb +alj +bqJ +apI +aPX +aqa +aqa +aEt +aEt +aEt +duk +aqa +asb +aqj +mJy +pYS +aqi +aqi +aqi +aqi +aqi +aPT +aPT +aGR +dVM +aPT +aPT +aqi +aRE +aqH +eaL +gCO +aqO +aqO +bAd +bAd +guA +aqO +aqY +guG +ayo +liQ +cTc +aqY +bnO +ayo +aCY +bnO +aqY +aSn +aSn +aSn +aqY +aqY +cSI +aqH +eaL +aro +nQZ +arp +arp +arp +arp +arp +arp +arp +arp +arp +arp +arp +arp +arp +arp +nQZ +cfZ +aqH +eaL +aqI +anw +aqK +aqK +aqK +aqo +bUM +aJX +msp +aJS +bWk +bWm +hmO +vyH +aJS +msp +olm +aJW +bJQ +aQl +bKt +bKB +bKC +aJW +bcq +bcq +bcq +bcr +uli +aKi +beb +aKl +aKi +gtX +aKi +aKi +aKp +aKj +bed +aKj +aKm +aKi +bel +aKp +bdK +beg +aJZ +rTj +bdP +aKt +vQA +mJm +lIu +mqL +aKu +jWB +cam +bQW +aKt +aKt +bEf +bQZ +cam +vJz +aKt +dmR +tjT +tjT +dIo +iYG +aYr +leW +xlg +cfh +jYY +tKI +aKt +bdQ +bdZ +aJZ +smP +eiG +aJZ +beo +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(118,1,1) = {" +ylo +bky +asA +aFs +aOe +aPB +asA +bky +aRN +blt +hhb +aXP +acF +roL +aaD +noK +acG +aaG +aaI +aaO +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +bBX +acn +aaG +acG +noK +aPE +bkx +adU +bkA +adU +aOz +aOz +vhg +adU +aLH +alj +aMJ +alj +alj +awC +bJa +awF +bgt +awF +bgt +bgt +alj +bqJ +apI +aFY +aqa +aqa +drE +drE +drE +sNG +kRO +ufN +xbX +toG +sbN +aqi +bhO +bns +bns +aqi +bih +buP +aqj +mJy +bPj +fTx +aqi +heo +aqH +eaL +gCO +aqO +aAC +ari +ari +lxS +bqk +aqY +qCi +ayo +liQ +cTc +aqY +cSI +aqH +eaL +aqM +kGJ +tFp +tFp +tFp +aUw +tFp +kIz +aqH +eaL +jja +oQR +oQR +oQR +oQR +oQR +oQR +oQR +xFk +oQR +oQR +oQR +oQR +oQR +oQR +oQR +oQR +jVW +aqH +eaL +aqI +oiI +aSb +oYY +aSb +mGU +vyH +aJY +msp +aJS +bWw +uAW +bWv +aJY +aJS +msp +aVc +aJW +aVp +bJS +aJX +aJX +jeE +aVH +msY +caX +bKc +bcr +bdW +aKi +aKi +aKi +aKi +gtX +aKi +aKi +aKn +beo +bdQ +bdQ +bdW +aKp +aKj +xxO +bdQ +bdQ +bdP +rTj +aJZ +aKu +bEf +aKE +aKE +srY +aKu +ygx +cam +bQW +aKt +vaw +ihN +bQZ +cam +ngx +aKt +aKt +aKt +aKt +bEf +vgl +kOv +kOv +fsS +bQZ +bQZ +bQW +aKu +aJZ +laE +jqz +bVX +bVH +xsU +aJZ +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(119,1,1) = {" +ylo +aak +arc +aFs +aOe +aPB +arc +aak +tZN +hDl +ewN +aXQ +acF +blI +aaD +dvI +acG +aaG +aaJ +aaO +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +drp +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +bBX +aco +aaG +acG +rkK +wya +fQC +rxd +xHd +rxd +mCj +aOA +iJz +rxd +dxS +qZW +uSy +qZW +qZW +oUz +taT +alj +alj +alj +alj +alj +alj +bqJ +apI +aau +axp +aqa +aEt +aEt +aEt +duk +iYR +apI +oJB +axO +xbX +bNO +xbX +pwd +xbX +bNO +xbX +xbX +xbX +toG +aqj +aYa +aPT +heo +aqH +eaL +gCO +aqO +aym +ari +qje +trV +vEY +aqY +qCi +ayo +liQ +cTc +aSn +cSI +aqH +wUx +lvR +lvR +lvR +sDx +kuU +lvR +lvR +lvR +kuU +mer +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +mer +lvR +lvR +lvR +lvR +lvR +bXG +bXH +bXH +bXK +mUA +bXH +mUA +bXH +bXH +bXH +bVI +jeE +bbh +gcW +aJS +aJS +aJS +aJS +aJS +aJS +bJW +bKw +bcr +aKk +bdU +bel +aKi +aKi +gtX +aKi +aKi +aKn +bdQ +bdQ +bcD +aKl +usK +bdQ +bdQ +bdQ +bdQ +bdP +eiG +bdZ +aKu +gdO +nhG +kOv +kOv +bce +kOv +iqp +bQW +aKu +hWW +bQZ +nhG +iqp +bQW +aKu +hvn +tOo +aKt +lGj +utp +bQZ +nDc +qtI +mqK +mqK +xfe +aKu +beo +eiG +bdS +bdS +bdZ +aJZ +bdP +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(120,1,1) = {" +ylo +bky +asA +aFs +aOe +aPB +asA +bky +aRN +kPC +ewN +aXP +acF +roL +aaD +noK +acG +aaG +aaR +aaO +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +abX +acr +aaG +acG +noK +aPE +bkx +adU +bkA +adU +aOz +vhg +aOz +adU +aLH +alj +aMJ +alj +alj +awC +alj +rZU +lLO +aJh +lLO +lLO +lLO +msu +apI +cQR +aqa +aqa +aqa +qIr +upA +duk +hBo +apI +dYJ +mJy +oTs +aqi +bQe +mJy +blb +aqi +bqZ +aqj +aqn +mJy +aqj +pYS +aPT +heo +aqH +eaL +gCO +aqO +aym +ari +aqP +ari +vEY +aqY +kSt +ayo +wji +cyX +aSn +cSI +aqH +eaL +aqH +aqH +aqH +aqH +eaL +eqM +eqM +aqH +eaL +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aqH +aKf +aJS +aJS +aJS +msp +aJS +tZp +aJS +aJS +aJS +bVJ +mFE +xzX +taL +bXH +bXH +qMT +aJS +aJS +aJS +bJT +bWp +bcr +bdY +bed +aKj +aKm +idU +gtX +aKi +aKi +aKn +bdP +bdP +aKk +aKi +aKn +bdP +bdP +bdQ +bdQ +bdQ +diD +aJZ +aKu +bEf +aKE +aKE +nAu +aKu +wPz +cam +bQW +aKu +gtI +vFf +bQZ +vgl +qlt +pAB +fcd +aYi +aKt +xFK +aKt +bQZ +aKt +xFK +aKt +wop +trU +aKt +aJZ +eiG +nFc +aJZ +bdQ +bdP +bdP +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(121,1,1) = {" +ylo +bky +asA +aFs +sBH +aPB +asA +bky +aRN +blt +ewN +sjR +aUn +qZj +aaD +noK +acG +aaG +aaV +aaO +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +bBX +acs +aaG +acG +noK +aOw +bkx +asR +bkA +adU +adU +mLR +adU +adU +aLH +bcO +aNJ +alj +alj +awC +alj +bqJ +agK +agK +aEq +aEq +aEq +agK +apI +ryn +aqa +aqa +hKc +tav +aqa +duk +hBo +apI +bhT +mJy +aRd +aqi +bQf +mJy +bQp +aqi +blj +aqj +aRm +guq +aqj +aRd +aqi +heo +aqH +eaL +gCO +aqO +ayz +ari +bpW +ari +aEY +aqY +qCi +ayo +ayo +cTc +aSn +cSI +aqH +eaL +aqI +aqI +aqI +aqI +vyY +aqI +aqI +rWE +nUz +aqH +aqI +aqI +aqI +snA +aqI +aqI +aqI +aqH +aqH +aqH +jai +ybv +ybv +ybv +ybv +ybv +xbu +aqH +aqH +aqH +aqI +aqI +aSb +oYY +aSb +aKf +uRw +aJY +aJS +msp +bWb +bWj +bWu +aJY +aJS +msp +aVc +aJW +aVp +bJT +aJX +aJX +uNW +aVI +ozo +bKv +bKx +bcr +bdS +gqV +bdQ +aKk +aKi +gtX +aKi +aKi +aKn +aJZ +bdQ +bdy +aKj +bcK +bdP +bdR +bdR +bdQ +bdQ +rTj +bdP +aKt +rGc +yji +ipE +wfL +aKu +jWB +cam +bQW +aKt +tfP +aYs +ksk +ksk +njL +aKu +lmx +lCv +aKt +iOL +aKu +bQZ +aKu +hjq +aKt +aKt +aKt +aKt +bdP +rTj +aJZ +bdQ +bdQ +bdQ +bdR +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(122,1,1) = {" +aak +aak +arc +aFs +wjb +aPB +arc +aak +gze +blt +ewN +blt +aGl +acG +acG +noK +acG +aaG +aaY +aaO +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +bBX +act +aaG +acG +aFB +acF +adI +adI +adI +ael +awi +ael +awi +ael +agL +agL +agL +xWH +alj +awC +alj +bqJ +agK +alF +hqA +hqA +hqA +kxs +apI +aau +axp +aqa +aPS +aPS +aPS +duk +apZ +apI +aqm +mJy +pYS +aqi +bQg +mJy +bQq +aqi +aYN +aqj +bQL +bad +aqj +pYS +aqi +bqs +aqH +eaL +gCO +aqO +aym +ari +bqf +hBA +vEY +aqY +qCi +ayo +ayo +cTc +aSn +cSI +aqH +eaL +aqI +aSb +gvi +anw +anw +anw +aiZ +aqI +eaL +eqM +aqI +aiZ +anw +anw +anw +snP +gPo +lgx +lgx +lgx +xRb +nxv +nde +crC +nde +iQY +hTr +lgx +lgx +lgx +ybv +anw +aqK +aqK +aqK +aqo +bXI +aJX +aJS +msp +nJx +bWn +eEJ +aJV +uRw +qqY +mmy +aJW +bJR +bJU +bKj +bKk +bKl +aJW +bcq +bcq +bcq +bcr +bdS +aJZ +bdQ +aKk +aKi +gtX +aKi +aKi +aKn +beg +bdP +bdP +bdQ +bdQ +bdQ +bdR +bdP +bdQ +bdR +kuC +bdR +aKt +aKt +aKt +aKt +aKt +aKt +bEf +hoh +fUp +aKt +aKt +aKt +aKt +aKt +aKu +aKt +tdH +aKu +aKt +aXY +qQe +bQZ +qQe +aYi +aKt +bdS +bdP +bdP +aJZ +rTj +bdP +bdQ +bdQ +bdQ +bdR +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(123,1,1) = {" +aak +dKE +arc +aFw +wjb +jyK +aPQ +bln +blt +blt +ewN +blt +aGl +acG +acG +noK +acG +aaG +aaJ +aaO +aaG +aaX +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaX +aaG +bBX +aco +aaG +acG +noK +fmF +adI +blN +adI +aUp +aGk +ahH +aQa +mDe +agL +ajg +hqA +faT +prB +awC +alj +miU +agK +bnm +alj +ouk +bqM +buz +apI +dSc +aqa +aqa +hNL +hNL +hNL +sNG +kRO +ufN +xbX +toG +pYS +aqi +bQh +ntx +bQr +aqi +bpM +aqj +bQM +aSS +aqj +pYS +aqi +heo +aqH +eaL +caA +aqO +ayD +noy +noy +noy +gnC +aqY +gQL +aqZ +aqZ +tGG +aqY +sPI +aqH +eaL +aqI +hOV +anw +anw +aSa +anw +anw +aws +eaL +eqM +aSb +anw +anw +aSa +anw +anw +uIX +aqI +aJu +aqI +pSc +aSb +anw +anw +anw +aSb +aqI +aqI +aJu +aqI +pgC +anw +ylo +ylo +ylo +aqo +bVw +aJX +aJS +msp +bWx +ouM +aJW +aJW +bbj +nuF +gLs +gLs +gLs +gLs +gLs +gLs +gLs +aJW +bdx +aKh +aKh +aKh +bcS +bdJ +bdQ +aKk +aKi +gtX +aKi +bdU +aKn +aJZ +bem +bdQ +bdQ +bdQ +bdx +aKh +aKh +aKh +bcL +dzV +aKt +aKt +bjg +bji +bpz +bsX +aKu +jWB +cam +cZw +aKt +gvs +jRw +hiw +aKu +aKi +aKi +gtX +aKi +aKt +vcs +hUR +mqK +hUR +xfe +aKt +beg +rUq +jqz +eNM +bVH +bdQ +bdQ +bdQ +bdP +bdP +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(124,1,1) = {" +aak +dKE +arc +aFs +aOe +aPB +arc +aak +qEk +blt +hMR +wpk +oqs +yeL +yeL +gqE +acG +aaG +aaR +aaP +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +abp +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +abY +acr +aaG +acG +noK +fmF +adI +blN +adI +bJx +adU +bZy +adU +bZz +agL +ayC +alj +alj +mUo +aAd +qZW +qZW +amp +qZW +qZW +oUz +boV +bOc +apI +phl +aqa +aqa +aPS +aPS +aPS +duk +aqa +asb +aqj +mJy +pYS +aqi +bQi +aqj +bQr +aqi +bpN +aqj +aqj +aqj +aqj +pYS +aqi +heo +aqH +eaL +gCO +aqO +aqO +aSm +aSm +aSm +aqO +aqY +aqY +aSn +aSn +aqY +aqY +cSI +aqH +eaL +aqI +mCD +aqK +ylo +aSa +ylo +aqK +aSb +eaL +aqH +aSb +aqK +ylo +aSa +ylo +anw +aqI +aqQ +nJt +aqX +aqI +anw +anw +ylo +anw +anw +aqI +aqQ +nJt +aqX +aqI +anw +ylo +ylo +ylo +aqo +bVQ +aJV +uRw +qqY +aJV +mmy +aJW +bUU +cec +rfQ +gLs +bUC +bYS +gLs +hqX +hqX +gLs +bdx +fSA +aKi +var +aKi +aKi +aKo +aKh +aKl +aKi +gtX +aKi +aKi +aKn +bdZ +aJZ +bdQ +bdQ +bdx +bcH +bcI +bel +aKi +aKn +eiG +aKu +btv +ihN +aKE +aKE +srY +aKu +ygx +cam +srY +aKt +qQg +qQg +qQg +aKu +aKi +qoh +gtX +qoh +aKt +aKu +aKt +aKu +aKt +aKu +aKt +bdP +rTj +beo +aJZ +beg +bdQ +bdQ +bdP +bdP +bdP +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(125,1,1) = {" +aak +aak +arc +aFs +aOe +aPB +arc +bky +blr +blt +blt +blt +aGl +acG +acG +noK +acG +aaG +aaG +abc +abh +iem +abk +abm +abh +iem +abu +abc +abh +abz +abC +abc +abh +iem +abu +abc +aca +acf +abu +abc +aaG +aaG +acG +noK +fmF +adI +blN +adI +iLw +vKa +mNe +uKV +mEG +agL +aGh +nen +awF +aMH +awF +mwa +aGC +agK +boL +kkI +awC +bqK +bOd +apI +aau +axp +aqa +hNL +hNL +hNL +orz +iYR +bnl +oJB +mJy +pYS +aqi +bQj +aqj +blc +aqi +bll +bLx +aqj +aqj +bLx +bOb +aqi +heo +aqH +eaL +aqM +tFp +tFp +tFp +tFp +tFp +tFp +tFp +tFp +tFp +tFp +tFp +tFp +kIz +aqH +eaL +aqI +aSH +aqK +ylo +aSa +ylo +aqK +aiZ +eaL +eqM +aiZ +aqK +ylo +aSa +ylo +aqK +aqI +aqQ +aWf +aqX +aqI +aqK +ylo +ylo +ylo +aqK +aqI +aqQ +aWf +aqX +aqI +aqK +ylo +ylo +ylo +aqo +aqo +aJW +bbj +nuF +aJW +aJW +aJW +bVS +aJS +rfQ +gLs +bQN +bQv +gLs +hqX +bQt +gLs +aKk +mlr +btk +rwo +rwo +rwo +vEK +rwo +rwo +rwo +fYL +aKi +aKi +aKn +aJZ +beo +bdQ +bdQ +aKk +bdU +aKi +qoh +aKp +bdK +eiG +aKu +bjd +bQZ +bQZ +bQZ +bQZ +bAw +bQZ +hoh +kOv +reN +nTx +hkn +aYw +aKt +xtF +jRl +fYL +aKi +bcM +aKi +aKi +aKi +aKi +rzy +bdR +bdP +eiG +aJZ +spU +bdQ +bdQ +bdQ +beo +aJZ +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(126,1,1) = {" +ylo +aak +awr +asA +asA +asA +aVo +bky +qYj +uSi +uSi +uSi +acF +xxF +agn +edO +acG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +acG +noK +blJ +adI +adI +adI +adI +adI +aNI +adI +adI +agL +alh +oAa +nen +qVe +awF +ejk +bqJ +agK +boP +alj +awC +brQ +buA +apI +apO +aQw +rpP +rpP +rpP +rpP +aQw +dXy +apI +roh +mJy +aRd +aqi +tCi +nxZ +bQs +aqi +bJw +bMv +bNQ +bNQ +bpn +vqP +aqi +qKZ +aqH +qqW +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +lvR +qRv +aqI +ggU +aqK +ylo +aSa +ylo +aqK +aSb +eaL +aqH +aSb +aqK +ylo +aSa +ylo +aqK +aqK +aqK +anw +aqK +aqK +aqK +ylo +ylo +ylo +aqK +aqK +aqK +anw +aqK +aqK +aqK +ylo +ylo +ylo +ylo +aqo +caT +cec +eTg +bYR +bWo +aJW +bVU +uOe +bVL +ygy +bVV +bUY +buU +bVT +bQt +gLs +bdW +aKi +elR +aKi +jlL +aKi +aKp +yfH +aKm +aKi +gtX +aKi +aKi +aKn +aJZ +bdQ +bdQ +vza +pnQ +geN +btk +iTW +ccq +jqz +iBg +aKu +bje +bQZ +nhG +kOv +kOv +kOv +kOv +iqp +nAu +aKt +qQg +dFL +dFL +aKu +aKi +aKi +flB +rwo +rwo +rwo +rwo +mrb +rwo +eDM +pgO +fwq +eql +bdP +bdQ +bdQ +bdQ +aJZ +aJZ +aJZ +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(127,1,1) = {" +ylo +aak +wgY +wgY +wgY +wgY +wgY +aak +aVY +aVY +aVY +aYh +aan +aan +aan +iul +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +acG +noK +ybl +adI +blO +buN +akL +rOH +csI +bOS +bOT +agL +alh +awF +oAa +qVe +awF +pAo +bqJ +agK +boU +gbw +awC +rZU +msu +agU +agU +agU +agU +agU +apI +apI +apI +apI +apI +roh +mJy +pYS +aqi +aqi +qIU +qIU +qIU +qIU +qIU +qIU +qIU +qIU +qIU +qIU +aqI +aqI +aqI +aqI +aqI +aqI +aqI +dvn +qaB +qaB +wui +aqI +aqI +aqI +aqI +aqI +aqI +aqI +aqI +aqI +nQZ +anw +aoX +aoX +aoX +aoX +aJK +xmV +aJK +pzH +aoX +aoX +aoX +aoX +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aqo +bUP +aJS +msp +aJS +aJS +bUI +caV +riE +bVM +bUT +bVW +bUZ +buU +bYT +hqX +gLs +bdW +bdU +gtX +aKi +aKp +aKj +bcU +bdQ +bcY +aKi +gtX +aKi +aKi +aKn +bdQ +bdQ +bdQ +bdQ +bdS +bdY +bcJ +bcK +bdQ +bdQ +bdP +aKu +bjf +utS +aKE +aKE +nAu +aKu +wPz +cam +bQW +aKt +jBC +jRw +jRw +aKu +qoh +aKi +gtX +aKi +bcM +aKi +aKi +bdU +aKi +rzy +bdR +bdP +rTj +bdP +bdP +bdQ +gqV +aJZ +aJZ +xsU +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(128,1,1) = {" +ylo +aSa +ylo +ylo +blY +ylo +ylo +aak +bky +bky +bky +bky +aak +ylo +aan +xdB +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +yeL +hRQ +yeL +blL +rxd +rxd +rxd +dSi +nXD +adU +aFV +agL +alh +awF +tXq +qVe +awF +hCm +fyq +ang +ang +ang +amX +ang +ang +ang +fJm +mdI +iNl +hDF +msB +cRx +gSC +hDF +ang +aqm +mJy +pYS +bii +bii +qIU +bQt +hqX +qIU +bQH +hqX +qIU +bQV +hqX +qIU +aPt +cjs +ybv +ybv +ybv +qTd +aqI +kOd +aSb +mCD +anw +anw +anw +anw +anw +anw +anw +aoX +aoX +aoX +aoX +aoX +aoX +bWS +ayG +bWZ +fXA +sXg +aIM +egJ +bXo +bXq +bXr +aoX +aoX +aoX +aoX +aoX +aoX +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aqo +bUQ +aJS +tZp +bUL +aJW +aJW +aJW +caW +aJW +aJW +aaa +aJW +gLs +gLs +gLs +gLs +bdy +bed +qcx +aKj +sZg +bdQ +bdQ +bdQ +aKk +aKi +gtX +aKi +aKi +aKn +bdS +bdQ +bdQ +bdQ +bdQ +bcD +hkp +bdJ +bdR +bdQ +bdP +aKt +aKt +bjh +bRc +bRd +bRe +aKu +jWB +fzy +pCh +aKt +aKt +aKu +aKu +aKt +bcM +bcM +gLM +bcM +bcM +aKi +bdU +bdU +aKp +bcK +bdQ +bdQ +ooX +jqz +jqz +jqz +bVE +tHy +aJZ +bdP +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(129,1,1) = {" +ylo +aSa +ylo +aSa +bmB +aSa +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +aan +aOs +buJ +vNe +vNe +vNe +vNe +vNe +vNe +vNe +xZn +vNe +vNe +vNe +vNe +vNe +vNe +vNe +vNe +xZn +vNe +vNe +vNe +vNe +vNe +vNe +vNe +vNe +buJ +vNe +vNe +adI +svX +adU +bOQ +mLR +bOR +hsr +ovP +agL +ayC +awF +wSz +qVe +awF +xIJ +bqJ +ang +aJA +rtr +awT +arP +aLa +ang +aMK +aMK +aMK +aMK +aMK +aMK +aMK +aMK +obW +aqj +mJy +pYS +aPZ +aPZ +qIU +bQt +hqX +qIU +bQH +hqX +qIU +bQV +hqX +qIU +bQy +cjs +mFT +rUQ +tfi +reh +aqI +kOd +aSb +aTd +aqK +ylo +ylo +ylo +qIU +qIU +qIU +qIU +aFT +bVv +bWy +bWH +aIA +bWT +aIT +aIT +aJv +sXg +aIM +aJv +aIT +aIT +egJ +aIA +bXs +bXs +bXx +bXv +aoX +aoX +aoX +aoX +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aqo +bWU +bUV +bqG +bUS +caU +bVE +bVX +bVH +bdS +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdP +lKy +aJZ +fue +bdP +bdQ +bdQ +bdQ +bdZ +aKk +bel +gtX +aKi +aKi +aKo +aKh +bcS +aKh +beE +beE +aKl +elR +aKn +bdR +bdQ +bdP +bdP +aKt +aKt +aKt +aKt +aKt +aKt +aKu +caq +aKu +aKt +bdP +bdP +aJZ +aKk +aKi +aKi +gtX +aKi +aKi +aKi +aKi +aKi +aKn +bdQ +bdQ +bdP +bdP +aJZ +bdZ +aJZ +diD +aJZ +beg +bdQ +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(130,1,1) = {" +ylo +aSa +aSa +aSa +bmB +aSa +aSa +aSa +ylo +ylo +ylo +ylo +ylo +ylo +aan +aan +aan +aan +ayO +aaD +aaD +aUe +aan +aan +aan +aan +aan +blH +aaD +aaD +buK +aan +aan +aan +aan +aan +ayO +aaD +aaD +aUe +aan +aan +aan +aan +aan +aeb +boT +ahL +aWu +bCJ +aXm +bCJ +mEG +agL +aGh +awF +uqb +qVe +awF +pBJ +aGD +ang +aEV +aou +rmc +aou +aou +obW +aMK +hDF +fJm +aqt +aqt +aqt +aqt +aqt +aqt +oJB +mJy +vYY +bMu +bNM +qIU +aTv +bYm +qIU +aUN +hqX +qIU +bqo +hqX +qIU +ttJ +cjs +exY +aqI +aqI +reh +aqI +kOd +aSb +aTg +aqK +ylo +ajq +ajq +qIU +hqX +bqp +buU +bDN +aIM +aIM +rSR +bbd +fXA +aIM +aIM +aIM +bWL +hun +hun +hun +hun +hun +pcu +hun +hun +deG +fQl +fRR +bXA +bXC +aoX +ajq +ajq +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aqo +qIU +bQv +gLs +bQN +gLs +dzV +bdS +bUJ +bUK +bdQ +bdQ +bdQ +bdQ +bdQ +bdP +bdP +bdP +beI +rTj +bdQ +bdQ +bdQ +bdQ +tNp +upr +rwo +fYL +aKi +aKi +aKi +aKi +ezR +aKi +ecX +rwo +rwo +gnR +bew +bdQ +bdQ +bdQ +bdP +aJZ +beh +bei +bdP +bdP +aKL +aKQ +car +cia +aKL +bdP +bdZ +gqT +upr +rwo +rwo +fYL +jIm +aKi +var +idU +aKp +bdK +bdQ +bdQ +bdQ +bdQ +aJZ +aJZ +aJZ +suf +aJZ +bdQ +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(131,1,1) = {" +ylo +ylo +ylo +aSa +bmB +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +aan +aHs +aaD +aaD +aUA +aan +ylo +aSa +ylo +aan +bpP +aaD +aaD +blC +aan +ylo +aSa +ylo +aan +aHs +aaD +aaD +aUA +aan +ylo +ylo +ylo +ylo +aeb +aeb +aeb +bmZ +bmZ +bmZ +aeb +aeb +aet +ayC +alj +alj +rKy +alj +alj +fyq +ang +anW +aou +aMK +aou +aWv +afa +afa +afa +afa +aht +anq +bas +aUM +aUT +aqt +buB +bPV +aqt +aqt +aqt +qIU +bQv +bQv +qIU +bQv +bQN +qIU +bQv +bQN +qIU +aPC +cjs +pJY +aqI +aqI +lBx +aqI +kOd +aSb +ggU +ajq +ajq +ajq +bhn +gLs +aSW +hqX +gLs +bVb +aIM +dYk +uGQ +wDi +xHM +hun +hun +hun +ebq +aIM +aIM +aIM +aIM +aIM +bbg +aIM +aIM +aIM +aIM +aIM +bXB +bXD +aIA +bhn +ajq +ajq +ajq +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +qIU +bYQ +hqX +hqX +gLs +dzV +aJZ +bdQ +bdQ +bdQ +bdQ +rUq +fwq +jqz +jqz +jqz +fwq +fwq +paH +bdP +bdR +bdQ +bdQ +bdQ +aKk +aKi +gtX +aKi +aKi +aKp +aKj +bec +aKi +gtX +aKi +aKi +aKi +rzy +bdQ +bdQ +bdQ +bdP +bdP +bdP +bdP +bdP +bdS +aKL +aKQ +car +cia +aKL +bdS +bdS +bdS +bdY +aKm +ezR +gtX +jlL +bdU +aKi +aKp +bdK +bdQ +bdQ +bdQ +bdQ +hNI +bdP +lKy +aJZ +rTj +bdP +bdQ +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(132,1,1) = {" +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +aSa +aan +aan +tkO +tkO +aan +aan +aSa +aSa +aSa +aan +aan +tkO +tkO +aan +aan +aSa +aSa +aSa +aan +aan +tkO +tkO +aan +aan +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aet +aHm +lLO +lLO +lLO +lLO +lLO +iEY +ang +aJE +aRX +aRX +aRX +aXt +afa +ylo +aSa +ylo +aht +aqD +aqE +aAt +eon +tZD +eon +bPW +wwi +bPQ +pwu +bhL +bil +bid +bin +biC +bjI +bnE +bpH +aqv +eqz +aSb +cjs +ggU +aqI +gnO +xaQ +qaB +hvj +nQZ +gvi +ajq +bhn +bhn +bhn +gLs +aCa +hqX +bQN +bVm +bVx +aIM +bVc +aIA +bWT +bWX +bXa +bXc +sXg +aIM +bXc +bXa +bXd +fxM +aIA +tta +bXu +bXw +bXz +tta +tta +bXE +aIA +bhn +bhn +bhn +ajq +ajq +ajq +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +qIU +hqX +aCa +bVO +gLs +kuC +bdR +bdQ +aJZ +bev +aKh +iHo +uTf +xsU +aJZ +bdQ +bdQ +bdP +bdP +bdP +bdR +bdP +bdQ +bdQ +aKk +aKi +gtX +aKi +aKi +aKn +bdQ +vhZ +aKm +gFh +bdU +bdU +aKp +tpF +bdR +bdQ +beo +bdP +aJZ +aKy +aKy +aKy +aKy +aKL +boF +car +boH +aKL +aKy +aKy +aKy +aKy +bdY +aKm +gtX +bdU +bdU +aKp +bdK +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdP +bdP +rTj +bdQ +bdQ +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(133,1,1) = {" +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aet +aet +abe +abe +abe +abe +abe +aet +afa +afa +afa +afa +afa +afa +afa +aSa +aSa +aSa +aht +aYb +azi +aqx +bjk +aqt +bPR +bPX +eon +eon +aAt +bPZ +bQx +bQB +bQE +bQx +aqx +aqx +aqx +qUT +aPm +bQy +anw +nQZ +aqQ +exY +anw +ajq +ajq +ajq +ajq +ajq +bhn +bhq +bhc +gLs +gLs +gLs +gLs +bJY +aIA +bUO +bWJ +aIA +aIE +aIF +bXb +bXd +bWL +aMp +sRe +bXp +tta +aJH +aIA +aLq +bCQ +aIA +aIA +bco +bco +aIA +aIA +bhn +bhn +bhn +bhn +bhn +ajq +ajq +ajq +ylo +ylo +ylo +ylo +ylo +ylo +qIU +qIU +gLs +gLs +gLs +kuC +bdS +bdP +bdx +aKl +idU +gtX +bew +aJZ +bdP +bdQ +bdQ +bdQ +bdQ +bdP +bdR +bdR +bdR +bdQ +aKk +aKi +gtX +aKi +aKi +aKn +bdP +bdQ +bcE +gtX +aKi +aKp +xxO +bdR +bdP +bdS +aJZ +bdP +aKy +aKy +bsP +bsP +bsY +aKL +xGd +car +aYn +aKL +bto +bsP +bsP +aKy +aKy +bdy +tFG +bdU +aKp +bdK +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdR +kuC +bdQ +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(134,1,1) = {" +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aht +aYq +aAm +rmI +aqu +aqt +bPS +hCG +tnS +eBx +sUR +aqx +nNW +kcb +sUR +aqx +nNW +ohV +rmI +bpL +eqz +cjs +cjs +cjs +cjs +cjs +qAl +qAl +bhc +bhe +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +fbe +aIA +bWz +aIA +aIA +aIA +aIA +aSv +bXe +kPH +aIM +bXn +aTD +aIA +aIA +aIA +aoS +aJO +aIA +bgn +bdq +bdq +bdq +bdq +bgn +bgn +bhn +bhn +bhn +bhn +bhn +ajq +ajq +ylo +ylo +ylo +ylo +ylo +ylo +aqL +bdR +bdZ +aJZ +eiG +bdP +bdP +aKk +bdU +aKi +rRR +bdK +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdP +bdR +bdP +bdP +aKk +aKi +gtX +bdU +aKi +aKn +bdP +bdQ +pWR +gEU +yfH +sZg +bdQ +bdQ +bdR +bdP +bdP +bdP +aKy +bsP +aKG +vTr +ker +bko +rCE +dmP +rCE +bko +ker +kdA +aKG +bsP +aKy +beg +uRA +aKj +wkm +bdQ +bdQ +bdQ +bdQ +aJZ +bdS +bdS +bdQ +bdQ +bdQ +bdR +kuC +bdQ +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(135,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +qIU +bQN +bQv +bQN +qIU +aht +aht +aht +aqt +aqt +aqt +bhR +aqt +aqt +aqt +bhR +aqt +aqt +aOT +arv +aQC +aPc +aQC +qAl +qAl +qAl +qAl +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhp +bhc +bhs +bhc +bhc +fbe +aIA +aIM +bWK +bVg +bWQ +aIA +bWT +aJv +sXg +aIM +aJv +egJ +fRR +fRR +fRR +fRR +fRR +aIA +bgu +aen +aen +aen +aen +bdn +bdq +bdq +bdq +bgn +bhn +bhn +bhn +ajq +ajq +ajq +ylo +ylo +ylo +ylo +aqL +aqL +bdP +tNp +jmU +fwq +jqz +hqU +osY +osY +tvf +bdQ +bdQ +bdQ +bdQ +bem +bdQ +bdQ +bdQ +bdQ +bdR +bdP +bdP +aKk +aKi +gtX +aKi +aKi +aKn +aJZ +bdS +aJZ +rTj +bdQ +bdQ +bdQ +bdQ +bdP +bdP +aJZ +aJZ +aKy +aKy +bsP +bsP +bsY +aKL +aKR +car +gcs +aKL +bto +bsP +bsP +aKy +aKy +aJZ +eiG +smP +bdQ +bdQ +bdQ +bdQ +ukb +bdS +nln +beg +aJZ +bdQ +bdP +bdP +suf +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(136,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +qIU +aCa +bYQ +bUC +qIU +ylo +ylo +aht +bhU +bif +fyy +aqx +aAp +aqt +bio +aqx +qUT +aqt +aQV +aQO +aQO +aQQ +aQC +qAl +qAl +bhc +bhc +bhc +bhn +bhn +bhn +bhc +qgt +enU +enU +enU +enU +enU +enU +uOi +bKa +bWA +xzI +aIM +rSR +bbd +fXA +aIM +sXg +krK +krK +aIM +kHk +aIM +aIM +aIM +jjN +aIA +bgu +aen +aen +aen +aen +bJE +aen +aen +aen +bdn +bgn +bgn +bhn +bhn +bhn +ajq +ajq +ylo +ylo +ylo +ylo +aqL +beg +bdP +bdP +bdQ +aJZ +eiG +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdT +beE +beG +bdQ +bdQ +bdQ +bdQ +bdP +aJZ +aKk +aKi +gtX +aKi +aKi +aKn +aJZ +beo +aJZ +suf +aJZ +bdS +aJZ +bdQ +aJZ +aJZ +bdZ +aJZ +aJZ +aKy +aKy +aKy +aKy +aKL +aKQ +car +cia +aKL +aKy +aKy +aKy +aKy +aJZ +lKy +eiG +beo +bdQ +bdQ +bdQ +beo +bdx +bcS +dcU +lVF +hGf +jqz +jqz +fwq +paH +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(137,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +aSa +aSa +aSa +aSa +aSa +ylo +ylo +ylo +ylo +aSa +aSa +aSa +aSa +aSa +ylo +ylo +ylo +ylo +aSa +aSa +aSa +aSa +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +aSa +aSa +aSa +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +qIU +qIU +aSV +qIU +qIU +ylo +ylo +aht +aht +bhM +aqx +aqx +bhZ +aqt +bip +aqx +bQP +aqt +aPb +aQW +aQO +aQQ +aQC +qAl +bhc +bhp +bhc +bhn +bhn +bhn +bhn +bhn +fbe +bhr +bhc +bhc +bhc +bhc +bhr +bhn +aIA +bWB +huK +qlh +qlh +wDi +xHM +hun +bWR +bXl +hun +hun +hun +hun +bWA +aIM +caH +aIA +bgu +aen +aen +aen +aen +aen +aen +aen +aen +aen +bdn +bdq +bdq +bdq +bdq +bgn +ajq +ajq +ylo +ylo +ylo +aqL +aqL +bdQ +bdQ +bdQ +bdP +ooX +kCm +bdQ +bdQ +bdQ +bdT +bdV +beD +beF +beH +beG +bdQ +bdQ +bdQ +bdQ +bdS +aKk +aKi +gtX +aKi +aKi +beT +aKh +aKh +aKh +iHo +aKh +aKh +aKh +aKh +aKh +aKh +bdJ +aJZ +lKy +bdS +beo +aJZ +aJZ +aKL +gfM +xhx +kJk +aKL +bdS +aJZ +gqV +aJZ +aJZ +aJZ +eiG +bdP +bdQ +bdQ +bdZ +bdx +aKl +bdz +wSg +bdM +aKo +bcV +aJZ +beg +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(138,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blX +blU +blU +blU +bmv +bmv +bmv +bmv +bmv +blU +blU +blU +blU +bmv +bmv +bmv +bmv +bmv +blU +blU +blU +blU +bmv +bmv +bmv +bmv +bmv +blU +blU +blU +blU +blU +blU +blU +blU +blU +blU +blU +blU +blU +blU +blU +bmv +bmv +bmv +bmv +bmv +blU +blU +blU +blU +blU +blU +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +qIU +aOQ +qIU +ylo +ylo +ylo +ylo +aht +bik +bQl +bUD +bim +aqt +bQQ +bQJ +uOz +aht +aQz +aQz +aQz +arv +aQC +bhc +bhc +bhc +bhn +bhn +bhn +bhn +bhn +bhn +fbe +bhc +bhc +bhp +bhe +bhc +bhn +bhn +aIA +bWC +qJO +gLs +gLs +gLs +aIE +aJk +oFq +izt +aJk +kuq +oFq +aJv +sXg +aIM +caI +aIA +bgu +aen +aen +aen +aen +aen +aen +cwF +aen +aen +aen +aen +aen +aen +aen +bdn +bdq +ajq +ajq +aSa +aSa +aSa +aqL +bdQ +bdQ +bdQ +bdQ +bdP +hDO +beE +aKh +aKh +aKl +aKi +bel +aKi +bdU +aKn +aJZ +bdQ +bdQ +bep +bei +aKk +bdU +gtX +aKi +aKi +aKi +aKi +aKi +aKi +gtX +aKi +bel +aKi +aKi +aKi +aKi +aKn +beg +smP +aJZ +aJZ +bem +bdS +aKL +tJY +car +kID +aKL +aJZ +bdZ +aJZ +bdS +bdS +bdS +eiG +bdQ +bdQ +bdQ +aJZ +vzK +bcR +bdC +gre +bcT +bdM +aKn +aJZ +bdQ +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(139,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aAo +ylo +ylo +ylo +ylo +ylo +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +ylo +ylo +ajq +bhc +bhc +bho +bhc +bhn +bhn +bhn +bhn +bhn +bhn +bhc +fbe +bhc +bhc +bhc +bhc +bhn +bhn +bhn +aIA +bWD +bWM +bQN +bUC +gLs +aIA +aIA +gra +aJL +aIA +aIA +aIA +aJK +xmV +aJK +hlM +aIA +bgu +xzW +cZu +cZu +cZu +cZu +cZu +xFN +cZu +cZu +cZu +cZu +cZu +cZu +cZu +cZu +cZu +nbS +ajq +ajq +aSa +aSa +aqL +aqL +beg +beg +bdQ +bdQ +wCI +aKi +aKi +aKi +aKi +bdU +mti +idU +aKp +glr +aJZ +aJZ +bdQ +bdQ +bdQ +aKk +aKi +gtX +aKi +aKi +aKi +aKi +aKi +aKi +gtX +aKi +aKi +aKi +aKi +aKi +aKi +aKn +aJZ +aJZ +aKy +aKy +aKy +aKy +aKL +boF +car +boH +aKL +aKy +aKy +aKy +aKy +bdS +bdS +dzV +bdQ +bdQ +bdQ +gqV +aKk +bdA +nbT +gre +bdO +bdI +aKn +bdQ +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(140,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +bhc +bhc +bhc +bhc +bhn +bhn +bhn +bhn +bhc +bhc +bhc +fbe +bhc +bhc +bhn +bhn +bhn +bhn +bhn +aIA +bWE +bWN +buU +bVN +gLs +bJB +aTe +lVb +mCe +aTe +bJP +aIA +aJv +sXg +aIM +aJv +aIA +bgu +mTa +bde +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bgV +mTa +aen +ajq +ajq +aSa +aSa +aqL +aJZ +beg +aJZ +aJZ +kow +rwo +rwo +rwo +jba +rwo +vYe +jba +nwj +jqz +bVE +eNM +fwq +jqz +jqz +upr +rwo +vYe +rwo +rwo +rwo +rwo +rwo +rwo +vYe +rwo +rwo +rwo +rwo +xoy +bdU +aKn +aJZ +aKy +aKy +bsP +bsP +bsY +aKL +xGd +car +tCH +aKL +bto +bsP +bsP +aKy +aKy +bdS +rTj +bdQ +bdQ +bdQ +beg +aKk +bdB +bdG +siu +bdI +aKp +bea +bdQ +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(141,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +bhc +bhc +bhc +bhc +bhn +bhn +bhn +bhe +bhp +bhc +qgt +enU +kCb +bhc +bhn +bhn +bhn +bhn +bhn +bhn +gLs +bQv +bQv +gLs +gLs +gLs +bJC +bJG +aIM +sXg +bJM +aBR +aJl +nUi +pmf +aIM +aIT +aIA +bgu +mTa +bdf +bgB +bgB +bgC +bgC +bgC +bgC +bgB +bgC +bgC +bgC +bgC +bgB +bgB +bgu +mTa +aen +aen +ajq +ajq +aSa +aqL +aqL +aJZ +bdZ +aJZ +aKk +aKi +aKp +aKj +aKj +aKj +aKm +ben +bdK +aJZ +eiG +bdS +bdP +bdP +aJZ +aKk +aKi +aKi +bel +aKi +aKi +bdU +aKi +aKi +aKi +aKi +aKi +aKi +aKi +gtX +aKi +aKn +bdZ +aKy +bsP +aKG +vTr +ker +bko +rCE +ldS +rCE +bko +ker +kdA +aKG +bsP +aKy +bdP +rTj +bdP +bdQ +bdQ +bdQ +bdy +aKm +bdU +rRR +aKj +bcU +bdQ +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(142,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +bhc +bhc +bhe +bhc +bhc +bhn +bhn +bhn +bhc +bhc +lmV +nFy +bhc +bhc +bhc +bhn +bhn +bhn +bhn +bhn +bhn +gLs +bDM +bUW +hqX +hqX +gLs +bKd +aIT +aIM +sXg +aIT +bKs +aJl +aIT +aIM +kWL +aTx +aIA +bgu +mTa +bdf +bgB +bgG +bgK +bgK +bgK +bgK +bgK +bgK +bgK +bgK +bgK +bgW +bgB +bgu +mTa +aen +aen +bdf +ajq +ajq +aSa +aqL +aqL +bdQ +gqV +bdy +tTd +bdK +bdQ +aJZ +bdQ +bdY +bea +aJZ +bdS +eiG +bdQ +bdQ +bdP +bdP +bdy +aKj +aKj +aKj +aKj +aKj +aKm +aKi +aKp +aKj +aKj +beR +aKi +aKi +gtX +aKi +aKo +bdJ +aKy +aKy +bsP +bsP +bsY +aKL +cai +aKS +btj +aKL +bto +bsP +bsP +aKy +aKy +aJZ +eiG +bdP +bdP +bdQ +bdQ +bdQ +bdy +aKj +fzd +bdQ +bdQ +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(143,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +bhc +bhc +bhc +bhc +bhc +bhn +bhn +bhn +bhn +bhn +bhc +bhc +fbe +bhc +bhp +bhc +bhn +bhn +bhn +bhn +bhn +bgn +gLs +hqX +bQt +bQt +hqX +gLs +bKe +aIT +dYk +pmf +aIT +bKz +aIA +aJv +aIM +sXg +aJv +aIA +bgu +mTa +bdf +bgC +bgH +oJT +bgI +bgI +bgI +oJT +bgI +bgO +oiE +bis +bgX +bgC +bgu +mTa +aen +aen +bdf +bgn +ajq +aSa +aSa +aqL +bdQ +bdQ +aJZ +aJZ +aJZ +bdQ +bdQ +bdQ +bdQ +bdQ +bdP +bdP +rTj +bdR +bdQ +aJZ +bdR +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +aKk +aKi +aKo +bcG +aJZ +aKk +aKi +aKi +gtX +aKi +aKi +aKo +bdJ +aKy +aKy +aKy +aKy +aKL +aKL +bcd +aKL +aKL +aKy +aKy +aKy +aKy +aJZ +aJZ +eiG +aJZ +beg +bdQ +bdQ +bdQ +bdR +bdR +kuC +bdQ +bdQ +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(144,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +bhq +bhc +bhc +bhp +bhc +bhn +bhn +bhn +bhn +bhn +bhc +bhc +fbe +bhc +bhc +bhn +bhn +bhn +bhn +bhn +bgn +bgn +gLs +gLs +gLs +gLs +gLs +gLs +bKf +oFq +aIM +aIM +tMq +bKA +aIA +aJK +aJK +xmV +caM +aIA +bgu +mTa +bdf +bgC +bgH +bgI +bgO +bgI +bjr +bgI +biT +bgI +bgL +bgI +bgX +bgC +bgu +mTa +aen +aen +bdf +bgn +ajq +ajq +aSa +aqL +aqL +bdQ +bdP +aJZ +aJZ +aJZ +aJZ +bdQ +bdQ +bdQ +bdQ +bdP +eiG +bdQ +bdQ +spU +bdR +bdP +bdQ +bdQ +bdQ +bdQ +bcD +aKl +aKi +idU +aKo +aKh +aKl +aKi +aKi +gtX +aKi +aKi +bdU +beb +bcV +xsU +aJZ +aJZ +aKL +eZv +aKT +vCr +aKL +bdP +bdP +aJZ +aJZ +aJZ +bdS +eiG +aJZ +beo +aJZ +bdQ +bdQ +bdP +bdP +suf +bdQ +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(145,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +bhc +bhc +bhp +bhc +bhc +bhc +bhn +bhn +bhn +bhn +bhc +bhc +bhr +fbe +bhn +bhn +bhn +bhn +bhn +bhn +bgn +bgn +bgn +bgn +bdq +bdq +bdq +bgn +aIA +aIA +aTf +aIM +aIM +aTq +aIA +aIA +eUE +aJx +jNU +aJx +boe +bgu +mTa +bdf +bgC +bgH +bgI +bis +bgI +bgI +bgQ +bgI +bgI +biT +bgI +bgX +bgC +bgu +cUc +cZu +dBy +gRg +gRg +jhL +ajq +ajq +aSa +aqL +aqL +bdP +bdP +bdP +aJZ +xsU +bdQ +bdR +bdQ +bdQ +bdQ +kuC +bdQ +bdQ +bdQ +bdP +bdP +bdS +aJZ +bdR +bcD +bcF +aKi +bes +aKi +aKi +jlL +aKi +aKi +aKi +gtX +aKi +aKi +aKi +bdU +bee +aJZ +bdZ +beo +aKL +eme +aYf +gXL +aKL +bdP +aJZ +xsU +aJZ +beo +aJZ +tzY +jqz +jqz +jqz +jqz +jqz +jqz +fwq +paH +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(146,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +bhc +bhc +uYb +bhc +bhc +bhe +bhc +bhc +bhn +bhn +bhc +bhc +bhc +bhc +fbe +bhn +bhn +bhn +bhn +bhn +bgn +bgn +bgn +bgn +bgv +aen +aen +aen +bdn +bgn +bcm +bJV +aIM +aIM +vDF +bcm +iLv +aJx +aJx +jNU +aJx +aJI +bgu +mTa +bdf +bgB +bgH +bgL +bgI +gjb +bju +bgI +aYD +bgI +bgI +bgI +bgX +bgB +bgu +aen +aen +bhn +bgn +bgn +xRM +bgn +ajq +aSa +aSa +aqL +aqL +bdQ +bdQ +bdS +aJZ +aJZ +bcD +aPG +beE +aKh +kDt +bdQ +bdQ +bdQ +bdQ +bdP +bem +bdP +bdR +bcE +bdU +qoh +bdU +aKi +aKi +aKi +aKi +aKi +aKi +gtX +aKi +aKi +bel +aKi +bee +aJZ +aJZ +bdP +aKL +aKL +aKL +aKL +aKL +bdR +bdR +bdR +bdQ +bdQ +bdQ +diD +lKy +bdS +aJZ +aJZ +spU +aJZ +aJZ +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(147,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +bhc +bhc +pRE +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +fbe +bhc +bhc +bhn +bhn +bhc +bhv +bgn +bgn +bgv +aen +aen +aen +aen +aen +bdf +bcm +bJZ +bKo +bJJ +bKp +bcm +aJx +aJx +aJx +tMX +vCj +gWU +xWE +xoj +bdf +bgC +bgH +bjr +bgI +bgI +bgI +bgI +aYJ +aAG +bgS +bgI +bgX +bgC +bgu +aen +bhn +bhn +bhn +bgn +xRM +bgn +ajq +ajq +aSa +aSa +aqL +aqL +bdQ +aJZ +aJZ +bdS +ehg +rwo +rwo +rwo +imz +bdJ +bdQ +bdQ +bdR +bdP +bdQ +bdR +bdQ +vhZ +mSo +ber +aKi +aKi +aKi +aKi +aKi +aKi +aKi +gtX +aKi +aKi +aKi +aKp +bdK +bdZ +bdS +bdP +bdP +bdR +bdR +bdP +bdS +aJZ +bdP +bdQ +bdQ +bdQ +bdR +eiG +bdZ +bdS +bdS +beo +bdP +bdP +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(148,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +bhc +bhc +bhc +vSF +enU +enU +enU +enU +gdD +hel +enU +enU +enU +enU +enU +uOi +enU +enU +enU +hel +qsT +uwC +gRg +xWE +cZu +cZu +cZu +cZu +cZu +nbS +bdf +bcm +bKm +akU +bVC +bJX +bcm +aJx +aJx +aJx +jNU +aJx +aJI +bgu +aen +bdf +bgC +bgH +bgI +bgI +bgI +bgI +bgI +aYJ +aYV +bgI +bju +bgX +bgC +bgu +aen +bhn +bhn +bhn +hcg +tad +jhL +bhn +ajq +aSa +aSa +aSa +aqL +aqL +bdP +bdP +aJZ +vhZ +aPJ +aKi +bdU +elR +aKo +bdJ +aJZ +bdR +bdP +bdQ +bdQ +bdQ +bdQ +aKk +aKi +aKi +bel +aKi +aKi +aKi +bdU +aKi +gtX +aKi +aKi +aKi +sqr +bdQ +bdS +bdS +bdS +bdP +bdR +bdR +bdS +bdZ +bdP +bdP +bdQ +bdQ +vcx +pgO +vQg +bdP +bdP +aJZ +bdQ +bdQ +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(149,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +bhc +bhc +bhc +bhp +bhc +bhc +bhc +bhn +bhc +fbe +bhp +bhc +bhn +bhn +bhc +bhc +bhs +bhc +bhc +fbe +bhc +bhc +bhn +bgu +aen +aen +aen +aen +aen +mTa +bdf +bcn +bcn +bcn +bcn +bcn +bcn +aJx +aJx +aJx +jNU +aJx +aJI +bgu +bJE +bdf +bgC +bgH +bgI +bgI +biT +bgI +bgO +aYP +aZp +bgI +oJT +bgX +bgC +bgu +aen +aen +bhn +bhn +bhn +bgn +xRM +bgn +ajq +ajq +aSa +aSa +aSa +aqL +aYR +bdP +aJZ +bdQ +aKk +aKi +aKi +quG +jba +gEy +aJZ +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdY +bed +aKj +aKm +aKi +aKi +pOs +aKi +aKi +gtX +aKi +aKi +aKp +bea +bdQ +bdS +beg +bdP +bdP +bdQ +bdQ +beo +bdP +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +rTj +bdP +bdQ +bdQ +bdQ +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(150,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +bhc +bhc +bhc +bhc +bhp +bhc +bhc +bhn +bhn +aPl +aPq +aPl +aOC +bhn +bhn +bhn +bhn +bhc +bhc +bhc +fbe +bhc +bhn +bhn +bgn +bgV +aen +opW +aen +bJE +mTa +bdn +bdq +bdq +bdq +bdq +bdq +bgn +aJn +aJx +aJx +jNU +aJx +aJI +bgn +bdo +bgn +bgB +bgH +bgI +bgP +bgI +oJT +bgI +bgI +aZs +bJm +bgL +bgX +bgB +bgu +aen +aen +bhn +bhn +bhn +bgn +xRM +bgn +bhn +aQz +aQz +aQz +aQz +aQz +aYR +aYR +bdP +bdQ +bdy +wSb +aKj +aKj +hJw +heL +aJZ +bdP +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdP +bdP +xRq +aKm +jIm +aKi +aKi +aKi +flB +rwo +rwo +wrC +bdQ +bdQ +bdQ +bdP +bdP +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdR +kuC +bdR +bdQ +bdQ +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(151,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +cPi +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ajq +ajq +bhc +bho +bhc +bhc +bhc +bhc +bhn +bhn +bhn +bhc +fbe +bhc +bhn +bhn +bhn +bhn +bhn +bhc +bhc +bhp +qtm +bhn +bhn +bhn +bhn +bgn +bgV +aen +aen +aen +mTa +aen +aen +aen +aen +aen +bJE +bdf +aJn +aJx +aJx +jNU +aJx +aJx +aJw +aJw +aJw +bgD +bgI +bgI +bgI +bgI +bgI +aYF +bgI +oNU +bgI +oiE +bgX +bgC +bgu +aen +aen +bdf +bhn +bhn +bhn +xRM +bgn +bgn +aQC +aQH +aQI +aQJ +aQV +aRb +aQC +arv +aYR +bdR +bdR +bdQ +bdQ +aJZ +eiG +aJZ +bdP +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +bdQ +rUq +fwq +lYc +osY +geN +rwo +rwo +ceR +aKi +aKi +aKn +bdQ +bdQ +bdQ +bdR +bdQ +bdQ +bdQ +bdQ +bdQ +rUH +bdQ +bdP +bdS +bdS +bdP +bdP +rTj +bdP +aqL +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(152,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +cPi +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ajq +bhc +bhc +bhc +bhc +bhc +bhc +bhn +bhn +bhn +bhc +bhc +fbe +bhc +bhn +bhn +bhn +bhn +bhn +bhn +bhp +bhc +fbe +bhn +bhn +bhn +bhn +bhn +bgn +bdo +bgV +aen +cUc +cZu +cZu +cZu +cZu +ejl +cZu +nJR +rZR +vCj +vCj +jHa +aJx +aJx +aJx +aJx +aJx +bgE +bgI +bgI +bgI +oiE +oiE +bgL +bgI +bgT +bgI +bvF +bgX +bgC +bgu +aen +aen +bdf +bgn +bgn +bhn +xRM +bgn +bgn +ahc +aQI +aQI +aQO +aQW +aQO +aQI +aQQ +aYR +aYR +aPN +bdQ +bdQ +aJZ +eii +wiJ +bdJ +bdQ +bdQ +bdx +sGQ +bdJ +bdQ +bdQ +eiG +bdP +bdQ +bdP +aKk +aKi +aKi +gtX +aKi +aKi +tJf +bdJ +bdQ +bdQ +bdR +bdQ +bdQ +bdQ +bdQ +bdQ +vcy +cMa +bVX +bVX +jqz +bVX +bVX +paH +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(153,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +cPi +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ajq +ajq +bhc +bhc +bhc +bhc +bhn +bhn +bhn +bhn +bhn +bhc +aQx +fbe +bhc +bhc +bhn +bhn +bhn +bhn +bhn +bhc +bhp +fbe +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bgn +bgV +aen +aen +aen +aen +aen +mTa +aen +bdf +aJn +aJx +aJx +tMX +vCj +vCj +vCj +vCj +vCj +kmI +leS +leS +ubq +leS +leS +dXO +bgI +bis +bgU +bgI +bgX +bgC +bgu +aen +aen +bdn +bgn +bgn +bgn +xRM +bgn +bhn +bhn +aQz +aQz +aQJ +aQO +aQJ +aQQ +aRc +aYR +aYR +aYR +aqL +bdQ +bcD +kzA +rwo +mIY +lVF +lVF +sem +rwo +wlY +kDL +uBH +nck +bdP +bdQ +bcD +aKl +aKi +aKi +gtX +aKi +aKi +bel +aKn +bdQ +bdP +bdP +bdQ +bdQ +bdQ +bdQ +bdP +eiG +aJZ +bdS +aJZ +smP +bdS +aqL +aqL +aqL +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(154,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +cPi +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ajq +bhc +bhq +bhc +bhc +bhc +bhn +bhn +bhn +bhn +bhn +bhc +bhc +pRE +bhc +bhc +bhn +bhn +bhn +bhn +bhn +bhc +bhc +fbe +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bgn +bdo +bgV +aen +aen +aen +mTa +aen +bdf +aJn +aJx +aJx +jNU +aJx +aJx +aJJ +aJJ +aJJ +bgF +oiE +oiE +bgI +bgQ +bgI +bgI +rQh +bgI +bgI +bgI +bgX +bgC +bgu +aen +aen +aen +bhn +bgn +bgn +xRM +bhn +bhn +bhn +bhn +aQz +aQQ +aQI +aQC +aQC +aQC +jOh +jOh +jOh +aqL +aqL +aqL +vaI +aKi +aKi +bdU +wpV +bcI +aKi +gXN +bdU +rzy +bdP +bdQ +bdQ +aKk +aKi +aKi +aKi +gtX +bdU +aKi +aKi +bee +bdR +bdP +bdS +bdP +bdP +bdQ +bdP +bdP +eiG +bdZ +lKy +gqV +aqL +aqL +aqL +ylo +ylo +ylo +aEw +aEw +auQ +auQ +aEw +aEw +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(155,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +cPi +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ajq +bhc +bhc +bhc +bhc +bhn +bhn +bhn +bhn +owP +tIk +bhc +bhc +fbe +bhc +bhc +tIk +jUn +bhn +bhn +bhn +bhn +bhc +euV +bhc +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bgn +bgV +aen +aen +mTa +aen +bdf +aJn +aJx +aJx +jNU +aJx +aJI +bgn +bdq +bgn +bgB +bgH +bgM +bgI +bis +bgI +bgL +bgI +bgT +bgI +bgQ +bgX +bgB +bgu +aen +aen +bhn +bhn +bgn +bgn +xRM +bhn +bhn +bhn +bhn +aQz +aQU +aQQ +aQC +aPv +aBv +aov +aYW +aBv +aBv +aPR +aqL +aqL +aqL +aKi +jlL +aKi +bdU +aKi +aKi +aKp +bdK +bdQ +bdQ +bdQ +aKk +aKi +aKi +aKi +flB +rwo +rwo +jba +gOk +pgO +fwq +bVX +jqz +fwq +pgO +fwq +nlm +bVH +aJZ +aJZ +aqL +aqL +ylo +ylo +ylo +ylo +aEw +aEw +bwr +bzF +bzH +bwQ +aEw +aEw +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(156,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +cPi +pdg +pdg +pdg +pdg +pdg +pdg +ajq +ajq +bhc +bhc +bhc +bhc +bhn +bhn +bhn +bhn +rgc +aPl +bhc +bhc +fbe +bhc +aPf +aPl +rgc +bhn +bhn +bhn +bhn +bhc +fbe +bhu +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bgu +aen +sDi +mvL +aen +bdf +aJn +aJx +aJx +jNU +aJx +aJI +bgu +bJE +bdf +bgC +bgH +bgI +bgI +boh +bgI +bqi +bgI +oJT +biU +bgI +bgX +bgC +bgu +aen +aen +bhn +bhn +bgn +bgn +xRM +bgn +bgn +bhn +bhn +aQz +aQz +arv +aQC +aAz +aAI +aAY +aAY +aAY +aAH +anU +aBK +aCb +aqL +aqL +aqL +aKi +bdU +jIm +uIh +bdK +bdQ +bdQ +bdQ +gqV +aKk +aKi +aKi +aKi +gtX +aKi +aKp +yfH +bcK +bdR +bdS +bdS +beo +aJZ +bdR +bdP +bdP +aQC +arv +aQC +aQz +ylo +ylo +ylo +ylo +ylo +aEw +bwA +bwr +bzG +bzI +bwQ +bzK +aEw +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(157,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +cPi +pdg +pdg +pdg +pdg +pdg +pdg +ajq +bhc +bhc +bhr +bhc +bhc +bhn +bhn +bhn +bhn +wBk +tIk +bhc +aQx +fbe +bhc +bhc +tIk +kNQ +bhn +bhn +bhn +bhn +bhu +bhw +bgn +bgn +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bgn +bgv +aen +aen +mTa +aen +bdf +aJn +aJx +aJx +jNU +aJx +aJI +bgu +aen +bdf +bgC +bvs +bgI +bgQ +boi +bgI +bjr +bgI +biT +bgI +bgI +bgX +bgC +bgu +aen +aen +bhn +bhn +bhn +bgn +xRM +bgn +bgn +bgv +bhn +bhn +ajq +aBc +aBc +aAz +aAJ +aBy +azT +aBQ +aAz +aAT +aBL +aCd +asD +ylo +aqL +aqL +aqL +aqL +bdQ +bdQ +bdQ +bdQ +bdP +beh +iiI +beY +aKi +aKi +gtX +aKi +aKn +bdP +bdQ +bdQ +bdQ +bdZ +bdZ +beo +aqL +aqL +aQz +aQC +aQI +bcx +aQz +aEw +aEw +aEw +aEw +aEw +aEw +bwB +bwr +bQY +bvK +bwQ +bzL +aEw +aEw +aEw +aEw +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(158,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +cPi +pdg +pdg +pdg +pdg +pdg +pdg +ajq +bhc +bhc +bhc +bhp +bhn +bhn +bhn +bhn +rgc +tIk +tIk +bhc +bhc +fbe +bhc +bhc +tIk +tIk +bhn +bhn +bhn +bhn +bgn +xRM +bgn +bgn +bgn +bhn +bhn +bhn +bhn +bhn +bhn +bgn +bgv +aen +aen +aen +mTa +aen +bdf +aJn +aJx +aJx +jNU +aJx +aJI +bgu +aen +bdf +bgC +bgH +oJT +bgI +boj +bgR +bgI +bgI +bgI +bgL +bgI +bgX +bgC +bgu +aen +aen +bhn +bhn +bhn +bgn +xRM +bdq +bgv +aen +aen +bhn +ajq +aAb +aBc +aAz +aAJ +aBz +akq +aAA +aAz +aAT +aAJ +aCf +afd +ylo +ylo +aSa +ylo +aqL +aqL +aqL +aYR +aYR +aYR +aJZ +qEG +aKk +aKi +aKi +gtX +aKi +boB +bdQ +bdQ +aqL +aqL +aqL +aqL +aqL +aqL +ylo +aQz +ahx +aQW +aQJ +aQC +aCh +xkB +uHr +aYT +bwk +yhw +yhw +yhw +yhw +oCa +yhw +kSM +auH +bvX +bxH +aEw +aEw +aEw +aEw +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(159,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +cPi +pdg +pdg +pdg +pdg +pdg +pdg +ajq +bhe +bhc +bhc +bhc +bhn +bhn +bhn +qPJ +aPl +tIk +bhp +bhc +bho +sMb +rXE +bhc +tIk +rgc +bhn +bhn +bhn +bhn +bgn +xRM +bgn +bdq +bdq +bgn +bhn +bhn +bgn +bgn +bdq +bgv +aen +aen +aen +aen +mTa +aen +bdf +aJn +aJx +aJx +jNU +aJx +aJI +bgu +aen +bdf +bgB +bgJ +bgN +bgN +bgN +bgN +bgN +bgN +bgN +bgN +bgN +bgY +bgB +bgu +aen +aen +aen +bhn +bhn +bhn +nrO +aen +aen +aen +aen +aen +ajq +aLc +aPs +aAz +aAJ +aBD +azY +aAB +aAz +aAT +aAJ +aCi +afd +ylo +ylo +aSa +ylo +ylo +ylo +atA +aFJ +aGi +auh +auh +auh +atA +aGw +aGw +bZX +bbt +aLV +auj +auj +aLV +aLV +ylo +ylo +ylo +ylo +ylo +aQz +cqv +aQO +aQI +ahc +aCh +sVk +rzU +aCr +aCr +kEJ +juh +juh +fMn +juh +pdw +syG +auS +yhw +yhw +bvM +bzN +bzb +aEw +aEw +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(160,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ozR +ozR +ozR +ozR +ozR +pdg +pdg +pdg +pdg +ajq +bhc +bhc +bhc +bhc +bhn +bhn +bhn +tIk +aPf +qgt +enU +enU +enU +vcJ +bhc +bhs +aPl +wBk +bhn +bhn +bhn +bgn +bgn +etD +bgv +aen +aen +bdn +bgn +bgn +bgn +bgv +aen +aen +aen +aen +aen +aen +mTa +aen +bdf +aJn +aJx +aJx +jNU +aJx +aJI +bgu +aen +bdf +bgB +bgB +bgC +bgC +bgC +bgC +bgB +bgC +bgC +bgC +bgC +bgB +bgB +bgu +aen +aen +aen +aen +bhn +bhn +mTa +aen +aen +aen +aen +aen +ajq +aCb +aXd +aAz +anU +aBv +aAf +aBs +aAK +aBt +aBS +aCd +afd +ylo +ylo +aSa +ylo +ylo +ylo +anD +aDb +aCQ +aCm +aDk +aDw +aui +azN +aur +ceB +dmE +aLU +aMg +aLS +aNj +aNw +ylo +ylo +ylo +ylo +ylo +aQz +aQz +aQz +aQz +aQz +oiu +sVk +rzU +aCr +aCr +ppr +aCr +aCr +wJz +aCr +qkW +juh +bxb +juh +juh +fFI +bxX +aCr +bzS +aEw +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(161,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ozR +ozR +ozR +ozR +ozR +pdg +pdg +pdg +ajq +ajq +bhc +bhc +bhc +bhc +bhn +bhn +rgc +tIk +bhc +fbe +bhc +aQx +bhc +bhc +bhc +aQx +tIk +rgc +bhn +bhn +bhn +bgn +bgu +vyB +cZu +cZu +cZu +cZu +cEQ +jBx +cSi +cZu +cZu +cZu +cZu +cZu +cZu +cZu +xFN +cZu +nJR +rZR +vCj +vCj +jHa +aJx +aJI +bgu +aen +bdn +bdq +bdq +bdq +bdq +bdq +bdq +bdq +bdq +bdq +bdq +bdq +bdq +bdq +bgv +aen +aen +aen +aen +aen +bhn +mTa +aen +aen +aen +aen +aen +ajq +asD +asD +aAz +aAT +aAT +aAT +aAT +aAT +aAT +aAP +aCb +asD +ylo +ylo +aSa +ylo +ylo +ylo +anD +aDb +aBX +aGF +aDm +aDx +aui +aMa +aur +aur +aMa +aLU +aMh +aMy +aMR +aNw +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +aEw +sVk +aCh +uHr +bwe +bvw +ppr +bwt +bwC +bwH +bwJ +pKi +xhd +auS +lwk +aCr +nBy +aCr +byg +bzc +auQ +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(162,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ozR +ozR +ozR +ozR +ozR +pdg +pdg +pdg +ajq +bhc +bhc +bhc +bhc +bhs +bhn +bhn +rgc +aPl +bhc +fbe +bhr +bhc +bhc +bhe +bhc +bhc +bhn +bhn +bhn +bhn +bhn +bhn +bgu +mTa +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +bJE +bdf +aJn +aJx +aJx +jNU +aJx +aJI +bgu +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +bJE +aen +aen +aen +mTa +aen +aen +aen +aen +aen +aen +jOh +aAk +akV +aAY +auk +aAq +aAD +aAY +aAY +aBU +aAb +asD +asD +asD +asD +atA +atA +atA +atA +aFL +aBX +aGG +aHN +aDA +aui +lOn +bZW +aur +azN +aLU +aMj +aLx +aNl +aLV +ylo +avm +auE +auE +avm +aSa +avm +auE +auE +aEw +aCh +aCh +auH +auH +auH +bvf +auH +auH +auH +bwK +nmp +nDD +auH +byZ +bwm +bxQ +lwk +aCr +bvP +auQ +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(163,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ozR +ozR +ozR +ozR +ozR +pdg +pdg +pdg +ajq +bhc +bhc +bhc +bhc +bhc +bhc +bhn +qPJ +tIk +bhc +fbe +bhc +bhc +bhn +aOC +aPl +aOC +bhn +bhn +bhn +bhn +bhn +bhn +bgu +mTa +bde +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bgn +aJn +aJx +aJx +jNU +aJx +aJI +bgn +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +mJa +bdo +bdo +bdo +bdo +bdo +bdo +jOh +aAc +anc +aAl +aun +aAs +aAF +aAR +aBc +aBW +aBc +aCo +aCu +aCK +pMI +azN +aCO +aCX +aDF +aBX +aGu +aDq +auh +auh +atA +aGw +bZX +aGw +bbu +aLV +aMk +aMI +aNq +aNq +aNq +aNq +bsQ +mWo +avm +avm +avm +bNC +mWo +aNq +gVM +aNq +auB +bvy +dte +ppr +bwu +kSM +auH +bwN +nmp +nDD +auH +auH +auH +auH +auH +gpu +bwS +aEw +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(164,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ozR +ozR +ozR +ozR +ozR +pdg +pdg +pdg +ajq +bhc +bho +bhc +bhc +bhc +bhc +bhn +aOC +aOC +aPl +aPq +aPl +bhn +bhn +bhn +aQy +bhn +bhn +bhn +bhn +bhn +bhn +bgn +bgu +mTa +bdf +aJm +aJm +bdc +bdc +aJm +aJm +bdc +bdc +aJm +aJm +aJw +aJw +aJw +aJw +aJw +aJw +aJx +aJx +aJx +jNU +aJx +aJx +aJw +aJw +aJw +aJw +aJw +aJw +aJw +aJw +aJw +aJw +aJw +aJw +aJw +aJw +aJw +aJw +aJw +aJw +aJw +aJw +aJw +aJw +aJw +vCS +aJw +aJw +aJw +aJw +aJw +boo +asD +ajm +ajm +ajm +asD +ajm +ajm +akq +aAT +aBY +akq +akq +akq +akq +akq +akB +akB +akB +akB +aFP +aGv +aCQ +aHS +aDE +akB +aKx +caG +dDj +aLy +aIf +gwV +aMN +aNq +bNw +bNz +lHK +bsR +hMo +bNF +btb +btf +hMo +bsR +lHK +lHK +bNJ +auB +xzU +aCh +bwo +bjw +bwD +auH +bvC +nmp +wtu +auH +bvY +bwn +bvE +dte +aCr +bwT +auQ +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(165,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ozR +ozR +ozR +ozR +ozR +pdg +pdg +pdg +ajq +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhr +fbe +bhc +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bgn +bgn +bgv +mTa +bdf +aJm +bgj +bgp +bgp +bgp +bgp +bgp +bgp +bgp +aJm +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +jNU +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +jNU +aJx +aJx +aJx +aJx +aJx +aJx +aut +dAk +aBw +aoz +aZD +aBT +khD +aAV +ahu +nJC +khD +ajn +azP +ajn +ajn +ajn +ajn +aDd +akB +aFS +aGv +aBX +aDr +aJj +aui +aKA +nJC +ahu +rZC +aPU +aMl +aMR +aNq +bsJ +bsM +qsg +qsg +hXH +aNx +aNx +aNx +pQK +qsg +qsg +hXH +bFp +auB +bwg +ksF +vMX +bwE +aZX +auH +bvB +nmp +nDD +auH +fgN +aCr +aCr +aCr +aCr +byi +auQ +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(166,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ozR +ozR +ozR +ozR +ozR +pdg +pdg +pdg +ajq +bhc +bhc +bhc +bhp +bhc +bhc +bhc +bhc +bhc +bhc +fbe +bhq +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bgn +bgv +aen +mTa +bdf +bdc +bgl +bgm +tbm +sjL +sjL +oKQ +sjL +sjL +hCJ +vCj +vCj +miX +vCj +vCj +vCj +vCj +vCj +miX +azy +vCj +vCj +vCj +vCj +vCj +vCj +vCj +vCj +vCj +dIa +vCj +vCj +vCj +vCj +vCj +vCj +miX +vCj +vCj +vCj +vCj +vCj +vCj +vCj +vCj +azy +vCj +miX +vCj +vCj +vCj +vCj +vEs +wKL +aeZ +aeZ +avr +ahu +ahu +ahu +ahu +caG +dDj +dDj +xlU +dDj +dDj +dDj +aCP +aDe +akB +aFS +aGv +aBX +aHU +aDH +aui +aKB +nJC +ahu +aLE +aLY +aMm +aMS +aNq +bNx +rBX +aNy +aNy +aNv +wGb +aNx +aNx +rBX +aNy +aNy +aNv +btq +auB +bwh +adp +adp +adp +auN +auH +bvB +nmp +syG +auH +bvZ +bvD +bvN +aCr +aCr +bwU +aEw +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(167,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ozR +ozR +ozR +ozR +ozR +pdg +pdg +pdg +ajq +bhc +bhc +bhq +bhc +bhn +bhc +bhc +bhc +bhs +bhc +fbe +bhu +bhn +bgn +bhn +bhn +bhn +bhn +bhn +bhn +bgn +bgv +aen +sDi +mvL +bdf +bdc +bgl +bgm +nhE +bgm +bgm +uuP +bgm +bgm +aJm +aJx +aJx +jNU +aJx +aJx +aJx +aJx +aJx +jNU +aJx +aJx +aJx +aJx +aJx +aJx +aJx +ubW +ubW +ubW +ubW +aJx +aJx +aJx +aJx +aJx +aJx +jNU +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +jNU +aJx +aJx +aJx +aJx +avr +aeZ +aeZ +nbO +vEs +dDj +dDj +dDj +dDj +azA +ahu +ahu +ahu +ahu +ahu +ahu +nJC +aDe +akB +akB +aGv +aCl +akB +akB +akB +aKF +nJC +ahu +aLP +auj +auj +auj +aNq +pUa +rBX +bNB +bNE +uco +bux +auB +btg +eYv +nWV +bIX +aNv +lbY +auB +auH +auH +auH +auH +auH +auH +auH +wKD +juh +bxM +juh +juh +dWY +adp +adp +aEw +aEw +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(168,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ozR +ozR +ozR +ozR +ozR +pdg +pdg +pdg +ajq +bhc +bhc +bhn +bhn +bhn +bhn +bhc +bhc +bhc +bhc +frk +bgn +bgn +bgn +bdq +bdq +bhn +bhn +bdq +bdq +bgv +aen +aen +aen +mTa +bdf +bdc +bgl +bgm +nhE +iVA +bgm +bgm +bgm +bgm +aDV +ubW +aJx +jNU +aJx +aJx +aJx +aJx +aJx +jNU +aJx +aJx +aJx +aJx +aJx +aJx +lXP +ubW +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +jNU +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +aJx +jNU +aJx +aJx +aJx +aJx +avr +aoz +aBw +qLE +avr +aAx +rZC +pZf +ahu +nJC +xSL +vQt +vQt +vQt +ulq +ahu +nJC +khD +ajn +uSM +nJC +ahu +khD +ajn +ajn +uSM +nJC +ahu +aLQ +aJz +aAX +aBT +aNq +pUa +rBX +gtp +bND +fkn +buy +auB +bth +hxl +bNE +bNB +aNv +lbY +auB +btw +aCr +egq +aZV +juh +juh +bvh +kRc +xhd +auH +bxL +aCr +ukQ +aEw +aEw +aEw +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(169,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ozR +ozR +ozR +ozR +ozR +pdg +pdg +pdg +ajq +bhc +bhc +bhn +bhn +bhn +bhn +bhc +bhc +qgt +enU +nBO +gRg +wIu +cSi +cZu +cZu +cZu +cZu +cZu +cZu +cZu +cZu +cZu +cZu +xoj +bdf +bdc +bgl +bgm +dOF +bgm +bgm +bgm +bgm +bgm +aJm +aJx +ubW +jNU +aJx +aJx +aJx +aJJ +aJJ +ukY +aJJ +aJJ +aJJ +aJJ +aJJ +aJJ +ubW +aJx +aJx +aJx +aJx +aJJ +aJJ +aJJ +aJJ +aJJ +aJJ +ukY +aJJ +aJJ +aJJ +aJJ +aJJ +aJJ +aJJ +aJJ +aJJ +aJJ +ukY +aJJ +aJJ +aJJ +qVJ +asH +azV +azV +azV +asH +amv +amv +agG +ahu +nJC +aje +xSL +vQt +ulq +odN +ahu +azB +dDj +fWK +dDj +xlU +dDj +dDj +dDj +dDj +dDj +xlU +dDj +dDj +dDj +aCP +aMT +auB +bNx +rBX +aNy +aNy +hok +aNz +aNB +tJv +mbz +aNy +tvW +aNv +btq +auB +btz +aCr +gZH +bwI +bzE +xhd +auH +pKi +nDD +auH +bMc +aCr +uuQ +aEw +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(170,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ozR +ozR +ozR +ozR +ozR +pdg +pdg +pdg +ajq +bhc +bhc +bhc +bhn +bhn +bhc +bhc +bhp +fbe +bhc +bhn +bgn +nrO +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +bdf +aJm +bgm +bgm +oBq +bgr +bgr +bgr +bgr +bgr +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgn +bdq +etD +bdq +bdq +bdq +bdq +bdq +bgn +aJn +aJx +aJx +aJx +aJI +bgn +bdq +bdq +bdq +bdq +bdq +etD +bdq +bdq +bdq +bdq +bdq +bdq +bdq +bdq +bdq +bdq +etD +bdq +bdq +bdq +bdq +amv +aeO +alB +alQ +axg +bCW +bkE +agG +ahu +nJC +aje +aje +aOE +odN +odN +ahu +ahu +ahu +nJC +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +lIq +ahu +ahu +nJC +aDe +auB +bsJ +qFp +lHK +lHK +nXv +aNx +aNx +xQb +esA +qiW +tQs +tUa +swY +auB +ruw +aCr +aCr +wJz +aCr +nDD +auS +nmp +nDD +auH +grc +bwp +rxk +aEw +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(171,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ozR +ozR +ozR +ozR +ozR +pdg +pdg +pdg +ajq +bhc +bhp +bhc +bhn +bhc +bho +bhc +bhc +fbe +bhn +bhn +bhn +mTa +bde +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bgn +aJm +bgm +bgm +nhE +bgs +bgs +bhd +bhm +biB +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgu +aen +vFJ +aen +aen +aen +aen +bJE +bdf +aJn +aJx +aJx +aJx +aJI +bgu +bJE +aen +aen +aen +aen +vFJ +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +mTa +aen +aen +aen +aen +amv +bDX +avu +age +age +avA +bkF +agG +ahu +nJC +aje +kTx +aAW +eUf +aNh +vQt +vQt +ulq +nJC +xSL +aOg +rZC +ffQ +ffQ +ffQ +ffQ +ffQ +ffQ +pZf +ahu +nJC +aDe +auB +bNy +bNA +bvt +bvt +xmC +aNx +aXN +nCl +cfA +bvt +bvt +bNI +bNK +auB +piI +iCN +bjp +bwO +bjp +auN +auS +nmp +nDD +auH +auH +auH +auH +aEw +auR +auR +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(172,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ozR +ozR +ozR +ozR +ozR +pdg +pdg +pdg +ajq +ajq +bhc +bhc +bhc +qgt +enU +enU +enU +vcJ +bhn +bhn +bhn +mTa +bdf +aJm +bdc +bdc +aJm +bdc +bdc +aJm +bdc +bdc +aJm +bdc +bdc +aJm +bgm +iVA +nhE +bgs +bgs +bgs +bgs +bgs +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgn +aen +aen +aen +aen +aen +aen +aen +bdf +aJn +aJx +aJx +aJx +aJI +bgu +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +aen +mTa +aen +aen +aen +ajq +asH +awM +age +iCP +age +bkD +bkE +aAX +ahu +nJC +aje +qIU +qIU +qIU +qIU +qIU +ajX +akd +aCM +akd +ajX +anE +anE +anE +anE +anE +anE +anE +agG +ahu +nJC +aDe +auB +auB +auB +auB +auB +auB +aHh +auB +aHi +auB +auB +auB +auB +auB +auB +auH +auH +auH +auH +auH +auH +auH +fmd +baZ +auH +gXv +gVR +nui +auJ +aCs +aCs +aEx +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(173,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ozR +ozR +ozR +ozR +ozR +pdg +pdg +pdg +pdg +ajq +bhc +bhc +bhc +fbe +bhc +bhc +bhc +bhn +bhn +bhn +aen +mTa +bdf +bdc +bdd +bdl +bdu +bdl +bdl +bdl +bdl +bdl +bdl +bdl +beV +bhW +bgm +iVA +nhE +bgs +bgs +nid +lwL +dXW +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgn +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bgn +aJn +aJx +aJx +aJx +aJI +bgn +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bgV +aen +aen +aen +aen +bde +bdo +bgV +aen +mTa +aen +aen +aen +ajq +asH +akY +anF +aVx +eDq +eDq +auD +dDj +dDj +azA +aje +qIU +aCq +aCx +aCJ +bzm +aKv +rKN +gXG +gSu +aOI +anE +aGc +aue +aGU +aue +aGV +anE +agG +ahu +nJC +khD +ajn +ajn +ajn +ajn +ajn +uSM +ahu +aVW +nJC +khD +ajn +ajn +ajn +ajn +auF +uVo +auF +auF +auK +aCg +aYE +aCg +rbC +ybq +gyK +aCg +aCg +aCg +aYE +aCg +byh +byk +auR +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(174,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ozR +ozR +ozR +ozR +ozR +pdg +pdg +pdg +pdg +ajq +bhc +bhc +bhp +fbe +bhc +bhc +bhn +bhn +bhn +aen +aen +mTa +bdf +bdc +bdg +bdm +bdm +bdm +bdm +bdm +bdm +bdv +bdm +beu +beW +bhW +bgm +mSG +nhE +bgs +bgs +bgr +bgr +bgr +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgn +bgZ +bgZ +bgZ +bha +bha +bha +bgZ +bgZ +bTw +bTw +bgZ +bTw +bTw +bgZ +bgZ +bha +bha +bha +bgZ +bgZ +bgZ +bgu +aen +aen +aen +bde +bgn +bhn +bgn +bdo +kps +aen +aen +aen +ajq +asH +asH +asH +asH +asH +asH +asH +aVK +ahu +nJC +aje +qIU +aDC +csE +aKV +bzm +eWX +aHZ +gXG +aHZ +aOK +anE +aGM +aug +aug +aug +aHt +anE +agG +ahu +azB +mmp +mmp +dDj +dDj +dDj +fWK +dDj +dDj +dDj +xlU +fWK +dDj +fWK +dDj +dDj +dDj +dDj +dDj +dDj +wpO +lLe +lLe +lLe +rki +lLe +ezs +aMi +aMi +aMi +aMi +aMi +byl +bze +auR +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(175,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +cPi +pdg +pdg +pdg +pdg +pdg +pdg +ajq +bhc +bhc +bhc +fbe +bhc +bhe +bhn +bhn +bhn +aen +aen +mTa +bdf +bdc +bdg +bdm +bdv +bdm +beu +bdm +bdm +bdm +bdp +bdm +beW +bhW +bgm +bgm +nhE +bgs +bgs +bgs +bjM +blg +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgn +bgZ +bVD +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +caw +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bVD +bgZ +bgu +aen +bde +bhn +bhn +bhn +bhn +bhn +bgn +xRM +bgV +aen +aen +ajq +ylo +ylo +ylo +ylo +ylo +ylo +arJ +auV +ahu +nJC +aje +qIU +aCq +aCx +aCJ +bzm +eWX +aHZ +fGV +aCN +aGz +anE +nSb +aug +aug +aug +aHt +anE +agG +ahu +ahu +ahu +ahu +lIq +ahu +ahu +nJC +ahu +ahu +ahu +ahu +nJC +ahu +nJC +ahu +ahu +ahu +ahu +ahu +ahu +nAE +aMi +aMi +wIk +eRX +aMi +gxb +vzv +aMi +aMi +aMi +aMi +bzd +bzf +auR +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(176,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +cPi +pdg +pdg +pdg +pdg +pdg +pdg +ajq +bhq +bhc +kCk +fyO +bhc +bhn +bhn +bhn +bhn +bhn +aen +mTa +bdf +bdc +bdg +bdm +bdm +bdm +bdm +bdm +bdm +bdm +bdm +bdm +beW +aJm +bgm +bgm +nhE +bgs +bgs +bgs +bgs +bgs +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgn +bgZ +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +nAR +bhb +bhb +bgZ +bgn +bdo +bhn +bhn +bhn +bhn +bhn +bhn +bhn +xRM +bgn +bgV +aen +ajq +ylo +ylo +ylo +ylo +ylo +ylo +arJ +agG +ahu +nJC +aje +qIU +aDC +csE +aKV +bzm +aMb +aOF +iTL +gXG +aks +anE +aGO +qnb +aug +lId +aHx +anE +aOo +ffQ +ffQ +aMU +ffQ +ffQ +ffQ +pZf +nJC +rZC +ffQ +uJI +ffQ +nGU +pZf +nJC +ahu +wQG +emb +xap +emb +emb +auK +qAk +qAk +qAk +feZ +aMi +gxb +uJq +qAk +qAk +aZW +qAk +byj +bym +auR +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(177,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +cPi +pdg +pdg +pdg +pdg +pdg +pdg +ajq +ajq +bhc +bhc +fbe +bhc +bhn +bhn +bhn +bhn +bgu +aen +mTa +bdf +bdc +bdg +bdp +bdm +beq +bdm +bdm +beu +bdm +bdm +bdm +beW +bhW +bgm +bgm +nhE +bgs +bgs +bgs +bjN +blh +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgn +bha +bhb +bhb +bgZ +bgZ +bgZ +bgZ +bgZ +bTv +bhb +bhb +bhb +bhb +bgZ +bgZ +bgZ +bgZ +bgZ +bhb +bhb +bha +bgn +bgn +bhn +bhn +bhn +bhn +bhn +bhn +bhn +xRM +bgn +bgn +ajq +ajq +ylo +ylo +ylo +ylo +arJ +arJ +arJ +aAX +ahu +nJC +aje +qIU +qIU +qIU +qIU +qIU +ajX +ajX +eWX +gXG +aks +anE +anE +anE +bDv +anE +anE +anE +anE +anE +anE +anE +anE +bkJ +bkJ +anE +aHk +anE +anE +anE +anE +lIf +agG +nJC +ahu +pbS +auJ +auJ +auJ +auJ +auJ +auJ +auJ +auJ +iQL +eRX +gxb +kjH +bjs +bjs +auJ +aCs +aCs +aEx +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(178,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +cPi +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ajq +bhc +bhc +fbe +bhc +bhn +bhn +bhn +bhn +bgu +aen +mTa +bdf +bdc +bdh +bdm +bdm +bdm +bdm +bdm +bdm +bdm +beM +bdm +beW +bhW +bgm +bgm +nhE +bgs +bgs +bgr +bgr +bgr +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgn +bha +bhb +bhb +bgZ +bhl +bhl +bhl +bgZ +bgZ +bTx +bTx +bTx +bgZ +bgZ +bhl +bhl +bhl +bgZ +bhb +bhb +bha +bgn +bgn +bhn +bhn +bhn +bhn +bhn +bhn +bgn +xRM +bgn +bgn +ajq +ylo +ylo +ylo +agD +agD +arJ +brF +llM +ajc +ahu +nJC +aje +ajX +ajX +bCj +aNG +aNM +bUa +ajX +eWX +gXG +aks +aDh +anE +aJM +aug +umo +aue +aHK +aIN +aKW +aLb +aLd +aue +aue +aue +bkK +hYZ +umo +aOv +aOy +anE +anE +agG +nJC +ahu +pbS +auJ +hbB +bxt +bxt +njh +aCg +bxC +auK +iQL +aMi +gxb +kjH +bvj +bvj +aEx +auR +auR +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(179,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +cPi +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ajq +bhc +bhc +euV +bhc +bhn +bhn +bhn +bht +bgn +bgV +mTa +bdf +bdc +bdg +bdm +bdm +bdm +beu +bdm +bdm +bdm +bdm +bdm +beW +bhW +bgm +bgm +nhE +bgs +bgs +bhf +bjO +bTq +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgn +bha +bhb +bhb +bgZ +bhl +bgZ +bgZ +bgZ +bhg +bhg +bhg +bhg +bhg +bgZ +bgZ +bgZ +bhl +bgZ +bhb +bhb +bha +bgn +bdq +bdq +bhn +bhn +bhn +bgn +bhn +bgn +etD +bdq +bgn +ajq +ylo +ylo +ylo +agD +ajc +aVD +dtd +llM +ajc +ahu +nJC +aje +ajX +aDg +tbc +tbc +tbc +neB +akd +eWX +gXG +aks +aDv +anE +aJQ +aug +aug +dsw +rxD +rxD +rxD +rxD +wda +rxD +rxD +rxD +rxD +qeh +lFY +aug +wrX +bRX +anE +agG +nJC +ahu +pbS +auJ +bxn +aMi +fbs +aMi +aMi +aat +auK +bxJ +aMi +gxb +kjH +bjs +bjs +aEx +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(180,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +cPi +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ajq +ajq +bhc +fbe +bhc +bhc +bhn +bhq +bht +bgn +bgu +mTa +bdf +aJm +bdi +bdr +aJm +bdr +bdr +aJm +bdr +bdr +aJm +bdr +bfw +aJm +bgm +dNa +cqy +bgs +bgs +bgs +bgs +bgs +aJm +eUE +aJx +jNU +aJx +aJx +aJI +bgn +bha +bhb +bhb +bgZ +bhl +bgZ +caS +bhg +bhg +bhg +bhg +bhg +bhg +bhg +caS +bgZ +bhl +bgZ +bhb +bhb +bha +bgu +aen +aen +bdf +bhn +bhn +bgn +bdq +bgv +mTa +aen +ajq +ajq +ylo +ylo +ylo +agD +agY +agY +ajc +sYk +ahu +ahu +nJC +aje +akd +aIh +aHZ +bTM +bTQ +aks +akd +eWX +lYO +elX +ajX +anE +aJT +aKw +qnb +hYZ +lId +auf +auf +qnb +hYZ +lId +auf +aOj +qnb +pnc +wda +qAg +wrX +bRY +anE +agG +nJC +ahu +pbS +auJ +bxm +aCs +wKf +bxy +aMi +fVm +auJ +rCb +aMi +gxb +kjH +bvk +bvj +aEx +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(181,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +cPi +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ajq +bhc +vSF +enU +enU +enU +enU +enU +diw +xWE +mvL +bdf +bdc +bdg +bdm +bdw +bdm +bdm +bdm +bdm +bdm +bds +bdm +beW +bhW +bgm +bgm +nhE +bgs +bgs +bhj +bjP +bTr +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgn +bgZ +bhb +bhb +bgZ +bgZ +bgZ +bhg +bhg +bhh +bhh +bhg +bhg +bhg +bhg +bhg +bgZ +bgZ +bgZ +bhb +bhb +bgZ +bgn +bgV +aen +bdn +bhn +bgn +bgv +aen +cwF +mTa +aen +ajq +ylo +ylo +ylo +ylo +arJ +aXx +aXS +aBT +sYk +ahu +ahu +nJC +aje +akd +eWX +aHZ +bTN +bTV +aks +akd +eWX +gXG +aks +aDB +anE +anE +anE +anE +bDw +anE +anE +anE +bDH +bDJ +bDH +anE +anE +aOk +ekM +hYZ +lId +aWO +bRZ +anE +agG +nJC +ahu +vzc +auJ +bEg +mZm +oCt +bxz +pCi +lLe +bwq +lLe +lLe +dMo +kzd +auJ +auJ +aEx +aEx +aEx +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(182,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +cPi +pdg +pdg +pdg +pdg +pdg +pdg +pdg +pdg +ajq +ajq +bhc +bhc +bhs +bhc +bhc +bhe +bhc +bhn +mTa +bdf +bdc +bdg +bdm +bdm +bdm +bds +bdm +bdm +bdm +bdm +bdm +beW +bgz +bgm +bgm +nhE +bgs +bgs +bgr +bgr +bgr +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgZ +bgZ +bhb +bhb +bhb +bgZ +bhg +bhg +bhg +bhh +bhh +bhh +bhh +bhh +bhh +bhg +bhg +bgZ +bhb +bhb +bhb +bgZ +bgZ +bgu +xzW +cZu +nJR +xWE +cZu +cZu +xFN +xoj +ajq +ajq +ylo +ylo +ylo +ylo +agD +ahm +ahm +ajc +sYk +ahu +ahu +nJC +aje +akd +bwc +aHZ +bTM +bTW +aks +akd +eWX +gXG +aks +aGY +anE +anE +bDs +uRs +rGC +wrX +anE +aMf +iav +hYZ +umo +aNE +anE +anE +anE +aHk +anE +anE +anE +anE +agG +nJC +ahu +pbS +auJ +hqv +aCs +bxw +fTK +fbs +bxF +auJ +wYP +aMi +gxb +kzd +auJ +bzM +bya +bvq +aEx +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(183,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +bhc +bhc +bhc +bhc +bhc +bhn +bhn +bhn +mTa +bdf +bdc +bdg +bds +bdm +bdm +bdm +bdp +bdm +beL +bdm +bdm +beW +bhW +bgm +bgm +nhE +bgs +bgs +bgs +bgy +ejL +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgZ +bTt +bhb +bhb +bhb +bTu +bhg +bhg +bhh +bhh +bhh +bhh +bhh +bhh +bhh +bhg +bhg +bTC +bhb +bhb +bhb +bTt +bgZ +bgu +mTa +aen +bdf +bhn +bdo +bgV +aen +aen +ajq +ylo +ylo +ylo +ylo +ylo +agD +ajc +aYy +dtd +nBi +mhq +ahu +nJC +aje +ajX +aMo +bTH +kBN +aHZ +aWn +ajX +rKN +gXG +aks +aHa +anE +anE +bDt +vAX +aXZ +aYl +anE +bDD +fOh +cnj +aMr +bDF +anE +bsT +xjw +hYZ +umo +jYD +bSa +anE +agG +nJC +ahu +pbS +auJ +bxo +byY +aMi +aMi +aMi +abw +auK +bxJ +aMi +gxb +kjH +auK +bxJ +aMi +ybq +bPe +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(184,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +bhc +bhc +bhn +bhn +bhn +bhn +bhn +mTa +bdf +bdc +bdg +bdm +bdm +bdm +bdm +bdm +bdm +bdm +beN +bdm +beW +aJm +bgm +bgm +nhE +bgs +bgs +bgs +bgs +bgs +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgZ +bTt +bhb +bhb +bhb +bTu +bhg +bhg +bhg +bhh +bhh +jJm +bhh +bhh +bhh +bhg +bhg +bTC +bhb +bhb +bhb +bTt +bgZ +bgu +mTa +bde +bhn +bhn +bhn +bgn +bdo +ajq +ajq +ylo +ylo +ylo +ylo +ylo +agD +agD +arJ +wYt +edy +llM +ahu +nJC +aWH +ajX +aMq +aHZ +lYO +wfK +wfK +bUc +wfK +pwO +aks +aFu +anE +anE +bRz +auf +bDy +kkR +anE +wkG +auf +aXg +auf +rdA +anE +bsU +aug +cnj +cqT +wrX +bSb +anE +agG +nJC +ahu +pbS +auJ +bxp +bxs +bjt +gEf +qAk +bxI +auK +bxJ +aMi +gxb +kjH +auK +bxJ +byb +aMi +ydU +auR +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(185,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +bhc +bhc +bhc +bhn +bhn +bhn +bgu +mTa +bdf +bdc +bdg +bdm +bef +bdm +bdm +bdm +bds +bdm +bdm +bdm +beW +bhW +bgm +bgm +nhE +bgs +bgs +bgs +sos +sos +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgZ +bTt +bhb +bhb +bhb +bTu +bhg +bhg +bhh +bhh +bhh +bhh +bhh +bhh +bhh +bhg +bhg +bTC +bhb +bhb +bhb +bTt +bgZ +bgu +mTa +bdn +bhn +bhn +bgn +bgn +bgn +ajq +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +arJ +arJ +hYo +lIY +ahu +nJC +aje +ajX +bxU +aHZ +xWm +bUx +lUI +ajX +iTL +gXG +aGz +ajX +anE +anE +anE +anE +anE +anE +anE +anE +anE +anE +anE +anE +anE +buw +aug +bDC +bRV +aOB +anE +anE +agG +nJC +ahu +pbS +auJ +auJ +auJ +auJ +auJ +buZ +auJ +auJ +bzJ +aMi +dqQ +hBF +auJ +rCb +vks +aMi +bzV +auR +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(186,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +bhc +bhc +bhn +bhn +bgn +bgv +mTa +bdf +bdc +bdj +bdm +bdm +bdm +beK +bdm +bdm +bdm +bdp +bdm +beW +bhW +bgm +bgm +nhE +bgs +bgs +bgr +bgr +bgr +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgZ +bgZ +bhb +bhb +bhb +bgZ +bhg +bhg +bhh +bhh +bhh +bhh +bhh +bhh +bhg +bhg +bhg +bgZ +bhb +bhb +bhb +bgZ +bgZ +bgu +mTa +aen +bdn +bhn +bgn +bgn +ajq +ajq +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +agD +hYo +llM +ahu +nJC +aje +akd +bDa +aHZ +uSc +bTM +aks +akd +eWX +gXG +gSu +tbc +tbc +tbc +tbc +tbc +ajX +aOL +tbc +aOP +aYZ +aLe +aLg +aLm +anE +aOn +auf +bRy +bRW +rdA +anE +wYt +odN +nJC +ahu +pbS +auK +mQF +bvo +tyb +aYE +aCg +aCg +auJ +rCb +aMi +dqQ +lLe +bxV +lLe +aMn +uJq +bzY +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(187,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +bhe +bhc +bhu +bhn +bgu +aen +mTa +bdf +bdc +bdk +bdt +bdt +bdt +bdt +bdt +bdt +bdt +bdt +beU +bfO +bhW +bgm +bgm +nhE +bgs +bgs +bgs +bld +bTs +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgn +bgZ +bhb +bhb +bgZ +bgZ +bgZ +bhg +bhg +bhg +bhh +bhh +bhg +bhh +bhg +bhg +bgZ +bgZ +bgZ +bhb +bhb +bgZ +bgn +bgv +mTa +aen +aen +bdn +bgn +bgn +ajq +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +agD +hYo +llM +ahu +ebE +aje +akd +bRI +aHZ +gXG +aHZ +aks +akd +eWX +gXG +aHZ +aHZ +aHZ +aHZ +aHZ +aHZ +bej +aHZ +aHZ +aHZ +aHZ +aHZ +aHZ +aks +anE +anE +anE +anE +anE +anE +anE +aWs +odN +nJC +ahu +pbS +auK +bxJ +aMi +aMi +aMi +uuu +lLe +bwz +lLe +lLe +rki +ezs +auJ +bvm +bvp +bvO +aEx +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(188,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +bht +bgn +bgn +bgu +aen +mTa +bdf +aJm +bdc +bdc +aJm +bdc +bdc +aJm +bdc +bdc +aJm +bdc +bdc +aJm +bgm +bgm +nhE +bgs +bgs +bgs +bgs +bgs +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgn +bha +bhb +bhb +bgZ +bhl +bgZ +caS +bhg +bhg +bhg +bhg +bhg +bhg +bhg +caS +bgZ +bhl +bgZ +bhb +bhb +bha +bgu +aen +mTa +aen +aen +aen +bdf +ajq +ajq +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +agD +hYo +llM +ahu +nJC +aje +akd +aMu +aHZ +gXG +bTX +dII +akd +eWX +fGV +wfK +wfK +wfK +wfK +wfK +wfK +aHJ +wfK +wfK +wfK +aCN +aHZ +aHZ +gSu +tbc +tbc +tbc +aLT +tbc +tbc +akd +skc +eUf +nJC +ahu +ntp +auJ +rCb +aMi +aMi +aMi +iQs +gpn +auJ +auJ +auJ +auJ +bxP +auJ +auJ +auJ +aEx +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(189,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +bgn +bgn +bgv +aen +mTa +bdn +bdq +bdq +bdq +bdq +bdq +bdq +bdq +bdq +bdq +bdq +bdq +bgn +aJm +bgm +bgm +nhE +bgs +bgs +bgs +bld +bTs +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgn +bha +bhb +bhb +bgZ +bhl +bgZ +bgZ +bgZ +bhg +bhg +bhg +bhg +bhg +bgZ +bgZ +bgZ +bhl +bgZ +bhb +bhb +bha +bgu +aen +mTa +aen +aen +aen +ajq +ajq +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +arJ +arJ +hYo +llM +ahu +nJC +aje +ajX +bCZ +rEG +pwO +gOP +ajX +ajX +aFA +aGe +oqI +oqI +oqI +aGe +aGe +ajX +ajX +iTL +aHZ +aHZ +gXG +aHZ +aHZ +aHZ +aHZ +aHZ +aHZ +tGr +aHZ +aHZ +bej +ahu +ahu +caG +dDj +dDj +baY +lLe +lLe +lCa +kdH +dMo +ujX +bwV +bwZ +auJ +bxN +gxb +swf +aCg +byc +auR +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(190,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +bgn +bgv +aen +aen +vyB +cZu +cZu +cZu +cZu +cZu +cZu +cZu +cZu +cZu +cZu +cZu +nbS +bdf +aJm +bgm +bgm +oBq +bgr +bgr +bgr +bgr +bgr +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgn +bha +bhb +bhb +bgZ +bhl +bhl +bhl +bgZ +bgZ +bTy +bTy +bTy +bgZ +bgZ +bhl +bhl +bhl +bgZ +bhb +bhb +bha +bgu +aen +mTa +aen +aen +aen +ajq +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +agD +agD +arJ +wYt +whe +sOq +ahu +nJC +phX +ajX +aMV +gXG +ptq +mgt +ajX +aOR +ost +aGg +aGE +aGE +aGE +aKb +ost +aOS +ajX +aIh +aHZ +aHZ +lYO +iuD +wfK +azG +wfK +wfK +wfK +wfK +aLW +aLW +aLW +mmp +dDj +azA +ahu +ahu +bwx +aMi +aMi +bjv +tSE +wsn +eRX +bwW +ydU +auJ +bxK +evv +uYe +aMi +byd +auR +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(191,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +aen +aen +aen +mTa +aen +aen +aen +bde +bdo +bdo +bgV +aen +aen +aen +bJE +mTa +bdf +bdc +bgl +bgm +nhE +bgm +bgm +bgm +bgm +bgm +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgn +bha +bhb +bhb +bgZ +bgZ +bgZ +bgZ +bgZ +bhb +bhb +bhb +bhb +bhb +bgZ +bgZ +bgZ +bgZ +bgZ +bhb +bhb +bha +bgu +aen +mTa +aen +aen +ajq +ajq +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +agD +ajc +aVD +dtd +duC +cJU +ahu +nJC +aje +ajX +vmJ +gXG +tja +bTZ +ajX +aOH +aFD +luQ +luQ +luQ +luQ +luQ +luQ +wnB +ajX +aIz +iTL +tja +wWr +fGU +aHZ +eVQ +oqI +oqI +oqI +oqI +oqI +oqI +akd +vQt +ulq +nJC +ahu +voo +auJ +wYP +aMi +aMi +aMi +aMi +kAq +aMi +tae +auJ +auJ +bxT +aMi +aMi +pUy +auR +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(192,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +aen +aen +vFJ +aen +bde +bdo +bgn +bhn +bhn +bgn +bdo +bgV +aen +aen +mTa +bdf +bdc +bgl +bgm +nhE +bgm +bgm +bgm +bgm +bgm +aDV +aJx +aJx +jNU +aJx +aJx +aJI +bgn +bgZ +bhb +bhb +qgR +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bgZ +inY +cZu +xoj +aen +ajq +ajq +apV +aki +aki +aki +apV +ylo +ylo +ylo +ylo +ylo +agD +agY +agY +ajc +sYk +ahu +ahu +nJC +aje +ajX +vmJ +gXG +rGu +xZB +xZB +xZB +wZg +wZg +wZg +xlF +wZg +wZg +wZg +xZB +xZB +xZB +eWX +bsB +aOD +bsG +aHZ +gqK +ajX +ajX +akd +akd +akd +ajX +ajX +aWs +odN +nJC +ahu +pbS +auK +bxJ +aMi +aMi +aMi +aMi +aMi +aMi +kjH +nSp +auJ +bvL +bxW +bxZ +aEx +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(193,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +aen +aen +aen +bdf +bhn +bhn +bhn +bhn +bhn +bhn +bgn +bdo +bgV +mTa +bdf +bdc +bgl +bgm +nhE +bgm +bgm +uPK +bgm +bgm +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgn +bgZ +bVD +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bhb +bVD +bgZ +wcB +aen +aen +ajq +ajq +apV +apV +bKH +bKJ +bKL +apV +apV +ylo +ylo +ylo +ylo +arJ +aXx +aXT +aBT +sYk +ahu +ahu +nJC +aje +ajX +ajX +bUh +ajX +xZB +xZB +xZB +akv +akv +akv +akv +akv +akv +akv +xZB +xZB +xZB +eWX +bsB +gok +bsG +aHZ +gqK +ajX +iGT +tbc +tbc +tbc +vdt +ajX +wYt +odN +nJC +ahu +pbS +auK +bvn +bwi +tBI +bxx +aMi +uJq +qAk +kad +jfW +aEx +auR +auR +auR +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(194,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +aen +bde +bgn +bgn +bhn +bhn +bhn +bhn +bhn +bhn +bhn +bgu +mTa +bdf +bdc +bgl +bgm +gGT +sjL +sjL +wvx +sjL +sjL +hCJ +vCj +vCj +jHa +aJx +aJx +aJI +bgn +bgZ +bgZ +bgZ +bha +bha +bha +bha +bgZ +bgZ +bTz +bTA +bTB +bgZ +bgZ +bha +bha +bha +bha +bgZ +bgZ +bgZ +wcB +aen +ajq +ajq +apV +apV +bKG +bKI +aUP +bKM +ovc +apV +apV +ylo +ylo +ylo +agD +ahm +ahm +ajc +sYk +ahu +ahu +nJC +aje +ajX +vfK +gXG +aks +xZB +xZB +xZB +anx +anx +anx +aZL +anx +anx +anx +xZB +xZB +xZB +lHk +aOW +bsE +vsu +iTL +gqK +akd +dzB +aHZ +aHZ +aHZ +sBV +ajX +ajX +odN +nJC +ahu +pbS +auJ +auJ +auK +auK +auJ +wsQ +auJ +auK +auK +auJ +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(195,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +bgn +bgn +bgn +bgn +bhn +bhn +bhn +bhn +bhn +bhn +bgu +mTa +bdf +aJm +bgo +bgq +bgq +bgq +bgq +bgq +bgq +bgq +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgn +bdq +bdq +bdq +bdq +bdq +bdq +bdq +bgn +bgZ +bgZ +bgZ +bgZ +bgZ +nds +jBx +jBx +jBx +gRg +gRg +gRg +gRg +ehC +ajq +ajq +apV +apV +bKE +sor +amG +amG +amG +amQ +jGa +apV +apV +ylo +ylo +agD +ajc +aYy +dtd +llM +qUI +ahu +nJC +aWH +ajX +aWb +gXG +gSu +uGI +akv +anx +bUg +fgs +fgs +fgs +fgs +fgs +jmQ +anx +akv +ajX +ajX +ajX +ajX +ajX +eWX +gqK +akd +eWX +aHZ +bUr +aHZ +bZN +uag +akd +odN +nJC +ahu +wJM +aCg +aCg +aCg +aCg +rCb +aMi +ybq +aCg +aCg +rlG +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(196,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +bgn +bgn +bgn +bgn +bhn +bhn +bhn +bhn +bgn +bgv +mTa +bdf +aJm +aJm +bdc +bdc +aJm +aJm +bdc +bdc +aJm +aJm +aJx +aJx +jNU +aJx +aJx +aJI +bgu +bJE +aen +aen +aen +aen +aen +aen +bdn +bdq +bdq +bdq +bdq +bdq +nrO +aen +aen +aen +bdf +bgn +bgn +bgn +ajq +ajq +ylo +aki +aUO +isY +amG +amG +hvz +amG +amG +drC +lQr +aki +ylo +ylo +agD +agD +arJ +brF +llM +ajc +ahu +nJC +aje +ajX +mwk +gXG +cLh +hPL +akd +anx +sip +agB +ahh +ahU +aiC +ajF +egZ +anx +akv +akr +tbc +jPe +oOz +akd +rKN +gqK +akd +eWX +aHZ +bUv +aHZ +tja +kSx +akd +odN +nJC +ahu +ajc +aMi +aMi +uJq +hEH +qAk +qAk +qAk +qAk +wYP +kjH +aEx +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(197,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +bgn +bgn +bgn +bgn +bgn +bhn +bgn +bgv +aen +mTa +bdn +bdq +bdq +bdq +bgn +bgn +bdq +bdq +bdq +bdq +bgn +aJn +aJx +tMX +vCj +vCj +gWU +xWE +cZu +cZu +dBy +jwv +jwv +jwv +pVo +cZu +cZu +ejl +cZu +cZu +cZu +xoj +bde +bdo +bdo +bhn +bhn +bhn +ajq +ajq +ylo +ylo +aki +iZZ +saV +amG +amG +bKK +amG +wIY +saV +pDt +aki +ylo +ylo +ylo +ylo +arJ +arJ +arJ +tRM +ahu +nJC +aje +ajX +iqE +lib +aku +lIX +akd +anx +sip +agE +ahj +aif +aiM +ajO +egZ +anx +akv +pWE +rEG +wfK +wfK +lyd +wfK +eKV +ajX +rKN +aHZ +bUt +aHZ +aks +ajX +ajX +odN +nJC +ahu +wQG +qAk +wYP +fsn +aCs +aCs +aCs +aCs +aCs +bxJ +pxj +dxB +auR +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(198,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +ajq +bgn +bgn +bgn +bdq +bgv +opW +aen +vyB +cZu +cZu +cZu +cZu +nJR +xWE +cZu +cZu +cZu +cZu +nJR +rZR +vCj +jHa +aJx +aJx +aJI +bgu +aen +bde +bhn +bgn +bhn +bhn +bgn +bgV +aen +mTa +aen +aen +bde +bdo +bgn +bhn +bhn +bhn +ajq +ajq +ajq +ylo +ylo +ylo +aki +iZZ +saV +amG +amG +vLb +amG +amG +saV +pDt +aki +ylo +ylo +ylo +ylo +ylo +ylo +arJ +auv +ahu +nJC +aje +ajX +dmD +gXG +cLh +alz +akd +anx +sip +agP +ahI +air +aiN +ajW +egZ +anx +noY +aHZ +gXG +aHZ +tja +akd +iTL +fGV +bZp +wfK +wfK +lIW +aHZ +bZN +uag +akd +odN +nJC +ahu +pbS +auJ +bxJ +kqE +aCs +wvG +oGI +bwP +aCs +bxJ +pxj +dxB +auR +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(199,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +bgn +bgu +aen +aen +aen +aen +vFJ +aen +aen +bde +bdo +bhn +bgn +bgV +aen +aen +aen +bdf +aJn +aJx +jNU +aJx +aJx +aJI +bgn +bdo +bhn +bhn +bhn +bhn +bhn +bhn +bgn +bgV +vFJ +aen +aen +bdf +bhn +bhn +bhn +bhn +ajq +ajq +ylo +ylo +ylo +ylo +ylo +aki +bKD +bKF +rvD +jVn +vLb +iXU +ats +bKF +ksX +aki +ylo +ylo +ylo +ylo +ylo +ylo +arJ +auv +ahu +nJC +aje +ajX +dex +cuo +aku +hyY +akd +anx +sip +ahb +ahK +ais +aiP +ajY +egZ +anx +akv +iTL +rpi +aHZ +aWB +ajX +ajX +ajX +ajX +iTL +aHZ +dxx +aHZ +tja +ucW +akd +odN +nJC +ahu +vzc +auJ +bEg +kjH +aCs +bxB +iPo +bxB +aCs +bxJ +kjH +dxB +auR +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(200,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +ajq +aen +aen +aen +aen +aen +aen +bde +bhn +bhn +bhn +bhn +bgn +bgV +aen +bJE +bdf +aJn +aJx +jNU +aJx +aJx +aJI +bgn +bdq +bgn +bhn +bhn +bhn +bhn +bhn +bhn +bgn +bgV +aen +bde +bhn +bhn +bhn +ajq +ajq +ajq +apJ +apJ +apJ +apJ +apJ +apJ +apV +akl +akl +akl +sor +vLb +amQ +akl +akl +akl +apV +arJ +agD +agD +agD +agD +arJ +arJ +cWX +ahu +nJC +aje +ajX +sRI +aHZ +cLh +tZT +akd +anx +sip +ahe +ahT +aiy +ajl +aka +egZ +anx +akv +eWX +aHZ +tGr +gSu +ajX +bUm +bUm +ajX +rhu +aHZ +bUs +aHZ +aks +ajX +ajX +odN +nJC +ahu +pbS +auJ +bxJ +kjH +aCs +sVo +bxB +sVo +nqE +bxJ +jcl +aEx +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(201,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +ajq +aen +aen +aen +aen +bdf +bgn +bhn +bhn +bhn +bhn +bgu +aen +aen +bdf +aJn +aJx +jNU +aJx +aJx +aJI +bgu +aen +bdn +bgn +bhn +bhn +bhn +bhn +bgn +bgn +bgu +aen +bdf +bhn +ajq +ajq +ajq +aSa +aSa +apJ +agH +agH +agH +agH +agH +akk +amG +aUQ +amG +amG +vLb +amG +amG +aUQ +amG +ant +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +nJC +aje +ajX +gUe +aHZ +tja +xUr +akv +aZN +mzn +wet +wet +wet +wet +wet +eNn +rMX +akv +jwx +iTL +aHZ +aHZ +exz +luQ +ffl +ajX +mUu +aHZ +imK +aHZ +bZN +uag +akd +odN +nJC +ahu +wJM +aCg +rCb +kjH +aCs +bwP +iPo +wvG +aCs +bxJ +kjH +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(202,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +ajq +aen +bde +bgn +bgn +bgn +bgn +bhn +bgn +bgv +aen +aen +bdf +aJn +aJx +jNU +aJx +aJx +aJI +bgu +aen +aen +bdf +bgn +bgn +bhn +bgn +bgn +bgn +bgn +bdo +ajq +ajq +ajq +ylo +ylo +aSa +apJ +apJ +agH +amT +mYQ +mYQ +mYQ +akn +rDr +rDr +rDr +qeC +snU +qeC +rDr +rDr +rDr +azl +dDj +dDj +aCw +dDj +dDj +dDj +dDj +dDj +dDj +azA +aje +ajX +mvM +oqI +dII +xZB +xZB +xZB +anx +anx +anx +anx +anx +anx +anx +xZB +xZB +xZB +eWX +aHZ +tja +ajX +upN +luQ +ajX +eWX +aHZ +aHZ +aHZ +tja +jPL +akd +odN +nJC +ahu +wQG +qAk +wYP +kjH +aCs +qLz +iPo +qLz +aCs +bxJ +pZt +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(203,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blX +blW +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +ajq +bgn +bgn +bgn +bgn +bgn +bgv +aen +aen +aen +bdf +aJn +aJx +jNU +aJx +aJx +aJI +bgu +aen +aen +bdn +bgn +bgn +bgn +bgn +bgn +bgn +ajq +ajq +ajq +aSa +aSa +apJ +apJ +apJ +apJ +arG +agH +oxr +akl +akl +akl +akl +akl +akl +bZv +sJe +amG +epg +bZv +akl +akl +akl +akl +akl +akl +apV +arJ +arJ +arJ +ajc +ahu +nJC +aje +ajX +ajX +vic +vic +xZB +xZB +xZB +mYS +mYS +mYS +mYS +mYS +mYS +mYS +xZB +xZB +xZB +kat +aWW +jwE +ajX +bUm +bUm +ajX +stg +xlR +fnz +sTt +icZ +ajX +ajX +odN +nJC +ahu +pbS +auJ +bxJ +bGP +aCs +oGI +bxB +iPo +nqE +bxJ +jcl +aEx +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(204,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ajq +ajq +ajq +ajq +bgn +bgu +aen +aen +aen +aen +bdf +aJn +aJx +jNU +aJx +aJx +aJI +bgu +aen +aen +aen +bdf +bgn +bgn +ajq +ajq +ajq +ajq +ylo +ylo +aSa +apJ +apJ +agH +amT +mYQ +mYQ +mYQ +aDn +akl +bjm +aVg +gZF +amw +akl +akl +amU +amG +rXs +akl +akl +amw +anz +aUJ +amn +iBs +aki +ylo +ylo +arJ +ajc +ahu +nJC +kTx +gXM +ajX +ajX +ajX +xZB +xZB +bow +ulq +ahu +ahu +ahu +ahu +ahu +xSL +xZB +xZB +xZB +ajX +ajX +ajX +ajX +ajX +ajX +ajX +ajX +ajX +ajX +ajX +ajX +ajX +vjA +odN +nJC +ahu +vzc +auJ +bEg +kjH +aCs +buY +oGI +buY +aCs +bxJ +kjH +dxB +auR +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(205,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ajq +ajq +ajq +ajq +ajq +ajq +aen +bdf +rLp +aJx +jNU +aJx +aJx +bnW +bgu +bJE +ajq +ajq +ajq +ajq +ajq +ajq +aSa +ylo +ylo +apJ +apJ +apJ +apJ +arG +agH +oxr +agH +agH +aTz +agH +akl +amk +xBK +hvZ +gBh +dfg +akl +amU +amG +aUY +akl +wvZ +gBh +fWx +amk +amn +asW +aki +ylo +ylo +arJ +ajc +ahu +nJC +ahu +giX +skc +skc +tHR +skc +skc +skc +eUf +ahu +ahu +ahu +ahu +ahu +kTx +skc +skc +skc +skc +tHR +skc +skc +skc +skc +qEe +skc +skc +skc +skc +tHR +skc +gRf +eUf +nJC +ahu +pbS +auJ +bxJ +kjH +aCs +bwP +oGI +bwP +aCs +bxJ +kjH +dxB +auR +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(206,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +aSa +ylo +ylo +qSi +qSi +atJ +atJ +qSi +ajG +gak +ajG +avt +aph +xKu +xKu +aph +ylo +ylo +aSa +ylo +ylo +aSa +ylo +ylo +apJ +amT +mYQ +mYQ +cVq +mYQ +aDl +ajB +ajB +ajB +ajB +ajB +amn +aUD +amE +akl +aHg +akl +dqu +amG +tCI +akl +aHg +akl +bjm +aVd +bjm +apV +apV +ylo +ylo +arJ +ajc +ajc +azB +dDj +xlU +dDj +dDj +dDj +dDj +dDj +dDj +dDj +fWK +dDj +dDj +dDj +dDj +dDj +dDj +mmp +mmp +dDj +dDj +dDj +dDj +dDj +dDj +dDj +dDj +dDj +dDj +mmp +dDj +dDj +xlU +dDj +aCp +ahu +wJM +aCg +rCb +kjH +aCs +aCs +aCs +aCs +aCs +bxJ +kjH +dxB +auR +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(207,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +aSa +ylo +ylo +qSi +axP +axW +aya +ayc +hEt +pgV +atQ +ryR +atI +ayJ +ayY +aph +aph +aph +apl +ajr +ajr +apl +ylo +ylo +apJ +oxr +agH +agH +aTz +agH +oxr +ajB +aYj +aUx +aYj +ajB +akl +akl +akl +akl +svn +rDr +rhr +amG +svn +rDr +rhr +akl +akl +akl +akl +apV +ylo +ylo +ylo +arJ +arJ +ajc +ajc +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +nJC +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ajc +aMi +aMi +ybq +aCg +aCg +aCg +aCg +aCg +rCb +kjH +aEx +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(208,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +aSa +ylo +ylo +qSi +axT +axZ +iiX +ayc +anv +atQ +atQ +anv +atI +ayL +ayZ +azj +azj +azD +apl +aDo +ajs +apl +apl +apJ +apJ +oxr +agH +ajB +ajB +ajB +aDD +ajB +aDG +mTF +ake +ajB +amq +aUE +amH +akl +aHg +akl +sJe +amG +epg +akl +aHg +akl +amn +aVe +amE +apV +apV +ylo +ylo +aSa +arJ +arJ +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +ajc +nJC +ahu +ajc +ajc +ajc +ajc +ajc +ajc +ajc +lIq +ahu +ahu +eNI +gZs +gZs +gZs +xld +gZs +vXy +ahu +ahu +ahu +ajc +ajc +ajc +aYy +wQG +qAk +qAk +qAk +qAk +qAk +qAk +qAk +qAk +qAk +kad +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(209,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +alx +aex +aex +aex +aex +alx +ylo +alx +aex +aex +aex +aex +alx +ylo +aog +aog +aiJ +aiJ +aog +aiJ +aiJ +qSi +axT +axX +iiX +ayc +ryR +atQ +jGH +ifS +atI +ayP +azb +azb +azb +azF +apl +ajt +ajs +aME +ajy +ajz +agH +oxr +agH +ajB +aYd +ajE +ldN +vHU +vHU +fhb +ake +ajB +amr +amk +hvZ +gBh +xWS +akl +buV +amG +rXs +akl +hKt +gBh +fWx +amk +asT +amB +aki +ylo +ylo +aSa +ylo +arJ +arJ +auC +auy +arJ +arJ +arJ +arJ +arJ +aWs +ajc +nJC +ahu +ajc +okE +arJ +arJ +arJ +gZs +gZs +dCP +dCP +dCP +pRX +xJc +vaj +vaj +vaj +tRA +nBi +dCP +dCP +dCP +tlP +tlP +arJ +arJ +arJ +aEx +aEx +aEx +aEx +bxa +bwR +pAM +aEx +aEx +aEx +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(210,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +alx +alx +aeV +aeV +aST +aeV +alx +alx +alx +aeV +aeV +aTt +aeV +alx +aog +aog +axI +avn +avn +axL +avn +avn +qSi +axR +axX +iiX +qSi +ajG +ajG +gak +aBF +aph +ayQ +azb +azn +azt +azH +apl +ajt +ajs +aME +ajy +ajz +agH +oxr +aUi +ajB +ajB +ajB +ake +ajB +aHf +ajB +aHf +ajB +ams +bvQ +amw +bvx +akl +akl +amU +amG +rXs +akl +akl +amw +bjm +bvQ +amB +apV +apV +ylo +ylo +aSa +ylo +ylo +arJ +agD +agD +arJ +ylo +ylo +ylo +arJ +asJ +moU +uJr +asZ +moU +asJ +arJ +ylo +arJ +bsx +hPg +ajc +aBT +ajc +hPg +wYt +arJ +agD +arJ +wYt +hPg +ajc +aBT +ajc +hPg +bsx +arJ +ylo +ylo +ylo +ylo +ylo +aEx +auR +auR +auR +aEx +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(211,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +alx +bHL +aeV +aSP +xMg +aeV +bIk +afJ +aDX +aeV +aSP +xMg +aeV +bSW +avj +ahf +axK +lMU +lMU +aCV +lMU +lMU +aHd +avH +ajQ +iiX +xDC +aye +agH +oxr +ayt +aud +ayT +azc +azq +azb +azI +ahw +aTW +tpH +ajs +ajy +wye +agH +oxr +pTD +ajB +aYe +ajE +ake +ajB +aYk +ajB +aYk +ajB +akl +akl +akl +akl +akl +xPw +amU +amG +rXs +bru +akl +akl +akl +akl +akl +apV +ylo +ylo +ylo +aSa +ylo +ylo +aSa +ylo +ylo +aSa +ylo +ylo +ylo +ylo +atd +vtq +uJr +asZ +vtq +atd +ylo +ylo +arJ +arJ +tpM +auw +aXT +aux +pkP +arJ +arJ +ylo +arJ +arJ +tpM +auw +aXT +ois +pkP +arJ +arJ +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(212,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +alx +aeC +aeV +aSR +aeV +aeV +vBS +iSB +aeC +aeV +aTk +aeV +aeV +vBS +avj +hQf +atX +wJq +bTj +tXB +bTj +bcw +qSi +rvC +mUE +sJr +wWW +nnx +agH +oxr +ayu +atI +ayV +aze +azq +azb +azJ +ahw +ajt +aDs +aDt +agu +mYQ +mYQ +aDl +pTD +ajB +ajB +ajB +ajB +ajB +ajB +ajB +ajB +ajB +fkV +kKs +wXE +jvC +ydY +amG +amU +amG +rXs +amG +akl +rMU +rMU +rMU +rMU +apV +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +ylo +ylo +ylo +ylo +atd +vtq +uJr +asZ +vtq +atd +ylo +ylo +ylo +agD +ajc +auw +aYu +aux +ajc +agD +ylo +ylo +ylo +agD +ajc +auw +aYH +aux +ajc +agD +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(213,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +alx +pFX +aeV +aSP +xMg +aeV +gPC +iSB +oVM +aeV +aSP +xMg +aeV +hqa +avj +vhS +atX +bSK +qaG +bSG +qaG +ofq +qSi +axS +jnt +kof +xDC +agC +agH +oxr +ayw +atI +ayW +azb +azq +azb +azL +ahw +ajt +iAD +ajs +ahw +tsb +agH +oxr +pTD +add +brt +aUo +adN +buq +byu +but +bun +add +akl +akl +akl +akl +akl +xPw +amU +lGo +rXs +pgf +akl +akl +akl +akl +akl +apV +ylo +ylo +ylo +aSa +ylo +ylo +aSa +ylo +ylo +aSa +ylo +ylo +ylo +ylo +atd +vtq +uJr +asZ +vtq +atd +ylo +ylo +ylo +agD +agD +agD +arJ +agD +agD +agD +ylo +ylo +ylo +agD +agD +agD +arJ +agD +agD +agD +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(214,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +bmB +aSa +ylo +akj +akj +bmj +bmj +akj +akj +ylo +ylo +ylo +ylo +ylo +alx +aeC +aeV +dkK +aeV +aeV +vBS +iSB +aeC +aeV +qWQ +aeV +aeV +vBS +avj +avj +cMv +ajL +aSx +ajL +aSx +ajL +qSi +atJ +atJ +atJ +atJ +ayf +agH +oxr +ayw +aud +ayX +azh +azq +azb +azM +ahw +ahw +ahw +ahw +ahw +brr +agH +oxr +pTD +adt +bun +qlx +cXH +cXH +xmh +adN +aXa +add +amt +aUE +amI +amM +akl +akl +amU +lGo +rXs +akl +akl +amA +amE +aVg +bjm +apV +apV +ylo +ylo +aSa +asK +asK +asK +atg +atg +asK +ylo +ylo +ylo +asJ +asJ +jEI +uJr +asZ +eym +atG +atG +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(215,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +bmB +aSa +aSa +akj +ybQ +aSz +aSB +gkC +akj +alx +aex +aex +aex +alx +alx +bGE +aeV +lFq +xMg +vsg +gPC +iSB +oVM +aeV +lFq +xMg +aeV +gPC +avj +gJS +atX +bSM +avn +avn +avn +avn +avn +avn +oks +rKG +avj +qFJ +agH +oxr +ayw +aud +aud +aud +azq +azx +aud +ajj +aDp +bQa +bQc +ajj +qIw +agH +oxr +pTD +adt +buo +uov +dKn +buq +buo +bus +bup +add +amu +amk +hvZ +gBh +dfg +akl +buV +lGo +nzR +akl +wvZ +gBh +fWx +qtf +amk +akm +aki +ylo +ylo +aSa +asK +bMT +bMX +gZj +oOH +asK +asK +asK +asK +asJ +lzI +hWg +uJr +asZ +moU +drW +atG +atG +atG +atG +atG +atG +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(216,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +bmB +aSa +ylo +akj +ybQ +aSB +aSB +gkC +akj +aes +aRr +akp +fRD +sxJ +alx +aeC +aeV +bIe +qjf +aeV +vBS +afJ +aeC +aeV +xvE +vsg +aeV +jFJ +apA +mPg +atX +fWN +fWN +fWN +fWN +fWN +fWN +iJB +bTj +bSM +agx +tmv +agH +oxr +dNC +mLL +mLL +aTE +oxr +agH +ayw +ajj +bPM +ayN +hcH +bbe +mYQ +mYQ +aDl +pTD +adt +bup +uov +sAj +add +add +add +add +add +bZt +aUF +bjm +akl +aHg +akl +nAa +lGo +tCI +akl +aHg +akl +amD +aVf +bjm +apV +apV +ylo +ylo +asK +asK +btV +btY +aNg +bua +uyd +bub +bNr +atk +ohe +asY +fJf +aCC +pfQ +pfQ +vEM +aMM +aMO +hYI +bQK +uRU +atG +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(217,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +akj +bmo +rTb +pSp +pSp +pfz +hnr +hnr +hnr +hnr +hnr +hnr +aeD +aeV +xvE +aeV +aeV +jFJ +hnr +aeD +aeV +xvE +aeV +vsg +vsg +avl +avl +miJ +avl +avl +avl +avl +nSP +gOZ +avl +avl +avl +jJt +agH +agH +oxr +agH +agH +agH +agH +oxr +agH +ayw +ajj +bPO +xiW +bQd +ajj +tCs +agH +oxr +bpS +add +aDz +uov +adN +gxu +adP +jJv +adP +add +akl +akl +akl +akl +svn +rDr +cPR +amG +svn +rDr +rhr +akl +akl +akl +akl +apV +ylo +ylo +ylo +atg +qmD +aNc +aNg +aNg +aNg +aNg +buc +bNs +atk +hWg +asZ +aCB +aCG +asZ +aCy +aMW +atB +bPk +aMX +sbs +bQA +atG +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(218,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +blY +ylo +ylo +akj +rTo +bmp +fWe +vZD +vZD +ckY +ckY +ckY +ckY +ckY +ckY +ckY +ckY +qys +ckY +ckY +ckY +ckY +ckY +ckY +qys +ttK +ckY +ckY +ayl +ayl +xoG +ayl +ayl +ayl +ajA +ayl +ayl +ayl +ayl +ayl +ayl +mYQ +ayk +krR +mYQ +mYQ +mYQ +mYQ +krR +azz +ayw +ajj +bPY +bQb +bQo +ajj +gRB +agH +oxr +agH +aDy +adN +rqg +cXH +bUl +cAX +jJp +gqH +add +bjq +aUJ +amB +akl +aHg +akl +lCq +amG +epg +akl +aHg +akl +amw +aVg +asU +apV +apV +ylo +ylo +atg +brg +btW +aNg +nOP +oTq +nOP +aNg +bNt +atp +hWg +asZ +uJr +asZ +asZ +bQF +tSG +atB +bPl +aMX +aZS +bQO +atG +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(219,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +bmB +aSa +ylo +akj +rTo +rAc +nOj +bmp +bmp +aeV +aeV +aeV +aeV +aeV +aeV +aeV +aeV +aeV +aeV +aeV +aeV +aeV +aeV +aeV +aeV +xvE +aeV +fSB +apA +avo +bTj +lGq +oEu +eqa +aho +lGq +oEu +eqa +bTj +dml +agx +mwo +mwo +mwo +mwo +mwo +mwo +nnx +agH +oxr +ayw +ajj +ajj +ajj +ajj +ajj +aTF +nbn +iBo +mYQ +cXH +cXH +pIj +adN +gxu +bsI +bsN +sNO +add +amw +eaN +hvZ +gBh +xWS +akl +dqu +amG +eXS +akl +hKt +gBh +fWx +amk +amn +feC +aki +ylo +ylo +atg +bMS +aNc +aNg +bMY +bNh +nOP +bud +vzp +atp +hWg +asZ +uJr +myt +rAm +bQF +fTw +atB +bQw +hzM +aMW +bQC +atG +aSa +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(220,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +aSa +aSa +bmB +aSa +aSa +akj +rTo +bmp +nOj +mFp +jno +leJ +leJ +bGB +leJ +leJ +leJ +leJ +leJ +leJ +leJ +leJ +leJ +bGB +lCr +aeV +aeV +xvE +aeV +vBS +avj +aSs +nUU +lVx +uVH +ajH +bCL +hSr +ajI +ajH +tBT +aAQ +agj +agj +agj +agj +agj +agj +agj +agC +agH +oxr +dNC +mLL +fha +aUd +fmZ +aju +qIw +nbn +oxr +nZN +add +bFc +uov +aUt +add +add +add +sNO +add +bjm +aZq +amJ +amE +akl +akl +anb +apY +anb +akl +akl +amA +amE +bvQ +bjm +alw +apV +ylo +ylo +asK +asK +aNc +qFA +bMR +bNi +nOP +aNg +bNu +atp +hWg +asZ +uJr +aWw +att +att +att +att +att +att +att +att +auz +auz +auz +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(221,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +aSa +bmB +aSa +ylo +akj +rTo +bmp +nOj +lFP +bmF +afJ +alx +afJ +iSB +iSB +iSB +afJ +afJ +iSB +iSB +iSB +afJ +afJ +afJ +wJA +wJA +aVV +wJA +cGF +avj +aog +aog +agx +agx +agx +aog +agx +agx +agx +aog +aog +agj +ayg +ayn +ayp +ayx +ayy +agj +agC +agH +uDh +mYQ +mYQ +mYQ +mYQ +mYQ +mYQ +nxP +nxP +aDl +pTD +adt +bun +uov +bun +add +bys +adP +gsg +add +akl +akl +akl +akl +akl +amx +rKa +amz +rKa +xHm +akl +akl +akl +akl +alw +alw +apV +apV +apV +apV +asK +aNe +aNg +aNg +xMA +gCN +aNg +aLC +atk +hWg +asZ +uJr +atm +att +aGT +cyK +txK +wOX +att +aXz +bug +aXh +rgm +auz +auz +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(222,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +aSa +ylo +ylo +blY +ylo +ylo +akj +rTo +bmp +nOj +pfG +bmF +akz +akz +aeQ +aff +aff +aff +pMZ +nuq +aff +aff +aff +aff +aeU +aOJ +wyz +wyz +nSA +wyz +aOJ +aeU +wDC +wDC +wDC +wDC +wDC +rCA +wDC +wDC +wDC +wDC +wDC +agj +ayi +ahM +ahM +ahM +ayA +agj +tmv +agH +oxr +agH +agH +agH +agH +agH +agH +agH +agH +oxr +pTD +adt +byu +rjT +buo +add +byt +adP +sNO +add +bZu +amy +mfw +dwr +mvS +mfw +rKa +amz +rKa +mvS +mfw +dwr +mvS +iKn +alw +alC +alY +aXB +and +hva +asK +bMU +aVQ +aNg +xMA +xiy +bNq +bsd +atk +avM +asZ +aCC +pfQ +aGP +iZv +cJW +gjj +xvB +att +ixd +buh +aNs +vjW +gnF +auz +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(223,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +akj +npm +npm +npm +npm +npm +akj +rTo +bmp +nOj +lFP +akj +akz +bmd +qkw +fEC +fEC +fEC +fEC +fEC +fEC +fEC +fEC +fEC +fEC +fEC +fEC +fEC +hAB +fEC +fEC +aRU +fEC +fEC +fEC +fEC +fEC +fEC +fEC +fEC +fEC +nNq +aeB +aps +ahM +ahM +ahM +ahM +ahM +wah +agH +nbn +oxr +mxa +aru +bSZ +aWj +bTb +aru +ybJ +agH +oxr +pTD +adt +bup +adN +bup +add +aHX +adP +sNO +add +amx +aAe +mEd +mEd +mEd +mEd +aDa +aDc +aDa +mEd +mEd +mEd +aDf +xHm +alw +aXl +hva +hva +ane +hva +atk +atk +atk +aNg +aNm +atk +atk +atk +atk +hWg +asZ +uJr +myt +att +riC +mHd +aHv +sLF +atv +ixd +aNs +aNt +aNs +ozH +aXw +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(224,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +akj +aRp +aRp +aRp +aRp +aRp +bmj +rTo +bmp +nOj +bmA +bmF +bmc +rwF +vkW +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +vkW +tLa +agj +ayj +ayj +ayq +ahM +ayE +agj +nnx +nbn +mbI +agd +arB +arM +ash +arM +asI +gNt +agH +oxr +ate +add +buq +bur +bus +add +byv +dlU +rYq +add +aUB +rKa +iDB +nXY +uLN +nXY +nXY +aUV +hva +iDB +nXY +fHP +rKa +aVh +alw +alE +ama +amV +anh +hva +aoj +aoD +fJf +asZ +uJr +atm +asY +asY +asY +fJf +asZ +uJr +xZc +atv +aGW +mHd +aHv +sLF +atv +bEb +fyM +gyg +aNs +ozH +aXw +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(225,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +akj +akj +aRp +aRp +aRp +aRp +aRp +bmj +rTo +opi +nOj +bmp +bms +aeB +aeB +vkW +aeB +aeB +afi +afv +afC +afC +afE +afG +afv +afC +afL +afS +afv +afV +afX +afS +afv +afC +afL +afS +ajh +ajJ +afL +afS +afi +aeB +vkW +lJR +agj +agj +agj +bCN +ahM +ayF +agj +agC +agH +iBo +dvp +arC +arT +arC +asn +asL +gNt +agH +oxr +pTD +add +add +add +add +add +add +aHY +add +add +amx +rKa +amK +amN +amN +amN +amN +amN +avR +amN +amN +xJH +rKa +xHm +alw +alG +amd +amd +anl +amz +amz +amz +asZ +asZ +uJr +asZ +asZ +asZ +asZ +asZ +asZ +uJr +xZc +atv +aGW +mHd +aHv +sLF +atv +bEb +aNs +lQw +aNs +akW +aXw +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(226,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +akj +bmC +aRp +aRp +aRp +aRp +aRp +akj +bmx +bmp +hws +vZD +pSb +fEC +fEC +xBa +aeB +aeB +afk +aeE +aeJ +aeJ +aeJ +aeJ +aeJ +aeJ +aeJ +aeJ +aeJ +aeJ +afn +aeJ +aeJ +aeJ +aeJ +aeJ +aeJ +aeJ +aeJ +afN +ajT +aeB +vkW +aeR +agj +atP +agj +ayr +aTr +ayI +agj +agC +agH +oxr +agd +arE +arZ +asi +asi +asM +gNt +agH +oxr +bpS +jWE +jWE +jWE +jWE +jWE +wye +oxr +bpS +jWE +mfw +rKa +amK +amN +bkC +bDU +ana +aUW +amW +jmg +amN +xJH +rKa +mvS +amy +mfw +hva +hva +hva +amz +aAe +mEd +pfQ +pfQ +iJv +bXh +pfQ +pfQ +pfQ +pfQ +pfQ +aCD +xZc +atv +aGW +txp +dBx +ces +att +aWZ +aNs +nLX +bui +buj +auz +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(227,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +akj +bmC +aRp +aRp +aRp +aRp +aRp +bmk +bmp +bmp +nOj +bmp +bms +aeB +aeB +vkW +aeB +aeB +afl +aeF +afi +aeN +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +aeN +afi +eDz +ajU +aeB +vkW +aeR +agj +atP +agj +atT +bcy +atT +agj +qFJ +agH +oxr +qVF +pxH +jLT +aWl +hfG +pxH +hwV +agH +oxr +agH +agH +nbn +nbn +nbn +agH +agH +oxr +agH +agH +amz +rKa +amK +aNH +amS +atW +gYA +eqg +amW +mBp +aNH +xJH +rKa +amz +amz +amz +amz +amz +amz +amz +rKa +hva +aCy +nwL +aVE +nwL +pue +nwL +nwL +nwL +aWt +uJr +xZc +att +aWF +leI +fQm +aWP +att +nkz +aNr +nLX +csM +oPu +auz +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(228,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +akj +akj +aRp +aRp +aRp +aRp +aRp +akj +bmn +bmp +nOj +bmp +bms +aeB +aeB +vkW +aeB +aeB +afm +aeF +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +eDz +ajV +aeB +aSQ +aeU +agj +agj +agj +bnV +aTs +wss +bnZ +tmv +agH +uDh +nxP +mYQ +mYQ +mYQ +mYQ +mYQ +mYQ +mYQ +krR +hhT +mYQ +mYQ +mYQ +nxP +nxP +mYQ +krR +mYQ +mYQ +mEd +uXw +amK +aNH +amS +fog +eJz +usD +auu +qxB +aNH +xJH +azm +mEd +mEd +mEd +mEd +mEd +mEd +mEd +eQR +hva +atl +atl +atl +atl +atl +atl +bou +atl +atl +aEM +atl +atl +aGX +txp +dKv +qaf +att +att +att +aNu +att +att +auz +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(229,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +bmj +aRp +aRp +aRp +aRp +aRp +bmj +bqO +bmp +nOj +bqR +bnw +tov +aeI +vkW +aeB +aeB +afp +aeF +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +eDz +akb +aeB +vkW +aOJ +ayd +lRQ +ayK +anY +lXJ +anY +aKc +agH +agH +oxr +agH +agH +agH +agH +agH +agH +agH +agH +agH +oxr +odC +iqY +aTN +iqY +rfo +iqY +aTN +iqY +iqY +xhA +rKa +amK +amN +aCW +fog +ewP +buW +nUg +mhg +amN +xJH +rKa +oQf +iho +xhA +hva +hva +hva +hva +hva +hva +atl +bww +apt +kEq +euc +kEq +kEq +kEq +apD +nXj +pDP +atl +aGW +mHd +tJs +ikv +aGT +aWI +oBe +mHd +ikv +pJn +auz +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(230,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +bmj +aRp +aRp +aRp +aRp +aRp +bmj +bqO +bmp +nOj +bqS +bmF +cAg +aeI +vkW +aeB +aeB +afk +aeF +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +eDz +ajT +aeB +vkW +aOM +ayd +anY +ayK +ahM +tBG +ahM +aKc +agH +agH +oxr +odC +aTN +lIQ +aom +odC +iqY +iqY +iqY +lIQ +oxr +qkz +ajk +ajk +ajk +ajk +ajk +ajk +ajk +ajk +amx +rKa +amK +amN +amN +anM +amN +amN +amN +amN +amN +xJH +rKa +xHm +alw +alL +amf +amf +anm +jvC +anK +auO +atl +aCz +unf +ykJ +aCz +ykJ +aCz +ykJ +aEK +sWd +xoK +bou +oBe +mHd +aHv +tJs +djC +aHv +aHv +mHd +aHv +sLF +auz +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(231,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +akj +aRp +aRp +aRp +aRp +aRp +akj +lps +rAc +jxA +bqS +bmF +rno +aeI +dQJ +aeB +aeB +afl +aeF +afi +afi +afi +afi +afi +afi +afi +afi +afi +dUj +afi +afi +afi +afi +afi +afi +afi +afi +afi +eDz +ajU +aeB +dQW +irp +aDI +awp +vzA +qTj +gdM +qTj +wxF +mYQ +mYQ +aDl +ahr +ajk +ajk +ajk +ajo +ajo +ajk +ajj +ajj +aHr +bof +ajo +bNP +bOi +bOl +fey +bPG +bPH +ajk +aUB +rKa +qTe +gUj +lDT +aCZ +qTe +aUX +gUj +gVw +gUj +lDT +rKa +aVh +alw +alM +amh +amY +anh +anK +anK +aoI +atl +aaw +aCA +aEv +aCz +aEv +aCz +aEv +aEK +apL +iqx +aGS +iZv +nxN +tzF +daR +vyA +xNR +vyA +plM +iAy +qgo +auz +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(232,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +bmj +aRp +aRp +aRp +aRp +aRp +bmj +bqO +bmp +jtY +bqS +bmF +snO +aeI +vkW +aeB +aeB +afq +aeF +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afP +akc +aeB +vkW +aOM +ayd +anY +ayK +ahM +ahM +ahM +aKc +agH +agH +oxr +ahr +ajk +bPn +ajv +bPv +ajv +bPy +ajk +cOf +wVG +qkz +ajo +cOf +anZ +ajx +ajx +anZ +bPI +ajk +amx +azd +mEd +mEd +mEd +aDa +aDc +aDa +aDc +mEd +mEd +mEd +eQR +xHm +alw +aXl +amm +hva +ane +jvC +jvC +aXX +atl +aZE +unf +sgN +aCz +ykJ +aCz +sgN +apE +apN +aqp +atl +aWG +aHv +mHd +qPo +lgo +cvW +lgo +cvW +lgo +ihL +auz +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(233,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +bmj +aRp +aRp +aRp +aRp +aRp +bmj +bqO +bmp +nOj +coS +bnw +rwF +aeI +vkW +aeB +aeB +afs +aeF +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +eDz +ani +aeB +vkW +aOJ +ayd +aXJ +ayK +anY +aON +anY +aKc +agH +agH +oxr +ahr +ajo +bPq +bPs +bPw +fGP +jXg +ajo +sIw +wVG +aUj +ajk +bOf +bPC +bOm +dvx +anZ +bPJ +ajk +wbK +iho +xhA +dwr +oQf +xhA +rKa +amz +rKa +oQf +xhA +dwr +oQf +nQB +alw +alO +alY +aXC +ano +iho +iho +apb +atl +aaw +aCA +aEv +aCz +aEv +aCz +aEv +aEK +apW +aqC +atl +toJ +riC +mHd +qPo +exf +aXb +exf +lkk +exf +auz +auz +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(234,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +akj +akj +aRp +aRp +aRp +aRp +aRp +akj +jHV +bmp +nOj +bmp +bms +aeB +aeB +vkW +aeB +aeB +aft +aeF +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +eDz +anj +aeB +aSQ +aeU +agj +agj +agj +ahg +jXo +ahg +agj +nnx +agH +oxr +boc +ajo +bPp +anZ +bPx +vHQ +yhC +bMh +yhC +cmy +qkz +ajo +bOg +bPD +bOm +wVG +dmK +bPK +ajk +akl +akl +akl +akl +akl +amx +rKa +amz +rKa +xHm +akl +akl +akl +akl +alw +alw +alw +alw +alw +alw +alw +alw +atl +oNi +unf +sgN +aCz +sgN +aCz +sgN +aEK +aEK +aqU +atl +box +boy +aXr +atz +ato +auz +auz +auz +auz +auz +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(235,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +akj +bmC +aRp +aRp +aRp +aRp +aRp +bmk +bmp +bmp +nOj +bmp +bms +aeB +aeB +vkW +aeB +aeB +afl +aeF +afi +aeN +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +afi +aeN +afi +eDz +ajU +aeB +vkW +aeR +agj +atP +agj +agj +agj +agj +agj +qFJ +agH +oxr +aiX +ajo +bPq +anZ +opo +ekd +ksn +ajo +ajw +wVG +qkz +ajo +bOh +bPE +bOn +wVG +ksn +bPL +ajk +amn +aZr +amL +amE +akl +akl +mgw +anu +mgw +akl +akl +amn +anB +aZx +asV +alw +ask +asw +xsZ +auU +avf +asX +ati +yhI +apz +dFP +dFP +dFP +dFP +dFP +aZH +eEW +nXj +atl +ard +aXy +aCT +bUi +ato +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(236,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +akj +bmC +aRp +aRp +aRp +aRp +aRp +akj +ycg +bmp +hws +vZD +pSb +fEC +fEC +xBa +aeB +aeB +afq +aeG +aeL +aeL +aeL +aeL +aeL +aeL +aeL +aeL +aeL +aeL +afo +aeL +aeL +aeL +aeL +aeL +aeL +aeL +aeL +afQ +akc +aeB +vkW +aeR +agj +atP +atP +atP +atP +atP +agj +agC +agH +oxr +ahr +ajk +bPr +aUz +chL +nws +sIV +ajk +cOf +wVG +brs +ajk +ajk +ajk +ajk +aHr +ajk +ajk +ajk +amk +amF +hvZ +gBh +dfg +akl +sJe +amG +hat +akl +wvZ +gBh +fWx +amk +amk +alw +atN +atN +aCz +aCz +aCz +aCz +atl +atl +atl +atl +auP +ati +atl +atl +atl +atl +aqV +atl +aWC +aXy +aCT +bja +ato +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(237,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +akj +akj +aRp +aRp +aRp +aRp +aRp +bmj +rTo +bmp +nOj +bmp +bms +aeB +aeB +vkW +aeB +aeB +afi +afB +afD +afD +afF +afH +afB +afD +afM +afT +afB +afW +afY +afT +afB +afD +afM +afT +aji +ajK +afM +afT +afi +aeB +vkW +lJR +agb +agb +agb +agb +agb +agb +agb +agC +agH +oxr +arm +ajk +ajk +ajk +ajk +ajk +ajk +ajk +aDu +wVG +jXg +ajv +aUq +ajv +sIw +wVG +bOp +gke +ajk +bvx +aUF +bjm +akl +aHg +akl +dqu +amG +tCI +akl +aHg +akl +bjm +bvQ +atC +alw +aCz +asX +auo +sap +atD +aCz +aCz +aCz +atS +aCz +aCz +ato +aXo +aXy +apH +aXy +aEQ +aCH +tLr +aCH +aCU +ark +ato +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(238,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +akj +aRp +aRp +aRp +aRp +aRp +bmj +rTo +bmp +nOj +mFp +bmF +cCP +tov +vkW +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +aeB +vkW +aeR +agb +rzk +eOI +skK +eOI +wqN +agb +agC +agH +uDh +mYQ +mkM +yhC +aDJ +aDL +yhC +yhC +aDM +yhC +atf +yhC +yhC +ibe +yhC +yhC +atr +ajx +eSY +ajk +akl +akl +akl +akl +svn +rDr +rhr +amG +svn +rDr +rhr +akl +akl +akl +akl +alw +aCz +aCz +aCz +aCz +aCz +aCz +atD +atD +asX +ask +ask +ato +cMw +aXy +aXy +aXy +aXy +aXy +oxk +aXy +aXy +bHz +ato +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(239,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +akj +bmC +bmC +bmC +bmC +bmC +akj +yea +vZD +jQT +lFP +bmF +aeU +bme +gei +fEC +fEC +fEC +fEC +fEC +fEC +fEC +fEC +fEC +fEC +fEC +fEC +fEC +ing +fEC +fEC +aRV +fEC +fEC +fEC +fEC +fEC +fEC +fEC +fEC +fEC +rOS +bSX +agb +agv +lYv +iWo +jAq +ykO +agb +agC +agH +oxr +agH +bjW +ajx +ajx +ajx +ajx +ajx +ajx +vsn +aor +aWr +blk +pji +aor +aWr +blk +ajx +qkz +ajk +amA +aUE +amw +akl +aHg +akl +sJe +amG +epg +akl +aHg +akl +amw +bvT +amC +alw +aCz +aCz +atl +ati +ati +ati +ati +ati +ati +ati +ati +ato +ato +aXq +aXp +aXy +bjb +aXy +are +aXy +bjb +ato +ato +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(240,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ahE +ahE +bmD +bmD +bmD +ahE +ahE +bGu +bmp +nOj +pfG +bmF +aeU +aeU +wmU +wmU +wmU +wmU +aRJ +gcy +wmU +wmU +wmU +wmU +aeU +aOJ +aeB +aeB +vkW +aeB +aOJ +aeU +oWg +oWg +oWg +oWg +oWg +vFk +oWg +oWg +oWg +oWg +vPM +agb +lGD +lYv +vSa +jAq +ykO +agb +fIZ +agH +oxr +agH +bjW +ajx +ajx +ajx +ajx +ajx +ajx +ajx +vpT +aWr +blk +pji +blk +aWr +aor +ajx +qkz +ajk +amB +amk +hvZ +gBh +xWS +akl +buV +amG +nzR +akl +hKt +gBh +fWx +amk +amk +alw +xsZ +asX +ati +ati +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ato +ato +ato +ato +ato +ato +ato +ato +ato +ato +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(241,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ahE +bLg +bLd +bLn +bKS +bLr +bmG +uzl +vOw +jtY +bmA +bmF +bmF +aeM +aeM +afe +afe +afe +aeM +aeM +afe +afe +afe +aeM +aeU +aeU +agW +agW +qvD +agW +bnL +agb +agb +uSk +uSk +cxh +uSk +agb +pLO +ocD +pLO +pLO +agb +agb +aTi +fSU +agz +fXP +lnM +agb +wCJ +agH +oxr +odC +hed +ajw +boQ +ajx +boQ +ajx +ajx +ajx +blk +aWr +aor +pji +aor +aWr +blk +ajx +dNS +ajk +bjm +bvQ +amn +amD +akl +akl +kVn +amG +rXs +akl +akl +ans +amE +bvQ +amC +alw +atO +atD +ati +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(242,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +bmD +bLh +bLi +bKR +bmh +vQs +bmm +uzl +bmp +nOj +bmp +bmp +bmp +afe +bqU +bqW +brj +jYC +tSu +qJA +bqU +mIx +rrG +teZ +aeM +aRx +aeB +aeB +vkW +aeB +aSh +agb +fzo +eOI +eOI +wHQ +lPH +skK +sRK +jYs +eOI +eOI +uji +bnU +agb +agg +mFS +agg +agb +agb +agb +lFU +fkG +agb +oHs +bog +boR +ajx +boR +uww +ajx +ajx +aWd +aWA +aWA +mUv +aWA +aWA +anZ +ajx +bOq +ajk +akl +akl +akl +akl +akl +kmj +dqu +lGo +rXs +pgf +akl +akl +akl +akl +akl +alw +atD +atD +ati +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(243,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +bmD +ukz +bmh +mgq +bmh +xMi +bmm +bmq +bmp +hws +vZD +vZD +vZD +kxc +qaj +rKo +ayb +ayb +hxW +ayb +ayb +ayb +hxW +hsM +aeM +aDQ +aeB +aeB +vkW +aeB +iuz +agb +mdV +agw +agw +hFo +spD +agw +sez +agw +agw +agw +lNS +agb +eOI +ags +rTX +rrY +nUd +skK +ags +agw +rTX +xNL +oHs +cOf +boR +ajx +boR +ajx +ajx +ajx +uLV +bJc +ajx +wXT +ajx +ajx +ajx +ajx +qkz +vfb +jvC +oPq +wXE +jvC +ydY +amG +vLb +amG +rXs +amG +ydY +jvC +wXE +atw +jvC +ydY +aCz +hKZ +ati +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(244,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ahE +bmb +lPY +jgI +bmw +rYj +bGy +vZD +vZD +jQT +bmp +bmr +xkn +aeM +mGn +iLj +hTe +smk +lyK +wjw +lyK +rei +qaj +qaj +aLf +fEC +fEC +fEC +xBa +aeB +aeB +bcv +agw +rQY +iFy +iFy +iFy +qeY +iFy +iFy +iFy +qeY +iFy +ahV +iFy +iFy +pgH +rrE +knG +skp +iFy +iFy +ryc +lhL +oHs +cOf +boR +ajx +wRH +ajx +ajx +ajx +ajx +ksn +nws +nws +nws +nws +bOo +aUz +nZB +ajk +akl +akl +akl +akl +akl +bZv +sJe +amG +rXs +bru +akl +akl +akl +akl +akl +alw +ati +ati +ati +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(245,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ahE +bmG +bmG +bmG +bmG +bmG +bmG +bmz +bmp +nOj +bmp +bmp +bmp +qOF +ayb +ayb +ayb +nAO +bIa +gPX +tXo +pCW +ayb +ayb +ayb +aeB +aeB +aeB +dQW +fEC +fEC +ahV +iFy +fDx +fXP +eTR +eTR +lko +eTR +eTR +fSU +rTX +fXP +agb +agb +ikC +agb +agb +cUT +agw +agw +agw +agw +ykO +oHs +wwE +nws +nws +nws +nws +nws +nws +nws +asd +oHs +gzf +app +app +app +app +app +ajk +amw +aUJ +amn +amP +akl +akl +amU +lGo +rXs +akl +akl +amw +amn +aZy +amE +alw +apV +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(246,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ahE +bKQ +bma +bbz +blS +bbA +bmG +bKU +bmp +nOj +bmp +bmp +bmp +afe +bqV +ayb +ayb +wlj +bqW +bqW +bqW +xsm +ayb +aWp +aeM +aDK +aeB +shW +vkW +aeB +tLa +agb +iEg +rTX +ykO +tPV +tPV +tPV +tPV +tPV +agv +rTX +aSJ +agb +gjh +hFo +dzT +agb +lGD +bSE +qOr +bSO +kMu +ykO +oHs +anZ +aoi +anZ +aoi +anZ +aoi +anZ +aoi +anZ +oHs +anZ +wrR +app +ylo +ylo +ylo +apV +amr +amk +hvZ +gBh +dfg +akl +buV +geV +aUY +akl +wvZ +gBh +fWx +amk +amk +atb +aki +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(247,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ahE +bKT +rQD +rrv +rYj +rYj +bbS +vZD +vZD +eSg +bmr +rKq +ton +aeM +ffC +bqY +bqY +wim +bqY +wim +wim +bqY +bqY +buM +aeM +xST +iRw +fJZ +ejD +gMC +xBA +agb +stA +kKB +rrY +eOI +tPT +bTl +tPT +eOI +clg +nJn +aZu +agb +qbB +sKQ +tzX +agb +wkr +bTo +ghJ +qeF +rWh +lnM +oHs +anZ +aor +aUh +bJk +anZ +aor +aUh +bJk +lqX +oHs +anZ +wrR +app +ylo +ylo +ylo +apV +kFo +bvQ +bjm +akl +aHg +akl +dqu +amG +tCI +akl +aHg +akl +bvS +aVj +bjm +apV +apV +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(248,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ahE +ahE +bPh +hFR +hFR +qGF +bmG +anJ +dyU +dyU +bKX +bmF +bmF +aeM +aeM +aeM +tpA +qNe +afK +qqF +rOP +hdG +kWZ +aeM +aeM +aeU +qBk +jGZ +bTh +ftX +aeU +agb +agb +aio +iFy +iFy +iFy +oRJ +vlv +vlv +iFy +iyp +agb +agb +agb +agb +agb +agb +agb +agb +agb +agb +agb +agb +oHs +oHs +oHs +oHs +oHs +oHs +oHs +oHs +oHs +oHs +oHs +anZ +cNI +app +ylo +ylo +apV +akl +akl +akl +akl +akl +svn +rDr +snU +rDr +snU +rDr +rhr +akl +akl +akl +akl +apV +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(249,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ahE +ahE +bLm +bLq +bLu +bmG +aTy +bmr +bmr +bmr +tqb +lwu +jAO +aeI +aeM +aeM +aeM +aeM +aeM +aeM +aeM +aeM +aeM +wmi +aeU +aeU +aeU +aeU +aeU +aeU +nbN +agb +oOL +kPS +eTR +bSr +avp +avp +eTR +eDP +wVA +agb +nbN +nbN +jAO +aeI +lwu +wmi +aeI +aeI +lwu +lwu +lwu +wAF +yfh +yfh +yfh +anZ +anZ +yfh +yfh +anZ +eIq +yfh +anZ +anZ +app +ylo +ylo +aki +amk +amn +aUL +amw +akl +aHg +apV +aki +aki +aki +apV +aHg +akl +bjm +aVg +bjm +apV +apV +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(250,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ahE +ahE +ahE +ahE +ahE +akj +bmj +bmj +akj +akz +akz +aeI +lwu +aeI +aeI +lwu +lwu +uFM +lwu +lwu +aeI +aeI +lwu +aeI +aeI +jAO +lwu +aeI +lwu +lwu +agb +agb +qbV +qbV +agb +sXf +agb +qbV +qbV +agb +agb +lwu +lwu +lwu +aeI +lwu +lwu +aeI +aeI +lwu +lwu +lwu +wrR +yfh +yfh +yfh +anZ +anZ +oFU +yfh +anZ +yfh +yfh +anZ +anZ +app +ylo +ylo +aki +akm +lvE +amk +hvZ +gBh +xWS +apV +ylo +ylo +ylo +apV +hKt +gBh +fWx +amk +amk +asU +aki +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(251,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +akz +akz +fHO +aeI +aeI +lwu +lwu +aeI +lwu +lwu +aeI +aeI +lwu +aeI +aeI +lwu +lwu +aeI +lwu +lwu +fWN +fWN +fWN +wsJ +wsJ +fWN +avs +wsJ +fWN +fWN +wsJ +lwu +lwu +akz +akz +akz +akz +akz +akz +akz +akz +akz +app +app +app +app +app +app +app +app +app +app +app +app +app +app +ylo +ylo +apV +apV +bvJ +akm +akm +bvR +apV +apV +ylo +ylo +ylo +apV +apV +aZw +asN +asS +aZB +apV +apV +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} +(252,1,1) = {" +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +akz +akz +akz +akz +akz +akz +akz +akz +akz +akz +akz +akz +akz +akz +akz +akz +akz +akz +akz +aog +aog +aog +aog +aog +aog +aog +aog +aog +aog +aog +akz +akz +akz +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +apV +apV +aki +aki +apV +apV +ylo +ylo +ylo +ylo +ylo +apV +apV +aki +aki +apV +apV +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +"} diff --git a/maps/map_files/CORSAT/sprinkles/.gitkeep b/maps/map_files/CORSAT/sprinkles/.gitkeep new file mode 100644 index 000000000000..8b137891791f --- /dev/null +++ b/maps/map_files/CORSAT/sprinkles/.gitkeep @@ -0,0 +1 @@ + diff --git a/maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm b/maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm new file mode 100644 index 000000000000..b06b31f2b6a9 --- /dev/null +++ b/maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm @@ -0,0 +1,90 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"b" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/airlock/control) +"c" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/gamma/hallwaysouth) +"d" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/airlock/control) +"e" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/control) +"f" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"g" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"h" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/control) +"i" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"j" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"k" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"l" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/airlock/control) +"m" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "GammaWestD"; + name = "Gamma Dome Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/control) +"n" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) + +(1,1,1) = {" +a +d +g +j +l +n +"} +(2,1,1) = {" +b +e +h +e +m +b +"} +(3,1,1) = {" +c +f +i +k +f +c +"} diff --git a/maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm b/maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm new file mode 100644 index 000000000000..e0867f3ef176 --- /dev/null +++ b/maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm @@ -0,0 +1,96 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/airlock/north) +"b" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/north) +"c" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/north) +"d" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/north) +"e" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/north) +"f" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "GammaDSC2"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/gamma/airlock/north) +"g" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/airlock/north) +"h" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "GammaNorthS"; + name = "Gamma North Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/north) +"i" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/north) +"j" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/north) +"k" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/turf/open/snow/layer3, +/area/corsat/gamma/biodome) +"l" = ( +/turf/open/snow/layer0, +/area/corsat/gamma/biodome) +"m" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/snow/layer0, +/area/corsat/gamma/biodome) +"n" = ( +/turf/open/snow/layer3, +/area/corsat/gamma/biodome) + +(1,1,1) = {" +a +g +k +"} +(2,1,1) = {" +b +h +l +"} +(3,1,1) = {" +c +i +l +"} +(4,1,1) = {" +d +j +m +"} +(5,1,1) = {" +e +i +l +"} +(6,1,1) = {" +f +g +n +"} diff --git a/maps/map_files/CORSAT/standalone/lockdown_highsec.dmm b/maps/map_files/CORSAT/standalone/lockdown_highsec.dmm new file mode 100644 index 000000000000..dd4ef5005c61 --- /dev/null +++ b/maps/map_files/CORSAT/standalone/lockdown_highsec.dmm @@ -0,0 +1,538 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/checkpoint) +"c" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure/opened{ + id = "delta_gamma2"; + name = "Gamma Checkpoint"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"d" = ( +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"e" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"f" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/omega/checkpoint) +"g" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"h" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"i" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"j" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"k" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"l" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"m" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ + id = "delta_gamma"; + name = "Gamma Emergency Access"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"n" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "OmegaAccessC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/omega/checkpoint) +"o" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/plating, +/area/corsat/omega/checkpoint) +"p" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"q" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "delta_gamma"; + name = "Gamma Emergency Access"; + pixel_x = -5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "delta_gamma2"; + name = "Checkpoint Gamma"; + pixel_x = 5; + use_power = 0 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"r" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("omega") + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"s" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/checkpoint) +"t" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaAccessC"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/omega/checkpoint) +"u" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/checkpoint) +"v" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"w" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"x" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/checkpoint) +"y" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"z" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"A" = ( +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"B" = ( +/obj/structure/bed/chair/comfy/black{ + icon_state = "comfychair"; + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"C" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/checkpoint) +"D" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk"; + req_access_txt = "3" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaAccessC"; + name = "Security Shutters" + }, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"E" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/checkpoint) +"F" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"G" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"H" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk"; + req_access_txt = "3" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaAccessC"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"I" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"J" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "delta_omega"; + name = "Checkpoint Omega"; + pixel_x = -5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "delta_theta"; + name = "Theta Emergency Access"; + pixel_x = 5; + use_power = 0 + }, +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"K" = ( +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("omega") + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"L" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/checkpoint) +"M" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/checkpoint) +"N" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"O" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"P" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/checkpoint) +"Q" = ( +/turf/open/floor/corsat/omega, +/area/corsat/omega/checkpoint) +"R" = ( +/turf/open/floor/corsat/theta, +/area/corsat/omega/checkpoint) +"S" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"T" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ + id = "delta_omega"; + name = "Omega Checkpoint"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"U" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ + id = "delta_theta"; + name = "Theta Emergency Access"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"V" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/checkpoint) + +(1,1,1) = {" +a +b +d +d +d +m +b +p +z +z +I +b +d +d +S +T +V +"} +(2,1,1) = {" +a +b +f +g +g +f +n +q +A +z +J +n +Q +g +k +Q +n +"} +(3,1,1) = {" +a +b +i +g +g +i +n +r +B +G +K +n +i +g +k +i +n +"} +(4,1,1) = {" +a +b +i +g +g +i +n +s +C +C +L +n +i +g +k +i +n +"} +(5,1,1) = {" +a +b +i +g +g +i +b +t +D +H +t +b +i +g +k +i +V +"} +(6,1,1) = {" +a +b +i +g +g +g +d +u +E +E +M +d +g +g +k +i +b +"} +(7,1,1) = {" +a +b +i +j +h +h +e +v +F +F +N +e +h +h +l +i +b +"} +(8,1,1) = {" +a +b +i +k +g +g +d +w +i +i +O +d +g +g +g +i +b +"} +(9,1,1) = {" +b +b +i +k +g +g +d +x +C +C +P +d +g +g +g +i +b +"} +(10,1,1) = {" +c +f +i +k +g +i +b +o +o +o +o +b +i +g +g +i +b +"} +(11,1,1) = {" +d +g +g +k +g +i +o +a +a +a +a +o +i +g +g +i +b +"} +(12,1,1) = {" +e +h +h +l +g +i +o +a +a +a +a +o +i +g +g +i +b +"} +(13,1,1) = {" +d +f +i +i +i +i +o +a +a +a +a +o +R +g +g +R +b +"} +(14,1,1) = {" +b +b +b +b +b +b +b +y +y +y +y +b +d +d +d +U +b +"} diff --git a/maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm b/maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm new file mode 100644 index 000000000000..8e41c82f5145 --- /dev/null +++ b/maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm @@ -0,0 +1,90 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/gamma/hallwaysouth) +"b" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"c" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"d" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"e" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/theta/airlock/control) +"f" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "ThetaNorthD"; + name = "Theta Dome Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/control) +"g" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/control) +"h" = ( +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/control) +"i" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"j" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/control) +"k" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"l" = ( +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"m" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/theta/airlock/control) +"n" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) + +(1,1,1) = {" +a +e +i +"} +(2,1,1) = {" +b +f +j +"} +(3,1,1) = {" +c +g +k +"} +(4,1,1) = {" +d +h +l +"} +(5,1,1) = {" +b +h +m +"} +(6,1,1) = {" +a +e +n +"} diff --git a/maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm b/maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm new file mode 100644 index 000000000000..e9b6a3557645 --- /dev/null +++ b/maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm @@ -0,0 +1,93 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"b" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/theta/airlock/east) +"c" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/theta/airlock/east) +"d" = ( +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"e" = ( +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/east) +"f" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/east) +"g" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/east) +"h" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"i" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/east) +"j" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/east) +"k" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "ThetaEastW"; + name = "Theta East Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/east) +"l" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/east) +"m" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 32 + }, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"n" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "ThetaIDEC2"; + name = "Security Shutters" + }, +/turf/open/floor/plating, +/area/corsat/theta/airlock/east/id) + +(1,1,1) = {" +a +d +d +h +d +m +"} +(2,1,1) = {" +b +e +e +i +k +b +"} +(3,1,1) = {" +c +f +g +j +l +n +"} diff --git a/maps/map_files/CORSAT/standalone/sigma_ice.dmm b/maps/map_files/CORSAT/standalone/sigma_ice.dmm new file mode 100644 index 000000000000..33d62da2e60c --- /dev/null +++ b/maps/map_files/CORSAT/standalone/sigma_ice.dmm @@ -0,0 +1,8669 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/sigma/biodome/ice) +"ar" = ( +/turf/open/auto_turf/snow/layer1, +/area/corsat/sigma/biodome/gunrange) +"aB" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"aI" = ( +/obj/item/tool/shovel, +/turf/open/auto_turf/snow/layer2, +/area/corsat/sigma/biodome/gunrange) +"aL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/wood, +/area/corsat/sigma/biodome/ice) +"aO" = ( +/obj/effect/decal/mecha_wreckage/ripley/firefighter, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"aS" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 8 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"aU" = ( +/obj/item/tool/shovel, +/turf/open/auto_turf/snow/layer1, +/area/corsat/sigma/biodome/gunrange) +"aV" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/corsat/red, +/area/corsat/sigma/airlock/control) +"ba" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"be" = ( +/turf/open/auto_turf/snow/layer3, +/area/corsat/sigma/biodome/ice) +"bi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Testing Grounds"; + req_access_txt = "106"; + use_power = 0 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"bo" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/airlock/control) +"bp" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"bs" = ( +/turf/open/auto_turf/snow/layer0, +/area/corsat/sigma/biodome/ice) +"bx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer0, +/area/corsat/sigma/biodome/ice) +"bz" = ( +/obj/item/stack/snow, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"bE" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/stack/snow, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"bN" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"bT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer3, +/area/corsat/sigma/biodome/ice) +"cb" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer2, +/area/corsat/sigma/biodome/gunrange) +"cf" = ( +/obj/item/stack/sheet/metal, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"ci" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + damage_cap = 4000; + dir = 1; + name = "\improper Emergency Access"; + req_access_txt = "100"; + req_one_access = list() + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/biodome/ice) +"cs" = ( +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome/gunrange) +"cv" = ( +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome/gunrange) +"cA" = ( +/turf/open/auto_turf/snow/layer4, +/area/corsat/sigma/biodome/scrapyard) +"cH" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/auto_turf/snow/layer2, +/area/corsat/sigma/biodome/scrapyard) +"cI" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"cJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"db" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/inaccessible) +"dd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"dn" = ( +/obj/structure/window/framed/corsat/hull, +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/inaccessible) +"do" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/airlock/control) +"dr" = ( +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"dA" = ( +/obj/structure/window/reinforced, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"dO" = ( +/obj/effect/landmark{ + name = "hunter_secondary" + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/sigma/biodome/ice) +"dP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer2, +/area/corsat/sigma/biodome/ice) +"dS" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/corsat/sigma/biodome/ice) +"dT" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"eb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"ee" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"er" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"ev" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/inaccessible) +"eG" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"eV" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"fc" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"fk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer4, +/area/corsat/sigma/biodome/ice) +"fs" = ( +/turf/closed/wall/r_wall, +/area/corsat/sigma/biodome/gunrange) +"fy" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"fz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome/ice) +"fC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/auto_turf/snow/layer2, +/area/corsat/sigma/biodome/ice) +"fM" = ( +/obj/structure/window/framed/corsat/hull, +/obj/structure/pipes/standard/simple/visible, +/turf/open/floor/plating, +/area/corsat/inaccessible) +"fT" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"gd" = ( +/obj/item/tool/shovel, +/turf/open/auto_turf/snow/layer4, +/area/corsat/sigma/biodome/gunrange) +"gi" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/sigma/biodome/ice) +"go" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"gr" = ( +/obj/structure/bed/nest, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"gx" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"gB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer4, +/area/corsat/sigma/biodome/ice) +"gP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"hn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/sigma/biodome/ice) +"ho" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/sigma/biodome/ice) +"hx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/sigma/biodome/ice) +"hz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/snow/layer3, +/area/corsat/sigma/biodome/ice) +"hC" = ( +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome/ice) +"hH" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"hQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"hR" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + damage_cap = 4000; + name = "\improper Emergency Access"; + req_access_txt = "100"; + req_one_access = list() + }, +/turf/open/floor/corsat/plate, +/area/corsat/inaccessible) +"hU" = ( +/obj/structure/barricade/wooden, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"hV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer1, +/area/corsat/sigma/biodome/ice) +"hZ" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/auto_turf/snow/layer2, +/area/corsat/sigma/biodome/scrapyard) +"ih" = ( +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"io" = ( +/obj/effect/alien/weeds/node, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"iy" = ( +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome/scrapyard) +"iK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer1, +/area/corsat/sigma/biodome/ice) +"iL" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"iO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"jj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/sigma/biodome/ice) +"jm" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"jv" = ( +/turf/open/floor/asteroidwarning/north, +/area/corsat/sigma/biodome/ice) +"jy" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"jL" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/airlock/control) +"jT" = ( +/obj/structure/pipes/vents/pump, +/turf/open/auto_turf/snow/layer0, +/area/corsat/sigma/biodome/ice) +"kc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"kl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"km" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome/scrapyard) +"kr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer3, +/area/corsat/sigma/biodome/ice) +"kt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"kv" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"kH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/sigma/biodome/ice) +"kI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"kO" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"kT" = ( +/turf/template_noop, +/area/corsat/sigma/biodome/ice) +"kV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"lc" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/auto_turf/snow/layer0, +/area/corsat/sigma/biodome/ice) +"ln" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/sigma/biodome/ice) +"lr" = ( +/turf/closed/wall/resin/membrane, +/area/corsat/sigma/biodome/ice) +"lw" = ( +/turf/closed/wall/r_wall, +/area/corsat/sigma/biodome/ice) +"lB" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"lN" = ( +/obj/structure/tunnel{ + id = "hole4" + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"lP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "Sigma Dome Control"; + req_one_access = list(102) + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) +"lY" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"mm" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/sigma/biodome/ice) +"mo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"mU" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"mX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"mY" = ( +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome/ice) +"nb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/airlock/control) +"ng" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"nk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/sigma/biodome/ice) +"np" = ( +/turf/closed/wall, +/area/corsat/sigma/biodome/scrapyard) +"nq" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer2, +/area/corsat/sigma/biodome/scrapyard) +"nu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/template_noop, +/area/template_noop) +"nB" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"nI" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"nP" = ( +/turf/open/auto_turf/snow/layer3, +/area/corsat/sigma/biodome/scrapyard) +"nZ" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/scrapyard) +"oa" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaControl"; + name = "Observation Shutters"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/control) +"oe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"oi" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/auto_turf/snow/layer2, +/area/corsat/sigma/biodome/scrapyard) +"ol" = ( +/obj/item/tool/shovel, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"on" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"oK" = ( +/turf/open/auto_turf/snow/layer1, +/area/corsat/sigma/biodome/scrapyard) +"oL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/snow/layer2, +/area/corsat/sigma/biodome/ice) +"oS" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/snow/layer1, +/area/corsat/sigma/biodome/scrapyard) +"oW" = ( +/obj/structure/target/syndicate, +/turf/open/auto_turf/snow/layer1, +/area/corsat/sigma/biodome/gunrange) +"pe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"pp" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/gamma/hallwaysouth) +"pz" = ( +/turf/open/auto_turf/snow/layer1, +/area/corsat/sigma/biodome/ice) +"pC" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/control) +"pP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"pQ" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/hallwaysouth) +"qd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"qs" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"qC" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/inaccessible) +"qN" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"rr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"rH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/window/northright{ + name = "Firing Lane" + }, +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome/gunrange) +"rP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/window/northright{ + name = "Firing Lane" + }, +/turf/open/auto_turf/snow/layer2, +/area/corsat/sigma/biodome/gunrange) +"rQ" = ( +/obj/structure/machinery/m56d_hmg{ + dir = 1 + }, +/obj/structure/machinery/door/window/northright{ + name = "Firing Lane" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome/gunrange) +"rW" = ( +/obj/structure/pipes/unary/outlet_injector{ + name = "Waste Air Injector" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"so" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"sp" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/corsat/sigma/biodome/gunrange) +"ss" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/corsat/sigma/biodome/gunrange) +"sx" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"sA" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"sB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"sT" = ( +/turf/open/auto_turf/snow/layer3, +/area/corsat/sigma/biodome/gunrange) +"tc" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"tg" = ( +/turf/open/auto_turf/snow/layer4, +/area/corsat/sigma/biodome/ice) +"tm" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/auto_turf/snow/layer2, +/area/corsat/sigma/biodome/ice) +"tH" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + dir = 4; + name = "Waste Tank Control" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/airlock/control) +"tM" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/airlock/control) +"tZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/sigma/biodome/ice) +"ua" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 8 + }, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/airlock/control) +"uc" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"uk" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = list() + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "SigmaBioAtmos"; + name = "Access Shutter" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"ur" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"us" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/airlock/control) +"uy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/auto_turf/snow/layer2, +/area/corsat/sigma/biodome/ice) +"uD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"uO" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/airlock/control) +"uS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome/ice) +"ve" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"vh" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/biodome/ice) +"vB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"vO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"vU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"we" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"ww" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"wD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"xk" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"xp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) +"xK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"xM" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = list() + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "SigmaBioAtmos"; + name = "Access Shutter" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"xQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) +"xX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/airlock/control) +"xZ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"yh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"yj" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = list() + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"yl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/airlock/control) +"yn" = ( +/obj/structure/window/reinforced, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"yo" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/airlock/control) +"yr" = ( +/obj/structure/window/reinforced, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"yy" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/airlock/control) +"yC" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/airlock/control) +"yG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/airlock/control) +"yJ" = ( +/obj/structure/surface/rack, +/obj/item/tank/air, +/obj/item/tank/air, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/airlock/control) +"yL" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/auto_turf/snow/layer1, +/area/corsat/sigma/biodome/scrapyard) +"yQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/obj/effect/decal/warning_stripes, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"yR" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"yT" = ( +/obj/item/broken_device, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"yV" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/airlock/control) +"yX" = ( +/turf/template_noop, +/area/template_noop) +"yY" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"zf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"zh" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/airlock/control) +"zo" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"zJ" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/airlock/control) +"zQ" = ( +/obj/structure/pipes/trinary/mixer{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/airlock/control) +"zT" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 8; + name = "Mixed Air Injector" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"Ac" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"Aj" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"Al" = ( +/obj/structure/machinery/door_control{ + id = "SigmaBioAtmos"; + name = "Access Shutters"; + pixel_y = 24 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"Ao" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"As" = ( +/obj/item/tool/shovel, +/turf/open/auto_turf/snow/layer0, +/area/corsat/sigma/biodome/ice) +"At" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"AJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/scrapyard) +"AS" = ( +/obj/structure/largecrate/supply/ammo/m39{ + desc = "An ammunition case containing eight M39 magazines. This one has already been opened."; + name = "\improper M39 magazine case (x8)"; + supplies = list(/obj/item/ammo_magazine/smg/m39=3) + }, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"AX" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"Ba" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/barricade/wooden, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"Bf" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"Bj" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/door/window/eastright{ + name = "Weapon Rack" + }, +/obj/structure/window/reinforced/toughened{ + dir = 1 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"Bn" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/door/window/westright{ + name = "Weapon Rack" + }, +/obj/structure/window/reinforced/toughened{ + dir = 1 + }, +/obj/item/weapon/gun/flamer/M240T, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"Bv" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"BM" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/airlock/control) +"BO" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + dir = 4; + name = "Mixed Air Control" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) +"BV" = ( +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome/ice) +"Cd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/airlock/control) +"Ce" = ( +/obj/structure/largecrate/supply/ammo/pistol{ + desc = "An ammunition case containing six M44 speedloaders, and eight M4A3 magazines."; + name = "sidearm ammunition case (x14)"; + supplies = list(/obj/item/ammo_magazine/revolver=6,/obj/item/ammo_magazine/pistol=8) + }, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"Ch" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/incendiary, +/obj/item/explosive/grenade/incendiary, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"CA" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"CI" = ( +/obj/structure/window/reinforced, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 8 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"CX" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 1 + }, +/obj/structure/machinery/door/window/eastright{ + name = "Weapon Rack" + }, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"Db" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Firing Range"; + req_access_txt = "106"; + use_power = 0 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"Dd" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/high_explosive, +/obj/item/explosive/grenade/high_explosive, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"Df" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/template_noop, +/area/template_noop) +"Dg" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"Dh" = ( +/obj/structure/target/syndicate, +/obj/structure/target/syndicate, +/obj/structure/target/syndicate, +/obj/structure/target/syndicate, +/obj/structure/target/syndicate, +/obj/structure/closet/crate{ + desc = "A rectangular steel crate containing firing targets."; + name = "target crate" + }, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"Dp" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/airlock/control) +"Ds" = ( +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/shoes/snow, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"Dw" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/biodome/ice) +"Dy" = ( +/obj/structure/pipes/vents/pump, +/turf/open/auto_turf/snow/layer1, +/area/corsat/sigma/biodome/ice) +"DI" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/airlock/control) +"DO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/biodome/ice) +"DT" = ( +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/airlock/control) +"DX" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "Sigma Dome Control"; + req_one_access = list(102) + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/airlock/control) +"Eg" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "CO2 Control" + }, +/obj/structure/surface/table/almayer{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/airlock/control) +"Ev" = ( +/obj/structure/largecrate/supply/ammo/m41a{ + desc = "An ammunition case containing 10 M41A magazines."; + name = "\improper M41A magazine case (x10)"; + supplies = list(/obj/item/ammo_magazine/rifle=10) + }, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"EJ" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"EM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/airlock/control) +"ES" = ( +/turf/open/auto_turf/snow/layer2, +/area/corsat/sigma/biodome/gunrange) +"EV" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"Fe" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/flashbang, +/obj/item/explosive/grenade/flashbang, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"Fu" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/high_explosive/training, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"Fx" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/airlock/control) +"Fy" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/airlock/control) +"Fz" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 1 + }, +/obj/structure/machinery/door/window/eastright{ + name = "Weapon Rack" + }, +/obj/item/weapon/gun/revolver/m44, +/obj/item/weapon/gun/revolver/m44, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"FC" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"FI" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"Gd" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 1 + }, +/obj/structure/machinery/door/window/westright{ + name = "Weapon Rack" + }, +/obj/item/ammo_magazine/flamer_tank, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"Gf" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"Gj" = ( +/obj/structure/target, +/obj/structure/target, +/obj/structure/target, +/obj/structure/target, +/obj/structure/target, +/obj/structure/target, +/obj/structure/closet/crate{ + desc = "A rectangular steel crate containing firing targets."; + name = "target crate" + }, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"GJ" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) +"GK" = ( +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"GO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"GW" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"GZ" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/airlock/control) +"Hh" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/airlock/control) +"HB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"HK" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Firing Range"; + req_one_access = list(106,102,103); + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"HV" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/control) +"HX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) +"Ib" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"Ih" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/airlock/control) +"Im" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/airlock/control) +"Iw" = ( +/turf/open/auto_turf/snow/layer2, +/area/corsat/sigma/biodome/scrapyard) +"ID" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/blue/northwest, +/area/corsat/sigma/airlock/control) +"IJ" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer3, +/area/corsat/sigma/biodome/gunrange) +"IR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/airlock/control) +"IV" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"Jm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/obj/structure/barricade/wooden, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"Jw" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/obj/structure/machinery/camera/autoname{ + network = list("sigma") + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"Jy" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"JQ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/sigma/airlock/control) +"JT" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaControl"; + name = "Observation Shutters"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/control) +"JX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/barricade/wooden, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"Kj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/north, +/area/corsat/sigma/biodome/ice) +"Kq" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/asteroidwarning/north, +/area/corsat/sigma/biodome/ice) +"Kr" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/airlock/control) +"Ku" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"Kw" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"KA" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel, +/obj/item/tool/shovel, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"KF" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"KN" = ( +/turf/open/auto_turf/snow/layer4, +/area/corsat/sigma/biodome/gunrange) +"KR" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/airlock/control) +"KU" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"KV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"Lb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"Lg" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"Lr" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/sigma/airlock/control) +"Ly" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"LC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"LF" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"LH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"LS" = ( +/obj/item/cell/super/empty, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"Ms" = ( +/obj/structure/fence, +/obj/structure/fence, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"MA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"ME" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"Nk" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/airlock/control) +"Nm" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"Nn" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"Ns" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/airlock/control) +"NA" = ( +/obj/structure/fence, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"NI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"NQ" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/airlock/control) +"NS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/obj/effect/decal/warning_stripes, +/obj/item/toy/beach_ball/holoball{ + color = "#2B2B2B"; + desc = "A basket ball crudely spray painted to look like a hockey puck. Weird!"; + name = "hockey puck"; + unacidable = 1 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"NT" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"Om" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"Ot" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/sigma/airlock/control) +"OI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Sigma Dome Control"; + req_access_txt = "" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"OK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"OR" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"OT" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"OW" = ( +/obj/item/device/binoculars, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "SigmaControl"; + name = "Observation Shutters"; + pixel_y = 5; + use_power = 0 + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/airlock/control) +"Po" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer1, +/area/corsat/sigma/biodome/ice) +"Py" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome/ice) +"PE" = ( +/obj/structure/window/reinforced, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"PH" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/airlock/control) +"PM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "SigmaWestD"; + name = "Entrance Airlock Control"; + pixel_x = -5; + use_power = 0 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"PY" = ( +/obj/item/cell/crap, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"PZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"Qd" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"Qf" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/airlock/control) +"Qi" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/airlock/control) +"Qm" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"Qr" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"Qx" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"QD" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/auto_turf/snow/layer2, +/area/corsat/sigma/biodome/scrapyard) +"QN" = ( +/obj/structure/target, +/obj/item/clothing/suit/storage/militia, +/turf/open/auto_turf/snow/layer1, +/area/corsat/sigma/biodome/gunrange) +"QU" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/blue/southeast, +/area/corsat/sigma/airlock/control) +"Rb" = ( +/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"Rh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"Ri" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/airlock/control) +"Rn" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/sigma/airlock/control) +"Rp" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/airlock/control) +"Rq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("sigma") + }, +/turf/open/floor/corsat/blue/southwest, +/area/corsat/sigma/airlock/control) +"Rw" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/corsat/sigma/biodome/ice) +"Rx" = ( +/obj/structure/machinery/door_control{ + id = "SigmaWestW"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaWestE"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 + }, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"RD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"RI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"RM" = ( +/obj/structure/powerloader_wreckage, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"RQ" = ( +/obj/structure/machinery/computer3, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"RR" = ( +/turf/open/floor/corsat/blue/southeast, +/area/corsat/sigma/airlock/control) +"Sg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome/ice) +"Sh" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"Sl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"Sm" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"Ss" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/control) +"Su" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"Sy" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"SK" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer3, +/area/corsat/sigma/biodome/scrapyard) +"SQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"To" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/airlock/control) +"Tq" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/airlock/control) +"Tw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"TA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"TB" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/auto_turf/snow/layer1, +/area/corsat/sigma/biodome/scrapyard) +"TC" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/airlock/control) +"TP" = ( +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"TX" = ( +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"TZ" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/shoes/snow, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"Uu" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"Uv" = ( +/obj/structure/bed/chair, +/turf/open/floor/wood, +/area/corsat/sigma/biodome/ice) +"UD" = ( +/turf/open/floor/wood, +/area/corsat/sigma/biodome/ice) +"UF" = ( +/obj/effect/decal/mecha_wreckage/hoverpod, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"UW" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"UX" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"Vh" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"Vi" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"Vq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"Vt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"Vz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer2, +/area/corsat/sigma/biodome/ice) +"VF" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/ice) +"VJ" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 8; + id_tag = "mix_sigma_out" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"VL" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"VR" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"Wd" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/structure/machinery/door/window/brigdoor/eastleft, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"Wj" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"Wk" = ( +/turf/closed/wall/strata_ice, +/area/corsat/sigma/biodome/ice) +"Wt" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaControl"; + name = "Observation Shutters"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/control) +"Ww" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"WL" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/airlock/control) +"WW" = ( +/obj/item/folder/black_random, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/control) +"WY" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"Xm" = ( +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"Xv" = ( +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"Xw" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/control) +"XB" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 1; + id_tag = "car_sigma_out" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"XF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer3, +/area/corsat/sigma/biodome/ice) +"XG" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"XK" = ( +/obj/structure/machinery/light, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"XM" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/airlock/control) +"XN" = ( +/obj/structure/pipes/vents/pump, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"Yd" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/emergency_access) +"Yf" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "SigmaWestW"; + name = "Sigma West Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"Yn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"Yp" = ( +/turf/closed/wall, +/area/corsat/sigma/biodome/gunrange) +"Ys" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"Yu" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "SigmaWestE"; + name = "Sigma West Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"YC" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"YF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"YN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"YR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"YW" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"YX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"Zd" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/control) +"Zf" = ( +/turf/open/auto_turf/snow/layer2, +/area/corsat/sigma/biodome/ice) +"Zm" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/ice, +/area/corsat/sigma/biodome/scrapyard) +"Zr" = ( +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"Zy" = ( +/obj/structure/sign/safety/airlock, +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/airlock/control) +"ZB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) +"ZC" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/airlock/control) +"ZD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/airlock/control) +"ZH" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/airlock/control) +"ZL" = ( +/turf/open/floor/asteroidwarning/north, +/area/corsat/sigma/biodome/gunrange) + +(1,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +pQ +pQ +pQ +pQ +pQ +pQ +pQ +pQ +uO +uO +uO +uO +uO +Dp +GJ +HX +Fy +Ly +Aj +PH +Rh +Sm +To +uO +uO +uO +uO +uO +uO +yX +yX +yX +yX +yX +yX +yX +yX +UW +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(2,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +pp +yX +yX +yX +qC +qC +qC +qC +tH +xp +xQ +yy +BM +DI +FI +FI +Kr +Ly +Aj +Kr +FI +FI +PH +BM +VL +VL +YR +ZC +uO +uO +uO +uO +yX +yX +yX +yX +yX +UW +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(3,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +pp +yX +vh +vh +qC +dr +rW +fM +tM +Aj +Aj +yC +lP +Fy +Aj +Aj +Aj +LC +GO +GO +GO +GO +GO +Vh +GO +GO +YW +ZH +Su +iL +Qf +uO +vh +vh +yX +yX +yX +UW +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(4,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +vh +vh +vh +Wk +db +rr +dr +db +ua +Aj +xZ +yG +DX +IR +GO +GO +GO +LF +Aj +Aj +Aj +Aj +Aj +Vi +Aj +Aj +Aj +Aj +Aj +lY +aV +BM +Wk +vh +vh +vh +yX +UW +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(5,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +nu +yX +yX +vh +Wk +Wk +Wk +db +qN +dr +ev +uc +xK +Aj +yJ +BM +DI +GW +Ib +Ku +Ly +Aj +Ku +Ib +Kw +Tq +BM +Ss +WW +Zd +pC +Ss +Ss +us +BM +Wk +Wk +Wk +vh +vh +vh +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(6,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +vh +vh +vh +vh +vh +vh +Wk +Zr +Zr +db +db +db +db +uk +BM +Al +yV +BM +DT +GZ +Ih +Kw +LC +NT +PM +Ri +Ss +TC +BM +VR +WY +BM +BM +Wt +Wt +BM +BM +Wk +Wk +Wk +Wk +Wk +vh +vh +vh +kT +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(7,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +Dw +Dw +Dw +Dw +Dw +Dw +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +YN +BM +yj +BM +BM +BM +BM +Im +KF +MA +Aj +PZ +Rn +BM +BM +BM +Wd +Xw +BM +pz +pz +be +be +be +Zf +tg +Wk +Wk +Wk +Wk +Wk +vh +vh +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(8,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +Dw +Dw +Dw +Dw +Dw +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +YN +BM +Aj +zh +BO +Eg +BM +DI +Kr +Ly +Aj +Kr +PH +Su +Su +Su +Su +Su +BM +Zf +bs +bs +bs +bs +pz +Zf +pz +Zf +tg +Wk +Wk +Wk +vh +vh +vh +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(9,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +Dw +Dw +Dw +Zr +Zr +Zr +Wk +Wk +Wk +Wk +pe +Sl +Sl +Sl +Sl +Sl +Sl +ur +xM +qd +zo +Aj +yC +lP +Fy +Aj +Ly +Om +Om +Aj +Sy +Aj +Aj +Aj +XG +BM +Zf +bs +bs +bs +bs +gi +bs +bs +bs +Zf +be +be +Wk +Wk +Wk +vh +vh +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(10,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +Dw +Dw +Zr +Zr +Zr +Wk +Wk +Wk +Wk +Wk +YN +Zr +Zr +Zr +Zr +Zr +Zr +Wk +BM +yl +ZD +Cd +Cd +DX +IR +GO +Ao +go +GO +GO +GO +GO +qd +Aj +XK +BM +Zf +bs +bs +bs +bs +bs +bs +bs +bs +bs +pz +pz +be +pz +be +be +vh +vh +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(11,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +hR +db +Zr +Zr +Wk +Wk +Wk +Wk +Wk +Wk +Wk +YN +Zr +Zr +Zr +Zr +Zr +Wk +Wk +BM +yo +jL +db +db +db +DT +KR +NQ +EM +KR +Rp +NQ +Kr +Ly +Aj +XM +BM +Zf +bs +bs +bs +bs +bs +bs +ab +bs +bs +bs +bs +bs +bs +bs +be +tg +vh +vh +UW +UW +UW +yX +yX +yX +yX +yX +yX +yX +yX +"} +(12,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +vh +Zr +Zr +Zr +Zr +Wk +Wk +Wk +Wk +Wk +Wk +Wk +YN +Zr +Zr +Zr +Zr +Wk +Wk +Wk +BM +Fx +zJ +ev +Rb +db +BM +BM +ME +OI +BM +BM +BM +TP +Vt +TP +Yf +BM +Zf +tZ +bx +bx +bx +bx +bx +ln +bx +bx +bx +bx +bx +bx +bx +bx +bx +hn +vh +vh +UW +UW +yX +yX +yX +yX +yX +yX +yX +yX +"} +(13,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +vh +vh +Zr +Zr +Zr +Zr +Wk +Wk +Wk +Wk +Wk +Wk +Zr +YN +Zr +Zr +Wk +Wk +Wk +Wk +Wk +BM +Hh +zQ +fM +XB +db +ID +nb +Nk +Ot +nb +Rq +BM +bo +Ly +Aj +Kr +BM +Zf +ho +Zf +Zf +pz +pz +Zf +Zf +tg +tg +Zf +Zf +Zf +Zf +Zf +pz +pz +ho +bs +vh +vh +UW +UW +yX +yX +yX +yX +yX +yX +yX +"} +(14,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +vh +vh +Zr +Zr +Zr +Zr +Wk +Wk +Wk +Wk +Wk +Wk +pe +Sl +pP +Zr +Wk +Wk +Wk +Wk +Wk +Wk +db +dn +dn +db +db +db +IV +KU +Aj +Ly +Qd +Rx +HV +TZ +OK +Aj +FI +BM +Zf +ho +Zf +np +np +nq +nq +nq +nq +np +nq +nq +nq +nq +np +np +pz +ho +bs +bs +vh +vh +UW +yX +yX +yX +yX +yX +yX +yX +"} +(15,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +vh +vh +Zr +Zr +Zr +Zr +Zr +Wk +Wk +Wk +Wk +Zr +XN +OT +Zr +Zr +Zr +Wk +Wk +Wk +Wk +Wk +Wk +db +VJ +zT +dr +dr +db +Jw +FI +Aj +Ly +FI +RD +HV +bp +Aj +Ww +Ys +BM +Zf +ho +Zf +np +bz +TX +TX +TX +TX +TX +TX +TX +TX +TX +TX +np +Zf +ho +bs +bs +pz +vh +vh +UW +yX +yX +yX +yX +yX +yX +"} +(16,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +vh +Zr +Zr +Zr +Zr +Zr +Wk +Wk +Wk +Wk +Wk +Zr +Zr +YN +Zr +Zr +Zr +Wk +Wk +Wk +Wk +Wk +tg +db +dr +Ac +Ac +dr +db +Jy +FI +xZ +OK +FI +RQ +BM +Kr +Aj +Ly +Kr +BM +pz +ho +Zf +nq +TX +cf +TX +TX +TX +cf +TX +TX +fT +RM +TX +nq +Zf +ho +bs +bs +Zf +pz +vh +UW +UW +yX +yX +yX +yX +yX +"} +(17,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +vh +vh +Zr +Zr +Zr +Zr +Zr +Wk +Wk +Wk +Wk +Wk +Zr +Zr +YN +Zr +Zr +Wk +Wk +Wk +Wk +Wk +Zf +Zf +db +db +db +db +db +db +JQ +NQ +Aj +Aj +Qi +RR +BM +TP +TP +Vt +Yu +BM +Zf +ho +Zf +nq +TX +TX +TX +TX +yT +TX +sA +TX +TX +TX +TX +nq +Zf +ho +bs +bs +Zf +Zf +vh +vh +UW +yX +yX +yX +yX +yX +"} +(18,1,1) = {" +yX +yX +yX +yX +yX +yX +vh +vh +Zr +Zr +Zr +Zr +Zr +Zr +Wk +Wk +Wk +Wk +Zr +Zr +Zr +YN +Wk +Wk +Wk +Wk +Wk +Wk +tg +Zf +Zf +Zf +tg +be +Zf +pz +db +BM +Lb +Aj +Aj +Qm +BM +BM +do +WL +xX +WL +Zy +Zf +ho +pz +nq +TX +TX +RM +TX +TX +TX +TX +TX +sA +TX +TX +nq +Zf +hx +bx +bT +Po +Po +hz +vh +vh +UW +yX +yX +yX +yX +"} +(19,1,1) = {" +yX +yX +yX +yX +yX +yX +vh +Zr +Zr +eG +Zr +Zr +Zr +Zr +Zr +Wk +Wk +Zr +Zr +Zr +Zr +YN +Wk +Wk +Wk +Wk +Wk +Zf +pz +pz +pz +Zf +bs +bs +bs +be +tg +JT +Wj +Aj +Aj +Qr +JT +SQ +hH +hH +kl +hH +BV +Zf +ho +pz +np +TX +TX +TX +Bf +PY +TX +Sh +TX +ol +TX +TX +np +Zf +bs +bs +Wk +tg +pz +XF +pz +vh +UW +UW +yX +yX +yX +"} +(20,1,1) = {" +yX +yX +yX +yX +yX +vh +vh +Zr +Zr +YN +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +YN +Wk +Wk +Wk +Wk +Zr +Zf +Zf +pz +tg +bs +bs +bs +bs +bs +pz +JT +Lg +Nm +OR +Qx +JT +hH +hH +hH +NI +hQ +Sg +fk +nk +pz +nq +TX +yT +TX +TX +TX +TX +FC +UF +TX +TX +TX +nq +Zf +bs +Wk +Wk +Wk +be +hV +pz +vh +vh +UW +UW +yX +yX +"} +(21,1,1) = {" +yX +yX +yX +yX +yX +vh +Zr +Zr +Zr +vU +Sl +Sl +Sl +kt +kt +kI +Sl +Sl +Sl +Sl +Sl +ur +Sl +Sl +Sl +qs +Sl +Sl +dP +fk +bx +bx +bx +bx +bx +hn +pz +JT +Lr +Ns +OW +QU +JT +hH +hH +hH +kl +hH +BV +Zf +bs +Zf +nq +TX +cI +TX +TX +TX +TX +FC +Zm +TX +PY +TX +nq +Zf +bs +Wk +Wk +Wk +Dy +kr +oL +Wk +vh +UW +UW +UW +yX +"} +(22,1,1) = {" +yX +yX +yX +yX +vh +vh +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Wk +Zr +YN +Zr +Zr +Wk +Wk +Zr +Zr +Zr +Zr +Zr +YN +Zr +Zr +Wk +be +bs +bs +bs +bs +bs +ho +Zf +oa +oa +oa +oa +oa +oa +hH +hH +hH +kl +hH +BV +Zf +gi +Zf +nq +TX +cI +TX +sA +TX +TX +aB +xk +TX +cf +TX +nq +pz +bs +Wk +Wk +Wk +Wk +Zf +Vz +be +vh +vh +UW +UW +UW +"} +(23,1,1) = {" +yX +yX +yX +yX +vh +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Wk +Wk +fc +Vq +fc +dS +Wk +Wk +Wk +Wk +Zr +Zr +Zr +YN +Zr +Wk +Wk +Zf +tg +bs +dO +bs +gi +ho +tg +Zf +pz +pz +Zf +Zf +tg +jv +hH +hH +kl +hH +BV +Zf +Zf +Zf +np +TX +cI +TX +TX +cf +TX +TX +yY +RM +TX +TX +np +Zf +bs +bs +Wk +Wk +Wk +Zf +Vz +tg +Wk +vh +Yd +Yd +Yd +"} +(24,1,1) = {" +yX +yX +yX +vh +vh +Zr +Zr +Zr +Zr +Zr +Zr +Wk +Wk +Wk +Zr +YN +Zr +Wk +Wk +Wk +Wk +Wk +Wk +Zr +Zr +YN +Wk +Wk +Wk +Wk +pz +Zf +bs +bs +bs +ho +bs +bs +bs +bs +bs +gi +Zf +jv +hH +hH +kl +hH +hH +hC +hC +hC +iy +TX +dT +TX +TX +TX +aO +TX +YC +TX +nB +TX +nq +Zf +bs +bs +Wk +Wk +Wk +Wk +hV +Zf +Zf +Dw +UX +yh +YX +"} +(25,1,1) = {" +yX +yX +yX +vh +Zr +Zr +Zr +Zr +Zr +Zr +Wk +Wk +Wk +Zr +Zr +YN +Zr +Wk +Wk +Wk +Wk +Wk +Wk +Zr +Zr +YN +Wk +Wk +Wk +Wk +Wk +tg +Zf +Zf +bs +hx +bx +bx +bx +bx +kH +bx +dP +Kj +hQ +hQ +kv +hH +hH +hH +hH +hH +nZ +TX +TX +TX +Bf +Bf +TX +TX +TX +TX +fy +TX +nq +tg +bs +bs +Zf +Zf +Zf +Wk +hV +tg +Zf +ci +DO +yh +Xv +"} +(26,1,1) = {" +yX +yX +vh +vh +Zr +Zr +Zr +Zr +Wk +Wk +Wk +Wk +Wk +Zr +io +YN +Zr +Zr +Wk +Wk +Wk +Wk +Wk +Zr +Zr +YN +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Zf +tg +bs +bs +bs +bs +bs +Vz +Zf +pz +jv +hH +hH +NI +hQ +hQ +hQ +hQ +hQ +AJ +oe +oe +RI +oe +oe +so +TX +RM +TX +TX +TX +nq +Zf +bs +bs +pz +Zf +Zf +tg +Vz +Zf +Wk +Wk +vh +vh +YX +"} +(27,1,1) = {" +yX +yX +vh +Zr +Zr +Zr +Zr +Zr +Wk +Wk +Wk +Wk +Wk +Zr +Zr +YN +Zr +Zr +Wk +Wk +Wk +Wk +Wk +Zr +Zr +YN +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Zf +Zf +tg +bs +bs +Zf +gB +Zf +pz +jv +hH +hH +kl +hH +hH +mY +mY +mY +km +bE +Bf +TX +TX +TX +TX +Bf +TX +TX +TX +TX +nq +Zf +bs +bs +bs +Wk +pz +be +XF +Wk +Wk +Wk +Wk +vh +GK +"} +(28,1,1) = {" +yX +yX +vh +Zr +Zr +Zr +Zr +Wk +Wk +Wk +Wk +gr +lr +Zr +Zr +YN +Zr +Zr +lr +gr +Wk +Wk +Wk +Wk +Zr +YN +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +pz +Zf +bs +bs +ho +Zf +pz +jv +hH +hH +kl +hH +BV +Zf +tg +Zf +np +ol +TX +TX +RM +TX +TX +bz +ol +oK +Iw +Iw +np +pz +bs +bs +Wk +Wk +pz +pz +XF +Wk +Wk +Wk +Wk +vh +yR +"} +(29,1,1) = {" +yX +vh +vh +Zr +Zr +Zr +Zr +Wk +Wk +Wk +Wk +gr +fc +Zr +Zr +YN +Zr +io +fc +gr +Wk +Wk +Wk +Wk +Zr +YN +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +tg +bs +jT +lc +Zf +Zf +jv +hH +hH +kl +hH +BV +pz +tm +Zf +nq +oK +oK +Iw +QD +TX +LS +TX +oS +TB +cA +Iw +nq +pz +bs +bs +Wk +Wk +pz +Zf +Vz +pz +tg +Wk +Wk +vh +vh +"} +(30,1,1) = {" +yX +vh +Zr +Zr +Zr +Zr +Zr +Wk +Wk +Wk +Wk +gx +lr +Zr +io +YN +Zr +Zr +lr +nI +Wk +Wk +Wk +Wk +Zr +YN +Zf +tg +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Zf +Zf +bs +bs +ho +bs +Zf +jv +hH +hH +kl +hH +BV +pz +Zf +Zf +nq +yL +oK +Iw +cH +TX +yT +TX +oi +oS +Iw +Iw +nq +pz +bs +bs +Wk +Wk +Wk +Zf +Vz +pz +pz +pz +Wk +Wk +vh +"} +(31,1,1) = {" +yX +vh +Zr +Zr +Zr +Zr +Wk +Wk +Wk +Wk +gr +lr +lr +Zr +Zr +YN +Zr +Zr +lr +lr +Wk +Wk +Wk +Wk +Zf +Vz +pz +pz +pz +Wk +Wk +Wk +Wk +Wk +Wk +pz +tg +bs +bs +bs +ho +bs +Zf +jv +hH +hH +kl +hH +BV +Zf +Zf +Zf +nq +oK +oS +Iw +hZ +TX +TX +TX +Iw +Iw +oK +nP +nq +pz +bs +bs +Wk +Wk +Wk +Zf +Vz +tg +pz +bs +bs +Wk +vh +"} +(32,1,1) = {" +yX +vh +Zr +Zr +Zr +Zr +Wk +Wk +Wk +nI +fc +lr +Zr +Zr +Zr +kV +lB +Zr +lr +gr +Wk +Wk +Wk +Wk +be +Vz +be +be +pz +pz +Wk +Wk +pz +Zf +Zf +Zf +bs +bs +bs +bs +ho +bs +Zf +jv +hH +hH +kl +hH +BV +Zf +be +be +np +Iw +Iw +Iw +Iw +cA +oK +Iw +Iw +cA +Iw +cA +np +Zf +bs +bs +bs +Wk +Wk +Wk +hV +bs +bs +bs +bs +bs +vh +"} +(33,1,1) = {" +yX +vh +Zr +Zr +Zr +Zr +Wk +Wk +Wk +lr +io +pe +Sl +Sl +Sl +pP +Zr +Zr +fc +gx +Wk +Wk +Wk +pz +Zf +Vz +Zf +bs +bs +pz +pz +be +tg +Zf +bs +bs +bs +bs +bs +bs +ho +bs +Zf +jv +hH +hH +kl +hH +BV +Zf +pz +pz +np +SK +SK +nq +nq +nq +nq +nq +nq +nq +nq +np +np +Zf +bs +bs +bs +bs +Wk +Wk +ho +bs +bs +bs +bs +bs +vh +"} +(34,1,1) = {" +vh +vh +Zr +Zr +Zr +Zr +Wk +Wk +gr +lr +Zr +YN +Zr +io +Zr +Zr +Zr +io +lr +gr +Wk +Wk +Wk +tg +Zf +jj +bx +bx +bx +bx +Po +bT +dP +bx +bx +bx +bx +bx +bx +bx +ln +bx +dP +Kj +hQ +hQ +kv +hH +BV +pz +pz +be +be +pz +Zf +Zf +Zf +Zf +Zf +Zf +Zf +Zf +pz +pz +Zf +tg +bs +bs +bs +bs +bs +Wk +ho +As +bs +bs +bs +bs +vh +"} +(35,1,1) = {" +vh +Zr +Zr +Zr +Zr +Zr +Wk +Wk +gr +fc +Zr +YN +Zr +Zr +Zr +Zr +Zr +Zr +Wk +Wk +Wk +Wk +Wk +Wk +Zf +ho +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +gi +pz +jv +hH +hH +kl +hH +BV +Zf +tg +tg +Zf +pz +pz +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +gi +bs +bs +bs +ho +bs +bs +bs +bs +bs +bs +"} +(36,1,1) = {" +vh +Zr +Zr +Zr +Zr +Zr +Zr +Wk +nI +fc +Zr +YN +Zr +Zr +Wk +dS +fc +dS +Wk +Wk +Wk +Wk +Wk +Wk +Zf +ho +Zf +Zf +Zf +Zf +Zf +Zf +Zf +Zf +Zf +Zf +pz +tg +pz +Zf +Zf +pz +pz +jv +hH +hH +kl +hH +BV +tg +Zf +Zf +Zf +Zf +Zf +Zf +Zf +Zf +Zf +Zf +Zf +Zf +Zf +Zf +Zf +Zf +Zf +Zf +Zf +pz +pz +Zf +Vz +Zf +Zf +pz +Zf +Zf +Zf +"} +(37,1,1) = {" +vh +Zr +Zr +Zr +Zr +Zr +Zr +Wk +dS +dS +fc +gP +fc +Wk +Wk +Wk +lN +Wk +Wk +Wk +Wk +Wk +Wk +Zf +Zf +ho +pz +fs +fs +cb +cb +fs +fs +cb +cb +fs +fs +hC +hC +hC +hC +hC +hC +hH +hH +hH +kl +hH +hH +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +fz +hC +hC +hC +hC +hC +hC +"} +(38,1,1) = {" +vh +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +YN +Zr +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +pz +Zf +be +ho +Zf +fs +sp +cs +cs +cs +cs +cs +cs +cs +fs +hH +hH +hH +hH +hH +hH +hH +hH +hH +kl +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +kl +hH +hH +hH +hH +hH +hH +"} +(39,1,1) = {" +vh +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +YN +Zr +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +pz +be +bs +ho +pz +IJ +ZL +bN +uD +dd +dd +eb +dd +dd +HK +hQ +hQ +kc +hQ +hQ +hQ +hQ +hQ +kc +mX +hQ +hQ +hQ +hQ +hQ +hQ +hQ +hQ +hQ +zf +hQ +hQ +hQ +hQ +hQ +hQ +kc +hQ +hQ +hQ +hQ +hQ +hQ +hQ +hQ +mX +hQ +kc +hQ +hQ +hQ +hQ +"} +(40,1,1) = {" +vh +Zr +Zr +Zr +Zr +Wk +Zr +Zr +Zr +Zr +Zr +YN +Zr +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +pz +pz +bs +jT +lc +Zf +IJ +ZL +bN +cJ +bN +ih +At +bN +bN +fs +hH +hH +kl +hH +hH +hH +hH +hH +kl +hH +hH +hH +hH +hH +hH +hH +jy +jy +jy +jy +hH +hH +hH +hH +hH +hH +kl +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +kl +hH +hH +hH +hH +"} +(41,1,1) = {" +vh +Zr +Zr +Wk +Wk +Wk +Wk +Zr +Zr +Zr +Zr +YN +be +pz +pz +tg +pz +Wk +tg +be +Zf +be +bs +bs +bs +ho +Zf +IJ +ZL +bN +cJ +sx +bN +bN +bN +bN +Db +jy +hH +kl +hH +hH +hH +hH +hH +kl +hH +hH +hH +hH +hH +hH +eV +jy +hH +hH +hH +hH +hH +hH +hH +hH +hH +kl +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +kl +hH +hH +hH +hH +"} +(42,1,1) = {" +vh +Zr +Zr +Zr +Wk +Wk +Wk +Zr +Zr +pe +Sl +ur +Po +iK +bT +bx +bx +bx +bx +bx +bx +bx +bx +bx +bx +nk +Zf +IJ +ZL +bN +vB +bN +bN +bN +bN +bN +fs +hH +jy +kl +hH +hH +hH +mY +mY +uS +mY +mY +mY +mY +mY +mY +jy +hH +hH +hH +hH +mY +mY +mY +mY +mY +mY +uS +mY +mY +mY +mY +mY +mY +mY +mY +mY +mY +uS +mY +mY +mY +Py +"} +(43,1,1) = {" +vh +Zr +Zr +Zr +Wk +Wk +Zr +Zr +Zr +YN +Zr +Wk +pz +gB +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +Zf +fs +bN +bN +vO +Yp +Yp +Yp +Yp +Yp +fs +hH +hH +kl +hH +hH +BV +pz +Zf +Vz +pz +pz +Zf +tg +Zf +pz +jv +hH +hH +hH +BV +Zf +Zf +pz +pz +Zf +Zf +Vz +tg +Zf +Zf +Zf +pz +pz +pz +Zf +Zf +Zf +Vz +Zf +pz +Zf +Zf +"} +(44,1,1) = {" +vh +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +YN +Wk +Wk +Wk +XF +Zf +pz +Zf +Zf +Zf +pz +Zf +tg +Zf +pz +pz +pz +Zf +fs +bN +bN +cJ +Xm +Xm +AS +Ce +Ev +fs +hH +hH +kl +hH +hH +BV +Zf +bs +mm +bs +bs +bs +bs +gi +Zf +jv +hH +hH +hH +BV +Zf +gi +bs +bs +bs +bs +mm +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +ho +bs +bs +bs +bs +"} +(45,1,1) = {" +vh +vh +Zr +Zr +Zr +pe +Sl +Sl +Sl +pP +Wk +Wk +Wk +XF +tg +fs +IJ +IJ +fs +IJ +IJ +fs +IJ +IJ +fs +IJ +IJ +fs +bN +sx +cJ +Xm +Xm +Xm +Xm +Xm +fs +hH +hH +kl +hH +hH +BV +Zf +bs +bs +bs +bs +bs +bs +bs +pz +jv +hH +hH +hH +BV +tg +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +As +bs +bs +bs +ho +bs +bs +bs +vh +"} +(46,1,1) = {" +yX +vh +Zr +Zr +Zr +YN +Zr +Zr +Zr +Wk +Wk +Wk +Zf +ho +pz +IJ +ar +ar +oW +ar +ar +ar +sT +sT +sT +ar +ar +rH +bN +sx +cJ +Xm +Xm +AX +ng +EJ +fs +hH +hH +kl +hH +hH +BV +Zf +pz +Zf +tg +pz +pz +Zf +Zf +Zf +jv +hH +hH +hH +BV +Zf +Zf +Zf +Zf +Zf +pz +Zf +Zf +tg +bs +bs +bs +bs +tg +Zf +Zf +bs +ho +bs +bs +bs +vh +"} +(47,1,1) = {" +yX +vh +Zr +Zr +Zr +YN +Zr +Zr +Wk +Wk +Wk +pz +bs +ho +be +IJ +ES +ES +ar +ar +ar +ES +ES +sT +ES +oW +ar +rP +bN +sx +cJ +Xm +Xm +Yp +Yp +Yp +fs +hH +hH +kl +hH +hH +BV +tg +NA +NA +NA +NA +NA +NA +NA +NA +bi +bi +lw +bi +bi +NA +NA +Ms +Ms +Ms +NA +NA +NA +Zf +bs +bs +bs +Zf +Wk +Wk +Zf +Zf +Vz +bs +bs +bs +vh +"} +(48,1,1) = {" +yX +vh +Zr +Zr +Zr +YN +Zr +Zr +Wk +Wk +Wk +pz +bs +ho +be +IJ +KN +ES +ES +ES +oW +KN +ES +ES +ES +aI +ar +rP +bN +ih +cJ +Xm +Xm +Xm +Ch +Fe +fs +hH +hH +kl +hH +hH +BV +Zf +NA +VF +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +VF +NA +Zf +bs +Zf +Wk +Wk +Wk +Wk +Wk +tg +Vz +Zf +bs +bs +vh +"} +(49,1,1) = {" +yX +vh +Zr +Zr +XN +OT +Zr +Wk +Wk +Wk +Wk +Zf +bs +ho +be +IJ +ES +ES +sT +ES +ar +ar +ES +ES +ES +ES +ES +fs +bN +bN +cJ +Xm +Xm +Xm +Xm +Xm +fs +hH +hH +kl +hH +hH +BV +Zf +NA +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +NA +Zf +Zf +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Vz +Zf +Zf +bs +vh +"} +(50,1,1) = {" +yX +vh +vh +Zr +Zr +YN +Zr +Wk +Wk +Wk +Wk +Zf +bs +ho +be +IJ +ES +ES +aI +ES +ES +ES +oW +ES +ES +ar +ar +rH +bN +bN +cJ +Xm +Xm +Xm +CA +Fu +fs +hH +hH +kl +hH +hH +BV +Zf +NA +hH +hH +hH +Uv +Uv +UD +aL +UD +UD +UD +UD +UD +aL +UD +Rw +Rw +hH +hH +hH +NA +pz +tg +Wk +Wk +Wk +Wk +Wk +Wk +Wk +hV +tg +Zf +vh +vh +"} +(51,1,1) = {" +yX +yX +vh +Zr +Zr +YN +Zr +Wk +Wk +Wk +Wk +Zf +bs +ho +pz +IJ +oW +ar +ar +ES +sT +ES +ES +ES +ES +ES +ar +rH +bN +bN +cJ +Xm +Xm +Yp +Yp +Yp +fs +hH +hH +kl +hH +hH +BV +Zf +NA +hH +hH +hH +Uv +Uv +UD +aS +on +Ba +iO +TA +KV +CI +UD +Rw +Rw +hH +hH +hH +NA +pz +pz +Wk +Wk +Wk +Wk +Wk +Wk +Zf +hV +Zf +pz +vh +yX +"} +(52,1,1) = {" +yX +yX +vh +Zr +Zr +YN +Zr +Wk +Wk +Wk +tg +Zr +Zr +ho +tg +IJ +ar +ar +ar +ar +oW +ES +ES +ES +ES +ar +ar +rH +bN +bN +cJ +Xm +Xm +Bj +CX +Fz +fs +hH +hH +kl +hH +hH +BV +pz +NA +hH +hH +hH +Uv +Uv +UD +YF +ZB +JX +Zr +Nn +Tw +yr +UD +Rw +Rw +hH +hH +hH +NA +Zf +pz +Zf +Wk +Wk +Wk +Wk +Wk +Zf +Vz +Zf +pz +vh +yX +"} +(53,1,1) = {" +yX +yX +vh +vh +Zr +YN +Zr +Zr +Wk +pz +Zr +Zr +Zr +ho +pz +fs +IJ +IJ +fs +IJ +IJ +fs +IJ +IJ +fs +IJ +IJ +fs +bN +tc +ww +Xm +Xm +Xm +Xm +Xm +fs +jm +hH +kl +hH +hH +BV +pz +NA +hH +hH +hH +Uv +Uv +UD +EV +Zr +sB +yQ +mo +Yn +PE +UD +Rw +Rw +hH +hH +hH +NA +Zf +bs +bs +Wk +Wk +Wk +pz +pz +Zf +ho +bs +vh +vh +yX +"} +(54,1,1) = {" +yX +yX +yX +vh +Zr +vU +Sl +Sl +Sl +Sl +Sl +Sl +Sl +lc +pz +IJ +KN +ES +ar +sT +sT +ES +ES +sT +QN +ar +ar +rH +bN +bN +cJ +Xm +Xm +Bn +Gd +Gd +fs +hH +hH +kl +hH +hH +BV +Zf +NA +hH +hH +hH +Uv +Uv +UD +EV +Zr +Zr +Zr +Zr +Zr +PE +UD +Rw +Rw +hH +hH +hH +NA +Zf +Zf +bs +Zf +Wk +pz +Zf +bs +ab +ho +bs +vh +yX +yX +"} +(55,1,1) = {" +yX +yX +yX +vh +vh +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Wk +ho +be +IJ +sT +sT +sT +sT +QN +ES +ES +sT +ES +ar +ES +rQ +bN +bN +cJ +Xm +Xm +Yp +Yp +Yp +fs +hH +hH +kl +hH +hH +BV +NA +NA +hH +hH +hH +Uv +Uv +UD +EV +Zr +Zr +Zr +Zr +Zr +PE +UD +Rw +Rw +hH +hH +hH +NA +NA +Zf +tZ +bx +dP +dP +bx +bx +ln +nk +vh +vh +yX +yX +"} +(56,1,1) = {" +yX +yX +yX +yX +vh +Zr +Zr +Zr +Zr +Zr +Wk +Wk +Wk +ho +be +IJ +sT +QN +sT +sT +sT +ES +ES +ES +ES +ES +ES +rH +bN +bN +cJ +Xm +Xm +Xm +Dd +Gf +fs +hH +hH +kl +hH +hH +BV +NA +Uu +hH +hH +hH +Uv +Uv +UD +EV +Zr +Zr +Zr +Zr +Zr +PE +UD +Rw +Rw +hH +hH +hH +Ds +NA +pz +ho +bs +tg +Wk +pz +Zf +bs +bs +vh +yX +yX +yX +"} +(57,1,1) = {" +yX +yX +yX +yX +vh +vh +Zr +Zr +Wk +Wk +Wk +Wk +Wk +ho +be +IJ +ar +sT +ar +sT +sT +ES +ES +ES +sT +aU +ar +fs +bN +bN +cJ +Xm +Xm +Xm +Xm +Xm +fs +hH +hH +kl +hH +hH +BV +NA +Uu +hH +hH +hH +Uv +Uv +UD +kO +ve +ve +NS +ve +ve +dA +UD +Rw +Rw +hH +hH +hH +mU +NA +pz +ho +pz +Wk +Wk +Wk +pz +Zf +vh +vh +yX +yX +yX +"} +(58,1,1) = {" +yX +yX +yX +yX +yX +vh +Zr +Zr +Wk +Wk +Wk +Wk +pz +ho +be +IJ +ar +ar +gd +ar +sT +ES +QN +sT +ES +ar +KN +rH +bN +bN +cJ +Xm +Xm +Xm +Dg +Dg +fs +hH +hH +kl +hH +hH +BV +NA +mU +hH +hH +hH +Uv +Uv +UD +EV +Zr +Zr +Zr +Zr +Zr +PE +UD +Rw +Rw +hH +hH +hH +KA +NA +pz +ho +Zf +Wk +Wk +Wk +Wk +pz +vh +yX +yX +yX +yX +"} +(59,1,1) = {" +yX +yX +yX +yX +yX +vh +vh +Zr +Wk +Wk +Wk +Wk +pz +ho +be +IJ +QN +ar +ar +ar +sT +ES +ES +ES +sT +ar +ES +rH +bN +bN +cJ +Xm +Xm +Yp +Yp +Yp +fs +hH +hH +kl +hH +hH +BV +NA +NA +hH +hH +hH +Uv +Uv +UD +EV +Zr +Zr +Zr +Zr +Zr +PE +UD +Rw +Rw +hH +hH +hH +NA +NA +Zf +ho +bs +tg +Wk +Wk +Wk +vh +vh +yX +yX +yX +yX +"} +(60,1,1) = {" +yX +yX +yX +yX +yX +yX +vh +Zr +Zr +Wk +Wk +Zf +bs +ho +be +IJ +sT +sT +sT +sT +sT +ES +ar +ES +sT +QN +ES +rH +bN +bN +cJ +Xm +Xm +Xm +Dh +Gj +fs +hH +hH +kl +hH +hH +BV +Zf +NA +hH +hH +hH +Uv +Uv +UD +EV +Zr +Zr +Zr +Zr +Zr +PE +UD +Rw +Rw +hH +hH +hH +NA +Zf +tg +ho +bs +bs +Zf +Wk +Wk +vh +yX +yX +yX +yX +yX +"} +(61,1,1) = {" +yX +yX +yX +yX +yX +yX +vh +vh +Zr +pz +Zf +pz +bs +ho +be +fs +IJ +IJ +fs +IJ +IJ +fs +IJ +IJ +fs +IJ +IJ +fs +bN +bN +cJ +Xm +Xm +Xm +Xm +Xm +fs +hH +hH +kl +hH +hH +BV +Zf +Ms +hH +hH +hH +Uv +Uv +UD +EV +Zr +ee +yQ +ZB +Yn +PE +UD +Rw +Rw +hH +hH +hH +NA +Zf +bs +ho +bs +bs +bs +pz +vh +vh +yX +yX +yX +yX +yX +"} +(62,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +vh +vh +pz +tg +Zf +bs +ho +be +Zf +pz +Zf +pz +Zf +Zf +Zf +tg +Zf +Zf +Zf +pz +fs +bN +bN +cJ +Xm +Xm +Xm +Dh +Gj +fs +hH +hH +kl +hH +hH +BV +Zf +NA +hH +hH +hH +Uv +Uv +UD +YF +ZB +hU +Zr +Nn +ZB +yr +UD +Rw +Rw +hH +hH +hH +NA +Zf +bs +ho +bs +bs +bs +vh +vh +yX +yX +yX +yX +yX +yX +"} +(63,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +vh +pz +Zf +bs +bs +jj +bx +bx +bx +bx +bx +bx +bx +bx +bx +bx +bx +hn +Zf +fs +bN +bN +vO +Yp +Yp +Yp +Yp +Yp +fs +hH +hH +kl +hH +hH +BV +pz +NA +hH +hH +hH +Uv +Uv +UD +ba +LH +Jm +HB +we +LH +yn +UD +Rw +Rw +hH +hH +hH +NA +pz +bs +ho +bs +bs +bs +vh +yX +yX +yX +yX +yX +yX +yX +"} +(64,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +vh +vh +bs +bs +bs +ho +bs +bs +bs +Zf +Zf +pz +pz +bs +bs +bs +gi +ho +Zf +IJ +ZL +bN +cJ +bN +bN +bN +bN +bN +fs +hH +hH +kl +hH +hH +BV +pz +NA +hH +hH +hH +Uv +Uv +UD +aL +UD +UD +UD +UD +UD +aL +UD +Rw +Rw +hH +hH +hH +NA +pz +bs +ho +bs +bs +vh +vh +yX +yX +yX +yX +yX +yX +yX +"} +(65,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +vh +vh +bs +bs +mm +bs +pz +Zf +tg +Wk +Wk +pz +Zf +pz +bs +bs +ho +Zf +IJ +ZL +bN +cJ +bN +bN +bN +bN +bN +Db +hH +hH +kl +hH +hH +BV +Zf +NA +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +NA +uy +bx +nk +bs +vh +vh +vh +yX +yX +yX +yX +yX +yX +yX +"} +(66,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +vh +vh +bs +bs +bs +pz +Wk +Wk +Wk +Wk +Wk +Wk +pz +Zf +Zf +ho +pz +IJ +ZL +bN +cJ +bN +bN +Bv +bN +bN +fs +hH +hH +kl +hH +hH +BV +Zf +NA +VF +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +hH +VF +NA +Vz +bs +bs +vh +vh +vh +vh +yX +yX +yX +yX +yX +yX +yX +"} +(67,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +vh +vh +bs +pz +pz +pz +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Zf +ho +pz +IJ +ZL +bN +wD +dd +dd +er +dd +dd +HK +hQ +hQ +kv +hH +hH +BV +Zf +NA +NA +NA +NA +NA +NA +NA +NA +NA +NA +NA +NA +NA +NA +NA +NA +NA +NA +NA +NA +NA +Vz +bs +vh +vh +vh +vh +yX +yX +yX +yX +yX +yX +yX +yX +"} +(68,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +vh +vh +Zf +Zf +Zf +Zf +Wk +Wk +Wk +Wk +Wk +tg +Zf +ho +Zf +fs +ss +cv +cv +cv +cv +cv +cv +cv +fs +hH +hH +kl +hH +hH +BV +Zf +Zf +Zf +Zf +Zf +Zf +Zf +Zf +Zf +pz +pz +pz +Zf +Zf +uy +dP +dP +dP +dP +dP +Po +dP +fC +vh +vh +vh +vh +Df +yX +yX +yX +yX +yX +yX +yX +yX +"} +(69,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +vh +vh +Zf +tg +pz +pz +Wk +Wk +Wk +Wk +pz +Zf +ho +Zf +fs +fs +IJ +IJ +fs +fs +IJ +IJ +fs +fs +hH +hH +kl +hH +hH +BV +Zf +gi +bs +bs +bs +bs +bs +bs +Zf +Zf +Zf +Zf +tg +Zf +Vz +bs +bs +bs +pz +Zf +pz +pz +vh +vh +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(70,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +vh +vh +Zf +Zf +Zf +pz +Zf +Wk +Zf +Zf +bs +ho +Zf +Zf +tg +Zf +Zf +Zf +tg +Zf +Zf +Zf +tg +jv +hH +NI +hQ +hQ +Sg +dP +bx +bx +dP +fk +dP +dP +dP +bx +bx +kH +bx +bx +bx +nk +Zf +pz +Zf +Wk +Wk +Wk +vh +vh +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(71,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +vh +vh +vh +be +be +tg +Zf +Zf +dO +bs +jj +bx +bx +bx +bx +Po +Po +bx +bx +bx +bx +dP +Kj +hQ +kv +hH +hH +BV +pz +bs +Zf +Wk +Wk +Wk +Wk +tg +pz +bs +ho +bs +bs +Zf +pz +pz +Wk +Wk +Wk +vh +vh +vh +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(72,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +vh +vh +be +Zf +bs +bs +bs +bs +mm +bs +bs +pz +pz +Wk +tg +pz +bs +bs +bs +Zf +jv +hH +kl +hH +hH +BV +pz +pz +Wk +Wk +Wk +Wk +Wk +Wk +Zf +Zf +mm +bs +bs +tg +Wk +Wk +Wk +Wk +vh +vh +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(73,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +vh +vh +vh +bs +bs +bs +bs +bs +bs +be +Wk +Wk +Wk +Wk +pz +pz +bs +gi +be +jv +hH +kl +hH +hH +BV +Zf +pz +Zf +Wk +Wk +Wk +Wk +Wk +tg +Zf +Zf +bs +Zf +Wk +Wk +Wk +vh +vh +vh +vh +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(74,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +kT +vh +vh +vh +bs +bs +bs +bs +be +tg +Wk +Wk +Wk +Wk +tg +bs +bs +be +jv +hH +kl +hH +hH +BV +Zf +bs +Zf +pz +Wk +Wk +Wk +Wk +be +pz +pz +bs +Zf +Wk +vh +vh +vh +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(75,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +vh +vh +vh +bs +pz +pz +be +pz +Wk +Wk +pz +pz +bs +bs +be +jv +hH +kl +hH +hH +BV +Zf +bs +bs +Zf +Zf +pz +Wk +be +be +Zf +pz +Zf +vh +vh +vh +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(76,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +vh +vh +vh +pz +be +be +pz +Zf +pz +bs +bs +bs +Zf +jv +hH +kl +hH +hH +BV +Zf +bs +bs +Zf +tg +pz +pz +Zf +Zf +tg +vh +vh +vh +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(77,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +vh +vh +vh +vh +tg +be +bs +bs +bs +bs +pz +jv +hH +kl +hH +hH +BV +pz +bs +bs +bs +Zf +Zf +Zf +vh +vh +vh +vh +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} +(78,1,1) = {" +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +UW +yX +yX +vh +vh +vh +vh +vh +vh +bs +pz +Kq +hH +kl +hH +hH +BV +pz +gi +vh +vh +vh +vh +vh +vh +UW +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +nu +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +"} diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm new file mode 100644 index 000000000000..6878a0c1ed20 --- /dev/null +++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm @@ -0,0 +1,85552 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space, +/area/fiorina/oob) +"aak" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "4" + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/tumor/servers) +"aaq" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"aar" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer, +/area/fiorina/tumor/ship) +"aas" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"aaR" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"abG" = ( +/obj/item/trash/chunk, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"abJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + icon = 'icons/obj/structures/doors/2x1prepdoor.dmi' + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"ace" = ( +/obj/effect/landmark{ + icon_state = "hive_spawn"; + name = "xeno_hive_spawn" + }, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"ach" = ( +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/servers) +"aco" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/sillycup{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"acO" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"adq" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"adE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) +"aeb" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/fiorina/tumor/servers) +"aej" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/damaged3, +/area/fiorina/station/security) +"aeo" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_tram) +"aeF" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibup1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"aeI" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"aeS" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"afk" = ( +/turf/open/floor/solarpanel, +/area/fiorina/oob) +"afq" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/fiorina/station/medbay) +"afO" = ( +/obj/structure/bed/sofa/vert/grey/bot{ + pixel_y = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"afW" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"afX" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"aga" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"agh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"agi" = ( +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/tumor/servers) +"agv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + anchored = 1 + }, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + pixel_x = -8 + }, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + layer = 4.1; + pixel_x = -4; + pixel_y = 18 + }, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + layer = 4.1; + pixel_x = 4; + pixel_y = 18 + }, +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"agG" = ( +/obj/structure/barricade/metal{ + dir = 1; + health = 250; + icon_state = "metal_1" + }, +/obj/structure/barricade/metal{ + dir = 8; + health = 250; + icon_state = "metal_1" + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"agT" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"ahm" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"aic" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/station/telecomm/lz1_tram) +"aif" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"aik" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) +"aiv" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"aje" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"aju" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"ajw" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"ajx" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/space/basic, +/area/fiorina/oob) +"ajP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pizzabox/margherita, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ajZ" = ( +/obj/effect/landmark{ + icon_state = "hive_spawn"; + name = "xeno_hive_spawn" + }, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) +"akp" = ( +/turf/open/floor/prison/green, +/area/fiorina/station/chapel) +"akM" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"akW" = ( +/obj/structure/bed/chair/janicart, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"akZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) +"alC" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"alK" = ( +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"alP" = ( +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"alX" = ( +/obj/item/paper/crumpled/bloody, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"alY" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/platingdmg1, +/area/fiorina/station/security) +"amd" = ( +/obj/effect/decal/hefa_cult_decals/d96, +/obj/item/paper/crumpled/bloody, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"ame" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"amn" = ( +/turf/open/floor/prison/whitepurple/east, +/area/fiorina/station/research_cells) +"amF" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/tumor/aux_engi) +"amZ" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"ane" = ( +/obj/item/weapon/unathiknife{ + name = "ceremonial knife" + }, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"anl" = ( +/obj/item/pamphlet/engineer, +/obj/structure/closet, +/obj/item/restraint/handcuffs, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec) +"anm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer{ + icon_state = "security_det"; + name = "Shuttle control deck"; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/item/ashtray/plastic{ + pixel_x = 8; + pixel_y = -7 + }, +/obj/item/clothing/mask/cigarette/cigar{ + desc = "Manufactured in New Space Cuba, a product of Castro LTD."; + name = "comically large cigar"; + pixel_x = 14; + pixel_y = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"ann" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"anq" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan9" + }, +/area/fiorina/tumor/ship) +"anu" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"any" = ( +/obj/item/stack/cable_coil/random, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"anJ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"anP" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/turf/open/floor/carpet, +/area/fiorina/station/security/wardens) +"anR" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"anT" = ( +/obj/item/reagent_container/food/snacks/meat, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"anW" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/green/west, +/area/fiorina/station/chapel) +"aoo" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"aoZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_y = 11 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"ape" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/fiorina/maintenance) +"apf" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"apu" = ( +/turf/open/floor/prison/blue, +/area/fiorina/station/power_ring) +"apw" = ( +/turf/open/auto_turf/sand/layer1, +/area/fiorina/tumor/civres) +"apO" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"aqj" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"aqo" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"aqw" = ( +/obj/item/stool, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"arl" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"arn" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "researchprestine" + }, +/turf/closed/wall/prison, +/area/fiorina/station/research_cells) +"art" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/greenblue/southwest, +/area/fiorina/station/botany) +"arG" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) +"arT" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"arW" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/oob) +"asf" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"ask" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/largecrate/random/case, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"aso" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"ast" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"asz" = ( +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/central_ring) +"asE" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"asI" = ( +/obj/item/toy/deck, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"atd" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"atl" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"atp" = ( +/obj/item/book/manual/security_space_law{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"atw" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"atY" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) +"auj" = ( +/obj/item/frame/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"auQ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"auS" = ( +/obj/structure/closet/wardrobe/orange, +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"avc" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/research_cells) +"avJ" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"avT" = ( +/obj/item/trash/semki, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"avY" = ( +/obj/item/clothing/head/soft/rainbow, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"awL" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"awU" = ( +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"axb" = ( +/obj/item/clothing/suit/storage/marine/specialist, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"axn" = ( +/obj/structure/monorail{ + dir = 4; + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"axx" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"axA" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_x = 2; + pixel_y = -10 + }, +/turf/closed/wall/prison, +/area/fiorina/station/security) +"aye" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"ayo" = ( +/obj/structure/platform, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/security) +"ayB" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) +"ayG" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"ayH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"ayW" = ( +/obj/item/explosive/grenade/incendiary/molotov, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"ayX" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"azs" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"azv" = ( +/obj/structure/girder, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"azK" = ( +/obj/structure/machinery/microwave{ + desc = "There's two of them."; + pixel_y = 5 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + desc = "Holy shit"; + pixel_y = 18 + }, +/obj/item/storage/pill_bottle/kelotane/skillless{ + desc = "Don't touch -Dr. O"; + pixel_x = 6; + pixel_y = 31 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"azZ" = ( +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/tumor/ice_lab) +"aAf" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/almayer, +/area/fiorina/tumor/ship) +"aAk" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"aAA" = ( +/turf/open/floor/prison/green/north, +/area/fiorina/station/transit_hub) +"aAJ" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"aBb" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"aBs" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"aBD" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"aBJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/chef_recipes{ + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"aBZ" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/prison, +/area/fiorina/station/park) +"aCC" = ( +/obj/item/tool/soap{ + pixel_x = 2; + pixel_y = -4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/fiorina/tumor/ship) +"aCZ" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"aDc" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"aDx" = ( +/turf/open/floor/prison/yellow, +/area/fiorina/station/central_ring) +"aEi" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"aEB" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/security/wardens) +"aEC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"aEG" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"aEQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"aFp" = ( +/obj/structure/machinery/defenses/tesla_coil/premade/smart{ + faction_group = list("CLF") + }, +/turf/open/floor/plating/plating_catwalk, +/area/fiorina/tumor/ship) +"aFK" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/corsat/plate, +/area/fiorina/station/telecomm/lz1_cargo) +"aFQ" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibmid3" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"aFZ" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/medbay) +"aGF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/frame/firstaid_arm_assembly, +/obj/item/stack/nanopaste{ + pixel_x = 11; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"aGR" = ( +/obj/structure/largecrate/random, +/obj/effect/spawner/random/powercell, +/obj/item/device/camera/oldcamera{ + pixel_y = 11 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"aHg" = ( +/obj/structure/prop/resin_prop, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"aHj" = ( +/obj/item/tool/crowbar, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/lz/near_lzI) +"aHH" = ( +/obj/item/tool/shovel/etool, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"aHJ" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"aHK" = ( +/obj/item/ammo_casing{ + icon_state = "casing_1" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"aId" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/hypospray, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"aIm" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"aIB" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"aJk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"aJo" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -5 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"aJv" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/tumor/aux_engi) +"aJX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"aKb" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"aKA" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/space, +/area/fiorina/oob) +"aKN" = ( +/obj/structure/machinery/computer/cameras{ + network = list("omega") + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"aLp" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/fiorina/station/medbay) +"aLz" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"aLC" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"aLT" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"aLX" = ( +/obj/structure/bed/chair{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"aMg" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/tumor/ice_lab) +"aMr" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"aMu" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/tumor/ice_lab) +"aME" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"aMM" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) +"aMS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/clothing/mask/cigarette, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_y = 8 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"aNk" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"aNz" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + layer = 3.5 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"aOc" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_3"; + opacity = 0 + }, +/area/fiorina/tumor/ship) +"aOm" = ( +/turf/open/floor/prison/panelscorched, +/area/fiorina/tumor/servers) +"aOC" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"aOL" = ( +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"aOT" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"aPd" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"aPr" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"aPv" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/prison, +/area/fiorina/station/central_ring) +"aPD" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "inflatable wall" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"aPH" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/security/wardens) +"aPO" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"aQH" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/landmark/nightmare{ + insert_tag = "yardbasketball" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"aQR" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"aQW" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"aQY" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"aRk" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/power_ring) +"aRt" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5_1" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"aRv" = ( +/obj/structure/platform, +/obj/structure/closet/firecloset/full, +/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"aRT" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"aSm" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"aSz" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/research_cells) +"aSA" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"aSM" = ( +/obj/effect/spawner/random/gun/shotgun/highchance{ + mags_max = 0; + mags_min = 0 + }, +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"aSS" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/medbay) +"aTe" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"aTo" = ( +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/station/transit_hub) +"aTx" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/security) +"aTE" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"aTL" = ( +/obj/structure/bed/chair{ + dir = 4; + layer = 2.8 + }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"aTM" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"aTO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck/uno, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"aTY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/briefcase, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"aUg" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/prison, +/area/fiorina/station/security) +"aUA" = ( +/obj/item/stack/cable_coil/orange, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"aVd" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"aVU" = ( +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) +"aWk" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/telecomm/lz2_maint) +"aWI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"aWV" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/tumor/servers) +"aXk" = ( +/obj/item/storage/fancy/candle_box, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"aXn" = ( +/turf/closed/shuttle/elevator{ + dir = 5 + }, +/area/fiorina/tumor/aux_engi) +"aXp" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/bed/chair/wheelchair{ + desc = "Great scott, it can move on its own!"; + dir = 4; + icon_state = "officechair_white"; + name = "Dr. O's fantastic self rolling wheelie chair"; + pixel_x = 7 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"aXv" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"aXx" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"aXC" = ( +/turf/open/floor/prison/damaged2/southwest, +/area/fiorina/station/lowsec) +"aXO" = ( +/turf/open/floor/prison/damaged2, +/area/fiorina/station/central_ring) +"aXR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"aYf" = ( +/obj/item/tool/scythe, +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) +"aYg" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"aZi" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/tumor/servers) +"aZD" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"aZL" = ( +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"aZN" = ( +/obj/item/toy/crayon/yellow, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"aZW" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"baC" = ( +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/station) +"baE" = ( +/obj/structure/disposalpipe/segment, +/obj/item/stack/catwalk, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"baM" = ( +/obj/effect/spawner/random/gun/smg, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"bbn" = ( +/obj/item/device/motiondetector, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"bbp" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"bbI" = ( +/obj/item/stool{ + pixel_x = -4; + pixel_y = 23 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"bbU" = ( +/obj/structure/sign/safety/fire_haz, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"bcd" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"bce" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"bcf" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/kelotane/skillless, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"bcp" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) +"bcq" = ( +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison, +/area/fiorina/station/security) +"bcz" = ( +/obj/structure/machinery/light/small{ + dir = 4; + pixel_x = 11; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"bcT" = ( +/obj/structure/platform, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"bcX" = ( +/obj/item/tool/warning_cone, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"bdb" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"bdE" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"bec" = ( +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/lz/near_lzI) +"beh" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/whitegreencorner/west, +/area/fiorina/tumor/ice_lab) +"bel" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) +"bem" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"ber" = ( +/obj/structure/inflatable/popped/door, +/obj/item/ammo_magazine/m56d, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"bez" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 20 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"beB" = ( +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/power_ring) +"beW" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"bff" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"bfF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"bgc" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"bgd" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 2; + req_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"bgy" = ( +/obj/item/trash/pistachios, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"bgD" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"bht" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/obj/item/explosive/grenade/high_explosive/m15, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"bhu" = ( +/obj/structure/platform, +/obj/structure/closet/crate/bravo, +/obj/item/stack/sheet/plasteel, +/obj/item/tool/wirecutters, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"bhW" = ( +/turf/open/floor/prison/greencorner/east, +/area/fiorina/tumor/civres) +"bhX" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/flight_deck) +"bis" = ( +/turf/closed/wall/prison, +/area/fiorina/station/chapel) +"bix" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"bjf" = ( +/obj/item/tool/warning_cone, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"bjo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison, +/area/fiorina/station/security) +"bjt" = ( +/obj/structure/girder, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"bjR" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"bjZ" = ( +/obj/item/weapon/twohanded/spear, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"bkg" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"bki" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"bkQ" = ( +/obj/item/ammo_casing{ + icon_state = "casing_7_1" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"bkU" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"ble" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"blf" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/power_ring) +"blA" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" + }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"blG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + icon = 'icons/obj/structures/doors/2x1prepdoor.dmi' + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"bma" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"bmw" = ( +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"bmE" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"bmT" = ( +/obj/structure/monorail{ + dir = 4; + name = "launch track" + }, +/turf/open/space, +/area/fiorina/oob) +"bmV" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"bne" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"bnh" = ( +/obj/item/storage/briefcase, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"bno" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"bnx" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"bnA" = ( +/turf/closed/wall/prison, +/area/fiorina/station/transit_hub) +"bnJ" = ( +/obj/structure/machinery/lapvend, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"bnL" = ( +/obj/item/storage/fancy/cigarettes/lady_finger, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"bnM" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "delivery_outlet"; + layer = 6; + name = "overhead ducting"; + pixel_y = 33 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"boe" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"bou" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"boF" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"boI" = ( +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"bpe" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"bpo" = ( +/obj/item/dogtag, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"bpx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"bqu" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"bqC" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/greenblue/west, +/area/fiorina/station/botany) +"bqD" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"bqF" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/storage/belt/marine, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"bqX" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"brl" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"brC" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) +"brR" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/flight_deck) +"brY" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"bsc" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"bsk" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/space/basic, +/area/fiorina/oob) +"bsm" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"bso" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_l_w" + }, +/area/fiorina/tumor/ship) +"bsO" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"bsR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"buz" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"buG" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/central_ring) +"buJ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/power_ring) +"bvg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"bvp" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/damaged1/southwest, +/area/fiorina/station/central_ring) +"bvr" = ( +/obj/item/explosive/grenade/high_explosive/m15, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/panelscorched, +/area/fiorina/tumor/aux_engi) +"bvs" = ( +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/central_ring) +"bvK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/atmospipes{ + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"bvY" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"bwj" = ( +/obj/structure/computerframe, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"bwk" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"bww" = ( +/obj/item/trash/candy, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"bxc" = ( +/obj/structure/window/reinforced, +/turf/open/floor/prison, +/area/fiorina/station/security) +"bxd" = ( +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/oob) +"bxe" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"bxg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"bxm" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"bxv" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring) +"bxy" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/lz/near_lzI) +"bxA" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"bxE" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 20 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"bxQ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/medbay) +"bxV" = ( +/obj/item/clothing/head/cmcap, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"bya" = ( +/obj/structure/machinery/disposal, +/obj/item/tool/kitchen/rollingpin{ + pixel_y = 8 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"byb" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan27" + }, +/area/fiorina/tumor/ship) +"byc" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"bym" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" + }, +/area/fiorina/lz/near_lzI) +"byB" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"byE" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"byF" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/tumor/ice_lab) +"byG" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"byJ" = ( +/turf/open/floor/prison/green/west, +/area/fiorina/tumor/civres) +"byT" = ( +/obj/structure/platform, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"byY" = ( +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"bze" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitegreencorner/west, +/area/fiorina/station/medbay) +"bzO" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/power_ring) +"bzU" = ( +/obj/item/tool/shovel/snow, +/obj/item/device/flashlight, +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"bAc" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan25" + }, +/area/fiorina/tumor/aux_engi) +"bAf" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/power_ring) +"bAE" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"bAM" = ( +/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"bBr" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/obj/item/bodybag/tarp/reactive, +/obj/item/bodybag/tarp/reactive, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"bBt" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"bBA" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan5" + }, +/area/fiorina/station/power_ring) +"bBB" = ( +/obj/structure/largecrate/random/barrel, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"bBK" = ( +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison, +/area/fiorina/station/security) +"bCe" = ( +/turf/open/floor/prison/redcorner/north, +/area/fiorina/station/security) +"bCu" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"bDv" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"bDx" = ( +/obj/item/tool/extinguisher/mini, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"bDJ" = ( +/obj/effect/spawner/random/gun/pistol, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"bDM" = ( +/turf/open/floor/prison/blue/west, +/area/fiorina/station/chapel) +"bDU" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"bDX" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/green, +/area/fiorina/station/chapel) +"bEk" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"bEm" = ( +/obj/effect/landmark/wo_supplies/storage/belts/knifebelt, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"bEA" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"bED" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/park) +"bEP" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"bEX" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"bFg" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/meat/human, +/obj/item/reagent_container/food/snacks/meat/human, +/obj/structure/machinery/light/double/blue, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"bFi" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"bFr" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/chapel) +"bFA" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy27" + }, +/area/fiorina/station/medbay) +"bFC" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison, +/area/fiorina/station/park) +"bFJ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"bFL" = ( +/obj/structure/mirror{ + pixel_x = -32 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"bGA" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"bGB" = ( +/obj/structure/largecrate/supply/generator, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"bGH" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"bGY" = ( +/turf/closed/shuttle/elevator{ + dir = 9 + }, +/area/fiorina/station/civres_blue) +"bHt" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"bHv" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"bHP" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"bHR" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"bHU" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"bIz" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"bIP" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"bIR" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/disco) +"bIZ" = ( +/turf/closed/shuttle/elevator{ + dir = 6 + }, +/area/fiorina/station/civres_blue) +"bJb" = ( +/obj/structure/closet/cabinet, +/obj/item/device/encryptionkey/WY, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"bJn" = ( +/obj/item/stack/cable_coil/pink, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"bJp" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"bJG" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" + }, +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"bKF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/imidazoline, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"bLA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/prison, +/area/fiorina/station/security/wardens) +"bLE" = ( +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/fiorina/station/security) +"bLJ" = ( +/turf/closed/wall/prison, +/area/fiorina/station/central_ring) +"bLM" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"bLO" = ( +/obj/item/stack/cable_coil/blue, +/turf/open/floor/prison/whitegreencorner, +/area/fiorina/tumor/ice_lab) +"bMh" = ( +/obj/item/frame/table/wood/fancy, +/obj/item/paper/prison_station/warden_note, +/obj/item/tool/pen, +/turf/open/floor/carpet, +/area/fiorina/station/security/wardens) +"bMu" = ( +/obj/structure/curtain{ + layer = 3 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"bMz" = ( +/obj/item/tool/lighter/random, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"bMF" = ( +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"bMG" = ( +/obj/structure/surface/rack, +/obj/item/restraint/handcuffs/zip, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec) +"bMI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black_random, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"bMT" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"bNo" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"bNE" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"bNP" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"bNT" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"bOp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/barbed_wire, +/obj/item/stack/barbed_wire, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/cable_coil/blue, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"bOx" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"bOK" = ( +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) +"bOR" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"bPh" = ( +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"bPl" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"bPn" = ( +/obj/item/reagent_container/food/drinks/coffee{ + name = "\improper paper cup" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"bPy" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"bPG" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) +"bPK" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"bPQ" = ( +/turf/open/floor/prison/green/north, +/area/fiorina/station/chapel) +"bPT" = ( +/obj/structure/monorail{ + dir = 5; + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"bPV" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"bQh" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"bQj" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"bQk" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"bQn" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib2" + }, +/turf/open/floor/prison/whitegreencorner/west, +/area/fiorina/station/medbay) +"bQv" = ( +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"bQy" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/spray/pepper, +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"bQL" = ( +/obj/item/tool/mop, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"bQM" = ( +/turf/open/space, +/area/fiorina/oob) +"bQW" = ( +/obj/item/frame/rack, +/obj/item/stack/medical/bruise_pack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"bRb" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/fiorina/tumor/ship) +"bRc" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; + name = "\improper Fiorina Purple Block Canteen Vendor" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"bRo" = ( +/obj/structure/sink{ + pixel_y = 23 + }, +/obj/item/prop/helmetgarb/rabbitsfoot{ + pixel_y = 22 + }, +/obj/item/reagent_container/food/drinks/bottle/kahlua{ + pixel_x = 5; + pixel_y = 25 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"bRs" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"bRA" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"bRC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"bRQ" = ( +/obj/item/stock_parts/micro_laser/ultra, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"bSm" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/lz/near_lzI) +"bSq" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/nailgun, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"bSs" = ( +/turf/open/floor/prison/floorscorched2, +/area/fiorina/station/security) +"bSM" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + draw_warnings = 0; + health = null; + indestructible = 1; + unacidable = 1 + }, +/turf/open/floor/greengrid, +/area/fiorina/station/botany) +"bSS" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"bTc" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/chapel) +"bTo" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/space, +/area/fiorina/oob) +"bTp" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"bTr" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"bTC" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring) +"bTI" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + indestructible = 1; + name = "launch bay door" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"bUt" = ( +/obj/structure/largecrate/random, +/obj/item/trash/pistachios, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"bUw" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"bUB" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/space, +/area/fiorina/oob) +"bVE" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"bVZ" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/fiorina/tumor/ship) +"bWg" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/faxmachine, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"bWy" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"bXc" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"bXe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_box/magazine/misc/flares, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"bXh" = ( +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/chapel) +"bXz" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"bXA" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"bYY" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/maintenance) +"bZn" = ( +/obj/item/device/taperecorder{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"bZD" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/fiorina/tumor/aux_engi) +"bZI" = ( +/obj/structure/surface/table/reinforced/prison{ + dir = 8; + flipped = 1 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"bZY" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"car" = ( +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) +"caA" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"caC" = ( +/turf/open/floor/prison/green/east, +/area/fiorina/station/transit_hub) +"caF" = ( +/turf/open/floor/wood, +/area/fiorina/station/lowsec) +"caX" = ( +/obj/structure/inflatable/popped/door, +/obj/item/ammo_casing{ + icon_state = "casing_1" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"cbd" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"cbA" = ( +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/fiorina/station/park) +"cbE" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + indestructible = 1 + }, +/obj/item/clothing/head/that{ + anchored = 1; + indestructible = 1; + pixel_y = 7 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"cbF" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"cbN" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station) +"cbY" = ( +/obj/item/newspaper, +/turf/open/floor/prison/whitepurplecorner, +/area/fiorina/station/research_cells) +"ccH" = ( +/obj/structure/machinery/newscaster, +/turf/closed/wall/prison, +/area/fiorina/station/civres_blue) +"ccY" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/prop/invuln{ + desc = "The best ride in the universe. For the one and only Souto Man! Although, this one seems to have no fuel left."; + dir = 4; + icon = 'icons/obj/vehicles/vehicles.dmi'; + icon_state = "soutomobile"; + name = "Disabled Souto Mobile" + }, +/turf/open/floor/prison, +/area/fiorina/station/park) +"ccZ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"cdp" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/flight_deck) +"cdV" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"cdY" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir" + }, +/obj/structure/bed/roller, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"ceq" = ( +/obj/item/bodybag, +/obj/item/bodybag{ + pixel_y = 2 + }, +/obj/item/bodybag{ + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"cer" = ( +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"ceB" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"ceC" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/security) +"ceJ" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/tumor/ice_lab) +"cfa" = ( +/obj/item/frame/rack, +/obj/structure/barricade/handrail/type_b{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/lowsec) +"cfG" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"cfU" = ( +/obj/item/prop/helmetgarb/gunoil, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"cgx" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"chg" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"chx" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"chE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) +"chT" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"chZ" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/curtain/shower, +/obj/structure/window{ + dir = 4 + }, +/obj/item/coin/uranium{ + desc = "You found one of the three uranium coins. It is entirely worthless." + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"ciy" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ciA" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"ciM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/bottle/spaceacillin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/reagent_container/syringe{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bottle/spaceacillin{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"cje" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"cjG" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"cki" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"ckm" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"ckr" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/station/telecomm/lz1_tram) +"ckt" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/medbay) +"ckA" = ( +/obj/structure/platform, +/turf/open/floor/prison, +/area/fiorina/tumor/ice_lab) +"ckS" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"ckZ" = ( +/obj/structure/platform, +/turf/open/floor/prison, +/area/fiorina/station/park) +"clb" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket" + }, +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"cls" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"clu" = ( +/obj/structure/girder, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"clv" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"clA" = ( +/obj/item/weapon/baton/cattleprod, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"clN" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"clP" = ( +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"cmy" = ( +/obj/structure/sign/prop3{ + desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." + }, +/turf/closed/wall/prison, +/area/fiorina/station/central_ring) +"cmE" = ( +/obj/item/stack/sheet/wood/medium_stack, +/obj/item/stack/sheet/wood/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"cmP" = ( +/obj/structure/pipes/standard/tank{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"cns" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"cnH" = ( +/obj/item/stock_parts/manipulator/pico, +/turf/open/floor/prison/darkpurple2/southeast, +/area/fiorina/tumor/servers) +"coj" = ( +/obj/item/stool, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"cpv" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"cpP" = ( +/turf/closed/shuttle/elevator/gears, +/area/fiorina/station/telecomm/lz1_cargo) +"cqz" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_leftengine" + }, +/area/fiorina/oob) +"cqP" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"cqT" = ( +/turf/open/floor/prison/floorscorched1, +/area/fiorina/station/security) +"cqV" = ( +/obj/item/stool, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) +"cqW" = ( +/obj/item/stool, +/turf/open/floor/prison/damaged2, +/area/fiorina/station/lowsec) +"cqX" = ( +/obj/item/stool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"cri" = ( +/obj/structure/machinery/computer/prisoner, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security/wardens) +"crm" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"cry" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"crM" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/tumor/servers) +"csL" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/telecomm/lz1_tram) +"ctc" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"cto" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"ctC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/skills{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ctD" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"ctI" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/effect/spawner/random/goggles/lowchance, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"ctW" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/coin/uranium, +/obj/item/bedsheet/green, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"ctY" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/fiorina/station/central_ring) +"cui" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/civres_blue) +"cum" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 1 + }, +/obj/item/frame/rack, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) +"cvc" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/structure/machinery/m56d_hmg/mg_turret/dropship{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/central_ring) +"cvd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"cvi" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"cvn" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"cvv" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"cvH" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"cvL" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "gamertime" + }, +/turf/closed/wall/prison, +/area/fiorina/tumor/servers) +"cwB" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"cwM" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"cxb" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/maintenance) +"cxc" = ( +/obj/item/stack/folding_barricade, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) +"cxy" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0; + pixel_x = 10; + pixel_y = -8 + }, +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"cxA" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"cyb" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/aux_engi) +"cye" = ( +/obj/item/trash/pistachios, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"cyk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/megaphone, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"cyR" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"cyV" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/medbay) +"czf" = ( +/obj/structure/monorail{ + dir = 4; + name = "launch track" + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"czr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"czJ" = ( +/obj/structure/reagent_dispensers/watertank{ + layer = 2.6 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"cAJ" = ( +/obj/item/trash/snack_bowl, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"cAO" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/monorail{ + dir = 4; + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"cAU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/obj/item/tool/pen/blue, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"cAW" = ( +/turf/open/space/basic, +/area/fiorina/oob) +"cBm" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"cBn" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"cBG" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"cBJ" = ( +/obj/item/clothing/shoes/laceup, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"cBK" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/space, +/area/fiorina/oob) +"cBX" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"cCe" = ( +/turf/open/floor/prison/whitepurplecorner, +/area/fiorina/station/research_cells) +"cCh" = ( +/obj/item/ammo_casing{ + dir = 6; + icon_state = "casing_10_1" + }, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"cCs" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"cCt" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/wood, +/area/fiorina/station/park) +"cCx" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"cCy" = ( +/obj/structure/bed/sofa/vert/grey/top, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"cCB" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/prison, +/area/fiorina/station/security) +"cCF" = ( +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"cCO" = ( +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"cDb" = ( +/obj/item/tool/crowbar, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"cDl" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"cDE" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"cEb" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"cEg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"cEw" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/transit_hub) +"cEz" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_right" + }, +/area/fiorina/tumor/ship) +"cEG" = ( +/obj/item/tool/pickaxe, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"cEW" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ywflowers_4" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"cEY" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"cFg" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"cFq" = ( +/obj/item/tool/mop, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"cFT" = ( +/turf/open/floor/prison/green/north, +/area/fiorina/tumor/civres) +"cFX" = ( +/obj/structure/largecrate/supply/supplies, +/obj/effect/spawner/random/goggles/lowchance, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"cGa" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"cGR" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/fiorina/station/park) +"cGS" = ( +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/disco) +"cGU" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"cHl" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"cHm" = ( +/obj/item/bedsheet/green, +/obj/structure/bed, +/obj/item/toy/plush/farwa, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"cHC" = ( +/obj/item/trash/popcorn, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"cHF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"cHK" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"cIt" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"cIJ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/inflatable, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"cIQ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/station/park) +"cJv" = ( +/obj/item/stack/rods, +/turf/open/floor/corsat/squares, +/area/fiorina/station/telecomm/lz1_cargo) +"cJz" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"cJL" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"cJS" = ( +/obj/item/trash/uscm_mre, +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"cJW" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/carpet, +/area/fiorina/station/security/wardens) +"cJY" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkbrown2/northwest, +/area/fiorina/tumor/aux_engi) +"cKa" = ( +/turf/closed/wall/prison, +/area/fiorina/station/research_cells) +"cKb" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"cKB" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"cKH" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/up, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"cKJ" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/reagent_container/glass/bottle/robot/antitoxin, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"cKU" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/botany) +"cLu" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"cLy" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"cLC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"cLS" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"cLZ" = ( +/obj/structure/largecrate/guns/merc, +/obj/item/toy/deck/uno, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"cMb" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/medbay) +"cMD" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/central_ring) +"cME" = ( +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"cMP" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"cNe" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"cOj" = ( +/turf/open/floor/prison/blue, +/area/fiorina/station/civres_blue) +"cOB" = ( +/obj/item/stool, +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/flight_deck) +"cOC" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"cOF" = ( +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"cOL" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"cPh" = ( +/obj/item/ammo_casing{ + icon_state = "casing_6" + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"cPq" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"cPs" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"cPz" = ( +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"cPC" = ( +/obj/item/stack/sandbags_empty, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"cPL" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"cQe" = ( +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"cQf" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/incendiary/molotov, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"cQv" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + layer = 3 + }, +/area/fiorina/oob) +"cRg" = ( +/obj/structure/machinery/vending/coffee/simple, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"cRl" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/book/manual/security_space_law, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"cRx" = ( +/obj/structure/machinery/sensortower, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"cRB" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + density = 0; + dir = 4; + icon_state = "door_open"; + opacity = 0 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"cRI" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/item/stool, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"cRK" = ( +/obj/structure/window, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"cRM" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) +"cRZ" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"cSh" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"cTr" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"cTx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"cTy" = ( +/obj/item/stool, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"cTD" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/lz/near_lzI) +"cTE" = ( +/obj/item/ammo_casing{ + icon_state = "cartridge_1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"cUd" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) +"cUA" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"cUU" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_tram) +"cVu" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"cVQ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"cVV" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/disco) +"cXp" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"cXV" = ( +/obj/item/ammo_magazine/smg/mp5, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"cYd" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"cYe" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"cYi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/card/id/gold{ + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"cYj" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/lowsec) +"cYI" = ( +/turf/open/floor/prison/green/northeast, +/area/fiorina/tumor/aux_engi) +"cYP" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/storage/pill_bottle/dexalin/skillless, +/obj/effect/spawner/random/gun/special/midchance, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"cYS" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/central_ring) +"cYT" = ( +/obj/vehicle/powerloader{ + dir = 8 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"cYV" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"cZe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"cZh" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/spawner/random/gun/rifle, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"cZp" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"cZq" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/space, +/area/fiorina/oob) +"cZr" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"cZy" = ( +/obj/structure/machinery/door/window/northleft{ + dir = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security/wardens) +"cZP" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"cZR" = ( +/turf/open/floor/prison/damaged2, +/area/fiorina/station/disco) +"cZV" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/fiorina/station/security) +"dae" = ( +/obj/structure/machinery/vending/walkman, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"daA" = ( +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" + }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"daD" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth, +/turf/open/space, +/area/fiorina/oob) +"daK" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"daS" = ( +/obj/item/ammo_magazine/pistol/kt42, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"daY" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/trash/kepler, +/turf/open/floor/prison, +/area/fiorina/station/security) +"dbh" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"dbi" = ( +/obj/item/storage/toolbox/electrical, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"dbq" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 + }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"dbr" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"dbI" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/floor_marked/west, +/area/fiorina/station/lowsec) +"dbW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/donkpockets{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/storage/box/donkpockets, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"dcv" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/fiorina/station/research_cells) +"dcy" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"dcO" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"dde" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/oob) +"ddt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/beer_pack{ + pixel_y = 7 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"ddv" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/maintenance) +"ddA" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/plating_catwalk, +/area/fiorina/tumor/ship) +"ddB" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"ddD" = ( +/obj/structure/janitorialcart, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"ddG" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"ddL" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"ddM" = ( +/obj/item/stack/catwalk, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"ddN" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/fiorina/tumor/servers) +"ddU" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"ddY" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) +"dec" = ( +/obj/structure/sign/prop3{ + desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." + }, +/turf/closed/wall/prison, +/area/fiorina/tumor/servers) +"deB" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"deR" = ( +/obj/item/toy/crayon/red, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"dfc" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/oob) +"dfh" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"dfA" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + pixel_y = -14 + }, +/obj/structure/machinery/m56d_hmg, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"dga" = ( +/obj/structure/monorail{ + dir = 4; + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"dhc" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"dhi" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/space/basic, +/area/fiorina/oob) +"dhL" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"dhZ" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"diF" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"diJ" = ( +/obj/item/stool, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"diL" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"dje" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"djf" = ( +/obj/effect/spawner/random/gun/smg/midchance, +/turf/open/floor/wood, +/area/fiorina/station/park) +"djB" = ( +/obj/vehicle/powerloader{ + dir = 4 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"djF" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"dkb" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"dkl" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 6; + pixel_y = -7 + }, +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 + }, +/turf/open/floor/prison, +/area/fiorina/station/park) +"dkn" = ( +/turf/open/floor/prison, +/area/fiorina/station/security/wardens) +"dkz" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"dkX" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) +"dlj" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"dlr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 16 + }, +/obj/item/device/radio{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"dlA" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"dmQ" = ( +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"dmT" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/prison, +/area/fiorina/station/park) +"dnj" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_x = 2; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"dnz" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/spawner/random/toy, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"dnK" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"dnX" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"doe" = ( +/obj/item/tool/kitchen/utensil/pspoon, +/turf/open/space/basic, +/area/fiorina/oob) +"doq" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"doA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"doD" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"doQ" = ( +/obj/structure/disposalpipe/broken{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"doY" = ( +/obj/item/paper/crumpled/bloody, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/maintenance) +"dpe" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"dpn" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"dpH" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"dpZ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"dqa" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river/red_pool, +/area/fiorina/station/park) +"dqE" = ( +/obj/structure/prop/souto_land/pole, +/turf/open/floor/wood, +/area/fiorina/station/park) +"dqG" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"dqN" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_s_w" + }, +/area/fiorina/tumor/ship) +"dqX" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"drd" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/station/flight_deck) +"drk" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"drt" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"drZ" = ( +/obj/item/clothing/mask/cigarette, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"dsS" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/obj/item/trash/barcardine, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"dsW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"dtg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"dtk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/golden_cup, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"dtR" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"dtS" = ( +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/chapel) +"due" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/monorail{ + dir = 10; + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"duw" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"duF" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"duM" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"duV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"duW" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"dvg" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"dvq" = ( +/obj/structure/machinery/newscaster, +/turf/closed/wall/prison, +/area/fiorina/station/medbay) +"dvB" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison, +/area/fiorina/tumor/ice_lab) +"dwf" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/maintenance) +"dwJ" = ( +/obj/structure/machinery/processor{ + desc = "It CAN blend it."; + icon_state = "blender_e"; + name = "Blendomatic"; + pixel_x = -2; + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"dwP" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"dwQ" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/tumor/fiberbush) +"dwT" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security/wardens) +"dwZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/objective{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"dxb" = ( +/obj/item/storage/briefcase/stowaway, +/turf/open/space, +/area/fiorina/oob) +"dxc" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"dxl" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"dxv" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/maintenance) +"dxE" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"dxP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"dxS" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/tumor/servers) +"dxW" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"dyh" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/servers) +"dyB" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/obj/item/explosive/grenade/high_explosive/m15, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"dyY" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"dzl" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/flight_deck) +"dzB" = ( +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"dzE" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"dAd" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"dAg" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/station/medbay) +"dBl" = ( +/obj/item/ammo_magazine/rifle/mar40/extended, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"dBq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer{ + desc = "Looks like Gonzo is ruling as a 2/0/1 regency of France in 1574. Tough break Gonzo."; + icon_state = "security_det"; + name = "Shuttle control deck"; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"dBs" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"dBt" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/greenblue/northeast, +/area/fiorina/station/botany) +"dBy" = ( +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"dBz" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) +"dBO" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"dBZ" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/fiorina/station/flight_deck) +"dCg" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "4" + }, +/obj/item/prop/helmetgarb/flair_initech, +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"dCn" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"dCs" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib2" + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"dCt" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"dCu" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "Residential Apartment" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"dCv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"dCK" = ( +/obj/structure/prop/souto_land/pole, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"dCM" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"dDn" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"dDI" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"dDT" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/servers) +"dDU" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"dEh" = ( +/obj/item/reagent_container/food/drinks/cans/sodawater, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"dEj" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" + }, +/obj/item/bedsheet/ce{ + desc = "It crinkles, aggressively."; + name = "sterile wax sheet" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/medbay) +"dFh" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/chapel) +"dFB" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/spawner/random/gun/shotgun/midchance, +/turf/open/floor/prison, +/area/fiorina/station/security) +"dFH" = ( +/obj/structure/closet/cabinet, +/obj/item/key/cargo_train, +/obj/item/clothing/under/rank/cargotech, +/obj/item/clothing/accessory/armband/cargo, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"dFI" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"dFK" = ( +/obj/structure/surface/rack, +/obj/item/ammo_box/magazine/nailgun, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"dFM" = ( +/obj/item/circuitboard/machine/pacman/super, +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"dGx" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"dGA" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/park) +"dHb" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/storage/box/pillbottles, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"dHd" = ( +/obj/structure/sign/safety/bulkhead_door, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/tumor/civres) +"dHD" = ( +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"dHU" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/station/security) +"dIh" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"dIo" = ( +/turf/closed/wall/prison, +/area/fiorina/tumor/civres) +"dIx" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"dJd" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"dJe" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/park) +"dJh" = ( +/obj/structure/bookcase/manuals/research_and_development{ + pixel_y = 10 + }, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"dJt" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/yellow, +/area/fiorina/station/disco) +"dKo" = ( +/obj/effect/spawner/random/gun/shotgun, +/turf/open/floor/carpet, +/area/fiorina/station/security/wardens) +"dKB" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"dKX" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/maintenance) +"dLq" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"dLL" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/fiorina/tumor/servers) +"dLN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + pixel_y = 5 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"dMt" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/fiorina/tumor/aux_engi) +"dNc" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"dNh" = ( +/turf/open/auto_turf/sand/layer1, +/area/fiorina/lz/near_lzI) +"dNk" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"dNx" = ( +/obj/structure/monorail{ + dir = 9; + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"dNC" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) +"dOk" = ( +/turf/open/floor/prison/panelscorched, +/area/fiorina/tumor/civres) +"dOt" = ( +/obj/structure/surface/table/reinforced/prison{ + flipped = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"dOE" = ( +/obj/item/storage/bible/hefa, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"dOO" = ( +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"dOX" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/lz/near_lzI) +"dOZ" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"dPe" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"dPm" = ( +/obj/structure/bed/chair{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"dPr" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_tram) +"dPZ" = ( +/obj/structure/monorail{ + dir = 6; + name = "launch track" + }, +/turf/open/space, +/area/fiorina/oob) +"dQe" = ( +/obj/item/tool/surgery/scalpel, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"dQV" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"dQW" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "cartridge_2" + }, +/obj/effect/spawner/random/gun/smg, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"dRk" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"dRs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/accessory/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"dRx" = ( +/obj/structure/monorail{ + dir = 5; + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"dRO" = ( +/obj/effect/acid_hole{ + dir = 4 + }, +/turf/closed/wall/r_wall/prison_unmeltable{ + desc = "A huge chunk of metal used to seperate rooms."; + name = "metal wall" + }, +/area/fiorina/oob) +"dSM" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"dTf" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"dTg" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"dTx" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"dTX" = ( +/obj/structure/surface/rack, +/obj/item/storage/bible/hefa{ + pixel_y = 3 + }, +/obj/item/storage/bible/hefa, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"dUf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"dUi" = ( +/obj/structure/bed/sofa/vert/grey/bot{ + pixel_y = 8 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"dUn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"dUu" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"dUx" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"dVu" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"dVx" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"dVA" = ( +/obj/item/stool, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"dVC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"dVD" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"dVR" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"dWn" = ( +/obj/structure/barricade/wooden, +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"dWp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/russianRed{ + pixel_y = 9 + }, +/obj/item/storage/pill_bottle/kelotane/skillless, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"dWB" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"dXi" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkpurple2/east, +/area/fiorina/tumor/servers) +"dXv" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"dXG" = ( +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"dXK" = ( +/obj/item/newspaper, +/turf/open/floor/prison/green, +/area/fiorina/station/transit_hub) +"dXN" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"dXS" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"dXT" = ( +/obj/structure/platform_decoration, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"dYi" = ( +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/central_ring) +"dYo" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"dYp" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Hangar Landing Zone" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"dYq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"dYC" = ( +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/central_ring) +"dYI" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" + }, +/area/fiorina/tumor/aux_engi) +"dYV" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/fiorina/maintenance) +"dZj" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"dZo" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"dZu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/card/id/guest, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"dZK" = ( +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/chapel) +"dZQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) +"eac" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"eao" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"eca" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ecd" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"ecu" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"ecD" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 + }, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"ecL" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"ecM" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/disco) +"ecQ" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_rightengine" + }, +/area/fiorina/tumor/ship) +"ecU" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/station/flight_deck) +"eds" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/effect/decal/cleanable/blood, +/obj/item/attachable/bipod, +/obj/item/device/multitool, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"edu" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"edy" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"edY" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"eeH" = ( +/obj/structure/monorail{ + dir = 9; + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"eeI" = ( +/obj/structure/lattice, +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer_hull, +/area/fiorina/oob) +"efk" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"efl" = ( +/obj/structure/prop/invuln{ + desc = "Floating cells are reserved for highly dangerous criminals. Whoever is out there is probably best left out there."; + dir = 4; + icon = 'icons/obj/structures/doors/celldoor.dmi'; + icon_state = "door_closed"; + name = "cell door" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + density = 1; + icon_state = "door_deny" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"efI" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 20 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"efR" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"efT" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/tumor/ice_lab) +"efW" = ( +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"egd" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"egk" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/central_ring) +"egv" = ( +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/station/civres_blue) +"egz" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"egL" = ( +/obj/item/newspaper, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"egT" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"ehr" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"ehy" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"ehO" = ( +/obj/structure/platform/shiva, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"eim" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"eio" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"eip" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"ejf" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"ejq" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/tumor/ice_lab) +"ejs" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/security) +"ejt" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"ejw" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/tumor/ice_lab) +"ejL" = ( +/obj/structure/largecrate/supply/supplies/water, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -4; + pixel_y = 14 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 1; + pixel_y = 12 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"ejM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/wy_mre{ + pixel_x = 5; + pixel_y = 2 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"ekb" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_tram) +"eki" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"ekx" = ( +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/power_ring) +"ekz" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ekF" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"ekS" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"ekW" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/power_ring) +"elc" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"ele" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"elO" = ( +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"emm" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"emC" = ( +/obj/structure/lattice, +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/space, +/area/fiorina/oob) +"end" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"enu" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"enx" = ( +/obj/item/tool/shovel, +/turf/open/floor/prison/green/southeast, +/area/fiorina/tumor/civres) +"enH" = ( +/obj/effect/alien/weeds/node, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"enY" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"eot" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_tram) +"eov" = ( +/turf/closed/wall/r_wall/prison_unmeltable{ + desc = "A huge chunk of metal used to seperate rooms."; + name = "metal wall" + }, +/area/fiorina/station/research_cells) +"eow" = ( +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"eoW" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"epB" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/blue, +/area/fiorina/station/power_ring) +"epD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"epV" = ( +/obj/item/paper/crumpled/bloody, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"epY" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"eqi" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"eqw" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring) +"eqJ" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"eqQ" = ( +/turf/open/floor/corsat/squares, +/area/fiorina/station/telecomm/lz1_cargo) +"eqS" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/green, +/area/fiorina/station/chapel) +"eqU" = ( +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"eqZ" = ( +/obj/structure/largecrate/random/mini/ammo, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"erb" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"erh" = ( +/obj/item/ammo_casing{ + icon_state = "casing_1" + }, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) +"erj" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/ice_lab) +"erl" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"erw" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"erD" = ( +/obj/structure/largecrate/supply, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/medbay) +"erT" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/space, +/area/fiorina/oob) +"erU" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"esw" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/medbay) +"esR" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"esS" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"esZ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"etj" = ( +/turf/open/floor/prison/green/northeast, +/area/fiorina/station/chapel) +"etq" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"etL" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"eub" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/storage/box/holobadge{ + pixel_y = 3 + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"eux" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) +"euz" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/fiorina/station/medbay) +"evd" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 2; + layer = 6; + name = "overhead pipe"; + pixel_x = -16; + pixel_y = 12 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"evk" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) +"evl" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "brflowers_1" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"evC" = ( +/obj/structure/barricade/sandbags{ + dir = 4; + icon_state = "sandbag_0"; + pixel_y = 2 + }, +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + pixel_y = -14 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"evT" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/botany) +"ewx" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/fiorina/station/security/wardens) +"ewE" = ( +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" + }, +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" + }, +/obj/structure/surface/rack, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"ewI" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"exa" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison, +/area/fiorina/station/park) +"exl" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/wooden, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"exy" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/maintenance) +"exI" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/fiorina/station/park) +"exO" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"exW" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"eyi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"eyj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 9 + }, +/obj/item/reagent_container/food/snacks/tomatomeat{ + pixel_x = -6 + }, +/obj/item/reagent_container/food/snacks/tomatomeat{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/reagent_container/food/snacks/tomatomeat{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/power_ring) +"eys" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"eyv" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) +"eyy" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/landmark/nightmare{ + insert_tag = "nogear" + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"eyz" = ( +/obj/structure/machinery/portable_atmospherics/canister/phoron, +/turf/open/floor/corsat/plate, +/area/fiorina/station/telecomm/lz1_cargo) +"eyO" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"ezd" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"eze" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/fiorina/oob) +"ezn" = ( +/obj/structure/sign/prop3{ + desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/telecomm/lz1_cargo) +"ezO" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ezU" = ( +/obj/structure/surface/table/reinforced/prison{ + dir = 4; + flipped = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ezV" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"eAM" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"eAY" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"eBa" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_3" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"eBj" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"eBr" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"eBO" = ( +/obj/structure/machinery/door/airlock/almayer/marine, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"eBS" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/power_ring) +"eCy" = ( +/obj/effect/spawner/random/gun/pistol, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"eCK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/lz/near_lzII) +"eDp" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"eDA" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/research_cells) +"eEx" = ( +/obj/item/circuitboard/machine/rdserver, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"eEC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 7; + pixel_y = 22 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"eED" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/tool/pen{ + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"eEJ" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"eEQ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"eET" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"eEX" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"eFa" = ( +/obj/structure/barricade/metal{ + dir = 1; + health = 250; + icon_state = "metal_1" + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"eFq" = ( +/obj/item/storage/bible/hefa, +/turf/open/floor/prison/green/southeast, +/area/fiorina/station/chapel) +"eFD" = ( +/obj/structure/window_frame/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"eFQ" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/disco) +"eFR" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 8; + pixel_y = 24 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/park) +"eFX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"eGm" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"eGO" = ( +/obj/item/storage/toolbox/electrical, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"eHa" = ( +/obj/structure/lattice, +/obj/structure/platform/kutjevo/smooth, +/turf/open/space, +/area/fiorina/oob) +"eHk" = ( +/obj/structure/machinery/door/morgue{ + dir = 2; + name = "Confession Booth" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"eHn" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"eHt" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/obj/structure/largecrate/random/mini/med{ + pixel_x = -6; + pixel_y = -3 + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"eHC" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy25" + }, +/area/fiorina/station/medbay) +"eHD" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"eHQ" = ( +/obj/item/trash/popcorn, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) +"eIx" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"eIB" = ( +/obj/item/frame/rack, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"eIF" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"eIX" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/oob) +"eJm" = ( +/obj/structure/machinery/door/poddoor/almayer{ + density = 0; + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"eJt" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"eJy" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"eJK" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"eJQ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"eLu" = ( +/turf/closed/wall/prison, +/area/fiorina/maintenance) +"eLw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"eLy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) +"eLB" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"eLQ" = ( +/obj/item/weapon/gun/energy/taser, +/turf/open/floor/prison, +/area/fiorina/station/security) +"eLU" = ( +/obj/item/tool/mop{ + pixel_y = 23 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"eLX" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"eME" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"eMG" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access{ + name = "greenhouse airlock" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) +"eMI" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"eMU" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/area/fiorina/station/power_ring) +"eNa" = ( +/turf/open/floor/prison/yellowcorner, +/area/fiorina/station/lowsec) +"eNn" = ( +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"eNr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray/empty, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"eNv" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) +"eOp" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryocell1decal" + }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"eOy" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"eOF" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/space, +/area/fiorina/oob) +"eOI" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/transit_hub) +"eOM" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"ePq" = ( +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"ePv" = ( +/obj/structure/prop/resin_prop{ + dir = 4; + icon_state = "chair"; + pixel_y = 6 + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"ePB" = ( +/turf/closed/wall/prison, +/area/fiorina/station/telecomm/lz2_maint) +"ePM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/spacecash/c20, +/turf/open/floor/prison, +/area/fiorina/station/security) +"ePU" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"eQb" = ( +/obj/item/clothing/gloves/boxing/green, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"eQk" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"eQz" = ( +/obj/structure/machinery/gibber, +/obj/effect/decal/cleanable/blood{ + pixel_x = 8; + pixel_y = 10 + }, +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) +"eQQ" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/station/chapel) +"eQX" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"eQY" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"eRl" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"eRq" = ( +/obj/item/toy/bikehorn, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"eRz" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"eRF" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"eRR" = ( +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"eRZ" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"eSn" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/greenblue/southeast, +/area/fiorina/station/botany) +"eSF" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"eSH" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"eSO" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"eTa" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) +"eTb" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/area/fiorina/tumor/aux_engi) +"eTc" = ( +/turf/open/floor/prison/chapel_carpet, +/area/fiorina/station/chapel) +"eTr" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"eTC" = ( +/obj/item/frame/rack, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"eUi" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"eUo" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"eUy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"eUN" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"eUP" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"eUZ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"eVf" = ( +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"eVj" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"eVm" = ( +/obj/structure/machinery/newscaster, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/medbay) +"eVq" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"eVK" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"eVN" = ( +/obj/item/bodybag, +/obj/item/bodybag{ + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"eVO" = ( +/turf/closed/shuttle/ert, +/area/fiorina/tumor/ship) +"eWf" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/central_ring) +"eWr" = ( +/turf/open/floor/prison/green/southwest, +/area/fiorina/tumor/civres) +"eWz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flash, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"eWA" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"eWP" = ( +/obj/structure/sign/prop3{ + desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/tumor/ice_lab) +"eWV" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"eXp" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/civres_blue) +"eXz" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"eXP" = ( +/obj/structure/machinery/door/poddoor/almayer{ + density = 0; + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) +"eXY" = ( +/obj/structure/platform, +/obj/structure/reagent_dispensers/fueltank/oxygentank{ + layer = 2.6 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"eYr" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"eYs" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/fire/empty, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"eYz" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"eYC" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"eYN" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/botany) +"eYT" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"eYV" = ( +/obj/item/attachable/bayonet/upp{ + anchored = 1; + layer = 3.6; + pixel_x = -9; + pixel_y = -7 + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/security/wardens) +"eZi" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"eZr" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"eZQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/handcuffs{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = -7; + pixel_y = 1 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"eZW" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) +"fac" = ( +/obj/structure/platform/shiva{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"faw" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"faD" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"fbc" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"fbo" = ( +/obj/structure/barricade/plasteel, +/obj/structure/barricade/metal{ + dir = 4; + health = 85; + icon_state = "metal_1" + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"fbF" = ( +/obj/item/clothing/suit/chef/classic, +/obj/structure/bed/stool, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"fbX" = ( +/obj/item/stack/sheet/wood{ + amount = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"fcg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_x = -2; + pixel_y = 7 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"fcA" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"fcB" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"fdf" = ( +/obj/structure/closet, +/obj/item/stack/cable_coil, +/obj/item/storage/pill_bottle/peridaxon/skillless, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"fdu" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/lz/near_lzI) +"fdC" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"fdR" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/station/park) +"fdV" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/space/basic, +/area/fiorina/oob) +"fer" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"ffA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"ffZ" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/prison, +/area/fiorina/station/power_ring) +"fgq" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"fgM" = ( +/obj/structure/platform, +/obj/item/ammo_casing{ + dir = 2; + icon_state = "casing_5" + }, +/turf/open/gm/river/red_pool, +/area/fiorina/station/park) +"fgN" = ( +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"fgU" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"fgY" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"fhB" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"fic" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto{ + pixel_y = 28 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"fie" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/chapel) +"fiq" = ( +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"fis" = ( +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "Straight" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells) +"fiw" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"fiG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_7" + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"fiU" = ( +/turf/open/floor/plating/plating_catwalk, +/area/fiorina/tumor/ship) +"fjd" = ( +/turf/closed/wall/prison, +/area/fiorina/lz/near_lzI) +"fje" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"fjg" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"fjo" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5_1" + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"fjr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/park) +"fjI" = ( +/obj/structure/closet/cabinet, +/obj/effect/spawner/random/gun/special/midchance, +/obj/item/attachable/magnetic_harness, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"fjV" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"fjX" = ( +/turf/closed/shuttle/elevator{ + dir = 9 + }, +/area/fiorina/tumor/aux_engi) +"fkG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"fkH" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"fmb" = ( +/obj/item/storage/firstaid/toxin, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"fmg" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"fmE" = ( +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) +"fmY" = ( +/obj/item/device/cassette_tape/ocean, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"fnn" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"fno" = ( +/obj/structure/machinery/space_heater, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"fnD" = ( +/turf/closed/shuttle/elevator{ + dir = 4 + }, +/area/fiorina/station/telecomm/lz1_cargo) +"fnY" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"fob" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"fop" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"fou" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"fpg" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"fpn" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/tumor/aux_engi) +"fpq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/fiorina/station/medbay) +"fpB" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"fpN" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"fqg" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/central_ring) +"fqh" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/station/medbay) +"fqF" = ( +/obj/effect/landmark{ + icon_state = "hive_spawn"; + name = "xeno_hive_spawn" + }, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"fqI" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"frc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"frv" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"frM" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"frR" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"fsk" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"ftb" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"ftd" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"fth" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"ftS" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"ftU" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"fun" = ( +/obj/item/weapon/gun/smg/mp5, +/obj/item/ammo_casing{ + icon_state = "casing_6_1" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"fuw" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"fuJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic{ + pixel_x = 3 + }, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/obj/item/paper_bin{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"fuO" = ( +/obj/item/clipboard, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"fvr" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/park) +"fvH" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/oob) +"fvK" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"fvL" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"fwg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/adv{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"fwn" = ( +/obj/structure/lattice, +/obj/item/stack/sheet/metal, +/turf/open/space/basic, +/area/fiorina/oob) +"fwr" = ( +/obj/item/poster, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"fwt" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"fwY" = ( +/obj/structure/barricade/metal/wired{ + health = 250; + icon_state = "metal_3" + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"fxa" = ( +/obj/structure/monorail{ + dir = 4; + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"fxi" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison, +/area/fiorina/station/security) +"fxt" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"fxL" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"fxS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/surgical, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"fyi" = ( +/turf/open/floor/wood, +/area/fiorina/station/research_cells) +"fyt" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ywflowers_3" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"fyy" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"fyC" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/space, +/area/fiorina/oob) +"fyL" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"fyO" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"fzp" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"fzC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/gun/shotgun/highchance, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/maintenance) +"fzO" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"fAf" = ( +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"fAr" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) +"fAt" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; + icon_state = "fullgrass_3"; + name = "Fiberbush(tm) tubers" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/aux_engi) +"fAv" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"fAI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/gun/pistol/lowchance, +/turf/open/floor/wood, +/area/fiorina/station/park) +"fAS" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"fAU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_y = 7 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"fAZ" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/holywater{ + desc = "A flask of the holy HEFA grenade oil."; + name = "Flask of HEFA Oil" + }, +/turf/open/floor/prison/chapel_carpet, +/area/fiorina/station/chapel) +"fBr" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"fBD" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"fCf" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/obj/item/bedsheet/green, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"fCr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"fCw" = ( +/obj/structure/machinery/vending/snack/packaged, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"fCD" = ( +/obj/item/stack/sheet/metal, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"fCF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/cell/super{ + pixel_y = 12 + }, +/obj/item/cell/super, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"fCJ" = ( +/obj/structure/girder, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"fCW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"fCZ" = ( +/obj/structure/closet/crate/medical, +/obj/item/clothing/mask/cigarette/pipe, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"fDb" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"fDi" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"fDE" = ( +/turf/open/floor/prison/damaged1/southwest, +/area/fiorina/station/central_ring) +"fDJ" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"fDQ" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + density = 1; + icon_state = "door_deny" + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"fDW" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"fEn" = ( +/turf/open/floor/prison, +/area/fiorina/tumor/ice_lab) +"fEv" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"fEH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"fEY" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/delivery, +/area/fiorina/station/power_ring) +"fFv" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + layer = 2.97; + pixel_y = -14 + }, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"fFw" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/station/power_ring) +"fFE" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"fGi" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/station/park) +"fGA" = ( +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/prison, +/area/fiorina/station/security) +"fGW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"fHb" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"fHo" = ( +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"fHI" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"fHK" = ( +/obj/structure/ice/thin/indestructible{ + dir = 8; + icon_state = "Corner" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells) +"fIn" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"fIq" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "bee" + }, +/obj/structure/sign/prop2{ + pixel_y = 32 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"fIL" = ( +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" + }, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/chapel) +"fIT" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"fIW" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" + }, +/area/fiorina/station/power_ring) +"fJj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "Residential Archives" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"fJV" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"fJW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/webbing, +/turf/open/floor/almayer, +/area/fiorina/tumor/ship) +"fKm" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"fKn" = ( +/obj/item/stock_parts/manipulator/pico, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"fKu" = ( +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"fKP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"fKX" = ( +/obj/item/storage/backpack{ + pixel_x = -11; + pixel_y = 15 + }, +/obj/item/trash/syndi_cakes, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"fLb" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"fLu" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"fLH" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"fLS" = ( +/obj/structure/bed/chair, +/turf/open/floor/wood, +/area/fiorina/station/park) +"fLX" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"fLY" = ( +/obj/structure/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"fMc" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.5 + }, +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"fMn" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"fNA" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"fNN" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"fOe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/disco) +"fOg" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"fOi" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -13; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"fOC" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"fOK" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/station/flight_deck) +"fOT" = ( +/turf/open/floor/prison/blue/north, +/area/fiorina/station/power_ring) +"fPl" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"fPB" = ( +/turf/open/space, +/area/fiorina/station/medbay) +"fQa" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/telecomm/lz1_tram) +"fQA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + layer = 3.5; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"fQB" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_9_1" + }, +/obj/effect/spawner/random/gun/shotgun/highchance, +/turf/open/floor/wood, +/area/fiorina/station/park) +"fQI" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"fQV" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/space, +/area/fiorina/oob) +"fQY" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"fRc" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"fRo" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"fRq" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/security) +"fSa" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"fSp" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"fSq" = ( +/obj/structure/machinery/door/airlock/almayer/marine{ + dir = 1; + icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"fSz" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan25" + }, +/area/fiorina/lz/near_lzI) +"fSE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer{ + icon_state = "security_det"; + name = "Shuttle control deck"; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/item/coin/uranium{ + desc = "You found one of the three uranium coins. It is entirely worthless." + }, +/turf/open/floor/almayer, +/area/fiorina/tumor/ship) +"fTd" = ( +/turf/open/floor/prison/green/southwest, +/area/fiorina/tumor/aux_engi) +"fTn" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"fTs" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/power_ring) +"fTz" = ( +/obj/structure/closet, +/obj/item/clothing/suit/poncho/red, +/obj/item/clothing/suit/poncho/green, +/obj/item/clothing/suit/suspenders, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"fUd" = ( +/obj/structure/barricade/plasteel{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/fiorina/tumor/ship) +"fUm" = ( +/obj/item/clothing/head/pirate, +/obj/item/clothing/under/pirate, +/obj/item/clothing/suit/armor/swat/officer, +/obj/structure/closet, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"fUr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"fUz" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"fUC" = ( +/obj/structure/stairs/perspective, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"fUD" = ( +/obj/structure/dropship_equipment/mg_holder, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"fUP" = ( +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) +"fUX" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"fVs" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/green/southwest, +/area/fiorina/station/chapel) +"fVY" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"fWr" = ( +/turf/open/floor/prison/red/east, +/area/fiorina/lz/near_lzII) +"fWs" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"fWy" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/station/power_ring) +"fWH" = ( +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"fWI" = ( +/obj/structure/monorail{ + dir = 9; + name = "launch track" + }, +/turf/open/space, +/area/fiorina/oob) +"fWV" = ( +/turf/open/floor/prison/damaged1/southwest, +/area/fiorina/station/disco) +"fXo" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) +"fXB" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/security) +"fXD" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"fXI" = ( +/turf/open/floor/prison/green, +/area/fiorina/station/transit_hub) +"fXL" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 2; + layer = 6; + name = "overhead pipe"; + pixel_x = -16; + pixel_y = 12 + }, +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/tumor/servers) +"fXW" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/power_ring) +"fYa" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"fYf" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"fYo" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"fYW" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/carpet, +/area/fiorina/station/security/wardens) +"fYY" = ( +/obj/item/ammo_casing{ + icon_state = "casing_6" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"fZc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"fZd" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"fZe" = ( +/obj/item/tool/shovel/etool, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"fZz" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/fiorina/station/security) +"fZD" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/wood, +/area/fiorina/station/park) +"fZT" = ( +/obj/structure/mirror{ + pixel_x = -29 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"fZW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = -6; + pixel_y = 16 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"gag" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"gaQ" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/prison, +/area/fiorina/station/security) +"gbf" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"gbh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"gbk" = ( +/obj/item/trash/burger, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"gbv" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"gbF" = ( +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/prison/greenblue/west, +/area/fiorina/station/botany) +"gbO" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/item/trash/used_stasis_bag, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"gbR" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"gbT" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"gbV" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"gcx" = ( +/obj/structure/monorail{ + dir = 4; + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"gcD" = ( +/obj/structure/kitchenspike, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"gdQ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/blue/north, +/area/fiorina/station/chapel) +"gdS" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"gec" = ( +/obj/structure/prop/structure_lattice{ + dir = 8; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) +"gef" = ( +/obj/structure/lattice, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/space, +/area/fiorina/oob) +"ger" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 + }, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"geF" = ( +/obj/structure/lattice, +/turf/open/floor/almayer_hull, +/area/fiorina/oob) +"geL" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"geT" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"gfh" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"gfj" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/wood, +/area/fiorina/station/park) +"gfo" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/maintenance) +"gfL" = ( +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"ggd" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1" + }, +/area/fiorina/oob) +"ggh" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "birthdayparty" + }, +/turf/closed/wall/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"ggk" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"ggA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/pepper, +/obj/item/clothing/glasses/sunglasses/sechud, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ghg" = ( +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/space, +/area/fiorina/oob) +"ghw" = ( +/obj/structure/bed/chair/dropship/pilot, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"ghz" = ( +/obj/structure/lz_sign/prison_sign, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"ghS" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"gir" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/servers) +"giw" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"giA" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"giX" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"gjr" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"gjs" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"gjz" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"gjY" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/chapel) +"gkv" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"gkC" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"gkE" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"glj" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"glD" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"glG" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"gmg" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/flight_deck) +"gmp" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_tram) +"gmx" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/greenblue/north, +/area/fiorina/station/botany) +"gmF" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/prison, +/area/fiorina/station/security) +"gmG" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"gmN" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/obj/effect/spawner/random/gun/smg, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"gmT" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"gnG" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir" + }, +/obj/structure/bed/roller, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"gnL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/rollingpin, +/obj/item/reagent_container/food/snacks/grown/carrot, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"gnQ" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"gnY" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/storage/bible/hefa, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"goo" = ( +/turf/open/floor/prison/yellow/west, +/area/fiorina/lz/near_lzII) +"goG" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"gpr" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"gpA" = ( +/obj/item/trash/pistachios, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"gpG" = ( +/obj/structure/window_frame/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"gpY" = ( +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = -9; + pixel_y = -8 + }, +/obj/item/explosive/grenade/high_explosive/frag{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) +"gqM" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"gqU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper/janitor, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"grg" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"grA" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"gsd" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"gsL" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"gsN" = ( +/obj/structure/closet, +/obj/effect/spawner/random/gun/shotgun/midchance, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"gsU" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"gsX" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"gtf" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"gtg" = ( +/obj/structure/barricade/sandbags{ + dir = 4; + icon_state = "sandbag_0"; + pixel_y = 2 + }, +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + pixel_y = -14 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"gtr" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"gtH" = ( +/obj/structure/safe, +/obj/item/storage/beer_pack, +/obj/item/storage/beer_pack, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) +"gtN" = ( +/obj/item/storage/beer_pack{ + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"gtP" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"gtT" = ( +/obj/item/trash/eat, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"guf" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"guv" = ( +/obj/item/packageWrap, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) +"gux" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"guz" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"guU" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/civres) +"gve" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/servers) +"gvr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"gvz" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"gvZ" = ( +/obj/item/stack/sheet/wood{ + pixel_x = 1; + pixel_y = -3 + }, +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) +"gwm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/energy/taser, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"gws" = ( +/turf/open/floor/plating, +/area/fiorina/oob) +"gwH" = ( +/turf/closed/wall/strata_ice/jungle{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + name = "synthetic vegetation" + }, +/area/fiorina/tumor/fiberbush) +"gwM" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/dice, +/obj/item/toy/crayon/blue{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"gxj" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/dice/d20, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"gxn" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/lz/near_lzI) +"gxQ" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"gxR" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"gyh" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"gyt" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"gyy" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"gyA" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"gyB" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ywflowers_2" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"gyJ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"gyP" = ( +/obj/item/stack/sheet/wood{ + amount = 10 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"gzb" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"gzh" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -11; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"gzu" = ( +/obj/item/clothing/mask/cigarette/bcigarette, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"gzN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/handcard/aceofspades, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"gAh" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"gAn" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison, +/area/fiorina/station/park) +"gAA" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"gAC" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"gAQ" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"gBe" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"gBw" = ( +/obj/item/trash/chunk, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"gBx" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"gBN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"gBP" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"gBR" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"gBY" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/prison/redfull, +/area/fiorina/station/chapel) +"gCn" = ( +/obj/structure/surface/table/woodentable, +/obj/item/newspaper{ + name = "character sheet"; + pixel_x = -6 + }, +/obj/item/newspaper{ + name = "character sheet"; + pixel_x = 4; + pixel_y = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"gCE" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 12 + }, +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/tumor/civres) +"gCH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"gCK" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"gDx" = ( +/obj/structure/surface/table/woodentable, +/obj/item/newspaper{ + name = "character sheet" + }, +/obj/item/device/cassette_tape/heavymetal{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"gDI" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison, +/area/fiorina/tumor/ice_lab) +"gEq" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/oob) +"gEx" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) +"gEX" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"gFg" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"gFj" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/item/fuel_cell, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"gFp" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"gFN" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"gFW" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green/southeast, +/area/fiorina/tumor/aux_engi) +"gFZ" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"gGc" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"gGx" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"gHh" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"gHn" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"gHo" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) +"gHy" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"gHz" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"gHC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"gIa" = ( +/obj/item/stool, +/obj/item/reagent_container/food/drinks/bottle/bluecuracao{ + pixel_x = 15; + pixel_y = 25 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"gIo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/storage/box/cups, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"gIs" = ( +/obj/item/reagent_container/food/drinks/bottle/rum, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"gIB" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"gID" = ( +/turf/open/floor/prison/darkredfull2, +/area/fiorina/oob) +"gJu" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"gKg" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"gKi" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"gKl" = ( +/obj/structure/janitorialcart, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"gKG" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/blue/north, +/area/fiorina/station/chapel) +"gLk" = ( +/obj/item/stool, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"gLu" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_leftengine" + }, +/area/fiorina/tumor/ship) +"gLv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 0; + icon_state = "door_closing" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"gLK" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/prison/greenblue/southwest, +/area/fiorina/station/botany) +"gLV" = ( +/obj/item/clothing/head/welding, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"gNx" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"gNJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"gNU" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"gNY" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ppflowers_2" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"gOd" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"gOk" = ( +/obj/structure/cargo_container/grant/right{ + density = 0; + desc = "A huge industrial shipping container. You could slip just behind it."; + health = 5000; + layer = 4; + unacidable = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"gOJ" = ( +/obj/structure/closet/secure_closet/medical2{ + req_access_txt = "100" + }, +/obj/effect/spawner/random/pills, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) +"gOU" = ( +/obj/item/bodybag, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) +"gPk" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"gPo" = ( +/turf/open/floor/prison/green/northwest, +/area/fiorina/tumor/civres) +"gPp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"gPs" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"gPE" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"gPS" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"gPV" = ( +/obj/item/ammo_casing{ + icon_state = "casing_8" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"gQc" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"gQz" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"gQK" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 12 + }, +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/tumor/servers) +"gQL" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"gRf" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"gRg" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"gRA" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) +"gRT" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + pixel_x = -24 + }, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"gRW" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/bed/chair/comfy, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"gSf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/incendiary/molotov, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"gSg" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"gSC" = ( +/obj/item/prop/helmetgarb/gunoil, +/turf/open/floor/prison, +/area/fiorina/maintenance) +"gSK" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"gSP" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 + }, +/turf/open/floor/prison/chapel_carpet, +/area/fiorina/station/chapel) +"gSX" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/park) +"gTc" = ( +/obj/item/storage/belt/shotgun/full/quackers, +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/river/darkred_pool, +/area/fiorina/station/park) +"gTi" = ( +/turf/open/floor/prison/blue, +/area/fiorina/station/chapel) +"gTy" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/lz/near_lzI) +"gTN" = ( +/turf/open/floor/prison/darkpurple2/northeast, +/area/fiorina/tumor/ice_lab) +"gTW" = ( +/obj/structure/platform, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"gUj" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan3" + }, +/area/fiorina/tumor/ship) +"gUu" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"gVc" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"gVs" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"gVx" = ( +/obj/effect/spawner/random/tool, +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 12 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"gVT" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"gWg" = ( +/obj/structure/powerloader_wreckage, +/obj/effect/decal/cleanable/blood/gibs/robot/limb, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"gWq" = ( +/obj/item/ammo_casing{ + icon_state = "casing_1" + }, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/wood, +/area/fiorina/station/disco) +"gXd" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"gXu" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"gXF" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/tumor/servers) +"gXI" = ( +/obj/item/book/manual/atmospipes, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"gYD" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"gYH" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/ammo_magazine/shotgun/beanbag, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"gYM" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"gZc" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "4" + }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/maintenance) +"gZf" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/medbay) +"gZg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"gZx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"gZG" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"gZM" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/station/park) +"hae" = ( +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"hao" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 7 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"hay" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy_leftengine" + }, +/area/fiorina/station/medbay) +"haJ" = ( +/obj/item/disk, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"haQ" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"hbn" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"hbo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/souto/classic{ + anchored = 1 + }, +/obj/item/reagent_container/food/drinks/cans/souto/classic{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/cans/souto/classic{ + pixel_x = -8 + }, +/obj/item/reagent_container/food/drinks/cans/souto/classic{ + layer = 4.1; + pixel_x = 4; + pixel_y = 18 + }, +/obj/item/reagent_container/food/drinks/cans/souto/classic{ + layer = 4.1; + pixel_x = -4; + pixel_y = 18 + }, +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"hbp" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"hbt" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"hbH" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"hcs" = ( +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"hcv" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"hcB" = ( +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + pixel_y = 32 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"hcY" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"hds" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-8" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"hdA" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"hdR" = ( +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"hej" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/maintenance) +"hek" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/weapon/baton, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"heo" = ( +/obj/structure/closet/crate/trashcart, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"heA" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"heO" = ( +/turf/closed/shuttle/elevator, +/area/fiorina/station/civres_blue) +"heT" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/greenblue/southeast, +/area/fiorina/station/botany) +"hfc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/plating/prison, +/area/fiorina/station/security/wardens) +"hfd" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"hfT" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/flight_deck) +"hgc" = ( +/obj/structure/largecrate/supply/medicine/medivend, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"hgh" = ( +/obj/item/trash/burger, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"hgA" = ( +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"hgD" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/fiorina/tumor/aux_engi) +"hgP" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/fiorina/station/park) +"hgS" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan5" + }, +/area/fiorina/tumor/aux_engi) +"hhu" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"hhD" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/surface/rack, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"hhL" = ( +/obj/effect/spawner/random/powercell, +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 12 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"hil" = ( +/obj/structure/surface/rack, +/obj/item/tool/plantspray/pests, +/obj/item/tool/plantspray/weeds, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"hir" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"hiO" = ( +/turf/closed/shuttle/elevator{ + dir = 4 + }, +/area/fiorina/tumor/aux_engi) +"hiP" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"hjp" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"hjB" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"hjC" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_half_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"hjE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"hjM" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"hjR" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"hjV" = ( +/obj/structure/stairs/perspective, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"hjW" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/lz/near_lzI) +"hkh" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty"; + name = "solar lattice"; + pixel_y = 6 + }, +/turf/open/floor/almayer_hull, +/area/fiorina/oob) +"hko" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"hkA" = ( +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/flight_deck) +"hkB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"hkH" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"hkM" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"hlk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette, +/obj/item/storage/fancy/cigarettes/emeraldgreen{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"hlB" = ( +/obj/item/tool/kitchen/knife, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"hlT" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"hmq" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"hmE" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"hmS" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"hnh" = ( +/obj/item/reagent_container/food/drinks/sillycup, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"hnK" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"hnM" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"hob" = ( +/obj/item/phone{ + pixel_y = 7 + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"hoo" = ( +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/civres_blue) +"hox" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"hoC" = ( +/obj/item/trash/popcorn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"hoH" = ( +/obj/effect/decal/cleanable/cobweb{ + desc = "Spun only by the terrifying space widow. Some say that even looking at it will kill you."; + name = "space cobweb" + }, +/turf/open/space, +/area/fiorina/oob) +"hoT" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"hoZ" = ( +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"hpd" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/security) +"hpn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) +"hpz" = ( +/obj/structure/ice/thin/indestructible{ + dir = 1; + icon_state = "Corner" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells) +"hpW" = ( +/obj/item/stack/cable_coil/orange, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"hpX" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"hqb" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_tram) +"hqc" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"hqD" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"hqG" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/tumor/ice_lab) +"hqO" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/lz/near_lzII) +"hqX" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"hre" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/item/device/flashlight, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"hrl" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"hro" = ( +/obj/structure/girder, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"hrw" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/fiorina/tumor/servers) +"hrz" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_x = 2; + pixel_y = 21 + }, +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_x = 2; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"hrA" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"hrB" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/prison, +/area/fiorina/station/security) +"hrL" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"hsc" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"hsf" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"hsl" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"hsz" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"hsC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/southleft, +/obj/item/card/id/guest, +/obj/item/reagent_container/food/drinks/coffee{ + name = "\improper paper cup"; + pixel_x = -10; + pixel_y = 17 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"hsZ" = ( +/obj/item/book/manual/marine_law, +/obj/item/book/manual/marine_law{ + pixel_y = 3 + }, +/turf/open/floor/prison/chapel_carpet, +/area/fiorina/maintenance) +"htq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"htt" = ( +/turf/closed/shuttle/ert, +/area/fiorina/station/power_ring) +"htD" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"htO" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "casing_6" + }, +/obj/structure/barricade/metal{ + dir = 8; + health = 150; + icon_state = "metal_2" + }, +/obj/effect/spawner/random/gun/smg, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"htT" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring) +"htX" = ( +/turf/open/floor/prison/green/southwest, +/area/fiorina/station/chapel) +"hub" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"hul" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"huB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"huD" = ( +/obj/item/tool/crowbar, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"huG" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"huJ" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec) +"hva" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/wood, +/area/fiorina/lz/near_lzI) +"hvg" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) +"hvp" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"hvF" = ( +/obj/structure/grille, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"hvL" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"hwr" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/chapel) +"hwN" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) +"hwS" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"hxj" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"hxq" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"hxG" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/space/basic, +/area/fiorina/oob) +"hxJ" = ( +/obj/structure/sign/poster{ + icon_state = "poster12"; + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/space/basic, +/area/fiorina/oob) +"hxM" = ( +/obj/structure/ice/thin/indestructible{ + dir = 1; + icon_state = "Straight" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells) +"hyc" = ( +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/maintenance) +"hyo" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"hyq" = ( +/obj/structure/closet/crate/medical, +/obj/item/tool/surgery/bonegel, +/obj/item/tool/surgery/bonegel, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"hys" = ( +/obj/structure/grille, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"hyT" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_leftengine" + }, +/area/fiorina/tumor/aux_engi) +"hzi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/processor{ + desc = "It CAN blend it."; + icon_state = "blender_e"; + name = "Blendomatic"; + pixel_x = -2; + pixel_y = 10 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"hzv" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"hzF" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"hzG" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8; + pixel_x = 7 + }, +/turf/closed/shuttle/ert{ + icon_state = "wy4" + }, +/area/fiorina/station/medbay) +"hzL" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/tumor/aux_engi) +"hAs" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 11; + pixel_y = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"hAI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"hAP" = ( +/obj/item/clothing/under/stowaway, +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"hAX" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/fiorina/tumor/ice_lab) +"hBc" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"hBf" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) +"hBF" = ( +/obj/structure/window_frame/prison/reinforced, +/obj/item/stack/sheet/glass/reinforced{ + pixel_y = 5 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"hCc" = ( +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/park) +"hCh" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"hCk" = ( +/obj/item/poster, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"hCp" = ( +/obj/structure/prop/invuln{ + desc = "Floating cells are reserved for highly dangerous criminals. Whoever is out there is probably best left out there."; + icon = 'icons/obj/structures/doors/celldoor.dmi'; + icon_state = "door_closed"; + layer = 2.5; + name = "cell door" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"hCR" = ( +/obj/item/stack/sheet/wood, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"hDb" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"hDl" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"hDm" = ( +/obj/item/trash/burger, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"hDS" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"hDV" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" + }, +/obj/item/stack/cable_coil/blue, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"hEb" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy20" + }, +/area/fiorina/station/medbay) +"hEk" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/flight_deck) +"hEs" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/prison, +/area/fiorina/station/research_cells) +"hEv" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"hEZ" = ( +/turf/open/floor/prison/platingdmg3, +/area/fiorina/station/security) +"hFC" = ( +/obj/item/disk, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"hFH" = ( +/obj/item/gift, +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket" + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"hFW" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"hGg" = ( +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + pixel_x = -24 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"hGn" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"hGu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"hGy" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"hGW" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"hHc" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"hHq" = ( +/obj/structure/closet/cabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"hHr" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"hHC" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 4; + pixel_y = 24 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/landmark/corpsespawner/security/liaison, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"hHH" = ( +/obj/effect/decal/cleanable/blood{ + desc = "Watch your step."; + icon_state = "gib6" + }, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"hHX" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) +"hIO" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"hIX" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison/green/north, +/area/fiorina/station/chapel) +"hJo" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/item/reagent_container/food/drinks/flask/barflask, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"hKN" = ( +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"hKP" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/tool/shovel/spade, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"hLz" = ( +/turf/closed/wall/prison, +/area/fiorina/lz/near_lzII) +"hLM" = ( +/obj/structure/sign/safety/bulkhead_door, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/tumor/fiberbush) +"hMf" = ( +/obj/item/tool/candle{ + pixel_x = -2; + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"hMj" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"hMA" = ( +/obj/item/tool/crowbar, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"hMH" = ( +/obj/item/newspaper, +/turf/open/floor/prison/red/east, +/area/fiorina/lz/near_lzII) +"hMK" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "pizzatime" + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/power_ring) +"hNj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + pixel_x = -6; + pixel_y = 20 + }, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + pixel_x = 6; + pixel_y = 20 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"hNU" = ( +/obj/structure/janitorialcart, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"hNY" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"hOA" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"hOG" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"hOQ" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"hPi" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"hPq" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"hPu" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/power_ring) +"hPL" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/darkpurple2/southeast, +/area/fiorina/tumor/servers) +"hPN" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison, +/area/fiorina/station/security) +"hPO" = ( +/obj/effect/spawner/random/gun/rifle/highchance, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"hPY" = ( +/obj/structure/surface/rack, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"hQh" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"hQj" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"hQk" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"hQv" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/item/fuel_cell, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"hQM" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"hQQ" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"hQR" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"hQT" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/obj/item/stack/barbed_wire, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"hRb" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"hRs" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"hRX" = ( +/turf/open/gm/river/red_pool, +/area/fiorina/station/park) +"hSk" = ( +/obj/structure/toilet, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"hSl" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"hSo" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/item/tool/crowbar/red, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/medbay) +"hSA" = ( +/obj/item/reagent_container/food/drinks/bottle/tomatojuice, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"hSG" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/fiberbush) +"hSH" = ( +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"hSO" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/lz/near_lzI) +"hTf" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/telecomm/lz1_cargo) +"hTh" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"hTo" = ( +/obj/item/smallDelivery, +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"hTs" = ( +/turf/closed/shuttle/elevator{ + dir = 10 + }, +/area/fiorina/station/civres_blue) +"hTy" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"hTM" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"hTN" = ( +/obj/structure/girder, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"hUi" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"hUj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"hUD" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/greencorner/east, +/area/fiorina/station/chapel) +"hUL" = ( +/obj/structure/sink{ + pixel_y = 23 + }, +/obj/item/paper_bin{ + pixel_x = -11; + pixel_y = -5 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"hUO" = ( +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/maintenance) +"hVu" = ( +/obj/item/stack/sheet/metal, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"hVA" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"hVG" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"hVI" = ( +/turf/closed/wall/prison, +/area/fiorina/station/medbay) +"hVS" = ( +/obj/structure/platform_decoration/kutjevo, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"hWb" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"hWi" = ( +/obj/structure/machinery/door/airlock/almayer/maint/autoname{ + dir = 1; + name = "\improper Null Hatch REPLACE ME"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"hWk" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/lz/near_lzI) +"hWv" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"hWz" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"hWF" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/fiorina/tumor/ship) +"hWG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio{ + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"hXF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"hXG" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"hXN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/weapon/gun/pistol/heavy, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"hXX" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"hXZ" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy2" + }, +/area/fiorina/station/medbay) +"hYl" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"hYs" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + layer = 2.97; + pixel_y = -14 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"hYx" = ( +/obj/item/tool/wet_sign, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = -1 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"hYX" = ( +/obj/structure/machinery/bot/medbot, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"hZf" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"hZi" = ( +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_tram) +"hZG" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"hZN" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/fiorina/maintenance) +"hZR" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"iaa" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/disco) +"iad" = ( +/obj/item/device/multitool, +/turf/open/floor/prison/green/northwest, +/area/fiorina/tumor/civres) +"iaE" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"ibl" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/lz/near_lzI) +"ibz" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"ibA" = ( +/obj/structure/barricade/metal/wired{ + health = 120; + icon_state = "metal_2" + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"icg" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/tumor/ice_lab) +"icu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pizzabox/mushroom, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"icS" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"icT" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"idb" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"idi" = ( +/obj/item/trash/sosjerky, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"idj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"idP" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"idS" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"iea" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/fiorina/station/medbay) +"ieu" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/obj/structure/morgue{ + dir = 8; + layer = 2.6 + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) +"ieA" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"ieJ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"ifc" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"ifk" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"ifm" = ( +/turf/open/floor/prison/greencorner, +/area/fiorina/tumor/civres) +"ifp" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/tool/wrench, +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"ifw" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"ifJ" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/almayer, +/area/fiorina/tumor/ship) +"ifL" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"ifN" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) +"ifP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) +"igc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"ign" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/lz/near_lzI) +"igu" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) +"igQ" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/rank/janitor, +/obj/item/clothing/suit/bio_suit/janitor, +/obj/item/clothing/head/bio_hood/janitor, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"igV" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"ihn" = ( +/obj/item/paper/crumpled, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"ihp" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 + }, +/obj/item/organ/lungs, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"ihv" = ( +/obj/item/stock_parts/matter_bin/super, +/turf/open/floor/prison/darkpurple2/east, +/area/fiorina/tumor/servers) +"ihz" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/plating_catwalk, +/area/fiorina/tumor/ship) +"ihB" = ( +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ihO" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ihV" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/oob) +"iie" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"iiw" = ( +/obj/structure/monorail{ + dir = 6; + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"iiz" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) +"iiY" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"ijd" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"ijs" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"ijt" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/station/park) +"ijC" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/lz/near_lzI) +"ika" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"ikt" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"ikF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"ikL" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"ilr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ilM" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/chapel) +"img" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"imp" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/civres_blue) +"imt" = ( +/turf/open/floor/almayer, +/area/fiorina/tumor/ship) +"imz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) +"imG" = ( +/obj/item/trash/chunk, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"imI" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"imN" = ( +/obj/structure/filingcabinet/disk, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"ing" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"inA" = ( +/obj/structure/surface/table/reinforced/prison{ + flipped = 1 + }, +/obj/item/device/cassette_tape/hiphop, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"inO" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) +"ioc" = ( +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"iox" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"ioE" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"ioM" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/medbay) +"ioS" = ( +/obj/item/storage/briefcase, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ioV" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"ioW" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"ipa" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2; + name = "Warden's Office"; + req_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security/wardens) +"ipd" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) +"ipz" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"ipA" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"ipM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/pistol/heavy{ + pixel_y = 7 + }, +/obj/item/ammo_magazine/pistol/heavy{ + pixel_y = 12 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ipV" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) +"iqB" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/head/helmet/warden{ + pixel_x = 3; + pixel_y = 15 + }, +/obj/structure/machinery/computer/objective, +/turf/open/floor/carpet, +/area/fiorina/station/security/wardens) +"irB" = ( +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/station/park) +"irD" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"irE" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/flight_deck) +"irQ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"itd" = ( +/obj/item/tool/lighter/random, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/park) +"itv" = ( +/obj/item/toy/handcard/uno_reverse_yellow, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"itK" = ( +/turf/open/floor/prison/platingdmg3, +/area/fiorina/maintenance) +"itN" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/park) +"itW" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"iuz" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"iuC" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"iuN" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/turf/open/floor/prison/blue/north, +/area/fiorina/tumor/servers) +"iuZ" = ( +/obj/item/stack/rods, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"ivb" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/space/basic, +/area/fiorina/oob) +"ivr" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/power_ring) +"ivw" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"ivz" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/wood, +/area/fiorina/station/park) +"ivD" = ( +/obj/item/tool/weldingtool{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"ivK" = ( +/turf/open/floor/prison/darkbrown2, +/area/fiorina/maintenance) +"ivN" = ( +/obj/structure/window/reinforced, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/attachment, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"iwf" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/chapel_carpet, +/area/fiorina/station/chapel) +"iwi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"iwu" = ( +/obj/item/newspaper, +/turf/open/floor/prison, +/area/fiorina/station/security) +"iwy" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"iwT" = ( +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "End" + }, +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "End" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells) +"iwZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "Residential Archives" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"ixl" = ( +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"ixn" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"ixK" = ( +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"iyc" = ( +/obj/item/stack/rods/plasteel, +/turf/open/auto_turf/sand/layer1, +/area/fiorina/station/flight_deck) +"iyf" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"iyk" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"iys" = ( +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"iyS" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"iyY" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) +"izh" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/lowsec) +"izN" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"izZ" = ( +/turf/closed/wall/prison, +/area/fiorina/station/disco) +"iAq" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"iAr" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"iAA" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib5" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"iAB" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/fiorina/station/central_ring) +"iBr" = ( +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"iBM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greenblue/northeast, +/area/fiorina/station/botany) +"iBP" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan25" + }, +/area/fiorina/oob) +"iCf" = ( +/obj/structure/closet/wardrobe/orange, +/obj/item/clothing/gloves/boxing/blue, +/obj/item/clothing/gloves/boxing/blue, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"iCE" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"iCN" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"iCU" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/prison, +/area/fiorina/station/disco) +"iDg" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 + }, +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + pixel_y = -14 + }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"iDq" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 2; + layer = 6; + name = "overhead pipe"; + pixel_x = -16; + pixel_y = 12 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"iDA" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"iDK" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"iDO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"iDQ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/spawner/random/gun/rifle, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) +"iEl" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"iEA" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"iEF" = ( +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"iEG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/item/reagent_container/glass/bottle/cyanide{ + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"iFg" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"iFz" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"iFB" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 + }, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"iFC" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"iFP" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"iFZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/hugemushroomslice, +/obj/item/reagent_container/food/snacks/hugemushroomslice{ + pixel_y = 3 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"iGw" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"iGx" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"iGX" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"iHu" = ( +/obj/item/newspaper, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"iHB" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) +"iHT" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"iHW" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) +"iIl" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"iIx" = ( +/obj/effect/decal/cleanable/blood{ + desc = "Watch your step."; + icon_state = "gib6" + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/flight_deck) +"iIE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups, +/obj/item/reagent_container/food/drinks/coffee{ + name = "\improper paper cup"; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"iIG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"iIS" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"iIZ" = ( +/obj/item/stack/cable_coil, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"iJF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) +"iKg" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"iKs" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/chapel) +"iKy" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/spawner/random/gun/pistol, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"iKF" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"iKI" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkyellowcorners2, +/area/fiorina/station/telecomm/lz1_cargo) +"iKO" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/station/medbay) +"iLl" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"iLJ" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"iMo" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/fiorina/station/security/wardens) +"iMq" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"iMN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"iNk" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"iNt" = ( +/obj/item/device/whistle, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"iOa" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"iON" = ( +/obj/structure/closet/bombcloset, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"iOX" = ( +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"iOY" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/tumor/ice_lab) +"iPv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/oob) +"iPx" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"iPz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box/empty, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"iQj" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"iQz" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) +"iQH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) +"iQJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"iQK" = ( +/obj/structure/disposalpipe/broken{ + dir = 1 + }, +/obj/structure/disposalpipe/broken, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"iRa" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"iRn" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"iRG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/chunk, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"iRH" = ( +/obj/item/frame/firstaid_arm_assembly, +/obj/structure/surface/table/woodentable, +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"iRI" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/fiorina/tumor/ice_lab) +"iSg" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"iSu" = ( +/turf/closed/wall/prison{ + desc = "Come Meet Souto Man!"; + icon_state = "rwall_s" + }, +/area/fiorina/station/park) +"iSw" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"iSR" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/oob) +"iSW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/medbay) +"iTj" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/security) +"iTm" = ( +/turf/open/auto_turf/sand/layer1, +/area/fiorina/station/civres_blue) +"iTr" = ( +/obj/structure/closet/basketball, +/obj/item/storage/pill_bottle/tramadol/skillless, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"iTs" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) +"iTt" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"iTE" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/fiorina/station/flight_deck) +"iTJ" = ( +/turf/open/floor/prison/greenblue/northwest, +/area/fiorina/station/botany) +"iTK" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison, +/area/fiorina/station/security) +"iUa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"iUc" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"iUr" = ( +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" + }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"iUB" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"iUO" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"iUS" = ( +/obj/structure/barricade/handrail/type_b, +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"iVo" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/park) +"iVv" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/space, +/area/fiorina/oob) +"iVT" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"iWe" = ( +/obj/item/trash/candy, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"iWp" = ( +/obj/item/reagent_container/food/drinks/coffee{ + name = "\improper paper cup" + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec) +"iWq" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space, +/area/fiorina/oob) +"iWP" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/central_ring) +"iXq" = ( +/obj/item/stool, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) +"iXs" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"iXJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/civres_blue) +"iXV" = ( +/obj/structure/closet/l3closet/general, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"iYa" = ( +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/chapel) +"iYe" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/power_ring) +"iYw" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/central_ring) +"iYJ" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"iYQ" = ( +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/fiorina/maintenance) +"iZm" = ( +/obj/item/trash/chips, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/servers) +"jaB" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/space/basic, +/area/fiorina/oob) +"jbg" = ( +/obj/structure/holohoop{ + dir = 1 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"jbm" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"jbq" = ( +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"jbu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/prison, +/area/fiorina/station/security) +"jbF" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/storage/belt/shotgun, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"jbU" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"jce" = ( +/obj/structure/window_frame/prison/reinforced, +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"jci" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"jcv" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"jcF" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"jcG" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"jdn" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"jew" = ( +/obj/structure/largecrate/supply/ammo, +/obj/item/storage/fancy/crayons, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"jeL" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/chapel) +"jfc" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"jfd" = ( +/turf/open/gm/river/pool, +/area/fiorina/station/park) +"jfp" = ( +/obj/structure/barricade/handrail, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"jft" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + pixel_y = -14 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"jfO" = ( +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/central_ring) +"jfT" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"jgu" = ( +/turf/closed/wall/prison, +/area/fiorina/station/park) +"jgz" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"jgL" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"jhl" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"jhp" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"jhG" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan25" + }, +/area/fiorina/tumor/ship) +"jhN" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/item/clothing/suit/armor/bulletproof/badge, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"jiq" = ( +/obj/structure/lz_sign/prison_sign, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"jis" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"jiz" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"jiA" = ( +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"jiV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = 8; + pixel_y = 10 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"jjg" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"jji" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"jjp" = ( +/obj/structure/largecrate/random/case, +/obj/item/storage/toolbox/emergency{ + pixel_y = 4 + }, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"jjs" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"jjH" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"jjM" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"jjW" = ( +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"jkg" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"jkj" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"jkw" = ( +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"jkW" = ( +/obj/structure/dropship_equipment/fulton_system, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"jlb" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"jlk" = ( +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/tumor/aux_engi) +"jln" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/card/id/silver/clearance_badge, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"jlq" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"jls" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/prison, +/area/fiorina/station/park) +"jlB" = ( +/obj/item/stack/nanopaste, +/turf/open/floor/prison/blue/north, +/area/fiorina/station/civres_blue) +"jlH" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/space, +/area/fiorina/oob) +"jlI" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"jlU" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + name = "\improper Fiorina Engineering Canteen Vendor" + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"jmp" = ( +/obj/item/ammo_magazine/handful/shotgun/incendiary{ + unacidable = 1 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/aux_engi) +"jmr" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"jmv" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"jmG" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/research_cells) +"jna" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/fiorina/station/research_cells) +"jnd" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/lz/near_lzII) +"jnm" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"jnQ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"jnU" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"jnX" = ( +/obj/item/storage/pill_bottle/spaceacillin/skillless, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"jor" = ( +/obj/effect/spawner/random/attachment, +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 12 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"jot" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"joJ" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"joU" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"jpc" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"jpt" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/item/clothing/head/soft/ferret{ + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"jpx" = ( +/obj/item/ammo_casing{ + icon_state = "casing_8" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"jpN" = ( +/obj/structure/sign/prop3{ + desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/research_cells) +"jpQ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"jpW" = ( +/obj/item/reagent_container/food/drinks/cans/souto/cherry, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"jqs" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 12 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"jqt" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"jqE" = ( +/obj/item/circuitboard/robot_module/janitor, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"jqM" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"jri" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"jrN" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/tumor/aux_engi) +"jrO" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/power_ring) +"jrT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/obj/item/clothing/accessory/holobadge/cord, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) +"jsf" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"jsp" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"jsu" = ( +/obj/structure/surface/table/reinforced/prison{ + dir = 8; + flipped = 1 + }, +/obj/item/storage/box/ids, +/obj/item/reagent_container/food/drinks/cans/souto/grape{ + pixel_x = 14; + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"jsU" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"jta" = ( +/obj/structure/bed{ + icon_state = "psychbed" + }, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"jtK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"jtM" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"juX" = ( +/obj/structure/machinery/door/poddoor/almayer{ + density = 0; + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"jva" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"jvi" = ( +/obj/structure/closet/wardrobe/orange, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"jvm" = ( +/obj/item/storage/surgical_tray, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = 12 + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) +"jvy" = ( +/mob/living/simple_animal/hostile/carp{ + desc = "He is late for work."; + name = "Egbert" + }, +/turf/open/space, +/area/fiorina/oob) +"jwc" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"jwK" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/lz/near_lzII) +"jxc" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"jxm" = ( +/obj/item/trash/hotdog, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"jyo" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/power_ring) +"jyv" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"jyF" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"jyM" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"jyP" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"jyQ" = ( +/obj/item/device/flashlight, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"jyY" = ( +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) +"jzN" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"jzP" = ( +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/power_ring) +"jAF" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"jAW" = ( +/obj/structure/largecrate/supply/ammo, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"jBn" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"jBv" = ( +/obj/structure/bed/sofa/vert/grey/bot{ + pixel_y = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"jBQ" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/wood, +/area/fiorina/station/park) +"jCe" = ( +/turf/open/floor/prison/darkpurple2/northeast, +/area/fiorina/tumor/servers) +"jCt" = ( +/obj/structure/machinery/light/small{ + dir = 4; + pixel_x = 11; + pixel_y = 10 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"jCy" = ( +/obj/structure/prop/dam/crane{ + icon_state = "tractor_damaged" + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/telecomm/lz1_cargo) +"jCA" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"jCO" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"jDe" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"jDR" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"jEa" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/power_ring) +"jEr" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"jEy" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"jEz" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"jEK" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/fiorina/station/research_cells) +"jEQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, +/turf/open/floor/prison, +/area/fiorina/lz/console_II) +"jET" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"jFh" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) +"jFl" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"jFz" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) +"jFD" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/ice_lab) +"jFO" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "poolparty" + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/park) +"jFP" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"jGf" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"jGs" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/oob) +"jGz" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/effect/spawner/random/tool, +/obj/item/clothing/gloves/combat, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"jGC" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"jHj" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"jHp" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"jHz" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"jHC" = ( +/obj/structure/surface/rack, +/obj/item/tool/lighter, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"jHD" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"jHU" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"jHV" = ( +/obj/item/paper, +/obj/structure/inflatable/door, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"jIw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"jIz" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"jJb" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"jJS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/souto/grape{ + anchored = 1 + }, +/obj/item/reagent_container/food/drinks/cans/souto/grape{ + pixel_x = -8 + }, +/obj/item/reagent_container/food/drinks/cans/souto/grape{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/cans/souto/grape{ + layer = 4.1; + pixel_x = 4; + pixel_y = 18 + }, +/obj/item/reagent_container/food/drinks/cans/souto/grape{ + layer = 4.1; + pixel_x = -4; + pixel_y = 18 + }, +/obj/item/reagent_container/food/drinks/cans/souto/grape{ + layer = 4.2; + pixel_y = 36 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"jJZ" = ( +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"jKv" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"jKz" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"jKI" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space, +/area/fiorina/oob) +"jKR" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/tumor/ice_lab) +"jLe" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"jLC" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "cartridge_2" + }, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"jLD" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + layer = 3.5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"jMf" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"jMh" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/medbay) +"jMk" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"jMv" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"jMH" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"jNi" = ( +/obj/item/ammo_casing{ + dir = 2; + icon_state = "casing_5" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"jNl" = ( +/obj/structure/ice/thin/indestructible{ + icon_state = "Straight" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells) +"jNw" = ( +/turf/open/floor/prison/blue/northwest, +/area/fiorina/tumor/servers) +"jOb" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"jOd" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"jOv" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/blue/northeast, +/area/fiorina/station/power_ring) +"jOY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"jPK" = ( +/turf/closed/shuttle/elevator{ + dir = 6 + }, +/area/fiorina/station/telecomm/lz1_cargo) +"jPM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"jPY" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Residential Apartment" + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/servers) +"jQc" = ( +/obj/item/organ/lungs, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"jQs" = ( +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"jQy" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"jQS" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"jRf" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"jRh" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) +"jRk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stock_parts/matter_bin/super{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/stock_parts/matter_bin/adv{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"jRC" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"jRF" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"jRL" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/disco) +"jSc" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/reagent_container/food/drinks/flask/marine, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"jSD" = ( +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"jSE" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/waffles, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"jSU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"jSZ" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"jTo" = ( +/obj/item/prop/helmetgarb/gunoil, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"jTD" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"jTJ" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/lowsec) +"jTN" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"jUa" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"jUs" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/chapel_carpet, +/area/fiorina/station/chapel) +"jUG" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"jUP" = ( +/obj/item/trash/c_tube, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"jVj" = ( +/obj/structure/bed/chair, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"jVt" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"jVE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer{ + icon_state = "security_det"; + name = "Shuttle control deck"; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"jVM" = ( +/turf/open/floor/prison/green, +/area/fiorina/station/botany) +"jWg" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"jWk" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) +"jWy" = ( +/obj/structure/barricade/handrail, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"jWE" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" + }, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"jWI" = ( +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"jWY" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/storage/fancy/cigar/tarbacks, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"jXj" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"jXk" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/almayer, +/area/fiorina/tumor/ship) +"jXz" = ( +/turf/closed/wall/prison, +/area/fiorina/tumor/servers) +"jXV" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"jXZ" = ( +/turf/closed/shuttle/elevator, +/area/fiorina/tumor/aux_engi) +"jYm" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"jYn" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"jYs" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"jYt" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"jYK" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"jYM" = ( +/obj/item/trash/chips, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"jYU" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_tram) +"jYV" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"jZc" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "delivery_outlet"; + layer = 6; + name = "overhead ducting"; + pixel_y = 33 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"jZk" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) +"kag" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/power_ring) +"kat" = ( +/turf/open/floor/prison/green/north, +/area/fiorina/station/botany) +"kaw" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"kaF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"kaO" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"kbb" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/tumor/aux_engi) +"kbh" = ( +/obj/item/explosive/grenade/incendiary/molotov, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"kbi" = ( +/obj/item/ammo_casing{ + dir = 6; + icon_state = "casing_10_1" + }, +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/wood, +/area/fiorina/station/park) +"kbj" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"kbo" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/greenblue/west, +/area/fiorina/station/botany) +"kbt" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop{ + pixel_x = 7; + pixel_y = -1 + }, +/obj/item/toy/bikehorn/rubberducky{ + desc = "He's already fed up with your bullshit face."; + name = "Dug the duck"; + pixel_x = -3; + pixel_y = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"kbT" = ( +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"kdq" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"kds" = ( +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"kdK" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/carpet, +/area/fiorina/tumor/civres) +"kdR" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/lz/near_lzI) +"kfL" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison, +/area/fiorina/station/security) +"kfW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/clothing/mask/cigarette, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_y = 8 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"kfY" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"kgp" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"kgG" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"kgN" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"kgQ" = ( +/obj/item/stool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"kgT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper/carbon, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"kgY" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"khd" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) +"khu" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) +"khw" = ( +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) +"khY" = ( +/obj/structure/closet/secure_closet/medical3, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"kid" = ( +/obj/item/ammo_casing{ + icon_state = "casing_8" + }, +/obj/structure/surface/table/reinforced/prison{ + dir = 4; + flipped = 1 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"kii" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/tumor/ice_lab) +"kil" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"kiR" = ( +/obj/item/tool/weldpack, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"kiT" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"kjt" = ( +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"kjP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/northleft, +/obj/structure/machinery/computer/emails{ + pixel_y = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security/wardens) +"kjT" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"kjX" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"kka" = ( +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"kke" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"kkU" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/space/basic, +/area/fiorina/oob) +"kle" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"klh" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"klp" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/area/fiorina/tumor/ship) +"klt" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"klB" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"klC" = ( +/obj/structure/surface/table/reinforced/prison{ + flipped = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"klN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box{ + pixel_y = 6 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"kmm" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) +"kmn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"kmL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + dir = 1; + icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"kmN" = ( +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("PRISON") + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"knb" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"knh" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"kny" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"knW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"knY" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + indestructible = 1; + name = "launch bay door" + }, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/oob) +"kob" = ( +/obj/item/ammo_casing{ + icon_state = "cartridge_2" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"kok" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/station/transit_hub) +"kon" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood/medium_stack, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"kor" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"kow" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"koH" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"koK" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/obj/structure/closet/bombcloset, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"koY" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"kpe" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"kpp" = ( +/obj/item/trash/popcorn, +/obj/structure/cable/heavyduty{ + icon_state = "1-4-8" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"kpq" = ( +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"kpu" = ( +/obj/structure/closet/wardrobe/orange, +/obj/item/explosive/mine/pmc, +/obj/effect/spawner/random/gun/smg, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"kpv" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"kpH" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"kpR" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) +"kqy" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"kqC" = ( +/turf/closed/wall/prison, +/area/fiorina/station/lowsec) +"kqJ" = ( +/obj/item/trash/used_stasis_bag, +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/lz/near_lzI) +"krb" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"krn" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/servers) +"krE" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/flight_deck) +"ksu" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"ksE" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"ksL" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"ksV" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/servers) +"ksY" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"ktq" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"ktv" = ( +/obj/item/trash/sosjerky, +/turf/open/floor/prison, +/area/fiorina/station/security) +"ktC" = ( +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"kue" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"kvg" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"kvh" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"kvu" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"kvx" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/medbay) +"kvT" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/floor/prison/blue, +/area/fiorina/station/chapel) +"kwT" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"kwZ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/civres_blue) +"kxf" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/wood, +/area/fiorina/station/park) +"kxl" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"kxQ" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"kxU" = ( +/turf/open/floor/prison/green/southwest, +/area/fiorina/station/transit_hub) +"kyd" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"kyh" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"kyF" = ( +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"kyU" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"kyW" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"kyZ" = ( +/obj/item/clothing/under/CM_uniform, +/turf/open/floor/prison, +/area/fiorina/station/security) +"kze" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Residential Apartment" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"kzh" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"kzs" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/green/east, +/area/fiorina/tumor/civres) +"kzx" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/civres_blue) +"kzz" = ( +/obj/item/tool/shovel/etool, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"kzB" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/green/northeast, +/area/fiorina/station/chapel) +"kzL" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"kzR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"kAc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/processor{ + desc = "It CAN blend it."; + icon_state = "blender_e"; + name = "Blendomatic"; + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"kAO" = ( +/obj/item/folder/yellow, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"kBm" = ( +/obj/item/device/multitool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"kBt" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"kBE" = ( +/obj/item/toy/bikehorn/rubberducky, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"kBX" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"kCj" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/green/north, +/area/fiorina/station/chapel) +"kCH" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/fiorina/tumor/aux_engi) +"kCI" = ( +/obj/item/weapon/baseballbat/metal, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"kCN" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/type_b, +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"kCS" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"kCT" = ( +/obj/effect/spawner/random/gun/smg, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec) +"kCY" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"kDa" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"kDw" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/fiorina/station/telecomm/lz1_cargo) +"kDN" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"kEj" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"kEx" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"kEy" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"kEZ" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"kFd" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"kGc" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) +"kGd" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"kGo" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"kGB" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"kGD" = ( +/obj/structure/largecrate/random/mini/med, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"kGZ" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"kHa" = ( +/obj/item/storage/toolbox, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"kHc" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"kHf" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"kHv" = ( +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/power_ring) +"kHF" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"kHG" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"kHH" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"kHI" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"kHS" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + layer = 2.97; + pixel_y = -14 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"kHZ" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"kIb" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) +"kIg" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"kIh" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"kIo" = ( +/obj/structure/girder, +/turf/open/floor/almayer/plating/northeast, +/area/fiorina/tumor/ship) +"kIA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + pixel_y = 9 + }, +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"kIO" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"kJd" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"kJf" = ( +/obj/item/tool/wrench, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"kJz" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"kJJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"kJS" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/servers) +"kJU" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"kKd" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"kKs" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/station/flight_deck) +"kKt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/baton, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"kKP" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) +"kKQ" = ( +/obj/structure/platform/stair_cut/alt, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"kLs" = ( +/obj/vehicle/powerloader{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"kLz" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/civres_blue) +"kLI" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"kMm" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"kMq" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/civres_blue) +"kMC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/objective, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"kME" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"kMU" = ( +/obj/effect/spawner/gibspawner/robot, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/maintenance) +"kMV" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"kNk" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"kNs" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"kNB" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/bottle/holywater{ + desc = "A flask of the holy HEFA grenade oil."; + name = "Flask of HEFA Oil" + }, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"kNN" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/tumor/ship) +"kNW" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/servers) +"kNY" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"kOu" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"kOB" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"kOV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black_random, +/obj/item/folder/red{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"kPf" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"kPz" = ( +/obj/structure/lattice, +/turf/open/space, +/area/fiorina/oob) +"kPY" = ( +/turf/closed/wall/prison, +/area/fiorina/tumor/fiberbush) +"kQr" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"kQy" = ( +/obj/item/frame/rack, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"kQG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/ricepudding, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"kQH" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gibarm_flesh" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"kRO" = ( +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/structure/surface/rack, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"kSd" = ( +/obj/structure/toilet{ + pixel_y = 4 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"kSe" = ( +/turf/open/floor/prison/yellow, +/area/fiorina/station/disco) +"kSh" = ( +/turf/closed/shuttle/elevator{ + dir = 9 + }, +/area/fiorina/station/telecomm/lz1_cargo) +"kSB" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"kSD" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/platform{ + dir = 8; + layer = 2.5 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_tram) +"kTs" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/maintenance) +"kTD" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/power_ring) +"kTL" = ( +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"kTW" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"kTY" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"kUj" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"kUo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio{ + pixel_y = 8 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"kUR" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"kVg" = ( +/obj/item/stack/cable_coil/blue, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"kVk" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"kVN" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"kVW" = ( +/obj/item/weapon/pole/wooden_cane, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"kWv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/restraint/handcuffs, +/turf/open/floor/prison, +/area/fiorina/station/security) +"kWx" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"kWL" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/lz/near_lzII) +"kWS" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"kXk" = ( +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"kXm" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/heavy, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/medbay) +"kXs" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"kXD" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"kXR" = ( +/obj/structure/machinery/light/small{ + dir = 4; + pixel_x = 11; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/fiorina/tumor/ship) +"kYd" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"kYi" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "handblood" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"kYz" = ( +/obj/structure/closet/crate/medical, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"kYZ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/cell/super/empty, +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"kZl" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"kZu" = ( +/obj/structure/toilet{ + pixel_y = 4 + }, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = 2; + pixel_y = 25 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"kZy" = ( +/obj/item/clothing/mask/breath, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"kZS" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"kZV" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"lag" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"laz" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"laJ" = ( +/obj/structure/airlock_assembly, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"laK" = ( +/obj/item/stool, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"laX" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"lbt" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 20 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"lbz" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"lbK" = ( +/obj/structure/platform, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"lbL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/cigbutt, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) +"lbZ" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"lcm" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"lcn" = ( +/turf/open/floor/prison/panelscorched, +/area/fiorina/station/transit_hub) +"lco" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"lcq" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/space/basic, +/area/fiorina/oob) +"lcE" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"lcJ" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/prison/whitegreencorner/east, +/area/fiorina/tumor/ice_lab) +"ldd" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/stack/rods, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) +"lde" = ( +/obj/structure/prop/resin_prop{ + icon_state = "coolanttank" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"ldj" = ( +/obj/item/weapon/harpoon, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"ldz" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"ldF" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/power_ring) +"ldW" = ( +/obj/item/stack/sandbags, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"ldZ" = ( +/obj/item/explosive/grenade/incendiary/molotov, +/turf/open/floor/prison/red/east, +/area/fiorina/station/security) +"lev" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"lex" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"leF" = ( +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"leN" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/disco) +"leZ" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"lfo" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"lfX" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"lge" = ( +/turf/open/floor/prison/blue/northeast, +/area/fiorina/station/civres_blue) +"lgx" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/park) +"lgG" = ( +/obj/structure/coatrack, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"lgH" = ( +/turf/open/floor/prison/green, +/area/fiorina/tumor/civres) +"lgS" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/park) +"lhJ" = ( +/obj/item/weapon/gun/flamer, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/ammo_magazine/flamer_tank, +/obj/item/ammo_magazine/flamer_tank, +/obj/item/storage/pouch/flamertank, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"lhS" = ( +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"lhY" = ( +/obj/structure/sign/prop3{ + desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." + }, +/turf/closed/wall/prison, +/area/fiorina/station/power_ring) +"lic" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"lit" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"liA" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"liZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/lz/near_lzII) +"ljc" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"ljd" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"ljx" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"ljV" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison, +/area/fiorina/station/security) +"lkb" = ( +/obj/item/tool/kitchen/knife, +/obj/structure/bed/roller, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"lkr" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/tumor/ice_lab) +"lku" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_rightengine" + }, +/area/fiorina/oob) +"lkA" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"lkM" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) +"lkP" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"lkQ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"lld" = ( +/turf/open/floor/prison/red/west, +/area/fiorina/station/security) +"lls" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry, +/turf/open/floor/wood, +/area/fiorina/station/park) +"llE" = ( +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"llJ" = ( +/obj/item/stack/rods, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + dir = 4 + }, +/turf/open/floor/prison/platingdmg3, +/area/fiorina/station/security) +"llQ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/fiorina/oob) +"lml" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/space/basic, +/area/fiorina/oob) +"lmn" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/medbay) +"lmu" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"lnK" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/telecomm/lz1_tram) +"loj" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"lou" = ( +/obj/item/ammo_box/magazine/misc/flares/empty{ + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"loE" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"loP" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" + }, +/obj/item/bedsheet/ce{ + desc = "It crinkles, aggressively."; + name = "sterile wax sheet" + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/medbay) +"lpd" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/blue, +/area/fiorina/station/chapel) +"lpl" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan27" + }, +/area/fiorina/lz/near_lzI) +"lpr" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"lpw" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"lpH" = ( +/turf/open/floor/prison/green/northwest, +/area/fiorina/station/chapel) +"lpS" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"lpW" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"lpX" = ( +/obj/structure/machinery/door/airlock/prison/horizontal, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"lpZ" = ( +/obj/item/trash/boonie, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"lqa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"lqq" = ( +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"lqC" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/lz/near_lzI) +"lqI" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"lqJ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_2" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"lqN" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/obj/effect/spawner/random/gun/rifle, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"lri" = ( +/turf/open/floor/prison/green/west, +/area/fiorina/station/transit_hub) +"lrA" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"lrE" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/item/toy/katana, +/turf/open/floor/almayer, +/area/fiorina/tumor/ship) +"lrI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/milk{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"lrV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"lsn" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"lsO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/mineral/plastic/small_stack, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"lsR" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"lsZ" = ( +/obj/item/tool/soap, +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"ltd" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"lte" = ( +/obj/structure/barricade/metal{ + dir = 4; + health = 85; + icon_state = "metal_1" + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"ltz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"ltA" = ( +/turf/open/floor/prison/floorscorched1, +/area/fiorina/tumor/aux_engi) +"ltQ" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/security) +"luf" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"lun" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"lux" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"luy" = ( +/obj/item/trash/candle, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/maintenance) +"luZ" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"lvf" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"lvg" = ( +/obj/item/trash/candle, +/turf/open/floor/prison/chapel_carpet, +/area/fiorina/maintenance) +"lvi" = ( +/obj/structure/sign/poster{ + icon_state = "poster6"; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"lvt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"lvy" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_rightengine" + }, +/area/fiorina/tumor/aux_engi) +"lvD" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"lvV" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) +"lwd" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/medbay) +"lwn" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"lwp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/security_space_law{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/book/manual/security_space_law{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/security_space_law{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"lwq" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/central_ring) +"lwA" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"lxT" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "casing_6" + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"lyf" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; + icon_state = "fullgrass_2"; + name = "Fiberbush(tm) tubers" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"lyJ" = ( +/obj/item/tool/crowbar, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"lyY" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" + }, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"lzd" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"lzm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"lzn" = ( +/obj/structure/machinery/portable_atmospherics/canister/phoron, +/turf/open/floor/corsat/squares, +/area/fiorina/station/telecomm/lz1_cargo) +"lzq" = ( +/obj/item/tool/wet_sign, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = -1 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"lzz" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/storage/fancy/crayons, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"lzB" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"lzE" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"lzJ" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"lzP" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "cartridge_2" + }, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/fiorina/station/park) +"lAh" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/tumor/ice_lab) +"lAn" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"lAE" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) +"lAM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4; + pixel_y = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"lAN" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"lAQ" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"lAV" = ( +/obj/structure/bed/stool, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"lAY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/northright, +/turf/open/floor/plating/prison, +/area/fiorina/station/security/wardens) +"lBb" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"lBE" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"lBI" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5_1" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"lBR" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"lBS" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"lCl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp/captain, +/obj/structure/machinery/processor{ + icon_state = "blender_jug_f_red"; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"lCz" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"lDo" = ( +/obj/item/storage/fancy/cigar, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"lDC" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/space/basic, +/area/fiorina/oob) +"lDG" = ( +/obj/structure/machinery/computer/drone_control, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"lDU" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"lEd" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"lEg" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"lEk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 8; + icon_state = "commb" + }, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"lEp" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer_hull, +/area/fiorina/station/medbay) +"lEy" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"lEF" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"lEL" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"lFc" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/security/liaison, +/turf/open/floor/wood, +/area/fiorina/station/park) +"lFg" = ( +/obj/item/paper, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"lFm" = ( +/obj/structure/bed/roller, +/obj/item/trash/used_stasis_bag, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"lFo" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"lFv" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"lFB" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"lFD" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) +"lFM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) +"lFQ" = ( +/obj/structure/machinery/m56d_hmg/mg_turret/dropship, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"lFV" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"lGL" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"lHw" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/flight_deck) +"lHx" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"lHE" = ( +/obj/item/explosive/grenade/high_explosive/frag, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"lIj" = ( +/obj/structure/prop/ice_colony/surveying_device, +/turf/open/floor/prison/blue/east, +/area/fiorina/tumor/servers) +"lIk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = 11 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"lIl" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/tumor/ice_lab) +"lIt" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"lIv" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan5" + }, +/area/fiorina/lz/near_lzI) +"lIA" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) +"lIC" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"lIG" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/research_cells) +"lIH" = ( +/obj/structure/machinery/processor, +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) +"lIJ" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"lJf" = ( +/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ + layer = 2.6 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"lJx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"lJI" = ( +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"lJS" = ( +/obj/structure/largecrate/supply/medicine/iv, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"lKI" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"lKP" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/chapel) +"lLe" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"lLE" = ( +/obj/item/bedsheet/blue, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"lLQ" = ( +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"lLS" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"lMh" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"lMi" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"lMq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + icon_state = "mwo"; + pixel_y = 6 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"lMV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"lNc" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"lNf" = ( +/obj/item/inflatable, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"lNv" = ( +/obj/item/restraint/adjustable/cable/pink, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"lNP" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"lNR" = ( +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"lOe" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) +"lOk" = ( +/obj/structure/curtain, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/power_ring) +"lOm" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/bodybag/tarp/reactive{ + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"lOx" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"lOy" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"lPA" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"lPE" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"lQo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/transit_hub) +"lQJ" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/maintenance) +"lQL" = ( +/obj/structure/machinery/space_heater, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"lRk" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/prison/damaged3, +/area/fiorina/station/security) +"lRq" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/park) +"lRr" = ( +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/civres_blue) +"lRT" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/lz/near_lzI) +"lRW" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"lSb" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"lSj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + dir = 2; + icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"lSq" = ( +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"lSS" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"lTp" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"lTW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"lUi" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan23" + }, +/area/fiorina/tumor/ship) +"lUs" = ( +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "Straight" + }, +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "Straight" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells) +"lUu" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) +"lUv" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"lUE" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/fiorina/tumor/ship) +"lUZ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"lVA" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/lz/near_lzII) +"lVQ" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/whitegreencorner, +/area/fiorina/station/medbay) +"lWn" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/item/tool/soap/weyland_yutani, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"lWy" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"lXs" = ( +/obj/item/book/manual/marine_law, +/obj/item/book/manual/marine_law{ + pixel_y = 3 + }, +/obj/item/book/manual/marine_law{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor/prison/chapel_carpet, +/area/fiorina/maintenance) +"lXO" = ( +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "Corner" + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/platform{ + dir = 1; + layer = 2.1 + }, +/turf/open/ice/noweed, +/area/fiorina/tumor/ice_lab) +"lYj" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"lZf" = ( +/turf/closed/shuttle/elevator{ + dir = 10 + }, +/area/fiorina/tumor/aux_engi) +"lZm" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/power_ring) +"lZo" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"lZp" = ( +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"lZs" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 2; + layer = 6; + name = "overhead pipe"; + pixel_x = -16; + pixel_y = 12 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"lZA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"maA" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"maY" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"mbg" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/medbay) +"mbp" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"mbz" = ( +/obj/item/ammo_box/magazine/M16, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"mbC" = ( +/obj/item/clipboard, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"mcr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stock_parts/matter_bin/super, +/turf/open/floor/wood, +/area/fiorina/station/park) +"mcH" = ( +/turf/open/floor/prison/blue, +/area/fiorina/tumor/servers) +"mcJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"mdd" = ( +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"mdz" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"mdD" = ( +/obj/item/stool, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"mdG" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"mdH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/card/id/guest{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/card/id/guest, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"mdJ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth, +/turf/open/space, +/area/fiorina/oob) +"mdS" = ( +/turf/open/floor/prison/greenbluecorner/west, +/area/fiorina/station/botany) +"mdY" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"mei" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"mfe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/twohanded/sledgehammer{ + throwforce = 45 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"mfF" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"mfR" = ( +/obj/structure/bed{ + icon_state = "psychbed" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"mgh" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"mgz" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"mgE" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"mgO" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/item/circuitboard/machine/rdserver, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"mho" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"mhM" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"mhR" = ( +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/auto_turf/sand/layer1, +/area/fiorina/station/flight_deck) +"mhS" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/greenblue/north, +/area/fiorina/station/botany) +"miU" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"mjm" = ( +/obj/item/reagent_container/food/drinks/coffee{ + name = "\improper paper cup" + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/central_ring) +"mju" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"mjx" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/tumor/servers) +"mjB" = ( +/obj/structure/platform, +/turf/open/gm/river/pool, +/area/fiorina/station/park) +"mkn" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/station/power_ring) +"mkI" = ( +/obj/structure/machinery/microwave{ + desc = "So uh yeah, about that cat..."; + icon_state = "mwbloodyo"; + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"mlb" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/tumor/ice_lab) +"mld" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"mlg" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"mlu" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"mlC" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"mlU" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/item/tool/soap/syndie, +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/gun/special, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"mmp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stock_parts/matter_bin/adv{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"mmy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"mnd" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/ice_lab) +"mnr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison, +/area/fiorina/tumor/fiberbush) +"mns" = ( +/obj/item/stool, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"mny" = ( +/turf/closed/wall/prison, +/area/fiorina/station/flight_deck) +"mnJ" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"mnR" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"mok" = ( +/obj/structure/closet/crate/bravo, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/fuel_cell, +/obj/item/stack/sheet/plasteel, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"mom" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/surgicaldrill, +/turf/open/floor/prison/yellowcorner, +/area/fiorina/station/lowsec) +"moK" = ( +/obj/item/clothing/under/shorts/red, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/central_ring) +"moQ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"moW" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"mpb" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison, +/area/fiorina/station/park) +"mpf" = ( +/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ + layer = 2.6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/lz/near_lzII) +"mpB" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/fiorina/oob) +"mpE" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/botany) +"mpN" = ( +/obj/item/stock_parts/manipulator/pico, +/turf/open/floor/prison/darkpurple2/east, +/area/fiorina/tumor/servers) +"mpR" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"mpY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/barricade/handrail/type_b{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"mqB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/red, +/area/fiorina/station/security) +"mqJ" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"mqM" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/flight_deck) +"mrk" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"mrG" = ( +/obj/structure/extinguisher_cabinet, +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"mrI" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med, +/turf/closed/wall/prison, +/area/fiorina/station/medbay) +"mrK" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"mrW" = ( +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"mrX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"msd" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"msj" = ( +/obj/item/toy/crayon/orange, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"msn" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/fiorina/tumor/ship) +"msu" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"msF" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"msH" = ( +/obj/item/tool/surgery/cautery, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) +"mtj" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"mtD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 7 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"mtG" = ( +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/station/park) +"mtP" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"mue" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"muD" = ( +/obj/structure/tunnel, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"muX" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"mvl" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"mvp" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"mvF" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + indestructible = 1; + name = "launch bay door" + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"mvV" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"mvY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"mwu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/spacecash/c10, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"mwK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/item/phone{ + pixel_x = 9; + pixel_y = -10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"mwP" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"mxc" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"mxk" = ( +/obj/item/trash/tray, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/power_ring) +"mxm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/plantspray/pests, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"mxs" = ( +/obj/item/storage/belt/marine/quackers, +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/river/darkred_pool, +/area/fiorina/station/park) +"mxQ" = ( +/turf/closed/wall/prison, +/area/fiorina/station/power_ring) +"mxR" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"myf" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"myi" = ( +/obj/item/tool/mop, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"myj" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"myA" = ( +/obj/structure/bed/chair{ + dir = 4; + layer = 2.8 + }, +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"myH" = ( +/obj/item/storage/briefcase, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"myJ" = ( +/obj/structure/closet/bombcloset, +/obj/effect/spawner/random/gun/rifle/midchance, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/station/flight_deck) +"myK" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"myQ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/tumor/ice_lab) +"mzn" = ( +/obj/item/frame/firstaid_arm_assembly, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"mzy" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"mzJ" = ( +/obj/item/tool/lighter/random{ + pixel_x = 14; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"mzK" = ( +/turf/open/floor/prison/whitegreencorner, +/area/fiorina/station/medbay) +"mzS" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1; + name = "\improper ambulance pod hatch" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"mzT" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/area/fiorina/oob) +"mAs" = ( +/obj/item/broken_device, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"mAt" = ( +/turf/open/floor/prison/greenbluecorner, +/area/fiorina/station/botany) +"mAK" = ( +/obj/structure/sign/poster{ + desc = "Hubba hubba."; + icon_state = "poster17"; + name = "magazine" + }, +/obj/structure/sign/poster{ + desc = "Hubba hubba."; + icon_state = "poster3"; + name = "magazine"; + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"mAN" = ( +/obj/item/toy/crayon/mime, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"mAS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"mBG" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"mBJ" = ( +/obj/item/ammo_box/magazine/misc/flares/empty, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"mBZ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"mCe" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/lowsec) +"mCp" = ( +/turf/open/floor/prison/blue/north, +/area/fiorina/station/chapel) +"mCA" = ( +/obj/structure/prop/resin_prop, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"mCF" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/prison, +/area/fiorina/station/lowsec) +"mCH" = ( +/obj/item/newspaper, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"mCR" = ( +/obj/structure/platform, +/obj/structure/bed/chair{ + dir = 1; + layer = 2.7 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"mDn" = ( +/turf/open/floor/prison/green/northeast, +/area/fiorina/tumor/servers) +"mDq" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) +"mDz" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"mDO" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"mDS" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"mEn" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"mEJ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/prison, +/area/fiorina/station/security) +"mEO" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"mEU" = ( +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) +"mEY" = ( +/obj/item/device/flashlight/on, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/fiorina/tumor/aux_engi) +"mFS" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"mGf" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/civres_blue) +"mGr" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"mGN" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/item/prop/almayer/handheld1, +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"mGX" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"mGZ" = ( +/obj/item/trash/eat, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"mHC" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/maintenance) +"mHR" = ( +/obj/structure/sign/prop3{ + desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/tumor/aux_engi) +"mHY" = ( +/obj/item/frame/rack, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"mIf" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"mIr" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"mIu" = ( +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"mIQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"mJc" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"mJg" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"mJk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = -3 + }, +/obj/item/coin/silver{ + pixel_x = 8; + pixel_y = -4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"mJq" = ( +/obj/item/trash/kepler, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"mJH" = ( +/obj/item/device/flashlight/flare/on, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"mKd" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) +"mKo" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) +"mKp" = ( +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"mKx" = ( +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) +"mKS" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space, +/area/fiorina/oob) +"mLm" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"mLL" = ( +/obj/item/tool/mop, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"mLP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/smartfridge/drinks{ + pixel_y = 10 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"mLY" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) +"mMa" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/station/medbay) +"mMh" = ( +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"mMi" = ( +/obj/item/tool/weldpack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"mMk" = ( +/obj/structure/prop/resin_prop, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"mMH" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"mMP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"mNc" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison, +/area/fiorina/station/security) +"mNh" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"mNB" = ( +/obj/effect/decal/hefa_cult_decals/d32, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"mNN" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"mOf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"mOm" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"mOE" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/fiorina/station/power_ring) +"mOI" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"mOU" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"mPe" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/medbay) +"mPf" = ( +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"mPg" = ( +/obj/item/trash/boonie, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"mPn" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"mPW" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"mPX" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/fiorina/station/park) +"mQy" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"mQB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"mQG" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"mQV" = ( +/obj/item/tool/stamp, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"mRA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"mRM" = ( +/obj/structure/monorail{ + dir = 5; + name = "launch track" + }, +/turf/open/space, +/area/fiorina/oob) +"mRS" = ( +/turf/open/floor/prison/darkpurple2/northeast, +/area/fiorina/station/central_ring) +"mSk" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"mSo" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"mSp" = ( +/obj/item/clothing/under/marine/ua_riot, +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"mSP" = ( +/obj/effect/landmark/railgun_camera_pos, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"mSZ" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) +"mTa" = ( +/obj/structure/ice/thin/indestructible{ + dir = 8; + icon_state = "End" + }, +/obj/structure/ice/thin/indestructible{ + dir = 8; + icon_state = "End" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells) +"mTl" = ( +/obj/item/storage/box/gloves, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"mTs" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"mTM" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"mUd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"mUA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"mUK" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/item/circuitboard/machine/rdserver, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"mVd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sign/poster{ + desc = "Hubba hubba."; + icon_state = "poster3"; + name = "magazine"; + pixel_x = 6; + pixel_y = 8 + }, +/obj/structure/sign/poster{ + desc = "Hubba hubba."; + icon_state = "poster17"; + name = "magazine" + }, +/obj/structure/sign/poster{ + desc = "The M41A is on the cover."; + icon_state = "poster15"; + name = "magazine"; + pixel_x = -5; + pixel_y = 5 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"mVk" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"mVn" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) +"mVO" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"mVY" = ( +/turf/open/floor/prison/damaged2/southwest, +/area/fiorina/station/security) +"mWs" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"mWO" = ( +/obj/effect/spawner/random/tool, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"mWR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications/simple, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"mWS" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"mWX" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"mWY" = ( +/obj/item/coin/uranium{ + anchored = 1; + desc = "You found one of the three uranium coins. It is entirely worthless. Might want to take a picture with it as proof."; + pixel_y = 28 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"mXk" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"mXS" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/launcher/grenade/m81, +/obj/item/storage/pill_bottle/kelotane, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"mYl" = ( +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) +"mYy" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) +"mYG" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ship) +"mZo" = ( +/obj/item/tool/shovel, +/turf/open/auto_turf/sand/layer1, +/area/fiorina/tumor/civres) +"mZy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/spawner/random/gun/smg/lowchance, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"mZH" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/central_ring) +"naf" = ( +/turf/closed/shuttle/ert, +/area/fiorina/oob) +"naI" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"naW" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/tumor/civres) +"nbb" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"nbP" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"ncb" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/lz/near_lzI) +"ncj" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"nck" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 + }, +/obj/item/reagent_container/food/snacks/cherrypie{ + pixel_y = 7 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"ncs" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"ncF" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"ncY" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/item/storage/briefcase{ + pixel_y = -2 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"ndl" = ( +/obj/item/storage/box/cups, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"ndD" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"ndQ" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"ndZ" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/medbay) +"nec" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"nez" = ( +/obj/item/ammo_casing{ + dir = 6; + icon_state = "casing_5" + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"neE" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/prison, +/area/fiorina/station/security) +"neT" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"neY" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/central_ring) +"nfe" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "u_psycopath_l"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "u_ketchup_l"; + pixel_x = 8; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "u_guilty_l"; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"nfh" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"nfu" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"nfA" = ( +/obj/structure/platform, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"nfF" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"nfZ" = ( +/obj/structure/closet/firecloset, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"nga" = ( +/turf/closed/wall/strata_ice/jungle{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + name = "synthetic vegetation" + }, +/area/fiorina/station/civres_blue) +"ngg" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"ngn" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ngF" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"nho" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"nhM" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/turf/open/floor/prison/blue/north, +/area/fiorina/station/civres_blue) +"nhX" = ( +/obj/structure/machinery/gibber, +/obj/effect/decal/cleanable/blood{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) +"nhY" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/prison, +/area/fiorina/station/flight_deck) +"nib" = ( +/obj/structure/sign/safety/fire_haz, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"nie" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "repairpanelslz" + }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"nim" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/fiorina/lz/near_lzI) +"nip" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"niw" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"njg" = ( +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"njm" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"nju" = ( +/obj/item/gift, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"njG" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"njK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"njN" = ( +/obj/item/stock_parts/micro_laser/ultra, +/turf/open/floor/prison/darkpurple2/southwest, +/area/fiorina/tumor/servers) +"njY" = ( +/obj/structure/inflatable/popped, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"nkg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"nkF" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/park) +"nkJ" = ( +/obj/structure/largecrate/supply/medicine/medkits, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"nkM" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"nlw" = ( +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"nlR" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; + icon_state = "fullgrass_2"; + name = "Fiberbush(tm) tubers" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"nmh" = ( +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"nmi" = ( +/obj/structure/machinery/door/airlock/almayer/marine{ + dir = 1; + icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/research_cells) +"nmm" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"nmy" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"nmK" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"nmL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"nmM" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"nmT" = ( +/obj/item/toy/crayon/blue, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"nnr" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"nny" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"nnC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"nnG" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"noa" = ( +/obj/structure/largecrate/supply/supplies/plasteel, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"noe" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"nor" = ( +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"noz" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"npx" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"nqL" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"nqN" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/security) +"nrd" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"nre" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"nrn" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/fiorina/maintenance) +"nrU" = ( +/obj/item/tool/pickaxe, +/obj/item/tool/pickaxe{ + pixel_y = 5 + }, +/obj/item/tool/pickaxe{ + pixel_y = 10 + }, +/obj/structure/surface/rack, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"nsm" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/medical_supply_link, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"nss" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/research_cells) +"nsD" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"ntc" = ( +/turf/open/floor/prison/green/east, +/area/fiorina/tumor/civres) +"ntf" = ( +/obj/item/implanter/compressed, +/obj/structure/safe, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ntv" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"ntw" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/lz/near_lzI) +"ntx" = ( +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/disco) +"ntE" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"ntH" = ( +/obj/structure/ice/thin/indestructible{ + dir = 8; + icon_state = "Straight" + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/platform{ + dir = 1; + layer = 2.1 + }, +/turf/open/ice/noweed, +/area/fiorina/tumor/ice_lab) +"ntM" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ntZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"nub" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"nuo" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"nup" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"nuN" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"nuX" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_tram) +"nvi" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"nvn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/chapel) +"nvs" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"nvD" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/botany) +"nvK" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"nvX" = ( +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) +"nwv" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"nwS" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) +"nwT" = ( +/turf/open/floor/prison/green/north, +/area/fiorina/tumor/aux_engi) +"nxc" = ( +/obj/structure/sign/poster{ + icon_state = "poster18"; + pixel_y = 32 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"nxl" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) +"nxq" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"nxW" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"nxY" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/redfull, +/area/fiorina/station/medbay) +"nyq" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"nyC" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/prison/floorscorched2, +/area/fiorina/station/security) +"nyF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/disco) +"nyO" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"nyS" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/item/tool/extinguisher/mini, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"nzf" = ( +/obj/structure/machinery/processor, +/obj/effect/decal/cleanable/blood{ + pixel_y = 20 + }, +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) +"nzi" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"nzu" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"nzw" = ( +/obj/item/clothing/head/soft/yellow, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"nzI" = ( +/obj/structure/largecrate/random, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"nzU" = ( +/obj/item/reagent_container/glass/bucket, +/obj/item/reagent_container/glass/bucket, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/chapel_carpet, +/area/fiorina/maintenance) +"nAf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/marine_law{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"nAm" = ( +/turf/open/floor/prison/yellow/east, +/area/fiorina/lz/near_lzII) +"nAs" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"nAK" = ( +/turf/open/floor/prison/yellowcorner/north, +/area/fiorina/station/lowsec) +"nAV" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/power_ring) +"nBb" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"nBt" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "4" + }, +/obj/item/weapon/gun/shotgun/pump{ + starting_attachment_types = list(/obj/item/attachable/stock/shotgun) + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"nBw" = ( +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/power_ring) +"nCh" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"nCm" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/fiorina/lz/near_lzI) +"nCt" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"nCH" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"nCV" = ( +/obj/item/ammo_casing{ + icon_state = "casing_7_1" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"nCX" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"nDq" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"nDr" = ( +/obj/structure/machinery/door/airlock/almayer/maint/autoname{ + name = "\improper Null Hatch REPLACE ME"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"nDI" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"nEh" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"nEB" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"nEI" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison, +/area/fiorina/station/security) +"nEN" = ( +/obj/item/clothing/glasses/material, +/obj/structure/barricade/handrail, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"nEP" = ( +/obj/structure/closet, +/obj/item/reagent_container/spray/cleaner, +/obj/item/stack/sheet/plasteel/small_stack, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"nEW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"nFb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/emeraldgreen, +/obj/item/tool/lighter, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"nFc" = ( +/obj/item/ammo_casing{ + icon_state = "cartridge_1" + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"nFB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/gift, +/turf/open/floor/wood, +/area/fiorina/station/park) +"nFJ" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"nGp" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"nGy" = ( +/obj/item/newspaper, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"nGB" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) +"nGO" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"nGV" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"nGZ" = ( +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"nHm" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigar, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"nHZ" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy_rightengine" + }, +/area/fiorina/station/medbay) +"nIb" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/transit_hub) +"nIc" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 20 + }, +/turf/closed/wall/prison, +/area/fiorina/tumor/civres) +"nId" = ( +/obj/structure/ice/thin/indestructible{ + icon_state = "Straight" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/tumor/ice_lab) +"nIw" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"nJq" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"nJu" = ( +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"nJT" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"nKf" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"nKl" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/gm/river/desert/deep, +/area/fiorina/lz/near_lzII) +"nKo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + icon_state = "mwo"; + pixel_y = 6 + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"nKG" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"nKX" = ( +/obj/structure/barricade/metal{ + dir = 8; + health = 250; + icon_state = "metal_1" + }, +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"nLS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 + }, +/obj/item/reagent_container/food/snacks/doughslice, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"nLV" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan27" + }, +/area/fiorina/tumor/aux_engi) +"nMg" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/telecomm/lz1_tram) +"nMi" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"nMm" = ( +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) +"nMn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/gun/pistol/lowchance, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"nMp" = ( +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) +"nMz" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/central_ring) +"nMI" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/ice_lab) +"nMZ" = ( +/obj/structure/ice/thin/indestructible, +/obj/structure/prop/invuln{ + desc = "Its eyes follow you around through the ice."; + dir = 4; + icon = 'icons/mob/xenos/queen.dmi'; + icon_state = "Normal Queen Knocked Down"; + layer = 2.5; + name = "frozen creature"; + pixel_x = -15; + pixel_y = -16 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/tumor/ice_lab) +"nNJ" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"nNS" = ( +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"nOe" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"nOg" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"nOi" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"nOw" = ( +/obj/structure/ice/thin/indestructible{ + dir = 1; + icon_state = "Straight" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/tumor/ice_lab) +"nOy" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"nOz" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"nPj" = ( +/obj/item/clothing/glasses/gglasses, +/turf/open/space, +/area/fiorina/oob) +"nPA" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"nQl" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir" + }, +/obj/item/stack/rods/plasteel, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"nQq" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, +/turf/closed/wall/prison, +/area/fiorina/station/medbay) +"nQu" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"nQE" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"nQF" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"nQH" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"nQJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sink{ + pixel_y = 32 + }, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"nRQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"nRT" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) +"nRU" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) +"nSh" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"nSx" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/disco) +"nSS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/dropper, +/obj/item/attachable/bipod, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"nSU" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"nTq" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan5" + }, +/area/fiorina/tumor/ship) +"nTv" = ( +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/chapel) +"nTV" = ( +/obj/structure/machinery/autolathe/full, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"nUb" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"nUe" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/prison, +/area/fiorina/station/park) +"nUm" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"nUr" = ( +/obj/structure/ice/thin/indestructible, +/obj/structure/prop/invuln{ + desc = "It is slimy."; + dir = 4; + icon = 'icons/mob/xenos/sentinel.dmi'; + icon_state = "Normal Sentinel Knocked Down"; + layer = 2.5; + name = "frozen creature"; + pixel_x = -22; + pixel_y = 8 + }, +/obj/structure/prop/invuln{ + desc = "He knows something that you don't."; + dir = 4; + icon = 'icons/mob/xenos/larva.dmi'; + icon_state = "Larva Sleeping"; + layer = 2.5; + name = "frozen creature"; + pixel_x = 8; + pixel_y = -18 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/tumor/ice_lab) +"nUJ" = ( +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"nUS" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"nVu" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"nVE" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"nVN" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"nVR" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"nWh" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"nWk" = ( +/obj/effect/spawner/random/gun/smg/midchance, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"nWv" = ( +/obj/item/reagent_container/food/drinks/coffee{ + name = "\improper paper cup" + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"nWx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"nWB" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/maintenance) +"nWC" = ( +/obj/item/clothing/shoes/yellow, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"nWM" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"nXj" = ( +/obj/structure/curtain/black, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"nXu" = ( +/obj/item/storage/backpack/satchel/lockable, +/turf/open/floor/prison, +/area/fiorina/station/security) +"nXE" = ( +/obj/item/ammo_casing{ + icon_state = "casing_6_1" + }, +/obj/item/weapon/gun/smg/mp5, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"nXX" = ( +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/prison, +/area/fiorina/station/security) +"nYi" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"nYB" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"nYE" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"nYT" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/fiorina/oob) +"nZB" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"nZI" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"nZQ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"nZU" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/flight_deck) +"oaa" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"obh" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/prison, +/area/fiorina/station/security) +"oby" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"obz" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"obE" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"obI" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "engineeroffice" + }, +/turf/closed/wall/prison, +/area/fiorina/tumor/civres) +"occ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/souto/lime{ + anchored = 1 + }, +/obj/item/reagent_container/food/drinks/cans/souto/lime{ + pixel_x = -8 + }, +/obj/item/reagent_container/food/drinks/cans/souto/lime{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/cans/souto/lime{ + layer = 4.1; + pixel_x = -4; + pixel_y = 18 + }, +/obj/item/reagent_container/food/drinks/cans/souto/lime{ + layer = 4.1; + pixel_x = 4; + pixel_y = 18 + }, +/obj/item/reagent_container/food/drinks/cans/souto/lime{ + layer = 4.2; + pixel_y = 36 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"ode" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"odl" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"ody" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"odC" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/tumor/civres) +"odQ" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"oer" = ( +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"oev" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"oeN" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"oeT" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 12 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"oeV" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) +"oeY" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"ofl" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) +"ofq" = ( +/turf/closed/shuttle/elevator{ + dir = 10 + }, +/area/fiorina/station/telecomm/lz1_cargo) +"ofw" = ( +/obj/structure/machinery/newscaster, +/turf/closed/wall/prison, +/area/fiorina/station/transit_hub) +"ofA" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"ofQ" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"oga" = ( +/obj/structure/bed{ + icon_state = "psychbed" + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/station/medbay) +"ogf" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/space, +/area/fiorina/oob) +"ogM" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"ohc" = ( +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"ohl" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/station/central_ring) +"ohx" = ( +/obj/item/tool/match, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ohF" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/tumor/ice_lab) +"ohY" = ( +/obj/item/circuitboard/machine/pacman/super, +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"oib" = ( +/obj/item/trash/hotdog, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) +"oih" = ( +/obj/item/paper/crumpled/bloody, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"oiF" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/servers) +"oiV" = ( +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"oiX" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"ojc" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"ojj" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"ojk" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"ojq" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"ojv" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"ojK" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_tram) +"ojW" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"okg" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/lz/near_lzII) +"okv" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"okE" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"okF" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/ice/thin/indestructible, +/obj/structure/prop/invuln{ + desc = "The underside softly pulses."; + dir = 4; + icon = 'icons/mob/xenos/xenonid_crab.dmi'; + icon_state = "facehugger_thrown"; + layer = 2.5; + name = "frozen creature"; + pixel_x = -22; + pixel_y = -10 + }, +/obj/structure/prop/invuln{ + desc = "The underside softly pulses."; + dir = 4; + icon = 'icons/mob/xenos/xenonid_crab.dmi'; + icon_state = "facehugger_thrown"; + layer = 2.5; + name = "frozen creature"; + pixel_x = 22; + pixel_y = 8 + }, +/obj/structure/prop/invuln{ + desc = "The underside softly pulses."; + dir = 4; + icon = 'icons/mob/xenos/xenonid_crab.dmi'; + icon_state = "facehugger_thrown"; + layer = 2.5; + name = "frozen creature"; + pixel_x = -22; + pixel_y = 8 + }, +/obj/structure/prop/invuln{ + desc = "The underside softly pulses."; + dir = 4; + icon = 'icons/mob/xenos/xenonid_crab.dmi'; + icon_state = "facehugger_thrown"; + layer = 2.5; + name = "frozen creature"; + pixel_x = 22; + pixel_y = -10 + }, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells) +"okG" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"okJ" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"okT" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"olb" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/adv, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"olg" = ( +/obj/structure/closet/crate/delta{ + desc = "A crate with delta squad's symbol on it. Now how did that get here? The words 'HEFA was never real' are scrawled on it in black ink."; + name = "crate" + }, +/obj/item/ammo_box/magazine/shotgun/buckshot, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"olk" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"olo" = ( +/obj/structure/machinery/disposal, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"oly" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"omb" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/carpet, +/area/fiorina/station/security/wardens) +"omh" = ( +/obj/structure/cargo_container/grant/left{ + desc = "A huge industrial shipping container. This one is in space." + }, +/turf/open/space, +/area/fiorina/oob) +"omD" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"omI" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"omN" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"omO" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/medbay) +"onb" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"onh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ont" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"onB" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/device/multitool, +/obj/item/device/multitool, +/obj/item/device/multitool, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"onW" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"ooq" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"oou" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/head/cmcap{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/item/clothing/glasses/mbcg{ + pixel_y = -14 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"oox" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/power_ring) +"ooF" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/wood, +/area/fiorina/station/park) +"ooO" = ( +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"oph" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/bottle/holywater, +/obj/item/reagent_container/food/drinks/bottle/holywater, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"opj" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) +"opM" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"opN" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/chapel) +"opP" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/greenblue/west, +/area/fiorina/station/botany) +"oqG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"orr" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"ort" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/green/west, +/area/fiorina/station/chapel) +"orB" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"orC" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"orD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery{ + name = "Lung Transplants for Dummies"; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"orV" = ( +/obj/item/tool/weldingtool, +/turf/open/auto_turf/sand/layer1, +/area/fiorina/tumor/civres) +"osv" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/fiorina/station/park) +"osN" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"osQ" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/bedsheet/green, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"osX" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-4" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"ota" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"otg" = ( +/turf/open/floor/prison/darkpurple2/west, +/area/fiorina/tumor/servers) +"oty" = ( +/obj/structure/closet/bombcloset, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"otz" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/fancy/vials/random, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"otC" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/security/wardens) +"otK" = ( +/turf/open/floor/prison/floor_marked/west, +/area/fiorina/tumor/servers) +"ouH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/fiorina/tumor/ship) +"ove" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/park) +"ovk" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/whitegreencorner/east, +/area/fiorina/tumor/ice_lab) +"ovq" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"ovr" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"ovJ" = ( +/turf/open/floor/wood, +/area/fiorina/station/medbay) +"ovM" = ( +/obj/item/storage/bible/hefa{ + pixel_y = 3 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"owd" = ( +/obj/item/storage/backpack/souto, +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"owp" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"owS" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"oxp" = ( +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"oxv" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"oxA" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan22" + }, +/area/fiorina/tumor/ship) +"oxK" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"oxS" = ( +/obj/item/paper/crumpled/bloody, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"oxU" = ( +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/transit_hub) +"oyd" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"oyk" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"oyo" = ( +/obj/structure/flora/pottedplant/random, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"oyy" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"oyC" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/wood, +/area/fiorina/station/park) +"oyJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"oyO" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/fiorina/station/power_ring) +"oyS" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"oyT" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"oza" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"ozC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"oAf" = ( +/obj/item/trash/boonie, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"oAj" = ( +/obj/structure/machinery/bot/medbot{ + name = "Dr. O" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"oBj" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"oBC" = ( +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "Corner" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells) +"oCe" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/park) +"oCn" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"oDe" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"oDg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/phone{ + pixel_x = 6; + pixel_y = -15 + }, +/obj/item/phone{ + pixel_y = 7 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"oDh" = ( +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"oDH" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"oDV" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"oEi" = ( +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/civres_blue) +"oEs" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"oEu" = ( +/obj/structure/platform_decoration, +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" + }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"oED" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"oEH" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"oEK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer{ + icon_state = "security_det"; + name = "Shuttle control deck"; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"oEN" = ( +/obj/item/prop/almayer/comp_closed{ + pixel_x = -1 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"oEQ" = ( +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/power_ring) +"oEX" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"oFf" = ( +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"oFk" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"oFp" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"oFI" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"oFO" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" + }, +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"oFU" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) +"oGg" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) +"oGy" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"oGR" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"oGU" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"oHi" = ( +/obj/item/stool, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"oHm" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/fiorina/tumor/aux_engi) +"oHX" = ( +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "Straight" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/tumor/ice_lab) +"oIq" = ( +/obj/structure/ice/thin/indestructible{ + dir = 1; + icon_state = "Corner" + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/platform{ + dir = 1; + layer = 2.1 + }, +/turf/open/ice/noweed, +/area/fiorina/tumor/ice_lab) +"oIz" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"oIE" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) +"oJd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"oJl" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"oJm" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"oJK" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/storage/briefcase, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) +"oJL" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/fiorina/tumor/ship) +"oJN" = ( +/obj/structure/surface/table/reinforced/prison{ + flipped = 1 + }, +/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"oJY" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/green/southeast, +/area/fiorina/tumor/civres) +"oKf" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"oKn" = ( +/obj/structure/holohoop{ + dir = 4; + id = "basketball"; + side = "left" + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"oKq" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"oKV" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) +"oLF" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"oLK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/objective, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"oLV" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"oLX" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/power_ring) +"oMf" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"oMu" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison, +/area/fiorina/station/park) +"oMw" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 + }, +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"oNu" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"oNx" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"oNC" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"oOg" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"oOh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"oOi" = ( +/obj/effect/decal/hefa_cult_decals/d32, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/maintenance) +"oOk" = ( +/obj/structure/platform, +/obj/structure/bed/chair{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"oOp" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"oOw" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"oOU" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"oOV" = ( +/obj/structure/machinery/filtration/console{ + pixel_y = 22 + }, +/turf/open/floor/almayer, +/area/fiorina/tumor/ship) +"oPn" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"oPN" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"oPR" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"oPU" = ( +/turf/open/floor/prison, +/area/fiorina/station/park) +"oPZ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/park) +"oQk" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"oQI" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"oQS" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) +"oRg" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"oRR" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/wood, +/area/fiorina/station/park) +"oSn" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec) +"oSz" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"oTa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"oTi" = ( +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"oTy" = ( +/obj/structure/prop/structure_lattice{ + health = 300 + }, +/obj/structure/prop/structure_lattice{ + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"oTz" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"oTP" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/telecomm/lz1_tram) +"oTS" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"oTT" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/park) +"oUg" = ( +/turf/closed/wall/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"oUP" = ( +/obj/structure/lattice, +/obj/effect/landmark/nightmare{ + insert_tag = "wardenofficedecorated" + }, +/turf/open/space, +/area/fiorina/oob) +"oVk" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"oWw" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/fiorina/station/park) +"oWC" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"oWF" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"oWG" = ( +/obj/item/ammo_casing{ + dir = 6; + icon_state = "casing_10_1" + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"oWY" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) +"oXb" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"oXg" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"oXk" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"oXD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"oXI" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"oXR" = ( +/obj/structure/ice/thin/indestructible{ + dir = 8; + icon_state = "Corner" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/tumor/ice_lab) +"oXS" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"oXT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stock_parts/manipulator/nano, +/turf/open/floor/wood, +/area/fiorina/station/park) +"oYs" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/barricade/handrail/type_b{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"oYG" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/chapel) +"oYW" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"oZf" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"oZi" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison, +/area/fiorina/station/security) +"oZj" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"oZk" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/fiorina/tumor/ice_lab) +"oZx" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" + }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"oZy" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"oZz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"oZS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"oZU" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"pab" = ( +/obj/item/tool/weldpack{ + pixel_x = 6 + }, +/obj/item/tool/weldpack{ + pixel_x = -6 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/tumor/servers) +"pae" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" + }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"pah" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"pai" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; + name = "\improper Fiorina Green Block Canteen Vendor" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"paF" = ( +/obj/item/tool/shovel/etool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"paI" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"paO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"pbp" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, +/turf/open/floor/corsat/plate, +/area/fiorina/station/telecomm/lz1_cargo) +"pbv" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"pbV" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/space, +/area/fiorina/oob) +"pbX" = ( +/turf/open/floor/prison/red, +/area/fiorina/station/security) +"pca" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"pcu" = ( +/turf/open/floor/almayer_hull, +/area/fiorina/oob) +"pcK" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"pcN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"pdB" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/park) +"pdN" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"pdP" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"pdX" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_1" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"pen" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/prison/green, +/area/fiorina/station/transit_hub) +"peA" = ( +/obj/structure/machinery/computer/communications{ + dir = 4; + pixel_y = 5 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/servers) +"peP" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) +"pgb" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/ice_lab) +"pgx" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"pgQ" = ( +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/chapel) +"phe" = ( +/obj/structure/girder, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"pho" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"phz" = ( +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"phC" = ( +/obj/item/newspaper, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"phQ" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"pim" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison/redfull, +/area/fiorina/station/lowsec) +"piw" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"pjf" = ( +/obj/item/ammo_magazine/rifle/m16, +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"pjg" = ( +/turf/open/floor/prison/green/northwest, +/area/fiorina/tumor/servers) +"pjE" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 8 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -8 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"pjR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/phone{ + pixel_x = 7; + pixel_y = -16 + }, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 16 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"pjT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"pjW" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"pkB" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/lz/near_lzI) +"pkM" = ( +/obj/structure/largecrate/machine, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"plh" = ( +/turf/open/floor/prison/greenblue/southwest, +/area/fiorina/station/botany) +"plu" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"plK" = ( +/turf/closed/wall/prison, +/area/fiorina/station/security/wardens) +"pma" = ( +/obj/structure/foamed_metal, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"pmn" = ( +/obj/structure/surface/rack, +/obj/item/poster, +/obj/item/poster, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"pmv" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 2; + layer = 6; + name = "overhead pipe"; + pixel_x = -16; + pixel_y = 12 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"pmC" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" + }, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) +"pnh" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) +"pnx" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"pnP" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"pnS" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/tumor/servers) +"poC" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"ppq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 10 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ppG" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"ppI" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"ppQ" = ( +/obj/item/storage/briefcase, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"ppS" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/prison/green/north, +/area/fiorina/station/transit_hub) +"ppX" = ( +/obj/structure/closet/secure_closet/medical2{ + req_access_txt = "100" + }, +/obj/item/alienjar, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) +"ppZ" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"pqz" = ( +/obj/item/clothing/suit/storage/labcoat, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"pqC" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"pqO" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" + }, +/area/fiorina/tumor/ship) +"pqY" = ( +/obj/structure/monorail{ + dir = 9; + name = "launch track" + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"prh" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/almayer/plating/northeast, +/area/fiorina/tumor/ship) +"prC" = ( +/obj/structure/machinery/autolathe/medilathe/full, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"prG" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/surface/rack, +/obj/item/stack/flag/yellow, +/obj/item/stack/flag/yellow, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"prL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/space_heater{ + pixel_x = -1; + pixel_y = 9 + }, +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/power_ring) +"pse" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/item/ammo_casing{ + dir = 6; + icon_state = "casing_5" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"psm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/fiorina/station/security) +"pst" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"psx" = ( +/obj/structure/platform, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/botany) +"psL" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" + }, +/obj/item/bedsheet/ce{ + desc = "It crinkles, aggressively."; + name = "sterile wax sheet" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"psP" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"pte" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/power_ring) +"pti" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"ptH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/redfull, +/area/fiorina/station/medbay) +"puw" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"puE" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"pvi" = ( +/obj/item/ammo_box/magazine/M16, +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) +"pvz" = ( +/obj/structure/janitorialcart, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"pvD" = ( +/turf/closed/wall/r_wall/prison_unmeltable{ + desc = "A huge chunk of metal used to seperate rooms."; + name = "metal wall" + }, +/area/fiorina/oob) +"pvE" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"pvF" = ( +/turf/open/floor/prison/whitegreencorner, +/area/fiorina/tumor/ice_lab) +"pwo" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/flight_deck) +"pwC" = ( +/obj/effect/spawner/random/gun/rifle/highchance, +/turf/open/floor/prison/damaged3, +/area/fiorina/station/security) +"pwL" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"pxf" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"pxk" = ( +/obj/structure/closet/cabinet, +/obj/item/reagent_container/pill/cyanide, +/obj/item/reagent_container/glass/bottle/cyanide, +/obj/item/reagent_container/syringe, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"pxr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box{ + pixel_y = 6 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"pxL" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/maintenance) +"pxW" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/item/tool/pickaxe, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"pxX" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"pyK" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"pzh" = ( +/obj/item/toy/beach_ball, +/turf/open/gm/river/red_pool, +/area/fiorina/station/park) +"pzE" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"pzL" = ( +/obj/item/ammo_magazine/m56d, +/obj/item/ammo_magazine/m56d, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/central_ring) +"pAl" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) +"pAr" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"pBb" = ( +/obj/structure/curtain/open/black, +/turf/open/floor/prison, +/area/fiorina/maintenance) +"pBe" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/green/east, +/area/fiorina/station/chapel) +"pBq" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"pBT" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"pBV" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"pBW" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"pCc" = ( +/obj/structure/ice/thin/indestructible{ + dir = 8; + icon_state = "End" + }, +/obj/structure/ice/thin/indestructible{ + dir = 8; + icon_state = "End" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/tumor/ice_lab) +"pCG" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"pCH" = ( +/obj/structure/monorail{ + dir = 10; + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"pCQ" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/item/stool{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"pCX" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"pDo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"pDQ" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"pEt" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/fiorina/maintenance) +"pFc" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"pFi" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/telecomm/lz1_tram) +"pFA" = ( +/obj/item/storage/toolbox/emergency, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"pFP" = ( +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "Straight" + }, +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "Straight" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/tumor/ice_lab) +"pFW" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"pGy" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) +"pGH" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_white_t_up" + }, +/area/fiorina/tumor/ship) +"pGK" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river/pool, +/area/fiorina/station/park) +"pGS" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"pHh" = ( +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "End" + }, +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "End" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/tumor/ice_lab) +"pHi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"pHx" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"pIs" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"pIt" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/item/reagent_container/food/snacks/grown/apple/poisoned, +/turf/open/floor/wood, +/area/fiorina/station/park) +"pIw" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"pIA" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/station/park) +"pJc" = ( +/turf/open/floor/wood, +/area/fiorina/maintenance) +"pJK" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/mopbucket, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"pJP" = ( +/turf/open/floor/prison/panelscorched, +/area/fiorina/station/chapel) +"pKf" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/head/that{ + pixel_y = 10 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"pKu" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"pKJ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000; + layer = 2.9; + pixel_y = 17 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"pKO" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"pKY" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"pLj" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"pLE" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"pLM" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) +"pLQ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"pLS" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greencorner/west, +/area/fiorina/tumor/aux_engi) +"pNj" = ( +/obj/structure/bookcase, +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"pNG" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 + }, +/obj/item/organ/eyes, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"pNI" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"pOU" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"pPd" = ( +/obj/structure/prop/resin_prop{ + icon_state = "coolanttank" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"pPo" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"pPG" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 20 + }, +/turf/closed/wall/prison, +/area/fiorina/tumor/servers) +"pQc" = ( +/obj/structure/closet/basketball, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"pQs" = ( +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"pQz" = ( +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/civres_blue) +"pRa" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"pRp" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"pRx" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"pRz" = ( +/turf/open/floor/prison/red/southwest, +/area/fiorina/station/power_ring) +"pRD" = ( +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring) +"pRG" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"pRH" = ( +/obj/item/weapon/wirerod, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"pSr" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"pSs" = ( +/obj/item/ammo_box/magazine/misc/flares{ + layer = 3.1; + pixel_y = 16 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"pSU" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"pTj" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"pTR" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"pTU" = ( +/turf/closed/shuttle/elevator{ + dir = 5 + }, +/area/fiorina/station/telecomm/lz1_cargo) +"pUf" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"pUo" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"pUG" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"pUO" = ( +/obj/item/trash/boonie, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"pVc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"pVk" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"pVD" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"pVR" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/bible/hefa{ + pixel_y = 3 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"pVY" = ( +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) +"pWc" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"pWp" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan8" + }, +/area/fiorina/tumor/ship) +"pWO" = ( +/obj/item/stack/rods, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"pWX" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" + }, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"pXt" = ( +/obj/item/reagent_container/food/snacks/wrapped/booniebars, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"pXH" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_tram) +"pXJ" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"pXY" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"pYc" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"pYz" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"pYB" = ( +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"pYD" = ( +/obj/structure/monorail{ + dir = 5; + name = "launch track" + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"pYL" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"pZm" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/mob/living/simple_animal/hostile/retaliate/clown{ + health = 10000; + move_to_delay = 2; + name = "Gonzo the Magnificent"; + rapid = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"pZn" = ( +/turf/open/floor/prison/yellowcorner/west, +/area/fiorina/station/lowsec) +"pZp" = ( +/obj/item/tool/soap, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"qaA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"qaL" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"qaO" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"qaT" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"qbd" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations are the leading cause in asbestos related deaths for 3 years in a row."; + icon_state = "fullgrass_1"; + name = "Fiberbush(tm) tubers" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"qbl" = ( +/turf/open/auto_turf/sand/layer1, +/area/fiorina/lz/near_lzII) +"qbn" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/maintenance) +"qby" = ( +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"qbI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + pixel_y = 9 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"qbR" = ( +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"qbW" = ( +/obj/item/tool/candle{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"qbY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/item/stack/catwalk, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"qcy" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"qcX" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"qdd" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"qdf" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"qdC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/tumor/civres) +"qdE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/tool/pen, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"qdJ" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"qes" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_tram) +"qet" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"qeC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/effect/spawner/random/pills/highchance, +/turf/open/floor/plating/prison, +/area/fiorina/station/security/wardens) +"qeN" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"qeR" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/station/park) +"qeX" = ( +/obj/structure/surface/table/reinforced/prison{ + flipped = 1 + }, +/obj/item/device/cassette_tape/hiphop, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"qfc" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/gm/river/desert/deep, +/area/fiorina/lz/near_lzII) +"qfg" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"qfi" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/telecomm/lz1_cargo) +"qgd" = ( +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/space/basic, +/area/fiorina/oob) +"qgi" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 20 + }, +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/tumor/civres) +"qgk" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"qgv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel/laser{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/item/tool/surgery/circular_saw{ + pixel_y = -2 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"qgB" = ( +/obj/item/clothing/gloves/rainbow, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"qgC" = ( +/obj/item/reagent_container/food/drinks/golden_cup, +/turf/open/space, +/area/fiorina/oob) +"qhk" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/station/park) +"qhC" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib2" + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"qhD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") + }, +/turf/open/floor/prison/redcorner/east, +/area/fiorina/station/power_ring) +"qhJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/redcorner/west, +/area/fiorina/station/power_ring) +"qhN" = ( +/turf/open/floor/prison/redcorner/east, +/area/fiorina/station/security) +"qhP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper, +/obj/item/attachable/bipod, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"qhZ" = ( +/turf/open/floor/prison/platingdmg3, +/area/fiorina/station/transit_hub) +"qif" = ( +/obj/item/inflatable, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"qiq" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"qiK" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"qjb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"qjh" = ( +/obj/item/reagent_container/food/snacks/boiledegg, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"qjM" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"qjR" = ( +/obj/structure/machinery/computer/station_alert{ + dir = 4; + pixel_y = 5 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"qjX" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/greenblue/north, +/area/fiorina/station/botany) +"qkg" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/wood, +/area/fiorina/station/park) +"qkn" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"qkq" = ( +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/oob) +"qkt" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"qkN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"qlf" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"qmj" = ( +/obj/structure/closet/emcloset, +/obj/item/weapon/nullrod{ + desc = "The explosive tip has been deactivated."; + force = 25; + icon_state = "hefasword"; + name = "de-activated HEFA Sword" + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"qmv" = ( +/obj/structure/monorail{ + dir = 10; + name = "launch track" + }, +/turf/open/space, +/area/fiorina/oob) +"qnb" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"qny" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"qob" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/corsat/plate, +/area/fiorina/station/telecomm/lz1_cargo) +"qoc" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"qof" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/station/disco) +"qov" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"qoG" = ( +/obj/item/toy/crayon/rainbow, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"qph" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/servers) +"qpk" = ( +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/civres_blue) +"qpB" = ( +/obj/item/stack/cable_coil/blue, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"qpM" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_leftengine" + }, +/area/fiorina/station/power_ring) +"qpN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 + }, +/obj/item/coin/gold{ + desc = "Coin op, in this place, in this year, localized entirely on this table? .... I uh, yes."; + name = "arcade token"; + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"qpX" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"qqc" = ( +/obj/structure/inflatable/popped, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"qqd" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"qqC" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"qqQ" = ( +/turf/open/floor/prison/green/northeast, +/area/fiorina/station/transit_hub) +"qqW" = ( +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"qre" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"qrn" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"qrt" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"qrz" = ( +/obj/item/explosive/plastic, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"qrI" = ( +/obj/structure/bed/sofa/south/grey/left, +/obj/item/reagent_container/food/snacks/sandwich{ + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"qrU" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"qsc" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"qso" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"qss" = ( +/obj/structure/flora/pottedplant/random, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"qsE" = ( +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"qsF" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) +"qtP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/prop/helmetgarb/raincover, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"qug" = ( +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"qun" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"quL" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"qva" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/smg/mp5, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"qvN" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"qws" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "bee" + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/maintenance) +"qwG" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/maintenance) +"qwH" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/lowsec) +"qwK" = ( +/turf/open/floor/prison/floorscorched2, +/area/fiorina/station/civres_blue) +"qxx" = ( +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"qxy" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/servers) +"qxN" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"qxP" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/tumor/aux_engi) +"qxZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"qya" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/item/clothing/gloves/combat, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"qyq" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"qyM" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/disco) +"qzb" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"qzo" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison, +/area/fiorina/station/security) +"qzM" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"qzZ" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) +"qAe" = ( +/obj/item/trash/eat, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"qAk" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"qAl" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"qAQ" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/tumor/aux_engi) +"qBe" = ( +/turf/open/floor/prison, +/area/fiorina/station/disco) +"qBf" = ( +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/central_ring) +"qBj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/storage/briefcase, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"qBB" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = -5; + pixel_y = -5 + }, +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"qBI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"qBT" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"qCa" = ( +/obj/structure/prop/resin_prop{ + dir = 1; + icon_state = "chair"; + pixel_y = 6 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"qCk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"qCx" = ( +/obj/item/reagent_container/food/drinks/sillycup, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"qCE" = ( +/obj/structure/machinery/computer/emails{ + dir = 1; + pixel_y = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"qCK" = ( +/turf/open/floor/prison/damaged1/southwest, +/area/fiorina/station/lowsec) +"qCW" = ( +/turf/closed/shuttle/elevator{ + dir = 6 + }, +/area/fiorina/tumor/aux_engi) +"qDn" = ( +/obj/item/stool, +/obj/structure/sign/poster{ + icon_state = "poster15"; + pixel_y = 32 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/maintenance) +"qDq" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_tram) +"qDZ" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"qEk" = ( +/obj/structure/bed/sofa/south/grey/left, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"qEl" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"qEs" = ( +/turf/open/floor/prison/yellowcorner/east, +/area/fiorina/station/lowsec) +"qEC" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) +"qFf" = ( +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"qFi" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"qFs" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"qFE" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/space/basic, +/area/fiorina/oob) +"qFO" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"qGe" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"qGf" = ( +/obj/item/tool/scythe, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"qGh" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"qGn" = ( +/turf/open/floor/corsat/plate, +/area/fiorina/station/telecomm/lz1_cargo) +"qGy" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"qGB" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitepurple/east, +/area/fiorina/station/research_cells) +"qGO" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"qGP" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"qHi" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "riot_control" + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"qHG" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 25 + }, +/turf/open/floor/plating/plating_catwalk, +/area/fiorina/tumor/ship) +"qHX" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison, +/area/fiorina/station/security) +"qIq" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"qIT" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket" + }, +/turf/open/floor/prison/blue, +/area/fiorina/station/chapel) +"qJf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_x = -8 + }, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + anchored = 1 + }, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + layer = 4.1; + pixel_x = 4; + pixel_y = 18 + }, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + layer = 4.1; + pixel_x = -4; + pixel_y = 18 + }, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + layer = 4.2; + pixel_y = 36 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"qJl" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" + }, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) +"qJr" = ( +/turf/open/floor/prison, +/area/fiorina/tumor/fiberbush) +"qJv" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"qJK" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"qJL" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"qJP" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"qJQ" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"qJR" = ( +/obj/item/disk/data, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"qKq" = ( +/obj/structure/machinery/computer/arcade, +/obj/item/toy/syndicateballoon{ + anchored = 1; + pixel_x = 12; + pixel_y = 25 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + layer = 2.8; + pixel_x = 15; + pixel_y = 5 + }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"qKx" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"qKT" = ( +/obj/item/stack/rods/plasteel, +/turf/open/auto_turf/sand/layer1, +/area/fiorina/lz/near_lzII) +"qLa" = ( +/obj/item/weapon/baseballbat/metal, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/chapel) +"qLi" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec) +"qLv" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"qLH" = ( +/obj/item/trash/used_stasis_bag, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"qLI" = ( +/obj/item/storage/toolbox, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) +"qLN" = ( +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"qMi" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"qMs" = ( +/obj/item/stack/cable_coil/green, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"qMI" = ( +/turf/open/floor/prison/damaged3, +/area/fiorina/station/security) +"qNj" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"qNu" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/clothing/accessory/storage/holster, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"qNv" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"qNy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 + }, +/obj/item/reagent_container/food/snacks/cheesyfries, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"qNF" = ( +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec) +"qOk" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/fiorina/oob) +"qOq" = ( +/obj/structure/grille, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"qOu" = ( +/turf/open/floor/prison/damaged3, +/area/fiorina/station/disco) +"qON" = ( +/obj/item/stack/cable_coil/cyan, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"qOW" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"qPa" = ( +/obj/item/device/motiondetector, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"qPb" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"qPr" = ( +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/maintenance) +"qPL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/powercell, +/obj/item/storage/syringe_case/burn{ + pixel_x = -10; + pixel_y = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"qQa" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/station/central_ring) +"qQb" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/flight_deck) +"qQd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 10 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"qQj" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"qQl" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/telecomm/lz1_tram) +"qQt" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"qQy" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/power_ring) +"qQA" = ( +/obj/item/reagent_container/food/drinks/bottle/holywater{ + desc = "A flask of the holy HEFA grenade oil."; + name = "Flask of HEFA Oil" + }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"qQM" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"qRa" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"qRf" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"qRg" = ( +/obj/structure/sign/prop3{ + desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/tumor/servers) +"qRi" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + density = 0; + dir = 4; + icon_state = "door_open"; + opacity = 0 + }, +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"qRK" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/fiorina/station/central_ring) +"qRS" = ( +/obj/item/trash/candy, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"qRW" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"qSm" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"qSy" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_y = 17 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"qSz" = ( +/obj/structure/closet/wardrobe/orange, +/obj/item/clothing/gloves/boxing/yellow, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"qSA" = ( +/obj/item/trash/candy, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"qTe" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"qTt" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"qTx" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"qTQ" = ( +/obj/structure/platform_decoration, +/obj/item/reagent_container/food/drinks/sillycup, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"qTW" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/power_ring) +"qUo" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000; + layer = 2.9; + pixel_y = 17 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"qUw" = ( +/obj/item/device/multitool, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"qUC" = ( +/obj/item/ammo_casing{ + dir = 2; + icon_state = "casing_5" + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"qVW" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/park) +"qXj" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"qXM" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"qYZ" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"qZc" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"qZv" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/central_ring) +"raC" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"raL" = ( +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"raP" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"rbp" = ( +/obj/structure/closet/crate/medical, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"rbv" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"rbI" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/lz/near_lzI) +"rbK" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"rbW" = ( +/obj/structure/cargo_container/grant/right{ + health = 5000; + unacidable = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"rbZ" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"rcc" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"rce" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_y = 11 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"rcg" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"rcl" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"rcE" = ( +/obj/structure/inflatable/popped/door, +/obj/item/stack/barbed_wire, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) +"rcI" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/prison/whitegreencorner/east, +/area/fiorina/station/medbay) +"rdi" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"rdo" = ( +/turf/open/floor/prison/greenbluecorner/north, +/area/fiorina/station/botany) +"rdt" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"red" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"rez" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/disco) +"reZ" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"rfd" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, +/turf/closed/wall/prison, +/area/fiorina/tumor/ice_lab) +"rfe" = ( +/obj/structure/surface/rack, +/obj/item/tool/mop, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"rft" = ( +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"rfQ" = ( +/obj/effect/spawner/random/tech_supply, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"rgc" = ( +/obj/item/device/binoculars/civ, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"rgg" = ( +/obj/item/tool/candle{ + pixel_x = -2 + }, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"rhf" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/research_cells) +"rhh" = ( +/obj/structure/monorail{ + dir = 4; + name = "launch track" + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"rhH" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"rie" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"riP" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"rja" = ( +/turf/closed/wall/prison, +/area/fiorina/station/civres_blue) +"rjy" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"rjP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"rki" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"rko" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"rkp" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) +"rkv" = ( +/turf/open/floor/prison/greencorner/west, +/area/fiorina/station/chapel) +"rkF" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/telecomm/lz1_cargo) +"rkH" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space, +/area/fiorina/oob) +"rkR" = ( +/obj/item/clothing/glasses/science, +/turf/open/space, +/area/fiorina/oob) +"rle" = ( +/obj/item/stack/cable_coil/green, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"rlP" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"rmh" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/trash, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"rmu" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"rmJ" = ( +/obj/structure/platform, +/obj/item/fuel_cell, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"rmX" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"rmZ" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/structure/largecrate/random, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"rna" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"rnl" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"rnn" = ( +/obj/structure/largecrate/supply/explosives/mortar_flare, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"rnE" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"rnM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/crayons, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"roi" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"rot" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" + }, +/turf/open/floor/prison/darkpurple2/southeast, +/area/fiorina/tumor/ice_lab) +"roE" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"roF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"roH" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/oob) +"roQ" = ( +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"rpf" = ( +/obj/structure/grille, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"rpt" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"rpL" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"rpT" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" + }, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"rqh" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"rqq" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"rqA" = ( +/turf/open/floor/prison/blue/west, +/area/fiorina/tumor/servers) +"rqC" = ( +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"rqG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"rqY" = ( +/obj/structure/filingcabinet/disk, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"rrs" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/lz/near_lzI) +"rru" = ( +/obj/effect/spawner/random/goggles/midchance, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"rrD" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"rsg" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison, +/area/fiorina/station/park) +"rsp" = ( +/obj/item/toy/crayon/purple, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"rsH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"rsQ" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"rsR" = ( +/turf/open/floor/prison/blue/northeast, +/area/fiorina/station/power_ring) +"rsU" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"rtc" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"rtw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + layer = 2.8 + }, +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"rty" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/blue/northeast, +/area/fiorina/station/civres_blue) +"rtP" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"rur" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"ruu" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"ruD" = ( +/turf/open/floor/wood, +/area/fiorina/oob) +"ruJ" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 2; + layer = 6; + name = "overhead pipe"; + pixel_x = -16; + pixel_y = 12 + }, +/turf/closed/wall/prison, +/area/fiorina/tumor/servers) +"rwj" = ( +/obj/structure/barricade/plasteel, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"rwm" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"rwu" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = -6; + pixel_y = -7 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"rwK" = ( +/obj/item/clothing/under/color/orange, +/obj/item/clothing/under/color/orange, +/obj/item/clothing/under/color/orange, +/obj/structure/surface/rack, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) +"rwQ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/greenblue/west, +/area/fiorina/station/botany) +"rxg" = ( +/turf/open/floor/prison/redcorner, +/area/fiorina/station/security) +"rxr" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/fiorina/oob) +"rxL" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"rxM" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"ryJ" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"rzp" = ( +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) +"rzt" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"rzF" = ( +/obj/structure/holohoop{ + pixel_y = 25 + }, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"rAm" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"rAw" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"rAK" = ( +/obj/structure/barricade/metal{ + dir = 4; + health = 85; + icon_state = "metal_1" + }, +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"rAU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"rAY" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/fiorina/station/security) +"rBr" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"rBs" = ( +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) +"rBu" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"rBz" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"rBF" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/flight_deck) +"rCe" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) +"rCq" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"rCt" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/wood, +/area/fiorina/station/lowsec) +"rDu" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"rFu" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"rFw" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"rFF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"rGc" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"rGe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"rGf" = ( +/turf/open/auto_turf/sand/layer1, +/area/fiorina/station/disco) +"rGq" = ( +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"rGt" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/telecomm/lz1_tram) +"rGK" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"rHf" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"rHh" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floorscorched1, +/area/fiorina/station/chapel) +"rHr" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"rHu" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"rHV" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"rHX" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"rIr" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"rIy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"rIE" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"rIS" = ( +/obj/structure/sign/poster{ + icon_state = "poster6" + }, +/turf/closed/wall/prison, +/area/fiorina/station/medbay) +"rJc" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"rJh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"rJu" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"rJF" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"rJO" = ( +/turf/open/floor/carpet, +/area/fiorina/station/security/wardens) +"rJW" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"rJZ" = ( +/obj/item/stack/cable_coil/green, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"rKa" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"rKd" = ( +/obj/item/stool, +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_y = 32 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"rKm" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"rKs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"rKy" = ( +/turf/open/floor/prison/greenblue/north, +/area/fiorina/station/botany) +"rKA" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/blue, +/area/fiorina/station/civres_blue) +"rKG" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) +"rLA" = ( +/obj/structure/platform, +/turf/open/floor/prison, +/area/fiorina/station/botany) +"rLG" = ( +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"rLJ" = ( +/obj/item/clothing/gloves/boxing, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"rMo" = ( +/obj/effect/landmark/objective_landmark/far, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) +"rMq" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"rMw" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"rMT" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"rMY" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"rNc" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; + icon_state = "fullgrass_1"; + name = "Fiberbush(tm) tubers" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"rNK" = ( +/obj/effect/spawner/random/gun/pistol/lowchance, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"rNV" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"rOu" = ( +/obj/structure/closet, +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"rOI" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; + icon_state = "fullgrass_3"; + name = "Fiberbush(tm) tubers" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"rOL" = ( +/obj/structure/machinery/floodlight{ + name = "Yard Floodlight" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"rPd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal/medium_stack, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"rPf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"rPD" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"rPI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = -8 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + anchored = 1 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + layer = 4.1; + pixel_x = 4; + pixel_y = 18 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + layer = 4.1; + pixel_x = -4; + pixel_y = 18 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + layer = 4.2; + pixel_y = 36 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"rPS" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"rPW" = ( +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"rPZ" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"rQd" = ( +/obj/structure/closet, +/obj/item/stack/cable_coil, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"rQu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/cable_coil/orange, +/turf/open/floor/prison/floor_plate, +/area/fiorina/maintenance) +"rQB" = ( +/turf/open/floor/prison/sterile_white/west, +/area/fiorina/station/lowsec) +"rQK" = ( +/obj/item/bananapeel{ + name = "tactical banana peel" + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) +"rQN" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/station/power_ring) +"rRg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"rRo" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_tram) +"rRz" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/blue/north, +/area/fiorina/station/civres_blue) +"rSr" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"rSN" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/autolathe/full{ + layer = 2.98 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"rSU" = ( +/obj/structure/barricade/sandbags{ + dir = 4; + icon_state = "sandbag_0"; + pixel_y = 2 + }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"rTd" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"rTD" = ( +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"rTH" = ( +/obj/structure/sign/prop1{ + layer = 2.5; + name = "\improper USCM Emblem" + }, +/turf/open/floor/carpet, +/area/fiorina/station/security/wardens) +"rTV" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibup1" + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"rTZ" = ( +/turf/open/floor/prison/whitepurplecorner/north, +/area/fiorina/station/research_cells) +"rUf" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/tumor/servers) +"rUA" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"rUQ" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_y = 21 + }, +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_x = 17; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"rVi" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/station/flight_deck) +"rVp" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/maintenance) +"rVM" = ( +/obj/structure/closet/crate/miningcar, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000; + layer = 2.9; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"rVQ" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"rVV" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"rWt" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"rWQ" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 2; + layer = 6; + name = "overhead pipe"; + pixel_x = -16; + pixel_y = 12 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"rXt" = ( +/obj/structure/surface/rack, +/obj/item/device/camera, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"rYw" = ( +/obj/item/trash/liquidfood, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"rYy" = ( +/obj/item/stool{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/structure/sign/poster{ + icon_state = "poster1"; + pixel_y = 32 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"rYK" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"rYY" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/filtration/console{ + can_block_movement = 0; + pixel_y = 22 + }, +/obj/item/trash/used_stasis_bag, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"rZe" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security/wardens) +"rZi" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_rightengine" + }, +/area/fiorina/station/power_ring) +"rZI" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"rZM" = ( +/obj/item/circuitboard/exosuit/peripherals/max/targeting, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"rZN" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/station/flight_deck) +"rZO" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"rZP" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/tumor/aux_engi) +"saL" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 11; + pixel_y = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"sbf" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/gm/river/darkred_pool, +/area/fiorina/station/park) +"sbF" = ( +/turf/open/floor/prison/red/east, +/area/fiorina/station/security) +"sbL" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"sbU" = ( +/obj/item/trash/pistachios, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"sbW" = ( +/turf/open/floor/prison/greenbluecorner/east, +/area/fiorina/station/botany) +"scp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"scG" = ( +/obj/item/reagent_container/food/drinks/sillycup, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"scH" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"scM" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/telecomm/lz1_tram) +"scS" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"scZ" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"sda" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"sdr" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"sdE" = ( +/obj/item/storage/wallet/random, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"sdK" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp{ + layer = 3.5; + pixel_x = 8; + pixel_y = 10 + }, +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"sdR" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"sdV" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"sdY" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) +"seh" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"set" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"seF" = ( +/obj/structure/monorail{ + dir = 6; + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"seW" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_r_w" + }, +/area/fiorina/tumor/ship) +"sfe" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"sfi" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"sfn" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "delivery_outlet"; + layer = 6; + name = "overhead ducting"; + pixel_y = 33 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"sfs" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"sfu" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) +"sfI" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"sfW" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"sfZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/baton, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -6; + pixel_y = 12 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"sga" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"sgt" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"sgw" = ( +/obj/structure/window_frame/prison, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"sgJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/gun/flaregun/full, +/obj/item/storage/belt/gun/flaregun/full, +/obj/item/storage/belt/gun/flaregun/full, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"sha" = ( +/obj/item/storage/bible/hefa{ + pixel_y = 3 + }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"shh" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"shH" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"sia" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"sig" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"siy" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"siB" = ( +/obj/item/poster, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"siE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"siK" = ( +/obj/structure/prop/resin_prop{ + dir = 1; + icon_state = "chair"; + pixel_y = 6 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"siW" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"sjd" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"sjJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"sjM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/goggles/lowchance, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"sjR" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"sjT" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 2; + layer = 6; + name = "overhead pipe"; + pixel_x = -16; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"sjX" = ( +/obj/item/reagent_container/blood, +/turf/open/floor/prison/greenbluecorner/east, +/area/fiorina/station/botany) +"sjZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"skj" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"skG" = ( +/turf/open/floor/prison/blue/southwest, +/area/fiorina/tumor/servers) +"slc" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"slh" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"sli" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"sls" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"slR" = ( +/obj/effect/decal/cleanable/blood{ + desc = "Watch your step."; + icon_state = "gib6" + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"slT" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"smj" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"sms" = ( +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/civres_blue) +"smv" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"smR" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"snr" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/stool, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"snW" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"soj" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"sov" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/area/fiorina/lz/near_lzI) +"soN" = ( +/obj/structure/closet/cabinet, +/obj/effect/spawner/random/gun/special/lowchance, +/obj/item/clothing/suit/armor/det_suit, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"spb" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"spl" = ( +/obj/item/stack/sheet/metal, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"spm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + pixel_y = 9 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/security) +"spA" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"spH" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "delivery_outlet"; + layer = 6; + name = "overhead ducting"; + pixel_y = 33 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"spR" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"sqx" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"sqC" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/lowsec) +"sqR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/supply_kit, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"srp" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"srt" = ( +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"srI" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"srQ" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"ssb" = ( +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"ssc" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ywflowers_2" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"sso" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/bag/plants, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"ssC" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"ssJ" = ( +/obj/structure/lattice, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/space, +/area/fiorina/oob) +"ssM" = ( +/obj/structure/janitorialcart, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"ssO" = ( +/obj/item/ashtray/glass, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"ssR" = ( +/obj/item/clothing/under/shorts/black, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"sta" = ( +/obj/structure/machinery/door/airlock/almayer/marine{ + icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"stf" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"stw" = ( +/obj/structure/machinery/line_nexter, +/turf/open/floor/prison/red/west, +/area/fiorina/station/security) +"stC" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"stP" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"stU" = ( +/obj/structure/sign/poster{ + icon_state = "poster7"; + pixel_x = -26; + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"sue" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/tracker, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"suq" = ( +/obj/item/stool, +/turf/open/floor/prison/damaged2/southwest, +/area/fiorina/station/lowsec) +"suX" = ( +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"suY" = ( +/obj/item/device/cassette_tape/nam, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"svc" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"sve" = ( +/obj/item/explosive/grenade/phosphorus, +/obj/item/explosive/grenade/phosphorus, +/obj/item/explosive/grenade/phosphorus, +/obj/structure/surface/rack, +/obj/item/explosive/grenade/phosphorus, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"svh" = ( +/obj/structure/machinery/computer/telecomms/monitor, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"svN" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"svP" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"svW" = ( +/obj/structure/surface/rack, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"swg" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/space, +/area/fiorina/oob) +"swj" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"swJ" = ( +/obj/item/tool/shovel/snow, +/obj/item/device/flashlight, +/obj/structure/surface/rack, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"swT" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"sxc" = ( +/obj/item/weapon/gun/rifle/mar40, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"sxk" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"sxE" = ( +/turf/open/floor/prison/redcorner, +/area/fiorina/station/power_ring) +"sxH" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"syj" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"syG" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"syU" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/obj/item/ammo_casing{ + dir = 8; + icon_state = "casing_6" + }, +/obj/effect/spawner/random/gun/smg/midchance, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"syV" = ( +/obj/structure/sign/safety/fridge, +/turf/closed/wall/prison, +/area/fiorina/station/power_ring) +"sze" = ( +/turf/open/floor/prison/greencorner/north, +/area/fiorina/tumor/civres) +"szs" = ( +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" + }, +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/chapel) +"szD" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"szK" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/wood, +/area/fiorina/station/park) +"szP" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"sAp" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"sAF" = ( +/obj/item/inflatable, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"sBf" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"sBj" = ( +/obj/structure/barricade/metal{ + health = 85; + icon_state = "metal_1" + }, +/turf/open/floor/prison, +/area/fiorina/station/park) +"sBA" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"sBM" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitegreencorner/east, +/area/fiorina/station/medbay) +"sBO" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"sBW" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"sBY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/goggles/lowchance, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"sCe" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"sCH" = ( +/obj/item/frame/rack, +/obj/item/clothing/under/marine/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"sDn" = ( +/obj/structure/inflatable/popped/door, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"sDL" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"sDR" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 1; + icon_state = "human2" + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"sDS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"sEO" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/lz/near_lzII) +"sFd" = ( +/turf/open/floor/prison/greenblue/northeast, +/area/fiorina/station/botany) +"sFo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"sFr" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"sFH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/tool/stamp, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec) +"sFY" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"sGa" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"sGg" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"sGk" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/obj/item/newspaper, +/obj/item/bedsheet/green, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"sGx" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"sGC" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"sGI" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/wood, +/area/fiorina/station/park) +"sGX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/mre_pack/meal4{ + name = "\improper prison food"; + pixel_y = 9 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"sHe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stock_parts/subspace/amplifier{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/stock_parts/subspace/analyzer{ + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"sHj" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"sHL" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"sHM" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryocell2deval" + }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"sHO" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/space, +/area/fiorina/oob) +"sIg" = ( +/obj/item/device/pinpointer, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"sIh" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"sIj" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/flight_deck) +"sIk" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"sIs" = ( +/obj/item/weapon/gun/smg/nailgun, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"sIz" = ( +/obj/structure/machinery/computer/emails{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"sIC" = ( +/turf/open/floor/prison, +/area/fiorina/tumor/civres) +"sII" = ( +/obj/structure/bookcase{ + icon_state = "book-5"; + name = "\improper Mentor's Guide Bookcase" + }, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"sIJ" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison, +/area/fiorina/lz/near_lzI) +"sJu" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"sJy" = ( +/obj/item/ammo_casing{ + icon_state = "casing_9_1" + }, +/turf/open/floor/prison/yellowcorner/west, +/area/fiorina/station/lowsec) +"sJB" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/prison, +/area/fiorina/station/security) +"sJN" = ( +/obj/structure/sign/prop3{ + desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/lz/near_lzI) +"sJP" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"sKr" = ( +/obj/item/storage/secure/briefcase{ + pixel_x = 9; + pixel_y = 18 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"sKt" = ( +/obj/structure/bed/chair{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"sKu" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"sKY" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"sLu" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) +"sLx" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 12 + }, +/turf/closed/wall/r_wall/prison, +/area/fiorina/tumor/civres) +"sMe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/security_space_law{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"sMX" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"sMY" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"sNb" = ( +/obj/item/device/radio, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"sNg" = ( +/obj/structure/closet/firecloset/full, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"sNi" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"sNj" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"sNN" = ( +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"sNQ" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_tram) +"sNU" = ( +/turf/open/floor/prison/red/north, +/area/fiorina/station/security) +"sOf" = ( +/obj/item/clothing/mask/cigarette/weed{ + icon_state = "ucigoff" + }, +/obj/item/clothing/mask/cigarette/weed{ + icon_state = "ucigoff"; + pixel_y = 4 + }, +/obj/item/clothing/mask/cigarette/weed{ + icon_state = "ucigoff"; + pixel_y = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"sOj" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"sOs" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/almayer/plating/northeast, +/area/fiorina/tumor/ship) +"sOM" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"sPh" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"sPi" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"sPt" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/shiva, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"sPJ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"sQr" = ( +/obj/structure/janitorialcart, +/obj/item/clothing/head/bio_hood/janitor{ + pixel_x = -4; + pixel_y = 5 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"sQy" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"sQz" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"sQC" = ( +/obj/structure/surface/rack, +/obj/item/restraint/handcuffs, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"sQL" = ( +/obj/structure/platform, +/turf/open/gm/river/red_pool, +/area/fiorina/station/park) +"sRv" = ( +/obj/item/clothing/shoes/marine/upp/knife, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"sRE" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"sRJ" = ( +/obj/structure/machinery/constructable_frame, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/damaged2/southwest, +/area/fiorina/station/lowsec) +"sSM" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"sSY" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 2; + layer = 6; + name = "overhead pipe"; + pixel_x = -16; + pixel_y = 12 + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/tumor/servers) +"sTd" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"sTm" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"sTu" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/space, +/area/fiorina/station/medbay) +"sTw" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"sTI" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"sTK" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"sTU" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"sUc" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"sUe" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"sUl" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"sUr" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/bible/hefa, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) +"sUt" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison, +/area/fiorina/station/park) +"sUV" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/fiorina/tumor/aux_engi) +"sUX" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"sUY" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) +"sVd" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/botany) +"sVv" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/space, +/area/fiorina/oob) +"sVS" = ( +/obj/item/trash/pistachios, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"sVT" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"sVU" = ( +/obj/structure/largecrate/machine, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 6 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"sVW" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"sVZ" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"sWb" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"sWe" = ( +/turf/open/floor/prison/blue/east, +/area/fiorina/station/civres_blue) +"sWl" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"sWr" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"sWw" = ( +/obj/item/storage/bag/trash, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"sWX" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/research_cells) +"sXa" = ( +/obj/structure/machinery/filtration/console, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"sXe" = ( +/turf/open/floor/prison, +/area/fiorina/station/research_cells) +"sXi" = ( +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"sXt" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"sXP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/hardpoint/support/flare_launcher{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"sYn" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"sYy" = ( +/obj/item/ammo_casing{ + icon_state = "casing_1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"sYB" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/station/telecomm/lz1_tram) +"sYP" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"sZt" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"sZZ" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"tad" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"tai" = ( +/obj/structure/bed/chair, +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"taj" = ( +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"tan" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/oob) +"tas" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"taI" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"taL" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"taS" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/blue/northeast, +/area/fiorina/station/power_ring) +"taY" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/space/basic, +/area/fiorina/lz/near_lzI) +"tbd" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ship) +"tbj" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"tbm" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"tbG" = ( +/obj/structure/bed{ + icon_state = "psychbed" + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/servers) +"tco" = ( +/obj/item/paper/crumpled/bloody/csheet, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"tcB" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"tcD" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib2" + }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"tcL" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/chapel) +"tcW" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"tde" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"tdq" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"tdr" = ( +/obj/structure/prop/resin_prop{ + dir = 4; + icon_state = "chair"; + pixel_y = 6 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"tel" = ( +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/station/medbay) +"teq" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"tet" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/corsat/plate, +/area/fiorina/station/telecomm/lz1_cargo) +"teu" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"teI" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"teK" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"tfl" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"tfw" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"tfx" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"tfP" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/tumor/fiberbush) +"tfX" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"tge" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"tgB" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"tgK" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"tgL" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"thz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/lockbox/vials{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"thI" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"thV" = ( +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/power_ring) +"tii" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"til" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/stool, +/obj/item/clothing/shoes/slippers_worn, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"tir" = ( +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/prison, +/area/fiorina/station/security) +"tis" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/type_b, +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"tiM" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"tiX" = ( +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"tiY" = ( +/turf/open/floor/prison/floorscorched2, +/area/fiorina/tumor/civres) +"tiZ" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"tja" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"tji" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + layer = 2.5 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"tjp" = ( +/obj/item/tool/warning_cone, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"tjw" = ( +/obj/structure/platform_decoration, +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"tjR" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"tkd" = ( +/obj/structure/filingcabinet, +/obj/structure/filingcabinet{ + pixel_x = 16 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"tkg" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"tkj" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"tkP" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) +"tkZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"tle" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"tlj" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/power_ring) +"tlq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp{ + pixel_x = 7; + pixel_y = 15 + }, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/tool/pen/blue{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/fiorina/tumor/ship) +"tlC" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"tlF" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/flight_deck) +"tlJ" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"tlQ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"tlV" = ( +/obj/structure/machinery/space_heater, +/obj/item/device/flashlight/lamp{ + pixel_y = 11 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"tmo" = ( +/obj/structure/stairs/perspective, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"tmx" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"tmF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"tmI" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) +"tmL" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"tmX" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison, +/area/fiorina/station/park) +"tna" = ( +/obj/structure/bed/sofa/pews{ + dir = 4 + }, +/obj/structure/bed/sofa/pews{ + dir = 1; + pixel_y = 22 + }, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"tnw" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) +"tnY" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"tob" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "Residential Apartment" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"toE" = ( +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"tpa" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"tpf" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" + }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/maintenance) +"tpt" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/obj/effect/spawner/random/goggles, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/chapel_carpet, +/area/fiorina/station/chapel) +"tpw" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/obj/structure/largecrate/random/case, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"tpz" = ( +/obj/item/paper/carbon, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"tpE" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"tpF" = ( +/turf/open/floor/prison/green/east, +/area/fiorina/tumor/aux_engi) +"tpY" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"tpZ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"tql" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"tqw" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"tqx" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/obj/item/storage/toolbox, +/obj/item/storage/toolbox, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) +"tqP" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/fiorina/oob) +"trl" = ( +/obj/item/trash/buritto, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"trJ" = ( +/turf/open/floor/prison/darkpurple2, +/area/fiorina/station/central_ring) +"trN" = ( +/obj/item/stack/barbed_wire, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"trR" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/item/storage/fancy/cigarettes/blackpack, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"trS" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"tsc" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + indestructible = 1; + name = "launch bay door" + }, +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"tsf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box{ + pixel_y = 9 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"tsr" = ( +/obj/structure/pipes/unary/freezer{ + icon_state = "freezer_1" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"tss" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"tst" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/oob) +"tsA" = ( +/obj/structure/barricade/metal{ + dir = 8; + health = 150; + icon_state = "metal_2" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/ice_lab) +"tsH" = ( +/obj/structure/tunnel, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"tsN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"tuf" = ( +/obj/item/clothing/shoes/jackboots{ + name = "Awesome Guy" + }, +/obj/item/clothing/glasses/sunglasses{ + name = "Boots Mc" + }, +/turf/open/space, +/area/fiorina/oob) +"tuk" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4-8" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"tuA" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/telecomm/lz1_tram) +"tuX" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"tvi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"twb" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/maintenance) +"twR" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"txb" = ( +/obj/structure/window/framed/prison/reinforced{ + opacity = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"txf" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"txh" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/prison, +/area/fiorina/station/security) +"txY" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"tyj" = ( +/turf/open/floor/prison/blue/east, +/area/fiorina/station/chapel) +"tyt" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "cartridge_2" + }, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"tyC" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"tyJ" = ( +/obj/item/reagent_container/food/snacks/xenoburger, +/obj/item/reagent_container/food/snacks/xenoburger, +/obj/item/reagent_container/food/snacks/xenoburger, +/obj/structure/closet/crate/freezer, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"tzy" = ( +/obj/item/ammo_magazine/smg/mp5, +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"tzM" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"tzN" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"tzU" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"tzW" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/tumor/aux_engi) +"tAb" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/general_belt{ + pixel_y = 7 + }, +/obj/item/storage/backpack/general_belt, +/turf/open/floor/almayer, +/area/fiorina/tumor/ship) +"tAj" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/medbay) +"tAE" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"tAR" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/tool/crowbar, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"tBP" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/interior/plastic, +/area/fiorina/station/research_cells) +"tCv" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"tCH" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"tCZ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/fiorina/oob) +"tDB" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp{ + layer = 3.5; + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/tomatosoup, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"tDC" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"tDE" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"tDQ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"tEA" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"tEH" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"tER" = ( +/obj/item/phone{ + pixel_x = 9; + pixel_y = -10 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"tEX" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"tEY" = ( +/obj/structure/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"tFo" = ( +/obj/structure/reagent_dispensers/watertank{ + layer = 2.6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"tFA" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"tFY" = ( +/obj/structure/platform, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) +"tGU" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/pill_bottle/tramadol/skillless, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"tGY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 12 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security/wardens) +"tHl" = ( +/obj/structure/inflatable, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"tHw" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) +"tHF" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"tHJ" = ( +/obj/structure/closet/firecloset, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrown2/northwest, +/area/fiorina/maintenance) +"tHL" = ( +/obj/structure/blocker/invisible_wall, +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/area/fiorina/station/medbay) +"tIf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"tIn" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"tIp" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/space/basic, +/area/fiorina/oob) +"tIC" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations are the leading cause in asbestos related deaths for 3 years in a row."; + icon_state = "fullgrass_1"; + name = "Fiberbush(tm) tubers" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"tIU" = ( +/obj/item/tool/candle, +/turf/open/floor/prison/chapel_carpet, +/area/fiorina/maintenance) +"tIW" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/lz/near_lzI) +"tJw" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) +"tJC" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"tJH" = ( +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"tJQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette/cigar/tarbacks, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"tJR" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 7 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"tJU" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"tKk" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"tKv" = ( +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"tKN" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" + }, +/turf/open/floor/prison/green/east, +/area/fiorina/tumor/civres) +"tLk" = ( +/obj/item/paper/crumpled, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"tLC" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"tMb" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"tMs" = ( +/obj/item/weapon/gun/smg/mp5, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"tMS" = ( +/obj/effect/alien/weeds/node, +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"tMU" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"tMV" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"tNf" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"tNF" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/smg/mp5, +/obj/item/storage/belt/marine, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"tNV" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"tOc" = ( +/turf/open/floor/wood, +/area/fiorina/station/disco) +"tOp" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"tOG" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/pill_bottle/kelotane/skillless, +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"tOM" = ( +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"tOP" = ( +/obj/structure/platform, +/obj/structure/closet/radiation, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"tOS" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/obj/item/reagent_container/food/snacks/grown/eggplant{ + desc = "Eggplant. Or, wait..."; + layer = 2 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"tPz" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"tPA" = ( +/obj/structure/largecrate/supply/medicine/iv, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"tPB" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"tPC" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/fiorina/station/flight_deck) +"tPN" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"tQk" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"tQm" = ( +/obj/item/trash/boonie, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"tQB" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"tRH" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/botany) +"tSl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"tSm" = ( +/turf/open/floor/prison/greenblue/west, +/area/fiorina/station/botany) +"tSL" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"tSY" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"tTm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stool{ + pixel_y = 12 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"tTv" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"tTA" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"tTB" = ( +/obj/item/clothing/gloves/boxing/green, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/central_ring) +"tTI" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"tUs" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"tUC" = ( +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) +"tUD" = ( +/obj/structure/closet, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"tUG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical/green, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"tUS" = ( +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"tVI" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"tVV" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"tVY" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"tWf" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"tWh" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"tWs" = ( +/obj/item/toy/deck, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"tWz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"tWI" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/space, +/area/fiorina/oob) +"tXt" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"tXD" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"tXT" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"tYd" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"tYg" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) +"tYt" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"tYw" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/tumor/civres) +"tYD" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/power_ring) +"tYQ" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"tYU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"tZe" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"tZk" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/aux_engi) +"tZz" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) +"tZO" = ( +/obj/item/frame/rack, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"tZW" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"uap" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"uaL" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"uaM" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/fiorina/tumor/aux_engi) +"ubc" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"ubh" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"ubo" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"ubA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) +"ubN" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/fiorina/tumor/aux_engi) +"ubP" = ( +/turf/open/floor/prison, +/area/fiorina/station/security) +"ubQ" = ( +/obj/structure/ice/thin/indestructible{ + dir = 8; + icon_state = "Straight" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells) +"ubX" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/tumor/ice_lab) +"uci" = ( +/obj/effect/spawner/random/tool, +/obj/structure/surface/rack, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"ucj" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan25" + }, +/area/fiorina/station/power_ring) +"ucu" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ucN" = ( +/obj/structure/tunnel, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"ucS" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/telecomm/lz1_tram) +"udj" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"udt" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"udB" = ( +/obj/structure/bed/roller, +/obj/effect/spawner/random/gun/rifle/highchance, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"udE" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"uen" = ( +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"uep" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"ueI" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ueP" = ( +/obj/item/paper/crumpled, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ueX" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ufE" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"ufL" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"ufN" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/panelscorched, +/area/fiorina/tumor/aux_engi) +"ufR" = ( +/turf/open/floor/prison/whitepurplecorner/east, +/area/fiorina/station/research_cells) +"ugg" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"ugk" = ( +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/tumor/aux_engi) +"ugm" = ( +/obj/structure/prop/resin_prop{ + icon_state = "coolanttank" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"ugq" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibdown1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ugv" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/space/basic, +/area/fiorina/oob) +"ugI" = ( +/obj/item/fuel_cell, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"ugP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"ugT" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"uha" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"uhm" = ( +/obj/structure/window_frame/prison/reinforced, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"uhA" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"uhX" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/station/medbay) +"uia" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"uiD" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"uiV" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"ujb" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"ujo" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"ujs" = ( +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"ujz" = ( +/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"ukg" = ( +/obj/item/trash/candle, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) +"ukr" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"uky" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/tumor/ice_lab) +"ulc" = ( +/obj/item/paper, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"ume" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 11; + pixel_y = 14 + }, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/obj/structure/largecrate/random/mini/chest/c, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"umg" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/blue, +/area/fiorina/station/civres_blue) +"umm" = ( +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/central_ring) +"umy" = ( +/obj/structure/prop/resin_prop{ + dir = 4; + icon_state = "chair"; + pixel_y = 6 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"umz" = ( +/obj/item/trash/kepler, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"umI" = ( +/obj/item/clothing/gloves/boxing/blue, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/central_ring) +"umW" = ( +/obj/structure/bed/sofa/pews, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"umZ" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"uno" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"unp" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"unu" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"unz" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/box/flashbangs, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"unA" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/station/civres_blue) +"unF" = ( +/obj/item/tool/wirecutters, +/obj/structure/platform/shiva{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"uou" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 + }, +/obj/item/storage/toolbox/syndicate, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"uoH" = ( +/obj/structure/barricade/sandbags{ + dir = 4; + icon_state = "sandbag_0"; + pixel_y = 2 + }, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"upf" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/maintenance) +"upr" = ( +/obj/structure/platform, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"upw" = ( +/turf/open/floor/prison/red/west, +/area/fiorina/lz/near_lzII) +"upK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/prison/redcorner/east, +/area/fiorina/station/power_ring) +"upM" = ( +/obj/structure/disposalpipe/broken, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"upX" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/prison, +/area/fiorina/station/security/wardens) +"upY" = ( +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"uqd" = ( +/obj/item/pamphlet/skill/powerloader, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"uqj" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/fiorina/station/park) +"uqV" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"urv" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"urJ" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/almayer_hull, +/area/fiorina/oob) +"usg" = ( +/obj/effect/spawner/random/attachment, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"uts" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"utw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"utL" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"utW" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"uud" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"uuk" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"uuG" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"uuJ" = ( +/obj/structure/holohoop{ + dir = 8; + id = "basketball"; + side = "right" + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"uuL" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"uvc" = ( +/obj/item/prop/helmetgarb/gunoil, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"uvn" = ( +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) +"uvu" = ( +/turf/open/floor/prison/redcorner/north, +/area/fiorina/station/power_ring) +"uvF" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/maintenance) +"uvS" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/oob) +"uvV" = ( +/obj/structure/coatrack, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"uvZ" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"uwb" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"uwk" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"uws" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"uwT" = ( +/obj/structure/sign/poster{ + icon_state = "poster10"; + pixel_x = 32 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"uxd" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"uxv" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"uxN" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/gm/river/red_pool, +/area/fiorina/station/park) +"uye" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/fiorina/station/security) +"uyp" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"uyw" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"uyC" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"uyM" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"uyN" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"uza" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibup1" + }, +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"uzi" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"uzw" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"uzy" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"uzG" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) +"uAg" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/fiorina/tumor/ice_lab) +"uAX" = ( +/obj/effect/decal/hefa_cult_decals/d32, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"uBq" = ( +/obj/item/stack/rods, +/obj/structure/disposalpipe/broken, +/obj/structure/disposalpipe/broken{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"uBV" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"uCO" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"uCX" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"uDX" = ( +/obj/structure/prop/structure_lattice{ + health = 300 + }, +/obj/structure/prop/structure_lattice{ + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"uEh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/guestpass{ + dir = 4; + reason = "Visitor" + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"uEj" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"uEy" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/tumor/servers) +"uEM" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" + }, +/turf/open/floor/prison/green/north, +/area/fiorina/station/chapel) +"uEY" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"uFd" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"uFg" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "birthday" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"uFs" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_tram) +"uFC" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"uGu" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "3" + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"uGI" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"uGL" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"uGT" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"uGY" = ( +/turf/closed/wall/prison, +/area/fiorina/station/security) +"uHl" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"uIg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"uIB" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"uIL" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/obj/structure/bed/chair{ + dir = 1; + layer = 2.8 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"uIS" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"uJg" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 19 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"uJi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"uJp" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) +"uJG" = ( +/obj/item/ammo_casing{ + icon_state = "casing_10_1" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"uJQ" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) +"uJR" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ppflowers_2" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"uKb" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"uKx" = ( +/turf/closed/shuttle/ert, +/area/fiorina/lz/near_lzI) +"uKE" = ( +/obj/item/clipboard, +/turf/open/floor/prison, +/area/fiorina/station/park) +"uKK" = ( +/obj/structure/bed/roller, +/obj/item/bedsheet/green, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"uKX" = ( +/turf/open/floor/prison/redfull, +/area/fiorina/station/security/wardens) +"uLf" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"uLj" = ( +/obj/effect/decal/cleanable/blood/gibs/robot/limb, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"uLq" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/telecomm/lz1_tram) +"uLr" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"uLJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"uLM" = ( +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) +"uLV" = ( +/obj/item/bedsheet, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"uMc" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison, +/area/fiorina/station/security) +"uMm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"uMq" = ( +/obj/structure/machinery/light/small{ + dir = 4; + pixel_x = 11; + pixel_y = 10 + }, +/obj/structure/surface/rack, +/turf/open/floor/plating/plating_catwalk, +/area/fiorina/tumor/ship) +"uMw" = ( +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"uMN" = ( +/obj/item/trash/semki, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"uMT" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/medbay) +"uMZ" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 20 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"uNm" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/random/gun/rifle/highchance, +/turf/open/floor/prison, +/area/fiorina/station/security) +"uNp" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"uNs" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"uNG" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"uNI" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"uNM" = ( +/turf/closed/wall/prison, +/area/fiorina/tumor/aux_engi) +"uOu" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"uOx" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "bee" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"uOC" = ( +/turf/open/floor/prison/blue/southeast, +/area/fiorina/tumor/servers) +"uOM" = ( +/obj/structure/curtain, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"uOP" = ( +/obj/item/newspaper, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"uPi" = ( +/obj/item/device/binoculars, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"uPl" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"uPA" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/gm/river/desert/deep, +/area/fiorina/lz/near_lzII) +"uPX" = ( +/turf/open/floor/prison/green/northeast, +/area/fiorina/tumor/civres) +"uQk" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"uQE" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"uQJ" = ( +/turf/open/floor/prison/blue/east, +/area/fiorina/tumor/servers) +"uQT" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/tumor/ice_lab) +"uRv" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"uRF" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/fiorina/station/medbay) +"uRI" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/fiorina/maintenance) +"uRT" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"uRZ" = ( +/obj/item/trash/barcardine, +/turf/open/floor/prison, +/area/fiorina/station/security) +"uSA" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/transit_hub) +"uSQ" = ( +/obj/structure/reagent_dispensers/watertank{ + layer = 2.6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/lz/near_lzII) +"uSU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"uSX" = ( +/obj/item/tool/kitchen/utensil/pknife, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"uSY" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/vehicle/powerloader/ft, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"uTb" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"uTr" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"uTs" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"uTt" = ( +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"uTw" = ( +/obj/item/weapon/gun/rifle/mar40, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"uTA" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) +"uTR" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"uVk" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" + }, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) +"uVn" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_1" + }, +/area/fiorina/tumor/ship) +"uVD" = ( +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) +"uVH" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"uVL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"uVO" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"uVX" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4; + pixel_x = -7 + }, +/turf/closed/shuttle/ert{ + icon_state = "wy5" + }, +/area/fiorina/station/medbay) +"uVZ" = ( +/obj/item/trash/candy, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"uWe" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"uWA" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"uWO" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"uWQ" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/gm/river/desert/deep, +/area/fiorina/lz/near_lzII) +"uXn" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; + icon_state = "fullgrass_3"; + name = "Fiberbush(tm) tubers" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"uXw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/skills, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"uXB" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"uXD" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/tumor/ship) +"uXK" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"uXP" = ( +/obj/item/reagent_container/food/drinks/bottle/pwine, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"uXY" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 32 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"uYi" = ( +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"uYo" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/flight_deck) +"uYx" = ( +/obj/structure/prop/resin_prop{ + icon_state = "coolanttank" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"uYS" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"uZt" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"uZu" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) +"uZA" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan2" + }, +/area/fiorina/tumor/ship) +"uZP" = ( +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"uZX" = ( +/obj/structure/curtain, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"uZZ" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"vao" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"vaC" = ( +/obj/structure/closet/bombcloset, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"vbV" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"vcf" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan5" + }, +/area/fiorina/oob) +"vci" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"vcq" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) +"vcu" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"vcv" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"vcC" = ( +/obj/item/stack/rods, +/turf/open/space, +/area/fiorina/oob) +"vcN" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"vdn" = ( +/obj/item/ammo_casing{ + icon_state = "cartridge_2" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"vds" = ( +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) +"vdH" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) +"vdJ" = ( +/obj/effect/spawner/random/gun/smg, +/turf/open/floor/prison/green/west, +/area/fiorina/tumor/civres) +"vdN" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"vdW" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"vel" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"vem" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1" + }, +/area/fiorina/lz/near_lzI) +"vev" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + layer = 3; + opacity = 0 + }, +/area/fiorina/oob) +"veJ" = ( +/obj/item/clothing/head/helmet/marine/specialist/hefa, +/turf/open/floor/prison, +/area/fiorina/station/park) +"veP" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"veR" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) +"veW" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/flight_deck) +"vfz" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/rum{ + pixel_x = 8; + pixel_y = 5 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"vfL" = ( +/obj/item/storage/box/flashbangs, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"vfM" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan27" + }, +/area/fiorina/station/power_ring) +"vfO" = ( +/turf/open/floor/prison/floor_marked/west, +/area/fiorina/station/lowsec) +"vgi" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"vgw" = ( +/obj/item/storage/toolbox/antag, +/turf/open/floor/prison/green/west, +/area/fiorina/tumor/civres) +"vgC" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/lz/near_lzI) +"vgL" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/storage/pill_bottle/alkysine, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"vhd" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) +"vhk" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"vhy" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"vhB" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/park) +"vhI" = ( +/turf/open/gm/river/darkred_pool, +/area/fiorina/station/park) +"viL" = ( +/obj/item/stock_parts/micro_laser/ultra, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"viX" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/fiorina/oob) +"vja" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"vjl" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"vjq" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1" + }, +/area/fiorina/station/power_ring) +"vjG" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"vjR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"vjT" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"vkh" = ( +/obj/structure/closet/cabinet, +/obj/effect/spawner/random/gun/special/midchance, +/obj/item/clothing/suit/armor/det_suit, +/obj/item/attachable/magnetic_harness, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"vki" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/obj/item/bedsheet/green, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"vkt" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"vlK" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"vlN" = ( +/obj/structure/surface/rack, +/obj/item/frame/table/almayer, +/obj/item/frame/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"vlO" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/central_ring) +"vlS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + pixel_y = 9 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"vlU" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"vmj" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "podholder" + }, +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1" + }, +/area/fiorina/station/medbay) +"vmt" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_tram) +"vmL" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"vmT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"vnl" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"vnr" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/telecomm/lz1_cargo) +"vnA" = ( +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"vnG" = ( +/turf/open/floor/prison, +/area/fiorina/maintenance) +"vnM" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/lz/near_lzI) +"voh" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"voi" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"voq" = ( +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"vov" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"voI" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"voK" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"voO" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"voP" = ( +/obj/structure/dropship_equipment/medevac_system, +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/station/power_ring) +"voV" = ( +/obj/item/ammo_casing{ + icon_state = "casing_6_1" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"vpN" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"vql" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"vqs" = ( +/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"vqW" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"vrp" = ( +/obj/structure/ice/thin/indestructible{ + icon_state = "Corner" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells) +"vrA" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"vrF" = ( +/obj/item/toy/crayon/green, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"vrH" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"vrO" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"vrR" = ( +/obj/structure/platform_decoration, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"vrS" = ( +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"vrT" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/chapel_carpet, +/area/fiorina/station/chapel) +"vsr" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"vsL" = ( +/obj/structure/prop/dam/crane, +/turf/open/floor/prison/floor_marked/west, +/area/fiorina/tumor/servers) +"vsM" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"vsT" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"vtc" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"vtk" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_casing/shell{ + icon_state = "shell_9_1" + }, +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" + }, +/turf/open/floor/prison, +/area/fiorina/station/park) +"vtl" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/wood, +/area/fiorina/station/park) +"vtr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/beaker{ + pixel_x = -5; + pixel_y = 15 + }, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 5; + pixel_y = 2 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"vts" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/sand/layer1, +/area/fiorina/tumor/civres) +"vtX" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"vuK" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/prison, +/area/fiorina/station/security) +"vuS" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"vuT" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/fiorina/station/power_ring) +"vuV" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"vuX" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"vvp" = ( +/obj/item/tool/candle{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"vvM" = ( +/obj/structure/prop/structure_lattice{ + dir = 8; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/telecomm/lz1_cargo) +"vvT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + desc = "So uh yeah, about that cat..."; + icon_state = "mwbloodyo"; + pixel_y = 6 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"vwt" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"vwx" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"vwD" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"vwM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"vwN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 + }, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"vwX" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"vxm" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) +"vxs" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_2" + }, +/area/fiorina/tumor/ship) +"vxu" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"vxz" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + indestructible = 1; + name = "launch bay door" + }, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/oob) +"vxI" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"vyu" = ( +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"vyv" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/inflatable/popped, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"vyw" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/station/telecomm/lz1_cargo) +"vyK" = ( +/obj/structure/barricade/sandbags{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"vzh" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"vzn" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"vzp" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"vzB" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + indestructible = 1; + name = "launch bay door" + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"vzT" = ( +/obj/item/frame/toolbox_tiles_sensor, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"vzU" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 + }, +/area/fiorina/tumor/ship) +"vAU" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"vAX" = ( +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) +"vBa" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"vBF" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"vBH" = ( +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"vBP" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"vBX" = ( +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"vBZ" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"vCl" = ( +/obj/item/tool/shovel/spade, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"vCm" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"vCu" = ( +/obj/item/storage/bible/hefa, +/turf/open/floor/prison/green/north, +/area/fiorina/station/chapel) +"vCL" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_x = 2; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"vCQ" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/chapel) +"vDf" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"vDL" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/central_ring) +"vDO" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"vDR" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) +"vEi" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"vEK" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/power_ring) +"vFc" = ( +/obj/item/tool/warning_cone, +/obj/structure/barricade/metal{ + dir = 8; + health = 150; + icon_state = "metal_2" + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"vFi" = ( +/obj/structure/window_frame/prison, +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"vFn" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"vFr" = ( +/obj/structure/prop/structure_lattice{ + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) +"vFs" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security/wardens) +"vFA" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"vFS" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/ice_lab) +"vFV" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"vFY" = ( +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"vGM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 + }, +/obj/item/reagent_container/food/snacks/eat_bar, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"vHo" = ( +/turf/open/floor/prison/blue/northeast, +/area/fiorina/tumor/servers) +"vHD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/cigbutt, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"vHU" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"vHX" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/obj/structure/disposalpipe/segment{ + icon_state = "delivery_outlet"; + layer = 6; + name = "overhead ducting"; + pixel_y = 33 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"vIG" = ( +/turf/open/floor/prison/platingdmg2, +/area/fiorina/station/security) +"vJh" = ( +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"vJn" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/transit_hub) +"vJo" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"vJL" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"vJN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer, +/area/fiorina/tumor/ship) +"vKz" = ( +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"vKP" = ( +/obj/structure/surface/rack, +/obj/item/weapon/sword/katana, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"vLe" = ( +/obj/structure/closet/toolcloset, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/maintenance) +"vLH" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/wood, +/area/fiorina/station/park) +"vLO" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"vLX" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"vMk" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"vMs" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"vMK" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/power_ring) +"vMN" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/northeast, +/area/fiorina/station/park) +"vMT" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"vNd" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/item/toy/beach_ball, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"vNq" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"vNQ" = ( +/obj/item/fuel_cell, +/obj/structure/platform, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"vOm" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/botany) +"vOD" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"vOO" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/green, +/area/fiorina/station/chapel) +"vOP" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 20 + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/tumor/servers) +"vOZ" = ( +/obj/structure/largecrate/supply/supplies/metal, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"vPF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/prize/honk{ + anchored = 1; + layer = 2.9; + pixel_x = -1; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"vPM" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"vPR" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan1" + }, +/area/fiorina/tumor/ship) +"vQi" = ( +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"vQC" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/storage/pill_bottle/kelotane/skillless, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/park) +"vQJ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) +"vRk" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/power_ring) +"vRu" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/oob) +"vRA" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"vRF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"vRH" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"vRP" = ( +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"vSC" = ( +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"vSW" = ( +/obj/structure/closet/crate/internals, +/obj/item/tool/crew_monitor, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"vTq" = ( +/obj/structure/prop/resin_prop, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"vTv" = ( +/turf/closed/shuttle/elevator{ + dir = 5 + }, +/area/fiorina/station/civres_blue) +"vTA" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/flight_deck) +"vTI" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"vTL" = ( +/obj/item/trash/hotdog, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"vTM" = ( +/obj/item/storage/donut_box{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"vTR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"vUf" = ( +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"vUl" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"vUv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced, +/obj/item/reagent_container/food/snacks/donut/normal, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"vUF" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/prison/green/southwest, +/area/fiorina/tumor/civres) +"vUP" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"vUZ" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"vVi" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"vVx" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/fiorina/station/flight_deck) +"vVN" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/flight_deck) +"vWe" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/prison, +/area/fiorina/station/medbay) +"vWj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"vWL" = ( +/obj/item/stock_parts/matter_bin/super, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"vXk" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"vXl" = ( +/obj/structure/surface/rack, +/obj/item/folder/black, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"vXy" = ( +/turf/open/floor/prison/green/southeast, +/area/fiorina/tumor/civres) +"vXT" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/security/wardens) +"vYw" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"vYX" = ( +/obj/item/roller, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"vYY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + layer = 3.5; + pixel_y = 6 + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/transit_hub) +"vZe" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/power_ring) +"vZs" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"vZD" = ( +/obj/item/storage/box/donkpockets, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"vZL" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"vZV" = ( +/turf/closed/wall/strata_ice/jungle{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + name = "synthetic vegetation" + }, +/area/fiorina/tumor/aux_engi) +"vZX" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"wam" = ( +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"waN" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"waQ" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/power_ring) +"waU" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"wbp" = ( +/obj/item/inflatable, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"wbr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"wbB" = ( +/obj/structure/computerframe, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"wbE" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/fiorina/tumor/ship) +"wbI" = ( +/turf/open/floor/wood, +/area/fiorina/station/park) +"wbL" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/item/prop/almayer/comp_open{ + pixel_y = 6 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"wbP" = ( +/obj/item/storage/toolbox, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"wbW" = ( +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"wcB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"wcC" = ( +/obj/structure/closet/basketball, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"wcP" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"wcW" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"wdl" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"wdo" = ( +/obj/structure/closet, +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring) +"wdL" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"wdU" = ( +/obj/structure/foamed_metal, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"wef" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"wet" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"weB" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"weE" = ( +/turf/open/floor/prison/panelscorched, +/area/fiorina/oob) +"weM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"weV" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"weX" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"wfc" = ( +/obj/structure/machinery/disposal, +/obj/item/tool/kitchen/rollingpin{ + pixel_y = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"wfo" = ( +/obj/structure/coatrack, +/obj/item/clothing/head/bowlerhat{ + pixel_y = 15 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"wfu" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"wfw" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/damaged3, +/area/fiorina/station/central_ring) +"wfV" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"wfY" = ( +/obj/item/device/flashlight/flare/on, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"wgi" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "scavshipholder" + }, +/turf/open/space, +/area/fiorina/oob) +"wgq" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"wgs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/beret/eng{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/book/manual/engineering_guide{ + pixel_x = -4 + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"wgO" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"whf" = ( +/turf/closed/shuttle/elevator{ + dir = 4 + }, +/area/fiorina/station/civres_blue) +"whl" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"whr" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"whu" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/tumor/civres) +"wis" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"wiR" = ( +/obj/structure/surface/rack, +/obj/item/key, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) +"wjC" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrown2/northwest, +/area/fiorina/tumor/aux_engi) +"wjH" = ( +/obj/item/stack/barbed_wire, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"wjO" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison, +/area/fiorina/station/park) +"wjT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_7" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"wkd" = ( +/obj/structure/machinery/status_display, +/turf/closed/wall/prison, +/area/fiorina/station/medbay) +"wkg" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/down, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"wky" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"wkA" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/power_ring) +"wkL" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/station/flight_deck) +"wln" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/ice_lab) +"wlv" = ( +/obj/item/trash/barcardine, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"wly" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/lz/near_lzII) +"wlG" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"wlO" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/turf/open/floor/almayer, +/area/fiorina/tumor/ship) +"wmd" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/tumor/fiberbush) +"wmm" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/blue, +/area/fiorina/station/power_ring) +"wmx" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/prison/red/west, +/area/fiorina/station/security) +"wnh" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/blue/north, +/area/fiorina/station/civres_blue) +"wnq" = ( +/obj/item/tool/match, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/lz/near_lzI) +"wnu" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"wnD" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"wnM" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical{ + pixel_y = -3 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/maintenance) +"woh" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"wol" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"wou" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"wow" = ( +/obj/structure/closet/crate/medical, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"woB" = ( +/obj/structure/closet/crate/bravo, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/fuel_cell, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"wps" = ( +/obj/structure/bed/sofa/south/grey/left, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"wpy" = ( +/turf/open/floor/prison/greencorner/north, +/area/fiorina/station/chapel) +"wpD" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"wpO" = ( +/obj/structure/machinery/door/airlock/almayer/marine{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"wpW" = ( +/obj/structure/sign/kiddieplaque{ + desc = "It is a warning sign that describes the process by which fiberbush expands in humid environments, behaving similar to kudzu vines."; + name = "Fiberbush(tm) safety plaque"; + pixel_y = 29 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"wqs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/poster, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"wqz" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/item/clothing/gloves/combat, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"wqY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"wrR" = ( +/turf/closed/wall/prison, +/area/fiorina/station/botany) +"wrT" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"wsw" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"wsz" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"wsM" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"wtm" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"wty" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/classic_baton, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"wua" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/power_ring) +"wun" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/fiorina/tumor/ice_lab) +"wuz" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"wuA" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/nailgun, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"wuC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"wuN" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"wuW" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"wvH" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"wvL" = ( +/obj/item/tool/wrench, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"wvU" = ( +/obj/structure/largecrate/supply/explosives/mines, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"wvY" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"wwa" = ( +/turf/open/floor/prison/floorscorched1, +/area/fiorina/tumor/civres) +"wwo" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; + name = "\improper Fiorina Engineering Canteen Vendor" + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"wxl" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkbrown2/northeast, +/area/fiorina/maintenance) +"wxW" = ( +/obj/structure/prop/almayer/computers/mapping_computer, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"wxX" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("PRISON") + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"wxY" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"wxZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/computer/cameras, +/turf/open/floor/plating/prison, +/area/fiorina/station/security/wardens) +"wyd" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"wyl" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"wyK" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/oob) +"wyQ" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"wyT" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"wyU" = ( +/obj/effect/decal/cleanable/blood/gibs/robot/up, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"wzd" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"wzg" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"wzE" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/lowsec) +"wzH" = ( +/turf/open/floor/prison/blue/northeast, +/area/fiorina/station/chapel) +"wzK" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/item/prop/almayer/flight_recorder, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"wzT" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10 + }, +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.6 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"wAn" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"wAt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) +"wAQ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"wBx" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"wBB" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"wBE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"wBK" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"wBX" = ( +/obj/structure/largecrate/supply/supplies, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"wCI" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/fiorina/station/park) +"wCJ" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"wDe" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"wDw" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"wDz" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison, +/area/fiorina/station/security) +"wDJ" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"wDK" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/curtain/shower, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"wED" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/civres_blue) +"wEE" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"wEX" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"wFd" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"wFp" = ( +/obj/item/stack/cable_coil/pink, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"wFB" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"wFM" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"wFS" = ( +/turf/open/floor/prison/floorscorched1, +/area/fiorina/station/chapel) +"wFU" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"wGb" = ( +/obj/item/ammo_casing{ + icon_state = "casing_1" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"wGf" = ( +/obj/item/stack/rods, +/turf/open/floor/wood, +/area/fiorina/station/park) +"wGA" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"wGM" = ( +/obj/item/device/taperecorder{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"wGX" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"wHl" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"wHq" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"wHr" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/prison/red/west, +/area/fiorina/station/security) +"wHw" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/security/wardens) +"wHC" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"wId" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"wIk" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"wIp" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"wIx" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/red/east, +/area/fiorina/station/security) +"wIy" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"wIG" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform_decoration/kutjevo, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/fiorina/oob) +"wIJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer{ + icon_state = "security_det"; + name = "Shuttle control deck"; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"wIL" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"wJd" = ( +/obj/structure/barricade/handrail, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"wJw" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/weapon/gun/rifle/m16, +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"wKb" = ( +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/wood, +/area/fiorina/station/park) +"wKl" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"wKm" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"wKx" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"wKE" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"wKR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/medbay) +"wLA" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/security) +"wLS" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/darkpurple2/west, +/area/fiorina/tumor/servers) +"wLT" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"wMe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/blood/empty{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/reagent_container/blood/BMinus{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"wMh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"wMi" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"wMv" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"wMz" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/fiorina/station/security/wardens) +"wMA" = ( +/obj/item/disk/botany, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"wNi" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"wNr" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"wNB" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"wND" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/civres_blue) +"wNG" = ( +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"wNM" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"wNX" = ( +/turf/open/floor/prison/green/west, +/area/fiorina/station/chapel) +"wOG" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) +"wPz" = ( +/turf/closed/shuttle/elevator, +/area/fiorina/station/telecomm/lz1_cargo) +"wQb" = ( +/turf/open/floor/prison/blue/north, +/area/fiorina/station/civres_blue) +"wQg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"wQD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/gun/energy/taser, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"wQN" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"wQR" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"wQT" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"wQW" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison, +/area/fiorina/station/park) +"wQY" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"wRg" = ( +/obj/item/stack/sheet/metal, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"wRz" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/central_ring) +"wRP" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"wSb" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"wSc" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000; + pixel_y = 19 + }, +/obj/item/stack/sheet/wood, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "Somehow, it still functions."; + layer = 3.1; + name = "discarded camera console"; + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"wSm" = ( +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"wSo" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"wSt" = ( +/obj/structure/monorail{ + dir = 9; + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"wSC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/bottle/spaceacillin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"wSD" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"wSN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"wSU" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"wSX" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"wTC" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/station/telecomm/lz1_cargo) +"wTW" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"wUs" = ( +/turf/open/floor/prison/floorscorched1, +/area/fiorina/station/civres_blue) +"wUz" = ( +/obj/item/frame/toolbox_tiles, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"wVc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 11; + pixel_y = 14 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"wWs" = ( +/turf/open/floor/greengrid, +/area/fiorina/station/security) +"wWW" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/fiorina/station/medbay) +"wXe" = ( +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"wXy" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"wXN" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"wXQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"wYq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/chem_dispenser/soda, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"wYP" = ( +/obj/structure/platform, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"wYT" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/power_ring) +"wZt" = ( +/turf/open/floor/prison/floor_marked/west, +/area/fiorina/station/research_cells) +"wZv" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/wood, +/area/fiorina/station/park) +"wZH" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"wZN" = ( +/obj/item/reagent_container/food/drinks/bottle/melonliquor, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"xak" = ( +/obj/structure/closet/emcloset, +/obj/item/storage/pill_bottle/kelotane/skillless, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"xat" = ( +/obj/item/stool, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"xaO" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"xbc" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/central_ring) +"xbm" = ( +/obj/structure/machinery/line_nexter{ + id = "line2"; + pixel_x = -2 + }, +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"xbo" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"xbp" = ( +/obj/item/card/id/silver/clearance_badge/cl{ + desc = "Wow sorry, didn't mean to drop that in front of you, it's real, btw."; + name = "certified powerloader operator card"; + registered_name = "John Forklift" + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"xbr" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/prison/green/north, +/area/fiorina/station/transit_hub) +"xbE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"xbM" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"xck" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/park) +"xcz" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"xcS" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"xdb" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"xdt" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/space/basic, +/area/fiorina/oob) +"xdE" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_tram) +"xdL" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"xdT" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"xdZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"xei" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"xel" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"xew" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_leftengine" + }, +/area/fiorina/lz/near_lzI) +"xeO" = ( +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"xeX" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/tumor/servers) +"xfb" = ( +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"xfh" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"xgb" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"xgn" = ( +/obj/structure/machinery/optable, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) +"xgx" = ( +/obj/structure/machinery/defenses/tesla_coil/premade{ + faction_group = list("USCM") + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"xgC" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"xgF" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"xgH" = ( +/obj/item/toy/handcard/uno_reverse_blue, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"xgU" = ( +/obj/item/circuitboard/machine/rdserver, +/turf/open/floor/prison/floorscorched1, +/area/fiorina/tumor/servers) +"xhL" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopleft" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"xhM" = ( +/obj/structure/curtain/red, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"xia" = ( +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"xiF" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/security) +"xiL" = ( +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"xiO" = ( +/obj/structure/machinery/vending/cigarette/free, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"xja" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"xjm" = ( +/obj/structure/computerframe, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"xjM" = ( +/turf/open/floor/prison/redcorner/west, +/area/fiorina/station/security) +"xkm" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"xkq" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"xkv" = ( +/turf/closed/wall/prison, +/area/fiorina/station/telecomm/lz1_tram) +"xlb" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"xlk" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"xlp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/fiorina/station/research_cells) +"xlx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/tomatosoup, +/turf/open/floor/prison/blue, +/area/fiorina/station/power_ring) +"xlZ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/box/pillbottles, +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"xme" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan27" + }, +/area/fiorina/oob) +"xmj" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/fiorina/station/security/wardens) +"xmC" = ( +/obj/item/device/flashlight/flare/on, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"xmV" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/telecomm/lz1_tram) +"xna" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"xno" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"xnt" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/item/clothing/gloves/combat, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"xnU" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"xoi" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"xow" = ( +/turf/open/floor/prison/green/east, +/area/fiorina/station/chapel) +"xoK" = ( +/obj/structure/closet, +/obj/item/restraint/handcuffs, +/obj/item/clothing/mask/muzzle, +/obj/item/weapon/chainofcommand, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"xoR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"xpj" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_4" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"xpw" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"xpx" = ( +/obj/item/storage/belt/marine, +/turf/open/floor/prison, +/area/fiorina/station/security) +"xpM" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"xpO" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"xqP" = ( +/obj/structure/surface/rack, +/obj/item/tool/plantspray/weeds, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"xqY" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"xrd" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"xro" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/skills{ + dir = 4 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"xrz" = ( +/obj/item/clothing/head/cmcap, +/turf/open/floor/prison/green, +/area/fiorina/station/transit_hub) +"xrH" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"xrZ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"xsh" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/obj/item/bedsheet/green, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"xst" = ( +/obj/structure/platform, +/turf/open/floor/prison/chapel_carpet, +/area/fiorina/station/chapel) +"xsC" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"xsS" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"xsX" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"xtd" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/key/cargo_train, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"xte" = ( +/obj/structure/platform_decoration, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/telecomm/lz1_tram) +"xtm" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"xtP" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/space, +/area/fiorina/oob) +"xuQ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"xvv" = ( +/turf/open/floor/prison, +/area/fiorina/station/botany) +"xvB" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access{ + name = "greenhouse airlock" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"xvC" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"xvI" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "delivery_outlet"; + layer = 6; + name = "overhead ducting"; + pixel_y = 33 + }, +/obj/item/trash/eat, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"xwo" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/sprays, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"xwt" = ( +/obj/structure/bed/chair/comfy, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"xwC" = ( +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/tumor/fiberbush) +"xxD" = ( +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"xxP" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_2" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"xxU" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"xxX" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib4" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"xyq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"xyw" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"xzj" = ( +/turf/open/floor/carpet, +/area/fiorina/tumor/civres) +"xzs" = ( +/obj/structure/machinery/space_heater, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"xzN" = ( +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/chapel) +"xAl" = ( +/obj/structure/cargo_container/grant/right{ + desc = "A huge industrial shipping container. You're not sure how it got here." + }, +/turf/open/space, +/area/fiorina/oob) +"xAo" = ( +/obj/item/trash/cigbutt/bcigbutt, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"xAq" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"xAs" = ( +/obj/item/device/reagent_scanner, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"xAY" = ( +/obj/effect/landmark{ + icon_state = "hive_spawn"; + name = "xeno_hive_spawn" + }, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/prison/whitegreencorner/north, +/area/fiorina/tumor/ice_lab) +"xBc" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"xBl" = ( +/obj/structure/surface/table/woodentable, +/obj/item/circuitboard/apc, +/obj/item/tool/screwdriver{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"xBu" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"xBN" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"xCa" = ( +/obj/item/toy/crayon/rainbow, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"xCg" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"xCh" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"xCp" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"xCr" = ( +/obj/structure/curtain/shower, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"xCv" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"xCV" = ( +/obj/item/reagent_container/food/drinks/bottle/orangejuice, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"xDk" = ( +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/civres_blue) +"xDq" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" + }, +/area/fiorina/oob) +"xDw" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"xEi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"xEy" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"xEH" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) +"xEW" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"xEX" = ( +/obj/effect/spawner/random/gun/rifle, +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/lz/near_lzI) +"xFf" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"xFg" = ( +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/central_ring) +"xFJ" = ( +/obj/item/tool/soap, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"xFL" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"xFP" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_rightengine" + }, +/area/fiorina/lz/near_lzI) +"xGc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"xGd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette/weed{ + icon_state = "ucigoff" + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec) +"xGi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"xGl" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"xGr" = ( +/obj/item/trash/sosjerky, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"xGt" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"xGD" = ( +/obj/structure/machinery/deployable/barrier, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/security) +"xHi" = ( +/obj/item/trash/candle, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"xHV" = ( +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/tumor/civres) +"xIh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"xIq" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"xIx" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"xJn" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/disco) +"xJw" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/civres_blue) +"xJQ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) +"xKj" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"xKA" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"xKE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/taperecorder{ + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec) +"xKP" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"xKX" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"xLd" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"xLf" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibmid1" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"xLi" = ( +/turf/closed/wall/prison, +/area/fiorina/tumor/ice_lab) +"xLj" = ( +/obj/item/reagent_container/food/drinks/bottle/patron, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"xLn" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"xLx" = ( +/obj/item/bedsheet, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"xLD" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"xLQ" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"xLS" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"xMp" = ( +/obj/item/trash/c_tube, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"xMO" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"xMW" = ( +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/space, +/area/fiorina/oob) +"xMX" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"xNg" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" + }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"xNm" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/security) +"xNn" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"xNG" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"xNJ" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 1 + }, +/obj/item/frame/rack, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) +"xNU" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/station/flight_deck) +"xOm" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"xOs" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"xOE" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"xOU" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"xPk" = ( +/turf/open/floor/prison/greencorner/west, +/area/fiorina/tumor/civres) +"xPG" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"xQx" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"xQC" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"xRl" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"xRo" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"xRw" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/blue/north, +/area/fiorina/station/power_ring) +"xRI" = ( +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) +"xRY" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/card/id/visa, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"xSz" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"xSM" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/central_ring) +"xTf" = ( +/obj/item/tool/kitchen/utensil/pspoon, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/power_ring) +"xTD" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"xTW" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"xUi" = ( +/obj/structure/surface/rack, +/obj/item/device/camera, +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"xUn" = ( +/obj/structure/machinery/door/poddoor/almayer{ + density = 0; + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"xUo" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"xUr" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"xVw" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"xVJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"xVK" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"xVW" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/fiorina/station/park) +"xWc" = ( +/obj/item/clothing/shoes/dress, +/turf/open/space, +/area/fiorina/oob) +"xWE" = ( +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"xWG" = ( +/obj/item/weapon/twohanded/spear, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"xWV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/phone{ + pixel_y = -4 + }, +/obj/item/phone{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/tool/pen, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"xXh" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/medbay) +"xXl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"xXt" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"xXY" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"xYe" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"xYg" = ( +/obj/docking_port/stationary/marine_dropship/lz2, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"xYo" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"xYJ" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/whitepurple/east, +/area/fiorina/station/research_cells) +"xYN" = ( +/obj/item/device/t_scanner, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"xYR" = ( +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 + }, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"xZx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"xZA" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_tram) +"xZD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8; + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"xZI" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"xZM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green/west, +/area/fiorina/tumor/civres) +"xZN" = ( +/obj/item/clothing/under/shorts/green, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/central_ring) +"xZR" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"xZU" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"xZV" = ( +/obj/item/trash/semki, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"yar" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"yat" = ( +/obj/item/inflatable/door, +/obj/item/inflatable/door, +/obj/item/inflatable/door, +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"yaJ" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"yaY" = ( +/obj/item/stack/sheet/metal, +/turf/open/space, +/area/fiorina/oob) +"ybc" = ( +/obj/effect/landmark{ + icon_state = "hive_spawn"; + name = "xeno_hive_spawn" + }, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"ybg" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"ybj" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/lz/near_lzII) +"ybm" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"ybx" = ( +/obj/structure/platform, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/botany) +"ybU" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"ycf" = ( +/obj/structure/closet/secure_closet/security_empty, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ycw" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"ycC" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"ycK" = ( +/obj/item/storage/pouch/radio, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"ycT" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"ydb" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"ydd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"ydK" = ( +/turf/open/floor/prison/blue/east, +/area/fiorina/station/power_ring) +"ydQ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"yet" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"yeA" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"yeX" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"yfp" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut/alt, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) +"yfA" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"yfE" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"yfK" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/maintenance) +"yge" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/obj/effect/spawner/random/technology_scanner, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"ygk" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 + }, +/turf/open/floor/prison/yellowcorner, +/area/fiorina/station/lowsec) +"ygr" = ( +/obj/structure/platform, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/security) +"ygs" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"ygw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer{ + icon_state = "security_det"; + name = "Shuttle control deck"; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"yhs" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/obj/item/storage/pill_bottle/dexalin/skillless, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"yhu" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"yhJ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"yhR" = ( +/obj/structure/sign/prop3{ + desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/medbay) +"yif" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"yio" = ( +/turf/closed/shuttle/ert, +/area/fiorina/tumor/aux_engi) +"yis" = ( +/obj/structure/pipes/standard/tank{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"yiL" = ( +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"yiR" = ( +/turf/open/floor/prison/panelscorched, +/area/fiorina/station/civres_blue) +"yiT" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + pixel_y = -14 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/lz/near_lzI) +"yjW" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"ykw" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"ykO" = ( +/obj/structure/ice/thin/indestructible{ + icon_state = "Corner" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/tumor/ice_lab) +"ykX" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"yli" = ( +/obj/structure/sign/prop3{ + desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/central_ring) +"ylr" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/whitepurple/east, +/area/fiorina/station/research_cells) +"ylu" = ( +/obj/item/tool/wrench, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"ylW" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) + +(1,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xwC +kPz +bQM +bQM +bQM +bQM +kPz +kPz +bQM +bQM +bQM +bQM +bQM +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(2,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xwC +xwC +xwC +xwC +bQM +bQM +bQM +bQM +xwC +kPz +bQM +bQM +bQM +bQM +kPz +xwC +bQM +bQM +bQM +bQM +bQM +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(3,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xwC +xwC +xwC +gwH +gwH +tfP +tfP +tfP +tfP +bQM +bQM +xwC +kPz +bQM +bQM +bQM +bQM +kPz +xwC +bQM +bQM +bQM +bQM +bQM +kPz +xwC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(4,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +bQM +bQM +bQM +bQM +bQM +bQM +xwC +xwC +xwC +gwH +gwH +gwH +gwH +gwH +gwH +tfP +tfP +tfP +xwC +xwC +xwC +bQM +bQM +bQM +kPz +xwC +xwC +bQM +bQM +bQM +xwC +xwC +kPz +bQM +pqO +eVO +eVO +seW +eVO +eVO +vPR +bQM +bQM +bQM +bQM +bQM +wgi +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(5,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xHV +xHV +xHV +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xwC +xwC +xwC +xwC +xwC +gwH +gwH +gwH +gwH +gwH +gwH +gwH +gwH +gwH +tfP +tfP +tfP +xwC +xwC +bQM +bQM +xwC +kPz +xwC +xwC +bQM +bQM +xwC +xwC +kPz +bQM +byb +wbE +tAb +uVn +lTp +eWV +uZA +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(6,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xHV +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +tYw +tYw +tYw +tYw +tYw +tYw +tYw +tYw +tYw +xHV +xwC +xwC +xwC +xwC +xwC +gwH +gwH +rNc +qPb +qPb +qPb +gwH +gwH +gwH +gwH +gwH +tfP +xwC +xwC +bQM +bQM +xwC +kPz +xwC +xwC +bQM +xwC +xwC +xwC +xwC +bQM +byb +fiU +imt +xOE +fiU +aCC +cEz +eVO +vPR +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(7,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xHV +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +tYw +xwC +xwC +xwC +xwC +tfP +gwH +gwH +qPb +kbT +rHr +jjM +enH +nlR +gwH +gwH +gwH +gwH +xwC +xwC +xwC +xwC +xwC +xwC +xwC +xwC +xwC +xwC +pqO +eVO +eVO +seW +oxA +ihz +tZW +pGH +jXk +vxs +dqN +oJL +pWp +vPR +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +baC +baC +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(8,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xHV +xHV +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +xHV +xHV +xHV +gCE +xHV +xHV +xHV +xHV +xHV +dHd +kow +kow +kow +tfP +tfP +gwH +gwH +qPb +kbT +jjM +kbT +jjM +kbT +qPb +qPb +gwH +gwH +gwH +gwH +xwC +xwC +xwC +xwC +xwC +xwC +xwC +pqO +oxA +olb +qJK +uVn +rMY +kTY +imt +jXk +fxt +jpt +uVn +nlw +eIF +pWp +gLu +vzU +bVZ +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(9,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xHV +xHV +xHV +xHV +xHV +xHV +xHV +dXG +xHV +xHV +xHV +xHV +xHV +lIt +swj +swj +swj +swj +swj +sUl +qPb +qPb +qPb +kbT +kbT +qPb +qPb +kbT +kbT +enH +gmT +rHr +ybm +ybm +ybm +qPb +gwH +gwH +gwH +tfP +xwC +xwC +bQM +xwC +xwC +pqO +oxA +ghw +ouH +fiU +vYw +imt +fiU +nlw +hWF +fiU +fiU +hWF +fiU +nlw +anq +ecQ +aOc +klp +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(10,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xHV +xHV +xHV +xHV +xHV +xHV +dXG +dIo +swj +dXG +gPo +vgw +eWr +gPo +oeT +gPo +eYz +gPo +eYz +iad +sUl +kVg +kbT +kbT +kbT +kbT +kbT +ejt +kbT +iGX +qPb +qPb +kbT +ybm +xwC +ybm +kbT +qPb +uXn +qPb +kow +bQM +bQM +bQM +pqO +eVO +oxA +oOV +fiU +imt +imt +uVn +nlw +vJN +aar +uVn +lrE +wlO +jXk +imt +qJK +uZA +xwC +xwC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(11,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xHV +xHV +xHV +xHV +xHV +dXG +dXG +dIo +swj +dXG +cFT +dXG +vXy +uPX +oeT +uPX +eYz +uPX +qny +uPX +aEi +pRH +qPb +qPb +nlR +qPb +qPb +kbT +kbT +ybc +qPb +qPb +kbT +ybm +xwC +ybm +kbT +kbT +kbT +qPb +kow +bQM +bQM +bQM +byb +fSE +ifJ +imt +fiU +fiU +nlw +uVn +qHG +fJW +nlw +pGH +vxs +ddA +oxA +imt +lCz +uZA +xwC +xwC +xwC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +baC +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(12,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xHV +xHV +xHV +xHV +dIo +dIo +dIo +dXG +dIo +cKb +dXG +uPX +dXG +eRl +swj +lIt +swj +swj +swj +swj +qMs +sUl +kbT +rNc +qPb +qPb +qPb +qPb +qPb +qPb +qPb +rHr +jjM +rHr +ybm +ybm +ybm +kbT +kbT +kbT +pFA +kow +bQM +bQM +bQM +jhG +nTq +lUi +oOV +nlw +imt +imt +hWF +nlw +tlq +lUE +xOE +imt +imt +aAf +imt +fxt +uZA +xwC +xwC +xwC +xwC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +baC +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(13,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xHV +xHV +xHV +xHV +dIo +dXG +dIo +dXG +dIo +swj +swj +qXM +eYz +swj +naW +sLx +xHV +clu +swj +xHV +xHV +dHd +kow +kow +kow +tfP +tfP +tfP +rXt +wnD +wnD +gmT +jyM +jjM +qPb +kbT +kbT +kbT +kbT +qPb +uyN +tfP +xwC +xwC +bQM +xwC +xwC +jhG +lUi +jCt +fiU +fiU +uVn +jMH +kXR +nKG +uVn +uMq +aFp +fiU +bRb +fiU +pWp +gLu +vzU +bVZ +xwC +xwC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(14,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xHV +xHV +xHV +xHV +xHV +nsD +nsD +dIo +dIo +dIo +jsp +swj +dXG +eYz +swj +naW +xHV +xCr +jQy +jQy +jQy +xHV +naW +bQM +bQM +bQM +bQM +tfP +tfP +ycT +wnD +wnD +enH +gmT +enH +qPb +kbT +kbT +kbT +kbT +kbT +qPb +xwC +xwC +xwC +xwC +xwC +xwC +xwC +jhG +lUi +oFk +anq +bso +sOs +nTq +sOs +bso +lUi +nlw +nlw +nlw +nlw +anq +ecQ +aOc +klp +xwC +xwC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +baC +cbN +cbN +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(15,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +aWV +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +tYw +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xHV +xHV +xHV +xHV +xHV +xHV +xHV +dXG +dXG +dXG +clu +dXG +dXG +swj +swj +dXG +eYz +xHV +naW +xHV +naW +sfn +jQy +bMz +naW +xHV +xHV +kPz +kPz +kPz +kPz +tfP +tfP +eyi +uPi +qPb +qPb +qPb +kbT +kbT +qPb +qPb +kbT +kbT +kbT +qPb +gwH +gwH +gwH +gwH +xwC +xwC +xwC +jhG +nTq +gUj +tbd +uXD +mYG +uXD +tbd +jhG +kIo +msn +fUd +prh +gUj +xwC +xwC +xwC +xwC +xwC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +baC +cbN +baC +cbN +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(16,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +aWV +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +tYw +bQM +bQM +bQM +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +dXG +pNI +dXG +clu +dXG +dXG +uVZ +swj +dXG +eYz +xHV +xHV +mlU +xCr +jQy +lLe +jQy +jQy +dyY +xHV +bQM +bQM +bQM +bQM +tfP +tfP +tfP +tfP +qPb +qPb +rNc +kbT +xzs +gwH +gwH +cwB +qPb +kbT +qPb +qPb +gwH +gwH +gwH +xwC +xwC +xwC +xwC +xwC +gBx +tbd +kNN +mYG +uXD +tbd +gBx +cTr +kbT +kbT +kbT +gBx +xwC +xwC +xwC +xwC +xwC +xwC +xwC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +baC +cbN +cbN +cbN +cbN +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(17,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +aWV +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +tYw +bQM +xHV +xHV +tYw +tYw +tYw +tYw +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +swj +dXG +dXG +dXG +dIo +dIo +dIo +dIo +dXG +swj +lLe +eYz +xHV +xHV +naW +naW +jQy +lLe +jQy +naW +xHV +xHV +kPz +kPz +kPz +kPz +kPz +kPz +tfP +tfP +kbT +qPb +qPb +qPb +gwH +gwH +gwH +gwH +gwH +qPb +qPb +qPb +qPb +qPb +nlR +xwC +qPb +dnK +qPb +wnD +wnD +hLM +uQk +tfP +uQk +hLM +pBq +kbT +kbT +jRf +kbT +kbT +kbT +gwH +gwH +xwC +xwC +xwC +xwC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +baC +baC +baC +baC +cbN +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(18,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +aWV +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +tYw +bQM +bQM +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +eYz +clu +clu +dIo +xHV +xHV +gPo +eYz +gPo +eYz +dXG +swj +dXG +bFL +bFL +jQy +jQy +jQy +ihn +xHV +xHV +xHV +bQM +bQM +bQM +bQM +bQM +bQM +tfP +kbT +qPb +qPb +qPb +tfP +xwC +xwC +xwC +gwH +gwH +qPb +qPb +kbT +kbT +qPb +ieJ +wnD +wnD +wnD +qPb +qPb +kbT +kbT +kbT +wnD +wnD +kbT +wnD +kbT +kbT +kbT +rUA +qPb +olo +gwH +gwH +xwC +xwC +xwC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +baC +baC +baC +baC +baC +cbN +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(19,1,1) = {" +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +agi +aWV +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +tYw +bQM +xHV +tYw +xHV +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +dIo +swj +swj +dXG +clu +dXG +dIo +xHV +eYz +uPX +eYz +uPX +eYz +eYz +swj +dXG +jQy +jQy +jQy +jQy +xHV +xHV +xHV +bQM +xHV +bQM +bQM +bQM +bQM +bQM +bQM +kow +kbT +qPb +kbT +kbT +kow +bQM +bQM +xwC +xwC +gwH +gwH +qPb +wnD +kbT +kbT +ieJ +wnD +wnD +wnD +qPb +qPb +qPb +qPb +qPb +qPb +qPb +kbT +xwC +xwC +xwC +xwC +kbT +qPb +uXn +gwH +gwH +gwH +xwC +xwC +jlk +jlk +bQM +bQM +bQM +bQM +bQM +bQM +bQM +jlk +bQM +bQM +bQM +kPz +bQM +baC +cbN +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(20,1,1) = {" +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +agi +agi +agi +agi +aWV +agi +agi +bQM +bQM +bQM +bQM +bQM +bQM +tYw +xHV +xHV +tYw +xHV +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +dIo +eYz +eYz +eYz +dIo +dXG +nsD +swj +whu +whu +whu +swj +eYz +eYz +qss +naW +naW +naW +clu +clu +naW +naW +bQM +bQM +xHV +kPz +kPz +kPz +kPz +kPz +kPz +kow +kbT +qPb +kbT +kbT +kow +bQM +bQM +bQM +xwC +xwC +gwH +gwH +xzs +kbT +qPb +xwC +ogM +ogM +xwC +qPb +tIC +qPb +qPb +syG +qPb +qPb +qPb +nlR +qPb +kbT +kbT +kbT +kbT +kbT +xzs +gwH +gwH +xwC +xwC +jlk +jlk +jlk +bQM +bQM +bQM +bQM +bQM +bQM +jlk +jlk +bQM +bQM +kPz +jlk +baC +cbN +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(21,1,1) = {" +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +aWV +aWV +aWV +aWV +aWV +aWV +aWV +aWV +aWV +aWV +aWV +agi +aWV +agi +agi +agi +bQM +bQM +bQM +bQM +agi +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +dIo +cKb +swj +swj +pwL +oKq +swj +gPo +eYz +gPo +eYz +gPo +eYz +eYz +swj +naW +xHV +xHV +jQy +ifc +oyo +xHV +xHV +bQM +xHV +bQM +bQM +bQM +bQM +bQM +bQM +kow +kbT +kbT +kbT +kbT +kow +bQM +bQM +bQM +bQM +xwC +gwH +gwH +qPb +kbT +kbT +ogM +kbT +kbT +wnD +qPb +qPb +wnD +kbT +kbT +wnD +wnD +kbT +wbp +qPb +qPb +gBx +kbT +kbT +kbT +kbT +gwH +gwH +xwC +xwC +jlk +jlk +jlk +jlk +jlk +jlk +bQM +bQM +bQM +jlk +rZP +lHx +lHx +lHx +rZP +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(22,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +agi +agi +agi +agi +agi +agi +aWV +agi +agi +agi +agi +agi +agi +agi +agi +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +dXG +xHV +eYz +xHV +xHV +dIo +eYz +eYz +eYz +dXG +dXG +swj +uPX +eYz +uPX +eYz +uPX +dXG +eYz +swj +xHV +xHV +xHV +ihn +jQy +jQy +naW +naW +xHV +xHV +bQM +bQM +bQM +kPz +bQM +bQM +hLM +sqx +sqx +sqx +sqx +hLM +xwC +bQM +bQM +bQM +xwC +xwC +xwC +wDJ +qPb +kbT +ogM +kbT +kbT +wnD +qPb +qPb +wnD +gBx +xwC +xwC +wnD +xwC +qPb +qPb +qPb +qPb +qPb +gwH +gwH +qPb +gwH +gwH +xwC +xwC +jlk +jlk +jlk +jlk +jlk +rZP +lHx +lHx +lHx +jlk +jlk +tDC +hvL +tDC +jlk +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(23,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +aWV +agi +agi +agi +bQM +bQM +agi +agi +agi +agi +agi +agi +agi +agi +aWV +agi +agi +agi +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +lLe +swj +eYz +xHV +xHV +dIo +swj +swj +swj +dXG +dXG +dXG +swj +xHV +dIo +xHV +swj +dXG +eYz +xHV +naW +naW +naW +uXY +jSD +jQy +rjy +dyY +xHV +xHV +kPz +kPz +kPz +kPz +kPz +tfP +tfP +wpW +qPb +qPb +qPb +tfP +tfP +xwC +xwC +rkR +bQM +xwC +xwC +xwC +uXn +qPb +ieJ +wnD +kbT +kbT +qPb +qPb +tfP +xwC +xwC +xwC +xwC +xwC +xwt +wVc +qPb +wfV +qPb +gwH +gwH +kbT +xwC +xwC +xwC +xwC +jlk +jlk +jlk +jlk +vZV +vZV +mkI +lCl +uTR +jlk +jlk +hAI +hvL +hAI +jlk +jlk +rZP +rZP +rZP +cbN +cbN +cbN +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(24,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +agi +aWV +agi +agi +bQM +bQM +bQM +bQM +agi +agi +agi +agi +bQM +bQM +agi +aWV +aWV +aWV +aWV +tYw +tYw +tYw +tYw +tYw +tYw +tYw +tYw +tYw +tYw +tYw +tYw +tYw +tYw +tYw +tYw +tYw +tYw +tYw +tYw +tYw +dIo +eYz +eYz +eYz +dXG +eYz +eYz +swj +eYz +eYz +eYz +dXG +dXG +xHV +xHV +xHV +xHV +xHV +swj +eYz +eYz +xHV +naW +lWn +xCr +jQy +jSD +sdE +naW +xHV +xHV +bQM +bQM +bQM +bQM +tfP +tfP +tfP +gBx +qPb +qPb +qPb +qPb +gBx +gwH +gwH +xwC +xwC +bQM +bQM +xwC +xwC +gwH +gwH +xwC +qPb +wnD +wnD +kbT +qPb +xwC +gwH +gwH +tfP +tfP +tfP +xwt +lrI +qPb +gBx +kbT +kbT +wnD +wnD +wnD +wnD +uyN +xwC +cJY +qxP +uDX +jlk +vZV +jmp +svP +cyb +hAI +jlk +lLS +svP +hvL +svP +hAI +tDC +lHx +bQM +bQM +cbN +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(25,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +agi +aWV +agi +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +bQM +bQM +bQM +aWV +agi +agi +agi +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +tYw +xHV +xHV +dIo +cKb +lLe +dXG +eYz +lLe +dXG +dXG +swj +swj +swj +xHV +xHV +xHV +xHV +xHV +xHV +xHV +swj +dXG +eYz +xHV +naW +naW +naW +sfn +jQy +jQy +lFV +xHV +kPz +kPz +kPz +kPz +gwH +tfP +kPY +gwH +gwH +qPb +qPb +qPb +qPb +qPb +gwH +gwH +gwH +xwC +xwC +bQM +bQM +xwC +xwC +xwC +tfP +tfP +aaq +kbT +kbT +qPb +sNb +gwH +gwH +gwH +gwH +tfP +xwt +xwC +qPb +wnD +wnD +qPb +qPb +wnD +kbT +kbT +kbT +ieJ +uzG +nMm +sia +rGq +taj +lzq +rGq +fAt +taj +knh +hvL +hvL +hvL +uzi +hvL +hvL +lHx +bQM +bQM +cbN +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(26,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +agi +aWV +agi +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +agi +bQM +bQM +aWV +agi +agi +agi +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +tYw +xHV +xHV +dIo +rAU +swj +dXG +eYz +dXG +dXG +dXG +dXG +dXG +dXG +xHV +xHV +xHV +xHV +xHV +xHV +doD +doD +doD +eYz +xHV +naW +lWn +xCr +jQy +jQy +jQy +xHV +naW +bQM +bQM +bQM +gwH +gwH +gwH +gwH +gwH +gwH +qPb +qPb +qPb +qPb +qPb +itW +gwH +gwH +gwH +xwC +bQM +bQM +bQM +xwC +tfP +gwH +gwH +fsk +kbT +kbT +qPb +qPb +xAs +qPb +gwH +gwH +tfP +dwQ +dwQ +wnD +dwQ +dwQ +wnD +dwQ +dwQ +kbT +dwQ +dwQ +ogM +uzG +lyf +svP +rOI +taj +taj +taj +taj +taj +knh +svP +svP +hvL +svP +hAI +myK +lHx +bQM +bQM +cbN +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(27,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +agi +aWV +agi +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +agi +bQM +bQM +aWV +agi +agi +agi +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +tYw +xHV +xHV +dIo +dIo +rAU +swj +eYz +swj +swj +dXG +oev +eYz +eYz +dIo +nsD +qgB +qoG +dIo +dXG +dXG +dXG +eYz +ame +swj +naW +naW +xHV +swj +dXG +swj +xHV +dHd +kow +kow +kow +tfP +gwH +tfP +gwH +gwH +gBx +qPb +rNc +qPb +qPb +gBx +qPb +qPb +gBx +gwH +tfP +kow +kow +kow +tfP +tfP +gwH +gwH +qPb +kbT +kbT +qPb +qPb +vFY +ycK +qPb +qPb +qPb +wnD +wnD +qPb +wnD +wnD +wnD +uXn +wnD +wnD +wnD +wnD +ogM +uzG +nMm +uNM +taj +rGq +lSb +vbV +jlk +taj +knh +rGq +svP +hvL +svP +taj +nvK +rZP +bQM +baC +cbN +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(28,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +bQM +bQM +bQM +bQM +agi +agi +cAW +cAW +cAW +cAW +cAW +aWV +cAW +cAW +cAW +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +dIo +dIo +dIo +dIo +xHV +xHV +swj +dXG +swj +swj +dIo +dIo +xHV +avY +dIo +dXG +nsD +dXG +gPo +eWr +swj +ftb +swj +swj +swj +swj +swj +swj +sUl +qPb +dnK +dnK +qPb +gwH +gBx +gwH +gBx +xzs +qPb +qPb +kbT +qPb +wfV +qPb +qPb +qPb +dnK +qPb +qPb +qPb +kbT +qPb +qPb +qPb +qPb +kbT +qPb +qPb +qPb +uXn +qPb +qPb +fpB +kbT +kbT +wnD +lZo +wnD +wnD +xwC +xwC +xwC +xwC +ogM +ogM +ogM +xwC +uzG +nMm +uNM +yhu +yhu +yhu +yhu +uNM +jlk +jlk +rZP +ble +hvL +svP +taj +dpH +jlk +baC +baC +cbN +cbN +cbN +cbN +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(29,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +bQM +agi +agi +agi +agi +cAW +cAW +cAW +cAW +cAW +aWV +cAW +cAW +cAW +tYw +xHV +xHV +tYw +tYw +tYw +tYw +tYw +tYw +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +dIo +eYz +eYz +eYz +nsD +xHV +xHV +xHV +xHV +dXG +dXG +dXG +cFT +xPk +eWr +gPo +eYz +gPo +eYz +gPo +eYz +gPo +sUl +qPb +qPb +rNc +qPb +qPb +qPb +qPb +qPb +qPb +qPb +tsH +kbT +qPb +qPb +qPb +qPb +qPb +qPb +qPb +qPb +qPb +kbT +kbT +kbT +kbT +kbT +kbT +qPb +qPb +qPb +kbT +kbT +kbT +qPb +uXn +qPb +tfP +tfP +wmd +xwC +xwC +xwC +xwC +xwC +wnD +wnD +wnD +ogM +uzG +dMt +wsz +wsz +wsz +wsz +wsz +wsz +jlk +jlk +rZP +ble +hvL +svP +taj +hNU +jlk +baC +baC +baC +baC +baC +pcu +iWq +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(30,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +agi +agi +agi +agi +agi +cAW +cAW +cAW +cAW +cAW +aWV +agi +agi +agi +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +tYw +xHV +xHV +dXG +xHV +xHV +xHV +xHV +xHV +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +dIo +swj +swj +swj +dXG +xHV +xHV +xHV +xHV +xHV +xHV +xHV +uPX +ntc +vXy +uPX +eYz +uPX +eYz +uPX +eYz +uPX +sUl +qPb +qPb +qPb +qPb +qPb +qPb +qPb +qPb +qPb +qPb +kbT +qPb +qPb +nlR +qPb +qPb +qPb +qPb +qPb +qPb +nlR +qPb +kbT +kbT +kbT +kbT +qPb +qPb +kbT +kbT +kbT +kbT +qPb +rNc +gwH +gwH +tfP +xwC +xwC +xwC +xwC +qPb +qPb +qPb +kbT +kbT +kbT +ogM +oHm +mLY +qbd +mLY +mLY +mLY +mLY +mLY +bZD +nMm +rZP +ble +hvL +svP +taj +dxE +jlk +baC +baC +baC +baC +bTo +pcu +iWq +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(31,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +aWV +aWV +agi +bQM +bQM +cAW +cAW +cAW +cAW +agi +aWV +agi +agi +agi +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +dXG +xGi +swj +xGi +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +dIo +dXG +qXM +swj +xHV +gCE +xHV +gCE +xHV +xHV +xHV +xHV +sIC +dXG +qXM +swj +eYz +eYz +eYz +swj +swj +swj +sUl +qPb +cwB +cwB +qPb +cJz +qPb +qPb +qPb +qPb +qPb +qPb +qPb +qPb +qPb +qPb +qPb +qPb +olo +tJU +qPb +qPb +qPb +lic +xwC +xwC +xwC +vMk +qPb +qPb +kbT +kbT +kbT +xzs +gwH +gwH +gwH +tfP +xwC +xwC +xwC +xwC +uyN +qPb +qPb +kbT +kbT +qPb +jCA +svP +fpn +fpn +svP +fpn +fpn +svP +lyf +uzG +ddY +rZP +jlk +hvL +svP +bfF +rGq +rZP +baC +baC +baC +bQM +bTo +pcu +iWq +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(32,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +agi +bQM +bQM +cAW +aWV +aWV +aWV +aWV +aWV +aWV +aWV +aWV +tYw +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +nsD +rqC +swj +rqC +xHV +xHV +xHV +qgi +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +xHV +dIo +dXG +dXG +swj +xHV +xHV +xHV +xHV +xHV +dXG +swj +swj +sIC +dXG +dXG +swj +eYz +xHV +xHV +xHV +xHV +swj +dHd +kow +kow +kow +tfP +tfP +tfP +sig +sig +qPb +qPb +qPb +qPb +qPb +qPb +xzs +gwH +gBx +tfP +tfP +kow +kow +kow +tfP +tfP +xwC +xwC +xwC +qPb +qPb +kbT +kbT +qPb +qPb +gwH +gwH +gwH +wmd +xwC +xwC +qPb +qPb +qPb +wnD +qPb +kbT +kbT +qPb +xwC +jlk +jlk +jlk +jlk +jlk +jlk +jlk +svP +uzG +nMm +rZP +jlk +jlk +svP +bfF +rGq +rZP +baC +swg +fQV +fQV +fyC +qOk +mKS +fQV +fQV +erT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(33,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +agi +bQM +bQM +cAW +agi +agi +aWV +agi +agi +agi +agi +agi +tYw +xHV +xHV +xHV +xHV +xHV +xHV +eYz +eYz +eYz +eYz +swj +xGi +swj +rqC +xHV +xHV +xHV +qgi +xHV +dIo +dIo +dIo +dIo +dIo +dIo +dIo +dIo +swj +dXG +eYz +swj +xHV +xHV +xHV +xHV +dXG +dXG +qXM +dXG +dXG +dXG +dXG +swj +eYz +stC +xHV +xHV +xHV +xHV +naW +bQM +bQM +bQM +bQM +tfP +tfP +kPY +jkw +rNc +qPb +qPb +qPb +qPb +gBx +gwH +gwH +gwH +tfP +bQM +bQM +bQM +bQM +bQM +tfP +tfP +xwC +xwC +xwt +tIC +kbT +kbT +kbT +kbT +qPb +qPb +gwH +gwH +xwC +qPb +qPb +wnD +kbT +kbT +kbT +wnD +kbT +gwH +gwH +rZP +rZP +rZP +rZP +rZP +jlk +jlk +mJc +jFz +aik +rZP +jlk +jlk +svP +bfF +rGq +lHx +bQM +bTo +afk +afk +afk +hkh +afk +afk +afk +iWq +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(34,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +agi +agi +agi +agi +agi +aWV +agi +jXz +jXz +jXz +jXz +jXz +jXz +jXz +xHV +xHV +xHV +eYz +swj +swj +swj +eYz +dXG +rqC +dXG +rqC +nsD +swj +swj +nIc +cmP +dIo +xHV +xHV +xHV +swj +swj +swj +swj +swj +dXG +dXG +swj +xHV +xHV +xHV +xHV +dXG +dXG +swj +sIC +sIC +swj +dXG +swj +eYz +eYz +xHV +xHV +xHV +xHV +naW +bQM +bQM +bQM +bQM +bQM +tfP +kPY +sig +xzs +qPb +qPb +qPb +qPb +gwH +gwH +gwH +tfP +tfP +rZP +lHx +lHx +lHx +tfP +tfP +xwC +xwC +xwC +qPb +qPb +kbT +kbT +kbT +kbT +tIC +qPb +qPb +gwH +gwH +qPb +wnD +kbT +kbT +kbT +kbT +qJr +qPb +gwH +gwH +jlk +xKj +xKj +xKj +jlk +jlk +jlk +svP +uzG +nMm +rZP +jlk +jlk +anJ +vsT +rGq +lHx +bQM +bTo +afk +afk +afk +pcu +afk +afk +afk +iWq +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(35,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +aWV +agi +agi +agi +agi +agi +agi +aWV +agi +jXz +tbG +ach +jXz +peA +tbG +jXz +cPs +xHV +xHV +pXt +swj +swj +swj +eYz +dXG +rqC +dXG +dXG +dXG +dXG +vwt +bxE +yis +dIo +swj +swj +swj +eYz +eYz +dXG +eYz +eYz +eYz +eYz +dXG +xHV +xHV +xHV +nsD +dXG +dXG +dXG +xHV +nsD +xHV +nsD +swj +eYz +eYz +eYz +xHV +xHV +xHV +pqC +bQM +bQM +bQM +bQM +xHV +tfP +tfP +kPY +mnr +hSG +hSG +hSG +hSG +mnr +uNM +uNM +rZP +mHR +uNM +rGq +rGq +rGq +uNM +uNM +rZP +rZP +uNM +uNM +kbT +kbT +kbT +kbT +kPY +kPY +kbT +kbT +kbT +wnD +wnD +kbT +kbT +kbT +kbT +qPb +qPb +qPb +gwH +rZP +jlk +xKj +jlk +xKj +rGq +kXs +rGq +svP +uzG +ddY +rZP +jlk +jlk +rGq +rGq +rGq +lHx +bQM +bTo +afk +afk +afk +hkh +afk +afk +afk +iWq +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(36,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +aWV +aWV +aWV +aWV +aWV +agi +agi +agi +agi +jXz +oiF +ach +jXz +dyh +gve +jXz +cPs +xHV +xHV +eYz +swj +swj +swj +eYz +dXG +lLe +dXG +dXG +dXG +dXG +swj +lbt +dXG +nsD +dXG +dXG +eYz +dXG +qXM +dXG +lLe +dXG +dXG +dXG +lLe +eYz +swj +xHV +swj +dXG +lLe +dXG +clu +dXG +clu +dXG +swj +oev +eYz +eYz +rki +xHV +xHV +pqC +bQM +bQM +bQM +xHV +xHV +dIo +uNM +uNM +uNM +hvL +hvL +hvL +hvL +uNM +uNM +uNM +uNM +taj +taj +taj +taj +taj +taj +taj +taj +pLj +taj +iQJ +tZk +tZk +tZk +tZk +iQJ +uNM +qJr +kbT +qJr +kbT +wnD +kbT +kbT +qPb +kbT +qPb +gwH +gwH +xwC +rZP +jlk +xKj +xKj +xKj +rGq +rGq +bDU +svP +mYy +nMm +rZP +jlk +kXs +rGq +osX +rGq +rZP +baC +aKA +jlH +jlH +tWI +llQ +jKI +jlH +jlH +bUB +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(37,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +aWV +agi +agi +agi +agi +agi +agi +agi +agi +jXz +jXz +jPY +jXz +jPY +jXz +jXz +jHz +xHV +xHV +eYz +eYz +eYz +eYz +dXG +swj +rqC +swj +rqC +nsD +dXG +dXG +lbt +dXG +dXG +dXG +dXG +dXG +dXG +rAU +swj +eYz +swj +dXG +eHD +dXG +dXG +dXG +eYz +sIC +qXM +dXG +dXG +xHV +dXG +xHV +nsD +swj +eYz +eYz +eYz +swj +rki +xHV +naW +naW +naW +xHV +xHV +xHV +xHV +jlk +uNM +uNM +uzG +rGq +rOI +dMt +wsz +wsz +iRn +wsz +qxP +rGq +rGq +rGq +rGq +jlk +rZP +xKj +xKj +xKj +svP +svP +svP +svP +svP +svP +jlk +tfP +kbT +kbT +kbT +kbT +kbT +kbT +qPb +xwC +xwC +gwH +gwH +xwC +rZP +jlk +xKj +jlk +xKj +rGq +rGq +rGq +svP +uzG +nMm +jlk +jlk +rGq +rGq +bfF +bDU +rZP +baC +baC +baC +bQM +bTo +pcu +iWq +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(38,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +aWV +agi +agi +lvD +agi +agi +agi +agi +mjx +dDT +pjg +gir +pjg +gir +pjg +dDT +pjg +gir +dXG +swj +swj +swj +dXG +xHV +swj +rqC +swj +rqC +dXG +wKE +dXG +lbt +dXG +dXG +dXG +dXG +swj +rAU +dIo +rqC +rqC +dIo +dIo +dIo +obI +dxP +dXG +eYz +dXG +dXG +sIC +swj +nsD +dXG +dXG +dXG +swj +eYz +eYz +eYz +swj +swj +swj +xHV +xHV +xHV +xHV +xHV +xHV +xHV +jlk +uNM +uNM +uzG +fpn +fpn +taj +fpn +taj +fpn +fpn +nMm +uDX +rGq +rGq +svP +svP +svP +jWg +jlk +jWg +svP +svP +svP +svP +uDX +svP +jlk +jlk +jlk +knh +knh +jlk +kbT +kbT +kbT +xwC +xwC +xwC +xwC +xwC +rZP +jlk +xKj +xKj +xKj +rGq +rGq +gJu +heA +tmI +nMm +rGq +knh +rGq +rGq +bfF +rGq +jlk +baC +baC +baC +baC +baC +pcu +iWq +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(39,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +agi +agi +rbv +aeb +otg +dLL +hoZ +mjx +gir +mDn +gir +mDn +gir +mDn +gir +mDn +gir +dXG +dXG +dXG +dXG +xHV +xHV +xHV +rqC +swj +rqC +dXG +dXG +dXG +lbt +dXG +lLe +dXG +dXG +dXG +eYz +rqC +rqC +iYJ +dIo +kKt +rqC +dCu +eYz +dXG +dXG +dXG +dXG +sIC +dIo +dIo +nsD +dIo +dIo +swj +eYz +eYz +eYz +gPo +eYz +gPo +byJ +eWr +xHV +dIo +naW +xHV +xHV +jlk +uNM +uNM +oHm +mLY +arG +mLY +mLY +mLY +mLY +bZD +nMm +svP +svP +svP +svP +svP +svP +jWg +jWg +dZj +tcB +xtm +tcB +hvL +svP +svP +svP +svP +jlk +rGq +rGq +jlk +jlk +mXk +rGq +jlk +jlk +jlk +rZP +rZP +rZP +jlk +jlk +rGq +rGq +rGq +rGq +jFl +svP +fAr +nMm +rGq +knh +taj +pWO +tuk +wky +jlk +baC +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(40,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +agi +agi +hoZ +igc +jnU +nUS +oiV +lvD +jHz +gNJ +mjx +mjx +gNJ +mjx +mjx +gNJ +mjx +mjx +rAU +swj +swj +swj +xHV +xHV +xHV +hgh +swj +rqC +nsD +swj +swj +bxE +dXG +dXG +dXG +dXG +eYz +lLe +rqC +nKo +jri +dIo +fCF +wfo +dIo +swj +eYz +dXG +swj +swj +xHV +dIo +vzT +rPd +vlN +dIo +iNk +eYz +eYz +eYz +uPX +eYz +uPX +sze +lgH +swj +dIo +naW +xHV +xHV +iaE +amF +amF +amF +amF +amF +amF +amF +amF +iaE +uzG +nMm +uDX +svP +uDX +svP +svP +uDX +jWg +jlk +dZj +wjC +wsz +tzW +hvL +uDX +svP +uDX +svP +rGq +rGq +rGq +rGq +knh +bfF +rGq +rGq +jlk +jlk +jlk +rZP +jlk +jlk +rGq +nYE +rGq +rGq +rGq +gJu +heA +tmI +nMm +svP +knh +rGq +hlT +bfF +jlk +jlk +baC +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(41,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +agi +agi +hoZ +rbv +jCe +hrw +ddN +lvD +mjx +gir +pjg +gir +pjg +gir +pjg +gir +pjg +gir +doD +doD +doD +xHV +xHV +rqC +rqC +rqC +swj +rqC +swj +xHV +xHV +nIc +dXG +nsD +dXG +dXG +eYz +nib +dIo +dIo +dIo +dIo +dIo +dIo +dIo +bbU +eYz +dXG +swj +xHV +xHV +dIo +ojW +rqC +eGO +dIo +dIo +dIo +dIo +dIo +dIo +swj +swj +uPX +vXy +byJ +byJ +byJ +eWr +xHV +iaE +amF +fjX +jXZ +jXZ +jXZ +jXZ +lZf +amF +iaE +uzG +nMm +hvL +hvL +hvL +hvL +hvL +hvL +dZj +dZj +dZj +tmI +pnx +mSZ +hvL +hvL +hvL +svP +svP +rGq +taj +rGq +rGq +knh +bfF +rGq +rGq +rGq +svP +jlk +rZP +daK +rGq +rGq +svP +rGq +rGq +rGq +wcP +svP +uzG +nMm +svP +jlk +jlk +rZP +rZP +rZP +rZP +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(42,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +agi +agi +hoZ +lvD +lvD +lvD +dSM +lvD +mjx +qph +mDn +gir +mDn +gir +mDn +iZm +mDn +gir +hoZ +jHz +swj +xHV +xHV +swj +swj +swj +swj +xHV +xHV +xHV +xHV +nIc +cmP +dIo +dXG +dXG +eYz +eYz +dCu +rqC +wgs +dIo +tle +rqC +dCu +eYz +dXG +dXG +dXG +dXG +dXG +dXG +rqC +hbn +swj +dIo +xHV +xHV +xHV +xHV +dIo +dIo +qoc +eYz +eYz +swj +whu +srt +lgH +pIw +amF +amF +hiO +ask +mzy +sXi +kZS +hiO +amF +amF +uZu +dMt +wsz +wsz +wsz +wsz +wsz +wsz +wsz +wsz +wsz +tnw +taj +nMm +wsz +qxP +hvL +svP +svP +rGq +rGq +rGq +rGq +knh +bfF +rGq +rGq +rGq +svP +rZP +rZP +rGq +rGq +rGq +svP +svP +fpn +fpn +ace +svP +uzG +nMm +svP +jlk +jlk +rZP +baC +baC +cbN +cbN +cbN +cbN +cbN +cbN +cbN +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(43,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +agi +agi +nub +pCX +lvD +aeb +otg +dLL +lvD +jXz +jXz +nub +gLv +jXz +jPY +jXz +jXz +aDc +hoZ +lLQ +jHz +sIC +xHV +rqC +swj +rqC +rqC +rqC +xHV +xHV +xHV +xHV +nIc +yis +dIo +ody +dXG +dXG +dXG +dIo +rqC +uWA +dIo +bbp +iQj +dIo +kVW +swj +eYz +dXG +swj +xHV +dIo +rZM +sHL +swj +dIo +dXG +dXG +xHV +xHV +xHV +dIo +qoc +gPo +eWr +swj +swj +ifm +vXy +swj +pyK +sXi +pyK +rGq +rGq +rGq +rGq +pyK +sXi +pyK +uzG +taj +fpn +fpn +taj +fpn +fpn +taj +fpn +fpn +taj +ajZ +taj +nMm +nOy +nMm +hvL +svP +svP +rGq +rGq +jlk +knh +jlk +vsT +rGq +rGq +rGq +svP +hlk +xiO +rGq +bDU +rGq +wsz +wsz +wsz +wsz +cBG +sVW +hgD +nMm +svP +okT +jlk +rZP +baC +baC +cbN +baC +baC +baC +baC +baC +cbN +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(44,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +agi +aWV +hoZ +hoZ +hoZ +kCS +jnU +nUS +oiV +lvD +jHz +erl +hoZ +hoZ +jXz +ach +agi +jXz +agi +lLQ +lLQ +jHz +swj +xHV +rqC +swj +rqC +dIo +dIo +dIo +dIo +xHV +xHV +nIc +dIo +dIo +qoc +dXG +dXG +dxP +dIo +dIo +dIo +dIo +dIo +dIo +dIo +cbE +dXG +eYz +dXG +swj +xHV +dIo +rAU +tCv +teI +dIo +xHV +mfe +xHV +xHV +xHV +dIo +qoc +eYz +eYz +ntc +ntc +vXy +eYz +eYz +sXi +fpn +sXi +rGq +bDU +rGq +rGq +sXi +fpn +sXi +uzG +ugk +mLY +mLY +mLY +mLY +mLY +mLY +mLY +mLY +mLY +uzG +taj +nMm +mLY +aJv +hvL +svP +svP +rGq +rGq +knh +rGq +bfF +rGq +oDe +rGq +rGq +rGq +svP +hvL +rGq +rGq +rGq +mLY +mLY +mLY +mLY +oIE +uaM +hzL +aJv +svP +rGq +jlk +rZP +baC +baC +cbN +baC +baC +baC +baC +baC +cbN +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(45,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +bQM +bQM +aWV +cVQ +nub +hoZ +lvD +jCe +hrw +ddN +lvD +jHz +hoZ +hoZ +agi +agi +agi +agi +agi +agi +lLQ +lLQ +jHz +jHz +jHz +rqC +swj +rqC +dIo +tYw +tYw +dIo +xHV +xHV +qgi +xHV +xHV +fBr +dXG +eYz +dXG +xHV +xHV +xHV +xHV +xHV +dXG +dXG +dXG +egL +eYz +qXM +dXG +swj +dIo +dIo +dXG +dIo +dIo +xHV +xHV +xHV +xHV +dIo +dIo +qoc +gPo +eWr +vdJ +byJ +eWr +eYz +eYz +sXi +fpn +sXi +rGq +rGq +rGq +rGq +sXi +fpn +sXi +uzG +nMm +hvL +hvL +hvL +hvL +hvL +hvL +hvL +hvL +hvL +tmI +pnx +mSZ +hvL +hvL +hvL +svP +rGq +taj +boe +jlk +rGq +bfF +rGq +rGq +rGq +rGq +rGq +svP +hvL +rGq +rGq +rGq +svP +rZP +svP +svP +jtM +fAr +mSZ +svP +svP +rGq +jlk +rZP +cbN +cbN +cbN +cbN +cbN +cbN +cbN +cbN +cbN +cbN +cbN +cbN +baC +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(46,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +agi +agi +bQM +bQM +bQM +aWV +pCX +hoZ +hoZ +dSM +lvD +hbt +lvD +lvD +hoZ +hoZ +hoZ +agi +gQK +agi +gQK +agi +aWV +aWV +jHz +hoZ +hoZ +hoZ +rqC +swj +rqC +dIo +tYw +tYw +dIo +xHV +xHV +qgi +xHV +xHV +fBr +dXG +eYz +dXG +swj +xHV +swj +eYz +eYz +eYz +eYz +dXG +dXG +dXG +dXG +eYz +swj +dXG +swj +eYz +rAU +dIo +dIo +dIo +dIo +dIo +dIo +swj +dUf +eYz +eYz +swj +whu +xPk +eWr +swj +sXi +sXi +sXi +rGq +rGq +rGq +rGq +sXi +sXi +sXi +uzG +nMm +uDX +svP +uDX +svP +svP +uDX +svP +uDX +hvL +fAr +rsU +lIA +hvL +uDX +svP +uDX +rGq +rGq +jlk +jlk +jlk +omD +knh +knh +jlk +jlk +svP +svP +hvL +rGq +rGq +rGq +htD +rZP +jDR +rGq +svP +uzG +nMm +svP +rGq +rGq +rGq +jlk +jlk +jlk +jlk +jlk +jlk +baC +baC +baC +cbN +baC +baC +cbN +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(47,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +agi +agi +bQM +bQM +bQM +aWV +hoZ +nub +hoZ +lvD +aeb +otg +dLL +lvD +jXz +oED +hoZ +agi +gQK +agi +gQK +agi +agi +lLQ +jHz +hoZ +pCX +hoZ +rqC +bdE +rqC +dIo +dIo +dIo +dIo +xHV +xHV +xHV +xHV +xHV +xHV +dXG +dXG +eYz +dXG +eYz +dXG +dXG +lLe +dXG +dXG +vLX +eYz +eYz +eYz +eYz +dXG +dXG +dXG +eYz +swj +qdC +swj +whu +swj +whu +swj +dUf +swj +gPo +vUF +swj +swj +swj +lgH +pIw +amF +amF +hiO +tYd +oxK +lev +nPA +hiO +amF +amF +uZu +nMm +svP +fAS +svP +svP +svP +svP +svP +svP +hvL +tmI +pnx +mSZ +hvL +svP +svP +rGq +rGq +jlk +jlk +jlk +jlk +bfF +rGq +rGq +mMk +rZP +rZP +msF +sMX +svP +svP +dZo +dae +rZP +rGq +rGq +svP +uzG +nMm +svP +rGq +oyd +rGq +jlk +jlk +jlk +wuA +ybU +irB +baC +baC +baC +cbN +baC +baC +cbN +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(48,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +bQM +bQM +aWV +cVQ +hoZ +pCX +lvD +jnU +nUS +oiV +lvD +jXz +hoZ +jHz +nub +gVx +hro +jor +jXz +hoZ +lLQ +jHz +oED +hoZ +hoZ +rqC +swj +rqC +rqC +rqC +rqC +pqC +bQM +bQM +bQM +pqC +xHV +xHV +swj +swj +dXG +dXG +dXG +dXG +qXM +dXG +wKE +dXG +dXG +dXG +xHV +eYz +eYz +gPo +eYz +gPo +eYz +gPo +eYz +gPo +eYz +gPo +eYz +gPo +eYz +gPo +bhW +lgH +gPo +cPC +eWr +oJY +swj +wLT +amF +aXn +jXZ +jXZ +jXZ +jXZ +qCW +amF +iaE +oHm +aJv +svP +svP +dVR +svP +svP +svP +svP +uDX +hvL +uzG +taj +nMm +hvL +uNM +yhu +uNM +jlk +jlk +jlk +jlk +uEY +kpp +rGq +rGq +snW +rZP +rZP +rZP +rZP +rGq +rGq +rZP +rZP +rZP +rGq +rGq +rGq +uzG +nMm +rGq +lzJ +lzJ +lzJ +lzJ +lzJ +irB +lzJ +kxQ +irB +baC +baC +baC +cbN +baC +baC +cbN +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(49,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +agi +agi +agi +agi +agi +agi +aWV +hoZ +nub +hoZ +lvD +jCe +hrw +ddN +lvD +nub +jHz +jHz +jXz +hhL +hro +jqs +nub +hoZ +lLQ +jHz +jHz +jHz +jHz +rqC +swj +swj +swj +swj +rqC +pqC +bQM +bQM +bQM +pqC +xHV +xHV +swj +dXG +swj +xEy +swj +swj +xgb +rqC +rqC +swj +swj +xHV +xHV +xHV +eYz +uPX +eYz +uPX +eYz +uPX +eYz +uPX +eYz +uPX +eYz +uPX +eYz +uPX +sze +lgH +uPX +gLV +enx +eWr +apw +wLT +amF +amF +amF +amF +amF +amF +amF +amF +iaE +jlk +jlk +jlk +svP +svP +svP +svP +bcz +svP +jlk +hvL +uzG +taj +nMm +hvL +yhu +tMS +jlk +jlk +jlk +jlk +jlk +uEY +vsT +rGq +rGq +uha +rZP +jlk +jlk +jlk +knh +knh +jlk +jlk +rGq +bDU +rGq +rGq +jlk +jlk +ctc +lzJ +lzJ +oPU +lzJ +lzJ +hUi +lzJ +kxQ +irB +baC +baC +baC +cbN +baC +baC +cbN +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(50,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +agi +agi +agi +agi +agi +agi +aWV +jXz +jXz +hoZ +lvD +lvD +lvD +lvD +lvD +jXz +jXz +jHz +agi +gQK +agi +gQK +agi +agi +aWV +aWV +aWV +aWV +aWV +aWV +rqC +rqC +wgq +swj +rqC +pqC +bQM +bQM +bQM +pqC +xHV +xHV +xHV +dIo +dIo +dIo +dIo +dIo +rAU +eYz +eYz +rAU +sIC +xHV +xHV +xHV +xHV +xHV +tiY +dXG +eYz +swj +qdC +swj +whu +swj +whu +swj +dUf +swj +uPX +vXy +udj +swj +cRx +vts +apw +apw +amF +amF +amF +amF +amF +amF +amF +amF +amF +rZP +rZP +rZP +uDX +oTy +oTy +rZP +rZP +jlk +jlk +hvL +uzG +taj +nMm +hvL +uNM +jlk +jlk +jlk +jlk +jlk +jlk +rZP +jDR +rGq +rGq +ugm +jlk +jlk +jlk +jlk +rGq +rGq +jlk +rGq +rGq +rGq +rGq +kXs +jlk +jlk +jlk +lzJ +lzJ +oPU +lzJ +lzJ +lzJ +lzJ +lzJ +irB +baC +baC +baC +cbN +cbN +cbN +cbN +cbN +cbN +cbN +cbN +cbN +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(51,1,1) = {" +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +aWV +aWV +rmu +rmu +rmu +aWV +vOP +aWV +jHz +jHz +jHz +oxv +wxY +oxv +jHz +jHz +hoZ +hoZ +mJq +aWV +mjx +mjx +aWV +mjx +mjx +aWV +pab +pnS +aWV +agi +swj +rqC +swj +rqC +tYw +xHV +xHV +xHV +xHV +xHV +dIo +dIo +dIo +dIo +dIo +dIo +dIo +swj +rqC +rqC +swj +xHV +xHV +xHV +xHV +xHV +xHV +swj +odC +iGw +rAU +dIo +dIo +dIo +kUj +kUj +kUj +swj +dUf +eYz +eYz +swj +whu +swj +orV +mZo +apw +amF +amF +amF +amF +amF +amF +amF +amF +amF +amF +rZP +afW +taj +taj +taj +lhJ +jlk +rZP +jlk +kZl +uzG +taj +nMm +dkz +jlk +jlk +jlk +jlk +jlk +jlk +rZP +rZP +rGq +rGq +rGq +jlk +jlk +jlk +jlk +jlk +rGq +rGq +rGq +rGq +oyd +rGq +rGq +kXs +jlk +jlk +jlk +lzJ +lzJ +lzJ +fyO +lzJ +lzJ +lzJ +tkj +irB +irB +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +cbN +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(52,1,1) = {" +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +aWV +jXz +lLQ +hWv +lLQ +jHC +jXz +pPG +jXz +hoZ +jHz +hoZ +gFg +hoZ +gFg +hoZ +hoZ +hoZ +hoZ +hoZ +nub +qxy +gir +nub +gir +qxy +nub +gir +gir +nub +pCX +swj +rqC +eRl +rqC +swj +gyA +xHV +xHV +xHV +nsD +swj +swj +dIo +swj +tMU +swj +tYw +xHV +eYz +eYz +swj +xHV +xHV +xHV +xHV +xHV +xHV +dIo +dIo +dOk +wwa +dIo +krb +krb +swj +swj +kUj +kUj +xHV +uPX +vXy +kzs +ntc +tKN +vXy +apw +wLT +amF +amF +amF +amF +amF +amF +amF +amF +iaE +jlk +mHR +olk +xtd +taj +taj +pdP +jlk +rZP +jlk +kZl +uzG +taj +nMm +aHJ +jlk +jlk +ugI +ugI +jlk +jlk +umy +umy +rGq +rGq +rGq +rGq +jlk +jlk +jlk +jlk +rGq +oyd +rGq +rGq +rGq +rGq +rGq +jlk +jlk +jlk +jlk +lzJ +lzJ +lzJ +eVK +lzJ +lzJ +lzJ +tkj +lzJ +irB +irB +irB +irB +baC +baC +baC +baC +baC +baC +baC +cbN +baC +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(53,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +aWV +jXz +lLQ +lLQ +lLQ +lLQ +lLQ +lvD +efI +lvD +hoZ +hoZ +hoZ +vjT +gFg +vjT +lrA +lrA +lrA +hoZ +hoZ +hsc +jMk +kCY +hoZ +hoZ +hoZ +hsc +hoZ +pCX +hoZ +hoZ +nub +rqC +swj +rqC +swj +sPJ +swj +nsD +nsD +swj +qXM +swj +iwZ +lLe +eYz +eYz +fJj +swj +rqC +rqC +qXM +xHV +xHV +tYw +tYw +tYw +tYw +dIo +tss +rqC +rqC +rqC +eYz +rqC +rqC +rqC +eYz +kUj +kUj +eYz +vLX +byJ +byJ +xZM +apw +swj +wLT +amF +fjX +jXZ +jXZ +jXZ +jXZ +lZf +amF +iaE +xFf +rZP +rZP +oTy +oTy +oTy +rZP +rZP +rZP +jlk +jlk +uzG +taj +nMm +hvL +kXs +gQL +taj +taj +taj +knh +rGq +rGq +tQm +rGq +jlk +rGq +jlk +jlk +jlk +jlk +rGq +rGq +rGq +jlk +jlk +jlk +uNM +jlk +jlk +jlk +jlk +lzJ +fyO +lzJ +irB +irB +uYx +lzJ +lzJ +oer +plu +lzJ +irB +irB +baC +baC +baC +baC +baC +baC +baC +cbN +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(54,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +rmu +qGy +lLQ +lLQ +lLQ +lLQ +lLQ +lvD +bez +lvD +hoZ +hoZ +gGx +hoZ +oED +hoZ +lrA +agi +lrA +hoZ +hoZ +hsc +hoZ +hoZ +hoZ +hoZ +hoZ +hsc +hoZ +hoZ +hoZ +hoZ +hoZ +loj +swj +rqC +jRk +fcg +swj +swj +eRl +dXG +lLe +dXG +qXM +dXG +eYz +eYz +dXG +swj +eYz +eYz +swj +xHV +xHV +tYw +tYw +tYw +tYw +dIo +rNV +xzj +kdK +xzj +rqC +xzj +xzj +xzj +rqC +xHV +kUj +uPX +vXy +swj +swj +swj +lgH +pIw +amF +amF +hiO +wEX +sXi +sXi +kZS +hiO +amF +amF +bDx +jlk +jlk +taj +taj +taj +pdP +rZP +kbb +rZP +jlk +jlk +stf +nMm +hvL +svP +svP +svP +svP +svP +mJc +rGq +rGq +rGq +rGq +rGq +rGq +rZP +jlk +jlk +jlk +uNM +eYC +uNM +jlk +jlk +jlk +uNM +jlk +jlk +jlk +lzJ +lzJ +lzJ +lzJ +irB +irB +irB +lzJ +lzJ +oer +lzJ +lzJ +lzJ +irB +irB +irB +irB +irB +irB +irB +irB +itN +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(55,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +rmu +lLQ +lLQ +lLQ +lLQ +lLQ +lLQ +lvD +uMZ +lvD +hoZ +hoZ +fqF +hoZ +hoZ +hoZ +lrA +agi +lrA +hoZ +hoZ +hsc +hoZ +kHa +hoZ +hoZ +hoZ +hsc +hoZ +hoZ +hoZ +hoZ +pCX +rqC +swj +rqC +rqC +rqC +rqC +gxR +dXG +swj +dXG +nsD +dIo +eWA +eYz +eWA +dIo +swj +rqC +rqC +swj +guU +xHV +tYw +tYw +tYw +tYw +dIo +xZx +xzj +xzj +xzj +rqC +xzj +xzj +xzj +xHV +xHV +kUj +eYz +eYz +swj +whu +ifm +vXy +swj +pyK +sXi +pyK +rGq +rGq +rGq +rGq +pyK +sXi +pyK +kCH +qxP +hvL +hvL +hvL +veP +fmY +xYo +hvL +jlk +jlk +jlk +taj +nMm +hvL +hvL +hvL +uxd +hvL +svP +mJc +rGq +bDU +rGq +rGq +rGq +qiq +rZP +rZP +jlk +jlk +rur +oPU +oPU +voi +fjr +jgu +jgu +jgu +irB +oer +lzJ +lzJ +oPU +mCA +irB +irB +irB +irB +tkj +lzJ +lzJ +lzJ +fyO +oPU +irB +irB +irB +irB +irB +irB +wbI +itN +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(56,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +rmu +mVO +lLQ +lLQ +lLQ +lLQ +odl +jXz +pPG +jXz +jHz +jHz +hoZ +vjT +gFg +vjT +lrA +lrA +lrA +hoZ +hoZ +hVu +hoZ +hoZ +jMk +mdd +hoZ +hVu +hoZ +hoZ +hoZ +hoZ +hoZ +lLe +swj +swj +swj +swj +swj +rqC +xHV +nsD +xHV +xHV +dIo +eWA +eYz +eWA +dIo +cKb +eYz +eYz +pIw +tYw +tYw +tYw +tYw +tYw +tYw +dIo +cTx +xzj +xzj +xzj +rqC +xzj +xzj +dXG +xHV +xHV +dIo +uPX +vXy +ntc +ntc +vXy +eYz +eYz +sXi +fpn +sXi +rGq +rGq +rGq +rGq +sXi +fpn +sXi +uzG +dMt +wsz +uMm +wsz +ddM +iQK +ddM +wsz +wsz +ruu +wsz +taj +dMt +wsz +wsz +wsz +qxP +hvL +svP +jlk +jlk +jlk +rGq +rGq +rGq +rGq +dxE +rZP +jlk +jlk +vxI +oPU +oPU +voi +bBB +jgu +jgu +jgu +pvz +oer +oPU +lzJ +lzJ +irB +irB +irB +irB +irB +tkj +oer +pIA +lzJ +lzJ +lzJ +irB +irB +irB +irB +irB +gOd +wbI +itN +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(57,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +aWV +jXz +lvD +lvD +lvD +jXz +aWV +aWV +aWV +vOP +jXz +hoZ +hoZ +hoZ +gFg +iKg +gFg +hoZ +hoZ +hoZ +hoZ +hoZ +nub +qxy +gir +nub +qxy +gir +nub +qxy +gir +nub +agi +hoZ +dXG +jEz +swj +swj +swj +swj +rqC +dIo +tYw +xHV +xHV +dIo +eWA +ycw +eWA +dIo +bnM +rqC +rqC +swj +tYw +vel +lAQ +tYw +tYw +tYw +dIo +tss +rqC +rqC +rqC +eYz +xHV +rqC +xHV +xHV +xHV +swj +eYz +eYz +byJ +byJ +eWr +eYz +eYz +sXi +fpn +sXi +rGq +ugT +rGq +rGq +sXi +fpn +sXi +uzG +ugk +mLY +inO +mLY +mEY +nWh +ugk +mLY +mLY +oGg +mLY +mLY +mLY +mLY +bZD +svP +nMm +hvL +svP +iXV +jlk +jlk +kXs +rGq +rGq +rGq +rGq +rZP +jlk +jlk +xUr +oPU +oPU +wgO +wgO +wgO +vhB +wgO +tkj +oer +lzJ +lzJ +irB +irB +irB +irB +irB +irB +tkj +oer +irB +irB +lzJ +lzJ +oPU +irB +irB +irB +hub +uiD +wbI +itN +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(58,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bQM +bQM +bQM +cAW +bTo +aaa +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +agi +agi +agi +sSY +ruJ +lZs +evd +rWQ +ruJ +sSY +aWV +aWV +aWV +dec +jXz +jXz +jXz +vjT +gFg +vjT +hoZ +hoZ +hoZ +hoZ +hoZ +aWV +mjx +mjx +aWV +mjx +mjx +qRg +mjx +mjx +aWV +agi +agi +xHV +xHV +rqC +rqC +rqC +rqC +rqC +dIo +xHV +xHV +dIo +dIo +dIo +dIo +dIo +dIo +rqG +kLz +kLz +bNE +bNE +bNE +bNE +rqG +xJw +xJw +rja +rja +apf +apf +rja +egv +egv +egv +egv +egv +bNE +apf +uPX +vXy +swj +uXP +xPk +eWr +swj +sXi +sXi +sXi +rGq +rGq +rGq +rGq +sXi +sXi +sXi +oHm +aJv +jlk +jlk +gmN +uzG +taj +nMm +hvL +jlk +jlk +jlk +veP +hvL +hvL +uzG +taj +nMm +hvL +svP +yif +jlk +jlk +aHg +rGq +rGq +rGq +cye +jlk +jlk +jlk +xUr +oPU +oPU +wgO +wgO +wgO +vhB +wgO +tkj +oer +oPU +lzJ +irB +irB +irB +irB +irB +irB +tkj +oer +oPU +oPU +oPU +oPU +oPU +oPU +oPU +oPU +tkj +gOd +qkg +itN +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(59,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bQM +bQM +bQM +cAW +bTo +pcu +iWq +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +agi +agi +agi +aWV +jXz +lvD +lvD +lvD +jXz +jXz +jXz +jXz +kME +kME +imN +jXz +lvD +lLQ +hoZ +hoZ +hoZ +hoZ +jHz +jHz +hoZ +aWV +aWV +aWV +aWV +aWV +aWV +aWV +aWV +aWV +aWV +agi +agi +xJw +xJw +gAh +apf +apf +bvY +apf +gAh +egv +rqG +bNE +bNE +bNE +bNE +pQs +pQs +pQs +pQs +bNE +bNE +raL +rty +iXJ +raL +rqG +xJw +rja +uvZ +apf +apf +uvZ +egv +egv +egv +egv +egv +bNE +xna +eYz +eYz +swj +swj +swj +lgH +rZP +amF +amF +hiO +tYd +hRs +qLN +emm +hiO +amF +amF +duw +jlk +jlk +jlk +jlk +uzG +taj +nMm +cHK +jlk +jlk +jlk +jlk +aKN +hvL +uzG +taj +nMm +hvL +jlk +jlk +jlk +jlk +kXs +rGq +rGq +rGq +rGq +jlk +jlk +jlk +vxI +oPU +oPU +voi +vcN +jgu +jgu +jgu +bxm +oer +oPU +vQC +oPU +jls +irB +irB +irB +irB +tkj +uWO +gSX +gSX +oTT +oPU +oPU +oPU +gAn +oPU +tkj +oer +jFO +itN +itN +itN +itN +itN +irB +irB +irB +irB +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +"} +(60,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bQM +bQM +bQM +cAW +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +agi +agi +agi +agi +aWV +rqY +hFC +lLQ +lLQ +lvD +lLQ +lLQ +lLQ +lvD +fuw +lLQ +lLQ +lvD +lLQ +hoZ +hoZ +hoZ +hoZ +hoZ +jHz +jHz +agi +agi +agi +agi +hoZ +jHz +qFs +agi +agi +agi +aWV +aWV +xJw +gAh +oEi +kyF +kyF +xDk +apf +bNE +bNE +pQs +pQs +pQs +pQs +pQs +pQs +pQs +pQs +pQs +pQs +pQs +rKA +qCk +cvd +rRz +cjG +xJw +rja +bNE +yiR +xna +bNE +egv +egv +egv +egv +apf +apf +wUs +odC +vXy +ntc +ntc +ntc +vXy +rZP +iaE +amF +aXn +jXZ +jXZ +jXZ +jXZ +qCW +amF +iaE +lev +jlk +jlk +oOp +xpO +uzG +taj +nMm +jlk +jlk +jlk +jlk +jlk +jlk +hvL +uzG +taj +khd +hvL +jlk +jlk +jlk +rZP +mWO +svP +rGq +rGq +rGq +jlk +jlk +rZP +lwA +oPU +oPU +voi +xck +jgu +oCe +jgu +tkj +oer +oPU +uKE +oPU +rsg +kDa +irB +jgu +jgu +cPL +uCX +jgu +jgu +hcY +wgO +gqM +gSX +gSX +oTT +tkj +oer +vLH +itN +aju +wGf +wbI +itN +itN +itN +itN +irB +baC +baC +baC +baC +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +"} +(61,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bQM +bQM +bQM +cAW +bQM +aaa +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +agi +agi +agi +agi +agi +aWV +rRg +lLQ +lLQ +lLQ +lvD +lLQ +lLQ +lLQ +lvD +lLQ +lLQ +lLQ +lvD +otg +dLL +agi +nub +hoZ +hoZ +jHz +jHz +agi +agi +agi +agi +agi +jHz +qFs +agi +jXz +jXz +aWV +aWV +xJw +xJw +nhM +mMH +aBs +cOj +pQs +apf +pQs +pQs +pQs +pQs +xLj +pQs +pQs +pQs +pQs +pQs +pQs +pQs +raL +wND +imp +raL +bNE +rja +rja +bNE +apf +apf +wUs +uvZ +egv +uvZ +apf +yiR +apf +bNE +eYz +eYz +tYw +swj +swj +swj +uNM +uNM +uNM +amF +amF +amF +amF +amF +amF +amF +uNM +uNM +uNM +taj +oOp +xpO +hBf +taj +nMm +jlk +jlk +jlk +jlk +jlk +jlk +wuN +jFz +jlk +aik +wuN +jlk +jlk +jlk +rZP +uci +svP +rGq +rGq +rGq +bjR +mvY +glG +voi +oPU +oPU +voi +oPZ +jgu +oCe +jgu +tkj +oer +oPU +rsg +kDa +sTU +jgu +kXD +jgu +qOW +mWs +dCK +chT +jgu +cPL +sTm +uCX +jgu +jgu +hcY +tkj +oer +xVW +oyT +oyT +oyT +uaL +qNv +sUt +jgu +veJ +irB +baC +baC +bQM +bQM +bQM +baC +baC +baC +baC +bQM +bQM +bQM +bQM +"} +(62,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bQM +bQM +bQM +cAW +bTo +pcu +iWq +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +agi +agi +agi +agi +agi +agi +aWV +oLK +lLQ +lLQ +lLQ +lvD +lLQ +lLQ +lLQ +lvD +lLQ +lLQ +lLQ +lvD +lLQ +oiV +jXz +hoZ +hoZ +pCX +hoZ +hoZ +hoZ +agi +agi +agi +hoZ +hoZ +qFs +egv +xJw +xJw +xJw +xJw +xJw +rja +nhM +dGx +kLI +cOj +pQs +pQs +qGP +pQs +pQs +pQs +pQs +pQs +gAh +pQs +pQs +pQs +gAh +pQs +pQs +pQs +pQs +pQs +bNE +apf +apf +yiR +bNE +apf +apf +apf +apf +apf +apf +bNE +bNE +apf +gPo +qXM +rAU +tYw +tYw +dXG +uNM +qjR +uNM +eUo +wXy +taj +uNM +taj +wXy +eUo +uNM +uNM +uNM +taj +vaC +hvL +uzG +taj +hpn +hvL +jlk +jlk +jlk +jlk +svP +hvL +uzG +wIp +nMm +hvL +svP +jlk +jlk +rZP +mJg +svP +rGq +rGq +rGq +svP +nTV +glG +voi +oPU +oPU +voi +ktq +jgu +jgu +jgu +bxm +oer +oPU +uLf +jgu +kXD +jgu +wbI +wbI +wbI +tkj +oer +wbI +eVf +wnu +wnu +dqE +tNV +kXD +hcY +tkj +oer +lzJ +mtG +tiZ +tiZ +tiZ +qNv +cbA +jgu +irB +irB +baC +bQM +bQM +bQM +bQM +bQM +baC +baC +baC +baC +bQM +bQM +bQM +"} +(63,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bQM +bQM +bQM +cAW +bTo +pcu +iWq +cAW +cAW +cAW +cAW +cAW +cAW +cAW +agi +agi +agi +agi +agi +agi +agi +agi +aWV +rqY +lLQ +lLQ +lLQ +lvD +lLQ +lLQ +lLQ +lvD +lLQ +lLQ +lLQ +lvD +hrw +ddN +jXz +agi +agi +hoZ +hoZ +moW +hoZ +hoZ +agi +agi +hoZ +jHz +jHz +egv +xJw +xJw +xJw +xJw +xJw +rja +lge +sWe +sWe +lRr +apf +pQs +pQs +pQs +pQs +pQs +bNE +aPO +bNE +bNE +bNE +aPO +bNE +pQs +pQs +pQs +pQs +pQs +pQs +wUs +hSH +apf +wUs +unA +apf +apf +apf +bNE +bNE +apf +egv +egv +nwT +pLS +fTd +taj +taj +taj +taj +svP +svP +svP +svP +svP +svP +svP +svP +svP +hvL +bUt +taj +taj +hvL +uxd +uzG +cDb +nMm +hvL +jlk +jlk +jlk +svP +svP +hvL +uzG +wIp +nMm +hvL +svP +jlk +jlk +jlk +kXs +rGq +rGq +rGq +rGq +svP +siE +glG +xUr +oPU +oPU +wgO +wgO +wgO +vhB +wgO +tkj +oer +rsg +sTU +kXD +oRR +dLq +xVW +oyT +oyT +oWw +exI +oyT +oyT +ijt +wbI +wbI +lzJ +kXD +hcY +tkj +lzJ +irB +lzJ +wbI +wbI +wbI +itN +itN +itN +itN +irB +baC +bQM +bQM +bQM +bQM +bQM +bQM +baC +baC +baC +bQM +bQM +bQM +"} +(64,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bQM +bQM +bQM +cAW +bTo +pcu +iWq +cAW +cAW +cAW +cAW +cAW +cAW +cAW +agi +agi +agi +agi +agi +agi +agi +agi +aWV +aWV +cYV +fUz +edu +aWV +jXz +jXz +jXz +aWV +cYV +fUz +mIf +jXz +otg +dLL +jXz +agi +agi +jHz +hoZ +hoZ +idi +hoZ +agi +agi +hoZ +jHz +jHz +rja +rja +rja +rja +rja +rja +rqG +pQs +pQs +apf +pQs +pQs +bNE +bNE +bNE +bNE +bNE +rja +rja +rja +rja +rja +rja +rja +rqG +bNE +pQs +pQs +pQs +pQs +pQs +qwK +unA +rja +rja +xJw +apf +apf +apf +apf +egv +egv +egv +cYI +tpF +gFW +taj +taj +taj +svP +hvL +hvL +hvL +hvL +hvL +hvL +hvL +hvL +hvL +hvL +hvL +hvL +hvL +hvL +uNM +jFz +wIp +aik +uNM +whl +vmT +fxL +svP +svP +hvL +uzG +wIp +nMm +hvL +svP +jlk +jlk +jlk +jlk +rGq +rGq +rGq +rGq +jlk +jlk +rZP +aIB +bFC +oPU +wgO +wgO +wgO +vhB +wgO +tkj +oer +uLf +jgu +jgu +wbI +wbI +tkj +gZM +tiZ +oJd +tiZ +tiZ +wCI +oer +wbI +wbI +wbI +kXD +hcY +mPX +tiZ +irB +irB +wbI +vtl +wbI +uGT +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +baC +baC +baC +bQM +bQM +bQM +"} +(65,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bQM +bQM +bQM +cAW +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +agi +agi +agi +agi +agi +agi +agi +aWV +aWV +jXz +jXz +eim +lLQ +orB +jXz +pgx +pgx +pgx +jXz +eim +lLQ +orB +gKi +lLQ +oiV +jXz +agi +agi +agi +jHz +hoZ +jNw +rqA +rqA +skG +hoZ +cto +hoZ +rja +rja +rja +rja +rja +rja +fLX +pQs +pQs +pQs +pQs +bNE +rja +rja +vVi +vVi +vVi +rja +oGU +iRH +xBl +kYZ +xUi +rja +rja +rja +aPO +bNE +pQs +pQs +pQs +pQs +apf +bNE +rqG +rja +xJw +xJw +xJw +xJw +xJw +egv +egv +jlk +jlk +jlk +svP +taj +taj +svP +hvL +uNM +sgw +vFi +yhu +uNM +sgw +rGq +rGq +uNM +sgw +vFi +yhu +uNM +hvL +uzG +taj +hpn +hvL +hvL +hvL +hvL +hvL +hvL +hvL +jlk +jlk +nMm +hvL +svP +jlk +jlk +jlk +kXs +rGq +rGq +rGq +jlk +jlk +jlk +jlk +irB +irB +irB +lwA +ktq +jgu +jgu +jgu +bxm +uWO +sTU +kXD +wbI +jcv +djf +tkj +oer +hPi +jUG +jUG +oKf +lxT +alP +wbI +jcv +wbI +kXD +oCn +wHl +wbI +irB +irB +wbI +oyC +wbI +irB +baC +bQM +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +baC +baC +baC +bQM +bQM +bQM +bQM +"} +(66,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bQM +bQM +bQM +cAW +bQM +aaa +iWq +cAW +cAW +cAW +cAW +cAW +cAW +agi +agi +agi +agi +agi +agi +agi +aWV +aWV +pbv +pbv +lvD +lLQ +oiV +pbv +jHz +rWt +jHz +pbv +lvD +lLQ +oiV +gKi +hrw +ddN +jXz +agi +agi +agi +agi +hoZ +iuN +krn +kJS +mcH +hoZ +jHz +jHz +egv +xJw +xJw +xJw +xJw +rja +wKl +pQs +pQs +xCV +pQs +cjG +rja +wfc +jYK +jYK +jYK +jYK +mDz +toE +mDz +toE +toE +xxD +eTC +rja +rja +rja +bNE +pQs +pQs +pQs +pQs +pQs +pQs +bNE +bNE +cjG +rja +xJw +xJw +egv +egv +jlk +bQM +lHx +dRs +jrN +ltA +riP +hvL +kCH +wsz +wsz +wsz +wsz +wsz +wsz +wsz +wsz +wsz +wsz +wsz +nwv +nVR +sUV +taj +dMt +uMm +wsz +wsz +wsz +wsz +jlk +jlk +jlk +jlk +nMm +hvL +svP +svP +jlk +jlk +rGq +bDU +rGq +rGq +jlk +jlk +jlk +jlk +irB +itN +irB +xUr +xck +jgu +itN +jgu +tkj +bcT +jgu +jgu +jBQ +bvK +dLq +tkj +oer +pGK +jfd +hRX +mjB +tkj +oer +jBQ +oRR +dLq +jgu +jgu +hcY +wbI +tkj +oer +lzJ +wbI +irB +irB +baC +bQM +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +baC +baC +bQM +bQM +bQM +bQM +bQM +"} +(67,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bQM +bQM +bQM +cAW +bTo +pcu +iWq +cAW +cAW +cAW +agi +agi +agi +agi +agi +agi +agi +agi +agi +aWV +aWV +jXz +pbv +pbv +lvD +hoZ +lvD +pbv +vwD +jHz +lvD +pbv +lvD +lvD +lvD +gKi +gKi +gKi +jXz +agi +agi +agi +agi +hoZ +iuN +ksV +kNW +mcH +hoZ +jHz +jHz +rja +xJw +xJw +xJw +xJw +rja +rja +bNE +bNE +pQs +pQs +bNE +rja +rja +kAc +mIQ +hDb +jYK +xxD +xxD +xxD +xxD +eQk +xxD +xxD +xxD +hHq +rja +rja +bNE +pQs +pQs +pQs +oEi +kyF +kyF +xDk +bNE +rja +rja +rja +xJw +egv +bQM +bQM +lHx +qjh +taj +dlA +svP +hvL +uzG +taj +taj +taj +taj +taj +taj +taj +taj +taj +taj +taj +mJc +taj +taj +taj +taj +taj +stf +taj +taj +jlk +jlk +jlk +jlk +jlk +jlk +hvL +svP +svP +rGq +knh +hvL +svP +rGq +rGq +jlk +jlk +jlk +jlk +irB +itN +irB +irB +irB +jgu +itN +jgu +tkj +sRE +jgu +anu +wbI +rBz +wbI +tkj +oer +pGK +hRX +pzh +sQL +nez +oer +wbI +rBz +wbI +qkg +jgu +sBf +wbI +tkj +oer +wbI +vtl +irB +uGT +bQM +bQM +baC +baC +bQM +bQM +baC +bQM +bQM +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +"} +(68,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bQM +bQM +bQM +cAW +bTo +pcu +iWq +cAW +cAW +cAW +agi +agi +jXz +jXz +jXz +jXz +jXz +hoZ +agi +jXz +jXz +jXz +otg +lLQ +lLQ +otg +otg +otg +gzb +otg +otg +otg +wRg +otg +otg +otg +gzb +wRg +gzb +otg +otg +otg +otg +hoZ +vHo +lIj +uQJ +uOC +jHz +jHz +bNE +ydb +pQs +xJw +egv +egv +egv +rja +rja +bNE +pQs +pQs +pQs +bNE +rja +vVi +vVi +rja +vVi +vVi +rja +xxD +rja +rja +rja +fjI +xxD +xxD +xxD +rja +rja +bNE +pQs +pQs +nhM +mMH +aBs +cOj +bNE +bNE +cjG +rja +xJw +egv +bQM +bQM +rZP +lHx +rZP +taj +svP +ftU +uzG +taj +ugk +mLY +mLY +mLY +mLY +mLY +mLY +mLY +mLY +mLY +oGg +lFD +mLY +mLY +mLY +mLY +bZD +ugk +adE +rZP +rZP +rZP +rZP +jlk +jlk +jlk +svP +rGq +rGq +knh +hvL +svP +rGq +rGq +jlk +jlk +jlk +jlk +irB +itN +irB +irB +irB +jgu +jgu +jgu +tkj +osv +iyk +oyT +oyT +oyT +oyT +oWw +oer +pGK +mxs +vhI +fgM +tkj +lzP +oyT +oyT +oyT +eNn +uqj +bFi +oyT +oWw +oer +fyO +oyC +wbI +uGT +bQM +baC +baC +bQM +bQM +bQM +baC +baC +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +"} +(69,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bQM +bQM +bQM +cAW +bTo +pcu +iWq +cAW +cAW +agi +agi +aPD +tpE +rUf +jHz +jHz +jHz +hoZ +hoZ +hoZ +mjx +lLQ +lLQ +jHz +jHz +jHz +haJ +jHz +lLQ +lLQ +lLQ +jHz +jHz +jHz +jHz +jHz +jHz +jHz +jHz +jHz +hoZ +hoZ +pCX +hoZ +hoZ +hoZ +hoZ +qSm +jNw +kyF +kyF +xDk +pQs +rja +egv +pQs +pQs +egv +ccH +bNE +gAh +pQs +pQs +pQs +pQs +bNE +bNE +bNE +bNE +bNE +rja +kze +rja +lzE +rja +rja +tDQ +xxD +xxD +xxD +rja +rja +rqG +pQs +nhM +dGx +kLI +cOj +pQs +pQs +bNE +rja +xJw +egv +egv +bQM +bQM +bQM +lHx +svP +svP +hvL +hBf +taj +nMm +hvL +hvL +hvL +hvL +hvL +gsU +iON +vrO +jlk +jlk +jlk +jlk +jlk +jlk +jlk +uzG +nMm +jlk +jlk +jlk +jlk +jlk +jlk +jlk +jlk +svP +rGq +rGq +knh +hvL +svP +rGq +rGq +rGq +fcA +jlk +jlk +irB +itN +irB +irB +irB +itN +itN +oPU +tkj +fdR +spA +tiZ +tiZ +tiZ +tiZ +wCI +lAn +dqa +sbf +vhI +sQL +oWG +mtG +tiZ +tiZ +tiZ +uVO +tXD +wSo +tiZ +tiZ +qhk +wbI +wbI +wbI +itN +baC +baC +baC +bQM +bQM +bQM +bQM +baC +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(70,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bQM +bQM +bQM +cAW +bTo +pcu +iWq +cAW +cAW +agi +agi +aPD +tpE +gXF +bPK +clN +clN +clN +clN +clN +crM +uYS +mlu +hrw +hrw +hrw +hrw +hrw +lvD +lLQ +lvD +hrw +hrw +hrw +hrw +hrw +lvD +hrw +hrw +hrw +jHz +hoZ +hoZ +hrw +hrw +hrw +hrw +jHz +nhM +mQG +oEs +cOj +bNE +bNE +apf +bNE +bNE +lag +bNE +bNE +pQs +pQs +pQs +pQs +pQs +pQs +pQs +apf +gHy +pQs +unA +bNE +bNE +pQs +ioE +rja +jta +jta +rja +xhM +rja +rja +rja +bNE +lge +sWe +sWe +lRr +bNE +bNE +bNE +rja +xJw +egv +egv +egv +bQM +bQM +rZP +lHx +rZP +hvL +uzG +taj +nMm +hvL +oTy +oTy +oTy +oTy +oTy +oTy +jlk +jlk +jlk +jlk +jlk +jlk +jlk +jlk +jFz +aik +jlk +jlk +jlk +jlk +jlk +jlk +svP +rGq +rGq +rGq +rGq +jlk +jlk +jlk +rGq +rGq +bDU +rGq +jlk +jlk +irB +itN +irB +irB +irB +itN +itN +oPU +tkj +sRE +jgu +anu +wbI +jcv +wbI +tkj +oer +pGK +uxN +gTc +sQL +nWk +oer +wbI +jcv +wbI +qkg +jgu +nho +wbI +wbI +wbI +wbI +wbI +wbI +itN +baC +baC +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(71,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bQM +bQM +bQM +cAW +bTo +pcu +iWq +cAW +cAW +agi +agi +aPD +uOx +gXF +bQh +hoZ +hoZ +hoZ +hoZ +jXz +jXz +jcG +hsl +jXz +pgx +pgx +pgx +jXz +wFd +jHz +hsl +aWV +pgx +pgx +pgx +aWV +wFd +hoZ +hoZ +hoZ +hoZ +jHz +hoZ +hoZ +jHz +jHz +jHz +bNE +nhM +npx +oTz +cOj +bNE +bNE +bNE +apf +bNE +lag +apf +apf +pQs +pQs +pQs +pQs +pQs +pQs +pQs +pQs +pQs +pQs +pQs +pQs +pQs +bNE +gAh +rja +rja +rja +rja +hKN +hKN +weV +rja +paF +pQs +apf +aHH +bNE +rja +vVi +vVi +rja +xJw +xJw +xJw +egv +egv +bQM +bQM +bQM +lHx +hvL +uzG +taj +nMm +hvL +hvL +bHR +bHR +bHR +hvL +hvL +bHR +bHR +jlk +jlk +jlk +jlk +svP +ing +uzG +nMm +svP +svP +jlk +jlk +svP +svP +svP +svP +svP +dYI +yio +yio +hyT +sfI +ubN +sfI +sfI +bPT +qCa +jlk +irB +irB +irB +irB +itN +itN +sIz +oPU +tkj +bcT +jgu +jgu +jBQ +nAf +dLq +tkj +oer +pGK +hRX +sbf +sQL +tkj +oer +jBQ +oRR +dLq +wbI +itN +uGT +uGT +uGT +uGT +uGT +wbI +mmp +uGT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(72,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bQM +bQM +bQM +cAW +bTo +pcu +iWq +agi +aWV +aWV +aWV +aWV +aPD +caA +bQh +hoZ +hoZ +lun +jXz +jXz +xrd +jHz +oiV +nmh +aeb +wLS +dLL +cRK +jnU +jHz +oiV +nmh +aeb +otg +dLL +cRK +jnU +hoZ +vZs +qFs +qFs +hoZ +jHz +qFs +qFs +jXz +jXz +pQs +lge +sWe +sWe +lRr +pQs +rja +egv +pQs +pQs +egv +egv +bNE +dbi +pQs +pQs +gAh +bNE +bNE +bNE +bNE +pQs +pQs +wUs +pQs +gHy +pQs +bNE +bNE +bNE +rja +rja +scH +hyo +laX +rja +irQ +lyY +apf +iTm +apf +vVi +tOG +xlZ +pXY +ifp +cls +xJw +xJw +xJw +bQM +bQM +bQM +lHx +qzM +uzG +taj +dMt +wsz +wsz +wsz +wsz +wsz +nVR +wsz +wsz +wsz +wsz +wsz +wsz +wsz +wsz +wsz +sUV +nMm +svP +svP +svP +svP +svP +hSA +svP +rGq +svP +nLV +wIJ +iyS +mhM +rGq +rGq +uyM +rGq +dga +lde +jlk +uGT +uGT +uGT +itN +itN +itN +kMC +oPU +tkj +eEX +aBD +kXD +wbI +rBz +wbI +qUC +oer +sSM +sTm +sTm +uCX +tkj +oer +wbI +rBz +wbI +ooF +itN +bQM +bQM +bQM +bQM +uGT +wbI +fAI +uGT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(73,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bQM +bQM +bQM +cAW +bTo +pcu +pbV +agi +aWV +aPD +aPD +aPD +aPD +jHz +bQh +hoZ +hoZ +hoZ +jXz +maY +fUC +jHz +oiV +lvD +jnU +lLQ +oiV +lvD +jnU +jHz +nkM +lvD +jnU +lLQ +oiV +lvD +jnU +eSH +qFs +agi +agi +agi +agi +aWV +agi +agi +aWV +pQs +pQs +bNE +bNE +pQs +pQs +xJw +egv +egv +egv +rja +rqG +pQs +pQs +pQs +rqG +rja +vVi +vVi +vVi +rja +bNE +bNE +pQs +kds +pQs +pQs +pQs +pQs +pQs +bNE +rja +rja +rja +rja +rja +bNE +aHH +iTm +iTm +lRW +vVi +toE +mDz +toE +mDz +toE +igQ +dFH +xJw +bQM +bQM +bQM +lHx +hvL +uzG +taj +stf +taj +taj +taj +taj +taj +taj +jjH +taj +taj +taj +taj +stf +taj +taj +nOy +taj +nMm +svP +svP +rGq +svP +taj +taj +taj +svP +svP +bAc +hgS +hgS +lvy +eTb +sfI +sfI +sfI +dNx +siK +jlk +aIB +bSS +wgO +dDn +wgO +slc +wgO +oPU +tkj +oer +uLf +kXD +wbI +wbI +wbI +tkj +exI +oyT +oyT +nOi +oyT +oWw +oer +wbI +wbI +tNV +wbI +itN +uGT +uGT +uGT +bQM +uGT +oXT +mcr +uGT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(74,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bTo +pcu +pcu +agi +hCp +wSc +gvZ +ivD +lkM +hoZ +bQh +hoZ +jHz +jXz +aWV +jXz +eEJ +jHz +oiV +nmh +jCe +hrw +cnH +cRK +jnU +jHz +oiV +nmh +jCe +hrw +ddN +cRK +jnU +agi +aWV +aWV +aWV +xJw +xJw +egv +egv +egv +egv +egv +egv +bNE +bNE +apf +xJw +xJw +xJw +xJw +xJw +rja +fLX +pQs +pQs +bNE +rja +rja +bya +xxD +vkh +rja +vVi +rja +bNE +pQs +bNE +bNE +apf +pQs +pQs +qfg +bNE +bNE +dfh +bNE +bNE +pQs +apf +pQs +kzz +rja +rja +tDQ +xxD +xxD +xxD +xxD +xxD +kil +xJw +xJw +bQM +bQM +rZP +lvf +uzG +taj +ugk +mLY +mLY +mLY +mLY +mLY +mLY +mLY +mLY +mLY +mLY +mLY +mLY +tHw +mLY +mLY +mLY +aJv +rGq +uNM +uNM +svP +taj +svP +fpn +svP +fpn +svP +fpn +svP +fpn +kIg +fpn +svP +fpn +svP +fpn +vwM +vhB +wgO +vhB +wgO +vhB +wgO +vhB +oPU +gyt +oer +ckZ +kXD +aBJ +wKb +wbI +mPX +tiZ +tiZ +wCI +mtG +tiZ +tiZ +qhk +wbI +wZv +lzJ +wbI +eFa +wbI +cGR +uGT +bQM +uGT +uGT +uGT +uGT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(75,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bQM +cAW +cAW +cAW +bTo +pcu +xtP +agi +aWV +aPD +aPD +aPD +aPD +hoZ +bQh +hoZ +jHz +jXz +aWV +jXz +jXz +jcG +hsl +jXz +kPf +kPf +kPf +jXz +wFd +jHz +hsl +aWV +kPf +kPf +kPf +aWV +wFd +agi +aWV +aWV +aWV +xJw +egv +egv +egv +egv +egv +egv +egv +apf +bNE +bNE +rja +xJw +xJw +xJw +xJw +rja +wKl +pQs +pQs +bNE +rja +sGC +jYK +xxD +xxD +sII +rna +rja +vVi +kze +vVi +rja +rqG +pQs +pQs +pQs +pQs +pQs +pQs +pQs +pQs +pQs +pQs +pQs +bNE +vVi +xxD +xxD +xxD +vyu +xxD +xxD +xxD +jYK +mIQ +wFU +bQM +bQM +rZP +sGx +uzG +taj +nMm +gxQ +rZP +lHx +lHx +lHx +rZP +lHx +lHx +lHx +jlk +jlk +jlk +hvL +gbV +uTs +hvL +ufN +hvL +jlk +uNM +ubN +taj +ubN +fpn +svP +fpn +svP +fpn +svP +fpn +svP +fpn +mGX +fpn +svP +fpn +vwM +vhB +wgO +vhB +wgO +vhB +wgO +vhB +oPU +tkj +oer +ckZ +kXD +lvt +tas +tas +tTA +wbI +wbI +tkj +ydd +wbI +wbI +wbI +kxf +wbI +wbI +wbI +eFa +kbi +fLS +uGT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(76,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +bTo +pcu +agi +agi +aWV +aWV +aWV +aWV +aPD +iGx +bQh +hoZ +jHz +jXz +aWV +jXz +xrd +jHz +oiV +nmh +aeb +otg +dLL +cRK +jnU +jHz +oiV +nmh +aeb +otg +dLL +cRK +jnU +agi +aWV +aWV +aWV +xJw +egv +egv +egv +egv +apf +apf +lag +bNE +bNE +apf +bNE +egv +egv +rja +rja +ccH +rqG +pQs +pQs +cjG +rja +hzi +jYK +xxD +xxD +xxD +leF +xxD +xxD +xxD +dsW +rja +rja +bNE +pQs +pQs +oEi +kyF +kyF +xDk +pQs +pQs +pQs +pQs +pQs +tob +xxD +xxD +xxD +xxD +xxD +xxD +xxD +jYK +kAc +wFU +bQM +bQM +lHx +jkj +uzG +taj +nMm +hvL +lHx +bQM +bQM +bQM +bQM +bQM +bQM +bQM +jlk +jlk +jlk +rGq +bCu +rGq +rGq +rGq +jlk +jlk +uNM +iFC +svP +cBm +fpn +svP +fpn +svP +fpn +svP +fpn +svP +fpn +svP +fpn +svP +fpn +vwM +vhB +wgO +vhB +wgO +vhB +wgO +vhB +oPU +tkj +oer +ckZ +jgu +jgu +hPi +jUG +oKf +jgu +wuC +roi +tMb +xIh +itN +wbI +jcv +wbI +eFa +wZv +wbI +wbI +wbI +uGT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(77,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +bTo +pcu +agi +agi +agi +agi +agi +aPD +gkE +jHz +bQh +hoZ +teu +jXz +aWV +cje +fUC +jHz +oiV +lvD +jnU +lLQ +oiV +lvD +jnU +jHz +oiV +lvD +jnU +lLQ +oiV +qJR +jnU +agi +aWV +aWV +aWV +egv +egv +egv +egv +apf +wZN +apf +lag +egv +apf +bNE +bNE +egv +egv +ioE +fCw +rqG +pQs +pQs +pQs +bNE +rja +lMq +jYK +xxD +xxD +xxD +xxD +xxD +xxD +xxD +xxD +jta +vVi +bNE +pQs +pQs +nhM +mMH +aBs +cOj +gAh +pQs +gAh +pQs +bNE +rja +rja +rja +rja +rja +tDQ +xxD +xxD +jYK +hDb +wFU +bQM +bQM +lHx +hvL +uzG +taj +nMm +hvL +lHx +bQM +bQM +bQM +bQM +bQM +bQM +jlk +jlk +jlk +jlk +sgw +sgw +bvr +rGq +sgw +sgw +jlk +uNM +ubN +svP +ubN +kIg +taj +taj +taj +taj +taj +taj +taj +taj +taj +taj +taj +taj +rZP +wgO +wgO +wgO +wgO +wgO +wgO +wgO +dmT +tkj +oer +ove +dJe +dJe +vuX +wgO +uLf +jgu +jgu +hPi +gtf +jgu +itN +jBQ +oRR +dLq +itN +uGT +uGT +uGT +uGT +uGT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(78,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +agi +agi +agi +agi +agi +aPD +eYs +jHz +bQk +hoZ +hoZ +jXz +aWV +jXz +eEJ +jHz +oiV +nmh +jCe +dXi +hPL +cRK +jnU +haJ +oiV +nmh +jCe +mpN +ddN +cRK +jnU +agi +aWV +aWV +aWV +egv +egv +egv +apf +apf +apf +egv +egv +egv +bNE +bNE +bNE +pQs +gAh +bNE +pQs +pQs +pQs +pQs +pQs +bNE +rja +rja +vVi +kze +vVi +rja +sdK +toE +toE +toE +xxD +jta +rja +rja +bNE +pQs +nhM +dGx +kLI +cOj +oEi +kyF +kyF +xDk +pQs +bNE +rja +hSk +weV +xhM +xxD +xxD +xxD +jYK +whr +xJw +bQM +bQM +lHx +hvL +uzG +taj +nMm +hvL +lHx +bQM +bQM +bQM +bQM +jlk +jlk +jlk +jlk +jlk +rGq +rGq +rGq +rGq +bDU +fmg +jlk +jlk +uNM +fhB +svP +oIz +taj +qAQ +qAQ +qAQ +qAQ +taj +ohY +eTb +icT +eTb +pdP +amF +rZP +rZP +lgx +lgx +lgx +lgx +mLL +cOC +wgO +oPU +mPX +qhk +oPU +oPU +oPU +gAn +oPU +ove +dbr +dbr +vMN +fGi +dbr +itN +wbI +qJL +wbI +itN +bQM +bQM +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(79,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +agi +agi +agi +agi +agi +aPD +auj +hoZ +bQh +hoZ +jHz +hoZ +jXz +jXz +jXz +jcG +hsl +jXz +kue +xgU +kue +jXz +wFd +jHz +hsl +aWV +kue +kue +kue +aWV +iIZ +agi +agi +dxS +agi +egv +egv +apf +apf +apf +egv +egv +eXp +eXp +bNE +bNE +bNE +bNE +bNE +pQs +pQs +pQs +pQs +pQs +pQs +pQs +rqG +rja +bNE +pQs +bNE +rja +vVi +rja +fyy +toE +xxD +xxD +soN +rja +bNE +pQs +lge +sWe +sWe +lRr +nhM +mMH +aBs +cOj +pQs +bNE +rja +rja +rja +rja +rja +dTx +dTx +rja +rja +xJw +xJw +xJw +xJw +guz +guz +guz +guz +guz +cEw +cEw +cEw +cEw +cEw +cEw +cEw +cEw +cEw +guz +guz +brY +okv +guz +brY +guz +aTo +aTo +rZP +rZP +rZP +rZP +rZP +eJm +eJm +eJm +eJm +rZP +rZP +rZP +rZP +rZP +rZP +rZP +rZP +rZP +juX +juX +juX +juX +itN +itN +itN +itN +dGA +lgx +vhB +vhB +lgx +vhB +vhB +lgx +vhB +vhB +lgx +lgx +vhB +itN +itN +itN +itN +itN +bQM +bQM +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(80,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +agi +agi +agi +agi +agi +agi +hoZ +hoZ +bUw +hoZ +jHz +hoZ +jXz +jXz +xrd +lLQ +lvD +otg +otg +otg +otg +otg +lvD +lLQ +lvD +otg +otg +otg +otg +otg +lvD +jnU +agi +agi +agi +egv +egv +qlf +qlf +egv +egv +eXp +jnm +kiR +wNM +bNE +gAh +bNE +bNE +pQs +pQs +pQs +pQs +sAp +pQs +pQs +pQs +bNE +pQs +pQs +pQs +bNE +bNE +vVi +bQy +rja +xhM +rja +rja +rja +irQ +wbP +oEi +kyF +kyF +xDk +nhM +dGx +kLI +cOj +pQs +pQs +bNE +bNE +bNE +nip +apf +apf +apf +apf +apf +ojv +apf +apf +nip +guz +jhp +wSU +wSU +guz +bnA +mTl +vBX +vBX +frM +bnA +wSU +wSU +nJq +guz +iiw +awL +awL +awL +xDq +naf +naf +cqz +ggd +tsc +hQk +tsc +awL +uNp +uNp +uNp +uNp +awL +tcW +awL +awL +awL +awL +awL +tcW +awL +uNp +uNp +uNp +uNp +awL +tsc +bEk +tsc +hmS +hmS +hmS +hmS +hmS +hmS +hmS +hmS +hmS +hmS +hmS +hmS +hmS +hmS +tsc +bEk +tsc +bEk +ogf +ogf +bEk +ogf +ogf +ogf +ogf +mRM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(81,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +agi +agi +agi +agi +agi +agi +hoZ +bNP +hoZ +hoZ +jHz +hoZ +jXz +ddU +fUC +jHz +lLQ +jHz +jHz +jHz +jHz +jHz +lLQ +qpX +viL +jHz +tQk +jHz +jHz +jHz +lLQ +jnU +jHz +agi +agi +bGY +vFr +aVU +aVU +bel +hTs +eXp +bNE +pQs +apf +wdU +pQs +pQs +gnQ +pQs +pQs +bNE +bNE +bNE +bNE +pQs +pQs +pQs +qfg +pQs +pQs +pQs +bNE +rja +rja +rja +hKN +hKN +fZT +rja +bNE +pQs +nhM +mMH +aBs +cOj +lge +sWe +sWe +lRr +qwK +pQs +tpY +pQs +bNE +nip +apf +apf +apf +apf +apf +apf +apf +apf +nip +guz +wSU +vBX +wSU +guz +uLJ +sUc +vBX +kxU +vBX +wAn +wSU +wSU +nJq +guz +gcx +okv +okv +okv +xme +ygw +kEy +sDL +fiq +vzB +fiq +vzB +okv +uSA +uSA +uSA +uSA +okv +okv +okv +aVd +okv +okv +okv +okv +okv +uSA +uSA +uSA +uSA +okv +vzB +fiq +vzB +lzJ +lzJ +lzJ +lzJ +lzJ +lzJ +lzJ +lzJ +lzJ +lzJ +lzJ +lzJ +lzJ +lzJ +vzB +fiq +vzB +kPz +bQM +bQM +kPz +bQM +bQM +bQM +bQM +bmT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(82,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +agi +agi +agi +agi +agi +agi +hoZ +jHz +hoZ +hoZ +hoZ +hoZ +jXz +jXz +eEJ +lLQ +lvD +agi +agi +agi +agi +agi +lvD +lLQ +lvD +hrw +hrw +hrw +hrw +hrw +lvD +nzw +jHz +agi +agi +whf +lUu +rBs +rBs +nxl +whf +apf +bNE +oDh +vzh +wdU +pma +oJm +pQs +oDh +bNE +rja +rja +rja +rja +bNE +gAh +pQs +pQs +pQs +kds +pQs +gAh +rqG +rja +rja +scH +laX +rja +rja +bNE +pQs +nhM +dGx +kLI +cOj +gAh +pQs +gAh +pQs +pQs +pQs +pQs +wUs +bNE +rja +rja +gAh +gAh +rja +rja +gAh +gAh +rja +rja +guz +wSU +wSU +wSU +guz +uXw +vBX +qqQ +vBX +vBX +bnA +wSU +wSU +nJq +guz +gcx +okv +iiw +awL +iBP +vcf +vcf +lku +mzT +tsc +wtm +tsc +awL +uNp +uNp +uNp +uNp +awL +exW +awL +awL +awL +awL +awL +exW +awL +uNp +uNp +uNp +uNp +awL +tsc +bEk +tsc +hmS +hmS +hmS +hmS +hmS +hmS +hmS +hmS +hmS +hmS +hmS +hmS +hmS +hmS +tsc +bEk +tsc +bEk +ogf +ogf +bEk +ogf +ogf +ogf +ogf +fWI +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(83,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +agi +agi +agi +agi +agi +agi +hoZ +hoZ +hoZ +hoZ +hoZ +hoZ +jXz +jXz +jXz +lLQ +lLQ +jXz +agi +agi +kPf +jXz +jnU +jHz +agi +aWV +pgx +lvD +mgO +aWV +hoZ +jnU +jHz +oiV +lvD +oKV +rBs +aVU +bOK +rBs +khu +apf +pQs +apf +pma +pma +pQs +pma +pQs +qfg +cjG +rja +pKf +vtc +rja +rqG +bNE +pQs +pQs +pQs +pQs +pQs +pQs +mTs +nYB +rja +rja +rja +rja +rqG +pQs +pQs +lge +sWe +sWe +lRr +pQs +apf +wUs +apf +pQs +apf +pQs +bNE +rja +rja +rja +rja +rja +rja +rja +rja +rja +rja +rja +bnA +tXt +guz +guz +cYe +bnA +tXt +rnl +vBX +guz +bnA +vDf +wSU +nJq +guz +gcx +pLQ +gcx +guz +guz +guz +guz +gTW +cEw +cEw +cEw +cEw +tRH +eXP +eXP +eXP +eXP +tRH +tRH +tRH +tRH +nvD +tRH +tRH +tRH +tRH +juX +juX +juX +juX +itN +itN +itN +itN +iVo +nkF +vhB +vhB +nkF +vhB +vhB +nkF +vhB +vhB +nkF +nkF +vhB +itN +itN +itN +itN +itN +itN +bQM +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(84,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +agi +agi +agi +agi +agi +jHz +jHz +jHz +vZs +jHz +hoZ +hoZ +hoZ +jHz +moW +lLQ +lLQ +nmh +agi +otg +dLL +cRK +jnU +jHz +agi +nmh +aeb +otg +njN +cRK +rPZ +jnU +jHz +oiV +lvD +aVU +aVU +aVU +aVU +aVU +gec +apf +nre +pQs +pQs +pma +pQs +pQs +pQs +pQs +bNE +rja +lYj +hKN +rja +rja +rja +bNE +tmL +bNE +bNE +pQs +pQs +pQs +pQs +raL +rty +kwZ +raL +pQs +pQs +pQs +pQs +pQs +bNE +bNE +nOg +bNE +bNE +apf +pQs +pQs +qwK +apf +rja +rja +rja +rja +rja +rja +rja +rja +rja +rja +rja +bnA +iKF +ykw +alC +iKF +bnA +jbU +xZD +bnA +bgc +bnA +wSU +kok +nJq +guz +gcx +okv +gcx +guz +wSU +uSA +uSA +pRp +bnA +wps +guz +jHp +wrR +mpE +vOm +vOm +psx +ipd +soj +iTJ +kbo +tSm +tSm +iTs +bqC +art +fvr +nkF +nkF +nkF +wgO +wgO +wgO +wgO +xVW +ijt +oPU +oPU +mpb +oPU +oPU +oPU +oPU +oPU +xVW +ijt +oPU +oPU +oPU +wQW +oPU +oPU +itN +itN +itN +itN +itN +itN +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(85,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +bQM +bQM +bQM +cAW +agi +agi +agi +agi +agi +agi +hoZ +vjT +gFg +oxv +jHz +hoZ +hoZ +hoZ +jHz +hoZ +lLQ +lLQ +lvD +jnU +lLQ +fKn +lvD +jnU +lDU +oiV +lvD +jnU +hoZ +oiV +kHI +hoZ +jnU +jHz +oiV +lvD +aVU +aVU +imz +aVU +aVU +khu +tfX +vuS +vuS +pQs +pQs +gAh +oDh +pQs +pQs +bNE +rja +rja +xhM +rja +jta +rja +vVi +vVi +vVi +rja +bNE +mTs +pQs +pQs +rKA +qCk +cvd +rRz +pQs +pQs +pQs +bNE +bNE +bis +bis +bis +bis +bis +dBy +mNh +ycC +idb +eQQ +dBy +bis +bis +bis +bis +bis +bis +jsf +heo +rJF +akp +xvB +guz +aAA +vBX +fXI +guz +aAA +vBX +fXI +guz +xvB +aAA +xNn +eBr +guz +gcx +pLQ +gcx +guz +wSU +yeX +pen +byT +bnA +mSo +guz +mSo +wrR +xvv +xvv +xvv +rLA +ipd +soj +rKy +xiL +xiL +xiL +iQz +xiL +rft +wgO +vhB +vhB +wgO +vhB +vhB +wgO +vhB +tkj +oer +jgu +jgu +oPU +oPU +fZD +wbI +wbI +agG +vFc +htO +nKX +wbI +wbI +wbI +wbI +wbI +wbI +wbI +oPU +jgu +jgu +itN +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(86,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +agi +agi +dxS +agi +hoZ +gFg +hoZ +gFg +nub +gzb +gzb +gzb +nub +hoZ +lLQ +lLQ +nmh +jCe +hrw +ddN +qAk +jnU +jHz +vWL +lvD +jCe +xgU +ddN +cRK +hoZ +jnU +jHz +oiV +lvD +rBs +rBs +aVU +aVU +vDR +sUY +apf +pQs +umZ +jIz +pQs +vuS +pQs +pQs +sAp +pQs +bNE +vVi +xxD +pVc +xxD +whr +dwJ +gnL +vvT +rja +dhL +pQs +bNE +bNE +raL +wND +imp +raL +bNE +bNE +bNE +bis +bis +bis +bis +bis +bis +bis +wGM +ycC +eQQ +ycC +mNh +dDU +rkv +bis +bis +bis +tEA +bQL +rJF +rJF +rJF +akp +okv +guz +aAA +vBX +fXI +guz +aAA +vBX +fXI +guz +okv +aAA +ojk +uSA +guz +gcx +okv +gcx +guz +wSU +uSA +uSA +giw +noz +nSh +vBX +guz +eMG +xvv +xvv +xvv +rLA +ipd +spb +rKy +xiL +mAt +nMp +jFh +vxm +heT +aZW +wgO +wgO +wgO +wgO +wgO +wgO +bRs +tkj +oer +kXD +fnY +vhB +bED +wbI +qUo +fAv +vtl +tkj +oLF +ivz +jot +fAv +wbI +bNT +jot +fAv +vtl +oPU +lgS +jgu +itN +itN +itN +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(87,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +agi +agi +dxS +dxS +dxS +dxS +agi +hoZ +vjT +gFg +vjT +jHz +lrA +lrA +lrA +jHz +hoZ +lLQ +lLQ +jXz +kPf +kPf +kPf +jXz +jnU +jHz +oiV +eSH +eEx +kHI +kHI +aWV +jHz +jnU +jHz +mbC +dxS +whf +hvg +sdY +rBs +qLI +gec +wdU +uHl +nWC +dtR +gAh +wdU +gAh +bNE +vuS +pQs +pQs +tob +xxD +xxD +xxD +jYK +jYK +fbF +bFg +rja +irQ +bNE +oEi +kyF +kyF +kyF +kyF +kyF +kyF +kyF +xDk +bis +bis +tpt +clP +clP +bEP +eTc +eED +ycC +lqq +ycC +lqq +pJP +ycC +ycC +anW +wNX +wNX +wNX +ort +htX +rJF +akp +okv +guz +aAA +ppQ +fXI +guz +aAA +iHu +fXI +guz +okv +aAA +ojk +uSA +guz +gcx +pLQ +gcx +guz +wSU +vBX +vBX +vBX +uSA +kfY +vBX +guz +bPG +xvv +xvv +xvv +rLA +ipd +spb +rKy +gIs +rft +wrR +ipd +ipd +nvD +hcY +vhB +vhB +wgO +vhB +vhB +wgO +vhB +tkj +oer +kXD +cRg +vhB +oPU +aRT +kjT +qun +oyC +tkj +oer +aRT +kjT +qun +tfx +qaO +azs +auQ +oyC +oPU +oPU +jgu +jgu +jgu +itN +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(88,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +agi +agi +agi +agi +agi +dxS +agi +hoZ +gGx +hoZ +hoZ +jHz +lrA +agi +lrA +jHz +hoZ +lLQ +lLQ +nmh +aeb +otg +dLL +cRK +jnU +jHz +bRQ +lvD +aeb +aOm +dLL +cRK +jHz +jnU +jHz +gAh +eXp +vTv +heO +vFr +aVU +bel +bIZ +eXp +wdU +bNE +vgi +wdU +bNE +mMi +bNE +pQs +pQs +bNE +rja +rja +mfR +xxD +xxD +xxD +xxD +xxD +vVi +oEi +kyF +hoo +bNE +bNE +bNE +bNE +bNE +bNE +bNE +cOj +bis +bis +sfs +lqq +mxR +lqq +jjW +pYc +lqq +lqq +geL +rJF +ycC +bPQ +rHh +wNX +rJF +rJF +ycC +rJF +akp +rJF +akp +okv +guz +aAA +yeX +pen +ofw +ppS +hGn +fXI +guz +okv +aAA +ojk +wSU +guz +gcx +aVd +gcx +guz +wSU +vBX +vBX +vBX +uSA +kfY +vBX +guz +bPG +xvv +xvv +xvv +rLA +ipd +kdq +rKy +xiL +mdS +tSm +iTs +bqC +art +vuX +wgO +wgO +bRs +wgO +wgO +wgO +wgO +tkj +oer +jgu +qcX +oPU +oPU +bNT +kjT +qun +oRR +lEL +oer +aRT +kjT +qun +fQB +wbI +cCt +wbI +wbI +oPU +oPU +voi +cEY +jgu +itN +itN +itN +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +"} +(89,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +agi +agi +agi +agi +agi +dxS +hoZ +hoZ +fqF +hoZ +hoZ +jHz +lrA +agi +lrA +jHz +hoZ +lLQ +lLQ +lvD +jnU +lLQ +oiV +lvD +jnU +jHz +oiV +hoZ +hoZ +lLQ +oiV +qJR +jHz +jnU +jHz +gAh +nga +eXp +eXp +apf +apf +apf +apf +eXp +bNE +bNE +bNE +rja +oOw +ccH +bNE +gAh +pQs +pQs +rqG +rja +rja +toE +toE +hqc +xxD +xxD +tob +wQb +bNE +bNE +bNE +bNE +bNE +bNE +bNE +bNE +bNE +umg +bis +bis +tPz +lqq +lqq +lqq +jjW +ycC +lqq +lqq +ycC +lqq +sBA +kzB +pBe +xow +xow +xow +wpy +rJF +akp +qif +bis +bnA +wQR +wSU +wSU +wSU +hjR +wSU +wSU +wSU +tSY +bnA +vDf +ojk +wSU +guz +gcx +okv +gcx +guz +wSU +uSA +uSA +qLv +gyy +dpn +vBX +guz +bPG +xvv +xvv +xvv +rLA +ipd +vMs +sFd +nMp +rdo +xiL +iQz +xiL +rft +wgO +hCc +vhB +wgO +vhB +vhB +slc +vhB +gyt +oer +kXD +bmw +vhB +oPU +bNT +kjT +aPd +vtl +tkj +bdb +lls +kjT +qun +wbI +bNT +jot +fAv +vtl +oPU +oPU +oPU +voi +jgu +jgu +jgu +itN +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +"} +(90,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +agi +agi +agi +agi +agi +dxS +hoZ +hoZ +vjT +gFg +vjT +jHz +lrA +lrA +lrA +jHz +hoZ +xeX +lLQ +nmh +jCe +hrw +ddN +dRk +jnU +jHz +oiV +hoZ +xeX +ihv +ddN +cRK +agi +jnU +jHz +egv +nga +nga +nga +kOB +apf +huD +nga +nga +apf +apf +ioE +rja +rja +jzN +bNE +bNE +pQs +pQs +mCH +bNE +vVi +fyy +toE +toE +pxk +bJb +rja +wQb +qpk +sWe +sWe +sWe +mGf +sWe +sWe +sms +bNE +cOj +bis +bis +nHm +puw +lqq +rle +oph +bis +bis +wMi +wMi +wMi +bis +bis +rJF +rJF +rJF +uXB +bPQ +rJF +vOO +qif +bis +bnA +wQR +wSU +wSU +wSU +vBX +wSU +wSU +wSU +tSY +bnA +vDf +ojk +cQe +guz +gcx +okv +gcx +guz +wSU +yeX +pen +byT +bnA +jHp +myH +jHp +wrR +tkP +pYL +pYL +jHD +wrR +wrR +wrR +wrR +rKy +mAt +jFh +vxm +heT +aZW +wgO +lAN +wgO +wgO +wgO +wgO +wgO +tkj +oer +kXD +sBY +itd +oPU +bNT +azs +bJp +oyC +utL +uZt +pIt +azs +auQ +hFH +bNT +azs +auQ +oyC +oPU +oPU +oPU +oPU +voi +cEY +jgu +itN +itN +itN +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +"} +(91,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +agi +agi +agi +agi +agi +dxS +hoZ +hoZ +gFg +iKg +gFg +nub +gzb +gzb +gzb +nub +hoZ +lLQ +lLQ +jXz +kue +kue +kue +jXz +tbm +jHz +oiV +eSH +kHI +mUK +kue +aWV +agi +jCe +hrw +qdJ +apf +kOB +apf +apf +kOB +kOB +kOB +xxP +kOB +eYT +eXp +eXp +eXp +rja +bNE +gAh +pQs +pQs +pQs +bNE +vVi +sha +pNj +tDB +rja +rja +rja +wQb +cOj +bNE +bNE +bNE +bNE +bNE +bNE +wQb +bNE +cOj +bis +ycC +fAZ +clP +clP +rFu +gSP +bis +bis +aBb +clP +clP +bis +bis +rJF +mnJ +ycC +rJF +bPQ +rJF +akp +rJF +akp +xvB +guz +aAA +yeX +pen +vYY +ppS +hGn +fXI +guz +xvB +aAA +ojk +wSU +guz +gcx +okv +gcx +guz +eQY +vJn +vJn +asE +bnA +kzL +guz +mSo +wrR +uia +teq +teq +teq +teq +kdq +ipd +lzB +rKy +rft +iOX +iOX +eyO +itN +itN +itN +itN +jgu +wgO +wgO +wgO +tkj +oer +jgu +jgu +oPU +oPU +agv +rPI +qJf +gfL +eRq +tai +doq +wbI +tmx +gfj +wbI +wbI +weX +wbI +oPU +oPU +oPU +gAn +oPU +pAr +jgu +jgu +jgu +itN +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +"} +(92,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +agi +agi +agi +agi +agi +dxS +hoZ +hoZ +vjT +gFg +vjT +jHz +hoZ +hoZ +hoZ +hoZ +hoZ +lLQ +xeX +hoZ +otg +otg +otg +otg +lvD +jHz +lvD +otg +otg +otg +otg +aWV +jXz +jHz +jHz +qdJ +apf +ybg +muD +gyB +kOB +kOB +kOB +kOB +kOB +eXp +eXp +eXp +gAh +rja +bNE +bNE +pQs +pQs +pQs +bNE +rja +vVi +rja +rja +rja +oEi +kyF +hoo +cOj +bNE +raL +rty +iXJ +raL +bNE +wQb +bNE +wUs +ycC +rJF +ycC +lqq +lqq +bis +bis +bis +hHc +geL +wNr +cCF +tPz +bis +bis +dje +rJF +rJF +bPQ +qJP +akp +rJF +akp +okv +guz +aAA +vBX +fXI +guz +aAA +ppQ +fXI +guz +okv +aAA +ojk +uSA +guz +gcx +okv +gcx +guz +jYn +wrR +ipd +ipd +wrR +wrR +wrR +wrR +wrR +teq +teq +teq +teq +teq +orC +ipd +xZU +rKy +rft +iOX +iOX +xqP +tRH +bQM +bQM +itN +cIQ +oPU +oPU +wgO +tkj +exI +hHr +oyT +oyT +oyT +yar +wBx +nOi +txY +oWw +mdG +wjO +oPU +eFR +oPU +ccY +oPU +sBj +oPU +mpb +oPU +oPU +oPU +oPU +oPU +voi +cUA +jgu +itN +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +"} +(93,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +jHz +jHz +jHz +aPD +hoZ +hoZ +hoZ +jHz +itv +jHz +hoZ +hoZ +hoZ +hoZ +hoZ +lLQ +xeX +jHz +jHz +jHz +jHz +jHz +jnU +jHz +hoZ +jHz +jHz +jHz +jHz +jHz +jHz +jHz +jHz +egv +nga +kOB +kOB +kOB +qdJ +qdJ +qdJ +qdJ +qdJ +rja +rja +rja +gAh +oEi +qug +kyF +kyF +gZG +kyF +kyF +kyF +kyF +kyF +thI +kyF +hoo +bNE +bNE +cOj +bNE +rKA +qCk +cvd +rRz +bNE +wQb +bNE +cOj +eQQ +mNh +lqq +mxR +nzI +bis +bis +dbq +qQA +uAX +clP +efk +aXk +dbq +dje +ycC +hNY +ycC +bPQ +rJF +akp +rJF +bDX +okv +guz +aAA +vBX +xrz +guz +aAA +vBX +fXI +guz +okv +aAA +ojk +uSA +guz +gcx +okv +gcx +guz +byT +pVD +mKx +iTJ +rwQ +tSm +tSm +tSm +tSm +tSm +tSm +tSm +tSm +plh +vMs +ipd +xwo +rKy +rft +iOX +iOX +hil +tRH +bQM +bQM +itN +qeR +oPU +oPU +wgO +mPX +tiZ +tiZ +kJd +tiZ +tiZ +gkC +tiZ +tiZ +hHC +hgP +ecD +exa +oPU +dkl +oPU +oPU +qVW +vtk +oPU +oPU +oPU +oPU +oPU +oPU +oPU +tmX +xUr +jgu +itN +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +"} +(94,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +jHz +aWV +agi +agi +hoZ +hoZ +jHz +hoZ +hoZ +hoZ +jHz +hoZ +agi +agi +aWV +agi +jXz +hrw +hrw +hrw +hrw +lvD +hoZ +jHz +oiV +lvD +hrw +hrw +hrw +hrw +lvD +jHz +jHz +egv +nga +apf +kOB +kOB +qdJ +ekF +apf +fZe +raL +oEi +kyF +kyF +kyF +hoo +bNE +apf +bNE +bNE +bNE +bNE +bNE +bNE +bNE +bNE +bNE +bNE +bNE +bNE +cOj +bNE +raL +wND +imp +raL +bNE +wQb +cOj +dWB +rJF +eQQ +ycC +lqq +geL +sBA +dXv +lqq +kNs +ane +vvp +amd +uGu +puw +gPS +dyB +mNh +dDU +bPQ +ycC +akp +rJF +akp +okv +guz +aAA +yeX +pen +vYY +ppS +hGn +fXI +guz +okv +aAA +aje +vTI +guz +gcx +okv +gcx +ffA +jYn +pVD +mKx +iBM +nMp +nMp +nMp +iHW +nMp +nMp +nMp +nMp +rdo +rft +aId +ipd +cSh +rKy +rft +iOX +iOX +iOX +tRH +tRH +bQM +itN +jgu +bGA +wgO +wgO +wbI +wbI +wbI +fZD +oPU +oPU +hbo +jJS +occ +qBB +vxu +onb +rwu +wbI +uep +wbI +icS +lFc +rAK +oPU +oPU +aBZ +oPU +vhB +vhB +oPU +jgu +jgu +jgu +itN +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +"} +(95,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +aWV +tYg +clv +dxS +agi +hoZ +hoZ +hoZ +hoZ +hoZ +oiV +jHz +kAO +agi +agi +agi +agi +jXz +aWV +jXz +jXz +jXz +nub +hoZ +jHz +hoZ +nub +jXz +jXz +jXz +cvL +lvD +hoZ +jHz +jsU +apf +kOB +kOB +kOB +qdJ +apf +iTm +jWE +kyF +hoo +bNE +bNE +bNE +bNE +apf +qpk +sWe +sWe +sWe +sWe +sWe +sWe +sWe +sWe +sWe +sWe +sWe +sWe +lRr +rja +rja +rja +rja +rja +rja +wQb +bNE +cOj +bis +ycC +nzI +ycC +lqq +sBA +clP +clP +jjW +rgg +bxV +hMf +ycC +ycC +clP +dje +ddG +ddG +uEM +rJF +eqS +bis +bis +bnA +vDf +wSU +wSU +wSU +vBX +wSU +wSU +wSU +tSY +bnA +vDf +kok +nJq +guz +gcx +okv +gcx +vrS +jYn +wrR +wrR +tql +xiL +iOX +pGy +eYN +eYN +ybx +jqM +xiL +rKy +fzp +aTO +ipd +tWh +rKy +rft +tYQ +iOX +uWe +uWe +gEx +bQM +uGT +wgO +oPU +oPU +wgO +bNT +yge +kvh +wbI +oPU +oPU +bNT +jot +nec +vtl +tkj +oer +bNT +jot +pIs +kDN +pIs +fAv +wbI +mpb +oPU +jgu +jgu +nUe +cDl +itN +itN +itN +itN +itN +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +"} +(96,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +aWV +bPy +jyY +dxS +dxS +hoZ +bmV +hoZ +jnU +hoZ +oiV +jHz +hoZ +agi +agi +agi +agi +jXz +jXz +oXk +oXk +lvD +lvD +pKu +lvD +lvD +bXe +iDO +oYW +qjb +qov +lvD +hoZ +pCX +bNE +iPx +apf +gNY +egv +qdJ +fZe +iTm +iTm +jsU +bNE +bNE +qpk +sWe +sWe +wED +lRr +eXp +xat +cBJ +raL +raL +raL +bNE +xat +eXp +dTx +eXp +eXp +eXp +rja +ubc +gVs +lex +lex +rja +wQb +kMq +cOj +bis +bis +hPY +lqq +lqq +sBA +jjW +jpc +lNv +lqq +qbW +dOE +kNs +lqq +agT +eFD +bPQ +rJF +hNY +rJF +akp +rJF +rJF +bnA +fLY +wSU +wSU +wSU +vBX +bnh +wSU +wSU +vBX +bnA +vBX +wSU +nJq +guz +gcx +okv +gcx +ffA +jYn +wrR +nhX +anT +vcq +kle +wHC +kat +jVM +omN +nrd +vAX +rKy +rft +jgL +ipd +kdq +rKy +rft +iOX +aTY +rcc +rcc +gEx +bQM +uGT +sFo +hnK +oqG +jgu +bNT +azs +auQ +wbI +oPU +oPU +wbI +pKJ +qun +oyC +hsf +sUe +wbI +ukr +fOg +fOg +fOg +rGK +wbI +oPU +oPU +eLu +dFK +kTs +kTs +yet +eLu +twb +twb +kPz +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +"} +(97,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +aWV +aak +pnh +pKO +gpY +dxS +hoZ +hoZ +jHz +hoZ +hoZ +hoZ +jHz +hoZ +agi +agi +agi +agi +aWV +jXz +lBS +lLQ +lvD +hrw +lvD +lLQ +lvD +otK +otK +lvD +otK +vsL +jHz +hoZ +hoZ +bNE +nga +esS +apf +egv +qdJ +raL +wQb +apf +qpk +sWe +wED +lRr +rja +rja +rja +rja +eXp +mdD +bNE +raL +raL +raL +bNE +aqw +eXp +pTR +apf +hjV +hjV +apf +apf +apf +apf +apf +rja +wQb +kMq +umg +bis +bis +bis +wlG +bis +bis +bis +dbq +wvH +xNg +rFu +daA +clP +dbq +bis +bis +wMv +rJF +bPQ +rJF +akp +dje +rJF +bnA +guz +aAA +yeX +pen +ofw +ppS +hGn +fXI +guz +vBX +vBX +kok +bem +guz +gcx +okv +gcx +guz +byT +wrR +nzf +dpZ +vAX +hWz +bSM +bSM +bSM +bSM +vCm +pAl +rKy +rft +xZU +ipd +orC +rKy +rft +iOX +rcc +bma +rcc +gEx +bQM +uGT +uGT +uGT +uGT +itN +wbI +mtj +wbI +wbI +lgx +lgx +bNT +kjT +dqG +nFB +rNK +oer +vLH +nCX +dQW +nCX +nCX +rwj +wbI +oPU +oPU +eLu +bSq +kTs +kTs +vnG +eLu +twb +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(98,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +aWV +agi +tqx +qvN +dxS +jHz +hoZ +jHz +hoZ +hoZ +oiV +hoZ +hoZ +agi +agi +agi +agi +aWV +jXz +lvD +lvD +aeb +lLQ +dLL +lvD +fuO +otK +otK +lvD +otK +otK +jHz +jHz +jHz +apf +uQE +bNE +apf +rja +rja +oEi +hoo +bNE +cOj +myi +rja +rja +eXp +eXp +eXp +eXp +eXp +xat +bNE +raL +raL +raL +cBJ +xat +eXp +eXp +eXp +eXp +eXp +eXp +apf +apf +apf +wvY +rja +wQb +bNE +cOj +bis +ewE +ewE +ycC +xIx +bis +bis +bis +orr +mxR +alX +lqq +tPz +bis +bis +bis +bis +bis +bPQ +rJF +akp +rJF +rJF +bht +hTM +okv +qhZ +fXI +guz +aAA +ppQ +fXI +guz +vBX +vBX +wSU +bem +rdi +gcx +tER +gcx +guz +byT +wrR +eQz +ixK +rKG +wyd +oby +oby +oby +oby +ftd +vAX +rKy +oEX +sVZ +ipd +vMs +rKy +rft +iOX +iOX +xyq +xyq +gEx +bQM +bQM +bQM +bQM +bQM +itN +itN +jgu +jgu +jgu +tkg +tkg +jgu +noe +qun +vtl +tkj +oer +bNT +jot +kDN +kDN +kDN +fAv +vtl +oPU +oPU +eLu +xVJ +kTs +kTs +vnG +tUG +twb +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(99,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +lAh +aMg +dxS +jHz +jHz +jHz +jnU +hoZ +oiV +hoZ +hoZ +aWV +aWV +agi +jHz +aWV +jXz +lvD +qaA +jlb +jHz +ifw +vWj +lvD +aZi +aZi +lvD +aZi +uEy +egv +gAh +bNE +apf +apf +apf +uQE +apf +lag +wQb +xYN +bNE +cOj +ssM +rja +eXp +raL +rty +cui +mzn +eXp +til +ljx +raL +raL +raL +bpe +snr +eXp +raL +rty +iXJ +raL +xlb +apf +apf +apf +apf +xlb +wQb +bNE +cOj +wpD +lpr +ycC +ycC +ycC +bis +pcK +bis +bis +rFu +clP +fzO +clP +eHk +bZn +txb +rJF +eHk +bPQ +rJF +akp +wFS +hNY +omI +guz +aAA +vBX +fXI +guz +aAA +vBX +fXI +guz +vBX +vBX +wSU +nJq +rhh +kJf +okv +gcx +guz +jYn +wrR +wrR +iFg +bFJ +iOX +iDK +iDK +iOX +iOX +wMA +xiL +rKy +rft +wrR +wrR +wrR +mhS +rft +xyq +iOX +hPq +nvD +tRH +tRH +bQM +bQM +bQM +bQM +bQM +twb +lXs +hsZ +pBb +jJb +cME +eLu +noe +qun +oyC +tkj +oer +bNT +azs +fOg +fOg +syU +auQ +oyC +oPU +vhB +ayX +qbn +gfo +qPr +yet +vnG +kRO +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(100,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +bQM +bQM +azZ +agi +qRg +aWV +nub +hoZ +hoZ +hoZ +nub +agi +agi +agi +hoZ +ifL +jHz +jXz +lvD +eME +wMh +kQG +lEk +wcB +lvD +aeb +dLL +lLQ +aeb +dLL +egv +bNE +bNE +apf +apf +apf +apf +apf +lag +wQb +bNE +bNE +cOj +seh +rja +eXp +rKA +bff +bxg +jlB +xrZ +xGc +uws +uzy +uzy +uzy +iAq +xGc +bNE +rKA +qCk +cvd +rRz +rja +apf +esS +apf +xYe +rja +wQb +bNE +cOj +bis +xIx +ycC +trS +ycC +wpD +ycC +bis +bis +wMi +wMi +wMi +bis +bis +kzB +eHk +eFq +bis +bPQ +rJF +akp +rJF +dje +lcn +okv +xbr +vBX +fXI +guz +aAA +ppQ +fXI +wSX +iuz +vBX +wSU +nJq +rhh +uEj +okv +gcx +guz +jYn +pVD +mKx +iTJ +tSm +opP +tSm +tSm +tSm +tSm +rwQ +tSm +sjX +mdS +tSm +tSm +tSm +sbW +mdS +tSm +tSm +tSm +tSm +gLK +gEx +bQM +bQM +bQM +bQM +bQM +tPN +luy +doY +pBb +cME +jJb +eLu +tOS +qun +oyJ +tkj +nju +wbI +nCX +nCX +xgx +nCX +pBT +wbI +oPU +vhB +ayX +kTs +gfo +gfo +yet +vnG +vnA +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(101,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +bQM +bQM +bQM +bQM +bQM +agi +aWV +agi +lvD +jnU +hoZ +oiV +lvD +agi +nub +jHz +hoZ +hoZ +jHz +hoZ +tfw +oiV +lLQ +jHz +lLQ +jnU +lvD +jnU +oiV +lLQ +jnU +oiV +egv +apf +apf +apf +apf +pKY +qlf +hcv +hds +wnh +fth +bNE +cOj +eXp +eXp +eXp +raL +wND +xDk +xWE +bNE +bNE +bNE +raL +raL +raL +bNE +bNE +bNE +raL +wND +imp +raL +rja +rja +rja +rja +rja +rja +wQb +kMq +cOj +bis +ewE +ycC +ycC +bis +bis +wlG +bis +nOz +lqq +mxR +lqq +nOz +bis +bis +bis +bis +bis +bPQ +rJF +akp +bis +bis +bnA +bnA +cEw +bnA +bnA +bnA +vql +wSU +wSU +wSU +oVk +vBX +wSU +bem +rhh +jji +vjG +gcx +guz +byT +pVD +mKx +dBt +nMp +nMp +nMp +nMp +nMp +nMp +nMp +mDq +rdo +mAt +nMp +nMp +rdo +xiL +xiL +mAt +nMp +nMp +rdo +rft +gEx +bQM +bQM +bQM +bQM +bQM +twb +qDn +hUO +pBb +cME +cME +eLu +jgu +iSu +vtl +tkj +oer +bNT +esZ +kDN +kDN +kDN +exO +wbI +oPU +oPU +eLu +dFK +kTs +kTs +yet +gSC +vnA +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(102,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +bQM +bQM +bQM +bQM +bQM +agi +agi +agi +lvD +jnU +pCX +oiV +lvD +agi +nub +ifL +hoZ +hoZ +hoZ +nub +qYZ +oiV +neT +xdL +lLQ +jnU +lvD +pPo +oiV +lLQ +jnU +vFA +bNE +apf +iLJ +apf +bNE +bNE +bNE +bNE +rja +wQb +bNE +bNE +pQz +kyF +kyF +kyF +kyF +xYR +ceB +frc +nEh +kyF +bpo +kyF +kyF +kyF +kyF +kyF +kyF +kyF +kyF +kyF +kyF +kyF +kyF +kyF +kyF +kyF +kyF +hoo +kMq +umg +bis +ewE +ycC +kCI +bis +xzN +bDM +bTc +lqq +mxR +lqq +lqq +lqq +ilM +bDM +pgQ +bis +bFr +hIX +rJF +akp +bHt +bFr +cEw +cEw +cEw +cEw +bnA +aQR +wSU +wSU +uSA +wSU +oVk +vBX +kok +bem +guz +gcx +okv +gcx +guz +byT +wrR +vdH +eyv +wrR +wrR +oJl +iOX +vXk +wrR +ipd +wrR +qjX +wDe +xiL +iOX +pGy +eYN +eYN +ybx +iOX +xiL +rKy +rft +tRH +tRH +tRH +tRH +tRH +twb +twb +nzU +lvg +pBb +cME +uzw +eLu +jgu +jgu +fic +tkj +oer +bNT +azs +deB +sjR +deB +auQ +wbI +oPU +oPU +eLu +sIs +kTs +kTs +hgA +vnG +kRO +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(103,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +bQM +bQM +bQM +bQM +lAh +bQM +aWV +fXL +fXL +sjT +pmv +iDq +iDq +sjT +fXL +agi +jHz +hoZ +hoZ +hoZ +nub +qYZ +lvD +jCe +sxk +ddN +lvD +lvD +jnU +xvC +lLQ +jnU +oiV +uQE +apf +apf +bNE +gAh +egv +egv +rja +rja +wQb +bNE +bNE +vgi +bNE +bNE +bNE +bNE +bNE +vSC +eJK +bNE +bNE +bNE +bNE +bNE +bNE +bNE +bNE +bNE +bNE +bNE +bNE +bNE +kMq +kMq +bNE +bNE +bNE +kMq +kMq +bNE +cOj +bis +kCI +ycC +bis +bis +gKG +gjY +lKP +lqq +lqq +lqq +epV +lqq +oYG +bXh +lpd +bis +bis +kCj +rJF +eqS +bis +bFr +cEw +cEw +cEw +cEw +bnA +tEX +uSA +uSA +wSU +wSU +eys +vBX +wSU +nJq +guz +gcx +kEj +gcx +guz +jYn +pVD +iQH +mKx +ipd +ncs +mKx +xiL +mKx +xiL +gvr +ipd +rKy +rft +vAX +kle +mLm +kat +jVM +omN +nrd +vAX +rKy +rft +wrR +iOX +iOX +jqM +wrR +eLu +eLu +eLu +eLu +eLu +rIE +usg +eLu +noe +qun +msu +lte +hdA +fbo +wbI +fZD +wbI +wbI +wbI +wbI +oPU +oPU +eLu +kon +kTs +kTs +vnG +uIg +twb +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(104,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +bQM +bQM +bQM +bQM +lAh +bQM +agi +agi +agi +lvD +jnU +hoZ +oiV +lvD +agi +jHz +jHz +hoZ +hoZ +hoZ +jXz +rHV +lLQ +lvD +otg +lvD +lLQ +cNe +jCe +ddN +agi +jCe +ddN +apf +esS +bNE +egv +egv +egv +egv +eXp +rja +oEi +xDk +sWe +kzx +sWe +wED +sWe +oEi +kyF +kyF +xDk +sWe +wED +sWe +sWe +sWe +sWe +sWe +wED +sWe +oEi +kyF +kyF +xDk +sWe +sWe +wED +sWe +sWe +sWe +sWe +sWe +lRr +bis +tgB +tgB +bis +nOz +mCp +gTi +xst +lqq +lqq +lqq +lqq +lqq +vrT +mCp +gTi +nOz +bis +bPQ +qGh +akp +bHt +bFr +cEw +cEw +cEw +cEw +bnA +dCt +wSU +wSU +uSA +wSU +wSU +vBX +kok +nJq +guz +gcx +okv +gcx +guz +jYn +pVD +mKx +mKx +ipd +drt +mKx +xiL +mKx +xiL +ltz +ipd +rKy +iEA +vAX +hWz +bSM +bSM +bSM +bSM +vCm +vAX +rKy +rft +wrR +oJl +iOX +tJC +wrR +qzo +neE +iTK +uMc +eLu +cME +cME +eLu +fOg +xVK +fZD +tkj +oer +oPU +oPU +oPU +oPU +oPU +oPU +oPU +mpb +vhB +ayX +kTs +gfo +gfo +kTs +kSB +twb +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(105,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +bQM +bQM +bQM +bQM +bQM +lAh +azZ +agi +agi +hoZ +lvD +jnU +hoZ +oiV +lvD +hoZ +hoZ +hsc +hoZ +bmV +aWV +jXz +afX +cNe +lvD +lvD +kvg +lvD +lvD +agi +agi +agi +agi +agi +apf +apf +bNE +egv +egv +tel +ioM +ioM +ioM +sKu +iXs +ioM +ioM +ioM +ioM +ioM +sKu +chx +chx +iXs +ioM +ioM +ioM +ioM +ioM +ioM +ioM +ioM +ioM +sKu +chx +chx +iXs +ioM +ioM +hVI +hVI +hVI +jMh +jMh +hVI +hVI +hVI +nXj +nXj +sJu +lqq +mCp +gTi +kHf +tcL +nOz +pVR +nOz +jeL +fKm +mCp +gTi +lqq +wpD +bPQ +rJF +akp +bis +bFr +cEw +cEw +cEw +cEw +cEw +bnA +rPf +wSU +wSU +wSU +wSU +vBX +xNn +eBr +guz +gcx +okv +gcx +guz +jYn +pVD +mKx +mKx +ipd +kFd +mKx +sMY +mKx +xiL +vwN +ipd +rKy +rft +vAX +wyd +oby +oby +oby +oby +ftd +vAX +rKy +mdS +aMM +tSm +tSm +tSm +aMM +gag +ubP +ubP +ejs +liA +cME +cME +liA +nCX +nCX +wbI +tkj +oer +oPU +mpb +oPU +oPU +oPU +oPU +oPU +oPU +vhB +ayX +kTs +gfo +gfo +kTs +pYz +twb +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(106,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +bQM +bQM +bQM +bQM +bQM +lAh +azZ +agi +agi +agi +lvD +jnU +pCX +oiV +lvD +hoZ +hoZ +hsc +hoZ +hoZ +aWV +aWV +aWV +wIy +wIy +wIy +jXz +aWV +agi +agi +agi +agi +agi +agi +apf +apf +gAh +egv +egv +tel +ioM +ioM +ioM +dOO +oTi +ioM +hVI +hVI +slh +vfL +dAg +jbq +jbq +brC +gQz +hVI +hVI +hVI +hVI +hVI +hVI +hVI +bLM +dAg +jbq +jbq +brC +uMT +sJu +vBF +qrn +hVI +bmE +bmE +hVI +sVU +mEO +mEO +mEO +hVI +nOz +mCp +gTi +eTc +sfi +mWX +mWX +mWX +ifk +eTc +mCp +gTi +nOz +bis +bPQ +rJF +rkv +fVs +cvn +bQM +bQM +bQM +kPz +wyT +wSU +dXK +guz +aAA +wSU +wSU +vBX +ojk +vBX +guz +gcx +okv +gcx +guz +jYn +wrR +vdH +eyv +wrR +wrR +oJl +iOX +vXk +wrR +ipd +wrR +qjX +rft +xiL +iOX +qGf +iOX +vQi +iOX +iOX +xiL +rKy +mAt +aMM +nMp +nMp +nMp +aMM +gag +ubP +ubP +ubP +phe +uJg +cME +eLu +kDN +exO +wbI +tkj +oer +oPU +eLu +eLu +eLu +eLu +eLu +eLu +eLu +eLu +eLu +cmE +kTs +kTs +lJI +eLu +twb +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(107,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +lAh +azZ +azZ +bQM +bQM +bQM +bQM +lAh +azZ +agi +agi +agi +aWV +wIy +wIy +wIy +jXz +nub +nub +agi +agi +jHz +jHz +jXz +pgb +pgb +pgb +pgb +pgb +jXz +xLi +sQz +iFz +azZ +xLi +rja +apf +apf +rja +rja +egv +ioM +ioM +ioM +ioM +sKu +iXs +ioM +hVI +fCr +bLM +bLM +bLM +bLM +bLM +bLM +bLM +fCr +hVI +hVI +hVI +hVI +hVI +fCr +bLM +eRZ +trN +bLM +bLM +uMT +sJu +cyV +cyV +qrn +cyV +cyV +sJu +mEO +mEO +mJk +svh +hVI +bis +mCp +iYa +bDM +bDM +bDM +bDM +bDM +bDM +bDM +szs +gTi +bis +bis +bPQ +rJF +rJF +akp +cvn +kPz +kPz +kPz +cEw +wyT +wSU +fXI +guz +aAA +wSU +wSU +vBX +ojk +vBX +guz +gcx +okv +gcx +guz +bxA +cKU +xiL +iTJ +tSm +tSm +tSm +tSm +tSm +tSm +tSm +tSm +sbW +mdS +tSm +tSm +tSm +tSm +tSm +tSm +tSm +tSm +sbW +rft +wrR +iOX +iOX +iOX +wrR +ubP +ubP +ubP +iTK +eLu +cME +cME +eLu +deB +auQ +wbI +tkj +oer +lgS +eLu +eLu +eLu +iYQ +iYQ +eLu +iYQ +iYQ +eLu +eLu +ppI +ppI +eLu +eLu +twb +twb +kPz +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(108,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +lAh +azZ +azZ +bQM +bQM +bQM +azZ +lAh +azZ +azZ +azZ +azZ +pgb +pgb +pgb +pgb +pgb +mvp +cJL +azZ +xLi +ddL +ddL +xLi +mvp +mvp +mvp +rYw +mvp +luZ +mvp +mvp +mvp +azZ +azZ +bLM +bLM +bLM +mEO +bLM +xsC +hVI +bPV +aJo +ayB +dAg +brC +bLM +aKb +jQs +xEH +iNt +bLM +bLM +ddB +jQs +veR +fYa +fYa +gbv +gBN +jpQ +xEH +bLM +bLM +oQk +hOG +xMX +veR +ioM +hVI +cyV +cyV +qrn +cyV +mbg +ioM +yaJ +mEO +mrX +mrX +pkM +bis +wzH +tyj +tyj +tyj +bXh +rJF +nTv +tyj +tyj +tyj +dtS +bis +byB +etj +wpy +cCO +akp +cvn +bQM +bQM +bQM +wyT +wSU +yeX +pen +ofw +ppS +hGn +lit +vBX +aje +vTI +guz +gcx +okv +gcx +guz +vBX +evT +xiL +rKy +xiL +xiL +xiL +vCl +xiL +xiL +xiL +xiL +xiL +xiL +xiL +xiL +xiL +xiL +xiL +xiL +xiL +xiL +xiL +fXD +wrR +wrR +jRh +wrR +wrR +rfQ +qMI +ubP +neE +eLu +eLu +eLu +eLu +sGI +szK +wbI +mPX +qhk +oPU +eLu +mTM +gyJ +cME +cME +rJh +cME +cME +cME +gyJ +cME +cME +eLu +tHJ +lQJ +twb +twb +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(109,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +lAh +lAh +lAh +lAh +lAh +lAh +lAh +azZ +azZ +hae +hae +ceJ +mJH +hAX +tsA +oZk +mvp +lkr +hae +hae +ncF +hae +hae +hae +hae +hae +hae +hae +hae +hae +hae +hae +hae +azZ +azZ +azZ +kpe +jQs +jQs +mEO +jQs +mEO +mEO +bLM +oTi +ddB +jQs +xEH +dOO +asI +oTi +ddB +jQs +xEH +dOO +bLM +dVD +ddB +jQs +xEH +dOO +bLM +oTi +ddB +nmK +xEH +xfh +bLM +ftS +ioM +hVI +qrn +qrn +hVI +qrn +qrn +ioM +ioM +bmE +aFZ +aFZ +aFZ +bFr +jUs +clP +oxS +eTc +gdQ +rJF +gTi +eTc +clP +oxS +iwf +bFr +cvn +cvn +bPQ +rJF +akp +cvn +bFr +cvn +cvn +cEw +wSU +wSU +fXI +guz +aAA +wSU +wSU +vBX +kok +nJq +guz +gcx +okv +gcx +guz +eQY +sVd +xiL +sFd +nMp +nMp +nMp +nMp +nMp +nMp +nMp +nMp +rdo +mAt +nMp +nMp +nMp +nMp +nMp +nMp +nMp +nMp +rdo +rft +wrR +iOX +iOX +iOX +wrR +ubP +ubP +ubP +ubP +fXB +voi +voi +vhB +oPU +oPU +oPU +oPU +oPU +lRq +liA +cME +cME +cME +cME +cME +cME +cME +cME +xno +cME +cME +ayX +qsF +dYV +upf +nWB +twb +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(110,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +lAh +azZ +azZ +azZ +bQM +azZ +azZ +azZ +eqU +eqU +uAg +kpq +mvp +pgb +dqX +jFD +mvp +cer +pvF +eqU +eHn +eqU +eqU +eqU +eqU +eqU +hmE +eqU +hvp +uAg +pvF +eqU +qSA +eqU +azZ +azZ +azZ +jbq +jbq +jbq +jbq +mEO +dAg +jbq +brC +dOO +bLM +oTi +dAg +jbq +brC +dOO +bLM +oTi +dAg +jbq +rcE +dOO +ekz +ftS +dAg +jbq +brC +kQr +bLM +oTi +dAg +jbq +evk +uMT +sJu +cyV +cyV +qrn +cyV +cyV +qrn +qrn +cyV +tQB +bQM +bQM +cvn +jjW +tna +umW +jjW +mCp +rJF +gTi +jjW +tna +umW +jjW +cvn +bQM +cvn +iKs +iKs +iKs +kpR +uLM +cxc +ldd +nIb +gSK +wSU +fXI +guz +aAA +wSU +wSU +vBX +bnA +bem +guz +pCH +awL +wSt +guz +jYn +wrR +mKx +rft +xiL +iOX +pGy +eYN +eYN +ybx +iOX +xiL +gmx +rft +kgY +mxm +pGy +eYN +eYN +ybx +jqM +xiL +rKy +mdS +aMM +tSm +tSm +tSm +aMM +gag +ubP +ubP +ubP +fXB +voi +voi +vhB +oPU +oPU +oPU +oPU +oMu +oPU +eLu +cME +cPq +cME +cME +cME +cME +cME +cME +cPq +cME +cME +ayX +qsF +mHC +gfo +ivK +twb +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(111,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +nQE +kpq +mvp +gTN +wln +rot +mvp +xmC +kpq +azZ +azZ +mvp +mvp +mvp +mvp +mvp +mvp +mvp +mvp +cer +kpq +jVt +mvp +mvp +erj +azZ +azZ +azZ +azZ +eLw +xsC +hVI +xsC +bLM +bLM +dAg +jbq +brC +bLM +bLM +bLM +dAg +jbq +brC +bLM +bLM +oQk +iKO +jbq +uJQ +bLM +raP +bLM +fqh +aSm +brC +bLM +bLM +bLM +omO +sJu +cyV +cyV +qrn +kvx +cyV +qrn +qrn +cyV +tQB +bQM +bQM +cvn +jjW +tna +umW +ovM +mCp +rJF +gTi +alX +tna +umW +jjW +cvn +bQM +cvn +vCu +rJF +qGh +wNX +wNX +wNX +wNX +lri +wSU +yeX +pen +ofw +ppS +hGn +lit +tSY +bnA +nJq +guz +guz +guz +guz +guz +jYn +wrR +mKx +rft +aYf +kle +mLm +kat +jVM +omN +nrd +vAX +rKy +rft +oeV +kle +mLm +kat +jVM +omN +nrd +vAX +rKy +mAt +aMM +nMp +nMp +nMp +aMM +gag +ubP +iwu +ubP +fXB +voi +voi +vhB +lgx +oPU +oPU +oPU +oPU +lgS +eLu +eLu +eLu +iYQ +iYQ +eLu +iYQ +iYQ +eLu +eLu +cME +cME +eLu +wxl +hZN +gfo +dYV +dxv +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(112,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +kpq +pgb +vFS +pgb +pgb +pgb +nQE +kpq +azZ +xLi +xLi +xLi +rHX +rHX +esR +xLi +hrA +mvp +cer +kpq +jdn +mvp +mvp +erj +azZ +azZ +azZ +azZ +azZ +aFZ +ioM +ioM +ioM +xUn +xUn +xUn +xUn +xUn +aFZ +aFZ +tQB +tQB +tQB +tQB +tQB +aFZ +aFZ +bLM +bLM +bLM +hVI +hVI +hVI +hVI +hVI +luf +hDV +luf +ioM +hVI +qrn +qrn +qrn +qrn +hIO +hVI +fDi +cqX +tQB +bQM +bQM +cvn +jjW +tna +umW +jjW +mCp +rJF +gTi +jjW +tna +umW +jjW +cvn +bQM +cvn +iKs +iKs +iKs +rJF +iKs +iKs +iKs +wSU +wSU +wSU +fXI +guz +aAA +wSU +wSU +vBX +bnA +mOm +cZP +vov +vBX +qLv +cZP +jRC +wrR +vdH +rft +vAX +hWz +bSM +bSM +bSM +bSM +wYP +vAX +rKy +rft +lIH +hWz +bSM +bSM +bSM +bSM +vCm +vAX +rKy +rft +wrR +oJl +iOX +tJC +wrR +ubP +ubP +ubP +aTx +eLu +eLu +eLu +eLu +tLC +eLu +eLu +pdB +vhB +xck +twb +twb +twb +tPN +tPN +twb +tPN +tPN +twb +twb +tPN +twb +twb +twb +vQJ +kTs +kTs +hej +twb +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(113,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +kpq +azZ +azZ +azZ +azZ +azZ +cer +azZ +azZ +xLi +oZf +rHX +lkr +hae +ceJ +sbL +mvp +mvp +cer +kpq +fKP +mvp +vRH +azZ +azZ +azZ +azZ +azZ +azZ +aFZ +ioM +ioM +ioM +qrn +byY +byY +byY +eRF +aFZ +bQM +bQM +bQM +bQM +bQM +bQM +bQM +aFZ +hVI +jjs +hVI +hVI +jvm +tja +aif +xuQ +tja +tja +tja +ioM +iUc +nEB +qrn +qrn +qrn +bwj +hVI +fDi +cqX +tQB +bQM +bQM +cvn +jjW +tna +umW +alX +mCp +rJF +gTi +jjW +tna +umW +jjW +cvn +bQM +cvn +bPQ +rJF +rJF +xow +pBe +xow +xow +caC +wSU +wSU +fXI +guz +aAA +wSU +wSU +lNP +bnA +bnA +eOI +aqj +fpN +bQj +oxU +wrR +wrR +mKx +rft +vAX +wyd +oby +oby +oby +oby +ftd +vAX +rKy +rft +iiz +wyd +oby +oby +oby +hKP +ftd +vAX +rKy +rft +wrR +iOX +iOX +iOX +wrR +axA +ubP +ubP +ubP +eLu +iuZ +cME +nUJ +cME +cME +eLu +voi +voi +xUr +itN +swg +fQV +fQV +fyC +qOk +mKS +fyC +qOk +mKS +fQV +fQV +erT +twb +chE +kMU +gfo +ivK +twb +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(114,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +azZ +phz +azZ +azZ +xLi +tYU +lkr +hae +ceJ +bGH +kWS +mvp +mvp +cer +kpq +mvp +mvp +mvp +azZ +azZ +azZ +bQM +dPZ +ogf +ogf +tsc +bEk +tsc +tii +tii +tii +tii +tii +bTI +bEk +hEb +hzG +hzG +hay +vmj +bQM +aFZ +cdY +tja +tja +hVI +iJF +nuN +hVI +nQl +tja +tja +cgx +ioM +qrn +cyV +ndZ +qrn +cyV +cyV +qrn +qrn +cyV +tQB +bQM +bQM +cvn +jjW +tna +umW +jjW +mCp +rJF +gTi +jjW +tna +umW +jjW +cvn +bQM +cvn +iKs +iKs +iKs +kpR +iDQ +sUr +iyY +nIb +lQo +cEw +wyT +wyT +wyT +wSU +wSU +vBX +vBX +guz +vBX +vBX +vBX +vBX +bXA +teq +xiL +mKx +rft +xiL +iOX +iOX +iOX +jqM +jqM +iOX +xiL +rKy +rft +xiL +iOX +iOX +iOX +iOX +iOX +iOX +xiL +rKy +rft +wrR +wrR +jRh +wrR +wrR +xiF +ubP +ubP +ejs +liA +cME +nqL +cME +cME +cME +eLu +voi +voi +lwA +uGT +bTo +afk +afk +afk +hkh +afk +afk +hkh +afk +afk +afk +iWq +tPN +rMo +kTs +kTs +ape +exy +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(115,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +xLi +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +azZ +kBE +azZ +azZ +xLi +aJk +muX +mvp +kpq +iOY +tYU +mvp +mvp +cer +gpA +luZ +lAh +lAh +azZ +azZ +bQM +bQM +bmT +bQM +bQM +vxz +iSR +vxz +mPe +esw +esw +esw +esw +bTI +bQM +bFA +anm +qFi +hXZ +aLp +aLp +aFZ +gnG +tja +tja +hVI +xgn +tja +hVI +tpZ +xhL +tja +tja +sJu +qrn +lwd +ndZ +qrn +cyV +cyV +qrn +qrn +cyV +aFZ +aFZ +aFZ +bFr +jUs +clP +clP +eTc +mCp +rJc +gTi +eTc +clP +clP +iwf +bFr +cvn +cvn +bPQ +wIL +akp +cvn +bFr +cvn +cvn +cEw +cEw +cEw +bQM +bQM +wyT +wSU +wSU +vBX +nJu +guz +vBX +vBX +vBX +vBX +vBX +teq +xiL +xiL +iTJ +tSm +tSm +tSm +tSm +tSm +tSm +tSm +tSm +sbW +mdS +tSm +tSm +tSm +gbF +tSm +tSm +tSm +tSm +sbW +rft +wrR +qQt +cME +dkb +uGY +axA +ubP +ubP +aTx +eLu +eLu +eLu +eLu +tLC +eLu +eLu +hpd +fXB +fXB +dCM +bTo +afk +afk +afk +pcu +afk +afk +pcu +afk +afk +afk +iWq +tPN +fmE +dKX +gfo +rQu +fzC +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(116,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +xLi +mvp +ubX +wAQ +iOY +rHX +sbL +mvp +mvp +cer +kpq +mvp +jKR +lAh +azZ +azZ +bQM +bQM +bmT +bQM +bQM +knY +fvH +knY +jMh +jMh +jMh +cMb +jMh +bTI +bQM +bFA +rYY +ePq +mzS +lEp +wWW +xXh +xuQ +gjz +tja +tEH +tja +tja +hVI +qEl +qEl +tja +tja +ioM +hVI +hVI +hVI +hVI +ioM +bmE +ioM +hVI +bmE +hVI +hVI +ioM +bis +xzN +bDM +bDM +qLa +dZK +rJF +iYa +bDM +opN +bDM +pgQ +bis +byB +lpH +hUD +wIL +akp +cvn +kPz +kPz +kPz +kPz +kPz +kPz +kPz +kPz +wyT +iSw +wSU +wSU +wSU +weB +wSU +wSU +wSU +wSU +wSU +teq +cdV +xiL +sFd +nMp +oFU +nMp +nMp +nMp +nMp +oFU +rdo +xiL +xiL +mAt +igu +nMp +nMp +nMp +nMp +nMp +nMp +nMp +eSn +wrR +bcf +cME +cME +uGY +ubP +ubP +ubP +ubP +ubP +vnG +vnG +vnG +fRq +ubP +ubP +ubP +ubP +ubP +dCM +bTo +afk +afk +afk +hkh +afk +afk +hkh +afk +afk +afk +iWq +tPN +mKo +kTs +kTs +bYY +dwf +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(117,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +lAh +lAh +lAh +lAh +lAh +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +xLi +xLi +oZf +tYU +knW +fop +xLi +esR +mvp +cer +kpq +mvp +efT +lAh +azZ +azZ +bQM +bQM +qmv +ogf +ogf +tsc +bEk +tsc +tii +tii +tii +tii +tii +bTI +bEk +eHC +uVX +uVX +nHZ +tHL +sTu +aFZ +xuQ +tja +tja +hVI +ieu +ieu +hVI +hVI +qEl +tja +tja +qrn +hGg +tge +pFc +stU +ioM +esw +ioM +hVI +byY +nfZ +qmj +ioM +bis +mCp +nTv +tyj +tyj +nvn +rJF +nTv +tyj +tyj +bXh +gTi +bis +bis +bPQ +rJF +rJF +akp +cvn +bQM +bQM +bQM +kPz +bQM +bQM +bQM +bQM +wyT +wyT +wyT +wyT +nqN +uGY +uuL +uuL +uuL +nYi +nYi +nqN +nqN +nqN +tRH +tRH +tRH +tRH +tRH +tRH +nqN +ceC +dCn +dCn +dCn +wIk +ceC +nqN +tRH +tRH +tRH +tRH +wrR +wrR +wrR +wrR +eLu +cME +cME +ggk +iTj +ubP +qMI +ubP +ubP +ubP +ubP +ubP +ubP +ubP +ubP +ubP +ubP +ubP +nqN +aKA +jlH +jlH +tWI +llQ +jKI +tWI +llQ +jKI +jlH +jlH +bUB +twb +ifP +gfo +gfo +ivK +twb +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(118,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +lAh +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +xLi +xLi +xLi +xLi +azZ +lAh +lAh +lAh +lAh +lAh +lAh +mvp +mvp +cer +kpq +xLi +xLi +azZ +azZ +azZ +azZ +bQM +bQM +bQM +aFZ +aFZ +aFZ +aSS +qrn +byY +duW +byY +qrn +aFZ +bQM +bQM +bQM +bQM +bQM +bQM +bQM +aFZ +mdz +xhL +tja +tEH +gOJ +rQK +uVD +aif +eVN +ddB +rie +jQs +jQs +jQs +qhC +jQs +umz +xEH +ioM +dTX +mEO +mEO +mEO +ioM +nOz +mCp +gTi +eTc +clP +wzH +fIL +dtS +clP +eTc +mCp +gTi +nOz +bis +bPQ +rJF +kKd +akp +cvn +bQM +bQM +bQM +kPz +bQM +bQM +bQM +bQM +kPz +bQM +bQM +bQM +dCM +fDb +ihB +ihB +ihB +ihB +ihB +ihB +ihB +dCM +bQM +kPz +bQM +bQM +kPz +bQM +dCM +dUu +sNU +dHU +ubP +vIG +gag +dCM +bQM +kPz +bQM +tPN +hOA +pJK +pJK +eLu +kNY +cME +itK +uGY +ubP +ubP +ubP +ubP +ubP +ubP +ubP +ubP +ubP +ubP +ubP +ubP +ubP +ubP +uGY +aWk +aWk +pRG +pRG +aWk +pRG +pRG +aWk +pRG +pRG +aWk +twb +twb +vQJ +kTs +kTs +wnM +twb +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(119,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +xLi +xLi +xLi +xLi +xLi +xLi +xLi +xLi +xLi +xLi +pSs +mBJ +mvp +cer +kpq +lAh +lAh +lAh +lAh +azZ +azZ +tel +tel +tel +aFZ +aFZ +mIu +ioM +xUn +xUn +xUn +xUn +xUn +aFZ +fQV +fQV +fQV +aFZ +tQB +tQB +aFZ +aFZ +wDw +ylW +ylW +tEH +gtH +uVD +ppX +hVI +ceq +dAg +iea +mzK +jbq +jbq +qDZ +jbq +iea +oTi +ioM +ihp +mEO +mEO +mEO +sJu +lqq +mCp +gTi +jjW +nOz +dnz +kNB +bPl +nOz +jjW +mCp +gTi +lqq +wpD +bPQ +qGh +rJF +akp +bFr +bFr +kPz +kPz +kPz +kPz +kPz +kPz +kPz +kPz +kPz +kPz +kPz +dCM +bBt +ihB +mWS +sNU +gag +pbX +igV +ihB +dCM +bQM +kPz +kPz +kPz +kPz +bQM +dCM +gag +sNU +ubP +nyC +pbX +gag +dCM +bQM +kPz +bQM +tPN +cME +cME +cME +xno +cME +cME +uzw +uGY +gag +cHl +nqN +nqN +nqN +aME +gag +cHl +nqN +nqN +nqN +aME +gag +cHl +uGY +vZX +vZX +vZX +vZX +oly +vZX +vZX +oly +vZX +vZX +jwc +pEt +cxb +uRI +gfo +hyc +qwG +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(120,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +lAh +azZ +azZ +lAh +lAh +lAh +lAh +lAh +xLi +xLi +xLi +jdn +jVt +xLi +xLi +sNg +xak +xLi +xLi +xLi +xLi +mvp +cer +kpq +xLi +cyk +mAS +xLi +sWb +azZ +tel +tel +tel +hVI +xLS +mEO +ioM +qrn +bLM +tja +bLM +qrn +tQB +pcu +pcu +pcu +tQB +prC +rbp +hyq +qrn +tja +tja +tja +hVI +tEH +tEH +hVI +hVI +tEH +hVI +dOO +oTi +ikt +jQs +jQs +xEH +wFp +pzE +ioM +pNG +mEO +mEO +byY +ioM +nOz +mCp +gTi +eTc +clP +xzN +bDM +pgQ +clP +eTc +mCp +gTi +nOz +bFr +bPQ +iKs +iKs +akp +bFr +bFr +bQM +bQM +kPz +bQM +bQM +bQM +bQM +kPz +bQM +bQM +bQM +dCM +bBt +ihB +gag +sNU +gag +pbX +gag +ihB +dCM +bQM +kPz +bQM +bQM +kPz +bQM +dCM +gag +sNU +bSs +dHU +pbX +cDE +dCM +bQM +kPz +bQM +tPN +cME +cME +cME +cME +cME +cME +cME +gIB +lld +lld +dCM +bQM +dCM +lld +lld +lld +dCM +bQM +dCM +lld +lld +lld +ovr +vZX +vZX +vZX +vZX +fvL +vZX +vZX +vZX +vZX +vZX +jwc +qsF +kTs +gfo +gfo +ivK +twb +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(121,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +lAh +lAh +lAh +lAh +azZ +azZ +azZ +azZ +xLi +xLi +fKP +mvp +mvp +mvp +oih +mvp +mvp +hrA +wou +xLi +xLi +cGa +cer +kpq +fMc +qkt +nEW +ddL +ejw +ejw +ejw +rBr +cXp +hVI +xLS +mEO +sJu +jMh +bLM +tja +bLM +jMh +tQB +jlH +jlH +jlH +tQB +qrn +qrn +jxm +qrn +tja +bOR +tja +ddB +jQs +jQs +jQs +iWe +jQs +lBR +afq +oTi +dOO +wXN +bJG +eOp +qqW +tja +sJu +mEO +mEO +mEO +vXl +ioM +bis +gKG +iYa +bDM +bDM +dZK +rJF +iYa +bDM +bDM +dZK +lpd +bFr +bFr +kCj +rJF +rJF +akp +bFr +bFr +bFr +bFr +bFr +bFr +gBY +gBY +gBY +bFr +gBY +gBY +gBY +dCM +fDb +ihB +gag +sNU +gag +pbX +gag +ihB +nqN +nqN +nqN +nqN +nqN +nqN +nqN +nqN +ceC +dCn +dCn +dCn +llJ +ceC +nqN +nqN +nqN +nqN +twb +cME +wJw +cME +cME +cME +cME +cME +gIB +ihB +ihB +dCM +bQM +dCM +ihB +ihB +ihB +dCM +bQM +dCM +ihB +ihB +oXb +nqN +aWk +aWk +aWk +vZX +nbb +gXu +rAm +qkN +vZX +vZX +aWk +nrn +pxL +ddv +vLe +rVp +twb +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(122,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +xLi +wQY +mvp +lkr +hae +hae +hae +hae +hae +hae +hae +xZR +hae +hae +iRI +kpq +oxp +rHX +tvi +ddL +mvp +rHX +mvp +sWb +phz +hVI +qeX +mEO +hVI +rsH +rZI +tja +bLM +byY +aFZ +tQB +tQB +tQB +aFZ +qrn +kYz +bAE +vci +tja +tja +tja +dOO +tja +tja +tja +tja +tja +tja +tja +oTi +dOO +tsr +pSr +oTi +hiP +tcD +aFZ +hVI +hVI +bmE +hVI +aFZ +bFr +wzH +tyj +tyj +tyj +bXh +rJF +nTv +tyj +tyj +tyj +dtS +bFr +bis +fTn +hXX +hXX +byc +bFr +bFr +bFr +bFr +bFr +bFr +iKs +iKs +iKs +bFr +iKs +iKs +iKs +uGY +uGY +ihB +gag +sNU +gag +pbX +gag +ihB +hVG +ubP +ubP +ubP +ubP +ubP +nEI +ubP +fYo +fou +alY +cqT +fou +aNk +ubP +ubP +ubP +uGY +gKl +cME +klC +cME +rJh +nNJ +kNY +rmh +ceC +ubP +ubP +nqN +bQM +nqN +ubP +ubP +ubP +nqN +bQM +nqN +tEY +ubP +ubP +dCM +bQM +bQM +pRG +vZX +vZX +wHq +qQj +qkN +vZX +vZX +aWk +twb +twb +twb +twb +twb +twb +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(123,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +bQM +bQM +azZ +azZ +lAh +lAh +lAh +lAh +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +xLi +geT +mvp +cer +pvF +eqU +hmE +eqU +eqU +eqU +eqU +xZR +eqU +eqU +uAg +kpq +xLi +cZe +bKF +ddL +mvp +rHX +mvp +wfY +sWb +hVI +hVI +mEO +hVI +qrn +oJN +tja +bLM +qrn +hVI +wow +boF +xaO +hVI +hVI +hVI +lOm +rjP +qrn +tja +qrn +dAg +tlJ +qnb +jbq +jbq +qDZ +jbq +iea +mEO +dOO +sls +lfo +oTi +dOO +oTi +hVI +nmL +ixn +dOO +oTi +ubA +bFr +bFr +uIS +uIS +bis +mCp +rJF +gTi +bis +uIS +uIS +bis +bFr +fQA +mCp +dBy +dBy +gTi +rJF +bDM +bDM +rJF +dBy +dBy +gTi +xzN +bDM +bDM +bDM +bDM +pgQ +mCp +ggk +ihB +gag +sNU +gag +pbX +hnM +ihB +hVG +ubP +ubP +rAY +ubP +ubP +ubP +ngn +sYP +ihB +ktC +kHZ +lRk +ihB +ihB +ubP +ubP +uGY +cFq +xno +klC +cME +cME +twb +twb +twb +nqN +ubP +ubP +nqN +bQM +nqN +ubP +ubP +ubP +nqN +bQM +nqN +ubP +ubP +ubP +dCM +bQM +bQM +pRG +fvL +vZX +vZX +vZX +vZX +vZX +vZX +aWk +kPz +kPz +kPz +kPz +kPz +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(124,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +bQM +bQM +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +xLi +xLi +mvp +cer +kpq +mvp +mvp +mvp +mvp +mvp +wou +xLi +xLi +cGa +cer +kpq +xLi +ddL +ddL +ddL +ejw +ejw +ejq +gAA +phz +hVI +hVI +mEO +hVI +tAj +dOt +tja +bLM +ckt +hVI +tMV +bLM +bLM +bLM +bLM +hVI +hVI +hVI +qrn +jiA +qrn +hVI +aqo +sdR +jci +nsm +cGU +mEO +dOO +dVD +dOO +hhD +kpv +oTi +dOO +oTi +hVI +xOs +bLM +bLM +bLM +kYd +bpx +hVI +pdN +fQA +bis +wMi +wMi +wMi +bis +tJQ +mnR +bis +bFr +fQA +mCp +iKs +iKs +kvT +rJF +iKs +iKs +rJF +clb +dBy +dBy +dBy +iKs +iKs +iKs +dFh +dBy +dBy +ggk +ihB +gag +sNU +gag +pbX +gag +ihB +hVG +bLE +ubP +ubP +ubP +nDq +ubP +ngn +wWs +wWs +gag +aej +wWs +wWs +ihB +qrI +ejs +ggk +cME +cME +cME +rJh +cME +tPN +bQM +bQM +dCM +ihB +ihB +dCM +bQM +dCM +ihB +ihB +ihB +dCM +bQM +dCM +ihB +ihB +ihB +dCM +bQM +bQM +pRG +vZX +vZX +ast +nbb +vZX +vZX +tlV +aWk +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(125,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +azZ +azZ +xLi +xLi +mvp +phC +kpq +mvp +xLi +xLi +ddL +ddL +ddL +xLi +xLi +mvp +cer +kpq +vtr +epD +mvp +mvp +mvp +mvp +phz +phz +phz +mEO +mEO +mEO +hVI +byY +bLM +tja +bLM +byY +hVI +jhl +tja +tja +tja +tja +tja +aif +tja +tja +tja +yhs +hVI +kYi +aFQ +xxX +iAA +aRt +nUb +lzd +oTi +dOO +wXN +oFO +sHM +dOO +tja +aif +bLM +oga +dOO +oTi +brC +pjE +hVI +rJF +rJF +rJF +mCp +dBy +gTi +rJF +rJF +bQv +rJF +rJF +rJF +mCp +dBy +dBy +gTi +rJF +vCQ +tyj +rJF +dBy +dBy +gTi +wzH +tyj +tyj +tyj +tyj +dtS +mCp +ggk +ihB +gag +sNU +gag +pbX +mWS +oXb +ceC +xGt +xGt +ceC +ubP +iwy +ubP +ihB +wWs +wWs +gag +gag +wWs +wWs +ihB +ncY +ejs +ggk +cME +cME +cME +cME +oQI +tPN +bQM +bQM +dCM +ldZ +sbF +dCM +bQM +dCM +sbF +sbF +sbF +dCM +bQM +dCM +sbF +sbF +sbF +dCM +bQM +bQM +pRG +vZX +vZX +ePB +ePB +oWF +ePB +aWk +aWk +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(126,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +azZ +azZ +xLi +hrA +mvp +cer +kpq +wou +xLi +hqG +lQL +qsE +qMi +uky +nmy +luZ +cer +kpq +mvp +mvp +mvp +luZ +mvp +mvp +mvp +mvp +phz +ecu +mEO +hVI +hVI +jMh +bLM +tja +bLM +jMh +vWe +hVI +tja +bLM +sBO +hVI +hVI +hVI +hVI +hVI +hVI +hVI +wkd +hVI +kTL +mEO +mEO +tUS +azv +nUb +mEO +uza +ipA +jbq +brC +dOO +pzE +hVI +hVI +hVI +tEH +tEH +tEH +hVI +hVI +dBy +dBy +rJF +mCp +iKs +gTi +rJF +xzN +bDM +bDM +bDM +bDM +dZK +iKs +nTv +dtS +fQA +bis +bis +bis +oLV +nxq +dBy +clb +bFr +cvn +cvn +bFr +dBy +dBy +uGY +any +ihB +ihB +ihB +ihB +ihB +ihB +buz +ycf +hek +dCM +ubP +ubP +ubP +ihB +wWs +wWs +dHU +ubP +wWs +wWs +ihB +ubP +ubP +uGY +obz +lAV +cME +cME +eLu +nqN +nqN +nqN +nqN +gag +fCD +nqN +nqN +nqN +aME +gag +cHl +nqN +nqN +nqN +aME +gag +cHl +nqN +nqN +nqN +nqN +vZX +waU +ePB +wbB +nbb +vZX +ykX +pRG +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(127,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +azZ +azZ +sWb +mvp +mvp +cer +kpq +mvp +ddL +lXO +nId +ykO +pCc +pxW +ioV +mvp +cer +wun +hae +hae +hae +hae +hae +hae +ceJ +mvp +phz +mEO +mEO +hVI +xsC +bLM +ioS +tja +bLM +bLM +bLM +jTD +tja +bLM +tGU +rGe +fCr +bLM +gbv +bLM +fYa +voK +koY +bLM +hOG +jQs +mEO +jQs +oDV +sBM +bQn +nJT +jQs +jQs +jQs +afq +oTi +bLM +bLM +bLM +bLM +bLM +bLM +bLM +sJu +fie +dBy +rJF +mCp +iKs +gTi +rJF +mCp +iKs +iKs +dBy +dBy +iKs +nTv +dtS +fQA +bis +bis +cME +bis +bis +gXd +dBy +owd +cvn +bQM +bQM +cvn +dBy +aSM +uGY +uGY +uGY +uGY +uGY +nqN +ksL +eip +gpG +ihB +ohx +ceC +cxy +ubP +ubP +ihB +wWs +wWs +xNG +ubP +wWs +wWs +ihB +ubP +aTx +nqN +uGY +uxv +uxv +uGY +uGY +vlS +psm +ubP +nXu +ubP +ubP +ubP +mVY +mqB +ubP +qMI +ubP +ubP +ubP +ubP +ubP +ubP +qMI +ubP +fYo +ubP +nqN +vZX +vZX +xLQ +vZX +vZX +vZX +iIS +pRG +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(128,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +azZ +azZ +xLi +sWb +esR +cer +kpq +mvp +ddL +ntH +nMZ +oHX +pFP +iUr +tNf +mvp +cer +pvF +eqU +eqU +eqU +eqU +eqU +uAg +kpq +mvp +phz +mEO +hVI +hVI +suY +tja +tja +tja +tja +tja +tja +tja +tja +bLM +gQz +ntM +bLM +tja +tja +tja +gFp +ikL +bLM +bLM +mEO +mzK +jbq +mEO +jbq +jbq +jbq +bXc +jbq +jbq +jbq +iea +oTi +bLM +bLM +bLM +bLM +bLM +bLM +bLM +sJu +fie +sWl +rJF +mCp +iKs +gTi +rJF +wzH +tyj +tyj +tyj +tyj +tyj +dtS +fQA +bis +bis +cME +cME +wpD +iKs +oeY +dBy +nxq +bFr +cvn +cvn +bFr +dBy +dBy +eLu +eLu +fdf +rQd +rOu +twb +oZy +nfA +gpG +lkP +ihB +hVG +fZz +nDq +uRZ +ihB +wWs +wWs +gag +gag +wWs +wWs +ihB +nDq +rxg +lld +lld +lld +lld +wmx +bCe +ubP +ubP +ubP +ubP +ubP +ubP +ubP +sNU +pbX +sYP +ubP +ubP +ubP +ubP +ubP +ubP +ubP +ubP +sYP +ubP +ejs +ggk +vZX +vZX +xLQ +vZX +vZX +vZX +iIS +pRG +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(129,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +lAh +lAh +lAh +lAh +lAh +lAh +lAh +azZ +lAh +lAh +lAh +lAh +lAh +lAh +lAh +azZ +lAh +lAh +lAh +lAh +azZ +azZ +xLi +xLi +xLi +sWb +mvp +cer +kpq +aUA +ddL +oIq +nOw +oXR +pHh +oEu +cKB +mvp +cer +kpq +mvp +mvp +mvp +mvp +mvp +cer +kpq +mvp +hVI +hVI +hVI +gbT +bLM +tja +ctC +vWe +gbh +tja +bLM +kZV +tja +bLM +gAC +hVI +lpw +tja +tja +tja +gFp +ikL +xMp +jyP +dOO +sDn +hVI +mtP +mtP +mtP +cqP +hVI +tEH +tEH +hVI +njY +xCp +hVI +tEH +tEH +hVI +hVI +hVI +hVI +hVI +rJF +lGL +rJF +wzH +tyj +dtS +rJF +sCe +rJF +rJF +rJF +fmb +dBy +dBy +dBy +bis +cME +cME +cME +bis +bis +gXd +qIT +xzN +bDM +hwr +bDM +bDM +pgQ +mCp +rHu +bnL +cME +cME +cME +liA +nyS +scZ +ceC +bQW +fiG +ceC +ubP +iwy +ubP +ihB +wWs +wWs +gag +gag +wWs +wWs +ihB +iwy +xjM +sbF +sbF +sbF +wIx +sbF +qhN +ubP +ubP +ubP +ubP +ubP +daY +hEZ +sNU +pbX +ubP +ubP +gag +lld +lld +lld +lld +gag +ubP +ubP +ubP +ejs +ggk +vZX +vZX +ePB +xjm +vZX +vZX +ykX +pRG +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(130,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +xLi +xLi +xLi +xLi +phz +phz +phz +cer +kpq +wou +xLi +lIl +cEG +mvV +fno +byF +swJ +mvp +cer +ojc +ujo +kii +hae +ceJ +tdr +cer +kpq +wou +hVI +hVI +hVI +eUZ +wEE +tja +dTg +vRF +ewI +tja +sYy +ntM +tja +bLM +mRA +lIk +vJo +bLM +tja +bLM +fYa +cbF +eOy +bLM +dOO +uRF +aif +bLM +bLM +bLM +loP +hVI +rMq +bLM +hVI +dOO +tja +aif +ovJ +bLM +sJu +nCt +yeA +olg +aFZ +cvn +bFr +bFr +cvn +cvn +cvn +bFr +bFr +cvn +cvn +bFr +twb +eLu +tLC +tLC +eLu +cME +cME +cME +eLu +tIn +dwP +dBy +dBy +iKs +iKs +iKs +iKs +dBy +dBy +rHu +xPG +cME +eLu +eLu +twb +wLA +nqN +ceC +xGt +xGt +ceC +ubP +ubP +ubP +ihB +ihB +ihB +ihB +ihB +ihB +ihB +ihB +ubP +xGD +nqN +dCM +dCM +dCM +nqN +lkQ +ubP +ktv +ubP +hPN +ubP +pTj +ubP +sNU +pbX +hEZ +ubP +jtK +gmF +txh +txh +afO +jtK +ubP +ubP +ubP +ubP +plK +plK +wHw +plK +plK +oWF +ePB +aWk +aWk +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(131,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +xLi +dqX +dqX +phz +phz +fEn +kEZ +cer +kpq +mvp +xLi +ddL +ddL +ddL +xLi +xLi +nrU +mvp +cer +cvH +mvp +qrt +xLi +ydQ +mvp +cer +kpq +mvp +hVI +hVI +hVI +dvq +bLM +tja +fCr +hDl +ugq +xLf +gQz +mOf +tja +bLM +scp +rGe +jSU +ajP +tja +bLM +fYa +kCN +oXI +hko +eUN +pae +hVI +wKR +nxY +bLM +iSW +hVI +psL +ovJ +hWi +tja +oTi +hVI +jBn +rHf +hVI +fIq +mEO +oou +aFZ +wIG +ugv +qOk +tIp +lml +hVS +lDC +qOk +nYT +vPM +bQM +tPN +ecL +cME +cME +tIU +tpf +tIU +cME +eLu +cbd +dBy +gTi +wzH +tyj +tyj +tyj +tyj +dtS +mCp +rHu +rJu +uzw +kqC +rzp +vds +vds +elO +abJ +ioc +ioc +abJ +ubP +ubP +ubP +kJU +psm +ubP +ubP +ubP +ubP +ubP +ubP +ubP +nEI +dCM +bQM +kPz +bQM +dCM +ubP +ubP +ubP +aTx +uGY +uGY +uGY +uGY +gIB +uGY +lkQ +ubP +gag +sbF +sbF +sbF +sbF +gag +ubP +ubP +wxZ +qeC +bLA +xQx +aEB +xQx +plK +vZX +vZX +aWk +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(132,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +xLi +xLi +sWb +phz +ctD +phz +phz +mvp +cer +kpq +mvp +mvp +mvp +mvp +mvp +xLi +rfd +mvp +mvp +cer +ojc +ujo +aMu +eqU +iOY +mvp +cer +kpq +mvp +uno +ciA +lsn +uno +bLM +tja +qGO +hVI +xOs +nCV +aeF +ntM +uIB +bLM +eLw +hDl +ewI +bLM +tja +dTg +qCE +eYr +lbZ +bLM +dOO +oTi +nQq +hVI +hVI +hVI +hVI +hVI +hVI +hVI +mrI +dOO +pzE +vWe +hVI +hVI +hVI +lyJ +nBt +kwT +tQB +tqP +afk +afk +afk +xdt +tzN +afk +afk +afk +rxL +fQV +tPN +ecL +cME +cME +oOi +pJc +qws +cME +eLu +eLu +eLu +eLu +twb +eBO +eBO +eBO +eLu +eLu +eLu +eLu +kfW +cME +kqC +dHD +lkb +upY +fHo +vRA +ioc +ioc +vRA +ubP +nXX +ubP +ubP +ejL +ubP +ubP +ubP +ubP +ubP +ubP +ubP +ubP +dCM +bQM +kPz +bQM +dCM +fou +ubP +fou +ePM +gIB +lrV +onh +sQy +adq +hjE +ubP +ubP +ubP +gag +gag +gag +gag +ubP +ubP +ubP +kjP +otC +dkn +uKX +uKX +rZe +plK +vZX +waU +aWk +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(133,1,1) = {" +bQM +bQM +bQM +bQM +bQM +lAh +lAh +lAh +lAh +lAh +lAh +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +xLi +xLi +dqX +phz +phz +phz +xLi +azZ +cer +wun +hae +hae +hae +hae +hae +hae +xZR +hae +hae +lcJ +kpq +mvp +mvp +mvp +mvp +mvp +cer +kpq +mvp +cyV +bLM +bLM +cyV +bLM +tja +bLM +wbr +bLM +kid +ezU +eLw +tja +bLM +boI +vTR +oAf +tja +tja +dTg +slh +eYr +lbZ +bLM +dOO +oTi +hVI +dEj +bLM +bLM +bLM +hVI +khY +oAj +hVI +dOO +oTi +ueI +khY +hVI +rlP +mEO +lLE +xoi +tQB +urJ +afk +hkh +afk +tCZ +urJ +afk +hkh +afk +tCZ +pcu +tPN +jSE +cME +cME +tIU +gZc +tIU +cME +cME +cME +qIq +eLu +uvF +rzp +vds +elO +cME +wQT +eLu +cME +cME +cME +oFI +dHD +qRa +upY +voO +kqC +pGS +kgN +kqC +sOj +uye +ubP +ubP +ubP +ubP +ubP +ubP +ubP +ubP +ubP +ubP +aTx +nqN +dCM +dCM +dCM +nqN +lkQ +fou +ubP +kWv +gIB +mdH +rVV +gag +ihB +hsC +ubP +ubP +ubP +gag +gag +gag +gag +ubP +ubP +ubP +lAY +dkn +dkn +uKX +uKX +uKX +plK +vZX +vZX +aWk +kPz +kPz +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(134,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +xLi +xLi +dqX +phz +phz +dqX +azZ +azZ +cer +bLO +eqU +eqU +eqU +eqU +eqU +eqU +xZR +eqU +eqU +xAY +kpq +mvp +mvp +mvp +mvp +mvp +cer +kpq +mvp +cyV +bLM +bLM +cyV +bLM +tja +dTg +gbh +leZ +mAs +teK +bLM +aHK +tja +tja +tja +tja +bLM +bLM +dTg +slh +eYr +lbZ +oeN +dOO +oTi +hVI +iSW +ptH +bLM +bLM +hVI +psL +ovJ +hWi +tja +oTi +bLM +bLM +sJu +bxQ +mNB +byY +fUX +tQB +mpB +afk +afk +afk +eze +bHU +afk +afk +afk +hxG +jlH +twb +twb +twb +cME +cME +cME +cME +bgy +cME +cME +cME +cME +liA +oXg +xbM +fHo +xno +dTf +uvF +cME +ljd +cME +oFI +dHD +upY +upY +ger +abJ +ioc +ioc +abJ +aUg +ubP +ubP +ubP +szD +cns +cns +cns +cns +cns +wzd +ubP +rxg +lld +lld +lld +lld +lld +bCe +nWv +ubP +iIE +gIB +ubP +gKg +ubP +iPz +vUv +ubP +ubP +gag +lld +lld +lld +lld +gag +ubP +ubP +cri +hfc +tGY +qBj +cZy +aGF +plK +wHw +plK +aPH +aPH +aPH +aPH +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(135,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +lAh +lAh +lAh +lAh +lAh +xLi +sWb +phz +phz +phz +azZ +xLi +azZ +cer +kpq +luZ +mvp +mvp +mvp +mvp +xLi +rfd +mvp +mvp +cer +ojc +ujo +kii +hae +ceJ +mvp +cer +kpq +mvp +cyV +bLM +bLM +cyV +bLM +tja +bLM +oTa +kZV +tja +bLM +bLM +img +bLM +bLM +tja +tja +ueX +ueX +qjM +qjM +tis +eca +xlk +nfu +kpH +hVI +tEH +tEH +hzv +nDr +hVI +tEH +tEH +hVI +rqq +hMA +bLM +fgY +vWe +hVI +hVI +erD +wyl +aFZ +xKA +xQC +llQ +viX +bsk +lSS +lcq +llQ +jaB +bsk +bQM +bQM +kPz +twb +aLT +cME +cME +cME +cME +cME +cME +cME +cME +kaO +qPa +xbM +weM +daS +cME +cME +cME +cME +eLu +kqC +dHD +upY +eNa +efW +vRA +ioc +ioc +vRA +ubP +ubP +ubP +ubP +qqd +ihB +ihB +ihB +ihB +ihB +unu +ubP +xjM +sbF +sbF +sbF +sbF +sbF +qhN +ubP +ubP +mNc +gIB +gag +aTx +uGY +gIB +uGY +lHE +ubP +jtK +gmF +txh +txh +afO +jtK +ubP +ubP +ubP +plK +kyd +dkn +uKX +fuJ +plK +hwS +gRT +vHU +eki +duM +aPH +kPz +bQM +kPz +kPz +kPz +kPz +kPz +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(136,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +lAh +azZ +azZ +azZ +lAh +xLi +dqX +phz +irD +phz +azZ +azZ +azZ +cer +kpq +mvp +xLi +ddL +ddL +ddL +xLi +xLi +nrU +luZ +cer +cvH +rFF +qrt +xLi +ydQ +mvp +cer +kpq +mvp +tji +azK +nWx +uno +atw +tja +koH +qTx +gRf +tja +rGe +dCv +bLM +bLM +bLM +tja +ltd +ueX +aSS +gNx +tHF +tHF +gbO +jQs +afq +uRF +qqc +jQs +jQs +jQs +tja +jQs +jQs +jQs +jQs +afq +oTi +bLM +svW +hVI +hVI +hVI +hSo +hVI +aFZ +sKY +sKY +iYw +iYw +iYw +iYw +iYw +iYw +sKY +sKY +iYw +kPz +kPz +twb +twb +twb +twb +cME +cME +cME +cME +rJh +eLu +eLu +dHD +xbM +fHo +cME +vZD +cME +cME +cME +eLu +kqC +dHD +upY +skj +uGY +ceC +xGt +xGt +ceC +ubP +ubP +kJU +ubP +ibz +ihB +gag +gag +gag +ihB +dVx +gaQ +spm +ceC +ceC +xNm +ceC +ceC +eyy +ubP +ubP +bZY +uGY +uxv +uGY +uGY +ihB +ihB +ubP +qHi +gag +sbF +sbF +sbF +sbF +gag +ubP +ubP +ozC +plK +kmn +dkn +uKX +nuo +dkn +xQx +pSU +dKo +rJO +rJO +aPH +kPz +kPz +kPz +aPH +aPH +aPH +aPH +aPH +oUP +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(137,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +lAh +lAh +lAh +lAh +lAh +azZ +azZ +lAh +xLi +dqX +phz +phz +phz +phz +bMT +azZ +cer +kpq +wou +xLi +hqG +qMi +phQ +tiM +uky +bzU +mvp +cer +ojc +ujo +aMu +eqU +iOY +mvp +cer +kpq +mvp +hVI +rIS +hVI +dvq +bLM +tja +tAR +bLM +cvi +tja +ewI +gCH +vJo +bLM +otz +tja +tja +fYa +voK +fQI +bLM +hkM +dOO +mzK +jbq +jbq +xTD +jbq +jbq +jbq +tpz +jbq +jbq +tja +eOM +jbq +brC +bLM +slh +hVI +bLJ +bLJ +frv +bLJ +ofQ +hCh +suX +nQu +iUB +hCh +hCh +nQu +jcF +hCh +hCh +iYw +iYw +cAW +bQM +bQM +bQM +twb +qkn +uzw +eLu +mrk +cME +jkg +cME +dHD +xbM +fHo +xno +cME +uvF +cME +cME +cME +kqC +dHD +upY +fHo +uGY +jIw +cRl +sQC +ceC +ubP +ubP +ubP +ubP +ceC +kVN +tpa +tpa +tpa +kVN +ceC +ceC +ceC +ceC +mXS +mQy +jQS +ceC +ceC +hYx +hEZ +pTj +mVY +uNm +nEI +ubP +sNU +pbX +ubP +ubP +ubP +gag +gag +gag +gag +ubP +ubP +ubP +ubP +vFs +uKX +uKX +uKX +lkA +dkn +xQx +gPs +iMo +rJO +fYW +aPH +aPH +aPH +aPH +aPH +aas +uMw +uMw +vXT +vXT +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(138,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +lAh +lAh +lAh +lAh +lAh +lAh +lAh +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +xLi +azZ +phz +phz +phz +phz +dqX +mvp +cer +kpq +mvp +ddL +lXO +nId +ykO +pCc +msd +ioV +mvp +cer +kpq +mvp +mvp +mvp +mvp +mvp +cer +kpq +wou +hVI +hVI +hVI +fpq +bLM +tja +sve +bLM +iie +tja +bLM +gbh +rGe +bsR +hDl +tja +mMh +gFp +ikL +fwt +vBH +bLM +dOO +oTi +bNo +aEG +hVI +hVI +hVI +hVI +nDr +hVI +hVI +nDr +hVI +vWe +nor +nor +tTI +vWe +eqZ +iVT +fqg +suX +nQu +nQu +nQu +nQu +nQu +nQu +nQu +nQu +nQu +nQu +nQu +suX +iYw +yli +iYw +bQM +bQM +twb +nSU +cME +cME +cME +cME +eLu +jkg +dHD +xbM +fHo +cME +wQT +eLu +cYP +qso +gsN +kqC +dHD +upY +fHo +hVG +yiL +cZV +wNG +hVG +ubP +ubP +ubP +ubP +ceC +dZu +gag +gag +gag +lgG +ceC +tCH +ohc +taL +ohc +pjf +mSp +mHY +ceC +wDz +pTj +ubP +pTj +sJB +qMI +ubP +sNU +pbX +ubP +ubP +ubP +gag +gag +gag +gag +ubP +ubP +ubP +ubP +vFs +uKX +uKX +uKX +oMf +dkn +xQx +bWg +tKv +wxX +rJO +plK +xZI +xZI +aPH +nGy +rJO +wMz +rJO +vKP +vXT +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(139,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +phz +phz +phz +phz +irD +phz +mvp +cer +kpq +mvp +ddL +ntH +nUr +oHX +pFP +blA +tNf +mvp +cer +wun +hae +hae +hae +hae +hae +iRI +kpq +mvp +hVI +hVI +hVI +euz +bLM +tja +bLM +bLM +bLM +tja +bLM +fCr +eCy +bLM +xsX +vdn +tja +rbZ +ikL +kke +bLM +wkg +dOO +oTi +bLM +eSO +hVI +aXR +bLM +bLM +bLM +bLM +hVI +ddB +wiR +xLn +hYX +bLM +bLM +eHt +suX +aeI +aeI +aeI +aeI +aeI +aeI +aeI +nQu +nQu +nQu +aeI +aeI +aeI +aeI +nQu +nQu +suX +egk +iYw +bQM +twb +uts +cME +cME +cME +cME +cME +liA +dHD +xbM +fJV +kqC +kqC +kqC +kqC +kqC +kqC +kqC +oSn +hwN +eJy +uGY +lEF +tsN +tsN +ceC +qbI +rVV +rVV +qbI +ceC +ihO +ubP +ubP +ubP +gag +hVG +oZi +bcq +vgL +dHb +ezO +xpx +eIB +ceC +fxi +ubP +pwC +ubP +dHU +sYP +fGA +sNU +pbX +ubP +ubP +gag +lld +lld +lld +lld +gag +ubP +ubP +ozC +plK +upX +dkn +uKX +nuo +dkn +xQx +uMw +rJO +rJO +rJO +ipa +rJO +rJO +ipa +rJO +anP +omb +rJO +xoK +vXT +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(140,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +xLi +phz +dqX +phz +phz +phz +sWb +mvp +cer +kpq +ajw +ddL +oIq +nOw +oXR +pHh +apO +cKB +mvp +cer +pvF +eqU +eqU +eqU +eqU +eqU +eqU +iOY +mvp +mEO +mEO +hVI +hVI +gYM +tja +tja +tja +tja +tja +tja +lzd +tja +uJG +tja +tja +tja +caX +ikL +fjo +bLM +bLM +dOO +oTi +gYM +hgc +hVI +fMn +kOu +bLM +bLM +bLM +hWi +dAg +nRU +dhZ +bLM +bLM +bLM +stP +suX +aeI +ucN +aeI +aeI +aeI +aeI +aeI +nQu +nQu +nQu +aeI +aeI +aeI +aeI +aeI +aeI +nQu +shH +iYw +iYw +twb +eLu +eLu +cME +srI +dTf +cME +eLu +dHD +xbM +fHo +ioc +bjt +bjt +kqC +sfu +jyF +kqC +ioc +ioc +ioc +uGY +xGt +xGt +xGt +ceC +ceC +ceC +ceC +ceC +ceC +kOV +ubP +ubP +ubP +gag +hVG +ljV +oZi +qHX +jbu +cKJ +tir +sCH +ceC +kIA +psm +ubP +pTj +ubP +nEI +ubP +sNU +pbX +ubP +ubP +jtK +gmF +txh +txh +afO +jtK +ubP +ubP +aTx +plK +qEk +dkn +uKX +lkA +dkn +xQx +uMw +rJO +rJO +rJO +ipa +rJO +rJO +ipa +cJW +rTH +bMh +ewx +eki +vXT +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(141,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +xLi +xLi +sWb +phz +jFP +phz +sWb +xLi +mvp +cer +kpq +azZ +xLi +lIl +wol +mvV +fno +byF +nmy +luZ +cer +kpq +mvp +mvp +mvp +mvp +mvp +mvp +mvp +mvp +mEO +mEO +mEO +hVI +gYM +bLM +rfe +tja +bLM +bLM +bLM +dCs +bLM +bLM +eCy +cTE +njm +fYa +cbF +nvs +bLM +ddB +rcI +uRF +xEH +cBX +hVI +mei +oZz +hVI +hVI +hVI +hVI +hVI +hVI +hVI +bLM +bLM +iUa +bLJ +xXl +aeI +aeI +aeI +aeI +ssc +aeI +aeI +nQu +nQu +nQu +aeI +aeI +aeI +aeI +aeI +aeI +aeI +nQu +suX +neY +liA +yfK +tmo +gfo +cME +wQT +cME +kqC +dHD +xbM +fHo +ioc +ioc +bjt +kqC +qNF +ctW +kqC +rzp +vds +vds +vds +car +gOU +gOU +gOU +vFV +xGt +ucu +ihB +ucu +ihB +gag +gag +gag +ihB +ceC +obh +obh +ceC +bxc +jbF +bBK +ceC +ceC +uGY +uGY +uGY +uGY +uGY +uGY +uGY +uGY +uGY +uGY +uGY +gag +sbF +sbF +sbF +sbF +gag +ubP +ubP +ubP +plK +lkA +dkn +uKX +oMf +dkn +xQx +uMw +rJO +rJO +rJO +ipa +rJO +rJO +ipa +rJO +rJO +iqB +rJO +kmN +vXT +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(142,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +lAh +lAh +lAh +lAh +lAh +lAh +azZ +azZ +azZ +lAh +azZ +azZ +azZ +xLi +xLi +sWb +phz +phz +phz +phz +xLi +mvp +cer +kpq +azZ +xLi +xLi +ddL +ddL +ddL +xLi +xLi +uRT +cer +kpq +mvp +icg +uTr +myQ +sWb +dqX +lAh +lAh +aFZ +aFZ +bmE +hVI +hVI +kXm +ipM +tja +bLM +esw +aFZ +hVI +hVI +tja +tja +hVI +hVI +hVI +yhR +qiK +jQs +afq +tja +tja +uRF +cZp +aWI +jQs +jQs +jQs +nRT +qNj +hVI +vlK +oWY +ddB +xEH +bLM +kke +xSM +tWf +aeI +aeI +aeI +aeI +aeI +aeI +aeI +nQu +hCh +nQu +aQH +aeI +uJR +aeI +aeI +ssc +aeI +nQu +suX +neY +liA +yfK +tmo +gfo +cME +cME +eLu +kqC +fCJ +xbM +fHo +ioc +ioc +kgN +kqC +ryJ +end +kqC +dHD +wbW +upY +ufE +ugg +upY +upY +gmG +ksE +xGt +roF +xWV +roF +ihB +gag +gag +gag +ihB +wQD +aye +yjW +hVG +oZi +ubP +ubP +hVG +gag +aUg +ntf +uGY +aMS +ihB +ihB +xGt +klh +mld +hjM +uGY +ubP +ubP +ubP +ubP +ubP +gag +gag +gag +gag +plK +oMf +dkn +uKX +uKX +uKX +xQx +uMw +rJO +rJO +rJO +plK +xZI +xZI +eYV +lvi +rJO +xmj +rJO +voq +vXT +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(143,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +lAh +lAh +lAh +azZ +azZ +azZ +azZ +xLi +xLi +sWb +phz +phz +phz +phz +mvp +cer +kpq +azZ +azZ +mvp +mvp +mvp +wou +xLi +xLi +cGa +cer +kpq +mvp +tmF +xLi +mgh +azZ +azZ +azZ +ohF +pcu +tQB +kZu +mAK +hVI +wfu +bLM +tja +bLM +byY +tEH +bLM +bLM +bLM +kZV +kZV +bLM +hVI +hVI +woh +tja +tja +wCJ +tja +tja +frR +gjz +tja +tja +tja +tnY +ciy +hVI +wNB +oTi +dOO +oTi +bLM +kke +lwq +hGy +aeI +pdX +aeI +aeI +aeI +aeI +lqJ +nQu +hCh +nQu +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +nQu +bLJ +iYw +wzE +hZR +hZR +hZR +wzE +wzE +kqC +fCJ +bPn +fHo +ioc +rzp +vds +vds +vds +elO +nAs +dHD +upY +upY +hMj +upY +dQe +upY +ygk +rnE +xGt +cLC +pjR +jOY +wXe +gag +udt +wHr +stw +wQg +qet +mKp +ceC +qJv +bqF +tNF +ceC +qNu +ubP +wty +uGY +giA +ubP +gag +hVG +ihB +rZO +ihB +hVG +gag +gag +gag +gag +gag +gag +gag +gag +cHl +plK +mVd +dkn +dkn +dkn +uKX +xQx +gHz +aJX +uMw +sYn +aPH +aPH +aPH +aPH +aPH +mho +uMw +uMw +vXT +vXT +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(144,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +bQM +bQM +azZ +azZ +lAh +lAh +lAh +azZ +lAh +azZ +lAh +azZ +azZ +azZ +azZ +xLi +xLi +xLi +phz +phz +phz +phz +mvp +cer +wun +hae +hae +hae +hae +hae +hae +xZR +hae +hae +ovk +kpq +mvp +mlb +byG +uQT +azZ +azZ +azZ +bTo +pcu +aFZ +hUL +tja +hVI +esw +bLM +tja +rnM +esw +tEH +bLM +uqd +eUy +bsR +hGu +bLM +aif +rKa +rTV +pWX +bDJ +rtP +tja +tja +frR +tja +tja +nMi +tja +upr +hVI +hVI +mMa +brC +uhX +tJw +kGD +gyh +buG +tWf +aeI +aeI +aeI +aeI +aeI +aeI +aeI +nQu +suX +nQu +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +nQu +hCh +sKY +bQM +bQM +bQM +bQM +bQM +wzE +kqC +dHD +xbM +fHo +ioc +qNF +xRI +xRI +xRI +efW +nAs +fcB +upY +hlB +upY +upY +vYX +ugg +ksE +ceC +ceC +sIh +ihB +kjX +ueP +gag +hQj +uGY +uGY +uGY +uGY +uGY +ceC +ceC +ceC +ceC +ceC +unz +gag +gYH +uGY +pDQ +ubP +ihB +xGt +fZW +cki +huB +uGY +sEO +sEO +sEO +vpN +sXt +sXt +sXt +sXt +sXt +plK +plK +plK +plK +plK +dwT +dwT +plK +plK +nzu +mBZ +aPH +kPz +kPz +kPz +aPH +vXT +vXT +vXT +vXT +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(145,1,1) = {" +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +bQM +bQM +azZ +azZ +lAh +azZ +azZ +azZ +lAh +azZ +lAh +azZ +azZ +azZ +azZ +xLi +xLi +xLi +xLi +xLi +phz +sWb +mvp +ubX +eqU +eqU +eqU +eqU +eqU +eqU +eqU +xZR +eqU +eqU +uAg +kpq +mvp +mvp +mvp +mvp +azZ +bQM +bQM +bTo +pcu +aFZ +wDK +tja +aif +byY +bLM +tja +bLM +byY +tEH +njm +eLw +eLw +bLM +bLM +njm +hVI +hVI +woh +hYl +tja +tja +tja +cCs +frR +ltd +tja +set +tja +nyq +bLJ +bLJ +bLJ +bLJ +bLJ +bLJ +bLJ +bLJ +bLJ +xXl +aeI +fyt +aeI +aeI +aeI +rOL +aeI +nQu +hCh +nQu +aeI +rOL +aeI +aeI +aeI +evl +aeI +aeI +nQu +shH +iYw +iYw +sKY +sKY +sKY +iYw +iYw +izh +dHD +xbM +voO +kqC +ryJ +end +kqC +ryJ +end +kqC +lNf +upY +upY +elc +upY +upY +eNr +ksE +xGt +ucu +ihB +ucu +ihB +ihB +ubP +ubP +pTj +gag +hCk +tCH +wBK +kGB +ceC +dBO +dBO +uGY +uGY +uxv +uGY +uGY +nFb +ubP +ihB +uGY +xGt +xGt +xGt +uGY +jwK +jnd +jwK +nZB +fAf +nZB +nZB +fAf +nZB +okg +jnd +mpf +hLz +nZB +fAf +fAf +nZB +aPH +aPH +aPH +aPH +kPz +bQM +kPz +kPz +kPz +kPz +kPz +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(146,1,1) = {" +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +lAh +lAh +azZ +azZ +azZ +azZ +azZ +azZ +azZ +xLi +xLi +xLi +xLi +mvp +mvp +mvp +mvp +mvp +mvp +mvp +mvp +wou +xLi +xLi +cGa +cer +kpq +mvp +mvp +mvp +azZ +azZ +bQM +bQM +bTo +pcu +aFZ +hVI +hVI +hVI +qSy +bLM +tja +bLM +byY +aFZ +hVI +hVI +hVI +bmE +hVI +hVI +hVI +hVI +woh +tja +tja +tja +tja +jHU +oza +cgx +tja +tja +tja +vyv +nMz +nQu +wRz +fqg +fqg +eLX +edy +nQu +nQu +suX +aeI +aeI +aeI +aeI +aeI +aeI +fyt +nQu +hCh +kob +aeI +aeI +evl +aeI +hTy +aeI +aeI +aeI +nQu +nQu +srp +hOQ +fqg +fqg +fqg +nQu +srp +bqD +cAJ +xbM +hTN +kqC +rzp +tKk +kqC +rzp +osQ +kqC +dHD +upY +upY +upY +ufE +wbW +fxS +ksE +xGt +roF +oDg +roF +ihB +ihB +ubP +ubP +pTj +gKg +dFB +hrB +sYP +kGB +uGY +xLd +ihB +syj +ihB +gag +aOL +uGY +ppq +ubP +ihB +uGY +lJx +fAf +fAf +fAf +fAf +mxc +fAf +fAf +jwK +nZB +nZB +jwK +fAf +gsd +fAf +lJf +hLz +nQH +jwK +jwK +lEg +wly +kPz +kPz +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(147,1,1) = {" +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +bQM +bQM +azZ +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +azZ +xLi +xLi +xLi +xLi +xLi +xLi +xLi +xLi +vHX +dqX +dqX +dqX +kQy +kQy +xLi +xLi +phz +cer +kpq +rBr +mvp +azZ +azZ +azZ +bQM +bQM +bTo +pcu +aFZ +chZ +tja +aif +byY +bLM +tja +bLM +qtP +aFZ +fIT +hVI +mEO +mEO +ddD +hVI +lmn +fkH +roE +tpZ +jAF +tpZ +crm +nQq +nQq +nMi +tja +tja +tja +bze +iWP +suX +jyQ +hCh +hCh +suX +fNA +hCh +ctY +ctY +iAB +nQu +nQu +nQu +nQu +nQu +nQu +nQu +suX +nQu +nQu +nQu +nQu +nQu +nQu +nQu +xFg +asz +asz +hCh +mGr +suX +hCh +hCh +hCh +suX +mGr +upY +dHD +xbM +hTN +kqC +qLi +dpe +kqC +qLi +dpe +kqC +dHD +upY +sRv +upY +wam +upY +mom +rnE +xGt +cLC +mwK +cLC +ihB +ihB +ubP +ubP +pTj +aIm +aIm +gag +gag +kGB +cCB +ihB +ubP +ubP +eLQ +ubP +ihB +cCB +ihB +ubP +ihB +uGY +hLz +ndD +nZB +nZB +nZB +nZB +nZB +nZB +nZB +nZB +nZB +nZB +nZB +nZB +fAf +tFo +xUo +nZB +jwK +jwK +nZB +ckm +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(148,1,1) = {" +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +bQM +bQM +azZ +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +azZ +xLi +ijs +xLi +xLi +xLi +xLi +xLi +rGc +mvp +rHX +dqX +rHX +mvp +mvp +mvp +phz +phz +cer +kpq +azZ +azZ +azZ +azZ +azZ +azZ +bQM +bTo +pcu +aFZ +bRo +tja +hVI +byY +bLM +tja +bLM +byY +sJu +mEO +sJu +mEO +mEO +akW +hVI +gZf +bLM +dOO +cgx +tja +tja +sTI +hVI +hVI +kgT +nMi +tja +tja +gFp +mZH +suX +suX +suX +bEA +suX +fNA +hCh +ohl +qQa +trJ +nQu +hCh +hCh +bkU +hCh +hCh +suX +bqX +suX +hCh +jXV +suX +hCh +hCh +nQu +umm +aDx +aDx +hCh +mGr +suX +suX +suX +suX +suX +mGr +upY +dHD +xbM +voO +kqC +kqC +kqC +kqC +kqC +kqC +mCF +sAF +upY +upY +vRA +upY +upY +ksE +ceC +ceC +sIh +ihB +sIh +ihB +ihB +gag +qdE +uGY +ltQ +ltQ +uGY +ltQ +ayo +uGY +eZQ +kyZ +ihB +ihB +ubP +gag +hVG +gag +ubP +ihB +uGY +jEr +nZB +nZB +nZB +nZB +nZB +nZB +nZB +nZB +nZB +nZB +nZB +nZB +nZB +fAf +nZB +xUo +nZB +jwK +jwK +nZB +ckm +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(149,1,1) = {" +bQM +bQM +bQM +azZ +azZ +azZ +azZ +bQM +bQM +bQM +bQM +iVv +bQM +bQM +bQM +bQM +azZ +azZ +azZ +lAh +lAh +azZ +eRz +fnn +phz +guf +guf +xLi +ijs +xLi +xLi +xLi +xLi +xLi +xLi +spH +rHX +dqX +rHX +mvp +mvp +mvp +phz +phz +cer +kpq +pPd +azZ +azZ +azZ +azZ +azZ +tuf +bTo +pcu +tQB +kSd +tja +hVI +ncj +sdr +tja +bLM +egT +aFZ +hVI +hVI +mEO +mEO +bWy +hVI +gZf +bLM +dOO +tja +tja +fSa +lJS +nQq +nQq +qAl +tja +tja +tja +lVQ +qZv +suX +lFQ +aCZ +hCh +suX +fNA +hCh +mRS +mRS +qRK +nQu +dcO +nQu +nQu +nQu +nQu +dcO +suX +nQu +wGb +nQu +nQu +nQu +nQu +nQu +mjm +jfO +jfO +hCh +mGr +suX +hCh +hCh +hCh +suX +mGr +upY +dHD +xbM +fHo +ioc +ioc +ioc +kqC +sfu +iEG +kqC +dHD +upY +upY +vRA +cKH +joJ +ksE +xGt +bjo +ihB +ihB +ihB +ihB +ihB +kfL +uGY +uGY +fRq +fRq +uGY +fRq +ygr +xGt +ihB +ubP +lwp +dlr +ljV +gag +hVG +gag +ubP +ihB +uGY +lMh +nZB +nZB +nZB +nZB +tco +nZB +nZB +nZB +nZB +nZB +nZB +nZB +tFo +fAf +nZB +xUo +nZB +jwK +jwK +nZB +ckm +kPz +kPz +kPz +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(150,1,1) = {" +bQM +bQM +bQM +azZ +azZ +azZ +bQM +bQM +bQM +bQM +bQM +iVv +bQM +bQM +bQM +bQM +azZ +azZ +azZ +ejq +lAh +azZ +phz +phz +fRo +gwM +gCn +xLi +inA +xLi +xLi +fEn +fEn +kqy +kqy +mvp +sVT +dqX +rHX +mvp +mvp +mvp +rBr +phz +cer +kpq +mvp +dqX +sWb +azZ +azZ +azZ +lAh +lAh +aFZ +aFZ +hVI +hVI +hVI +byY +bLM +tja +bLM +byY +aFZ +hVI +hZf +mEO +mEO +hVI +hVI +gZf +bLM +dOO +cgx +tja +xAo +tja +nkJ +vTR +cgx +tja +tja +tja +tjw +cYS +nQu +pzL +vDL +eWf +qre +diL +nQu +nQu +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +nQu +hCh +nQu +aeI +aeI +aeI +aeI +aeI +aeI +aeI +aeI +nQu +nQu +oTS +vLO +eWf +eWf +eWf +nQu +oTS +iox +dHD +xbM +fHo +ioc +ioc +ioc +kqC +qNF +mDO +kqC +dHD +upY +vRA +vZL +upY +upY +ksE +xGt +mEJ +ihB +ihB +ihB +ihB +ihB +tkd +cCB +gag +gag +gag +gag +gag +kGB +xGt +ihB +ubP +eWz +pxr +ubP +ihB +uGY +ihB +ihB +tXT +uGY +hLz +nZB +nZB +fAf +fAf +aXx +fAf +fAf +jwK +nZB +nZB +jwK +fAf +gsd +fAf +czJ +hLz +nQH +fAf +fAf +lEg +wly +ckm +ckm +ckm +wly +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(151,1,1) = {" +bQM +bQM +bQM +azZ +azZ +bQM +bQM +bQM +jvy +bQM +bQM +azZ +bQM +bQM +bQM +bQM +bQM +azZ +azZ +ejw +sWb +etL +phz +phz +fRo +gxj +gDx +xLi +xLi +xLi +dqX +fEn +fEn +oGy +oGy +cLy +rHX +dqX +rHX +esR +xLi +xLi +dqX +phz +cer +kpq +irD +trl +phz +dqX +azZ +azZ +lAh +mnd +oYs +nCh +byY +byY +uno +byY +bLM +fSa +bLM +byY +eVm +hVI +tgL +mEO +xgF +hVI +oPn +jEy +bLM +dOO +tja +tja +iMq +tja +hYl +tja +tja +hYl +tja +tja +mCR +iYw +egk +sKY +sKY +sKY +iYw +iYw +sOM +nQu +aeI +eBa +aeI +aeI +aeI +aeI +rOL +aeI +nQu +hCh +nQu +aeI +rOL +aeI +pdX +aeI +xei +xpj +aeI +nQu +shH +iYw +iYw +sKY +sKY +sKY +iYw +iYw +izh +dHD +xbM +fHo +ioc +ioc +kgN +kqC +ryJ +end +kqC +nBb +upY +vRA +upY +upY +ejf +ksE +xGt +izN +mDS +ihB +htq +lNc +ihB +vuK +uGY +gag +gag +gag +gag +gag +kGB +xGt +gwm +ubP +ggA +ihB +ubP +ihB +uGY +ceC +uGY +uGY +uGY +qQd +jwK +jwK +fAf +sEO +sEO +sEO +fAf +fAf +jwK +jwK +nZB +nZB +okg +liZ +uSQ +hLz +hLz +xja +xja +hLz +hLz +eCK +eCK +eCK +wly +wly +kPz +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(152,1,1) = {" +bQM +bQM +bQM +azZ +azZ +bQM +bQM +bQM +bQM +bQM +azZ +azZ +bQM +bQM +bQM +bQM +bQM +azZ +azZ +lAh +lAh +ezV +azZ +azZ +phz +phz +phz +xLi +xLi +xLi +phz +dqX +dqX +xLi +xLi +idP +rHX +dqX +rHX +mvp +azZ +azZ +azZ +vTq +cer +kpq +phz +sWb +phz +dqX +fEn +mvp +mvp +fEn +byY +byY +hVI +rUQ +bLM +bLM +bLM +tja +bLM +byY +aFZ +hVI +fQY +mEO +mEO +sJu +bLM +bLM +bLM +abG +tja +tja +tja +tLk +tja +tja +tja +tja +tja +tja +oOk +aFZ +aFZ +fPB +bQM +bQM +bQM +sKY +hCh +nQu +aeI +aeI +aeI +aeI +aeI +aeI +aeI +eBa +nQu +suX +nQu +aeI +aeI +eBa +aeI +fyt +aeI +xpj +aeI +nQu +hCh +sKY +cAW +cAW +cAW +cAW +cAW +wzE +kqC +fPl +xbM +fHo +ioc +rzp +vds +vds +msH +elO +nAs +fcB +gQc +upY +upY +upY +upY +ksE +ceC +ceC +nqN +dCM +dCM +dCM +nqN +uGY +uGY +uxv +ceC +ceC +aPr +jyv +kaw +uGY +ilr +ubP +ubP +ubP +ubP +ihB +rKm +ceC +hLz +byE +hLz +fAf +jwK +jwK +fAf +sEO +sEO +sEO +fAf +fAf +jwK +jwK +fAf +fAf +hLz +hLz +hLz +hLz +aQW +aQW +wSm +qxN +qxN +fAf +fAf +fAf +fAf +ybj +wly +wly +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(153,1,1) = {" +bQM +bQM +bQM +azZ +azZ +azZ +bQM +bQM +bQM +azZ +azZ +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +lAh +eAY +lAh +azZ +azZ +azZ +phz +xZR +phz +mvp +phz +mvp +irD +iMN +oNu +aQY +rHX +dqX +rHX +xqY +azZ +xLi +xLi +mvp +cer +kpq +phz +phz +phz +kEZ +fEn +mvp +mvp +fEn +byY +byY +hVI +vCL +bLM +bLM +bLM +tja +bLM +byY +aFZ +hVI +fQY +mEO +mEO +hVI +aEG +bLM +bLM +dAg +vki +jbq +sGk +jbq +xsh +jbq +fCf +jTo +jbq +tja +tFY +aFZ +aFZ +fPB +bQM +bQM +bQM +sKY +lqa +nQu +aeI +aeI +aeI +jJZ +cEW +aeI +aeI +aeI +nQu +hCh +nQu +aeI +eBa +aeI +aeI +aeI +aeI +aeI +aeI +nQu +hCh +sKY +cAW +cAW +cAW +wzE +wzE +wzE +kqC +nBb +xbM +fHo +ioc +iWp +xRI +xRI +xRI +efW +nAs +fcB +upY +upY +vRA +osN +xdb +pZn +kIb +vFV +hZR +kPz +kPz +kPz +dCM +svc +wNG +wNG +hWb +xGt +lVA +lVA +lVA +gIB +sjM +fIn +ihB +gag +ihB +ucu +fkG +ceC +ikF +ndD +fAf +fAf +nZB +nZB +fAf +nZB +kEx +fAf +nZB +nZB +fAf +nZB +nZB +fAf +fAf +nyO +fAf +uuk +nZB +wSm +pBV +qKT +qbl +wSm +nZB +ndD +fAf +wly +wly +wly +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(154,1,1) = {" +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +ezV +phz +fwr +fTz +xLi +xLi +xLi +xLi +cGa +phz +mvp +sVS +dwZ +wsM +aQY +rHX +dqX +rHX +phz +xLi +xLi +azZ +mvp +cer +phz +mvp +sWb +wNi +dqX +fEn +mvp +mvp +dvB +mpY +xCv +xCv +xCv +gHC +kHc +fbc +bLM +bLM +lDo +aFZ +aFZ +aFZ +aFZ +bmE +aFZ +sta +sta +sta +jmG +jmG +tOp +tOp +tOp +tOp +tOp +jmG +sta +sta +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +cKa +cKa +rMT +aeI +aeI +aeI +aeI +aeI +aeI +pdX +nQu +hCh +nQu +nQu +nQu +nQu +hox +hox +hox +nQu +nQu +bVE +iYw +iYw +cAW +cAW +wzE +wzE +cQf +xbM +dxl +dHD +xbM +fHo +ioc +ioc +kgN +kqC +ryJ +end +kqC +nBb +upY +upY +upY +upY +siW +bEm +upY +ksE +hZR +kPz +bQM +kPz +dCM +nIw +wNG +cZV +sjJ +xGt +kWL +kWL +kWL +gIB +mEn +psP +uGY +dBs +uGY +oOh +ppq +ceC +gjs +fAf +fAf +fAf +nZB +nZB +fAf +xTW +aAJ +dUi +nZB +nZB +fAf +nZB +nZB +fAf +aSA +cvv +dUi +ndD +nZB +ppG +qbl +qbl +wSm +jxc +nZB +nZB +fAf +wly +wly +wly +bce +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(155,1,1) = {" +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +phz +phz +fwr +fUm +xLi +xLi +xLi +xLi +jVt +phz +mvp +mvp +bgD +wsM +aQY +pjW +dqX +rHX +phz +lAh +lAh +lAh +mvp +cer +kpq +mvp +lAh +lAh +beW +fEn +maA +mvp +ckA +jmG +mvl +mvl +mvl +jmG +fer +byY +byY +byY +byY +tOp +ezd +jjp +hVA +lFB +tOp +jWI +amZ +bsO +cKa +cKa +vUP +dVA +vUP +dVA +vUP +hqD +jWI +eow +lFB +aLX +cKa +bqu +rwm +cKa +fZc +dVA +rhf +nss +jYs +cMD +aeI +aeI +aeI +xpj +aeI +aeI +aeI +nQu +ele +nQu +evl +aeI +kMm +umI +moK +asz +eMI +nQu +bVE +iYw +cAW +cAW +cAW +wzE +bki +xbM +xbM +dxl +cPh +xbM +fHo +ioc +ioc +ioc +kqC +rzp +ldz +kqC +qNF +xRI +xRI +xRI +xRI +xRI +xRI +xRI +rnE +hZR +kPz +kPz +kPz +dCM +bsc +rIy +paO +sMe +xGt +hqO +hqO +hqO +uGY +njK +cHF +uGY +fAf +uGY +gIB +gIB +ceC +uNG +fAf +fAf +fAf +nZB +nZB +fAf +nZB +nZB +fAf +nZB +nZB +fAf +nZB +nZB +fAf +nZB +nZB +avJ +nZB +nZB +fAf +wSm +wSm +fAf +jxc +nZB +nZB +fAf +wly +tan +tan +tan +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(156,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +vcC +bQM +bQM +bQM +wyK +azZ +azZ +eVq +fFE +azZ +xLi +xLi +xLi +xLi +ppZ +dqX +mvp +mvp +twR +oNu +aQY +rHX +nDI +rHX +mvp +lAh +lAh +lAh +mvp +cer +kpq +lAh +lAh +lAh +dqX +fEn +mvp +mvp +ckA +lIG +spR +kzR +qBI +mvl +eqJ +byY +iEl +gBR +gBR +jmG +wUz +jWI +lFB +lFB +tOp +uqV +tVI +hBc +cKa +bRc +dVA +fZc +dVA +akM +dVA +hqD +uKK +mgz +rLG +aLX +hqD +kXk +gnY +cKa +ejM +dVA +rhf +sWX +jYs +cMD +jpW +aeI +aeI +aeI +aeI +aeI +aeI +xFg +dYi +asz +aeI +aeI +kMm +bvs +nQu +bvs +eMI +suX +aPv +iYw +iYw +iYw +cAW +wzE +xbM +xbM +xbM +ioc +dHD +xbM +fHo +ioc +ioc +ioc +kqC +qLi +dpe +kqC +okG +ioc +okG +kqC +kqC +dbI +dbI +dbI +kqC +wzE +hZR +hZR +hZR +nqN +xGt +xGt +ceC +xGt +ceC +nZB +nZB +nZB +uSU +fAf +fAf +uSU +fAf +uSU +fAf +fAf +uSU +nZB +fAf +uNI +fAf +lcm +tyC +grA +aOT +lcm +tyC +cRZ +aOT +lcm +tyC +cRZ +aOT +lcm +tyC +cRZ +aOT +lcm +tyC +grA +aOT +lcm +fAf +nZB +nZB +nZB +nZB +vzB +fiq +vzB +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(157,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +enY +wyK +azZ +azZ +azZ +azZ +xLi +xLi +xLi +xLi +xLi +phz +xLi +dqX +xLi +xLi +idP +rHX +dqX +rHX +mvp +lAh +lAh +jZc +mvp +mvp +mvp +uOu +uOu +uOu +dqX +dqX +mvp +mvp +gkv +cKa +lUZ +xlp +poC +mvl +sKu +chx +rDu +dCg +hXN +jmG +xVw +bwk +rLG +dlj +tOp +kXk +amn +pxX +cKa +bRc +dVA +cYi +dVA +wqs +dVA +cKa +awU +mgz +rLG +aLX +cKa +kzh +tOp +cKa +sGX +dVA +rhf +avc +cKa +xbc +suX +nQu +nQu +aeI +aeI +aeI +aeI +qBf +dYC +jfO +aeI +fyt +kMm +qBf +bvs +tTB +eMI +shH +cmy +wId +vOZ +iYw +sKY +wzE +xbM +xbM +xbM +ioc +dHD +jpx +fHo +ioc +ioc +ioc +kqC +kqC +kqC +mCF +uJp +kIb +vFV +kqC +lsR +lZp +lZp +lZp +svN +kqC +rzp +vds +elO +abJ +ioc +ioc +abJ +goo +goo +goo +fAf +hRb +upw +upw +upw +upw +nZB +upw +upw +upw +upw +nZB +nZB +nZB +iTt +wQN +xnU +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +xnU +kHG +wSm +wSm +wSm +wSm +wSm +wSm +wSm +xnU +wQN +eAM +wSm +wSm +wSm +wSm +vzB +fiq +vzB +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(158,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cBK +bQM +bQM +bQM +fiq +dfc +ePv +ePv +dfc +azZ +lAh +xLi +xLi +xLi +azZ +phz +phz +kEZ +phz +xLi +jUa +rHX +dqX +rHX +mvp +lAh +aeS +mvp +lkr +rTd +hae +tqw +kQH +tqw +mvp +mvp +mvp +hDm +mvp +rSr +cOF +cOF +cOF +mvl +byY +byY +byY +byY +nFc +jmG +kjt +kjt +rLG +djF +jmG +sta +sta +sta +jmG +cKa +vUP +dVA +vUP +dVA +vUP +cKa +uKK +hjB +rLG +vUP +lEd +eow +ulc +eow +eow +lFB +vUP +vUP +jmG +egk +iYw +suX +suX +nQu +nQu +nQu +fDE +qBf +dYC +jfO +nQu +ele +nQu +pst +pst +pst +nQu +neY +dNk +cMD +hCh +ufL +hCh +oFI +mCe +xbM +sJP +ioc +dHD +xbM +fHo +ioc +ioc +ioc +kqC +sfu +jyF +kqC +dHD +xLx +voO +kqC +ubh +xFJ +eao +lZp +qXj +kqC +nBb +xbM +fHo +vRA +ioc +ioc +vRA +fAf +fAf +nZB +lEg +sEO +cCy +cvv +cvv +dUi +nZB +aSA +cvv +cvv +dUi +nZB +nZB +nZB +gBe +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +eSF +seF +ojq +ojq +ojq +tsc +bEk +tsc +ogf +ogf +ogf +ogf +mRM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(159,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +yaY +bQM +kPz +tan +fiq +fiq +fiq +fiq +fiq +dfc +dqX +lAh +lAh +lAh +azZ +lAh +phz +phz +phz +xLi +nDI +dqX +dqX +dqX +dqX +lAh +lAh +jZc +cer +pvF +tfl +tqw +tqw +tqw +mvp +mvp +mvp +mvp +mvp +jmG +mvl +mvl +mvl +jmG +wfu +byY +byY +byY +hVI +jmG +kjt +kjt +rLG +gYD +fSq +jWI +eow +lFB +fSq +vUP +jWI +eow +eow +eow +lFB +oNC +kjt +mgz +rLG +vUP +lcE +amn +amn +amn +amn +tPB +vUP +vUP +jmG +bQM +iYw +sKY +iYw +hCh +hCh +lBb +dEh +hCh +hCh +hCh +aXO +pOU +ssR +nQu +aXO +nQu +nQu +neY +dNk +cMD +hCh +efR +hCh +oFI +mCe +xbM +xbM +ioc +dHD +xbM +fHo +ioc +ioc +ioc +kqC +qNF +eub +kqC +dHD +xbM +fHo +kqC +sIk +dzE +kqC +sIk +dzE +kqC +dHD +xbM +fHo +kqC +ioc +ioc +kqC +nAm +nAm +fAf +nZB +fWr +fWr +fWr +fWr +fWr +nZB +fWr +fWr +fWr +fWr +hMH +nZB +nZB +bne +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +xrH +axn +wSm +wSm +wSm +vzB +fiq +vzB +bQM +bQM +bQM +bQM +bmT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(160,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +bQM +kPz +bQM +bQM +bQM +bQM +kPz +bQM +bQM +kPz +gEq +eIX +eIX +azZ +azZ +azZ +azZ +azZ +azZ +kny +phz +mvp +mvp +mvp +mvp +pUO +mvp +mvp +mvp +mvp +mvp +xxU +kpq +jNi +ygs +ygs +kBX +dqX +loE +eIx +mvp +mvp +lZA +vUP +vUP +vUP +lZA +byY +byY +byY +byY +byY +lZA +kjt +kjt +rLG +rLG +fSq +kjt +oZU +rLG +fSq +vUP +hFW +mgz +mgz +mgz +rLG +jHV +kjt +lpZ +rLG +cKa +kzh +tOp +cKa +kzh +tOp +cKa +jWI +lFB +jmG +kPz +eHa +pcu +iYw +sKY +sKY +iYw +imI +oEH +oEH +oEH +vkt +bLJ +rcg +xZN +eWf +uRv +eWf +vlO +iYw +iYw +sKY +sKY +sKY +wzE +gSf +xbM +xbM +ioc +nbP +xbM +fHo +ioc +ioc +kgN +kqC +ryJ +end +kqC +rgc +xbM +fHo +vfO +lZp +lZp +jmv +uLV +lZp +vfO +dHD +xbM +fHo +abJ +ioc +ioc +abJ +fAf +fAf +nZB +nZB +nZB +owp +uPA +uWQ +nZB +ghz +nZB +uPA +uWQ +nZB +nZB +fAf +fAf +eZr +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +fZd +axn +wSm +wSm +wSm +vzB +fiq +vzB +bQM +bQM +bQM +bQM +bmT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(161,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +axb +bQM +kPz +bQM +bQM +kPz +bQM +weE +qkq +azZ +azZ +azZ +azZ +azZ +azZ +azZ +phz +azZ +hae +hae +hae +hae +hae +hae +hae +hae +hae +iRI +kpq +mvp +lIC +kxl +swT +fEn +gDI +agh +mvp +mvp +wef +vUP +vUP +vUP +wef +byY +byY +byY +byY +byY +wef +kXk +kXk +tPB +tPB +fSq +kXk +amn +tPB +fSq +vUP +kXk +amn +amn +amn +tPB +oNC +kjt +mgz +rLG +cKa +jWI +oyy +cKa +drZ +oyy +cKa +kjt +rLG +uwk +swg +fyC +qOk +sHO +erT +kPz +iYw +hre +wfw +jRF +bvp +iiY +bLJ +bLJ +frv +frv +bLJ +frv +frv +iYw +cAW +bce +bce +bce +wzE +kqC +ioc +ioc +kqC +oFp +xbM +sJy +vds +vds +lvV +vds +vds +elO +ioc +dHD +xbM +fHo +vfO +lZp +lZp +eao +lZp +lZp +vfO +dHD +xbM +fHo +vRA +ioc +ioc +vRA +fAf +fAf +nZB +nZB +nZB +nZB +nKl +qfc +nZB +fAf +nZB +nKl +qfc +nZB +nZB +nZB +nZB +iTt +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +kHG +eAM +axn +wSm +wSm +wSm +vzB +fiq +vzB +bQM +bQM +bQM +bQM +bmT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(162,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +kPz +bQM +kPz +bQM +bQM +kPz +bQM +gEq +arW +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +rHX +rHX +rHX +bou +rHX +rHX +rHX +sVT +rHX +rHX +kpq +mvp +mMP +wsM +swT +fEn +fEn +ciM +mvp +mvp +cKa +mgz +mgz +mgz +cKa +tOp +tOp +cKa +tOp +cKa +cKa +kXk +kXk +tPB +tPB +jmG +jmG +jmG +jmG +jmG +cKa +kzh +tOp +cKa +kzh +tOp +cKa +cIJ +lfX +rLG +cKa +iFB +dUx +cKa +iFB +trR +cKa +kjt +rLG +uwk +daD +afk +afk +afk +ghg +gef +sKY +qTe +red +mqJ +qJQ +myj +rtc +idS +rcg +wvL +hys +rcg +rcg +sKY +cAW +bce +cAW +cAW +wzE +xJQ +mYl +vds +vds +qEs +rPD +xbM +xbM +kTW +eNa +xRI +xRI +efW +ioc +dHD +xbM +fHo +kqC +hAP +dzE +kqC +sIk +dzE +kqC +dHD +xbM +fHo +kqC +ioc +ioc +kqC +goo +goo +fAf +nZB +upw +upw +upw +upw +upw +nZB +upw +upw +upw +upw +upw +nZB +nZB +gBe +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +xYg +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +eSF +axn +wSm +wSm +wSm +vzB +fiq +vzB +bQM +bQM +bQM +bQM +bmT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(163,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +yaY +bQM +vcC +bQM +bQM +qgC +bQM +bQM +vcC +kPz +eIX +fiq +bxd +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +eqU +eqU +eqU +eqU +eqU +eqU +eqU +eqU +uAg +kpq +hjp +dsS +dXN +swT +fEn +gDI +agh +mvp +mvp +lZA +vUP +vUP +vUP +lZA +jWI +eow +eow +eow +eow +owS +eow +eow +eow +eow +vqW +eow +owS +eow +lFB +cKa +jWI +oyy +cKa +siB +jSc +cKa +qya +mgz +rLG +hEs +cKa +cKa +cKa +cKa +cKa +cKa +kjt +rLG +uwk +urJ +afk +hkh +afk +tCZ +pcu +sKY +aso +ber +rcg +aso +aso +rtc +idS +imI +sPt +hys +imI +sPt +sKY +bce +bce +cAW +cAW +wzE +dHD +voV +sxc +cxA +xbM +xbM +xbM +oFf +xbM +jlq +kqC +ryJ +end +kqC +nBb +xbM +voO +kqC +ubh +lZp +jmv +lZp +qXj +kqC +nBb +xbM +fHo +abJ +ioc +ioc +abJ +fAf +fAf +nZB +lEg +sEO +cCy +cvv +cvv +dUi +nZB +aSA +cvv +cvv +dUi +nZB +nZB +nZB +bne +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +xrH +axn +wSm +wSm +wSm +vzB +fiq +vzB +bQM +bQM +bQM +bQM +bmT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(164,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +nPj +bQM +bQM +dxb +bQM +bQM +kPz +bQM +bQM +kPz +vcC +bQM +eIX +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +mvp +mvp +azZ +mvp +azZ +mvp +mvp +mvp +cer +kpq +mvp +sxH +sxH +aaR +dqX +pHi +eFX +mvp +mvp +wef +vUP +vUP +vUP +wef +kjt +mgz +mgz +xAq +mgz +mgz +mgz +mgz +mgz +mgz +mgz +mgz +mgz +xAq +rLG +cKa +iFB +dUx +cKa +iFB +dUx +cKa +xnt +mgz +rLG +cKa +bqu +rwm +cKa +bqu +rwm +cKa +kjt +rLG +uwk +mdJ +afk +afk +afk +xMW +ssJ +sKY +cvc +gPk +rmZ +sFY +neY +rtc +fOi +fac +ehO +hys +unF +ehO +sKY +cAW +bce +bce +bce +wzE +oXD +xbM +dJd +dBl +xbM +cZh +xbM +xbM +xbM +rzp +kqC +rzp +jln +kqC +eQb +xbM +kgp +kqC +erU +lZp +lZp +xFJ +hrL +kqC +dHD +xbM +fHo +vRA +ioc +ioc +vRA +nAm +nAm +nAm +fAf +lFo +fWr +fWr +hMH +fWr +nZB +fWr +fWr +fWr +fWr +nZB +fAf +fAf +klB +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +fZd +axn +wSm +wSm +wSm +vzB +fiq +vzB +bQM +bQM +bQM +bQM +bmT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(165,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +kPz +kPz +tan +tan +kPz +kPz +kPz +tan +kPz +tan +tan +azZ +lAh +lAh +lAh +lAh +azZ +azZ +lAh +lAh +lAh +lAh +azZ +azZ +azZ +lAh +lAh +lAh +xvI +cer +beh +hae +tqw +tqw +tqw +mvp +mvp +mvp +mvp +mvp +cKa +mvl +mvl +mvl +cKa +kXk +amn +amn +rTZ +mgz +cCe +amn +amn +amn +amn +amn +amn +rTZ +mgz +bOx +cKa +cKa +cKa +cKa +cKa +cKa +cKa +nGV +amn +tPB +cKa +jnX +rhH +cKa +kXk +rhH +cKa +kXk +tPB +uwk +aKA +tWI +llQ +eOF +bUB +kPz +iYw +nQu +jRF +nzi +suX +tde +bLJ +izZ +wTW +wTW +izZ +wTW +wTW +ecM +cAW +bce +cAW +cAW +wzE +gtN +elO +xbM +xbM +xbM +lBI +cxA +xbM +rzp +dHD +kqC +qLi +jhN +kqC +rYy +xbM +fHo +kqC +kqC +vfO +vfO +vfO +kqC +kqC +dHD +xbM +fHo +vMK +goG +goG +vMK +goG +vMK +gjs +fAf +fAf +uSU +fAf +fAf +uSU +fAf +uSU +fAf +fAf +uSU +nZB +nZB +nZB +iTt +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +eAM +cAO +wSm +wSm +wSm +vzB +fiq +vzB +bQM +bQM +bQM +bQM +bmT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(166,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +aeS +mvp +ubX +eqU +eqU +tqw +tqw +tqw +mvp +mvp +mvp +mvp +mvp +mvl +wSN +kzR +wSC +mvl +knb +vUP +vUP +kjt +mgz +bOx +aSz +uwk +uwk +uwk +uwk +aSz +xVw +mgz +rLG +cKa +bqu +hJo +cKa +bqu +rwm +cKa +jGz +vUP +vUP +cKa +kzh +tOp +cKa +kzh +tOp +cKa +vUP +vUP +jmG +jmG +mlC +mlC +mlC +mlC +ecM +iYw +imI +oEH +oEH +oEH +vkt +bLJ +xKX +iaa +iaa +tZO +iaa +iaa +ecM +mlC +wzE +wzE +wzE +wzE +rzF +fHo +xbM +xbM +xel +xbM +xbM +xbM +dHD +jbg +kqC +kqC +kqC +kqC +rKd +xbM +pZn +atY +atY +vds +vds +vds +qJl +atY +qEs +xbM +fHo +goG +dYq +chg +uEh +gZx +goG +fAf +fAf +fAf +fAf +fAf +fAf +mxQ +lVA +mxQ +fAf +fAf +fAf +fAf +nZB +nZB +gBe +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +eSF +due +ojq +ojq +ojq +tsc +bEk +tsc +ogf +ogf +ogf +ogf +fWI +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(167,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xWc +bQM +bQM +cZq +bQM +bQM +bQM +bQM +yaY +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +lAh +jZc +mvp +mvp +mvp +cYd +cYd +cYd +dqX +dqX +rYw +mvp +dqX +mvl +fqI +xlp +cOF +cKa +cKa +cKa +cKa +kjt +mgz +qrU +uwk +bQM +bQM +bQM +bQM +uwk +kXk +amn +tPB +cKa +kXk +rhH +cKa +kXk +rhH +cKa +wqz +eow +eow +eow +eow +eow +tkZ +eow +eow +eow +eow +eow +rIr +nmi +scS +scS +oPR +oPR +oPR +gbR +oPR +oPR +oPR +oPR +oPR +jnQ +oPR +oPR +oPR +oPR +oPR +oPR +jnQ +oPR +kqC +ioc +ioc +ioc +ioc +ioc +xbM +xbM +xbM +xbM +bkQ +xbM +qNF +dHD +kqC +rkp +iKy +kqC +dHD +xbM +jbm +xbM +xLx +xbM +jbm +xbM +xbM +xbM +xbM +xbM +fHo +goG +xoR +ioW +opM +fAU +goG +fAf +rpL +fAf +fAf +fAf +qsc +mxQ +iyf +mxQ +gjs +fAf +fAf +fAf +nZB +nZB +bne +wQN +xnU +wSm +wSm +wSm +wSm +wSm +wSm +wSm +wSm +xnU +wSm +wSm +kHG +wSm +wSm +wSm +wSm +wSm +xnU +wQN +xrH +wSm +wSm +wSm +wSm +vzB +fiq +vzB +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(168,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +kPz +bQM +bQM +cZq +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +azZ +lAh +lAh +lAh +lAh +lAh +eWP +lAh +lAh +lAh +fEn +fEn +mvp +mvp +fEn +cKa +oOU +fyi +cOF +mvl +vUP +vUP +vUP +kjt +mgz +bOx +aSz +uwk +uwk +uwk +uwk +aSz +cIt +vUP +vUP +cKa +kzh +tOp +cKa +kzh +tOp +cKa +xVw +mgz +mgz +xAq +mgz +mgz +mgz +mgz +mgz +mgz +mgz +lFg +rLG +fSq +oPR +qBe +exl +oPR +jqE +qBe +qBe +miU +qOu +xKX +eXz +qBe +qBe +qBe +eUP +qBe +qBe +qBe +qBe +eFQ +wpO +ioc +ioc +ioc +efW +xbM +cxA +cZh +xbM +oFf +voV +xbM +xbM +qNF +kqC +qNF +efW +kqC +qNF +xRI +iXq +xRI +xRI +xRI +xRI +xRI +mKd +xRI +xRI +xRI +efW +goG +egd +pYB +pYB +bMI +goG +fAf +fAf +fAf +fAf +fAf +fAf +mxQ +tUs +mxQ +mxQ +iyf +iyf +mxQ +vMK +fAf +fAf +nfh +bxe +cFg +gAQ +nfh +bIz +cFg +gAQ +nfh +bxe +cFg +gAQ +nfh +bxe +cFg +gAQ +nfh +bxe +cFg +gAQ +nfh +nZB +nZB +nZB +nZB +nZB +vzB +fiq +vzB +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(169,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +azZ +lAh +azZ +azZ +lAh +azZ +azZ +lAh +azZ +azZ +azZ +azZ +azZ +lAh +lAh +lAh +nMI +fEn +mvp +mvp +fEn +rSr +cOF +cOF +cOF +rSr +jWI +eow +eow +ufR +mgz +rLG +vUP +jWI +eow +eow +eow +lFB +xBN +jWI +eow +eow +eow +eow +eow +eow +eow +eow +ufR +mgz +wef +mgz +cbY +amn +amn +amn +amn +amn +amn +amn +tPB +fSq +wdl +nOe +qBe +qBe +hdR +roQ +ccZ +uOP +cZR +qBe +ccZ +qBe +qBe +qBe +qBe +qBe +qBe +qBe +lFv +eFQ +wpO +ioc +ioc +ioc +dHD +kbh +xbM +xbM +cxA +jET +xbM +cZh +fYY +voO +kqC +qRi +end +wzE +wzE +wzE +kqC +ioc +ioc +ioc +ioc +pvE +kqC +jTJ +goG +goG +goG +vMK +nxc +pYB +pYB +nWM +vMK +vMK +gjs +fAf +fAf +fAf +fAf +mxQ +tUs +mxQ +gbf +fOT +apu +gbf +vMK +gjs +nZB +nZB +nZB +fAf +fAf +fAf +fAf +fAf +fAf +nZB +nZB +nZB +fAf +nZB +nZB +nZB +fAf +nZB +nZB +nZB +fAf +nZB +nZB +nZB +nZB +fAf +wly +tan +tan +tan +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(170,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +azZ +azZ +azZ +lAh +azZ +azZ +lAh +bQM +bQM +lAh +azZ +azZ +azZ +lAh +lAh +lAh +lAh +lAh +bMT +fEn +mvp +mvp +fEn +cKa +cKa +cKa +cKa +cKa +kjt +mgz +cCe +amn +amn +tPB +vUP +kXk +amn +amn +amn +tPB +vUP +kjt +mgz +xAq +mgz +mgz +mgz +mgz +mgz +mgz +wef +mgz +mgz +mgz +bOx +jpN +uwk +uwk +uwk +lIG +vUP +sHj +vUP +cKa +oPR +qBe +qBe +qBe +nCH +mEU +oyS +qBe +qBe +qBe +oyS +qBe +qBe +qBe +qBe +eUP +qBe +qBe +qBe +oPR +wpO +ioc +ioc +ioc +qNF +nAK +xbM +xbM +xbM +xbM +jET +xbM +xbM +pZn +vds +vds +elO +hZR +bQM +hZR +iCf +rzp +vds +vds +vds +rLJ +jvi +duF +jTN +xro +fGW +pYB +pYB +pYB +pYB +pYB +uvV +vMK +goG +goG +goG +vMK +lVA +mxQ +deR +mxQ +gbf +fOT +apu +gbf +vMK +fAf +nZB +nZB +nZB +fAf +wly +wly +wly +wly +aSA +cvv +dUi +fAf +fAf +nZB +nZB +fAf +fAf +fAf +nZB +fAf +fAf +fAf +fAf +nZB +fAf +fAf +wly +wly +wly +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(171,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +lAh +bQM +bQM +lAh +lAh +lAh +lAh +bQM +bQM +bQM +jmG +cAW +cAW +jmG +jmG +jmG +wef +lSj +wef +lSj +cKa +cKa +pRa +lFB +lpX +mgz +mgz +bOx +cKa +kzh +tOp +cKa +kzh +tOp +cKa +kzh +tOp +arn +xVw +mgz +cCe +amn +amn +amn +amn +amn +amn +rTZ +mgz +mgz +mgz +rLG +uwk +bQM +kPz +bQM +jmG +hul +cKa +cKa +cKa +hrz +qBe +qBe +qBe +fWH +fWH +jlI +qBe +qBe +qBe +jlI +qBe +qBe +qBe +oPR +oPR +hxj +wis +sGa +gNU +kqC +kqC +ecd +kqC +kqC +dHD +xbM +xbM +pHx +xbM +eNa +xRI +xRI +xRI +xRI +xRI +efW +hZR +kPz +hZR +auS +dHD +jbm +xbM +xbM +fHo +jvi +duF +fEH +xsS +tOM +tOM +tOM +kor +kor +tOM +tOM +tOM +tOM +tOM +wZH +mxQ +iyf +mxQ +tUs +mxQ +gbf +fOT +apu +gbf +vMK +hhu +bOp +jEQ +slT +mSk +wly +kPz +bQM +wly +lhS +nXE +ibA +fAf +fAf +fAf +fAf +fAf +fAf +fAf +fAf +fAf +fAf +fAf +fAf +fAf +fAf +wly +wly +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(172,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +lAh +bQM +bQM +lAh +bQM +bQM +lAh +lAh +jmG +cAW +cAW +cAW +cAW +jmG +bQM +jmG +vUP +jWI +eow +lFB +mgz +cKa +dJh +rLG +uwk +kjt +mgz +rLG +cKa +jWI +oyy +cKa +bTr +oyy +cKa +kyU +oyy +cKa +kjt +mgz +bOx +cKa +cKa +wZt +wZt +cKa +jmG +gHh +mgz +mgz +mgz +rLG +uwk +kPz +kPz +kPz +uwk +cOF +cOF +utw +lzm +qBe +qBe +qBe +qBe +oSz +roQ +dvg +qBe +qBe +qBe +dvg +qBe +eXz +qBe +oPR +kqC +kqC +dAd +hbp +kqC +kqC +rCq +vRA +vRA +kqC +fLb +ayW +xbM +xbM +xbM +rYK +kqC +cRB +end +kqC +cRB +end +wzE +bQM +hZR +qSz +dHD +eNa +rwK +nAK +fHo +kpu +duF +fAU +tOM +tOM +tOM +tOM +nny +vHD +tOM +tOM +tOM +tOM +tOM +wZH +mxQ +gbf +tUs +tUs +vDO +eBS +fOT +apu +gbf +bzO +bzO +ybj +ckm +ckm +ckm +wly +kPz +bQM +wly +dUn +rpL +fwY +fAf +jEr +byE +wly +ckm +ckm +ckm +wly +ckm +ckm +wly +ckm +ckm +ckm +wly +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(173,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +bQM +lAh +bQM +bQM +lAh +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +jmG +jmG +jmG +vUP +kjt +mgz +rLG +vUP +cKa +iFB +dUx +uwk +kjt +mgz +rLG +cKa +iFB +dUx +cKa +iFB +dUx +cKa +oMw +yhJ +cKa +mlg +mgz +rLG +cKa +uyC +dzB +dzB +aYg +cKa +kjt +mgz +mgz +kWx +rLG +uwk +bQM +kPz +bQM +uwk +cOF +fyi +dXS +qva +xbm +smj +qBe +qBe +aZL +mEU +ccZ +qBe +qBe +qBe +ccZ +qBe +qBe +qBe +sGa +kqC +kqC +vRA +blG +kqC +kqC +kqC +tVV +arl +oFI +kCT +opj +xRI +nAK +xbM +fHo +kqC +rzp +bIP +kqC +rzp +mwP +wzE +kPz +jTJ +vUl +dHD +fHo +pLE +dHD +fHo +uuG +jTJ +gHn +tOM +tOM +tOM +bkg +xsS +xsS +tOM +tOM +uwT +tOM +tOM +wZH +mxQ +eBj +vfz +tUs +mxQ +gbf +fOT +apu +gbf +vEK +bzO +wly +kPz +bQM +kPz +bQM +kPz +bQM +wly +ckm +ckm +ckm +ckm +ckm +ckm +wly +bQM +bQM +bTo +pcu +iWq +bTo +pcu +iWq +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(174,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +lAh +bQM +bQM +lAh +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +uwk +vUP +kXk +amn +tPB +vUP +hEs +cKa +cKa +cKa +wdL +vAU +hCR +hEs +cKa +cKa +cKa +cKa +cKa +cKa +cKa +cKa +cKa +xVw +mgz +rLG +cKa +onW +pZp +dzB +shh +cKa +kjt +mgz +wef +mgz +rLG +jmG +bQM +kPz +bQM +uwk +jsu +fyi +haQ +cKa +ntE +smj +wrT +qBe +qBe +qBe +qBe +qBe +sWw +qBe +sQr +qBe +qBe +qBe +vcu +qQM +abJ +rzp +vds +elO +sKt +kqC +vRA +tiX +kqC +kqC +kqC +kqC +dHD +xbM +fHo +kqC +qLi +dpe +kqC +qLi +dpe +wzE +bQM +hZR +pLE +dHD +fHo +pLE +dHD +fHo +pLE +duF +mWR +tOM +tOM +tOM +tOM +tOM +tOM +tOM +ffZ +mxQ +mxQ +iyf +mxQ +mxQ +gbf +ndl +aZN +mxQ +gbf +fOT +apu +gbf +lTW +bzO +bzO +rzt +rzt +tan +bQM +kPz +bQM +kPz +bQM +kPz +bQM +kPz +bQM +bQM +dhi +qFE +qFE +fyC +qOk +pbV +fyC +qOk +pbV +qFE +qFE +lml +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(175,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +lAh +bQM +bQM +bQM +bQM +bQM +cAW +bQM +bQM +cAW +cAW +cAW +cAW +cAW +bQM +uwk +jWI +eow +lFB +vUP +vUP +wef +bqu +rwm +eDA +vsM +mgz +xBc +cKa +bqu +rwm +cKa +bqu +rwm +cKa +bqu +rwm +cKa +kjt +mgz +rLG +cKa +tjR +cKa +onW +dzB +wZt +kjt +mgz +mgz +wef +rLG +uwk +bQM +kPz +bQM +jmG +bZI +fyi +vqs +mvl +ntE +smj +qof +qBe +qof +qBe +qof +sGa +gNU +oOg +bno +bno +bno +bno +vrR +jOb +vRA +dHD +bAM +fHo +sKt +oFI +vRA +glD +kqC +pVY +mwP +kqC +dHD +xbM +rYK +mCF +kqC +kqC +kqC +kqC +kqC +wzE +kPz +hZR +pLE +dHD +fHo +pLE +dHD +naI +pLE +duF +dLN +dPm +tOM +tOM +uyw +tOM +hoT +tOM +mxQ +nmT +tUs +rbK +tUs +tUs +aEC +tUs +tUs +ffZ +gbf +fOT +apu +gbf +gbf +mxQ +qhD +qhJ +upK +bzO +rzt +rzt +bzO +bzO +bQM +kPz +bQM +kPz +bQM +bQM +bTo +afk +afk +afk +hkh +afk +afk +hkh +afk +afk +afk +iWq +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(176,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +bQM +bce +bce +bce +bce +bce +bce +uwk +uwk +kjt +mgz +rLG +gBw +vUP +eDA +kXk +tPB +wef +kjt +mgz +xRY +cKa +kXk +tPB +cKa +kXk +tPB +cKa +kXk +ctI +cKa +kjt +gzu +kGo +cKa +onW +vBa +cMP +dzB +wZt +kjt +mgz +jMf +wef +rLG +uwk +kPz +kPz +kPz +jmG +wxW +jEK +cOF +jce +ntE +smj +qBe +qBe +qBe +qBe +qBe +hSl +ecM +jVj +gqU +eac +dPe +mcJ +uIL +kqC +kqC +nBb +xbM +fHo +sKt +kqC +kqC +kqC +kqC +ryJ +end +kqC +nBb +xbM +fHo +kqC +sfu +jyF +kqC +hHX +jyF +wzE +bQM +hZR +pLE +qNF +efW +pLE +qNF +efW +pLE +duF +chg +tOM +tOM +tOM +fiw +tOM +tOM +tOM +vDO +tUs +mxQ +tUs +mxQ +mxQ +mAN +mxQ +tUs +mxQ +gbf +fOT +apu +pYB +pYB +qaT +fWy +uvu +gbf +erw +tOM +gbf +pRz +bzO +bQM +kPz +bQM +kPz +bQM +bQM +bTo +afk +afk +afk +pcu +afk +afk +pcu +afk +afk +afk +iWq +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(177,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +bQM +bce +swg +fQV +vBP +fQV +erT +uwk +wcC +kXk +amn +tPB +vUP +dFI +cKa +eDA +wef +wef +wlv +xWG +ngF +cKa +kzh +tOp +cKa +kzh +tOp +cKa +kzh +tOp +cKa +xVw +mgz +rLG +cKa +onW +shh +cKa +onW +wZt +kjt +mgz +bJn +aTM +rLG +uwk +bQM +kPz +bQM +jmG +txf +oZj +sfZ +uhm +wdl +iUS +qof +qBe +qof +qBe +qof +pUo +ecM +vNd +fWH +fWH +fWH +fWH +fWH +kqC +mue +bbI +xbM +rYK +kqC +kqC +wyQ +eTa +vds +vds +vds +elO +dHD +xbM +fHo +kqC +qNF +mDO +kqC +qNF +mDO +wzE +wzE +wzE +kqC +ecd +ecd +kqC +ecd +ecd +kqC +jTJ +vMK +mGZ +tOM +bkg +czr +tOM +tOM +hao +mxQ +jXj +mxQ +rsp +mxQ +gbf +gbf +mxQ +tUs +mxQ +gbf +xRw +apu +gbf +gbf +mxQ +uvu +sxE +uvu +sXa +uCO +sXa +qhJ +bzO +bQM +kPz +bQM +kPz +bQM +bQM +bTo +afk +afk +afk +hkh +afk +afk +hkh +afk +afk +afk +iWq +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(178,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +bQM +bce +bTo +afk +afk +afk +ghg +uwk +aoZ +vUP +jWI +eow +lFB +vUP +pDo +jWI +bXz +kGd +ufR +sNi +jna +eow +eow +lFB +vUP +pRa +kGd +eow +eow +lFB +vUP +kjt +jYM +rLG +cKa +onW +dzB +vBa +shh +cKa +kjt +mgz +wef +mgz +bOx +jmG +uwk +uwk +uwk +jmG +mvl +mvl +uhm +cKa +dnj +wis +qBe +qBe +qBe +qBe +oPR +hSl +ecM +bEX +bEX +izZ +oPR +oPR +oPR +kqC +pCQ +dHD +xbM +fHo +abJ +ioc +rzp +vds +vds +vds +elO +efW +dHD +xbM +rYK +kqC +ryJ +end +kqC +ryJ +end +kqC +wzE +pah +vNQ +xbM +iCN +qOq +xbM +xbM +pah +bhu +goG +tOM +tOM +tOM +tsf +tOM +tOM +dbW +mxQ +tUs +tUs +oBj +mxQ +gbf +mxQ +mxQ +msj +mxQ +gbf +fOT +apu +gbf +vEK +mxQ +mxQ +jjg +jjg +jjg +jjg +jjg +jjg +bzO +bzO +bzO +bzO +bzO +bzO +bQM +aKA +jlH +jlH +tWI +llQ +jKI +tWI +llQ +jKI +jlH +jlH +bUB +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(179,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +bQM +bce +ajx +afk +hkh +afk +tCZ +uwk +rce +vUP +kjt +mgz +rLG +mgz +mgz +kXk +qGB +amn +amn +amn +amn +amn +amn +tPB +baM +kXk +xYJ +qGB +amn +tPB +vUP +kjt +mgz +rLG +cKa +okJ +cMP +dzB +lsZ +hEs +kjt +mgz +mgz +wef +rLG +jYs +uJi +fWH +hdR +hQQ +fWH +fWH +mBG +sue +wBB +dAd +ode +ode +ode +ode +ode +cry +qBe +qBe +qBe +wKm +qBe +qBe +oPR +kqC +cRI +dHD +xbM +fHo +vRA +ioc +qNF +xRI +xRI +xRI +efW +elO +cHC +xbM +fHo +ioc +rzp +vds +vds +vds +elO +ioc +duF +hQv +gsL +mOI +xbM +qOq +xbM +xbM +gFj +sNN +goG +tOM +tOM +tOM +bPh +mzJ +tOM +mtD +mxQ +xCa +pjT +cHm +mxQ +fvK +hvF +tUs +tUs +lhY +gbf +fOT +apu +gbf +vEK +mxQ +mxQ +kGZ +sBW +sBW +sBW +sBW +sBW +sBW +bzO +bzO +bzO +bzO +bzO +bQM +bQM +bQM +bQM +aKA +jlH +bUB +aKA +jlH +bUB +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(180,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +bQM +bce +bTo +afk +afk +afk +xMW +uwk +rce +vUP +kXk +amn +tPB +qqC +eov +efl +fDQ +eov +tzy +wef +wef +xgH +vUP +knb +wef +wef +tOp +cKa +kzh +tOp +cKa +xVw +mgz +bOx +aSz +aSz +aSz +hul +aSz +aSz +nGV +amn +amn +amn +tPB +jYs +fWH +mEU +aZL +mEU +aZL +cGS +dBz +ivw +kmm +qBe +oPR +oPR +wuW +qBe +qBe +qBe +qBe +qBe +qBe +qBe +qBe +qBe +oPR +kqC +mue +gIa +xbM +rYK +kqC +kqC +ioc +qNF +xRI +xRI +xRI +efW +dHD +xbM +fHo +ioc +qNF +xRI +xRI +xRI +efW +sDR +hBF +vcv +iLl +xbM +xbM +qOq +huG +xbM +pah +rmJ +goG +tOM +tOM +tOM +quL +tOM +tOM +tzU +mxQ +tUs +mxQ +tUs +tUs +gbf +rbK +tUs +mxQ +mxQ +gbf +fOT +apu +gbf +vEK +fFw +kGZ +fHI +pYB +eBS +pYB +tOM +tOM +gbf +gbf +bzO +bQM +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(181,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +cAW +bQM +bce +aKA +jlH +eJQ +jlH +bUB +uwk +iTr +jWI +eow +lFB +vUP +mgz +eov +ihV +uvS +eov +gXI +qxx +jAW +vUP +tWs +vUP +wef +jWI +lFB +cKa +jWI +oyy +cKa +kjt +mgz +rLG +vUP +cKa +sXe +wef +sXe +aSz +jmG +jmG +uwk +uwk +jmG +jmG +mEU +bbn +oPR +oPR +oPR +oPR +oPR +oPR +oPR +oPR +oPR +oPR +qBe +qBe +qBe +qBe +qBe +qBe +qBe +qBe +qBe +qBe +pUf +kqC +kqC +nBb +xbM +fHo +sKt +kqC +ryJ +end +kqC +ryJ +end +kqC +dHD +xbM +rYK +kqC +ryJ +end +kqC +ryJ +end +kqC +wzE +kqC +kqC +ecd +ecd +kqC +ecd +ecd +kqC +jTJ +vMK +pFW +tOM +tOM +tOM +tOM +tOM +tOM +vDO +tUs +mxQ +vrF +hvF +gbf +hvF +oBj +tUs +vDO +eBS +fOT +epB +gbf +gbf +fWy +vUZ +waN +sfW +sfW +sfW +sfW +sfW +qRW +mOE +bzO +tan +tan +tan +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(182,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +qdd +kPz +bce +bce +bce +bce +bce +bce +uwk +uwk +kjt +mgz +rLG +vUP +cEg +eov +jGs +vRu +eov +iFB +nVu +hqD +jiz +vUP +cfU +hqD +iFB +dUx +cKa +iFB +qBT +cKa +kjt +mgz +rLG +vUP +glj +sXe +wef +sXe +odQ +uwk +bQM +bQM +bQM +bQM +uwk +aZL +oPR +ldj +oPR +oPR +oPR +oPR +oPR +oPR +oPR +hoC +oPR +qBe +hdR +ksu +ecM +mlC +mlC +mlC +ecM +okE +qBe +vcu +qQM +abJ +dHD +xbM +fHo +sKt +kqC +qNF +mDO +kqC +qNF +mDO +kqC +nBb +xbM +fHo +kqC +rzp +mwP +kqC +rzp +mwP +kqC +rKs +tOM +wGA +fOT +apu +hAs +fOT +apu +gbf +xXt +vMK +bRC +tOM +tOM +tOM +sbU +tOM +aXv +mxQ +tUs +tUs +jXj +mxQ +gbf +mxQ +tUs +hvF +mxQ +gbf +fOT +nBw +nvX +nvX +wuz +fHI +hfd +fIW +htt +htt +qpM +vjq +fHb +fHb +fHb +tsc +bEk +tsc +ogf +mRM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(183,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +qdd +bQM +bce +cAW +cAW +cAW +cAW +cAW +bQM +uwk +kXk +amn +tPB +vUP +kIO +eov +dRO +pvD +eov +cKa +cKa +cKa +mZy +vUP +dFI +hEs +cKa +cKa +cKa +cKa +cKa +cKa +xVw +mgz +rLG +vUP +glj +sXe +wef +sXe +vJh +uwk +kPz +kPz +kPz +kPz +uwk +qBe +rpt +oPR +roQ +ccZ +aZL +mEU +roQ +ccZ +aZL +oPR +oPR +qBe +jDe +ofl +mlC +kPz +kPz +kPz +mlC +qBe +eUP +sGa +jOb +vRA +qNF +eux +efW +ioc +kqC +kqC +kqC +mCF +kqC +kqC +kqC +dHD +xbM +fHo +kqC +qLi +dpe +kqC +qLi +dpe +kqC +lbz +gLk +gbf +fOT +apu +pYB +fOT +apu +gbf +bRC +vMK +goG +iyf +goG +vMK +vMK +vMK +vMK +mxQ +mxQ +uZX +mxQ +mxQ +uOM +mxQ +uZX +mxQ +mxQ +mFS +fOT +gbf +gbf +gbf +arT +tOM +hfd +vfM +oEK +lEy +gfh +tUs +tUs +tUs +tUs +vzB +fiq +vzB +bQM +bmT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(184,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +qdd +rkH +rkH +cAW +cAW +cAW +cAW +cAW +bQM +uwk +vUP +jWI +eow +lFB +dbh +eov +doe +cAW +eov +bqu +rwm +cKa +gzN +vUP +vUP +cKa +bqu +rwm +cKa +bqu +rwm +cKa +kjt +xAq +rLG +vUP +cKa +dcv +wef +sXe +lMi +uwk +bQM +bQM +bQM +bQM +uwk +roQ +vdW +oPR +kJJ +jRL +mlC +mlC +mlC +ecM +iCE +oPR +oPR +qBe +xbE +fYf +mlC +bQM +bQM +bQM +mlC +eUP +qBe +xIq +kqC +kqC +vRA +blG +kqC +kqC +kqC +xbM +xbM +xbM +kgQ +xbM +xbM +dHD +xbM +rYK +kqC +kqC +kqC +kqC +kqC +kqC +kqC +mxQ +tOM +gbf +fOT +apu +pYB +fOT +apu +gbf +tOM +vuV +pYB +pYB +pYB +mxQ +oXS +fUr +wcW +wjT +mxQ +gbf +aEC +gzh +gbf +mxQ +tUs +tUs +bMu +gOk +fOT +jzP +ydK +ydK +qzb +tdq +hfd +ucj +bBA +bBA +rZi +eMU +fHb +fHb +fHb +tsc +bEk +tsc +ogf +fWI +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(185,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +cAW +bQM +bQM +cAW +cAW +cAW +cAW +jmG +jmG +jmG +lSq +kjt +hjB +rLG +taI +eov +ivb +cAW +eov +kXk +tPB +cKa +fLH +gCK +vUP +cKa +kXk +rhH +cKa +kXk +rhH +cKa +kjt +mgz +rLG +cKa +cKa +cKa +hul +cKa +cKa +jmG +vnr +hxq +hxq +vnr +vnr +mEU +oPR +oPR +aZL +mlC +bQM +kPz +bQM +mlC +roQ +oPR +oPR +qBe +vtX +dYo +mlC +kPz +kPz +kPz +mlC +qBe +qBe +qBe +kqC +kqC +jva +gEX +wzE +kqC +pai +kgQ +tSl +diJ +ddt +ioc +kgQ +diF +xbM +fHo +kqC +sfu +jyF +kqC +sfu +jyF +kqC +hNj +ijd +gbf +fOT +apu +klN +fOT +wmm +gbf +vRP +anR +pca +pca +pca +vDO +tUs +rbK +tUs +tUs +uZX +pYB +pYB +hQM +pYB +pYB +tUs +vjl +mxQ +gbf +fOT +apu +gbf +gbf +fFw +vUZ +tuX +vEi +vEi +vEi +vEi +vEi +faD +oyO +bzO +tan +tan +tan +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xDq +naf +naf +cqz +ggd +bQM +bQM +bQM +bQM +"} +(186,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +cAW +cAW +cAW +cAW +jmG +cAW +jmG +vUP +kXk +amn +tPB +mpR +eov +hxJ +qgd +eov +kzh +tOp +cKa +oDH +vUP +dFI +cKa +kzh +tOp +cKa +kzh +tOp +cKa +xVw +mgz +bOx +cKa +vUP +vUP +vUP +cKa +xRl +cPz +ixl +kJz +ixl +bjf +vNq +hsz +oPR +oPR +qBe +mlC +kPz +kPz +kPz +mlC +hdR +oPR +oPR +qBe +aZL +nGB +ecM +mlC +mlC +mlC +ecM +eLU +qBe +qBe +qBe +jis +dQV +nGp +dQV +kqC +pai +kgQ +nkg +diJ +iuC +ioc +pnP +dHD +xbM +fHo +kqC +qNF +mDO +kqC +qNF +mDO +kqC +lbz +hnh +gbf +fOT +apu +vTM +fOT +apu +gbf +gbf +gbf +uFg +gbf +tOM +mxQ +kag +kag +kag +kag +uZX +gbf +dtk +nnC +ota +gbf +mxQ +mxQ +mxQ +gbf +fOT +apu +gbf +vEK +fWy +lUv +gbf +pYB +eBS +pYB +tOM +tOM +gbf +gbf +bzO +bQM +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xme +dBq +pZm +mbp +bQM +bQM +bQM +bQM +bQM +"} +(187,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +eov +eov +eov +eov +vUP +wef +vUP +ika +vUP +vUP +bjZ +jWI +eow +aiv +kGd +lFB +vUP +kjt +mgz +rLG +lZA +jWI +eow +lFB +lZA +ixl +ixl +ghS +hHH +hHH +ixl +rmX +qBe +oPR +oPR +roQ +mlC +bQM +kPz +bQM +mlC +aZL +oPR +oPR +qBe +qBe +gbk +qBe +eUP +qBe +qBe +qBe +qBe +qBe +hdR +roQ +qBe +qBe +qBe +fjg +kqC +pai +kgQ +tTm +diJ +aga +diJ +xbM +dHD +xbM +rYK +kqC +ryJ +end +kqC +ryJ +end +kqC +kqC +pFW +cTy +fOT +wua +kKP +eqw +nBw +nvX +nvX +nvX +beB +gbf +aXv +bzO +rzt +rzt +rzt +rzt +bzO +pYB +pYB +xOm +pYB +pYB +mxQ +rQN +rQN +fUD +fOT +apu +gbf +gbf +fFw +vUZ +waN +sfW +sfW +sfW +sfW +sfW +qRW +mOE +bzO +tan +tan +tan +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +iBP +vcf +vcf +lku +mzT +bQM +bQM +bQM +bQM +"} +(188,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +jmG +cAW +jmG +cAW +cAW +cAW +cAW +jmG +cKa +cKa +cKa +rpf +vUP +vUP +vUP +vUP +mIr +vUP +knb +kXk +xYJ +qGB +amn +hkH +vUP +kjt +mgz +rLG +wef +kjt +mgz +rLG +wef +ixl +ixl +ixl +ixl +ixl +gpr +nnr +oPR +oPR +oPR +kJJ +ecM +mlC +mlC +mlC +ecM +iCE +oPR +oPR +qBe +qBe +qBe +qBe +qBe +qBe +qBe +qBe +qBe +qBe +rMw +mEU +qBe +qBe +qBe +jLe +kqC +kqC +sRJ +iuC +coj +ioc +ioc +xbM +dHD +xbM +fHo +ioc +rzp +vds +vds +vds +elO +ioc +ntv +tOM +gbf +fOT +gbf +gbf +gbf +gbf +gbf +gbf +gbf +apu +gbf +tOM +bzO +bQM +kPz +kPz +bQM +bzO +mxQ +mxQ +iyf +mxQ +mxQ +mxQ +jkW +tOM +kLs +fOT +nBw +nvX +nvX +wuz +fHI +hfd +fIW +htt +htt +qpM +vjq +fHb +fHb +fHb +tsc +bEk +tsc +ogf +mRM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(189,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +cKa +cKa +cKa +cKa +vUP +vUP +vUP +jfc +wef +wef +wef +wef +wef +rPS +wef +wef +jfc +kjt +mgz +rLG +lZA +kjt +mgz +rLG +lZA +ixl +ixl +ixl +ixl +ixl +ixl +nnr +oPR +oPR +oPR +aZL +eLy +roQ +qBe +aZL +eLy +roQ +oPR +oPR +hdR +roQ +qBe +qBe +hdR +roQ +qBe +qBe +qBe +qBe +hYs +uou +qBe +mrW +qBe +fWV +tHl +qCK +lIJ +qCK +ioc +idj +ioc +xbM +qNF +xRI +efW +ioc +qNF +xRI +xRI +xRI +efW +ioc +ntv +tOM +gbf +rsR +ydK +ydK +ydK +ydK +ydK +ydK +kHv +apu +gbf +kbt +bzO +rzt +rzt +rzt +rzt +bzO +tJR +pYB +gbf +pYB +wcW +mxQ +tOM +tOM +gbf +fOT +xEW +gbf +gbf +arT +tOM +hfd +vfM +oEK +lEy +gfh +tUs +tUs +tUs +tUs +vzB +fiq +vzB +bQM +bmT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(190,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +jmG +cKa +cKa +cKa +rpf +jWI +eow +lFB +hqD +jWI +clA +wef +jWI +lFB +jfc +jWI +lFB +rPS +kjt +mgz +rLG +wef +kXk +amn +tPB +wef +ixl +ixl +ixl +ixl +ghS +ixl +lpS +ooq +oPR +oPR +oPR +oPR +oPR +oPR +oPR +oPR +oPR +oPR +oPR +aZL +mEU +qBe +eUP +aZL +mEU +qBe +qBe +qBe +qBe +hYs +qBe +qBe +qBe +oHi +miU +sgt +vRA +upY +vRA +vRA +ioc +diJ +xbM +vRA +xbM +xbM +kqC +ryJ +end +kqC +kqC +ecd +kqC +kqC +pFW +gbf +gbf +gbf +gbf +gbf +gbf +gbf +gbf +fOT +apu +gbf +ivr +vDO +wkA +wkA +wkA +lOk +gbf +tUs +pYB +hQM +pYB +tUs +vDO +eBS +tOM +gbf +fOT +jzP +ydK +ydK +qzb +tdq +hfd +ucj +bBA +bBA +rZi +eMU +fHb +fHb +fHb +tsc +bEk +tsc +ogf +fWI +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(191,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +jmG +cKa +cKa +cKa +cKa +kjt +mgz +rLG +hqD +fRc +dUx +hqD +iFB +dUx +jfc +iFB +dUx +wef +kjt +mgz +rLG +cKa +vUP +vUP +vUP +cKa +xRl +ixl +ixl +ixl +ixl +bjf +vNq +gvz +ooq +mEU +roQ +fyL +fje +rCe +etq +gGc +dIx +rCe +gPE +qBe +qBe +fyL +gGc +gGc +tzM +hdR +roQ +qBe +kHH +fFv +uoH +qBe +qBe +qBe +qBe +oPN +vRA +aXC +vRA +qCK +lIJ +vRA +upY +upY +upY +tZe +kqC +rzp +mwP +mxQ +fCZ +nZQ +sso +mxQ +bkg +kag +tOM +xsS +xsS +tOM +tOM +tOM +gbf +fOT +apu +gbf +tOM +bzO +bzO +mxQ +tUs +rVM +gbf +gbf +eBj +cLZ +atd +xGl +vDO +eBS +tOM +gbf +fOT +apu +tOM +tOM +fFw +vUZ +tuX +vEi +vEi +vEi +vEi +vEi +faD +oyO +bzO +tan +tan +tan +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(192,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +jmG +cKa +cKa +cKa +cKa +wdL +mgz +rLG +hEs +cKa +cKa +cKa +cKa +cKa +cKa +cKa +cKa +cKa +xVw +mgz +rLG +jmG +uwk +uwk +uwk +jmG +vnr +ixl +ixl +ixl +ixl +ixl +vNq +vNq +dAd +ode +ode +cry +vNq +vNq +vnr +mlC +mlC +ecM +yfp +hEv +hEv +hbp +ecM +nSx +gVc +xbo +qzZ +qBe +qBe +aZL +mEU +qBe +qBe +ooO +faw +lux +wjH +cqW +ckS +voh +dtg +ioc +upY +upY +upY +tZe +kqC +qLi +dpe +mxQ +gRW +ssO +tUs +mxQ +mxQ +iyf +mxQ +pte +bzO +mOU +mOU +mOU +gbf +fOT +apu +gbf +mOU +bzO +bzO +mxQ +tUs +uZX +gbf +tUs +pYB +xOm +pYB +tUs +mxQ +rQN +tOM +xEW +fOT +apu +tOM +aRk +fFw +lUv +gbf +pYB +eBS +pYB +tOM +tOM +gbf +gbf +bzO +bQM +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(193,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +jmG +cKa +bqu +moQ +cKa +kjt +mgz +vwX +cKa +bqu +rwm +cKa +bqu +rwm +cKa +bqu +aLC +cKa +kjt +mgz +rLG +uwk +bQM +kPz +kPz +bQM +hxq +ixl +ixl +ixl +ixl +ixl +ixl +bcX +ixl +ixl +ixl +ixl +tjp +ixl +ezn +kPz +kPz +hxq +ovq +vyw +bix +uTb +ecM +nSx +gux +eio +qBe +qBe +qBe +qBe +qBe +wKm +qBe +qBe +faw +tHl +jYm +xbM +thz +suq +xbM +wFB +xbM +xbM +xdZ +xbM +kqC +kqC +kqC +mxQ +tUs +tUs +tUs +tUs +tUs +tUs +mxQ +bzO +bzO +gbf +gbf +gbf +fWy +rsR +oEQ +fWy +gbf +gbf +gbf +mxQ +iyf +mxQ +hvF +hvF +jXj +hvF +mxQ +mxQ +mxQ +fob +rxM +gbf +fOT +apu +tOM +rbW +voP +vUZ +waN +sfW +sfW +sfW +sfW +sfW +qRW +mOE +bzO +tan +tan +tan +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(194,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +jmG +cKa +kXk +qRf +cKa +kjt +mgz +rLG +cKa +kXk +jWY +cKa +kXk +lzz +cKa +kXk +rhH +cKa +kXk +amn +tPB +uwk +bQM +kPz +kPz +bQM +hxq +ixl +ixl +ixl +ixl +ixl +ixl +ixl +ghS +ixl +ixl +ghS +ixl +ixl +vnr +hxq +hxq +vnr +lOx +oRg +ixl +uvn +ecM +nSx +ayG +laK +gRA +qBe +hdR +roQ +gRA +qBe +qBe +qBe +hQT +jTJ +jTJ +kqC +kqC +kqC +jTJ +jTJ +vRA +blG +jTJ +jTJ +jTJ +bMG +anl +ffZ +tUs +fgU +sOf +noa +mxQ +mxQ +mxQ +xLD +pYB +tOM +tOM +gbf +gbf +pYB +pYB +gbf +gbf +tOM +tOM +pYB +jyo +mxQ +mxQ +mxQ +woB +mok +mxQ +pRx +tOM +xbp +lUv +gbf +fOT +nBw +nvX +nvX +wuz +fHI +hfd +fIW +htt +htt +qpM +vjq +fHb +fHb +fHb +tsc +bEk +tsc +ogf +mRM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(195,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +jmG +cKa +kzh +tOp +cKa +kjt +mgz +rLG +cKa +kzh +tOp +cKa +kzh +tOp +cKa +kzh +tOp +cKa +cIt +vUP +vUP +uwk +bQM +kPz +kPz +bQM +hxq +vyw +bix +fOC +bix +bix +bix +bix +bix +bix +fKu +bix +bix +bix +bix +bix +xOU +bix +bix +uPl +dIh +kGc +nSx +cVV +oWC +xKX +qTt +gRA +aZL +hdR +roQ +gRA +qBe +qBe +uud +wXQ +ntv +hqX +vds +vds +rQB +gdS +ioc +ioc +qxZ +duF +sFH +rCt +xGd +mxQ +tUs +kZy +mxQ +mxQ +mxQ +pYB +pYB +eTr +tOM +gbf +gbf +tOM +gbf +pYB +pYB +gbf +tOM +gbf +gbf +tOM +tOM +pYB +cyR +mxQ +mxQ +mxQ +mxQ +uLr +tUs +brl +kyh +gbf +fOT +gbf +gbf +gbf +arT +tOM +hfd +vfM +oEK +lEy +gfh +tUs +tUs +tUs +tUs +vzB +fiq +vzB +bQM +bmT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(196,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +jmG +cKa +jWI +eow +eow +ufR +mgz +jna +eow +eow +kGd +wef +eow +eow +eow +eow +lFB +vUP +jWI +eow +lFB +uwk +bQM +kPz +kPz +bQM +hxq +oRg +ovq +ovq +ehr +ovq +ovq +ovq +ovq +ovq +ovq +ovq +ovq +ovq +ovq +ovq +ovq +ovq +ovq +ovq +ovq +uvn +nSx +nSx +xKX +rGf +xKX +qUw +gRA +aZL +mEU +roQ +qBe +qBe +qBe +kqC +kqC +kqC +fKX +upY +rQB +iLl +ioc +ioc +sjZ +kqC +huJ +caF +xKE +mxQ +cLu +wBX +mxQ +xLD +pYB +tOM +tOM +gbf +gbf +tOM +tOM +tOM +gbf +fLu +pYB +gbf +tOM +tOM +tOM +gbf +gbf +tOM +tOM +pYB +xkm +mxQ +mxQ +mWY +tUs +arT +tOM +gbf +fOT +jzP +ydK +ydK +qzb +tdq +hfd +ucj +bBA +bBA +rZi +eMU +fHb +fHb +fHb +tsc +bEk +tsc +ogf +fWI +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(197,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +jmG +cKa +kjt +mgz +mgz +mgz +mgz +mgz +mgz +mgz +mgz +wef +mgz +mgz +mgz +mgz +rLG +vUP +kjt +mgz +rLG +uwk +bQM +kPz +kPz +bQM +hxq +oRg +ovq +kDw +kgG +kgG +kgG +kgG +kgG +kgG +ujb +ovq +kDw +kgG +kgG +kgG +kgG +kgG +kgG +ujb +ovq +uvn +cVV +nSx +nVE +xKX +uGL +mEU +qBe +gRA +aZL +mEU +qBe +qBe +uud +mwu +ntv +hqX +vds +vds +jTJ +jTJ +vRA +blG +jTJ +jTJ +kqC +pim +kqC +mxQ +tUs +mxQ +mxQ +pYB +tOM +gbf +gbf +ekx +tOM +tOM +dXT +egz +fpg +nmM +aMr +hDS +egz +xBu +tOM +tOM +beB +gbf +gbf +tOM +pYB +mxQ +mxQ +uSY +tUs +qzb +rxM +uMN +fOT +apu +gbf +gbf +fWy +vUZ +tuX +vEi +vEi +vEi +vEi +vEi +faD +oyO +bzO +tan +tan +tan +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(198,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +jmG +cKa +ndQ +amn +amn +amn +amn +amn +amn +amn +amn +ljc +amn +amn +amn +amn +tPB +vUP +kXk +ylr +tPB +uwk +bQM +kPz +kPz +bQM +hxq +oRg +ovq +peP +vnr +hxq +vnr +vnr +hxq +vnr +sTw +ovq +peP +oUg +qFO +qFO +oUg +oUg +oUg +yfA +ovq +peP +nSx +nSx +xgC +roQ +gRA +qBe +hdR +dVu +nSx +okE +qBe +qBe +qBe +kqC +kqC +kqC +xbM +upY +sqC +vVx +qQb +qQb +tlF +hfT +ecU +iSg +vTA +vDO +tUs +vDO +pYB +tOM +gbf +tOM +tOM +tOM +tYD +egz +xkq +mxQ +mxQ +kKQ +vhk +mxQ +mxQ +tSL +egz +jOv +tOM +tOM +tOM +gbf +tOM +pYB +mxQ +rQN +tOM +rTD +lUv +gbf +fOT +apu +gbf +vEK +fWy +lUv +gbf +pYB +eBS +pYB +gbf +gbf +gbf +gbf +bzO +bQM +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(199,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +jmG +cKa +cKa +cKa +cKa +wsw +dVA +vUP +dVA +vUP +mgz +mgz +mgz +vUP +dVA +gtr +gtr +gtr +cKa +cKa +cKa +jmG +bQM +kPz +kPz +bQM +hxq +oRg +ovq +uvn +hxq +hoH +bQM +bQM +bQM +hxq +oRg +qFO +uvn +jSZ +ovq +sIg +uwb +wvU +oUg +oRg +vdN +uvn +uFC +qyM +aZL +hdR +roQ +gRA +aZL +hdR +dhc +nSx +okE +qBe +uud +wXQ +ntv +hqX +vds +vds +ntv +kUR +sIj +hkA +bDv +jCO +fOK +iSg +vTA +bzO +mxQ +mxQ +pYB +tOM +gbf +tOM +rko +egz +xkq +mxQ +jjg +mxQ +wGA +pYB +pYB +cwM +mxQ +jjg +mxQ +cBn +egz +sGg +tOM +gbf +tOM +pYB +mxQ +mxQ +mxQ +sBW +kyh +gbf +fOT +apu +gbf +mxk +mxQ +mxQ +tOM +tOM +tOM +tOM +tOM +tOM +tOM +bzO +bzO +bzO +bzO +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(200,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +jmG +jmG +cKa +cKa +cKa +pQc +mgz +mgz +mgz +mgz +vUP +mgz +mgz +mgz +vUP +mgz +mgz +mns +vUP +vUP +tBP +vNq +vnr +bQM +kPz +kPz +bQM +hxq +oRg +ovq +uvn +hxq +bQM +bQM +bQM +bQM +hxq +oRg +ovq +ukg +jSZ +jSZ +mVk +ovq +cLS +oUg +oRg +ovq +uvn +ovq +qyM +gRA +aZL +mEU +roQ +gRA +aZL +qEC +roQ +gRA +qBe +qBe +kqC +kqC +kqC +sKr +upY +ntv +kUR +sIj +hkA +nZI +sWr +sIj +iBr +hkA +bzO +mxQ +pYB +eTr +gbf +ekx +tOM +xpM +mxQ +jjg +mxQ +tVY +jzP +gbf +pYB +pYB +gbf +blf +fDW +mxQ +jjg +mxQ +vUZ +tOM +beB +jMv +eTr +pYB +bzO +bzO +aGR +tOM +gbf +fOT +apu +gbf +tOM +mxQ +mxQ +mxQ +mxQ +bzO +bzO +bzO +bzO +bzO +bzO +bQM +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(201,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +jmG +jmG +cKa +cKa +cKa +cKa +mgz +rAw +rAw +xKP +niw +niw +oKn +niw +jfp +pho +mgz +mgz +vUP +vUP +tBP +vNq +vnr +bQM +kPz +kPz +bQM +hxq +oRg +ovq +uvn +hxq +bQM +bQM +bQM +bQM +hxq +oRg +ovq +lAE +mVk +jSZ +grg +uen +ujz +oUg +oRg +jUP +uvn +ovq +qyM +roQ +gRA +aZL +hdR +dVu +nSx +asf +hdR +roQ +gRA +uud +iIG +ntv +hqX +vds +vds +ntv +kUR +sIj +hkA +qTQ +jfT +drd +hEk +myJ +bzO +bzO +pYB +tOM +gbf +tOM +tYD +xkq +jjg +vRk +pRD +bTC +apu +gbf +pYB +voI +gbf +fOT +nBw +fXW +ldF +jjg +cBn +jOv +tOM +gbf +tOM +cyR +bzO +bzO +pFW +tOM +gbf +fOT +apu +xdT +tOM +gbf +tOM +gbf +tOM +bzO +bzO +bQM +bQM +bzO +bQM +bQM +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(202,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +jmG +jmG +jmG +jmG +pcN +vUP +mgz +rAw +rAw +vsr +nmm +gWg +nmm +nmm +wJd +lFB +mns +mgz +vUP +vUP +tBP +vNq +vnr +bQM +kPz +kPz +bQM +hxq +oRg +ovq +uvn +hxq +bQM +bQM +bQM +bQM +hxq +erb +vhy +uvn +lpW +gyP +gPV +gyP +pBW +oUg +oRg +xHi +uvn +ovq +qyM +mEU +roQ +gRA +aZL +mEU +nGO +nSx +hsz +mEU +roQ +gRA +kqC +kqC +kqC +xbM +upY +jTJ +veW +vVN +vVN +uYo +rBF +rBF +nhY +mny +bzO +gbf +tOM +gbf +tOM +tOM +xpM +mxQ +mxQ +pRD +gbf +gbf +jzP +gbf +pYB +pYB +gbf +iYe +bnx +siy +nAV +mxQ +mxQ +vUZ +tOM +tOM +gbf +tOM +nup +gbf +tOM +mxQ +gbf +fOT +apu +gbf +buJ +buJ +xTf +tOM +gbf +bzO +bzO +bzO +bzO +bzO +bzO +bzO +bzO +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(203,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +fwn +jmG +dVC +vUP +mgz +rAw +vrH +tAE +nmm +pqz +nmm +nmm +wJd +rLG +mgz +mgz +rkF +qfi +vNq +vNq +vNq +vNq +vNq +vNq +vNq +vNq +oRg +ovq +peP +vnr +hxq +vnr +vnr +hxq +vnr +yfA +ovq +peP +oUg +vnl +qcy +oUg +oUg +oUg +yfA +ovq +uvn +vja +nSx +oQS +aZL +roQ +gRA +aZL +hdR +roQ +gRA +aZL +hdR +roQ +cfa +qwH +qwH +rzp +elO +jTJ +lmu +sIj +hkA +nZI +aoo +bcd +nZI +pxf +bzO +gbf +tOM +gbf +tOM +rko +xkq +jjg +tVY +bxv +gbf +gbf +oox +lMV +pYB +pYB +vjR +doQ +upM +vjR +nBw +fDW +jjg +cBn +rxM +tOM +gbf +tOM +nup +gbf +bkg +ivN +gbf +fOT +apu +xEi +uVL +uVL +sqR +lTW +tOM +wwo +rzt +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(204,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +tan +geF +jmG +qPL +vUP +mgz +rAw +rAw +uLj +nmm +rru +nmm +djB +wJd +tPB +mgz +uhA +oUg +oUg +oUg +oUg +oUg +oUg +oUg +oUg +oUg +oUg +oRg +nNS +sPi +sfe +bix +bix +bix +bix +bix +uPl +bww +sPi +bix +bix +mPf +bix +dWn +bix +uPl +kHS +iHB +reZ +qyM +gRA +aZL +mEU +dVu +nSx +hsz +mEU +roQ +gRA +aZL +mEU +cfa +upY +qwH +qNF +efW +jTJ +hcB +sIj +hkA +nZI +scG +iBr +iBr +iBr +rtw +gbf +gbf +tOM +tOM +xpM +mxQ +mxQ +vZe +ydK +jzP +tlj +ekW +rKs +ngg +pYB +bnx +taS +jEa +hPu +ydK +blf +mxQ +mxQ +jLD +tOM +tOM +gbf +nup +gbf +tOM +lDG +gbf +fOT +apu +gbf +oib +nvX +uTA +tOM +gbf +wwo +rzt +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(205,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +kPz +cAW +jmG +uwk +jmG +mgz +xCg +iFP +kiT +nmm +nmm +nmm +nmm +wJd +vUP +mgz +mgz +oUg +oUg +oUg +oUg +oUg +oUg +oUg +oUg +qZc +qGn +oRg +ovq +ovq +ovq +jSZ +ovq +fun +xia +ovq +ovq +ovq +vdN +ovq +vhy +xia +ovq +sZZ +ovq +kvu +ovq +uvn +uFC +qyM +roQ +gRA +aZL +hdR +dVu +nSx +hsz +tad +izZ +oQS +vao +kqC +cYj +qwH +mCF +kqC +jTJ +oaa +sIj +hkA +nZI +nZI +pWc +nZI +nZI +nZI +fWy +dxW +gbf +gbf +gSg +mxQ +qyq +gbf +gbf +gbf +eEC +rKs +saL +qCx +fEY +bzO +gbf +drk +gbf +gbf +gbf +jHj +mxQ +aNz +gbf +gbf +dxW +fWy +gbf +gbf +gbf +gbf +fOT +apu +gbf +buJ +qTW +ydK +tOM +gbf +bzO +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(206,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +uwk +mgz +mgz +mgz +jPM +oBC +jNl +vrp +mTa +bsm +wqY +mgz +mgz +oUg +kSh +wPz +wPz +wPz +wPz +ofq +oUg +qZc +qGn +wTC +kgG +kgG +kgG +gFZ +kgG +kgG +kgG +eRR +cXV +ovq +iKI +kgG +bRA +tMs +sTK +kgG +kgG +uTt +xZV +uvn +ovq +qyM +mEU +roQ +gRA +aZL +mEU +roQ +gRA +aZL +xNJ +gRA +gRA +iBr +iBr +iBr +iBr +iBr +qdf +oaa +sIj +iTE +iSg +iSg +iSg +iSg +iSg +iSg +waQ +pYB +pYB +pYB +ont +eGm +pYB +pYB +pYB +pYB +qCx +pYB +pYB +pYB +pYB +pYB +pYB +pYB +hpX +pYB +pYB +pYB +vuT +uBV +pYB +pYB +pYB +ekx +nvX +nvX +nvX +nvX +pRD +apu +xEi +nMn +icu +ugP +lTW +tOM +wwo +rzt +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(207,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +tan +cAW +cAW +cAW +jmG +mgz +mgz +mgz +mUd +ubQ +okF +fis +lUs +pqz +wqY +mgz +mgz +mPW +cpP +aFK +qGn +qGn +aFK +fnD +oUg +oUg +qob +jGf +jGf +sdV +oUg +oUg +oUg +jKv +tJH +oUg +yfA +imG +peP +oUg +uFd +hzF +aXp +iDA +ggh +acO +xFL +pmC +xFL +gRA +aZL +mEU +cGS +mEU +gRA +gRA +wOG +gRA +cum +gRA +eZW +iBr +iBr +iBr +iBr +iBr +iBr +oaa +sIj +tPC +hEk +hEk +hEk +hEk +hEk +hEk +mkn +pYB +pYB +pYB +aMr +jYV +pYB +pYB +ngg +pYB +pYB +pYB +pYB +pYB +pYB +pYB +pYB +pYB +pYB +pYB +pYB +pYB +qzb +nmM +pYB +pYB +pYB +rsR +ydK +ydK +ydK +ydK +ydK +ekW +gbf +pLM +jWk +eHQ +tOM +gbf +wwo +rzt +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(208,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +eeI +cAW +cAW +cAW +uwk +mgz +xCh +mgz +mUd +hpz +hxM +fHK +iwT +nmm +wqY +pUG +mgz +puE +hTf +qGn +eqQ +eqQ +qGn +pbp +qGn +pbp +qGn +oRg +kHF +uvn +oUg +mNN +wFM +ehr +ovq +lpW +oRg +ovq +uvn +nvi +wMe +jQc +hGW +lFm +nUm +oRg +ovq +lAE +vja +nSx +hsz +mEU +gRA +dJt +izZ +bEX +bEX +bEX +iCU +gRA +gRA +iBr +qdf +iBr +iBr +iBr +iBr +oaa +sIj +lHw +sFr +sFr +nZI +nZI +nZI +gRg +fWy +gbf +dxW +gbf +gSg +mxQ +xcz +gbf +gbf +gbf +ubo +ubo +mxQ +opM +pYB +tWz +duV +lAM +gbf +gbf +gbf +jHj +mxQ +dNc +gbf +dxW +gbf +fWy +gbf +gbf +tOM +gbf +gbf +gbf +gbf +buJ +thV +ydK +tOM +gbf +wwo +rzt +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(209,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +kPz +cAW +cAW +cAW +jmG +mgz +mgz +rAw +kiT +wyU +ujs +nmm +nmm +wJd +vUP +mgz +wef +puE +cJv +eqQ +eqQ +eqQ +eqQ +eqQ +eqQ +eqQ +eqQ +oRg +kHF +uvn +oUg +mju +ovq +cLS +ekS +ePU +oRg +vhy +dkX +nvi +orD +oiX +qgv +aEQ +nUm +uVH +xFL +pmC +xFL +hdR +ntx +kSe +leN +mEU +izZ +fOe +rez +xJn +bEX +cRM +gRA +bhX +iBr +xMO +iDg +urv +avT +gVT +sIj +lHw +nZI +xyw +cOB +iBr +iBr +rtw +gbf +gbf +tOM +tOM +xpM +mxQ +mxQ +fEv +uTw +pYB +pYB +nKf +gbf +pYB +pYB +hWG +qQy +pRD +pRD +khw +htT +mxQ +mxQ +vUZ +tOM +tOM +gbf +nup +gbf +tOM +tOM +tOM +tOM +gbf +lTW +uVL +hUj +dWp +lTW +tOM +wwo +rzt +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(210,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +emC +cAW +cAW +cAW +uwk +mgz +rAw +rAw +vsr +nmm +nmm +cYT +nmm +wJd +lFB +wef +mgz +qrz +puE +lzn +eqQ +jCy +eqQ +eqQ +eqQ +eqQ +eqQ +oRg +kHF +uvn +eUi +bGB +vhy +ovq +pse +ovq +oRg +ovq +uvn +nvi +tPA +lou +fwg +qAe +nUm +oRg +ovq +uvn +uZP +aZL +aZL +mEU +gRA +gRA +izZ +bIR +gWq +xJn +bEX +lbL +xKX +iyc +bhX +iBr +qdf +iDg +iBr +oaa +sIj +hkA +nZI +iBr +fdC +iBr +iBr +myA +gbf +tOM +gbf +tOM +rdt +rsQ +mxQ +lWy +gbf +gbf +jMv +pYB +gbf +pYB +ioW +hXF +pRD +ota +gbf +jzP +pRx +jjg +tlC +kyh +tOM +gbf +tOM +nup +gbf +fvK +qbY +tOM +tOM +gbf +uSX +jWk +nvX +nvX +tOM +gbf +bzO +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(211,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +cAW +jmG +mgz +rAw +rAw +gFN +nmm +nmm +nmm +nmm +wJd +rLG +mgz +pUG +puE +eqQ +qGn +eqQ +eqQ +qGn +qGn +qGn +qGn +qGn +oRg +kHF +uvn +oUg +pBW +jew +vhy +ovq +mNN +wet +ovq +uvn +nvi +mrK +qRS +kHF +kHF +nUm +lBE +sNj +erh +ovq +gRA +ntx +kSe +gRA +gRA +izZ +nyF +tOc +tOc +bgd +gRA +gRA +bhX +mhR +bhX +iBr +dfA +iBr +oaa +sIj +hkA +nZI +qKq +cOB +iBr +aTL +vPF +gbf +tOM +gbf +tOM +tOM +xpM +mxQ +mxQ +tOM +gjr +gbf +fgq +drk +pYB +pYB +gbf +pRD +gbf +gbf +oLX +mxQ +mxQ +vUZ +tOM +tOM +gbf +tOM +nup +gbf +bnx +qbY +rVQ +tOM +gbf +mPg +ydK +lZm +buJ +tOM +gbf +jlU +rzt +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(212,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +cAW +cAW +uwk +mgz +rAw +rAw +srQ +nmm +sUX +nmm +nmm +nEN +tPB +mgz +mgz +mPW +vvM +tet +eyz +qGn +tet +fnD +oUg +oUg +qob +jGf +jGf +sdV +oUg +oUg +oUg +ovq +kbj +oUg +acO +xFL +uVk +oUg +njG +sli +fbX +nxW +oUg +vmL +ovq +uvn +ovq +ovq +aZL +mEU +gRA +fXo +izZ +bEX +mrG +bEX +izZ +oQS +lco +oZx +bhX +ahm +xMO +rSU +iBr +oaa +sIj +hkA +nZI +iBr +iBr +iBr +aco +bzO +bzO +pYB +tOM +gbf +tOM +kTD +rsQ +mxQ +tOM +tOM +gbf +pYB +gbf +pYB +pYB +gbf +fOT +jzP +oLX +wYT +jjg +tlC +jrO +tOM +gbf +tOM +cyR +bzO +bzO +pFW +yfE +uBq +baE +tOM +lTW +lsO +uVL +iRG +lTW +gbf +jlU +rzt +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(213,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bce +kPz +bce +cAW +jmG +mgz +rAw +xCg +xKP +spl +oNx +uuJ +oNx +jWy +vUP +mgz +mgz +jqt +pTU +wPz +wPz +wPz +wPz +jPK +oUg +qZc +qGn +vyw +bix +bix +bix +bix +fKu +tTv +bix +wGX +uPl +ovq +sPi +bix +uZZ +bix +bix +bBr +eds +uPl +ovq +hkB +cOL +ovq +ovq +ovq +oaa +oaa +oaa +kMV +oaa +kMV +oaa +kMV +oaa +tbj +oaa +uKb +evC +wzg +oaa +oaa +sIj +lHw +nZI +xyw +cOB +iBr +ume +bzO +bzO +pYB +eTr +gbf +rsR +tOM +xpM +mxQ +mxQ +mxQ +sHe +pYB +kBt +pYB +pYB +gbf +wdo +nEP +mxQ +jjg +mxQ +vUZ +tOM +oEQ +gbf +tOM +pYB +bzO +bzO +gbf +qbY +rVQ +tOM +gbf +tOM +nvX +jWk +nvX +tOM +eTr +bzO +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(214,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +fiq +cAW +cAW +uwk +mgz +mgz +mgz +mgz +mgz +mgz +mgz +mgz +mgz +mgz +mgz +mgz +oUg +oUg +oUg +oUg +oUg +oUg +oUg +oUg +qZc +qGn +oRg +kHF +kHF +kHF +kHF +kHF +kHF +nVN +ojj +kHF +vTL +kBm +kHF +ojj +kHF +kHF +hcs +kHF +kHF +hcs +kHF +jLC +bix +fKu +bix +iSg +cJS +iSg +fVY +alK +jOd +iSg +jOd +njg +xGr +iSg +tyt +iSg +eQX +iSg +iSg +dBZ +lHw +nZI +iBr +iBr +iBr +dcy +bzO +bzO +mxQ +pYB +tOM +gbf +tOM +rdt +jGC +rsQ +mxQ +mxQ +mxQ +aLz +pYB +pYB +mPn +mxQ +jjg +mxQ +tlC +jGC +kyh +tOM +gbf +tOM +pYB +mxQ +mxQ +mxQ +gbf +gbf +gbf +gbf +tOM +gbf +gbf +tOM +gbf +lNR +gbf +uXK +bzO +bzO +bzO +bzO +bzO +bzO +bzO +bzO +bzO +bzO +bzO +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(215,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +fiq +fiq +tan +jmG +mgz +mgz +mgz +mgz +mgz +vUP +vUP +vUP +vUP +mgz +mgz +mgz +oUg +oUg +oUg +oUg +oUg +oUg +oUg +oUg +oUg +oUg +wTC +kgG +kgG +kgG +kgG +kgG +vyK +kgG +pXJ +kgG +kgG +kgG +kgG +pXJ +kgG +lqN +kgG +kgG +kgG +kgG +kgG +kgG +slR +slR +kgG +iIx +hEk +hEk +nZU +hEk +nZU +irE +nZU +hEk +mqM +hEk +hEk +hEk +hEk +hEk +hEk +hEk +rVi +nZI +xyw +cOB +iBr +brR +vDO +tUs +mxQ +pYB +tOM +gbf +tOM +tOM +tOM +kTD +jGC +rsQ +mxQ +mxQ +rqh +iAr +mxQ +mxQ +tlC +jGC +jrO +tOM +tOM +tOM +gbf +eTr +pYB +mxQ +tUs +vDO +eBS +gbf +gbf +tOM +eTr +gLk +gLk +gLk +gLk +tOM +tOM +pti +bzO +bzO +bzO +bzO +bQM +bzO +bQM +bQM +bQM +bQM +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(216,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +tan +tan +tan +tan +tan +tan +jmG +jmG +uwk +jmG +uwk +jmG +wef +kmL +wef +kmL +jmG +jmG +jmG +vnr +vnr +vnr +vnr +vnr +vnr +vnr +vnr +vnr +vnr +vnr +vnr +vnr +vnr +hxq +hxq +hxq +hxq +hxq +vnr +fjV +jGf +jGf +vNq +oRg +ixl +cCh +qby +ixl +gtP +ixl +ixl +ixl +ixl +uvn +oty +tUD +oty +koK +oaa +sga +oaa +kMV +oaa +jft +oaa +oaa +oaa +oaa +oaa +iEF +rBu +rBu +oaa +iBr +iBr +iBr +iBr +mxQ +tUs +mxQ +mxQ +pYB +tOM +gbf +gbf +rsR +tOM +tOM +rdt +jGC +dOZ +uBV +ont +xcS +jGC +kyh +tOM +tOM +oEQ +gbf +gbf +tOM +pYB +mxQ +mxQ +tUs +bzO +tOM +tOM +gbf +tOM +mxQ +mLP +uap +mmy +jiV +mxQ +iyf +bzO +bzO +hMK +bQM +bQM +bQM +bzO +bQM +bQM +bQM +bQM +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(217,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +fiq +cAW +tan +tan +tan +tst +iPv +roH +lRT +gxn +ijC +ijC +fdu +lRT +cAW +vnr +cAW +cAW +vnr +vnr +vnr +vnr +vnr +vnr +vnr +vnr +vnr +bQM +bQM +bQM +kPz +bQM +bQM +bQM +kPz +xDw +ibl +raC +tIW +dOX +pmn +smR +fgN +bMF +smR +fDJ +fSp +fDJ +vlU +xSz +uYi +lRT +dzl +dzl +dzl +dzl +dzl +dzl +dzl +nie +rSU +iBr +enu +xNU +wkL +vMT +oaa +vMT +xNU +kKs +vMT +ksY +iBr +bnJ +mxQ +cLu +kVk +mxQ +xLD +pYB +tOM +tOM +gbf +gbf +tOM +tOM +tOM +gbf +pYB +pYB +gbf +tOM +tOM +tOM +gbf +gbf +tOM +tOM +pYB +bAf +mxQ +cZr +tUs +bzO +tOM +tOM +vEK +tOM +jjg +ekx +cqV +nvX +nvX +nvX +nvX +nvX +prL +rzt +bQM +bQM +bQM +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(218,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +fiq +cAW +cAW +pcu +nfF +gID +ruD +dde +taY +ann +nGZ +nGZ +uYi +lRT +cAW +vnr +cAW +cAW +vnr +vnr +vnr +vnr +vnr +vnr +vnr +kPz +bQM +bQM +bQM +xDw +xDw +xDw +xDw +xDw +xDw +lRT +pVk +fDJ +hmq +sIJ +qaL +hWk +vKz +dnX +hPO +dnX +qgk +jYt +dnX +tIW +uYi +xDw +cAW +bQM +bTo +pcu +sVv +bQM +rBF +dzl +urv +xMO +gmg +nRQ +qNy +cdp +oaa +gmg +nLS +qpN +pwo +iBr +obE +mxQ +mxQ +tUs +cFX +mxQ +mxQ +mxQ +kag +pYB +eTr +tOM +gbf +gbf +tOM +gbf +pYB +pYB +gbf +tOM +gbf +gbf +tOM +eTr +pYB +pYB +mxQ +iyf +mxQ +eoW +tUs +bzO +bzO +tOM +vEK +tOM +jjg +fOT +gbf +gbf +gIo +wYq +gbf +gbf +xlx +rzt +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(219,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +fiq +fiq +fiq +pcu +fiq +gID +gID +gID +taY +qaL +nGZ +nGZ +uYi +lRT +cAW +vnr +cAW +cAW +vnr +bQM +bQM +vnr +bQM +bQM +bQM +kPz +bQM +bQM +xDw +xDw +sda +qeN +wSD +bHP +vlU +lqI +qaL +gtT +uYi +dOX +onB +mbz +ibl +vKz +rpT +dnX +vKz +raC +bec +uYi +sDS +xDw +dhi +fQV +fyC +qOk +sHO +fQV +erT +dzl +mQV +iBr +vMT +rZN +krE +vMT +wzg +vMT +rZN +krE +vMT +iBr +iBr +ffZ +tUs +tlQ +tUs +tUs +vFn +mxQ +iyf +mxQ +xLD +pYB +tOM +tOM +gbf +gbf +pYB +pYB +gbf +gbf +tOM +tOM +pYB +pYB +mxQ +mxQ +mxQ +tUs +tUs +hpW +tUs +tUs +bzO +tOM +vEK +tOM +jjg +rsR +ydK +ydK +ydK +ydK +ydK +ydK +eyj +rzt +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(220,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +bce +bce +bce +cAW +cAW +hob +pcu +fiq +nfF +nfF +lRT +qaL +cUd +cUd +uYi +lRT +cAW +bce +cAW +cAW +bce +bQM +bQM +kPz +cAW +bQM +bQM +kPz +bQM +xDw +xDw +qeN +wSD +nGZ +nGZ +nGZ +nGZ +lqI +qaL +fDJ +uYi +dOX +nSS +udE +utW +ibl +dnX +dnX +dnX +xEX +mfF +uYi +lOy +lRT +ajx +afk +afk +hkh +afk +afk +iWq +dzl +iBr +iBr +oaa +oaa +oaa +oaa +oaa +oaa +oaa +oaa +oaa +nZI +brR +vDO +tUs +tUs +tUs +tUs +tDE +tUs +tUs +mxQ +mxQ +bzO +gbf +gbf +gbf +fWy +ekx +beB +fWy +gbf +gbf +jHj +bzO +mxQ +mxQ +tUs +tUs +tUs +tUs +tUs +tUs +tUs +vDO +eBS +vEK +tOM +mxQ +lPE +qbR +gcD +mxQ +syV +iyf +bzO +bzO +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(221,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +fiq +cAW +pcu +atp +cAW +lRT +pVk +hjW +hjW +mgE +lRT +cAW +bce +cAW +cAW +bce +bQM +bQM +kPz +cAW +cAW +bQM +kPz +bQM +xDw +ssC +vlU +nGZ +nGZ +wSD +nGZ +kNk +sPh +gTy +ifN +ncb +dOX +kaF +kka +qaL +kqJ +cUd +cUd +tUC +ncb +hXG +uYi +sgJ +xDw +ajx +afk +afk +pcu +afk +afk +iWq +dzl +iBr +iBr +vMT +xNU +kKs +vMT +oaa +vMT +xNU +kKs +vMT +nZI +nZI +mxQ +mxQ +mxQ +mxQ +mxQ +mxQ +mxQ +iyf +mxQ +xRo +bzO +bzO +bzO +iHT +gbf +fOT +apu +gbf +iHT +bzO +bzO +bzO +mxQ +mxQ +iyf +mxQ +bzO +bzO +cZr +eoW +tUs +bzO +tOM +vEK +tOM +mxQ +nQJ +iys +iFZ +bzO +eET +ldW +tyJ +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(222,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +pcu +pcu +rxr +pcu +pcu +fiq +cAW +lRT +qaL +dnX +dnX +uYi +lRT +cAW +bce +cAW +cAW +lRT +xDw +xDw +xDw +xDw +lRT +bQM +kPz +bQM +xDw +nGZ +nGZ +nGZ +vlU +xDw +xDw +xDw +lRT +hir +hir +hir +dOX +eqi +tYt +bxy +cUd +tUC +cUd +guv +cUd +ncb +uYi +qhP +xDw +ajx +afk +afk +hkh +afk +afk +iWq +dzl +ksY +iBr +gmg +nck +ayH +pwo +oaa +gmg +nRQ +vGM +pwo +nZI +nZI +pYB +fWy +xEW +cwM +gbf +cwM +gbf +wkA +tOM +tOM +rzt +bQM +rzt +tOM +gbf +fOT +apu +gbf +aXv +mxQ +cZr +eoW +tUs +tUs +tUs +bzO +bQM +bzO +bzO +bzO +bzO +bzO +tOM +vEK +tOM +mxQ +llE +nfe +bvg +bzO +klt +qFf +tyJ +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(223,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +pcu +cAW +cAW +xDw +qaL +cUd +cUd +uYi +lRT +lRT +lRT +cAW +cAW +lRT +gUu +gUu +gUu +gUu +lRT +bQM +kPz +bQM +xDw +nGZ +ipz +nGZ +xDw +xDw +bQM +bQM +xDw +tZz +jrT +vhd +fDJ +qaL +rrs +cUd +cUd +cUd +pvi +cUd +cUd +cUd +ncb +sXP +xDw +fdV +jlH +tWI +llQ +eOF +jlH +bUB +rBF +lwn +iBr +vMT +rZN +krE +vMT +oaa +vMT +rZN +krE +vMT +nZI +nZI +pYB +nvX +nvX +nvX +nvX +nvX +beB +gbf +tOM +tOM +rzt +kPz +rzt +tOM +gbf +fOT +apu +gbf +ivr +vDO +tUs +tUs +rJZ +uvc +tUs +bzO +bQM +bQM +kPz +bQM +bQM +bzO +tOM +kag +lKI +mxQ +wSb +gPp +tIf +bzO +rzt +rzt +rzt +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(224,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +fiq +cAW +cAW +pcu +cAW +cAW +xDw +qaL +hjW +hjW +uYi +nGZ +gsX +lRT +lRT +lRT +lRT +rFw +nQF +rFw +nQF +lRT +lRT +lRT +lRT +xDw +nGZ +nGZ +nGZ +xDw +bQM +bQM +bQM +lRT +sLu +hva +fUP +fDJ +qaL +fDJ +qLH +udB +fDJ +fDJ +fDJ +rPW +dmQ +nGZ +wBE +xDw +cAW +bQM +bTo +pcu +sVv +bQM +bQM +rBF +iBr +iBr +iBr +iBr +iBr +oaa +oaa +oaa +iBr +nZI +iBr +nZI +nZI +pYB +ydK +ydK +ydK +ydK +kHv +apu +gbf +tOM +tOM +rzt +bQM +rzt +tOM +gbf +fOT +apu +gbf +tOM +mxQ +bzO +bzO +bzO +tUs +bzO +bzO +bQM +bQM +kPz +bQM +bQM +bzO +bzO +iyf +bzO +bzO +bzO +rzt +bzO +bzO +bQM +bQM +bQM +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(225,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +fiq +cAW +cAW +cAW +cAW +cAW +xDw +qaL +dnX +dnX +nCm +tIW +nGZ +nGZ +nGZ +fNN +gsX +nGZ +nGZ +nGZ +nGZ +ntw +ntw +cTD +ntw +lqI +lqI +lqI +gBP +xDw +bQM +bQM +bQM +xDw +dNC +wAt +oJK +fDJ +bSm +cUd +cUd +cUd +cUd +cUd +cUd +cUd +cUd +dZQ +ncb +lRT +xDw +xDw +xDw +xDw +lRT +bQM +omh +lRT +iRa +iRa +iRa +iRa +dOX +bTp +lqI +lqI +fjd +nZI +xXY +nZI +jgz +pYB +fWy +gbf +mPn +gbf +fOT +apu +gbf +tOM +eTr +bzO +rzt +bzO +pFW +gbf +fOT +apu +xEW +tOM +kUo +rzt +kPz +rzt +tUs +rzt +kPz +kPz +kPz +kPz +kPz +kPz +kPz +bzO +tUs +bzO +bQM +bQM +bQM +kPz +bQM +bQM +bQM +bQM +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(226,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +xDw +qaL +vOD +nGZ +nGZ +ibl +tIW +nGZ +ibl +dnX +tIW +nGZ +ibl +dnX +tIW +nGZ +ibl +eEQ +tIW +qaL +nGZ +nGZ +nGZ +lRT +sJN +lRT +lRT +lRT +hir +hir +hir +dOX +iIl +cEb +cEb +cEb +cEb +cEb +cEb +vBZ +dOX +sIJ +dOX +lRT +kyW +dNh +dNh +dNh +xDw +bQM +xAl +xDw +lqC +lqC +lqC +lqC +lqC +lqC +lqC +lqC +fjd +nZI +mdY +nZI +rBF +rzt +rzt +rzt +bzO +gbf +fOT +apu +gbf +xEW +gbf +gbf +gbf +gbf +jMv +gbf +fOT +apu +gbf +bkg +gZg +rzt +bQM +rzt +tUs +rzt +bQM +bQM +bQM +kPz +bQM +bQM +kPz +bzO +tUs +bzO +kPz +kPz +kPz +kPz +bQM +bQM +bQM +bQM +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(227,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +lRT +rbI +nim +lPA +nGZ +qaL +uYi +lqI +qaL +lqI +uYi +lqI +qaL +lqI +uYi +lqI +qaL +lqI +uYi +qaL +nGZ +nGZ +nGZ +nGZ +jiq +nGZ +vzp +nGZ +nGZ +vSW +nGZ +hQR +nGZ +nGZ +nGZ +qaL +uYi +nGZ +nGZ +nGZ +rnn +nGZ +xpw +szP +edY +xeO +dNh +dNh +xDw +bQM +bQM +xDw +lqC +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +lqC +lRT +rBF +rBF +dzl +rBF +bQM +bQM +bQM +bzO +gbf +fOT +nBw +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +pRD +apu +gbf +eTr +iwi +rzt +bQM +rzt +qpB +rzt +bQM +bQM +bQM +kPz +bQM +bQM +kPz +bzO +tUs +bzO +bQM +bQM +bQM +kPz +kPz +kPz +kPz +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(228,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +xDw +xDw +bxy +nim +nGZ +bxy +ncb +nGZ +bxy +cUd +ncb +nGZ +bxy +cUd +ncb +nGZ +bxy +cUd +ncb +qaL +nGZ +nGZ +aHj +nGZ +hjW +hjW +nGZ +wnq +hjW +nGZ +hjW +hQR +vlU +nGZ +nGZ +qaL +uYi +nGZ +hjW +hjW +vlU +hjW +nGZ +ibl +cVu +dnX +xeO +smv +xDw +bQM +bQM +xDw +lqC +lqC +lqC +lqC +lqC +lqC +lqC +lqC +xDw +kPz +kPz +kPz +kPz +kPz +kPz +kPz +bzO +eJt +fOT +jzP +ydK +ydK +ydK +ydK +ydK +ydK +ydK +ydK +ydK +oEQ +gbf +tOM +oZS +rzt +kPz +rzt +tUs +rzt +kPz +kPz +kPz +kPz +kPz +kPz +kPz +bzO +tUs +bzO +bQM +bQM +bQM +kPz +bQM +bQM +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(229,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +xDw +xDw +bxy +cUd +vnM +nGZ +nGZ +nGZ +nGZ +rJW +hSO +hSO +hSO +pkB +hSO +hSO +ign +hSO +qaL +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +mSP +nGZ +nGZ +qaL +uYi +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +qaL +nGZ +fDJ +hbH +nGZ +lRT +xDw +xDw +lRT +bTp +lqI +lqI +lqI +lRT +fjd +lRT +xDw +lRT +kPz +bQM +bQM +bQM +bQM +bQM +kPz +bzO +gbf +fOT +apu +gbf +gbf +gbf +gbf +gbf +gbf +gbf +gbf +gbf +gbf +gbf +tOM +mxQ +bzO +bzO +bzO +tUs +bzO +rzt +rzt +rzt +rzt +rzt +rzt +rzt +bzO +tUs +bzO +bzO +bzO +bzO +bzO +bzO +bzO +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(230,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +xDw +xDw +xDw +xDw +xDw +xDw +lRT +lRT +lRT +taY +taY +taY +taY +lRT +lRT +lRT +lRT +vgC +dnX +dnX +dnX +dnX +dnX +dnX +dnX +dnX +dnX +dnX +dnX +dnX +dnX +dnX +dnX +dnX +dnX +dnX +dnX +dnX +dnX +dnX +dnX +dnX +tIW +fDJ +uYi +xeO +yiT +lqC +lqC +lqC +lqC +nGZ +nGZ +nGZ +lRT +xeO +lRT +bQM +bQM +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bzO +gbf +fOT +apu +gbf +tOM +tOM +aAk +tOM +tOM +tOM +tOM +tOM +tOM +tOM +ivr +vDO +tUs +tUs +tUs +tUs +tUs +tlQ +tUs +tUs +tUs +tlQ +tUs +tUs +tUs +qON +tUs +rzt +bQM +bQM +bQM +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(231,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +vzB +gws +vzB +qaL +nGZ +lqI +eDp +qGe +unp +wKx +eDp +qGe +unp +wKx +eDp +qGe +unp +wKx +eDp +qGe +unp +wKx +eDp +qGe +unp +wKx +eDp +lqI +uYi +cUd +ncb +nGZ +gtg +nGZ +nGZ +nGZ +nGZ +nGZ +vlU +nGZ +lRT +xeO +lRT +kPz +kPz +kPz +kPz +kPz +kPz +kPz +kPz +kPz +bzO +gbf +fOT +apu +kBt +tOM +tOM +tOM +tOM +eTr +tOM +tOM +tOM +vEK +vEK +fTs +mxQ +bzO +rzt +rzt +rzt +bzO +rzt +rzt +rzt +rzt +rzt +rzt +rzt +bzO +tUs +bzO +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(232,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +vzB +gws +vzB +qaL +nGZ +uNs +iOa +cCx +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +cCx +mUA +xeO +xeO +xeO +xeO +xeO +xeO +xeO +cCx +iOa +eLB +uYi +nGZ +nGZ +nGZ +lqC +lqC +lqC +lqC +lqC +lqC +lqC +lqC +lRT +xeO +lRT +bQM +bQM +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bzO +eJt +fOT +apu +gbf +pYB +pYB +pYB +pYB +hZG +pYB +pYB +bzO +rzt +rzt +rzt +bzO +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bzO +rzt +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(233,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +cAW +cAW +cAW +bQM +bQM +dPZ +ogf +ogf +ogf +ogf +tsc +bEk +tsc +dxc +pYD +ehy +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +oGR +uYi +nGZ +ieA +hQh +hQh +hQh +hQh +hQh +hQh +fDJ +fDJ +lRT +lRT +fjd +lRT +lRT +bQM +kPz +bQM +bQM +bQM +bQM +cAW +bzO +bzO +ofA +axx +axx +lbK +bzO +bzO +bzO +bzO +bzO +bzO +bzO +bzO +bQM +bQM +kPz +bQM +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(234,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bmT +bQM +bQM +bQM +bQM +vzB +gws +vzB +qaL +czf +aTe +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +rrD +uYi +hjW +ieA +xeO +bym +uKx +uKx +xew +vem +uGI +uGI +paI +tsc +paI +tsc +bEk +ogf +bEk +ogf +ogf +ogf +ogf +ogf +tsc +kSD +sNQ +aeo +aeo +dPr +cUU +mvF +kkU +kkU +kkU +xDq +naf +naf +cqz +ggd +ogf +mRM +bce +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(235,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bmT +bQM +bQM +bQM +bQM +vzB +gws +vzB +qaL +czf +tgK +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +cfG +uYi +hjW +ieA +xeO +lpl +jVE +vzn +wRP +xeO +hjW +hjW +xeO +vzB +xeO +vzB +kPz +bQM +kPz +bQM +bQM +bQM +bQM +bQM +vzB +ojK +qQl +qQl +rGt +qQl +ojK +vzB +cAW +cAW +bce +xme +ygw +kEy +sDL +bQM +bQM +bmT +bce +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(236,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bmT +bQM +bQM +bQM +bQM +vzB +gws +vzB +qaL +czf +uNs +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +mUA +eLB +uYi +hjW +ieA +xeO +fSz +lIv +lIv +xFP +sov +uGI +uGI +paI +tsc +paI +tsc +bEk +ogf +bEk +ogf +ogf +ogf +ogf +ogf +tsc +vmt +aeo +aeo +aeo +aeo +vmt +mvF +kkU +kkU +kkU +iBP +vcf +vcf +lku +mzT +ogf +fWI +bce +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bzO +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(237,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bmT +bQM +bQM +bQM +bQM +vzB +gws +vzB +qaL +czf +ehy +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +dYp +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +oGR +uYi +nGZ +ieA +xeO +xeO +xeO +xeO +xeO +xeO +hjW +hjW +lRT +tan +fjd +lRT +lRT +bQM +kPz +bQM +bQM +bQM +cAW +scM +scM +scM +qQl +qQl +qQl +ucS +scM +scM +scM +cAW +cAW +bQM +cAW +cAW +cAW +bQM +kPz +kPz +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(238,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bmT +bQM +bQM +bQM +bQM +vzB +gws +vzB +qaL +czf +aTe +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +rrD +uYi +hjW +ieA +xeO +bym +uKx +uKx +xew +vem +uGI +uGI +paI +tsc +paI +tsc +bEk +ogf +xDq +naf +naf +cqz +cQv +ogf +tsc +vmt +aeo +aeo +aeo +aeo +vmt +mvF +kkU +kkU +kkU +ogf +kkU +ogf +ogf +ogf +ogf +mRM +cAW +bce +bce +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bzO +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(239,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +bQM +bQM +bQM +bmT +bQM +bQM +bQM +bQM +vzB +gws +vzB +qaL +czf +tgK +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +cfG +uYi +hjW +ieA +xeO +lpl +jVE +vzn +wRP +xeO +hjW +hjW +xeO +vzB +xeO +vzB +kPz +bQM +xme +ygw +kEy +sDL +bQM +bQM +vzB +pXH +qQl +rGt +qQl +qQl +ojK +vzB +cAW +cAW +bce +bQM +cAW +bQM +bQM +bQM +bQM +bmT +cAW +cAW +bce +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(240,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +bQM +bQM +bQM +bmT +bQM +bQM +bQM +bQM +vzB +gws +vzB +qaL +czf +uNs +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +jKz +uYi +hjW +ieA +xeO +fSz +lIv +lIv +xFP +sov +uGI +uGI +paI +tsc +paI +tsc +bEk +ogf +iBP +vcf +vcf +lku +vev +ogf +tsc +vmt +aeo +aeo +aeo +aeo +vmt +mvF +kkU +kkU +kkU +ogf +kkU +ogf +ogf +ogf +ogf +fWI +cAW +cAW +bce +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(241,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +bQM +bQM +bQM +qmv +ogf +ogf +ogf +ogf +tsc +bEk +tsc +dxc +pqY +ehy +doA +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +kIh +uYi +nGZ +ieA +giX +giX +giX +giX +giX +giX +fDJ +fDJ +scM +scM +xkv +scM +scM +bQM +kPz +bQM +bQM +scM +scM +scM +scM +scM +pFi +qQl +qQl +xte +scM +scM +scM +scM +scM +cAW +cAW +cAW +cAW +bQM +bQM +bQM +kPz +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(242,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +vzB +gws +vzB +qaL +nGZ +aTe +iOa +cCx +xeO +xeO +xeO +xeO +xeO +xeO +xeO +xeO +cCx +xeO +xeO +mUA +xeO +xeO +xeO +xeO +xeO +cCx +iOa +rrD +uYi +nGZ +nGZ +fBD +rFw +joU +rFw +pCG +nGZ +nGZ +nGZ +lnK +bcp +akZ +bcp +scM +xdE +xdE +xdE +xdE +scM +jZk +akZ +lOe +lnK +uFs +hqb +hqb +nuX +lnK +vJL +eZi +qKx +scM +scM +cAW +cAW +cAW +bQM +cAW +bQM +bQM +bQM +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(243,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +vzB +gws +vzB +qaL +nGZ +lqI +laz +dDI +vrA +hTh +laz +dDI +vrA +hTh +laz +dDI +vrA +hTh +laz +dDI +vrA +hTh +laz +dDI +vrA +hTh +laz +lqI +uYi +dnX +tIW +nGZ +nGZ +kdR +hjW +nGZ +hjW +hjW +nGZ +eVj +sYB +oTP +qQl +ekb +tuA +tuA +tuA +fQa +tuA +ssb +sYB +oTP +qDq +ssb +qQl +qQl +ssb +ekb +epY +hrl +jBv +ekb +xdE +cAW +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(244,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +lRT +lRT +lRT +rbI +cUd +cUd +cUd +cUd +cUd +cUd +cUd +cUd +cUd +cUd +cUd +cUd +cUd +ipV +cUd +cUd +cUd +cUd +cUd +cUd +cUd +cUd +cUd +cUd +ncb +fDJ +uYi +dnX +dnX +dnX +dnX +dnX +dnX +dnX +dnX +qes +rRo +sYB +oTP +ssb +sYB +sYB +eot +eot +eot +sYB +oTP +hZi +ekb +qQl +sYB +xmV +qQl +ekb +sYB +eot +nMg +ssb +xdE +bce +bce +cAW +bQM +bce +kPz +bQM +bQM +kPz +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(245,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +lRT +lRT +lRT +jiq +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +nGZ +qaL +fDJ +fDJ +uYi +cUd +cUd +cUd +cUd +cUd +cUd +cUd +cUd +jYU +rRo +aic +ckr +ssb +aic +aic +xZA +xZA +xZA +aic +ckr +hZi +ekb +qQl +aic +ckr +qQl +ekb +aic +xZA +ckr +ssb +xdE +cAW +bce +bce +bQM +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(246,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +lRT +nGZ +nGZ +hjW +hjW +nGZ +oyk +wzK +wbL +rSN +mGN +prG +cpv +sjd +cEb +nFJ +cEb +cEb +hjC +iUO +iUO +iUO +iUO +iUO +wzT +bxy +cUd +cUd +ncb +nGZ +nGZ +hjW +hjW +nGZ +hjW +hjW +nGZ +fWs +aic +ckr +qQl +ekb +csL +csL +csL +csL +csL +sZt +aic +ckr +ekb +ssb +qQl +qQl +ssb +ekb +epY +hrl +jBv +ekb +xdE +cAW +cAW +bce +kPz +kPz +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(247,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +lRT +nGZ +nGZ +hjW +hjW +nGZ +vwx +xeO +xeO +xeO +mUA +xeO +xeO +mUA +xeO +xeO +xeO +xeO +mUA +xeO +xeO +xfb +yat +xeO +eXY +nGZ +nGZ +rJW +nGZ +nGZ +rJW +nGZ +nGZ +rJW +nGZ +nGZ +tpw +lnK +mVn +gHo +nwS +scM +xdE +xdE +xdE +xdE +scM +scM +bcp +bcp +ekb +ekb +ekb +ekb +ekb +lnK +vJL +ssb +qKx +scM +scM +bce +bce +bce +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(248,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +lRT +lRT +ntZ +nGZ +nGZ +nGZ +vwx +bym +uKx +uKx +rcl +rcl +paI +paI +paI +dRx +xeO +sTd +xeO +mUA +xeO +cAU +uyp +xeO +vUf +nGZ +lRT +lRT +atl +aZD +lRT +atl +aZD +lRT +atl +aZD +lRT +scM +scM +scM +scM +scM +bQM +bTo +pcu +iWq +bQM +scM +aOC +dKB +gmp +csL +csL +csL +uLq +scM +scM +scM +scM +scM +bQM +cAW +bce +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(249,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +lRT +lRT +lRT +lRT +hTo +vwx +lpl +jVE +vzn +laJ +xeO +xeO +mUA +xeO +fxa +bHv +ylu +xeO +xeO +xeO +mQB +aTE +xeO +aRv +nGZ +lRT +lRT +xDw +xDw +lRT +xDw +xDw +lRT +xDw +xDw +lRT +bQM +bQM +bQM +bQM +bQM +bQM +bTo +pcu +iWq +bQM +scM +eNv +lFM +scM +xdE +xdE +xdE +xdE +scM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(250,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +xDw +oEN +vwx +fSz +lIv +lIv +xFP +sov +paI +paI +paI +eeH +dFM +sov +xeO +xeO +xeO +fCW +myf +xeO +tOP +nGZ +xDw +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bTo +pcu +iWq +bQM +scM +xdE +xdE +scM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +cAW +cAW +cAW +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(251,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +lRT +lRT +piw +tFA +tFA +tFA +tFA +tFA +uiV +tFA +tFA +tFA +tFA +tFA +tFA +jmr +tFA +tFA +tFA +tFA +nnG +lRT +lRT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +swg +fQV +fQV +fyC +qOk +mKS +fyC +qOk +mKS +fQV +fQV +erT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(252,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +lRT +lRT +xDw +xDw +xDw +xDw +lRT +lRT +xDw +xDw +xDw +xDw +xDw +lRT +lRT +xDw +xDw +xDw +xDw +lRT +lRT +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bTo +afk +afk +afk +hkh +afk +afk +hkh +afk +afk +afk +iWq +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(253,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bTo +afk +afk +afk +pcu +afk +afk +pcu +afk +afk +afk +iWq +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(254,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bTo +afk +afk +afk +hkh +afk +afk +hkh +afk +afk +afk +iWq +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} +(255,1,1) = {" +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +aKA +jlH +jlH +tWI +llQ +jKI +tWI +llQ +jKI +jlH +jlH +bUB +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +bQM +"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/.gitkeep b/maps/map_files/FOP_v3_Sciannex/sprinkles/.gitkeep new file mode 100644 index 000000000000..8b137891791f --- /dev/null +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/.gitkeep @@ -0,0 +1 @@ + diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/10.podholder.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/10.podholder.dmm new file mode 100644 index 000000000000..916fe313fb33 --- /dev/null +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/10.podholder.dmm @@ -0,0 +1,175 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1; + name = "\improper ambulance pod hatch" + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"b" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy25" + }, +/area/template_noop) +"e" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy27" + }, +/area/template_noop) +"g" = ( +/obj/structure/blocker/invisible_wall, +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/area/template_noop) +"h" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1" + }, +/area/template_noop) +"l" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/filtration/console{ + pixel_y = 22; + can_block_movement = 0 + }, +/obj/item/trash/used_stasis_bag, +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/plating/prison, +/area/template_noop) +"n" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer{ + icon_state = "security_det"; + name = "Shuttle control deck"; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/item/ashtray/plastic{ + pixel_x = 8; + pixel_y = -7 + }, +/obj/item/clothing/mask/cigarette/cigar{ + desc = "Manufactured in New Space Cuba, a product of Castro LTD."; + name = "comically large cigar"; + pixel_x = 14; + pixel_y = 1 + }, +/obj/item/tool/weldingtool{ + pixel_x = -12; + pixel_y = 6 + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"o" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8; + pixel_x = 7 + }, +/turf/closed/shuttle/ert{ + icon_state = "wy4" + }, +/area/template_noop) +"w" = ( +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/structure/barricade/metal/wired, +/turf/open/floor/plating/prison, +/area/template_noop) +"y" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy_rightengine" + }, +/area/template_noop) +"F" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy_leftengine" + }, +/area/template_noop) +"H" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy2" + }, +/area/template_noop) +"K" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/template_noop) +"P" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy20" + }, +/area/template_noop) +"T" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer_hull, +/area/template_noop) +"V" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/prison, +/area/template_noop) +"Z" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4; + pixel_x = -7 + }, +/turf/closed/shuttle/ert{ + icon_state = "wy5" + }, +/area/template_noop) + +(1,1,1) = {" +P +o +o +F +h +"} +(2,1,1) = {" +e +n +V +H +K +"} +(3,1,1) = {" +e +l +w +a +T +"} +(4,1,1) = {" +b +Z +Z +y +g +"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm new file mode 100644 index 000000000000..391adb456400 --- /dev/null +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm @@ -0,0 +1,977 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aE" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/template_noop) +"aN" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" + }, +/area/template_noop) +"aW" = ( +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"bh" = ( +/turf/closed/wall/strata_ice/jungle{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + name = "synthetic vegetation" + }, +/area/template_noop) +"bw" = ( +/obj/structure/machinery/filtration/console{ + pixel_y = 22 + }, +/turf/open/floor/almayer, +/area/template_noop) +"bC" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/almayer/plate, +/area/template_noop) +"eF" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/template_noop) +"fE" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"fI" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 8; + pixel_x = -9 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = -3; + pixel_x = -9 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 8; + pixel_x = 8 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = -3; + pixel_x = 7 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 7; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/template_noop) +"fN" = ( +/obj/structure/largecrate/random/barrel{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/structure/largecrate/random/barrel{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/structure/largecrate/random/barrel{ + pixel_x = -18; + pixel_y = -1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/template_noop) +"ga" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/template_noop) +"gi" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/prison, +/area/template_noop) +"hP" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"iT" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/item/tool/pen/blue{ + pixel_x = -15; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/template_noop) +"iU" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/template_noop) +"jZ" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/area/template_noop) +"kA" = ( +/obj/structure/bed/chair/dropship/pilot, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer/plate, +/area/template_noop) +"kO" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/structure/largecrate/supply/weapons/pistols, +/turf/open/floor/almayer/plate, +/area/template_noop) +"kR" = ( +/obj/structure/machinery/light/small{ + dir = 4; + pixel_x = 11; + pixel_y = 10 + }, +/obj/structure/sign/poster/safety{ + pixel_y = 29; + pixel_x = 5 + }, +/turf/open/floor/almayer/plate, +/area/template_noop) +"lI" = ( +/obj/structure/largecrate/random/barrel{ + pixel_y = 12; + layer = 3.1; + pixel_x = -6 + }, +/obj/structure/largecrate/random/barrel{ + layer = 3.1; + pixel_x = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/template_noop) +"mz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/under/marine/veteran/mercenary/support{ + layer = 2.9; + pixel_y = 6 + }, +/obj/item/clothing/head/helmet/marine/veteran/mercenary/support/engineer{ + pixel_y = 8; + armor_bio = 25; + armor_bomb = 10; + armor_bullet = 20; + armor_energy = 0; + armor_internaldamage = 20; + armor_melee = 20; + armor_rad = 10; + desc = "A sturdy helmet worn by an unknown mercenary group. Features a toggleable welding screen for eye protection. This one has seen better days, don't count on the protection you've heard from the rumors!" + }, +/obj/item/clothing/suit/storage/marine/veteran/mercenary/support{ + pixel_y = -4; + armor_bio = 25; + armor_bullet = 20; + armor_energy = 0; + armor_internaldamage = 25; + armor_melee = 25; + armor_rad = 15; + desc = "A set of blue armor with yellow highlights built for protection while building or carrying out medical treatment in highly dangerous environments. It is a specialized uniform of an unknown mercenary group working in the sector. This one has seen better days, don't count on the protection you've heard from the rumors!" + }, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/template_noop) +"nF" = ( +/turf/closed/shuttle/ert, +/area/template_noop) +"nV" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer, +/area/template_noop) +"od" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/plating_catwalk, +/area/template_noop) +"oh" = ( +/turf/open/floor/plating/prison, +/area/template_noop) +"om" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/structure/largecrate/black_market/secured_wildlife, +/turf/open/floor/almayer, +/area/template_noop) +"oH" = ( +/turf/open/floor/plating/plating_catwalk, +/area/template_noop) +"pw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/template_noop) +"pV" = ( +/obj/structure/machinery/light/small{ + dir = 4; + pixel_x = 11; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/template_noop) +"qn" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/template_noop) +"qI" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan22" + }, +/area/template_noop) +"rv" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/almayer, +/area/template_noop) +"rK" = ( +/obj/structure/largecrate/random/barrel{ + pixel_x = -6; + pixel_y = 21 + }, +/obj/structure/largecrate/random/barrel{ + pixel_x = 12; + pixel_y = 17 + }, +/obj/structure/largecrate/random/barrel{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/floor/almayer/plate, +/area/template_noop) +"tp" = ( +/turf/open/floor/almayer, +/area/template_noop) +"tD" = ( +/obj/structure/lattice, +/turf/open/space, +/area/template_noop) +"tZ" = ( +/obj/item/tool/extinguisher/mini{ + pixel_x = 14; + pixel_y = -14 + }, +/turf/open/floor/almayer, +/area/template_noop) +"vI" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/almayer/plate, +/area/template_noop) +"wO" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_leftengine" + }, +/area/template_noop) +"xR" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan5" + }, +/area/template_noop) +"xS" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_white_t_up" + }, +/area/template_noop) +"xW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/syndicate{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/item/storage/toolbox/syndicate{ + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/template_noop) +"yv" = ( +/obj/structure/sign/poster{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/template_noop) +"BC" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan9" + }, +/area/template_noop) +"Cc" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/sentry/premade/dumb{ + pixel_x = -11; + pixel_y = 3 + }, +/obj/item/ammo_magazine/sentry/premade/dumb{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/template_noop) +"CG" = ( +/obj/structure/sign/poster/clf{ + pixel_y = 30; + pixel_x = -2 + }, +/turf/open/floor/almayer, +/area/template_noop) +"CM" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 + }, +/area/template_noop) +"DS" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan27" + }, +/area/template_noop) +"EF" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/organic/grass/astroturf, +/area/template_noop) +"EW" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 + }, +/area/template_noop) +"Fd" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/template_noop) +"FV" = ( +/turf/open/organic/grass/astroturf, +/area/template_noop) +"Gu" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"Hb" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/almayer, +/area/template_noop) +"HH" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_l_w" + }, +/area/template_noop) +"Ia" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan8" + }, +/area/template_noop) +"Iu" = ( +/obj/structure/sign/safety/bulkhead_door, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/template_noop) +"Jg" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan1" + }, +/area/template_noop) +"Jv" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/structure/barricade/plasteel/wired{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/template_noop) +"JA" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/plating_catwalk/prison, +/area/template_noop) +"JE" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; + icon_state = "fullgrass_2"; + name = "Fiberbush(tm) tubers" + }, +/turf/open/organic/grass/astroturf, +/area/template_noop) +"JP" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/template_noop) +"Ki" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/plating_catwalk, +/area/template_noop) +"Ks" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/item/clothing/head/soft/ferret{ + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/template_noop) +"Ky" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/effect/landmark/wo_supplies/guns/common/m41a, +/turf/open/floor/almayer, +/area/template_noop) +"KC" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/template_noop) +"KG" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan2" + }, +/area/template_noop) +"Ld" = ( +/turf/open/space, +/area/template_noop) +"Lz" = ( +/obj/structure/prop/invuln/fire{ + pixel_y = -15 + }, +/turf/closed/shuttle/ert{ + icon_state = "stan22" + }, +/area/template_noop) +"LG" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan23" + }, +/area/template_noop) +"Nm" = ( +/obj/structure/prop/invuln/fire{ + pixel_y = -15 + }, +/turf/closed/shuttle/ert{ + icon_state = "stan23" + }, +/area/template_noop) +"NV" = ( +/turf/closed/wall/mineral/bone_resin, +/area/template_noop) +"Ok" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/adv, +/obj/item/device/healthanalyzer{ + pixel_y = -9 + }, +/turf/open/floor/almayer/plate, +/area/template_noop) +"ON" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_1" + }, +/area/template_noop) +"OP" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -22; + pixel_y = -2 + }, +/obj/structure/barricade/metal/wired, +/turf/open/floor/plating/plating_catwalk, +/area/template_noop) +"QZ" = ( +/turf/open/floor/almayer/plate, +/area/template_noop) +"Sh" = ( +/obj/structure/machinery/light/small{ + dir = 4; + pixel_x = 11; + pixel_y = 10 + }, +/obj/structure/surface/rack, +/obj/item/tank/oxygen, +/turf/open/floor/plating/plating_catwalk, +/area/template_noop) +"ST" = ( +/obj/structure/surface/table/reinforced/prison{ + icon_state = "prisonflip2"; + dir = 4 + }, +/turf/open/floor/almayer, +/area/template_noop) +"TS" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/almayer/plating/northeast, +/area/template_noop) +"Uh" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan3" + }, +/area/template_noop) +"UJ" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_2" + }, +/area/template_noop) +"UQ" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_right" + }, +/area/template_noop) +"Vg" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/template_noop) +"Vh" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/template_noop) +"VB" = ( +/obj/structure/machinery/light/small, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/template_noop) +"VD" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/item/toy/katana, +/obj/structure/sign/poster/pinup{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/template_noop) +"VW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer{ + icon_state = "security_det"; + name = "Shuttle control deck"; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/item/coin/uranium{ + desc = "You found one of the three uranium coins. It is entirely worthless." + }, +/obj/item/storage/fancy/cigar/tarbacks{ + pixel_x = -11 + }, +/obj/structure/prop/invuln/fire{ + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/template_noop) +"Wd" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_3"; + opacity = 0 + }, +/area/template_noop) +"Wt" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_rightengine" + }, +/area/template_noop) +"WN" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan25" + }, +/area/template_noop) +"Xf" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_s_w" + }, +/area/template_noop) +"Xm" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/prison, +/area/template_noop) +"Yj" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_r_w" + }, +/area/template_noop) +"YV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 25 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = -11 + }, +/turf/open/floor/plating/plating_catwalk, +/area/template_noop) + +(1,1,1) = {" +NV +Ld +Ld +Ld +NV +NV +tD +Ld +aN +nF +nF +Yj +nF +nF +Jg +Ld +Ld +Ld +Ld +Ld +Ld +"} +(2,1,1) = {" +NV +NV +Ld +Ld +NV +NV +tD +Ld +DS +aE +Cc +ON +rK +fI +KG +Ld +Ld +Ld +Ld +Ld +Ld +"} +(3,1,1) = {" +NV +NV +Ld +NV +NV +NV +NV +Ld +DS +Ki +tp +JP +fN +lI +UQ +nF +Jg +Ld +Ld +Ld +Ld +"} +(4,1,1) = {" +NV +NV +NV +NV +aN +nF +nF +Yj +qI +od +bC +xS +UJ +UJ +Xf +om +Ia +Jg +Ld +Ld +Ld +"} +(5,1,1) = {" +NV +NV +NV +aN +qI +Ok +eF +ON +kO +QZ +tp +ON +qn +Ks +ON +ga +Fd +Ia +wO +EW +CM +"} +(6,1,1) = {" +NV +NV +aN +qI +kA +pw +oH +ON +yv +oH +QZ +KC +oH +oH +KC +oH +QZ +BC +Wt +Wd +jZ +"} +(7,1,1) = {" +aN +nF +Lz +bw +oH +tp +tp +ON +QZ +xW +nV +ON +VD +Ky +ON +tp +QZ +KG +NV +NV +Ld +"} +(8,1,1) = {" +DS +VW +rv +tZ +oH +oH +QZ +ON +YV +mz +QZ +xS +UJ +UJ +qI +CG +VB +KG +NV +NV +NV +"} +(9,1,1) = {" +WN +xR +Nm +bw +QZ +tp +tp +KC +Vg +ST +OP +JP +tp +tp +Hb +Jv +Vg +KG +NV +NV +NV +"} +(10,1,1) = {" +NV +NV +WN +LG +kR +oH +oH +ON +iT +pV +Vg +ON +Sh +oH +oH +oH +oH +Ia +wO +EW +CM +"} +(11,1,1) = {" +NV +NV +NV +WN +LG +vI +BC +HH +TS +xR +TS +HH +LG +QZ +Vg +Vg +QZ +BC +Wt +Wd +jZ +"} +(12,1,1) = {" +bh +NV +NV +NV +WN +xR +Uh +hP +iU +aW +iU +hP +WN +xR +TS +TS +xR +Uh +NV +NV +NV +"} +(13,1,1) = {" +bh +NV +NV +NV +NV +NV +Gu +hP +JA +aW +iU +hP +Gu +oh +oh +oh +oh +Gu +NV +NV +NV +"} +(14,1,1) = {" +JE +NV +FV +EF +FV +aW +aW +Iu +fE +Vh +fE +Iu +Xm +oh +oh +gi +oh +oh +oh +bh +bh +"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm new file mode 100644 index 000000000000..4013f2605422 --- /dev/null +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm @@ -0,0 +1,211 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"b" = ( +/obj/item/reagent_container/food/drinks/bottle/gin{ + pixel_y = -6; + pixel_x = -9 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"e" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/obj/item/clothing/head/cakehat{ + pixel_x = -10 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"h" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/bottle/pwine{ + pixel_y = 15; + pixel_x = 6 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = -1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"i" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"o" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"s" = ( +/obj/item/weapon/broken_bottle{ + pixel_x = 5; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"u" = ( +/turf/closed/wall/prison, +/area/template_noop) +"A" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"B" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"C" = ( +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"E" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/trash/plate{ + pixel_y = 14; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"G" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"H" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"K" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1; + pixel_x = 10; + pixel_y = 16 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"L" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/sliceable/birthdaycake{ + pixel_y = 23; + pixel_x = 15 + }, +/obj/item/trash/plate{ + pixel_y = 2; + pixel_x = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"N" = ( +/obj/item/stack/sheet/wood{ + amount = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"P" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"U" = ( +/obj/structure/prop/souto_land/pole{ + pixel_x = 16; + pixel_y = 17 + }, +/obj/structure/sign/banners/happybirthdaysteve{ + pixel_x = 12; + pixel_y = 19 + }, +/obj/item/weapon/broken_bottle{ + pixel_x = 8; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"Y" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"Z" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) + +(1,1,1) = {" +u +o +Z +Z +Y +u +"} +(2,1,1) = {" +i +U +H +e +b +a +"} +(3,1,1) = {" +i +C +h +L +C +a +"} +(4,1,1) = {" +i +K +E +G +C +a +"} +(5,1,1) = {" +i +C +C +C +s +a +"} +(6,1,1) = {" +u +B +P +N +A +u +"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm new file mode 100644 index 000000000000..e569ea379326 --- /dev/null +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm @@ -0,0 +1,287 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/r_wall/prison, +/area/template_noop) +"b" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/template_noop) +"c" = ( +/turf/open/floor/prison, +/area/template_noop) +"d" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/redfull, +/area/template_noop) +"e" = ( +/turf/closed/wall/prison, +/area/template_noop) +"g" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"i" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"k" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/clothing/shoes/galoshes{ + pixel_y = -6 + }, +/turf/open/floor/prison/redfull, +/area/template_noop) +"l" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/clothing/shoes/dress/commander{ + pixel_y = -9 + }, +/turf/open/floor/prison/redfull, +/area/template_noop) +"m" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/box/flashbangs, +/turf/open/floor/prison/redfull, +/area/template_noop) +"n" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"r" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/redfull, +/area/template_noop) +"s" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/prison, +/area/template_noop) +"t" = ( +/obj/structure/window/reinforced, +/turf/open/floor/prison, +/area/template_noop) +"u" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/clothing/accessory/storage/holster, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/prison/redfull, +/area/template_noop) +"v" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison, +/area/template_noop) +"w" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"x" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison, +/area/template_noop) +"y" = ( +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"z" = ( +/obj/item/clothing/shoes/black{ + pixel_x = -1; + pixel_y = -17 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison, +/area/template_noop) +"B" = ( +/obj/item/tool/kitchen/knife{ + pixel_x = -7; + pixel_y = -15 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"C" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/template_noop) +"D" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison, +/area/template_noop) +"E" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/prison, +/area/template_noop) +"F" = ( +/obj/item/prop/helmetgarb/riot_shield, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"I" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/effect/spawner/random/gun/pistol/lowchance, +/turf/open/floor/prison/redfull, +/area/template_noop) +"J" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/prison, +/area/template_noop) +"K" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"L" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/prison, +/area/template_noop) +"R" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison, +/area/template_noop) +"S" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + pixel_y = 9 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/template_noop) +"U" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"V" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/template_noop) +"W" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/clothing/shoes/black{ + pixel_x = 2; + pixel_y = -9 + }, +/turf/open/floor/prison/redfull, +/area/template_noop) +"X" = ( +/obj/item/frame/rack, +/turf/open/floor/prison/redfull, +/area/template_noop) +"Z" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison, +/area/template_noop) + +(1,1,1) = {" +s +S +a +a +R +a +a +C +"} +(2,1,1) = {" +a +a +a +I +d +k +a +a +"} +(3,1,1) = {" +n +K +y +B +y +y +X +a +"} +(4,1,1) = {" +D +z +I +d +r +c +X +a +"} +(5,1,1) = {" +Z +b +J +E +I +v +X +a +"} +(6,1,1) = {" +L +L +V +t +l +c +a +e +"} +(7,1,1) = {" +w +U +i +v +x +v +i +y +"} +(8,1,1) = {" +g +F +V +d +W +I +a +u +"} +(9,1,1) = {" +V +V +V +a +V +V +a +m +"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm new file mode 100644 index 000000000000..6743dfbef7ec --- /dev/null +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm @@ -0,0 +1,210 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/template_noop) +"b" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/weapon/telebaton, +/turf/open/floor/wood, +/area/template_noop) +"c" = ( +/turf/open/floor/carpet, +/area/template_noop) +"d" = ( +/obj/effect/decal/hefa_cult_decals/d96, +/obj/item/device/flashlight/lamp/candelabra, +/turf/open/floor/carpet, +/area/template_noop) +"e" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/faxmachine, +/turf/open/floor/wood, +/area/template_noop) +"j" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/carpet, +/area/template_noop) +"s" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/template_noop) +"t" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/box/matches{ + pixel_x = -6 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/template_noop) +"w" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/device/flashlight/lamp/candelabra, +/turf/open/floor/carpet, +/area/template_noop) +"x" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/template_noop) +"y" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/carpet, +/area/template_noop) +"A" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/template_noop) +"E" = ( +/turf/open/floor/wood, +/area/template_noop) +"K" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/template_noop) +"L" = ( +/obj/structure/lattice, +/turf/open/space, +/area/template_noop) +"O" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/floor/carpet, +/area/template_noop) +"R" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/weapon/unathiknife{ + name = "ceremonial knife"; + pixel_x = 7; + pixel_y = -2 + }, +/obj/item/organ/heart{ + pixel_x = -5 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/template_noop) +"S" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/wood, +/area/template_noop) +"T" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/obj/item/clothing/head/helmet/warden{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/template_noop) +"U" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/weapon/gun/pistol/highpower/tactical, +/turf/open/floor/plating, +/area/template_noop) +"W" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2; + name = "Warden's Office"; + req_access = null + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"Z" = ( +/obj/item/device/flashlight/lamp/candelabra, +/turf/open/floor/carpet, +/area/template_noop) + +(1,1,1) = {" +L +a +a +a +a +a +L +"} +(2,1,1) = {" +a +a +S +E +E +x +x +"} +(3,1,1) = {" +a +E +c +R +c +E +x +"} +(4,1,1) = {" +W +c +w +c +d +b +x +"} +(5,1,1) = {" +W +y +c +T +O +s +x +"} +(6,1,1) = {" +W +c +Z +j +Z +K +x +"} +(7,1,1) = {" +a +E +c +c +A +E +x +"} +(8,1,1) = {" +a +a +U +e +t +x +x +"} +(9,1,1) = {" +L +a +x +x +x +x +L +"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm new file mode 100644 index 000000000000..eb7b53bac0de --- /dev/null +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm @@ -0,0 +1,584 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ah" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkpurple2/northeast, +/area/template_noop) +"aA" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison, +/area/template_noop) +"da" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/template_noop) +"dv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/prison, +/area/template_noop) +"fi" = ( +/turf/open/floor/prison/darkpurple2, +/area/template_noop) +"gB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4; + icon_state = "commb"; + layer = 4 + }, +/obj/item/reagent_container/food/drinks/cans/boda{ + pixel_y = 9; + pixel_x = 9 + }, +/turf/open/floor/prison, +/area/template_noop) +"hT" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkpurple2/north, +/area/template_noop) +"jh" = ( +/obj/item/trash/pistachios, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"ji" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4; + icon_state = "commb" + }, +/obj/item/holder/mouse{ + pixel_x = 4; + pixel_y = 18; + desc = "Wait, why won't it work with my computer?" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"kU" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/plating/prison, +/area/template_noop) +"lm" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"mN" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"na" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison, +/area/template_noop) +"np" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4; + icon_state = "commb"; + layer = 4 + }, +/obj/item/reagent_container/food/drinks/cans/dr_gibb{ + pixel_y = 10 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/template_noop) +"nZ" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"pq" = ( +/obj/structure/prop/dam/crane, +/turf/open/floor/prison/floor_marked/west, +/area/template_noop) +"sl" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/template_noop) +"sF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 8; + icon_state = "commb" + }, +/obj/item/device/encryptionkey/WY{ + pixel_x = 4; + pixel_y = -8 + }, +/turf/open/floor/prison/floor_marked/west, +/area/template_noop) +"tg" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"tn" = ( +/turf/open/floor/prison/floor_marked/west, +/area/template_noop) +"tH" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/template_noop) +"uf" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_marked/west, +/area/template_noop) +"ur" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"uD" = ( +/obj/item/trash/wy_chips_pepper, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"uO" = ( +/obj/item/stock_parts/manipulator/pico, +/turf/open/floor/prison/darkpurple2, +/area/template_noop) +"va" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/darkpurple2/east, +/area/template_noop) +"wj" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkpurple2/northwest, +/area/template_noop) +"xH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"yS" = ( +/turf/closed/wall/prison, +/area/template_noop) +"zv" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"zL" = ( +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"CE" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/darkpurple2/southwest, +/area/template_noop) +"CO" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/template_noop) +"CV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 8; + icon_state = "commb" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"DF" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/prison/darkpurple2, +/area/template_noop) +"DV" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"El" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison, +/area/template_noop) +"Ep" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"Fp" = ( +/turf/open/floor/prison, +/area/template_noop) +"Ft" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"Jv" = ( +/obj/item/trash/chunk, +/turf/open/floor/prison/floor_marked/west, +/area/template_noop) +"Kd" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"Mn" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"MZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 8; + icon_state = "commb"; + layer = 2.99 + }, +/turf/open/floor/prison/darkpurple2/southwest, +/area/template_noop) +"Ng" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/darkpurple2/southeast, +/area/template_noop) +"Ot" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4; + icon_state = "commb" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"Oy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/chips, +/turf/open/floor/prison/darkpurple2/northeast, +/area/template_noop) +"OG" = ( +/turf/closed/wall/mineral/bone_resin, +/area/template_noop) +"OH" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison, +/area/template_noop) +"Qw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/obj/item/holder/mouse{ + pixel_x = 12; + pixel_y = 12; + desc = "Wait, why won't it work with my computer?" + }, +/turf/open/floor/prison, +/area/template_noop) +"QB" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"QF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"QG" = ( +/turf/open/floor/prison/darkpurple2/northeast, +/area/template_noop) +"Rd" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/darkpurple2/west, +/area/template_noop) +"RW" = ( +/turf/open/floor/bluegrid, +/area/template_noop) +"Ss" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/template_noop) +"SF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 8; + icon_state = "commb"; + layer = 4 + }, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"Tl" = ( +/obj/structure/computer3frame, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"TI" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"Vc" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"VZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 8; + icon_state = "commb" + }, +/obj/item/reagent_container/food/drinks/cans/classcola{ + pixel_x = -10; + pixel_y = 17 + }, +/turf/open/floor/prison, +/area/template_noop) +"Wu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4; + icon_state = "commb" + }, +/turf/open/floor/prison/darkpurple2/southeast, +/area/template_noop) +"WV" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/template_noop) +"XD" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/darkpurple2, +/area/template_noop) +"Yj" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/darkpurple2, +/area/template_noop) +"Za" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/golden_cup{ + pixel_y = 11 + }, +/turf/open/floor/prison, +/area/template_noop) +"Zj" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"Zn" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/cell_stripe/east, +/area/template_noop) + +(1,1,1) = {" +da +yS +yS +yS +Kd +kU +nZ +kU +Kd +yS +yS +yS +yS +"} +(2,1,1) = {" +yS +mN +lm +jh +lm +lm +lm +lm +zL +zL +Mn +ur +QF +"} +(3,1,1) = {" +yS +Vc +Fp +lm +va +Ft +El +xH +uf +tn +lm +tn +pq +"} +(4,1,1) = {" +yS +Tl +lm +wj +VZ +MZ +SF +CV +sF +Jv +lm +tn +tn +"} +(5,1,1) = {" +yS +lm +fi +Za +RW +RW +RW +RW +RW +WV +lm +WV +Zn +"} +(6,1,1) = {" +yS +tg +Yj +Qw +RW +RW +RW +RW +RW +Ss +Fp +CO +CE +"} +(7,1,1) = {" +kU +lm +DF +dv +RW +RW +RW +RW +RW +fi +Fp +tH +XD +"} +(8,1,1) = {" +Kd +lm +uO +na +RW +RW +RW +RW +RW +fi +aA +tH +XD +"} +(9,1,1) = {" +Kd +lm +lm +Oy +gB +Wu +ji +Ot +np +fi +Fp +hT +XD +"} +(10,1,1) = {" +yS +QB +Fp +lm +Rd +TI +OH +zv +ah +sl +OG +QG +Ng +"} +(11,1,1) = {" +yS +Zj +tg +lm +lm +DV +lm +uD +OG +OG +OG +OG +OG +"} +(12,1,1) = {" +da +da +Ep +Ep +Ep +yS +da +OG +OG +OG +OG +OG +OG +"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm new file mode 100644 index 000000000000..ce8071106172 --- /dev/null +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm @@ -0,0 +1,1791 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aj" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/template_noop) +"az" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/wood, +/area/template_noop) +"bD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/template_noop) +"bO" = ( +/obj/item/storage/belt/marine/quackers, +/turf/open/gm/river/pool, +/area/template_noop) +"cb" = ( +/obj/item/trash/barcardine{ + pixel_y = -9; + pixel_x = -15 + }, +/turf/open/floor/wood, +/area/template_noop) +"ci" = ( +/obj/item/toy/gun, +/turf/open/floor/wood, +/area/template_noop) +"cj" = ( +/obj/item/trash/crushed_cup{ + pixel_y = -7; + pixel_x = -1 + }, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"cq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/cueball{ + pixel_x = 32; + pixel_y = -2 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tuxedo{ + pixel_x = -9; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/template_noop) +"cK" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"cU" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/wood, +/area/template_noop) +"dB" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/template_noop) +"ef" = ( +/obj/item/toy/beach_ball, +/turf/open/gm/river/pool, +/area/template_noop) +"el" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) +"fv" = ( +/obj/item/toy/crossbow_ammo{ + pixel_x = -16 + }, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/template_noop) +"fL" = ( +/obj/structure/grille, +/obj/item/reagent_container/food/snacks/carpmeat{ + pixel_x = -5; + pixel_y = 13 + }, +/obj/item/reagent_container/food/snacks/carpmeat{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/structure/prop/invuln/fire{ + layer = 2.9 + }, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/template_noop) +"fN" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"fX" = ( +/turf/closed/wall/mineral/bone_resin, +/area/template_noop) +"gs" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/west, +/area/template_noop) +"gV" = ( +/turf/open/space, +/area/template_noop) +"hf" = ( +/turf/open/gm/river/pool, +/area/template_noop) +"hP" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/template_noop) +"hY" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/wood, +/area/template_noop) +"ij" = ( +/obj/item/toy/crossbow_ammo{ + pixel_y = 18; + pixel_x = 24; + layer = 2.5 + }, +/turf/open/floor/wood, +/area/template_noop) +"ik" = ( +/obj/item/trash/syndi_cakes{ + pixel_x = -13; + pixel_y = -11 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"is" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown2/southeast, +/area/template_noop) +"iC" = ( +/obj/item/tool/mop{ + pixel_x = 11; + layer = 2.9; + pixel_y = 3 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 9; + pixel_y = -5 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"iK" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) +"iY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 15; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/template_noop) +"jt" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/wood, +/area/template_noop) +"jW" = ( +/obj/item/trash/crushed_cup{ + pixel_y = 6; + pixel_x = 6 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"kb" = ( +/obj/item/trash/crushed_cup{ + pixel_y = -65; + pixel_x = 29 + }, +/turf/open/gm/river/pool, +/area/template_noop) +"kA" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"lc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck, +/obj/item/toy/dice{ + pixel_x = 11; + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/template_noop) +"lh" = ( +/obj/item/trash/cigbutt{ + pixel_x = 31; + pixel_y = -16 + }, +/turf/open/floor/wood, +/area/template_noop) +"ly" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison, +/area/template_noop) +"lS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cheeseburger{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/reagent_container/food/snacks/cheeseburger{ + pixel_x = 9; + pixel_y = 12 + }, +/obj/item/reagent_container/food/snacks/cheeseburger{ + pixel_x = 9; + pixel_y = 1 + }, +/obj/item/reagent_container/food/snacks/cheeseburger{ + pixel_x = -6; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/template_noop) +"mc" = ( +/obj/item/trash/kepler{ + pixel_x = 13 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/template_noop) +"mj" = ( +/obj/structure/prop/souto_land/pole, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"mk" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/item/trash/crushed_cup{ + pixel_y = -7; + pixel_x = 7 + }, +/turf/open/floor/wood, +/area/template_noop) +"mq" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/template_noop) +"mu" = ( +/turf/open/floor/plating/prison, +/area/template_noop) +"nf" = ( +/turf/open/floor/wood, +/area/template_noop) +"ng" = ( +/obj/item/trash/cigbutt{ + pixel_x = 31; + pixel_y = -16 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/template_noop) +"ni" = ( +/turf/closed/wall/prison, +/area/template_noop) +"nC" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"nS" = ( +/obj/structure/prop/souto_land/pole, +/turf/open/floor/wood, +/area/template_noop) +"or" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/turf/open/floor/wood, +/area/template_noop) +"ou" = ( +/obj/structure/platform, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"oL" = ( +/obj/structure/lattice, +/turf/open/space, +/area/template_noop) +"pt" = ( +/obj/structure/bed/chair/comfy{ + layer = 2.9 + }, +/turf/open/floor/wood, +/area/template_noop) +"pB" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/template_noop) +"pG" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/template_noop) +"pH" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/template_noop) +"ql" = ( +/obj/item/trash/sosjerky{ + pixel_x = -14; + pixel_y = -20 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) +"qm" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/template_noop) +"qG" = ( +/obj/item/trash/crushed_cup{ + pixel_y = 16 + }, +/obj/item/trash/hotdog{ + pixel_x = 7; + pixel_y = -8 + }, +/obj/item/trash/hotdog{ + pixel_x = -4; + pixel_y = -11 + }, +/obj/item/trash/hotdog{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/wood, +/area/template_noop) +"ro" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"rp" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/prison, +/area/template_noop) +"rq" = ( +/obj/item/trash/semki{ + pixel_x = 15 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) +"rt" = ( +/obj/item/trash/crushed_cup{ + pixel_x = -2; + pixel_y = 36 + }, +/turf/open/gm/river/pool, +/area/template_noop) +"rU" = ( +/obj/structure/grille, +/obj/item/reagent_container/food/snacks/bearmeat{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/item/reagent_container/food/snacks/meat/human{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/structure/prop/invuln/fire{ + layer = 2.9 + }, +/turf/open/floor/prison/darkbrowncorners2, +/area/template_noop) +"rW" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/wood, +/area/template_noop) +"so" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/wood, +/area/template_noop) +"tb" = ( +/obj/item/trash/wy_chips_pepper{ + pixel_x = 18; + layer = 2.5 + }, +/turf/open/floor/wood, +/area/template_noop) +"tw" = ( +/obj/item/toy/crossbow_ammo{ + pixel_x = -7; + pixel_y = -11 + }, +/turf/open/floor/wood, +/area/template_noop) +"ty" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison, +/area/template_noop) +"tz" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/wood, +/area/template_noop) +"tD" = ( +/obj/item/trash/plate{ + pixel_x = -9 + }, +/turf/open/floor/prison/darkbrowncorners2, +/area/template_noop) +"tM" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/template_noop) +"tT" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/wood, +/area/template_noop) +"uw" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/template_noop) +"vd" = ( +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/obj/item/toy/plush/barricade{ + pixel_x = 1; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkbrown2/west, +/area/template_noop) +"vf" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"vU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_x = 6; + pixel_y = 16 + }, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_x = -7; + pixel_y = 16 + }, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/template_noop) +"vX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/obj/item/tool/hand_labeler{ + pixel_x = -5; + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/template_noop) +"wS" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/template_noop) +"wV" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"xz" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/turf/open/floor/wood, +/area/template_noop) +"xQ" = ( +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"xS" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/wood, +/area/template_noop) +"yx" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkbrown2/west, +/area/template_noop) +"yL" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"zc" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"zR" = ( +/obj/item/trash/cigbutt{ + pixel_x = 10; + pixel_y = -11 + }, +/turf/open/floor/wood, +/area/template_noop) +"Aj" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison, +/area/template_noop) +"Ao" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/wood, +/area/template_noop) +"Bf" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/template_noop) +"Bj" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"Bm" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/obj/item/toy/plush/barricade{ + pixel_x = -3; + pixel_y = -9 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"Bv" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/obj/item/toy/gun_ammo{ + pixel_y = 66 + }, +/turf/open/floor/wood, +/area/template_noop) +"BK" = ( +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/turf/open/floor/wood, +/area/template_noop) +"BY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/mono{ + pixel_x = 6; + pixel_y = 5; + layer = 3.1 + }, +/obj/item/toy/plush/farwa{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = 11 + }, +/turf/open/floor/wood, +/area/template_noop) +"Ci" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/beer_pack{ + pixel_y = 5; + layer = 4 + }, +/turf/open/floor/wood, +/area/template_noop) +"Cq" = ( +/obj/item/toy/crossbow_ammo{ + pixel_x = -17; + pixel_y = 41 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) +"Cx" = ( +/obj/item/weapon/baseballbat/metal, +/turf/open/floor/wood, +/area/template_noop) +"Dd" = ( +/obj/item/trash/crushed_cup{ + pixel_x = -20 + }, +/turf/open/gm/river/pool, +/area/template_noop) +"DN" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/darkbrowncorners2, +/area/template_noop) +"DT" = ( +/obj/structure/platform, +/turf/open/gm/river/pool, +/area/template_noop) +"Fj" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/wood, +/area/template_noop) +"Fl" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/storage/pill_bottle/kelotane/skillless, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/template_noop) +"Fo" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"Fy" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/template_noop) +"Fz" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) +"FD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/plush/therapy/blue{ + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 10; + pixel_y = 4 + }, +/obj/item/clothing/head/bowlerhat{ + pixel_y = 16; + layer = 3.1 + }, +/turf/open/floor/wood, +/area/template_noop) +"FN" = ( +/obj/item/toy/crossbow{ + pixel_x = 11; + pixel_y = -8 + }, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"Gi" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"Gp" = ( +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = -7 + }, +/obj/item/trash/plate{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/trash/plate{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/trash/plate{ + pixel_x = 7 + }, +/obj/item/trash/plate{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/trash/plate{ + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/template_noop) +"Gu" = ( +/obj/item/trash/crushed_cup{ + pixel_y = -2; + pixel_x = -12 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"GO" = ( +/obj/item/toy/crossbow_ammo{ + pixel_y = -14; + pixel_x = -15 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) +"Hn" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"HP" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/obj/item/trash/crushed_cup{ + pixel_y = 3; + pixel_x = -4 + }, +/turf/open/floor/wood, +/area/template_noop) +"ID" = ( +/obj/item/trash/crushed_cup{ + pixel_y = -6; + pixel_x = -8 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"IU" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/wood, +/area/template_noop) +"Jf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -17; + pixel_y = -21 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ + pixel_x = 10; + pixel_y = 20 + }, +/turf/open/floor/wood, +/area/template_noop) +"Jr" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/template_noop) +"Jw" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/wood, +/area/template_noop) +"JQ" = ( +/obj/item/clipboard, +/turf/open/floor/prison, +/area/template_noop) +"JR" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"Ke" = ( +/obj/item/toy/crossbow_ammo{ + pixel_x = 19; + pixel_y = 9 + }, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"Kx" = ( +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"KL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -12; + pixel_y = -1 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -21; + pixel_y = -1 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -16; + pixel_y = -6 + }, +/turf/open/floor/wood, +/area/template_noop) +"KM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"KO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -8; + layer = 3.2 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -13; + pixel_y = 6; + layer = 3.1 + }, +/turf/open/floor/wood, +/area/template_noop) +"La" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river/pool, +/area/template_noop) +"Ls" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/turf/open/floor/wood, +/area/template_noop) +"LI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = 11; + pixel_x = 9 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = 11; + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = 11; + pixel_x = -7 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = 4; + pixel_x = 9 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = 4; + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = 4; + pixel_x = -7 + }, +/turf/open/floor/wood, +/area/template_noop) +"LW" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"Mn" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"MS" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"ND" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/template_noop) +"NQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/southwest, +/area/template_noop) +"Oz" = ( +/obj/item/trash/crushed_cup{ + pixel_y = 5; + pixel_x = 11 + }, +/turf/open/gm/river/pool, +/area/template_noop) +"PA" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/northeast, +/area/template_noop) +"PR" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkbrowncorners2, +/area/template_noop) +"Qn" = ( +/turf/open/floor/prison, +/area/template_noop) +"QF" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/template_noop) +"QO" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"Rg" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"Ro" = ( +/obj/item/toy/bikehorn/rubberducky{ + pixel_x = -2; + pixel_y = -15 + }, +/turf/open/gm/river/pool, +/area/template_noop) +"Rr" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"Rs" = ( +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"RW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 6; + layer = 3.2 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 15; + layer = 3.2 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 11; + pixel_y = 6; + layer = 3.1 + }, +/turf/open/floor/wood, +/area/template_noop) +"Sg" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/template_noop) +"SC" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) +"SO" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/obj/item/trash/cigbutt{ + pixel_x = 31; + pixel_y = -16 + }, +/turf/open/floor/wood, +/area/template_noop) +"SW" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/obj/item/toy/plush/barricade{ + pixel_x = 1; + pixel_y = -9 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/template_noop) +"Th" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) +"Tq" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/template_noop) +"TO" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/turf/open/floor/wood, +/area/template_noop) +"TS" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/template_noop) +"Us" = ( +/obj/item/toy/syndicateballoon{ + pixel_x = 14; + pixel_y = -5 + }, +/turf/open/floor/wood, +/area/template_noop) +"UN" = ( +/obj/item/trash/crushed_cup{ + pixel_x = -13; + pixel_y = 48 + }, +/turf/open/gm/river/pool, +/area/template_noop) +"Vi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/cognac{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = -3; + pixel_y = 13; + layer = 4 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = -10; + pixel_y = 1; + layer = 4 + }, +/turf/open/floor/wood, +/area/template_noop) +"Vx" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/item/weapon/gun/shotgun/merc{ + pixel_x = 1; + pixel_y = 25 + }, +/turf/open/floor/wood, +/area/template_noop) +"VV" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison, +/area/template_noop) +"Wa" = ( +/obj/structure/closet/basketball{ + pixel_x = -8; + pixel_y = -2 + }, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/weapon/gun/revolver/cmb, +/turf/open/floor/wood, +/area/template_noop) +"We" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison, +/area/template_noop) +"Wh" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) +"Wx" = ( +/obj/structure/platform, +/obj/item/trash/crushed_cup{ + pixel_y = 13; + pixel_x = 45 + }, +/turf/open/gm/river/pool, +/area/template_noop) +"WY" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"Xn" = ( +/obj/item/storage/belt/shotgun/full/quackers{ + layer = 3.1 + }, +/obj/item/trash/crushed_cup{ + pixel_y = 6; + pixel_x = -30 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = 4; + pixel_x = 1 + }, +/turf/open/gm/river/pool, +/area/template_noop) +"Xu" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"Xw" = ( +/obj/item/toy/beach_ball/holoball{ + pixel_x = -10; + pixel_y = -7 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/template_noop) +"XM" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/template_noop) +"XS" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/wood, +/area/template_noop) +"XU" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/obj/item/toy/plush/barricade{ + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"XX" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"Yd" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/wood, +/area/template_noop) +"Yh" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/wood, +/area/template_noop) +"YB" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/template_noop) +"YG" = ( +/obj/structure/platform, +/turf/open/floor/prison, +/area/template_noop) +"YP" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/template_noop) +"Zr" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/wood, +/area/template_noop) +"ZB" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/template_noop) + +(1,1,1) = {" +Rs +Qn +Fl +Qn +rp +fX +fX +fX +fX +Wh +cK +hP +hP +ly +Qn +Qn +Qn +Aj +Qn +Wh +Rs +Fy +"} +(2,1,1) = {" +Rs +Qn +JQ +Qn +VV +fN +fX +ni +ni +YP +TS +ni +ni +kA +Kx +XX +hP +hP +ly +Wh +Rs +so +"} +(3,1,1) = {" +Rs +Qn +VV +fN +MS +ni +aj +ni +SO +el +mj +hY +ni +YP +Rr +TS +ni +ni +kA +Wh +Rs +dB +"} +(4,1,1) = {" +Rs +Qn +ZB +ni +aj +ni +nf +nf +nf +ql +Rs +nf +BK +TO +HP +nS +Wa +aj +kA +Wh +Rs +mu +"} +(5,1,1) = {" +Rs +VV +MS +aj +jt +az +dB +yx +XM +tM +QF +XM +Xw +NQ +nf +IU +nf +aj +kA +Wh +mu +fX +"} +(6,1,1) = {" +Rs +ZB +ni +ni +XS +nf +GO +PR +Fo +Fo +jW +Fo +mq +Ke +lh +nf +Cx +aj +kA +ND +Fo +fX +"} +(7,1,1) = {" +cK +MS +aj +nf +tz +nf +Th +Rs +pG +Gi +Gi +qm +Wh +Rs +nf +tz +nf +aj +Hn +Fj +nf +fX +"} +(8,1,1) = {" +ou +ni +ni +Zr +FD +az +Wh +xQ +La +kb +hf +DT +Wh +Rs +Zr +Ci +az +ni +ni +kA +nf +Wh +"} +(9,1,1) = {" +Xu +ni +mk +nf +rW +nf +Cq +Rs +La +Dd +ef +DT +Wh +Rs +nf +rW +nf +Yd +ni +wV +nf +Wh +"} +(10,1,1) = {" +uw +SW +ng +yx +yx +mc +Jr +Rs +La +bO +rt +DT +Wh +fL +XM +yx +yx +vd +pB +pH +XM +Jr +"} +(11,1,1) = {" +DN +XU +JR +Fo +Fo +Fo +Sg +Bj +La +hf +UN +Wx +Wh +rU +KM +Fo +Gu +Bm +yL +LW +Fo +Fo +"} +(12,1,1) = {" +Xu +ni +Jw +nf +tz +nf +Wh +Rs +La +Oz +Xn +DT +SC +Rs +nf +tz +nf +Yd +ni +xS +nf +nf +"} +(13,1,1) = {" +ou +ni +ni +pt +LI +Vx +Wh +FN +La +Ro +hf +DT +Wh +cj +Zr +BY +az +cb +Fy +Bf +Bf +Bf +"} +(14,1,1) = {" +WY +Mn +aj +nf +rW +nf +rq +Rs +nC +Rr +Rr +TS +Wh +QO +nf +rW +nf +cU +Fy +gV +gV +gV +"} +(15,1,1) = {" +Rs +ZB +aj +nf +ij +tT +iK +fv +gs +XM +XM +XM +Jr +Rs +nf +tb +nf +nf +Fy +Bf +Bf +Bf +"} +(16,1,1) = {" +Rs +YG +aj +lc +ci +tT +ND +iC +ID +mq +tD +Fo +ik +wS +iY +cq +RW +nf +nf +nf +Gp +Bf +"} +(17,1,1) = {" +Rs +YG +aj +Ls +xz +Bv +or +zR +nf +Th +Rs +nf +tw +XS +KL +Jf +KO +bD +nf +nf +lS +Bf +"} +(18,1,1) = {" +Rs +YG +ni +ni +pG +Gi +qm +ni +vX +Fz +Rg +Ao +Fy +nf +lh +nf +nf +nf +nf +qG +vU +Bf +"} +(19,1,1) = {" +Rs +We +ty +ty +vf +Kx +ZB +ni +ni +pG +zc +ni +Fy +Zr +Vi +az +Fy +Bf +Bf +Bf +Bf +Bf +"} +(20,1,1) = {" +wS +Qn +Qn +Qn +Aj +Qn +We +ro +ro +PA +is +ro +Fy +nf +Yh +Us +Fy +gV +gV +oL +gV +gV +"} +(21,1,1) = {" +Tq +YB +YB +Tq +YB +YB +Tq +YB +YB +Tq +Tq +YB +Fy +Fy +Fy +Fy +Fy +gV +gV +oL +gV +gV +"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.yardbasketball.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.yardbasketball.dmm new file mode 100644 index 000000000000..ce60474959f1 --- /dev/null +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.yardbasketball.dmm @@ -0,0 +1,337 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/wood, +/area/template_noop) +"b" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/wood, +/area/template_noop) +"d" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/wood, +/area/template_noop) +"e" = ( +/obj/item/trash/cigbutt{ + pixel_x = 5; + pixel_y = -6 + }, +/turf/open/floor/wood, +/area/template_noop) +"f" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/effect/decal/cleanable/blood, +/obj/item/restraint/handcuffs/zip{ + pixel_y = -12 + }, +/turf/open/floor/wood, +/area/template_noop) +"g" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/wood, +/area/template_noop) +"i" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/wood, +/area/template_noop) +"j" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/wood, +/area/template_noop) +"k" = ( +/obj/item/ammo_casing{ + dir = 6; + icon_state = "casing_10_1" + }, +/turf/open/floor/wood, +/area/template_noop) +"l" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/wood, +/area/template_noop) +"n" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/turf/open/floor/wood, +/area/template_noop) +"p" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/wood, +/area/template_noop) +"r" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/wood, +/area/template_noop) +"s" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/wood, +/area/template_noop) +"u" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/item/spacecash/c100{ + pixel_x = -11; + pixel_y = -6 + }, +/turf/open/floor/wood, +/area/template_noop) +"w" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/trash/barcardine, +/turf/open/floor/wood, +/area/template_noop) +"x" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/wood, +/area/template_noop) +"C" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/wood, +/area/template_noop) +"G" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/wood, +/area/template_noop) +"H" = ( +/obj/item/trash/chunk, +/turf/open/floor/wood, +/area/template_noop) +"J" = ( +/obj/item/weapon/gun/smg/mac15{ + pixel_x = 12 + }, +/turf/open/floor/wood, +/area/template_noop) +"L" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/wood, +/area/template_noop) +"M" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/obj/effect/decal/warning_stripes, +/obj/structure/holohoop{ + dir = 8 + }, +/turf/open/floor/wood, +/area/template_noop) +"Q" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/wood, +/area/template_noop) +"R" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes, +/obj/structure/holohoop{ + dir = 4 + }, +/turf/open/floor/wood, +/area/template_noop) +"S" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/wood, +/area/template_noop) +"T" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/wood, +/area/template_noop) +"U" = ( +/obj/item/ammo_magazine/smg/uzi{ + current_rounds = 0; + pixel_x = 5; + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/template_noop) +"W" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/template_noop) +"Y" = ( +/turf/open/floor/wood, +/area/template_noop) +"Z" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/obj/effect/decal/warning_stripes, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/wood, +/area/template_noop) + +(1,1,1) = {" +Q +G +R +G +a +"} +(2,1,1) = {" +w +s +Y +Y +l +"} +(3,1,1) = {" +s +d +C +T +S +"} +(4,1,1) = {" +s +Y +Y +Y +L +"} +(5,1,1) = {" +s +Y +Y +H +L +"} +(6,1,1) = {" +s +Y +e +Y +L +"} +(7,1,1) = {" +r +n +Z +n +g +"} +(8,1,1) = {" +s +J +U +Y +L +"} +(9,1,1) = {" +s +k +W +Y +L +"} +(10,1,1) = {" +u +f +Y +Y +L +"} +(11,1,1) = {" +p +b +C +G +i +"} +(12,1,1) = {" +s +Y +Y +Y +L +"} +(13,1,1) = {" +d +j +M +j +x +"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm new file mode 100644 index 000000000000..ddf166738112 --- /dev/null +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm @@ -0,0 +1,1100 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"aU" = ( +/obj/structure/sign/poster{ + icon_state = "poster12"; + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/space/basic, +/area/template_noop) +"bz" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/template_noop) +"bO" = ( +/turf/open/floor/prison/floorscorched1, +/area/template_noop) +"bZ" = ( +/turf/open/floor/prison/floorscorched2, +/area/template_noop) +"cz" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"cL" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"cM" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitepurple/southwest, +/area/template_noop) +"dR" = ( +/obj/structure/bookcase/manuals/research_and_development{ + pixel_y = 10 + }, +/turf/open/floor/prison/whitepurple/north, +/area/template_noop) +"eG" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/prop/helmetgarb/riot_shield, +/obj/item/prop/helmetgarb/riot_shield, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"eQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"fg" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitepurple, +/area/template_noop) +"fk" = ( +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/space/basic, +/area/template_noop) +"gy" = ( +/turf/open/floor/prison/whitepurple/west, +/area/template_noop) +"gB" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"gR" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/obj/structure/machinery/door/airlock/prison/horizontal{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"hq" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + dir = 4; + icon_state = "door_open" + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"jt" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + health = 150 + }, +/turf/open/floor/prison/whitepurple/north, +/area/template_noop) +"jM" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/turf/open/floor/prison/whitepurple/southeast, +/area/template_noop) +"ke" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"ks" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/card/id/visa, +/turf/open/floor/prison/whitepurple/northwest, +/area/template_noop) +"kx" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"kY" = ( +/turf/open/floor/prison/platingdmg1, +/area/template_noop) +"me" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor/prison/whitepurple/southeast, +/area/template_noop) +"mu" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/whitepurple/southwest, +/area/template_noop) +"mz" = ( +/obj/item/tool/kitchen/utensil/pspoon, +/turf/open/space/basic, +/area/template_noop) +"no" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + health = 200 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"nw" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/whitepurple/southwest, +/area/template_noop) +"on" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + health = 55 + }, +/turf/open/floor/prison/whitepurple/southwest, +/area/template_noop) +"oR" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/template_noop) +"pp" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/damaged1/southwest, +/area/template_noop) +"pP" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/template_noop) +"qk" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/whitepurple/southeast, +/area/template_noop) +"qu" = ( +/turf/open/floor/prison/damaged1/southwest, +/area/template_noop) +"qL" = ( +/turf/open/floor/prison/panelscorched, +/area/template_noop) +"rb" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood/writing{ + dir = 6 + }, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/whitepurple/northeast, +/area/template_noop) +"sa" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitepurple/southwest, +/area/template_noop) +"tc" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/toy/deck, +/turf/open/floor/prison/whitepurple/southeast, +/area/template_noop) +"tr" = ( +/turf/open/floor/prison/whitepurple/east, +/area/template_noop) +"tB" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + health = 65 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"tD" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitepurple, +/area/template_noop) +"tI" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/whitepurple/north, +/area/template_noop) +"tN" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"ux" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/whitepurple/southwest, +/area/template_noop) +"uF" = ( +/obj/effect/decal/prints{ + pixel_y = 3; + pixel_x = -10 + }, +/turf/open/floor/prison/whitepurple/west, +/area/template_noop) +"uM" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/effect/spawner/random/goggles/lowchance, +/turf/open/floor/prison/whitepurple/southeast, +/area/template_noop) +"we" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"wv" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"wy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/implant/loyalty{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/implant/loyalty{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/implanter{ + pixel_x = -4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"xy" = ( +/obj/structure/grille, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"yv" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/open/floor/prison/whitepurple/southeast, +/area/template_noop) +"zj" = ( +/obj/item/stack/sheet/metal{ + pixel_y = -9; + pixel_x = 8 + }, +/turf/open/floor/prison/whitepurple/southwest, +/area/template_noop) +"zA" = ( +/turf/open/floor/prison/whitepurple/northeast, +/area/template_noop) +"zT" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitepurple/northwest, +/area/template_noop) +"Bl" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/whitepurple/southeast, +/area/template_noop) +"Bx" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/prison/whitepurple/west, +/area/template_noop) +"Dq" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + health = 50 + }, +/obj/item/stack/sheet/metal{ + pixel_y = 4; + pixel_x = -10 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"Dt" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/prison/whitepurple/southeast, +/area/template_noop) +"DE" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/prison/whitepurple/northwest, +/area/template_noop) +"DV" = ( +/turf/open/floor/prison/whitepurple/north, +/area/template_noop) +"EQ" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/prison/whitepurple/northeast, +/area/template_noop) +"ES" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/template_noop) +"Fc" = ( +/turf/open/floor/prison/whitepurple/northwest, +/area/template_noop) +"FP" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + health = 55 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"Gy" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"GR" = ( +/turf/closed/wall/r_wall/prison_unmeltable{ + desc = "A huge chunk of metal used to seperate rooms."; + name = "metal wall" + }, +/area/template_noop) +"Hf" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints, +/turf/open/floor/prison/whitepurple/north, +/area/template_noop) +"Hp" = ( +/turf/open/floor/prison/whitepurple, +/area/template_noop) +"Hw" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 + }, +/turf/open/floor/prison/whitepurple/northeast, +/area/template_noop) +"HN" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"Id" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"Ig" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"Io" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/floorscorched1, +/area/template_noop) +"Ix" = ( +/obj/structure/machinery/door/airlock/prison/horizontal, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"IN" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitepurple/north, +/area/template_noop) +"IW" = ( +/turf/open/floor/prison/damaged2, +/area/template_noop) +"Jm" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/whitepurple/southeast, +/area/template_noop) +"JQ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/prison/whitepurple/southwest, +/area/template_noop) +"Kc" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"Kj" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/prison/whitepurple/east, +/area/template_noop) +"KF" = ( +/turf/open/floor/prison/damaged3, +/area/template_noop) +"LM" = ( +/turf/closed/wall/prison, +/area/template_noop) +"LQ" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"Mj" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/storage/fancy/crayons, +/turf/open/floor/prison/whitepurple/southeast, +/area/template_noop) +"Mo" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/plating/prison, +/area/template_noop) +"MD" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"MI" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/core, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"MO" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"Nr" = ( +/obj/structure/machinery/light/double/blue, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/whitepurple, +/area/template_noop) +"Ns" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/item/restraint/handcuffs{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/item/restraint/handcuffs{ + pixel_x = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"NI" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"Oo" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/space/basic, +/area/template_noop) +"Pd" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints, +/turf/open/floor/prison/whitepurple/east, +/area/template_noop) +"Pk" = ( +/obj/effect/decal/cleanable/spiderling_remains, +/turf/open/floor/prison/whitepurple/southeast, +/area/template_noop) +"PS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"Qc" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/whitepurple/northwest, +/area/template_noop) +"Qn" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitepurple/east, +/area/template_noop) +"QF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"QU" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"Sx" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/floorscorched2, +/area/template_noop) +"TD" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints, +/turf/open/floor/prison/whitepurple, +/area/template_noop) +"TE" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + health = 150 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"TH" = ( +/turf/open/floor/prison/platingdmg3, +/area/template_noop) +"VP" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + health = 200 + }, +/turf/open/floor/prison/whitepurple/northwest, +/area/template_noop) +"VQ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitepurple/west, +/area/template_noop) +"Wo" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitepurple/northeast, +/area/template_noop) +"Yw" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/prison, +/area/template_noop) +"Yx" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + health = 55 + }, +/turf/open/floor/prison/whitepurple, +/area/template_noop) +"YY" = ( +/turf/open/floor/prison/platingdmg2, +/area/template_noop) +"Zi" = ( +/turf/open/space/basic, +/area/template_noop) +"Zw" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/storage/fancy/cigar/tarbacks, +/turf/open/floor/prison/whitepurple/southeast, +/area/template_noop) + +(1,1,1) = {" +LM +LM +ks +ES +Ix +aa +NI +tD +LM +LQ +Mo +LM +LQ +Mo +LM +LQ +Mo +LM +"} +(2,1,1) = {" +NI +LM +dR +Hp +Mo +DV +Sx +Yx +LM +Fc +nw +LM +Qc +nw +LM +Fc +nw +LM +"} +(3,1,1) = {" +cL +LM +Hw +yv +Mo +jt +no +Hp +LM +Hw +yv +LM +Hw +yv +LM +Hw +yv +LM +"} +(4,1,1) = {" +cL +Yw +LM +LM +LM +DV +NI +Nr +Yw +LM +LM +LM +LM +LM +LM +LM +LM +LM +"} +(5,1,1) = {" +cL +LM +DE +JQ +LM +DV +qL +Hp +LM +DE +JQ +LM +DE +JQ +LM +DE +JQ +LM +"} +(6,1,1) = {" +cL +LM +zA +qk +LM +IN +NI +Hp +LM +zA +qk +LM +zA +qk +LM +zA +uM +LM +"} +(7,1,1) = {" +tN +LM +LQ +Mo +LM +DV +NI +fg +LM +hq +Mo +LM +LQ +Mo +LM +LQ +Mo +LM +"} +(8,1,1) = {" +Kc +QF +Fc +VQ +gy +Io +NI +pP +gy +uF +ES +gB +KF +gy +gy +TH +ES +TE +"} +(9,1,1) = {" +MO +NI +pp +tr +tr +tr +tr +Kj +tr +qu +Pk +cL +zA +Pd +tr +Qn +oR +tB +"} +(10,1,1) = {" +MD +GR +hq +Mo +GR +gR +Mo +LM +cL +cL +kx +LM +hq +Mo +LM +LQ +Mo +LM +"} +(11,1,1) = {" +NI +GR +Fc +cM +GR +Fc +nw +LM +cL +YY +cL +LM +zT +mu +LM +Fc +nw +LM +"} +(12,1,1) = {" +PS +GR +Hw +yv +GR +Hw +yv +LM +eQ +cL +cL +LM +rb +yv +LM +Hw +Bl +LM +"} +(13,1,1) = {" +Ig +GR +GR +GR +GR +LM +LM +LM +Ns +cL +tN +Yw +LM +LM +LM +LM +LM +LM +"} +(14,1,1) = {" +cz +GR +mz +Zi +GR +DE +JQ +LM +wy +cL +bZ +LM +DE +JQ +LM +DE +JQ +LM +"} +(15,1,1) = {" +Gy +GR +Oo +Zi +GR +zA +jM +LM +eG +HN +cL +LM +zA +qk +LM +zA +tc +LM +"} +(16,1,1) = {" +wv +GR +aU +fk +GR +LQ +Mo +LM +we +cL +Id +LM +LQ +Mo +LM +LQ +Mo +LM +"} +(17,1,1) = {" +bz +GR +GR +GR +GR +cL +cL +cL +cL +YY +cL +cL +Fc +Bx +gy +bO +zj +QU +"} +(18,1,1) = {" +bz +LM +LM +LM +xy +kY +cL +ke +cL +cL +MI +cL +EQ +YY +tr +tr +me +Dq +"} +(19,1,1) = {" +bz +LM +LM +LM +LM +cL +cL +cL +LM +LQ +Mo +LM +LQ +Mo +LM +hq +Mo +LM +"} +(20,1,1) = {" +bz +LM +LM +LM +xy +VP +gy +on +LM +Fc +nw +LM +Fc +nw +LM +Fc +nw +LM +"} +(21,1,1) = {" +bz +LM +LM +LM +LM +DV +aa +Hp +LM +Wo +yv +LM +Hw +yv +LM +Hw +Jm +LM +"} +(22,1,1) = {" +bz +LM +LM +LM +LM +Hf +FP +Hp +Yw +LM +LM +LM +LM +LM +LM +LM +LM +LM +"} +(23,1,1) = {" +bz +LM +DE +sa +LM +DV +NI +Hp +LM +DE +JQ +LM +DE +JQ +LM +DE +ux +LM +"} +(24,1,1) = {" +bz +LM +zA +Dt +LM +tI +IW +TD +LM +zA +Zw +LM +zA +Mj +LM +zA +qk +LM +"} +(25,1,1) = {" +bz +LM +LQ +Mo +LM +DV +NI +Hp +LM +LQ +Mo +LM +LQ +Mo +LM +LQ +Mo +LM +"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm new file mode 100644 index 000000000000..1f23f9fb037d --- /dev/null +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm @@ -0,0 +1,247 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/prison, +/area/template_noop) +"e" = ( +/turf/open/floor/plating/prison, +/area/template_noop) +"h" = ( +/turf/open/floor/prison/greenfull/east, +/area/template_noop) +"k" = ( +/obj/structure/sign/poster/hero/voteno{ + pixel_y = 29 + }, +/turf/open/floor/prison/greenfull/east, +/area/template_noop) +"n" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/prison/greenfull/east, +/area/template_noop) +"o" = ( +/turf/closed/wall/mineral/bone_resin, +/area/template_noop) +"s" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/template_noop) +"t" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"x" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/cell/super{ + pixel_y = 12 + }, +/obj/item/cell/super, +/obj/item/storage/pill_bottle/happy{ + layer = 2.8; + pixel_y = -7 + }, +/turf/open/floor/prison/greenfull/east, +/area/template_noop) +"z" = ( +/obj/structure/coatrack, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/obj/item/clothing/suit/storage/bomber, +/obj/item/clothing/head/beret/centcom/officer{ + pixel_x = -2; + pixel_y = 13 + }, +/turf/open/floor/prison/greenfull/east, +/area/template_noop) +"D" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/greenfull/east, +/area/template_noop) +"E" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/obj/item/paper{ + desc = "The image appears to be someone's backside, the page number is labled as 259." + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"F" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/electrical{ + pixel_x = -1; + pixel_y = 11 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5; + pixel_x = -1 + }, +/obj/item/storage/toolbox/syndicate{ + pixel_x = -1 + }, +/obj/structure/sign/poster/music{ + pixel_y = 29 + }, +/obj/item/weapon/butterfly{ + pixel_x = 17 + }, +/turf/open/floor/prison/greenfull/east, +/area/template_noop) +"O" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + icon_state = "mwo"; + pixel_y = 6 + }, +/turf/open/floor/prison/greenfull/east, +/area/template_noop) +"Q" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "Residential Apartment" + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"S" = ( +/obj/item/storage/firstaid/regular/empty{ + pixel_x = 14 + }, +/turf/open/floor/prison/greenfull/east, +/area/template_noop) +"T" = ( +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"V" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/item/pamphlet/engineer, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"X" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/obj/effect/landmark/objective_landmark/medium, +/obj/item/storage/backpack/marine/engineerpack/satchel, +/turf/open/floor/prison/greenfull/east, +/area/template_noop) +"Z" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/beret/eng{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/book/manual/engineering_guide{ + pixel_x = -4 + }, +/turf/open/floor/prison/greenfull/east, +/area/template_noop) + +(1,1,1) = {" +a +a +a +a +a +a +a +"} +(2,1,1) = {" +Q +h +n +a +F +S +Q +"} +(3,1,1) = {" +a +O +D +a +x +z +a +"} +(4,1,1) = {" +a +a +a +a +a +a +a +"} +(5,1,1) = {" +Q +h +Z +a +V +h +Q +"} +(6,1,1) = {" +a +k +X +a +t +E +a +"} +(7,1,1) = {" +a +a +a +a +a +a +a +"} +(8,1,1) = {" +o +o +o +o +o +e +e +"} +(9,1,1) = {" +T +o +T +s +s +s +s +"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm new file mode 100644 index 000000000000..f9816fe31821 --- /dev/null +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm @@ -0,0 +1,430 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/kitchenspike, +/turf/open/floor/prison/kitchen, +/area/template_noop) +"b" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/prison/blue/southwest, +/area/template_noop) +"c" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor/prison/kitchen, +/area/template_noop) +"d" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/sliceable/pizza/meatpizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/meatpizza{ + pixel_y = 3 + }, +/obj/item/reagent_container/food/snacks/sliceable/pizza/meatpizza{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/sliceable/pizza/meatpizza{ + pixel_y = 10 + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"e" = ( +/obj/effect/decal/cleanable/flour, +/turf/open/floor/prison/blue/northwest, +/area/template_noop) +"f" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/chem_dispenser/soda, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"g" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/sliceable/flatdough{ + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/sliceable/flatdough{ + pixel_y = -2 + }, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/prison/kitchen, +/area/template_noop) +"i" = ( +/turf/open/space, +/area/template_noop) +"j" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 9 + }, +/obj/item/reagent_container/food/snacks/tomatomeat{ + pixel_x = -6 + }, +/obj/item/reagent_container/food/snacks/tomatomeat{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/reagent_container/food/snacks/tomatomeat{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/prison/blue/southeast, +/area/template_noop) +"k" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sink{ + pixel_y = 32 + }, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/prison/kitchen, +/area/template_noop) +"l" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/prison/kitchen, +/area/template_noop) +"m" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/effect/landmark/objective_landmark/close, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/turf/open/floor/prison/kitchen, +/area/template_noop) +"o" = ( +/obj/effect/landmark/corpsespawner/pizza/burst, +/turf/open/floor/prison/kitchen, +/area/template_noop) +"p" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/dr_gibb{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/cans/space_mountain_wind{ + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/cans/space_up{ + pixel_x = -9; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/cans/classcola{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/cans/cola, +/obj/item/reagent_container/food/drinks/cans/starkist{ + pixel_x = -9 + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"q" = ( +/obj/item/reagent_container/food/snacks/cheesewedge/verymature{ + pixel_y = -16; + pixel_x = 9 + }, +/turf/open/floor/prison/kitchen, +/area/template_noop) +"r" = ( +/turf/open/floor/prison/blue/west, +/area/template_noop) +"s" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/template_noop) +"t" = ( +/turf/open/floor/prison/blue/northeast, +/area/template_noop) +"u" = ( +/obj/effect/decal/cleanable/flour, +/turf/open/floor/prison/blue/east, +/area/template_noop) +"v" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/template_noop) +"w" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/template_noop) +"x" = ( +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/kitchen, +/area/template_noop) +"y" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, +/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, +/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, +/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, +/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, +/turf/open/floor/prison/kitchen, +/area/template_noop) +"z" = ( +/turf/closed/wall/prison, +/area/template_noop) +"A" = ( +/turf/open/floor/prison/blue/north, +/area/template_noop) +"B" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/storage/box/cups, +/obj/item/toy/deck{ + pixel_x = 12; + pixel_y = -2 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"C" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ + pixel_y = -8 + }, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ + pixel_y = -3 + }, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ + pixel_y = 7 + }, +/turf/open/floor/prison/kitchen, +/area/template_noop) +"D" = ( +/obj/item/stool, +/turf/open/floor/prison/blue/west, +/area/template_noop) +"E" = ( +/obj/structure/machinery/gibber, +/obj/effect/decal/cleanable/egg_smudge, +/turf/open/floor/prison/kitchen, +/area/template_noop) +"G" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pizzabox/margherita, +/obj/item/pizzabox/mystery{ + pixel_y = 3 + }, +/obj/item/pizzabox/vegetable{ + pixel_y = 7 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_y = 13; + pixel_x = -7 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 6; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"H" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/turf/open/floor/prison/kitchen, +/area/template_noop) +"I" = ( +/obj/effect/decal/cleanable/egg_smudge, +/turf/open/floor/prison/kitchen, +/area/template_noop) +"K" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/item/tool/kitchen/pizzacutter, +/turf/open/floor/prison/kitchen, +/area/template_noop) +"L" = ( +/turf/open/floor/prison/kitchen, +/area/template_noop) +"M" = ( +/obj/structure/sign/safety/fridge, +/turf/closed/wall/prison, +/area/template_noop) +"N" = ( +/turf/open/floor/prison/blue/east, +/area/template_noop) +"O" = ( +/obj/item/card/id/pizza, +/turf/open/floor/prison/blue/east, +/area/template_noop) +"P" = ( +/obj/structure/lattice, +/turf/open/space, +/area/template_noop) +"Q" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/prison/kitchen, +/area/template_noop) +"S" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "u_psycopath_l"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "u_ketchup_l"; + pixel_x = 8; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "u_guilty_l"; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/flour, +/turf/open/floor/prison/kitchen, +/area/template_noop) +"T" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/template_noop) +"U" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pizzabox/mystery/stack, +/obj/item/reagent_container/food/snacks/vegetablepizzaslice{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/vegetablepizzaslice{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"X" = ( +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"Y" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/prison/blue, +/area/template_noop) + +(1,1,1) = {" +z +U +d +G +p +z +s +T +T +T +"} +(2,1,1) = {" +v +e +D +r +r +r +r +r +b +w +"} +(3,1,1) = {" +v +A +X +X +B +f +X +X +Y +w +"} +(4,1,1) = {" +v +t +O +N +N +u +N +N +j +w +"} +(5,1,1) = {" +z +l +I +a +z +M +s +T +T +T +"} +(6,1,1) = {" +z +k +o +C +T +m +L +y +T +i +"} +(7,1,1) = {" +z +x +S +c +T +K +q +H +T +i +"} +(8,1,1) = {" +z +E +g +Q +T +w +w +w +T +i +"} +(9,1,1) = {" +T +T +w +T +T +i +i +i +P +i +"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm new file mode 100644 index 000000000000..bba4398e4d95 --- /dev/null +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm @@ -0,0 +1,402 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/item/stack/sheet/metal, +/turf/open/space, +/area/template_noop) +"b" = ( +/obj/item/stock_parts/subspace/filter{ + pixel_y = 6 + }, +/turf/open/space, +/area/template_noop) +"c" = ( +/obj/structure/cargo_container/grant/left{ + desc = "A huge industrial shipping container. This one is in space." + }, +/turf/open/space, +/area/template_noop) +"d" = ( +/obj/item/clothing/head/helmet/space{ + pixel_x = -7; + pixel_y = -8 + }, +/turf/open/space/basic, +/area/template_noop) +"e" = ( +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"f" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison, +/area/template_noop) +"g" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space, +/area/template_noop) +"h" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/item/stack/sheet/metal, +/turf/open/space, +/area/template_noop) +"i" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/space, +/area/template_noop) +"j" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/plating/prison, +/area/template_noop) +"l" = ( +/obj/item/limb/head/synth{ + pixel_x = -9; + icon_state = "scandinavian_head_m" + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/space/basic, +/area/template_noop) +"m" = ( +/turf/open/floor/almayer_hull, +/area/template_noop) +"n" = ( +/obj/structure/cargo_container/grant/right{ + desc = "A huge industrial shipping container. You're not sure how it got here." + }, +/turf/open/space, +/area/template_noop) +"p" = ( +/turf/open/floor/prison, +/area/template_noop) +"q" = ( +/turf/open/floor/plating/prison, +/area/template_noop) +"s" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/space, +/area/template_noop) +"t" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/space, +/area/template_noop) +"u" = ( +/turf/open/space, +/area/template_noop) +"v" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/item/book/manual/engineering_construction, +/turf/open/space/basic, +/area/template_noop) +"w" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty"; + name = "solar lattice"; + pixel_y = 6 + }, +/turf/open/floor/almayer_hull, +/area/template_noop) +"x" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/template_noop) +"y" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison/darkyellow2/west, +/area/template_noop) +"z" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/item/clothing/head/cardborg, +/turf/open/space, +/area/template_noop) +"A" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/space/basic, +/area/template_noop) +"B" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/space, +/area/template_noop) +"D" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"E" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" + }, +/turf/open/floor/prison, +/area/template_noop) +"F" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/template_noop) +"G" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/template_noop) +"H" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank, +/turf/open/space, +/area/template_noop) +"I" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/effect/spawner/random/tool{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/effect/spawner/random/tool{ + pixel_x = 9 + }, +/turf/open/space, +/area/template_noop) +"J" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/item/stack/sheet/metal, +/turf/open/space, +/area/template_noop) +"L" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/template_noop) +"M" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/space, +/area/template_noop) +"N" = ( +/turf/open/floor/solarpanel, +/area/template_noop) +"O" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/space, +/area/template_noop) +"P" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/template_noop) +"Q" = ( +/turf/open/auto_turf/sand/layer1, +/area/template_noop) +"R" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/space/basic, +/area/template_noop) +"S" = ( +/turf/open/space/basic, +/area/template_noop) +"T" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison/darkyellow2, +/area/template_noop) +"U" = ( +/obj/item/stack/sheet/metal, +/turf/open/space, +/area/template_noop) +"V" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/item/circuitboard/solar_tracker, +/turf/open/space, +/area/template_noop) +"W" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/template_noop) +"X" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/template_noop) +"Y" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/space, +/area/template_noop) +"Z" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/space, +/area/template_noop) + +(1,1,1) = {" +x +F +F +F +F +F +F +F +p +"} +(2,1,1) = {" +F +S +H +M +m +Z +u +x +F +"} +(3,1,1) = {" +F +A +I +t +W +J +s +i +F +"} +(4,1,1) = {" +F +R +N +N +w +N +N +g +F +"} +(5,1,1) = {" +F +v +N +N +m +N +N +g +F +"} +(6,1,1) = {" +F +R +N +N +w +N +N +g +F +"} +(7,1,1) = {" +F +l +V +O +P +Y +a +B +x +"} +(8,1,1) = {" +F +d +u +h +m +z +u +b +x +"} +(9,1,1) = {" +x +F +F +F +F +x +u +c +x +"} +(10,1,1) = {" +x +j +Q +Q +Q +F +u +n +F +"} +(11,1,1) = {" +f +E +q +Q +Q +F +u +u +F +"} +(12,1,1) = {" +X +y +L +q +D +F +U +u +F +"} +(13,1,1) = {" +G +p +e +T +p +x +F +F +x +"} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/unused/20.medicalhold.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/unused/20.medicalhold.dmm new file mode 100644 index 000000000000..8ec3365773a2 --- /dev/null +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/unused/20.medicalhold.dmm @@ -0,0 +1,934 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aG" = ( +/obj/structure/bed/chair{ + layer = 2.7; + dir = 4 + }, +/turf/open/floor/prison/whitegreen, +/area/template_noop) +"aZ" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/obj/item/bedsheet/medical, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"bl" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreen/east, +/area/template_noop) +"bm" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/obj/structure/inflatable/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"bs" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/template_noop) +"bv" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"bN" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/template_noop) +"cO" = ( +/obj/structure/machinery/door/airlock/almayer/marine{ + icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi'; + icon_state = "door_open" + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"dg" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"dp" = ( +/turf/open/floor/prison/whitegreen/east, +/area/template_noop) +"dK" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/prison/whitegreen/southeast, +/area/template_noop) +"eb" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"eO" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/prison/whitegreen, +/area/template_noop) +"fn" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreen, +/area/template_noop) +"go" = ( +/obj/structure/sign/prop3{ + desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/template_noop) +"gC" = ( +/obj/structure/largecrate/supply/medicine/medkits, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"ir" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/whitegreen/west, +/area/template_noop) +"it" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/template_noop) +"iK" = ( +/obj/structure/janitorialcart, +/turf/open/floor/prison, +/area/template_noop) +"jy" = ( +/turf/open/floor/prison/whitegreen/west, +/area/template_noop) +"kE" = ( +/turf/closed/wall/prison, +/area/template_noop) +"kG" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"kK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"kY" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/obj/structure/inflatable/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"kZ" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"lm" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/obj/structure/inflatable/popped, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"nj" = ( +/obj/structure/bed/chair/janicart, +/turf/open/floor/prison, +/area/template_noop) +"no" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/plating/prison, +/area/template_noop) +"nx" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/prison/whitegreencorner/east, +/area/template_noop) +"nJ" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"nR" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/largecrate/random/barrel, +/turf/open/floor/prison/whitegreen/north, +/area/template_noop) +"nX" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/obj/item/bedsheet/medical, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"of" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/obj/item/storage/beer_pack{ + pixel_y = 6; + layer = 3.1 + }, +/turf/open/floor/prison/whitegreen/southeast, +/area/template_noop) +"oy" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/template_noop) +"ph" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/template_noop) +"pR" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreen/east, +/area/template_noop) +"qb" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison/whitegreen/east, +/area/template_noop) +"qe" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreen/west, +/area/template_noop) +"qS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/template_noop) +"sk" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/obj/item/bedsheet/medical, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"tE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"tL" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreencorner, +/area/template_noop) +"uE" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/template_noop) +"uG" = ( +/obj/effect/decal/prints{ + pixel_y = -10 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"uU" = ( +/obj/item/storage/pill_bottle/tramadol/skillless, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"vA" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"xC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery{ + pixel_y = 4 + }, +/obj/item/storage/surgical_tray, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/template_noop) +"xY" = ( +/obj/structure/largecrate/random/case/double{ + pixel_y = 8; + pixel_x = -5 + }, +/obj/structure/largecrate/random/case/double{ + pixel_y = -4; + pixel_x = -5 + }, +/obj/structure/largecrate/random/case/double{ + pixel_y = -17; + pixel_x = -5 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"zm" = ( +/obj/structure/machinery/optable, +/obj/item/bedsheet/rainbow, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitegreen, +/area/template_noop) +"zG" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/template_noop) +"Be" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/template_noop) +"BS" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/whitegreen/north, +/area/template_noop) +"Cr" = ( +/obj/structure/largecrate/random/barrel/yellow{ + pixel_x = 6; + pixel_y = -11; + layer = 2.8 + }, +/obj/structure/largecrate/random/barrel/yellow{ + pixel_x = -13; + pixel_y = -4; + layer = 2.9 + }, +/obj/structure/largecrate/random/barrel/yellow{ + pixel_x = 6; + pixel_y = 6; + layer = 2.7 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"CA" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/template_noop) +"Df" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/prison/whitegreen/west, +/area/template_noop) +"Es" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/prison, +/area/template_noop) +"EB" = ( +/obj/structure/bed/chair{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"ES" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/template_noop) +"EZ" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/template_noop) +"Gl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"GI" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/inflatable/door, +/turf/open/floor/plating/prison, +/area/template_noop) +"GL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/template_noop) +"GT" = ( +/obj/structure/machinery/cryo_cell, +/turf/open/floor/plating/plating_catwalk/prison, +/area/template_noop) +"Hq" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreen/northwest, +/area/template_noop) +"Hw" = ( +/obj/item/ammo_casing{ + icon_state = "cartridge_1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/template_noop) +"HS" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/whitegreen/east, +/area/template_noop) +"IK" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.8 + }, +/obj/structure/largecrate/random/barrel{ + pixel_x = -8; + layer = 2.9 + }, +/obj/structure/largecrate/random/barrel{ + pixel_x = 13; + layer = 2.9 + }, +/obj/structure/largecrate/random/barrel{ + pixel_x = 3; + layer = 2.9; + pixel_y = -8 + }, +/turf/open/floor/prison/whitegreen/north, +/area/template_noop) +"JJ" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 4; + layer = 2.8 + }, +/turf/open/floor/prison/whitegreen/north, +/area/template_noop) +"JL" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreen, +/area/template_noop) +"JW" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/obj/structure/inflatable/popped, +/turf/open/floor/prison/whitegreen/west, +/area/template_noop) +"Kk" = ( +/obj/structure/machinery/door/airlock/almayer/marine{ + icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"Kp" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/template_noop) +"Ky" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitegreencorner, +/area/template_noop) +"KF" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"KJ" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/whitegreencorner/east, +/area/template_noop) +"Mi" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/prison/whitegreen/southwest, +/area/template_noop) +"NV" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/obj/structure/largecrate/supply/medicine/blood, +/turf/open/floor/prison/whitegreen/east, +/area/template_noop) +"Od" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/template_noop) +"Ou" = ( +/obj/structure/bed/chair{ + dir = 8; + layer = 2.7 + }, +/obj/effect/decal/cleanable/mucus{ + pixel_x = -16 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"OH" = ( +/obj/structure/largecrate/random/case/double{ + pixel_y = 8 + }, +/obj/structure/largecrate/random/case/double{ + pixel_y = -4 + }, +/obj/structure/largecrate/random/case/double{ + pixel_y = -18 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"Pa" = ( +/obj/structure/largecrate/supply/weapons/pistols, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/template_noop) +"Pd" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/prison/whitegreen/southwest, +/area/template_noop) +"Pt" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/template_noop) +"PE" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/template_noop) +"PS" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/obj/structure/inflatable, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"PV" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison/whitegreencorner/west, +/area/template_noop) +"QG" = ( +/turf/open/floor/prison/whitegreen/north, +/area/template_noop) +"Ro" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/template_noop) +"RG" = ( +/obj/structure/largecrate/supply/medicine/iv, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"Sz" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel, +/obj/structure/largecrate/random/barrel{ + pixel_x = 16; + layer = 3.1; + pixel_y = -4 + }, +/turf/open/floor/prison/whitegreen/north, +/area/template_noop) +"Tb" = ( +/obj/structure/bed/chair{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"TF" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreen/north, +/area/template_noop) +"TV" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"UI" = ( +/turf/open/floor/prison/whitegreen, +/area/template_noop) +"US" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/obj/structure/inflatable, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"Va" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/prison, +/area/template_noop) +"Vp" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/template_noop) +"VD" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, +/area/template_noop) +"WP" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/template_noop) +"WY" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"Xl" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"Yy" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/template_noop) +"Yz" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/plating/prison, +/area/template_noop) +"Zg" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, +/turf/closed/wall/prison, +/area/template_noop) +"Zp" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/machinery/defenses/bell_tower/md, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) + +(1,1,1) = {" +Hw +oy +bs +bv +WP +Be +Vp +nx +zG +uE +Kp +kE +Gl +no +Va +kE +kE +kE +"} +(2,1,1) = {" +kE +kE +kE +go +Hq +qe +KJ +kG +WY +PV +JW +ir +qe +qe +Df +Mi +Pa +kE +"} +(3,1,1) = {" +bN +Be +kE +kE +IK +TV +TV +TV +TV +TV +lm +TV +TV +TV +TV +eO +Yy +kE +"} +(4,1,1) = {" +GL +Be +eb +GI +JJ +TV +Zp +nJ +kK +TV +bm +TV +TV +TV +kK +UI +kE +kE +"} +(5,1,1) = {" +Be +oy +kE +kE +Sz +dg +TV +TV +TV +TV +bm +kK +TV +TV +TV +VD +kE +kE +"} +(6,1,1) = {" +kE +kE +kE +kE +nR +dg +TV +TV +TV +Cr +PS +EB +EB +EB +TV +JL +xC +Od +"} +(7,1,1) = {" +iK +kE +Ro +ES +TF +Xl +kY +US +US +Zg +Zg +aZ +TV +aZ +TV +PV +jy +Pd +"} +(8,1,1) = {" +nj +kE +EZ +Be +QG +TV +TV +uG +tE +kE +kE +sk +TV +aZ +TV +kZ +nJ +UI +"} +(9,1,1) = {" +Es +kE +GT +Be +QG +TV +kK +KF +RG +Zg +Zg +aZ +TV +nX +TV +Ky +TV +zm +"} +(10,1,1) = {" +kE +kE +GT +Be +BS +OH +TV +TV +TV +gC +WY +Ou +Tb +Tb +dg +fn +uU +UI +"} +(11,1,1) = {" +kE +Be +Be +Be +QG +xY +dg +TV +TV +TV +kZ +TV +TV +kK +dg +tL +dp +dK +"} +(12,1,1) = {" +PE +ph +Be +qS +QG +kK +TV +TV +TV +TV +vA +TV +TV +TV +TV +aG +CA +Od +"} +(13,1,1) = {" +kE +Be +Pt +bs +it +bl +pR +pR +pR +pR +pR +NV +qb +HS +pR +of +Od +Od +"} +(14,1,1) = {" +Od +Kk +cO +Kk +Od +Od +Yz +Yz +Yz +Yz +Yz +Od +cO +Kk +Kk +Od +Od +Od +"} diff --git a/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm b/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm new file mode 100644 index 000000000000..98b92955e2dd --- /dev/null +++ b/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm @@ -0,0 +1,1966 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"am" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box{ + pixel_y = 6 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"aE" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"aK" = ( +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison, +/area/fiorina/station/security) +"aX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"bb" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"bl" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"bm" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"bC" = ( +/obj/effect/landmark/survivor_spawner/fiorina_armory_riot_control, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"bO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"ce" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"ch" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"cn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"co" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"cr" = ( +/obj/structure/sign/poster/clf, +/turf/closed/wall/prison, +/area/fiorina/station/security) +"cI" = ( +/obj/structure/platform, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/security) +"cZ" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"do" = ( +/obj/structure/coatrack, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"dT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"eK" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"fd" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/prison, +/area/fiorina/station/security) +"fh" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"fs" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/prison, +/area/fiorina/station/security) +"fy" = ( +/obj/item/explosive/grenade/flashbang, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"fX" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"fZ" = ( +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/prison, +/area/fiorina/station/security) +"gk" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/reagent_container/glass/bottle/robot/antitoxin, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"gl" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"gI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/tool/pen, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"gT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"gV" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"hg" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"hI" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"hY" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"is" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"iK" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"jb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ji" = ( +/obj/item/device/flash, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"jI" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"jJ" = ( +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"jL" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/lz/near_lzII) +"jW" = ( +/obj/item/frame/table/almayer, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"ke" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"kX" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/storage/belt/shotgun, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"lv" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/security) +"lA" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/lz/near_lzII) +"lE" = ( +/obj/structure/window/reinforced, +/turf/open/floor/prison, +/area/fiorina/station/security) +"lF" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"lO" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/lz/near_lzII) +"lP" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/storage/box/pillbottles, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"lR" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"lZ" = ( +/obj/item/clothing/under/marine/ua_riot, +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"ma" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"mf" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/prison, +/area/fiorina/station/security) +"mn" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"mt" = ( +/obj/effect/spawner/random/gun/shotgun/midchance, +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison, +/area/fiorina/station/security) +"mD" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"nf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/nade_box/tear_gas, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"nl" = ( +/turf/template_noop, +/area/template_noop) +"np" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"nD" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"nN" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"oi" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + locked = 1 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"on" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/launcher/grenade/m81, +/obj/item/storage/pill_bottle/kelotane, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"oE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"oS" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"pa" = ( +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"pd" = ( +/obj/item/ammo_magazine/handful/shotgun/beanbag, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"pn" = ( +/obj/effect/acid_hole, +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/security) +"pp" = ( +/obj/item/ammo_casing, +/turf/open/floor/prison, +/area/fiorina/station/security) +"pE" = ( +/obj/item/clothing/glasses/sunglasses/blindfold, +/turf/open/floor/prison, +/area/fiorina/station/security) +"pN" = ( +/obj/item/ammo_box/magazine/shotgun/beanbag, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"pR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"pV" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/item/tool/kitchen/utensil/knife, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"qd" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"qw" = ( +/obj/effect/landmark/survivor_spawner/fiorina_armory_riot_control, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"qQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black_random, +/obj/item/folder/red{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"qX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"qY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 10 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"rg" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"rl" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/prison, +/area/fiorina/station/security) +"rP" = ( +/obj/item/reagent_container/spray/pepper, +/turf/open/floor/prison, +/area/fiorina/station/security) +"rR" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/storage/belt/marine, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"sj" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"sq" = ( +/turf/open/floor/prison, +/area/fiorina/station/security) +"sA" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"tf" = ( +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison, +/area/fiorina/station/security) +"th" = ( +/obj/item/weapon/baton, +/turf/open/floor/prison, +/area/fiorina/station/security) +"tl" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/red/west, +/area/fiorina/station/security) +"tv" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ty" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"tS" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/clothing/accessory/storage/holster, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"uh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flash, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"uQ" = ( +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"uX" = ( +/obj/item/ammo_magazine/shotgun/beanbag, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"vf" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/lz/near_lzII) +"vq" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/security) +"vS" = ( +/obj/structure/filingcabinet, +/obj/structure/filingcabinet{ + pixel_x = 16 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"wi" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"wF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp{ + pixel_x = -6; + pixel_y = 16 + }, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"wH" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/circuitboard/airlock, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"wJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison, +/area/fiorina/station/security) +"wW" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison, +/area/fiorina/station/security) +"xp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"xv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/security_space_law{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"xI" = ( +/obj/effect/landmark/survivor_spawner/fiorina_armory_cmb, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"xM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/phone{ + pixel_x = 7; + pixel_y = -16 + }, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 16 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"xW" = ( +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"yf" = ( +/obj/item/frame/table/reinforced, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"yn" = ( +/obj/item/weapon/classic_baton, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"yv" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/lz/near_lzII) +"yP" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"zb" = ( +/obj/structure/machinery/light/double/blue, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"zx" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/ammo_magazine/shotgun/beanbag, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"zA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 10 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"zI" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"Ac" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Ai" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"AD" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"AM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/security_space_law{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/book/manual/security_space_law{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/security_space_law{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"AY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/item/phone{ + pixel_x = 9; + pixel_y = -10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"Bd" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison, +/area/fiorina/station/security) +"BJ" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Cb" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"CO" = ( +/obj/item/ammo_magazine/handful/shotgun/beanbag, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"De" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"DH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"Ek" = ( +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/item/shard{ + icon_state = "large" + }, +/obj/item/stack/rods, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"ER" = ( +/obj/effect/landmark/survivor_spawner/fiorina_armory_riot_control, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"EV" = ( +/obj/item/frame/rack, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Fj" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"Fr" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/lz/near_lzII) +"Fw" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison, +/area/fiorina/station/security) +"FH" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"FK" = ( +/obj/item/frame/rack, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"FQ" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/item/weapon/gun/energy/taser, +/turf/open/floor/prison, +/area/fiorina/station/security) +"FZ" = ( +/obj/item/weapon/shield/riot, +/turf/open/floor/prison, +/area/fiorina/station/security) +"Gd" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/storage/pill_bottle/alkysine, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Gl" = ( +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"GH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/phone{ + pixel_y = -4 + }, +/obj/item/phone{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/tool/pen, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"GZ" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Ho" = ( +/obj/structure/window_frame/prison/reinforced, +/obj/item/shard, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"HF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/pepper, +/obj/item/clothing/glasses/sunglasses/sechud, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"HH" = ( +/obj/item/weapon/gun/launcher/grenade/m81/riot, +/turf/open/floor/prison, +/area/fiorina/station/security) +"HL" = ( +/obj/item/clothing/under/color/orange, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/lz/near_lzII) +"HW" = ( +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/obj/item/tool/screwdriver{ + pixel_x = 5; + pixel_y = -4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Ie" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"Iz" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/box/flashbangs, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"IG" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/prison, +/area/fiorina/station/security) +"IK" = ( +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/lz/near_lzII) +"JR" = ( +/obj/item/ammo_casing, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Kb" = ( +/obj/item/weapon/baton, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"KU" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"Lj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"Mg" = ( +/obj/structure/sign/poster/clf, +/turf/closed/wall/prison, +/area/fiorina/lz/near_lzII) +"Mp" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/obj/item/explosive/grenade/custom/teargas, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"MX" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"Ne" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/smg/mp5, +/obj/item/storage/belt/marine, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"NL" = ( +/obj/structure/platform, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/security) +"NN" = ( +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"Ox" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"OA" = ( +/obj/item/implanter/compressed, +/obj/structure/safe, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"OE" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"OV" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"Pt" = ( +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"PA" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"Qv" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"QC" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"QF" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"QJ" = ( +/turf/closed/wall/prison, +/area/fiorina/station/security) +"QV" = ( +/obj/item/frame/rack, +/obj/item/clothing/under/marine/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Re" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"RR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/emeraldgreen, +/obj/item/tool/lighter, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Sd" = ( +/obj/item/poster, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"Sl" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/security) +"Sm" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"Sn" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"Sp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"Su" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/rods, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"SD" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"SE" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"Tn" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/prison, +/area/fiorina/station/security) +"Tp" = ( +/obj/item/paper/crumpled, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"TO" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"UE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"UU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Va" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Vb" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"Vd" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"Vs" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"VF" = ( +/turf/closed/wall/prison, +/area/fiorina/lz/near_lzII) +"VG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/goggles/lowchance, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Wc" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"Wp" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/classic_baton, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Ws" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Wy" = ( +/obj/item/weapon/shield/riot, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"WB" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/fiorina/station/security) +"WG" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"WI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/phone{ + pixel_x = 6; + pixel_y = -15 + }, +/obj/item/phone{ + pixel_y = 7 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"WW" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"Xj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/handcuffs{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = -7; + pixel_y = 1 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"XA" = ( +/obj/item/storage/belt/marine, +/turf/open/floor/prison, +/area/fiorina/station/security) +"XO" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"XV" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/security) +"Yt" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/security) +"YH" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/weapon/gun/energy/taser, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"YI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 16 + }, +/obj/item/device/radio{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"YL" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"YS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/clothing/mask/cigarette, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_y = 8 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"YZ" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/item/shard/shrapnel, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Zg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + pixel_y = 9 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/security) +"Zi" = ( +/obj/structure/machinery/line_nexter, +/obj/item/stack/cable_coil, +/turf/open/floor/prison/red/west, +/area/fiorina/station/security) +"Zo" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) + +(1,1,1) = {" +nl +nl +nl +nl +nl +Fj +xW +FH +FH +FH +xW +Ie +Tn +Zg +vq +vq +Sl +vq +vq +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +"} +(2,1,1) = {" +nl +nl +nl +nl +nl +vq +Ac +is +is +is +Ac +vq +vq +vq +vq +on +yP +Vs +vq +vq +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +"} +(3,1,1) = {" +nl +nl +nl +nl +nl +pn +yf +ch +ch +hI +do +vq +FH +jJ +FH +jJ +NN +lZ +EV +vq +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +"} +(4,1,1) = {" +nl +nl +nl +nl +nl +vq +sA +sq +HH +sq +FH +PA +sq +tf +Gd +lP +Va +XA +FK +vq +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +"} +(5,1,1) = {" +vq +vq +vq +vq +vq +vq +qQ +wW +sq +sq +FH +PA +sq +sq +wJ +mf +gk +fZ +QV +vq +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +"} +(6,1,1) = {" +nl +nl +YL +lR +xW +lR +xW +FH +ER +pN +xW +vq +fd +fd +vq +lE +kX +aK +vq +vq +QJ +QJ +QJ +QJ +QJ +QJ +QJ +QJ +QJ +QJ +cr +"} +(7,1,1) = {" +nl +nl +YL +dT +GH +dT +xW +jI +FH +FH +bm +Su +YH +hg +PA +sq +sq +sq +PA +FH +sq +OA +QJ +YS +xW +ke +YL +FH +pV +Vb +QJ +"} +(8,1,1) = {" +nl +nl +YL +DH +xM +cn +HW +fy +Bd +tl +Zi +bO +WW +Pt +vq +BJ +rR +Ne +vq +tS +sq +Wp +QJ +Ai +sq +fh +PA +xW +hY +WG +wH +"} +(9,1,1) = {" +nl +vq +vq +qd +uX +sj +Tp +ER +mD +QJ +QJ +QJ +QJ +QJ +vq +vq +vq +vq +vq +Iz +FH +zx +QJ +Ws +sq +iK +YL +wF +jW +oE +QJ +"} +(10,1,1) = {" +nl +YL +lR +qw +lR +xW +pd +sq +sq +lF +Wy +Sd +FH +TO +Ox +vq +xW +xW +QJ +QJ +Qv +QJ +QJ +RR +sq +xW +QJ +YL +Ho +YL +cr +"} +(11,1,1) = {" +nl +YL +dT +WI +dT +xW +xI +rP +th +bC +FH +mt +rl +MX +Ox +QJ +Mp +xW +xW +xW +FH +xW +QJ +zA +sq +xW +QJ +pR +uQ +uQ +uQ +"} +(12,1,1) = {" +nl +YL +DH +AY +DH +xW +xW +FZ +sq +CO +hI +FH +FH +Sm +nD +IG +xW +wW +sq +sq +sq +xW +IG +xW +sq +xW +QJ +Mg +aE +nN +nN +"} +(13,1,1) = {" +vq +vq +qd +xW +xW +Kb +xW +ER +gI +QJ +Yt +Yt +XV +Yt +cI +QJ +Xj +sq +xW +xW +sq +QC +PA +FH +sq +xW +QJ +wi +nN +nN +nN +"} +(14,1,1) = {" +YL +Fw +ji +xW +pd +qw +JR +pp +QJ +QJ +lv +lv +XV +lv +NL +YL +Zo +sq +AM +YI +FQ +QC +PA +FH +sq +xW +QJ +SD +nN +nN +nN +"} +(15,1,1) = {" +YL +fs +xW +qw +xW +xW +xW +sq +IG +FH +FH +FH +vS +FH +Ox +YL +bl +sq +uh +am +sq +xW +QJ +xW +xW +xW +QJ +Mg +nN +nN +uQ +"} +(16,1,1) = {" +YL +zI +cZ +xW +UU +jb +YZ +pE +QJ +Cb +FH +fh +gl +FH +Ox +YL +nf +sq +HF +AD +sq +xW +QJ +vq +QJ +QJ +QJ +qY +Fr +Fr +uQ +"} +(17,1,1) = {" +vq +vq +XV +eK +eK +eK +XV +QJ +QJ +Qv +vq +vq +SE +ma +bb +QJ +qX +sq +sq +sq +sq +oS +oS +vq +VF +OE +Mg +uQ +Fr +Fr +uQ +"} +(18,1,1) = {" +nl +nl +nl +nl +nl +nl +eK +mn +Gl +Gl +fX +YL +jL +lA +jL +gV +VG +rg +xW +pa +GZ +lR +UE +vq +gT +aE +uQ +uQ +nN +nN +uQ +"} +(19,1,1) = {" +nl +nl +nl +nl +nl +nl +eK +Sn +Gl +WB +Re +YL +vf +HL +vf +gV +tv +zb +QJ +oi +QJ +aX +zA +vq +Wc +uQ +uQ +uQ +nN +nN +uQ +"} +(20,1,1) = {" +nl +nl +nl +nl +nl +nl +eK +co +De +Lj +xv +YL +IK +lO +yv +QJ +Sp +Ek +cr +OV +cr +gV +gV +vq +ty +uQ +uQ +uQ +nN +nN +uQ +"} +(21,1,1) = {" +nl +nl +nl +nl +nl +nl +XV +YL +YL +vq +YL +vq +nN +Vd +nN +xp +KU +uQ +xp +yn +xp +uQ +uQ +xp +nN +uQ +ce +uQ +XO +QF +np +"} diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm new file mode 100644 index 000000000000..b5181e0f77f6 --- /dev/null +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -0,0 +1,129482 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/open/space, +/area/space) +"aab" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "tele_ground1"; + teleport_x = 180; + teleport_x_offset = 200; + teleport_y = 50; + teleport_y_offset = 80; + teleport_z = 1; + teleport_z_offset = 1 + }, +/turf/open/space, +/area/space) +"aac" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/space) +"aad" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/space) +"aae" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/space) +"aaf" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/space) +"aag" = ( +/turf/open/floor/almayer_hull, +/area/space) +"aah" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space) +"aak" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "tele_ground1"; + teleport_x = 180; + teleport_x_offset = 200; + teleport_y = 50; + teleport_y_offset = 80; + teleport_z = 1; + teleport_z_offset = 1 + }, +/turf/open/space/basic, +/area/space) +"aam" = ( +/obj/structure/stairs, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"aaq" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/item/clothing/head/helmet/marine/tech{ + layer = 4.1; + pixel_y = 12 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/mob/living/simple_animal/mouse/brown{ + name = "rat" + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"aau" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/living/pilotbunks) +"aaC" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"aaE" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"aaF" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"aaH" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/stair_clone/upper) +"aaP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 2; + name = "\improper Brig Armoury"; + req_access = null; + req_one_access_txt = "1;3" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"aaY" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aba" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-3"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"abf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"abh" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/north2) +"abi" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/north2) +"abj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"abk" = ( +/obj/structure/window/reinforced/toughened, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"abn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"abs" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/north1) +"abw" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/north1) +"abB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"abE" = ( +/turf/closed/wall/almayer, +/area/almayer/living/basketball) +"abF" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"abG" = ( +/obj/structure/filingcabinet/security, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"abH" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"abK" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"abR" = ( +/obj/item/tank/phoron, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"abS" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"abT" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"abU" = ( +/obj/structure/machinery/computer/aa_console, +/obj/structure/bed/chair/ob_chair, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"acc" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"acd" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/sprays, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"acf" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/living/starboard_garden) +"aci" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"acj" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/structure/holohoop{ + dir = 4; + id = "basketball"; + side = "left" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"ack" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"acl" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"acm" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 + }, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"acn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 + }, +/obj/structure/holohoop{ + dir = 8; + id = "basketball"; + side = "right" + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"aco" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/chapel) +"acp" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"acq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"acr" = ( +/obj/structure/orbital_cannon{ + density = 0 + }, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"acs" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/warhead, +/obj/structure/machinery/light/built, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"acu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/vending/cola, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"acv" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/living/starboard_garden) +"acx" = ( +/turf/closed/wall/almayer, +/area/almayer/lifeboat_pumps/north2) +"acy" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"acz" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"acA" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"acI" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"acK" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"acL" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"acM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/terminal{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"acN" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/weapon_room) +"acQ" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"acS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -29 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"acU" = ( +/obj/structure/closet/basketball, +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"acW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"acX" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"acY" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"acZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/effect/landmark/map_item, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"add" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"ade" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"adj" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/stair_clone/upper) +"adq" = ( +/turf/closed/wall/almayer, +/area/almayer/lifeboat_pumps/north1) +"adr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"adu" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"adC" = ( +/obj/structure/surface/rack, +/obj/item/stock_parts/manipulator/nano{ + pixel_y = -9 + }, +/obj/item/stock_parts/scanning_module/adv{ + pixel_x = 4; + pixel_y = 15 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"adD" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"adF" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/living/basketball) +"adG" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/starboard_missiles) +"adO" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/starboard_atmos) +"adP" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"adR" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "\improper Pilot's Office"; + req_one_access_txt = "3;22;19" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) +"aea" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"aec" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north1) +"aed" = ( +/obj/structure/machinery/scoreboard_button{ + id = "basketball"; + name = "Scoreboard Reset Button"; + pixel_x = -20 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/living/basketball) +"aee" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north1) +"aef" = ( +/turf/open/floor/almayer, +/area/almayer/living/basketball) +"aeh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"aei" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"aej" = ( +/turf/closed/wall/almayer, +/area/almayer/living/officer_study) +"ael" = ( +/turf/closed/wall/almayer, +/area/almayer/living/cafeteria_officer) +"aep" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/airmix) +"aer" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices/flight) +"aet" = ( +/turf/closed/wall/almayer, +/area/almayer/living/starboard_garden) +"aex" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"aez" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"aeA" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"aeB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/rewire{ + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"aeC" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"aeE" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/shipboard/starboard_missiles) +"aeG" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 + }, +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/basketball) +"aeH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/basketball) +"aeI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"aeJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices/flight) +"aeK" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"aeL" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"aeM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"aeN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices/flight) +"aeO" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"aeP" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"aeQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/structure/machinery/computer/emails, +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/rewire{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"aeR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/computer/emails, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"aeT" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"aeW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"aeX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"aeY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"aeZ" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"afa" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"afb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/transmitter{ + dir = 4; + name = "Starboard Railgun Control Telephone"; + phone_category = "Command"; + phone_id = "Starboard Railgun Control"; + pixel_x = -26 + }, +/obj/item/device/binoculars, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"afj" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"afk" = ( +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"afm" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/space) +"afr" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"afs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/basketball) +"afy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"afE" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"afF" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices/flight) +"afG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"afH" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"afI" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"afJ" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) +"afK" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/living/cafeteria_officer) +"afL" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"afM" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/starboard_atmos) +"afN" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/starboard_atmos) +"afO" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) +"afP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/starboard_atmos) +"afQ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/starboard_atmos) +"afT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_missiles) +"afX" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"afZ" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"agb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/bloodsoup{ + pixel_y = 6 + }, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -8; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"agc" = ( +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"agf" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) +"agj" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/commandbunks) +"agq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"agr" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"ags" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"agu" = ( +/turf/open/floor/almayer, +/area/almayer/living/officer_study) +"agv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + access_modified = 1; + dir = 2; + name = "\improper Requisitions Break Room"; + req_one_access_txt = "19;21" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"agA" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/basketball) +"agH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/storage/fancy/cigar/tarbacks, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ + pixel_x = -4; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"agI" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/officer_study) +"agK" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/living/officer_study) +"agM" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 8; + name = "Waste Air Injector" + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"agO" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"agQ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cafeteria_officer) +"agT" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"agV" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) +"agY" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) +"ahc" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/wy_mre, +/obj/item/storage/box/wy_mre, +/turf/open/floor/almayer, +/area/almayer/living/cafeteria_officer) +"ahe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/storage/box/donkpockets, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"ahf" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/starboard_atmos) +"ahh" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/starboard_atmos) +"ahi" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock SU-2"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"aho" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/offices/flight) +"ahy" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/closed/wall/almayer, +/area/almayer/living/starboard_garden) +"ahz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"ahG" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/starboard_atmos) +"ahJ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/starboard_atmos) +"ahL" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"ahN" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"ahR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"ahS" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) +"ahV" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) +"aia" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/officer_study) +"aic" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"aid" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "\improper Officer's Study" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"aie" = ( +/obj/effect/landmark/railgun_computer, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"aig" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"aih" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "\improper Officer's Cafeteria" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cafeteria_officer) +"aij" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"ain" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) +"aiq" = ( +/turf/open/floor/almayer, +/area/almayer/living/cafeteria_officer) +"air" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/cafeteria_officer) +"ais" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/offices/flight) +"aiw" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/starboard_atmos) +"aiH" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"aiJ" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"aiQ" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"aiR" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"aiW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"aiX" = ( +/turf/closed/wall/almayer, +/area/almayer/living/pilotbunks) +"aje" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"ajf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"ajj" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/general_equipment) +"ajk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"ajl" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/upper_medical) +"ajm" = ( +/obj/structure/closet/secure_closet/securecom, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"ajs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"aju" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"ajv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"ajA" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"ajD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"ajE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"ajH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"ajI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"ajM" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/plating, +/area/almayer/living/offices/flight) +"ajT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"ajV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"ajY" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/space) +"ajZ" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"aka" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north1) +"akb" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"akc" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north1) +"akf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/weapon_room) +"akh" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/hallways/upper/midship_hallway) +"akn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/vehicle/powerloader{ + dir = 8 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/hallways/lower/vehiclehangar) +"ako" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"akt" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"aku" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar/tarbacktube, +/obj/item/clothing/head/headset{ + pixel_y = -7 + }, +/obj/item/tool/crowbar, +/obj/item/clothing/head/helmet/marine/pilottex{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"akv" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/head/headset{ + pixel_y = -7 + }, +/obj/item/tool/crowbar, +/obj/item/clothing/head/helmet/marine/pilot{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/device/camera{ + pixel_x = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"akw" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"akx" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"akz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"akA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"akC" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/starboard_missiles) +"akE" = ( +/obj/structure/machinery/door_control{ + id = "or2privacyshutter"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) +"akL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/door_control{ + id = "bot_uniforms"; + name = "Uniform Vendor Lockdown"; + pixel_x = 8; + pixel_y = 24; + req_access_txt = "31" + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"akQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"ald" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"alf" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"alg" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"alh" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"alk" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 1"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/closed/wall/almayer/research/containment/wall/purple, +/area/almayer/medical/containment/cell) +"alp" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"alw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Pilot's Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"aly" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/starboard_missiles) +"alD" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"alE" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) +"alL" = ( +/turf/closed/wall/almayer, +/area/almayer/command/telecomms) +"alO" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/upper_engineering) +"alR" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"alU" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/navigation) +"alW" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"alX" = ( +/turf/open/floor/almayer, +/area/almayer/command/cic) +"alZ" = ( +/turf/open/floor/almayer/red, +/area/almayer/command/cic) +"amb" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"amd" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"amg" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"amh" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"amk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/containment) +"amo" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ams" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"amu" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"amw" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering) +"amx" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"amz" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/starboard_missiles) +"amA" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"amE" = ( +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/structure/surface/rack, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"amF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"amH" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"amI" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"amM" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "cryo curtain" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/engineering/port_atmos) +"amX" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"amY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"ana" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"and" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"ang" = ( +/obj/item/clothing/head/welding{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"anm" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"anp" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"anq" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"anr" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"ans" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"anw" = ( +/obj/structure/machinery/flasher{ + id = "Containment Cell 1"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"anz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/machinery/photocopier, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"anM" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"anO" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"anP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"anU" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Dropship Control Bubble"; + req_access = null; + req_one_access_txt = "3;22;2;19" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) +"anV" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"anW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"aoa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"aoe" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/morgue) +"aog" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"aoh" = ( +/obj/structure/morgue/crematorium, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"aoi" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"aom" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"aop" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"aoq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"aor" = ( +/obj/structure/curtain/medical, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"aos" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/upper_medical) +"aov" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"aoy" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"aoz" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"aoA" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"aoC" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"aoI" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"aoJ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 1"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"aoK" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_display/research_cell{ + dir = 1; + id = "Containment Cell 5"; + name = "Cell 5 Control"; + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 5"; + name = "Containment Lockdown"; + pixel_x = -8; + pixel_y = -3; + req_one_access_txt = "19;28" + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"aoL" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"aoM" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"aoN" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"aoP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/telecomms) +"aoT" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aoW" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aoX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"apa" = ( +/obj/structure/surface/rack, +/obj/item/tool/screwdriver, +/obj/item/device/analyzer, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"ape" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"apg" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"api" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"apk" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/stair_clone/upper) +"apo" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"apq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"aps" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"apt" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"apz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "northcheckpoint"; + name = "North Checkpoint Shutters"; + req_one_access_txt = "3;12;19" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"apB" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/booniebars{ + pixel_y = -4 + }, +/obj/item/reagent_container/food/snacks/wrapped/booniebars, +/obj/item/reagent_container/food/snacks/wrapped/booniebars{ + pixel_y = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"apE" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/hangar) +"apL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"apR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/pipes/vents/pump/no_boom{ + name = "Secure Reinforced Air Vent"; + welded = 1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"apS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 + }, +/obj/item/storage/xeno_tag_case/full{ + pixel_y = 15 + }, +/obj/item/device/camera{ + pixel_x = -3; + pixel_y = 22 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"apU" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 2"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 8 + }, +/area/almayer/medical/containment/cell) +"apW" = ( +/obj/structure/machinery/telecomms/server/presets/common, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"apX" = ( +/obj/structure/machinery/telecomms/server/presets/medical, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"apY" = ( +/obj/structure/machinery/telecomms/server/presets/engineering, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"apZ" = ( +/obj/structure/machinery/telecomms/receiver/preset_left, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/radio_rad{ + pixel_x = 16; + pixel_y = 32 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"aqa" = ( +/obj/structure/machinery/telecomms/receiver/preset, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"aqb" = ( +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"aqf" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"aqg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"aqh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"aqm" = ( +/obj/item/bedsheet/brown, +/obj/structure/bed, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"aqn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"aqo" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/offices) +"aqp" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"aqq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"aqs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"aqu" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/weapon_room) +"aqw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"aqy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"aqz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"aqB" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"aqF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cic) +"aqG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/medical_science) +"aqH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"aqI" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/auxiliary_officer_office) +"aqJ" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"aqK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"aqL" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"aqN" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aqP" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 1"; + locked = 1; + name = "\improper Containment Cell 1" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Containment Cell 1"; + name = "\improper Containment Cell 1"; + unacidable = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"aqS" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"aqU" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/airoom) +"aqV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"aqY" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering) +"aqZ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_stern) +"arb" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"arg" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"arh" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/power/apc/almayer/north{ + cell_type = /obj/item/cell/hyper + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"ari" = ( +/obj/structure/surface/rack, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/item/storage/pouch/tools, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"arj" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/device/radio/headset, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"ark" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"arl" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) +"arm" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"arp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"arq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"arr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"ars" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"ary" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door_control{ + access_modified = 1; + id = "OTStore"; + name = "Shutters"; + pixel_y = -24; + req_one_access_txt = "35" + }, +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"arz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"arA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"arF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"arG" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"arH" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"arK" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"arP" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"arR" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) +"arT" = ( +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"arV" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"arX" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"asc" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"ase" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"asf" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"asm" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"asn" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/plating, +/area/almayer/medical/upper_medical) +"asr" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"asu" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"asw" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"asA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"asE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"asH" = ( +/obj/structure/machinery/telecomms/bus/preset_three, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"asI" = ( +/obj/structure/machinery/telecomms/bus/preset_two, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"asJ" = ( +/obj/structure/machinery/telecomms/bus/preset_four, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"asK" = ( +/obj/structure/machinery/telecomms/bus/preset_one, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"asL" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"asM" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/stair_clone/upper) +"asN" = ( +/obj/structure/machinery/computer/crew, +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) +"asQ" = ( +/obj/structure/surface/rack, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/folded_tent/cmd, +/obj/item/flag/plantable/ua, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"asR" = ( +/turf/open/floor/almayer/orange, +/area/almayer/command/cic) +"asT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"asU" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"asX" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"asY" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"asZ" = ( +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"ata" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/ladder{ + height = 2; + id = "cicladder1" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) +"atb" = ( +/obj/structure/ladder{ + height = 2; + id = "cicladder2" + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) +"atc" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"atf" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"atg" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"atk" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "tcomms_apc"; + name = "\improper Telecommunications Power Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"atm" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/telecomms) +"atn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"ato" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"atp" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"atq" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"atr" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"ats" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"att" = ( +/obj/structure/surface/table/almayer, +/obj/item/stock_parts/matter_bin, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/cell/high, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"atu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"atv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"atx" = ( +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"aty" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"atz" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 + }, +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"atH" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"atJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"atK" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/lifeboat) +"atM" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/lifeboat) +"atN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"atO" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"atP" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"atS" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"atT" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"auc" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown" + }, +/obj/effect/step_trigger/ares_alert/access_control, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"auf" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"aui" = ( +/obj/structure/machinery/telecomms/hub/preset, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"auj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"aum" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"auu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"auy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"auA" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"auB" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) +"auH" = ( +/obj/structure/machinery/door_control{ + id = "tcomms_apc"; + name = "Telecommuncation Power"; + pixel_x = -25 + }, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 2; + name = "Telecommunications"; + req_access_txt = "6" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"auK" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"auL" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"auO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) +"auQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/cic) +"auS" = ( +/obj/item/tool/warning_cone, +/obj/item/tool/warning_cone, +/obj/item/tool/warning_cone, +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"auT" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/command/cic) +"auU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"auV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"auW" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/port_point_defense) +"auX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"auZ" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"ava" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"avc" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"avd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"avo" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/powered/agent) +"avp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"avs" = ( +/turf/closed/wall/biodome, +/area/almayer/powered/agent) +"avu" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"avv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"avw" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/weapon_room) +"avx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"avB" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/navigation) +"avC" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered/agent) +"avF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/containment) +"avG" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/containment) +"avH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"avJ" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-5"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"avN" = ( +/obj/structure/machinery/telecomms/processor/preset_two, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"avO" = ( +/obj/structure/machinery/telecomms/processor/preset_three, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"avP" = ( +/obj/structure/machinery/telecomms/processor/preset_four, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"avQ" = ( +/obj/structure/machinery/telecomms/processor/preset_one, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"avR" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 6 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"avS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/cic) +"avU" = ( +/obj/effect/landmark/start/crew_chief, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"avV" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/bed/chair, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"avW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/gloves{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/storage/box/masks{ + pixel_x = 5 + }, +/obj/structure/closet/secure_closet/surgical{ + pixel_y = 30 + }, +/obj/item/reagent_container/glass/minitank{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"avY" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"avZ" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"awa" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"awd" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/pilotbunks) +"awe" = ( +/turf/open/floor/plating/almayer, +/area/almayer/living/starboard_garden) +"awi" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"awj" = ( +/obj/structure/machinery/photocopier, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"awk" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"awm" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/cic) +"awn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"awp" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Research Armory"; + name = "\improper Armory Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"awq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"awt" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cic) +"awu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"awv" = ( +/obj/structure/machinery/computer/telecomms/monitor, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"awx" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/command/telecomms) +"awy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"awz" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/cichallway) +"awA" = ( +/obj/structure/prop/almayer/computers/sensor_computer3{ + name = "weapon targetting computer" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"awB" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + req_one_access = null; + req_one_access_txt = "2;7" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"awC" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/port_missiles) +"awD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"awE" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"awF" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/numbertwobunks) +"awG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"awH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command, +/obj/item/device/megaphone, +/obj/structure/machinery/computer/cameras/almayer_brig{ + desc = "Used to access the various cameras in the security brig."; + dir = 8; + layer = 2.99; + name = "brig cameras console"; + pixel_x = 17; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"awQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = -2 + }, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = -2 + }, +/obj/item/device/multitool{ + pixel_x = 8 + }, +/obj/item/tool/screwdriver{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"awR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"awS" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "officers_mess"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/captain_mess) +"awW" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"awX" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"awZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm{ + pixel_x = 8; + pixel_y = 12 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"axa" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"axc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/item/tool/warning_cone{ + pixel_x = -20; + pixel_y = 18 + }, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"axe" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) +"axk" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/weapon_room) +"axl" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "Research Armory"; + name = "Research Armory"; + pixel_x = -27; + req_one_access_txt = "4;28" + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) +"axm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"axn" = ( +/obj/structure/sign/safety/rewire{ + layer = 2.4; + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/reagent_container/glass/beaker/large{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"axo" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/telecomms) +"axp" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cic) +"axu" = ( +/obj/structure/machinery/computer/telecomms/server, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"axw" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"axx" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axy" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axA" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axD" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"axE" = ( +/obj/structure/closet/toolcloset, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"axI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/industrial, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axL" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/cell/high, +/obj/item/clothing/glasses/welding, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axM" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axN" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axR" = ( +/obj/structure/machinery/shower, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/tinted{ + dir = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"axV" = ( +/obj/structure/machinery/telecomms/server/presets/command, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"axW" = ( +/obj/structure/machinery/telecomms/server/presets/security, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"axX" = ( +/obj/structure/machinery/telecomms/server/presets/squads, +/obj/structure/sign/safety/commline_connection{ + pixel_y = -32 + }, +/obj/structure/sign/safety/rad_shield{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"axY" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"aya" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering) +"ayb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"ayc" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north2) +"aye" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"ayi" = ( +/obj/structure/machinery/recharger, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"ayj" = ( +/obj/effect/landmark/start/cargo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"ayl" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"ayn" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"ayo" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PU-2"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"ayq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"ayr" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17; + pixel_y = 8 + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 8; + pixel_x = 17; + pixel_y = -6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"ays" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cic) +"ayu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"ayv" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) +"ayw" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/navigation) +"ayz" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/command/cic) +"ayD" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"ayI" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -4 + }, +/obj/item/clothing/glasses/welding{ + pixel_y = 6 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"ayK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"ayL" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"ayM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"ayQ" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"ayR" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"ayV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"ayW" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"ayX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/structure/sign/catclock{ + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"ayZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"aza" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"azc" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"azd" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/command/telecomms) +"aze" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering) +"azg" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"azh" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"azi" = ( +/obj/effect/spawner/random/tool, +/obj/structure/surface/rack, +/obj/item/cell/high, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"azk" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north2) +"azl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/offices/flight) +"azo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"azp" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"azq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"azr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"azs" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/rods{ + amount = 40 + }, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"azt" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"azw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"azy" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"azA" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"azC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"azD" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"azJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + req_one_access_txt = "3;19;22" + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"azL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"azU" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"azW" = ( +/obj/structure/machinery/door/window/westright{ + dir = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"azZ" = ( +/obj/structure/machinery/keycard_auth, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aAd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aAf" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"aAj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cic) +"aAn" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"aAq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"aAr" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/surface/rack, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"aAy" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"aAA" = ( +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/command/cic) +"aAB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/groundside_operations{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/machinery/door/window/westright, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aAC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aAE" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aAF" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel" + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aAG" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"aAK" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"aAL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_x = -1; + pixel_y = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"aAP" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/obj/structure/machinery/door_control{ + id = "cic_exterior"; + name = "CIC Door Control"; + normaldoorcontrol = 1; + pixel_y = -14; + req_one_access_txt = "19" + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aAT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"aAU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aAZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aBb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aBc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aBd" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/morgue) +"aBe" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 2"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 4 + }, +/area/almayer/medical/containment/cell) +"aBf" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + name = "Telecommunications"; + req_access_txt = "6" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"aBh" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"aBi" = ( +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/tool/pen, +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aBk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"aBl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"aBm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aBn" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"aBo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"aBp" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"aBr" = ( +/obj/structure/ladder{ + height = 2; + id = "engineeringladder" + }, +/turf/open/floor/plating/almayer, +/area/almayer/engineering/upper_engineering) +"aBs" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aBt" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/obj/item/device/radio/marine{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"aBu" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/command/lifeboat) +"aBw" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/storage/box/cups, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"aBx" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"aBz" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/item/folder/black_random, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"aBA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/command/lifeboat) +"aBD" = ( +/obj/structure/closet/basketball, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"aBE" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"aBG" = ( +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/command/lifeboat) +"aBH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"aBI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aBP" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + req_one_access = list(36) + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/synthcloset) +"aBR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/glass, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/item/device/whistle, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"aBS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/cic) +"aBW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) +"aBX" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"aBZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 4; + layer = 2.99; + pixel_y = 4 + }, +/obj/structure/machinery/computer/almayer_control{ + dir = 4; + layer = 2.99; + pixel_y = 26 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aCa" = ( +/obj/structure/machinery/door/window/westright{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aCb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/computer/crew/alt{ + dir = 8; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aCd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"aCf" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/plating, +/area/almayer/command/cic) +"aCj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aCk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cic) +"aCo" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/morgue) +"aCp" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"aCt" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"aCu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"aCw" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/almayer/medical/morgue) +"aCA" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"aCC" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"aCD" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 4; + pixel_x = -16 + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"aCR" = ( +/obj/structure/machinery/door_control{ + id = "containmentlockdown_S"; + name = "Containment Lockdown"; + pixel_y = 28; + req_one_access_txt = "28" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"aCX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aCZ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/computerlab) +"aDa" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aDb" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/command/telecomms) +"aDe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) +"aDh" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"aDi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/window/westright, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aDj" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering) +"aDm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aDn" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) +"aDo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aDr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aDs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aDt" = ( +/obj/structure/machinery/cm_vending/clothing/military_police_warden, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) +"aDv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aDB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aDC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aDD" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) +"aDE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"aDH" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aDK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"aDO" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/command/lifeboat) +"aDQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/lifeboat) +"aDS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"aDU" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4 + }, +/obj/item/tool/minihoe{ + pixel_x = 4 + }, +/obj/item/tool/minihoe{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -2 + }, +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/grunt_rnr) +"aDX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"aEe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"aEf" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"aEg" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/command/lifeboat) +"aEi" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) +"aEj" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/helmet/marine/pilot, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"aEm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/working_joe{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"aEo" = ( +/obj/structure/closet/emcloset{ + pixel_x = 8 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"aEr" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"aEA" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"aEB" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"aEC" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aED" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) +"aEG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) +"aEM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails, +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"aEN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) +"aEO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) +"aEQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"aES" = ( +/turf/closed/wall/almayer, +/area/almayer/living/bridgebunks) +"aET" = ( +/turf/closed/wall/almayer, +/area/almayer/living/captain_mess) +"aEW" = ( +/turf/closed/wall/almayer, +/area/almayer/living/numbertwobunks) +"aEZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves{ + pixel_x = -4; + pixel_y = 13 + }, +/obj/item/storage/box/masks{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/tool/hand_labeler{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/reagent_container/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"aFa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"aFe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"aFf" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/research, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"aFg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/briefcase, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"aFh" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aFi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/telecomms) +"aFl" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"aFm" = ( +/obj/structure/surface/table/almayer, +/obj/item/shard, +/obj/item/tool/extinguisher, +/obj/item/stock_parts/scanning_module, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFn" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFr" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"aFu" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFv" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/obj/item/circuitboard/apc, +/obj/item/tool/screwdriver, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFw" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/analyzer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFy" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFz" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/yellow, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFA" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"aFB" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"aFD" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"aFG" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "vehicle1door"; + name = "Vehicle Bay One" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"aFI" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFJ" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"aGa" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"aGb" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge1" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"aGg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_four) +"aGj" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"aGk" = ( +/obj/structure/machinery/door_control{ + id = "ARES Operations Left"; + name = "ARES Operations Shutter"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"aGm" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"aGn" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"aGp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + layer = 3.3; + pixel_x = -17 + }, +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aGq" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/command/cic) +"aGr" = ( +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"aGs" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"aGv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"aGz" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "cryo curtain" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/port_atmos) +"aGA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"aGH" = ( +/obj/structure/machinery/computer/ordercomp, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aGN" = ( +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"aGP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"aGQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"aGS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) +"aGV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"aGW" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"aGX" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"aGY" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"aGZ" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/numbertwobunks) +"aHa" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/morgue) +"aHe" = ( +/turf/closed/wall/almayer, +/area/almayer/command/lifeboat) +"aHl" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"aHn" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/door/window/westleft, +/obj/structure/window/reinforced/tinted/frosted, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/numbertwobunks) +"aHq" = ( +/turf/closed/wall/almayer, +/area/almayer/command/computerlab) +"aHr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aHs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/telecomms) +"aHu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + no_panel = 1; + req_one_access = null; + req_one_access_txt = "2;7"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ + id = "engie_store" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"aHv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + no_panel = 1; + req_one_access = null; + req_one_access_txt = "2;7"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ + id = "engie_store" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"aHw" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering Lounge" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"aHK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aHM" = ( +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"aHR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"aHS" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 8; + name = "Mixed Air Injector" + }, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"aHU" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"aHX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/numbertwobunks) +"aHY" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/starboard_missiles) +"aHZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"aId" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"aIf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aIh" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"aIl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"aIo" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "researchlockdownext_windoor"; + name = "\improper Research Windoor Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/medical/medical_science) +"aIq" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"aIr" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"aIv" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"aIw" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"aIx" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"aIy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) +"aIB" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"aIC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/transmitter/rotary{ + name = "Researcher Office Telephone"; + phone_category = "Almayer"; + phone_id = "Research"; + pixel_y = 6 + }, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_container/glass/beaker/large{ + pixel_x = -6 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"aID" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"aIP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/containment) +"aIQ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + access_modified = 1; + name = "\improper XO's Quarters"; + req_access = null; + req_access_txt = "1" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/numbertwobunks) +"aIT" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 2; + name = "Telecommunications"; + req_access_txt = "6" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"aIU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aIV" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"aIX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/tankerbunks) +"aIY" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/storage/firstaid/regular, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"aJc" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Commanding Officer's Mess" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/captain_mess) +"aJf" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aJg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"aJh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering) +"aJi" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/cable_coil, +/obj/item/clothing/glasses/meson, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"aJj" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera_film, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"aJk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"aJl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"aJn" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 1; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/containment) +"aJp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/command/cichallway) +"aJq" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 28 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"aJw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"aJG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/command/cic) +"aJI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"aJJ" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/bed/chair, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"aJU" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"aKa" = ( +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"aKf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"aKg" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"aKi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"aKk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"aKn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"aKo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"aKq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"aKs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + indestructible = 1; + name = "ARES Chamber Lockdown"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/obj/structure/machinery/door_control{ + id = "ARES Railing"; + indestructible = 1; + name = "ARES Chamber Railings"; + needs_power = 0; + pixel_x = 24; + req_one_access_txt = "91;92" + }, +/obj/structure/machinery/door/poddoor/railing{ + closed_layer = 4.1; + density = 0; + dir = 2; + id = "ARES Railing"; + layer = 2.1; + open_layer = 2.1; + pixel_x = -1; + pixel_y = -1; + unacidable = 0; + unslashable = 0 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"aKu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"aKv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"aKy" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"aKz" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"aKE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"aKF" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"aKG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"aKH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"aKN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/accessory/red, +/obj/item/clothing/head/bowlerhat{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/item/clothing/suit/storage/webbing, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"aKO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = 4 + }, +/obj/item/storage/fancy/cigarettes/lady_finger{ + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"aKQ" = ( +/turf/closed/wall/almayer/outer, +/area/space) +"aKR" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/starboard_point_defense) +"aKS" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"aKU" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"aKV" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"aLc" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"aLp" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"aLx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/door_control{ + id = "DeployWorkR"; + name = "Workshop Shutters"; + pixel_x = -7; + pixel_y = -26; + req_one_access_txt = "3;22;2;19;7" + }, +/obj/structure/surface/rack, +/obj/item/parachute{ + pixel_y = 8 + }, +/obj/item/parachute, +/obj/item/parachute{ + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/hallways/lower/repair_bay) +"aLE" = ( +/obj/docking_port/stationary/emergency_response/external/hangar_starboard{ + dwidth = 8 + }, +/turf/open/space, +/area/space) +"aLJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"aLL" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/starboard_point_defense) +"aLM" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aLS" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/bed/chair, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"aLT" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/alpha) +"aLW" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_point_defense) +"aLZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/paper_bin/wy, +/obj/structure/machinery/computer/cameras/containment{ + dir = 4; + layer = 2.981; + name = "Research Cameras"; + pixel_y = 16 + }, +/obj/item/clothing/accessory/stethoscope, +/obj/structure/closet/secure_closet/professor_dummy{ + pixel_x = -32 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"aMd" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 5; + pixel_y = 16 + }, +/obj/structure/filingcabinet/disk{ + density = 0; + pixel_x = -11; + pixel_y = 16 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"aMf" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"aMg" = ( +/obj/structure/sign/safety/intercom{ + layer = 2.9; + pixel_x = -6; + pixel_y = 29 + }, +/obj/structure/machinery/botany/extractor{ + density = 0; + pixel_x = 15; + pixel_y = 16 + }, +/obj/item/device/flashlight/pen{ + pixel_x = 14; + pixel_y = 15 + }, +/obj/structure/machinery/vending/hydroseeds{ + density = 0; + pixel_x = -7; + pixel_y = 16; + req_access_txt = "28" + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"aMl" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"aMm" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/crowbar, +/obj/structure/sign/safety/rad_shield{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aMo" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/telecomms) +"aMq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aMt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"aMw" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aMx" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0; + vend_y_offset = 0 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"aMy" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/starboard) +"aMz" = ( +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"aMB" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"aMC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"aMD" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/toy/deck, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"aME" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/airmix) +"aMG" = ( +/obj/structure/machinery/microwave{ + pixel_y = 7 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"aMH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/landmark/start/marine/smartgunner/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"aMI" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/marine/spec/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"aML" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"aMO" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"aMP" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/squads/alpha) +"aMQ" = ( +/obj/structure/machinery/cm_vending/clothing/tl/alpha{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"aMT" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"aMU" = ( +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"aMY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"aNc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"aNi" = ( +/turf/closed/wall/almayer, +/area/almayer/living/chapel) +"aNl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"aNm" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"aNr" = ( +/obj/effect/landmark/start/chef, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"aNs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"aNx" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"aNE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/midship_hallway) +"aNI" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"aNO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"aNQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"aNT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"aNW" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/starboard_hallway) +"aNY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"aOd" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/containment) +"aOe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"aOq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aOr" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aOs" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aOt" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) +"aOy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"aOz" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/squads/alpha) +"aOB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aOC" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aOE" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north2) +"aOF" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) +"aOG" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aOH" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aOK" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) +"aOL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/surface/table/almayer, +/obj/item/facepaint/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"aOM" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aON" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"aOQ" = ( +/obj/structure/closet/crate, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"aOR" = ( +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"aOS" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_a_s) +"aOU" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) +"aOV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"aOW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/obj/structure/window/reinforced, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + pixel_x = 12; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + pixel_x = 12 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"aPa" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"aPe" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"aPf" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"aPg" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/table, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"aPi" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"aPj" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"aPl" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"aPn" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"aPo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"aPr" = ( +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) +"aPw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/command/lifeboat) +"aPx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D2"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"aPz" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"aPB" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/command/cic) +"aPC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"aPD" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aPE" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"aPH" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"aPI" = ( +/turf/open/floor/almayer/blue, +/area/almayer/command/cic) +"aPJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/research/containment/corner2, +/area/almayer/medical/containment/cell) +"aPK" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer, +/area/almayer/squads/alpha) +"aPN" = ( +/obj/structure/ladder{ + height = 2; + id = "ForeStarboardMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/s_bow) +"aPO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"aPS" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"aPT" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"aPU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"aPV" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"aQb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"aQg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/command/cic) +"aQp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"aQq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"aQr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"aQx" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "hypersleep curtain" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) +"aQy" = ( +/obj/structure/transmitter{ + dir = 8; + name = "RO Office Telephone"; + phone_category = "Offices"; + phone_id = "RO Office"; + pixel_x = 16 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"aQz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"aQF" = ( +/turf/closed/wall/almayer, +/area/almayer/living/offices) +"aQG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"aQH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"aQL" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/bravo) +"aQM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/engineering_guide{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"aQN" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer, +/area/almayer/squads/bravo) +"aQT" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) +"aQW" = ( +/obj/structure/machinery/vending/cola{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"aQZ" = ( +/obj/structure/machinery/botany/editor{ + density = 0; + pixel_x = 5; + pixel_y = 16 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 5; + pixel_y = 24 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"aRd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/window/westright{ + dir = 4; + req_access_txt = "28" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "researchlockdownext_windoor"; + name = "\improper Research Windoor Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"aRi" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"aRj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"aRo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"aRq" = ( +/obj/structure/closet/secure_closet/staff_officer/gear, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aRt" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/command/cic) +"aRu" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"aRv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aRx" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"aRy" = ( +/turf/open/floor/almayer, +/area/almayer/living/offices) +"aRA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"aRB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/snacks/toastedsandwich{ + pixel_y = 5 + }, +/obj/structure/sign/poster{ + icon_state = "poster8"; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aRC" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aRE" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aRF" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue Processing"; + req_access_txt = "25"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"aRJ" = ( +/obj/structure/ladder{ + height = 2; + id = "med1" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = -32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/refridgeration{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/upper_medical) +"aRK" = ( +/obj/structure/ladder{ + height = 2; + id = "med2" + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/upper_medical) +"aRL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/port_midship_hallway) +"aRP" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/squads/bravo) +"aRS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"aRT" = ( +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"aRU" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"aRX" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"aRZ" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/squads/bravo) +"aSa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"aSb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/upper_medical) +"aSk" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"aSn" = ( +/obj/item/stack/sheet/mineral/plastic{ + amount = 15 + }, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"aSo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/hydroponics) +"aSp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"aSq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aSt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda/beer, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aSx" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aSA" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"aSE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"aSH" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/squads/bravo) +"aSI" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"aSJ" = ( +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"aSO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_two) +"aTa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"aTf" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north1) +"aTg" = ( +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"aTj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"aTk" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"aTl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"aTm" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"aTn" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/offices) +"aTr" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/offices) +"aTv" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/bravo) +"aTw" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"aTx" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"aTy" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"aTz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aTA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -1 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -8 + }, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aTB" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"aTE" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aTG" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aTT" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 4 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -2 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"aTW" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"aTY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) +"aTZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"aUa" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north1) +"aUd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 1; + name = "\improper Officer's Bunks"; + req_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/port_atmos) +"aUe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cichallway) +"aUi" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"aUj" = ( +/obj/structure/machinery/cm_vending/clothing/tl/bravo{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"aUk" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aUl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aUm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aUo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"aUp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/donut_box, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aUq" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"aUw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aUB" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"aUC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/tofukabob, +/obj/item/reagent_container/food/snacks/tofubreadslice, +/obj/item/reagent_container/food/snacks/tofubreadslice, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aUH" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/port_atmos) +"aUL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/cigbutt, +/obj/item/ashtray/glass, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"aUM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/offices) +"aUY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"aUZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"aVd" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) +"aVf" = ( +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"aVg" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Officer's Quarters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"aVi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"aVk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"aVm" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/starboard_hallway) +"aVo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"aVr" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/structure/sign/safety/fridge{ + pixel_x = 32 + }, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aVC" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"aVF" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) +"aVG" = ( +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/cichallway) +"aVH" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"aVI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 5 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"aVK" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"aVL" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"aVM" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"aVR" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge3" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"aVU" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aVV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aVW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"aVX" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Officer's Quarters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"aWb" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17; + pixel_y = 8 + }, +/obj/structure/machinery/door_control/brbutton{ + id = "engie_store"; + name = "Emergency Storage"; + pixel_x = -2; + pixel_y = 26; + req_one_access_txt = "6" + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4; + pixel_x = -17; + pixel_y = -6 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/ce_room) +"aWc" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"aWg" = ( +/obj/structure/machinery/door_control{ + id = "CMP Office Shutters"; + name = "CMP Office Shutters"; + pixel_y = 32; + req_one_access_txt = "24;31" + }, +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_y = 24; + req_access_txt = "3" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/chief_mp_office) +"aWk" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aWm" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"aWn" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"aWo" = ( +/obj/structure/pipes/unary/outlet_injector, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"aWp" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + id_tag = "waste_lower_out" + }, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"aWq" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aWt" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aWu" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"aWw" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/gym) +"aWz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"aWD" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/offices) +"aWE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Conference and Office Area" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"aWF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"aWM" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/upper/fore_hallway) +"aWT" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"aWV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"aWW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"aWZ" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/airmix) +"aXb" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"aXc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = 6; + pixel_y = 4 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"aXe" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"aXh" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aXj" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aXx" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/port_atmos) +"aXA" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/engineering/port_atmos) +"aXD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"aYd" = ( +/obj/structure/dropship_equipment/medevac_system, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"aYt" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"aYu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aYz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"aYC" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"aYE" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south2) +"aYH" = ( +/obj/structure/safe/cl_office, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"aYQ" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_one) +"aYR" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) +"aZe" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"aZf" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"aZr" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"aZs" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"aZv" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_p) +"aZy" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"aZz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"aZC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"aZF" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/stair_clone/upper) +"aZI" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"aZK" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"aZL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZO" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZP" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZQ" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZR" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZV" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZW" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZX" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZY" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZZ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"baf" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"bag" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"baw" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"baG" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"baH" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"baI" = ( +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"baJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"baM" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"baN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"baR" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"baS" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"baW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"baX" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"baZ" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/lower_medical_lobby) +"bba" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"bbd" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_one) +"bbe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"bbf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bbi" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/medical) +"bbr" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"bbs" = ( +/turf/closed/wall/almayer, +/area/almayer/living/cryo_cells) +"bby" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"bbz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"bbA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"bbS" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/starboard_point_defense) +"bbV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"bbY" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bbZ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"bca" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bcb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil{ + icon_state = "dropship2" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bcc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bcd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bcg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/bed/sofa/south/white/left{ + pixel_y = 16 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/maint/upper/u_m_p) +"bcm" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/hangar) +"bco" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bcp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bct" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/maint/upper/u_a_p) +"bcw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bcx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bcz" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"bcA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"bcC" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/medbay, +/obj/structure/sign/safety/ref_chem_storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"bcD" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/chemistry) +"bcE" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bcK" = ( +/obj/structure/machinery/smartfridge/chemistry, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/chemistry) +"bcL" = ( +/obj/structure/machinery/door_control{ + id = "or01"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_one) +"bcM" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"bcP" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"bcR" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) +"bcS" = ( +/obj/structure/machinery/door_control{ + id = "or1privacyshutter"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) +"bcV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"bcZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"bda" = ( +/obj/structure/machinery/door_control{ + id = "or02"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_two) +"bdd" = ( +/turf/closed/wall/almayer, +/area/almayer/living/briefing) +"bdg" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/briefing) +"bdj" = ( +/turf/open/floor/almayer, +/area/almayer/squads/req) +"bdk" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"bdl" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"bdm" = ( +/obj/structure/machinery/door_control{ + id = "crate_room"; + name = "storage shutters"; + pixel_x = -25; + pixel_y = -1 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bdr" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"bds" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bdv" = ( +/obj/structure/machinery/cm_vending/clothing/leader/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bdw" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/cryo_cells) +"bdy" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_point_defense) +"bdz" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"bdA" = ( +/obj/structure/machinery/cm_vending/clothing/medic/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bdC" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bdD" = ( +/obj/structure/machinery/cm_vending/clothing/engi/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bdH" = ( +/turf/open/space/basic, +/area/space) +"bdI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bdJ" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bdK" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bdL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bdM" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bdO" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bdU" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bdV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bdY" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"bea" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"beg" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bei" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"bej" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"ben" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"bep" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"ber" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "north_central_checkpoint"; + name = "North Checkpoint Shutters"; + req_one_access_txt = "3;12;19" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bet" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/chemistry) +"bev" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"bew" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"bez" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_one) +"beE" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"beH" = ( +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"beL" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"beN" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -25 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"beP" = ( +/obj/item/stack/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/almayer, +/area/almayer/squads/alpha_bravo_shared) +"beQ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/living/briefing) +"beR" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"beS" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"beT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"beU" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"beV" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/marine/leader/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"beW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"beZ" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"bfd" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"bfl" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/cryo_cells) +"bfm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/cryo_cells) +"bfn" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"bfo" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/cryo_cells) +"bfs" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/l_f_s) +"bft" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"bfu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/squads/alpha) +"bfw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"bfx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"bfy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"bfz" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"bfC" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"bfD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"bfE" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"bfJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/handheld1, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bfK" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/comp_closed, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bfL" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bfO" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"bfV" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bfY" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/comp_open, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bfZ" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bgj" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bgk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 3 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/chemistry) +"bgl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"bgm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"bgn" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_two) +"bgr" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"bgs" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_two) +"bgt" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_two) +"bgu" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/chemistry) +"bgv" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or01"; + name = "Operating Theatre 1" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_one) +"bgw" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "or2privacyshutter"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/medical/operating_room_two) +"bgy" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or02"; + name = "Operating Theatre 2" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_two) +"bgz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"bgA" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"bgC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_one) +"bgK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) +"bgM" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/upper/midship_hallway) +"bgN" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"bgO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"bgP" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"bgR" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"bgU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"bgW" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"bgY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"bhf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/telecomms/broadcaster/preset_left, +/obj/structure/sign/safety/laser{ + pixel_y = 32 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"bhg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"bho" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"bhq" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"bhx" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/chapel) +"bhy" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"bhG" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bhI" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"bhJ" = ( +/obj/structure/machinery/cm_vending/clothing/staff_officer{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"bhR" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"bhT" = ( +/obj/structure/cargo_container/lockmart/mid{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bhU" = ( +/obj/structure/cargo_container/lockmart/right{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bhV" = ( +/obj/structure/ladder/fragile_almayer{ + height = 2; + id = "kitchen" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"biq" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/chemistry) +"biu" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Chemistry Laboratory"; + req_access_txt = "20"; + req_one_access = null + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/chemistry) +"biy" = ( +/obj/structure/pipes/unary/freezer, +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/sign/safety/autodoc{ + pixel_x = 20; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) +"biA" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/operating_room_three) +"biC" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/access_button/airlock_exterior, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"biF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller/surgical, +/obj/item/roller/surgical, +/obj/item/roller/surgical, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/folded_tent/med{ + pixel_x = -8; + pixel_y = 14 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"biJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"biL" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) +"biV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/starboard_garden) +"bjg" = ( +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"bjk" = ( +/obj/structure/machinery/door_control{ + id = "perma_lockdown_2"; + name = "Maint Lockdown Shutters"; + pixel_y = -20; + req_one_access_txt = "24;31" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -34 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"bjs" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"bjt" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"bju" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"bjv" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"bjA" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) +"bjD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"bjQ" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"bjR" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bjS" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bjZ" = ( +/obj/structure/machinery/cm_vending/clothing/marine/snowflake, +/turf/open/floor/almayer/cargo, +/area/almayer/living/gym) +"bkb" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"bkd" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bkg" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"bkh" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bko" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bks" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bky" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) +"bkz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Nurse Office"; + req_access_txt = "20"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lockerroom) +"bkA" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/chemistry) +"bkE" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "or1privacyshutter"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/medical/operating_room_one) +"bkM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/maint/upper/u_m_p) +"bkN" = ( +/obj/item/storage/firstaid/toxin{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"bkS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"bkT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"bkU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/landmark/late_join, +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/start/senior, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"blf" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"bli" = ( +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 6"; + name = "Cell 6" + }, +/obj/structure/sign/safety/six{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"blj" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"bll" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"bln" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 3; + pixel_y = 27 + }, +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"blp" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/lighter/zippo, +/obj/item/toy/dice/d20, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/toy/dice{ + pixel_x = 10; + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"blq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + access_modified = 1; + dir = 2; + name = "Firing Range"; + req_access = null; + req_one_access_txt = "2;4;7;9;21" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"bls" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/living/basketball) +"blw" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter, +/obj/structure/machinery/faxmachine/uscm, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"blA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"blB" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"blJ" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"blZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lockerroom) +"bmb" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"bmc" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or03"; + name = "Operating Theatre 3" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_three) +"bmd" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or04"; + name = "Operating Theatre 4" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_four) +"bmh" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = 13; + pixel_y = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"bmi" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_three) +"bmj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_three) +"bmk" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_four) +"bml" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"bmn" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_lobby) +"bmp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"bmr" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"bmv" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 2; + no_panel = 1; + not_weldable = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"bmz" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = 10 + }, +/obj/item/reagent_container/food/snacks/hotchili, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"bmB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer/plating_striped, +/area/almayer/squads/req) +"bmC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-y" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bmD" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"bmF" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"bmO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"bmW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"bmX" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) +"bng" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/offices) +"bni" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bnj" = ( +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/chemistry) +"bno" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"bnp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/squads/bravo) +"bnr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"bnt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"bnu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"bny" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"bnA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"bnB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"bnH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/tool/warning_cone, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bnI" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_lobby) +"bnR" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"bnS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/megaphone, +/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"bnT" = ( +/obj/structure/machinery/door_control{ + id = "or03"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_three) +"bnX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"bnZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"bof" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"boh" = ( +/obj/structure/machinery/door_control{ + id = "or04"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_four) +"bom" = ( +/obj/structure/sign/safety/south{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"bop" = ( +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering/port) +"boq" = ( +/obj/structure/bed/chair/comfy/alpha, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"bos" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/s_bow) +"boy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"boz" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"boA" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/req) +"boB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"boV" = ( +/obj/structure/cargo_container/wy/left, +/obj/structure/prop/almayer/minigun_crate{ + pixel_x = 1; + pixel_y = 39 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"boX" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"boY" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"bpa" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"bpd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_missiles) +"bpe" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"bpj" = ( +/obj/structure/dropship_equipment/fulton_system, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"bpo" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/regular, +/obj/item/clothing/glasses/regular, +/obj/item/clothing/glasses/regular, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"bpv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "south_central_checkpoint"; + name = "South Checkpoint Shutters"; + req_one_access_txt = "3;12;19" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bpw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"bpz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"bpA" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"bpC" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"bpG" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"bpH" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"bpI" = ( +/obj/structure/closet/secure_closet/fridge/dry/stock, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"bpK" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"bpL" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"bpQ" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"bpR" = ( +/turf/open/floor/almayer/empty/requisitions, +/area/supply/station) +"bpS" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"bpT" = ( +/obj/structure/machinery/computer/supplycomp, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"bpV" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"bqc" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"bqg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"bqF" = ( +/obj/structure/dropship_equipment/fuel/fuel_enhancer, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"bqH" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"bqL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"bqN" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lockerroom) +"bqR" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"bqT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"bqW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/cmcap{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/item/ammo_box/magazine/misc/mre{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/prop/helmetgarb/helmet_nvg/cosmetic{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"bqY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"bqZ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bra" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"brb" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"brf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 8 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"bri" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/req) +"brj" = ( +/obj/structure/machinery/line_nexter{ + id = "line1"; + pixel_x = -2 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"brn" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"brp" = ( +/obj/structure/supply_drop/bravo, +/turf/open/floor/plating, +/area/almayer/squads/req) +"brq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"brr" = ( +/obj/structure/machinery/cm_vending/clothing/medic/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"brs" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"brt" = ( +/obj/structure/machinery/cm_vending/clothing/engi/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"brv" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"bry" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"brA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"brH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"brS" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"brW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"brY" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bsj" = ( +/obj/structure/machinery/line_nexter/med{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"bsp" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"bst" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/operating_room_one) +"bsw" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/chapel) +"bsy" = ( +/obj/structure/closet/medical_wall{ + pixel_x = 30 + }, +/obj/item/reagent_container/food/drinks/cans/souto/blue, +/obj/item/reagent_container/food/drinks/cans/souto/blue, +/obj/item/reagent_container/food/drinks/cans/souto/classic, +/obj/item/reagent_container/food/drinks/cans/souto/diet/peach, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"bsz" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"bsD" = ( +/obj/structure/closet{ + name = "boxing attire" + }, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/grey, +/obj/item/clothing/under/shorts/grey, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"bsF" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"bsG" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/cryo_cells) +"bsJ" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/req) +"bsK" = ( +/obj/effect/landmark/supply_elevator, +/turf/open/floor/almayer/empty/requisitions, +/area/supply/station) +"bsL" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/almayer/squads/req) +"bsN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"bsP" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"bsQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_three) +"bsR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"bsS" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"bsU" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/squads/alpha) +"bsW" = ( +/obj/structure/machinery/cm_vending/clothing/leader/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"btb" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_a_s) +"btc" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha) +"bti" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/intel{ + dir = 4 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/computerlab) +"btr" = ( +/obj/structure/closet/boxinggloves, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"btv" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"btx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"btC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"btD" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"btG" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"btM" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"btN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"btO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"btV" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"btX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_three) +"btY" = ( +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_x = -30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/living/briefing) +"buc" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"bui" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_one) +"buj" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) +"bur" = ( +/obj/structure/prop/almayer/missile_tube, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"buu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"buv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"buz" = ( +/obj/structure/supply_drop/charlie, +/turf/open/floor/plating, +/area/almayer/squads/req) +"buB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"buM" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"buN" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"buO" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"buS" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"buY" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"bvb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"bve" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bvf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bvr" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bvz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_one) +"bvD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/lower/port_fore_hallway) +"bvF" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"bvH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/tool/hand_labeler{ + pixel_x = -8; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"bvX" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/window, +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"bwc" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"bwe" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bwf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"bwg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"bwh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"bwl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = 32 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bwm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bwn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bwv" = ( +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"bww" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"bwG" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_s) +"bwH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"bwP" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bwR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1; + pixel_y = -4 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lockerroom) +"bwT" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 28 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"bxf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"bxg" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"bxh" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/req) +"bxi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"bxm" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"bxn" = ( +/obj/structure/target, +/turf/open/floor/almayer/redfull, +/area/almayer/living/cryo_cells) +"bxA" = ( +/obj/structure/machinery/power/apc/almayer/hardened/south, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"bxB" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"bxC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"bxE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"bxN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"bxY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"byb" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) +"byc" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_three) +"byd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_four) +"bye" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "or4privacyshutter"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) +"bym" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"byn" = ( +/obj/effect/landmark/start/marine/leader/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"byr" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"byt" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"byu" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"byv" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"byw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"bzg" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"bzo" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) +"bzz" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"bzD" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "tcomms" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"bzI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"bzQ" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bzR" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -18 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"bzS" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) +"bAd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"bAe" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/command/lifeboat) +"bAh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bAi" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bAs" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/weapon_room) +"bAu" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 1; + name = "\improper High Security Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/securestorage) +"bAy" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = -32 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"bAH" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"bAJ" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) +"bAK" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/weapon_room) +"bAN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bAO" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bAP" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bAQ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bAS" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bAU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bAY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"bAZ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"bBd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"bBe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"bBg" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"bBl" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"bBu" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bBv" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bBx" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bBy" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bBz" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bBA" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/weapon_room) +"bBC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"bBD" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/structure/surface/table/almayer, +/obj/structure/transmitter/rotary{ + name = "Telephone"; + phone_category = "Almayer"; + phone_id = "Auxiliary Support Office Second Line"; + pixel_x = -5; + pixel_y = 3 + }, +/obj/structure/transmitter/rotary{ + name = "Telephone"; + phone_category = "Almayer"; + phone_id = "Auxiliary Support Office"; + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"bBH" = ( +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"bBN" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bBQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "southcheckpoint"; + name = "South Checkpoint Shutters"; + req_one_access_txt = "3;12;19" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bBR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bBU" = ( +/obj/structure/sign/safety/security{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"bBY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bCd" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/medical/lower_medical_lobby) +"bCe" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"bCg" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bCh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/briefing) +"bCk" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"bCl" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"bCm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"bCn" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"bCs" = ( +/obj/docking_port/stationary/escape_pod/cl, +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"bCu" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"bCv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"bCx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Briefing Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"bCy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"bCz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"bCA" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"bCB" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"bCD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"bCG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"bCM" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"bCN" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"bCP" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) +"bCR" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"bCS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"bCY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"bCZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"bDn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/closed/wall/almayer, +/area/almayer/hallways/hangar) +"bDs" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"bDv" = ( +/obj/structure/machinery/cm_vending/clothing/medical_crew, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"bDF" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + unacidable = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room/notunnel) +"bDH" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bDI" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bDL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + access_modified = 1; + dir = 1; + name = "\improper Auxiliary Combat Support Secondary Preparations"; + req_one_access_txt = "19;27;22" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"bDO" = ( +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"bDP" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"bDQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bDS" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bDT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bDU" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bDV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bDW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"bDX" = ( +/obj/structure/closet/crate, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bDY" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/medium_stack{ + amount = 40; + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/stack/sheet/plasteel/small_stack{ + amount = 15 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bDZ" = ( +/obj/structure/closet/crate/internals, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bEa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/living/cryo_cells) +"bEb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/living/cryo_cells) +"bEc" = ( +/obj/structure/machinery/computer/supplycomp, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bEd" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/living/cryo_cells) +"bEg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bEh" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"bEi" = ( +/obj/structure/supply_drop/alpha, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/squads/req) +"bEk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/lower/starboard_aft_hallway) +"bEl" = ( +/obj/structure/machinery/computer/supply_drop_console/limited, +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"bEm" = ( +/obj/structure/supply_drop/delta, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/squads/req) +"bEp" = ( +/obj/structure/filingcabinet, +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/squads/req) +"bEr" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bEs" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bEv" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/shipboard/brig/general_equipment) +"bEw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"bEx" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/weapon_room) +"bEA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bED" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bEE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/item/tool/warning_cone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bEF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/weapon_room) +"bEG" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) +"bEK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bEN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bEO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bEP" = ( +/obj/item/device/radio/marine{ + pixel_x = 6 + }, +/obj/item/device/radio/marine{ + pixel_x = 3 + }, +/obj/item/device/radio/marine, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"bER" = ( +/obj/item/storage/box/gloves{ + layer = 3.2; + pixel_x = 7; + pixel_y = -2 + }, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/storage/box/masks{ + layer = 3.2; + pixel_x = -7; + pixel_y = -2 + }, +/obj/item/storage/box/gloves{ + layer = 3.1; + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/storage/box/masks{ + layer = 3.1; + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/storage/box/masks{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"bES" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"bFa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bFg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"bFj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bFk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/weapon_room) +"bFl" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/meat, +/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"bFp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) +"bFq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) +"bFr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/auxiliary_officer_office) +"bFs" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/cryo_cells) +"bFt" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"bFA" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"bFB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bFC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"bFJ" = ( +/obj/docking_port/stationary/marine_dropship/almayer_hangar_2, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"bFP" = ( +/obj/vehicle/powerloader{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bFR" = ( +/obj/docking_port/stationary/marine_dropship/almayer_hangar_1, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"bFX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"bGa" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/starboard) +"bGc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/command/lifeboat) +"bGn" = ( +/obj/structure/barricade/plasteel/metal, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"bGo" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby1"; + name = "\improper RO Line 1" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/turf/open/floor/plating, +/area/almayer/squads/req) +"bGq" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bGw" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bGy" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"bGz" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"bGF" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGG" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGH" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGI" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGK" = ( +/obj/item/tool/warning_cone, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGM" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGN" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGO" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGP" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGQ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"bHg" = ( +/obj/structure/bed, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"bHk" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell/cl) +"bHp" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/structure/machinery/disposal, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"bHq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"bHu" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) +"bHB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bHD" = ( +/obj/structure/ship_ammo/rocket/banshee, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"bHG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"bHI" = ( +/obj/structure/anti_air_cannon, +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"bHP" = ( +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"bId" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"bIe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bIj" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/hallways/lower/port_midship_hallway) +"bIn" = ( +/obj/structure/machinery/computer/cameras/almayer_network, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"bIo" = ( +/obj/structure/cargo_container/lockmart/left{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bIp" = ( +/obj/effect/step_trigger/ares_alert/mainframe, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Mainframe Left"; + name = "\improper ARES Mainframe Shutters"; + plane = -7 + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"bIs" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bIw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/computer/working_joe, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"bIx" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) +"bIy" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/navigation) +"bIJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/book/manual/chef_recipes, +/obj/item/reagent_container/food/condiment/sugar{ + pixel_x = 10 + }, +/obj/item/clothing/head/chefhat, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"bIM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/hydroponics) +"bIO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/lower/port_fore_hallway) +"bIU" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"bIW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"bJe" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/structure/machinery/door_control{ + id = "Firing_Range_2"; + name = "range shutters"; + pixel_x = 9; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"bJf" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_2"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"bJl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + dir = 1; + name = "\improper Auxiliary Support Officers Quarters"; + req_one_access_txt = "37" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"bJt" = ( +/turf/closed/wall/almayer, +/area/almayer/living/grunt_rnr) +"bJw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"bJC" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/charlie) +"bJD" = ( +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"bJE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/squads/bravo) +"bJH" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black{ + pixel_x = -4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"bJS" = ( +/obj/structure/surface/rack, +/obj/item/tool/wrench, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"bJT" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"bJU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"bJX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"bJY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"bJZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"bKb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "7;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/weapon_room) +"bKd" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/item/storage/firstaid/fire, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"bKf" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) +"bKk" = ( +/obj/item/tool/wrench{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/prop/mech/hydralic_clamp, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"bKm" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." + }, +/obj/item/storage/beer_pack, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"bKn" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/weapon_room) +"bKp" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"bKq" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"bKs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"bKt" = ( +/obj/structure/cargo_container/arious/left, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bKu" = ( +/obj/structure/cargo_container/arious/mid, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bKz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bKA" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bKC" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/green, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"bKD" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer{ + density = 0; + pixel_y = 16 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"bKI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/starboard_hallway) +"bKJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/cryo_cells) +"bKM" = ( +/obj/effect/landmark/start/marine/medic/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"bKP" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"bKQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"bKX" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"bLc" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"bLf" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"bLh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"bLi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"bLj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"bLk" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/weapon_room) +"bLl" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"bLm" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/machinery/keycard_auth{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"bLo" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"bLp" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"bLq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) +"bLr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"bLs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"bLw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"bLx" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 1; + id_tag = "oxygen_lower_out" + }, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"bLy" = ( +/turf/open/floor/engine/nitrogen, +/area/almayer/engineering/airmix) +"bLz" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 1; + id_tag = "nit_lower_out" + }, +/turf/open/floor/engine/nitrogen, +/area/almayer/engineering/airmix) +"bLA" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 1 + }, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"bLC" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 1; + id_tag = "mixed_lower_out" + }, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"bLD" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bLF" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_n"; + name = "\improper Brig" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"bLH" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/weapon_room) +"bLJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"bLO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"bLP" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"bLX" = ( +/obj/vehicle/powerloader, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bMa" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"bMf" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bMg" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 8; + vent_tag = "Synth Bay" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"bMq" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"bMu" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0; + vend_y_offset = 0 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"bMx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"bMy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"bMA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"bMC" = ( +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/squads/charlie) +"bMD" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"bME" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"bMJ" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"bMK" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine/nitrogen, +/area/almayer/engineering/airmix) +"bML" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"bMO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"bMP" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"bMR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"bMS" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/red, +/obj/item/tool/pen, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"bMT" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/sign/safety/twilight_zone_terminator{ + pixel_x = 8; + pixel_y = -24 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"bMU" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/blue, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"bMZ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"bNa" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"bNb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) +"bNe" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"bNf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"bNg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"bNh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/living/port_emb) +"bNi" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"bNk" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) +"bNl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"bNm" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"bNn" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"bNo" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"bNq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"bNr" = ( +/obj/structure/sign/safety/storage{ + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bNs" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"bNt" = ( +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"bNw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/kitchen/knife, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"bNA" = ( +/obj/structure/machinery/computer/ordercomp, +/obj/structure/sign/safety/galley{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bNB" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/wy_mre, +/obj/effect/spawner/random/tool, +/obj/item/tool/hand_labeler, +/obj/item/clipboard, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bNC" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"bNE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"bNF" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/squads/charlie) +"bNG" = ( +/obj/structure/machinery/cm_vending/clothing/tl/charlie{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"bNL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"bNM" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"bNN" = ( +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"bNP" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bNQ" = ( +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"bNS" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"bOq" = ( +/obj/structure/prop/almayer/cannon_cables, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"bOs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/weapon_room) +"bOw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"bOx" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"bOC" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"bOG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"bOJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Briefing Room" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"bOK" = ( +/obj/structure/machinery/door_control{ + id = "ROlobby1"; + name = "RO Line 1 Shutters"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "1;21" + }, +/obj/structure/machinery/line_nexter_control{ + id = "line1"; + pixel_x = -4; + pixel_y = -2; + req_one_access_txt = "1;21" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bOM" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bON" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bOO" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bOQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"bOR" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"bOT" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/gear/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"bOZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/squads/charlie) +"bPa" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/squads/charlie) +"bPg" = ( +/obj/vehicle/powerloader, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/shipboard/weapon_room) +"bPh" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bPi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"bPk" = ( +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) +"bPn" = ( +/obj/structure/machinery/computer/orbital_cannon_console, +/obj/structure/bed/chair/ob_chair, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"bPo" = ( +/obj/structure/prop/almayer/cannon_cable_connector, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"bPq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"bPr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bPs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"bPu" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/lower_medical_medbay) +"bPz" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"bPC" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/weapon_room) +"bPD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bPF" = ( +/turf/closed/wall/almayer/white/outer_tile, +/area/almayer/medical/medical_science) +"bPG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"bPH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/processing) +"bPJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"bPL" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"bPM" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/living/cryo_cells) +"bPO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/observer_start, +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/living/briefing) +"bQc" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 6"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"bQt" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bQz" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bQA" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"bQD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"bQE" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bQG" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/obj/item/book/manual/orbital_cannon_manual, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bQI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/case/small{ + pixel_y = 5 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bQM" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"bQQ" = ( +/obj/structure/sign/ROsign{ + layer = 3 + }, +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"bQS" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"bQU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"bQX" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"bQZ" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer, +/area/almayer/squads/charlie) +"bRa" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/living/cryo_cells) +"bRc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"bRe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"bRf" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"bRg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"bRo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"bRt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_umbilical) +"bRO" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"bRP" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"bRV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"bSa" = ( +/obj/structure/target, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) +"bSb" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"bSe" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/squads/bravo) +"bSf" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/port_point_defense) +"bSn" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/squads/bravo) +"bSv" = ( +/turf/closed/wall/almayer, +/area/almayer/living/tankerbunks) +"bSD" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"bSH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"bSJ" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/delta) +"bSK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/item/tool/wrench, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"bSL" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer, +/area/almayer/squads/delta) +"bSN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"bSR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bST" = ( +/obj/structure/closet/secure_closet/hydroresearch, +/obj/item/reagent_container/glass/watertank, +/obj/item/reagent_container/glass/watertank, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"bSZ" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"bTa" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"bTb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "cryo curtain" + }, +/turf/open/floor/plating, +/area/almayer/squads/bravo) +"bTg" = ( +/obj/docking_port/stationary/emergency_response/external/hangar_port{ + dwidth = 8 + }, +/turf/open/space, +/area/space) +"bTn" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/tankerbunks) +"bTq" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PL-3"; + req_access = null + }, +/turf/open/floor/plating, +/area/almayer/powered) +"bTt" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2; + pixel_y = 21 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -2; + pixel_y = -4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"bTx" = ( +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"bTy" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/squads/delta) +"bTz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"bTA" = ( +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"bTC" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"bTE" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/squads/delta) +"bTG" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"bTH" = ( +/turf/open/floor/almayer, +/area/almayer/living/tankerbunks) +"bTJ" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"bTM" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"bTN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"bTO" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/port_point_defense) +"bTR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"bTS" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"bTT" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/shipboard/weapon_room) +"bTU" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/dogtag{ + desc = "A blank marine's information dog tag. The word ranger and a pawprint is scratched into it." + }, +/obj/item/device/megaphone, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"bTV" = ( +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/tankerbunks) +"bTW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"bTY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/port) +"bUa" = ( +/obj/structure/closet, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"bUb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"bUf" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"bUi" = ( +/obj/structure/sign/poster{ + pixel_x = 32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) +"bUo" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = -32 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/req) +"bUp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"bUq" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"bUr" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"bUy" = ( +/obj/structure/closet/crate/ammo, +/obj/structure/machinery/light/small, +/obj/item/ammo_box/magazine/empty, +/obj/item/ammo_box/magazine/empty, +/obj/structure/machinery/door_control{ + id = "crate_room3"; + name = "storage shutters"; + pixel_x = -26 + }, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"bUH" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"bUN" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"bUO" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"bUQ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"bUT" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"bUU" = ( +/obj/structure/machinery/cm_vending/clothing/tl/delta{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"bVb" = ( +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"bVd" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"bVe" = ( +/obj/structure/closet/l3closet/general, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"bVn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"bVo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) +"bVq" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"bVr" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"bVs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"bVv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"bVw" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/briefing) +"bVy" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"bVE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"bVM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bVN" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"bVR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"bVU" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/port_point_defense) +"bWc" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"bWd" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"bWe" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"bWf" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"bWg" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"bWh" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-4"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"bWn" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"bWo" = ( +/obj/docking_port/stationary/emergency_response/port2, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"bWp" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"bWq" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"bWr" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) +"bWJ" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/obj/structure/machinery/door/window/eastright, +/obj/structure/window/reinforced/tinted/frosted, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/auxiliary_officer_office) +"bWL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bWQ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"bWT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/co2_knife{ + pixel_x = 8; + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"bXc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"bXe" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"bXf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"bXh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"bXo" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge1" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 24; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"bXw" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_two) +"bXy" = ( +/obj/structure/machinery/cm_vending/clothing/maintenance_technician, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"bXz" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"bXH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bXY" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge3" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 24; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"bYa" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"bYn" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/upper_engineering/port) +"bYq" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bYu" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/uniform_supply, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bYv" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + name = "\improper Requisitions Storage" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"bYw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"bYz" = ( +/obj/structure/sign/safety/south{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"bYF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"bYL" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"bYW" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/panic) +"bYY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"bZa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"bZc" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/notunnel) +"bZe" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"bZf" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 + }, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"bZi" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bZj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bZn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"bZo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bZq" = ( +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"bZr" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/squads/req) +"bZw" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/combat_correspondent) +"bZJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/landmark/map_item, +/obj/item/device/binoculars, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"bZO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bZR" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"bZS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/lower/repair_bay) +"bZU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"cab" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cac" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cad" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cae" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"caf" = ( +/obj/structure/machinery/computer/cryopod{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cag" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cah" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cai" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cak" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/evidence_storage) +"cal" = ( +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"caq" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"car" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cau" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + access_modified = 1; + dir = 2; + name = "Firing Range"; + req_access = null; + req_one_access_txt = "2;4;7;9;21" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"caM" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"caN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"caO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/briefing) +"caS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_three) +"caT" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"cbc" = ( +/obj/structure/platform_decoration, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"cbg" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2; + name = "\improper Command Ladder" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"cbh" = ( +/obj/structure/machinery/cm_vending/clothing/pilot_officer{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"cbm" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"cbn" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/computerlab) +"cbu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"cbF" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + pixel_x = 1; + pixel_y = 17; + req_access = null + }, +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"cbL" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"cbM" = ( +/obj/structure/closet/crate, +/obj/item/clothing/glasses/welding, +/obj/item/circuitboard, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"ccb" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/red/north, +/area/almayer/living/cryo_cells) +"ccd" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/northeast, +/area/almayer/living/cryo_cells) +"ccg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"cck" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"ccs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"ccx" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"ccG" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ccL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"ccN" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/living/cryo_cells) +"ccQ" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"cdf" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"cdm" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"cdn" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"cdo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"cdp" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_2"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"cdA" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"cdB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"cdI" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"cdP" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie) +"cdT" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cdU" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cdV" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cdX" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cdZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"cea" = ( +/obj/structure/machinery/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"ceg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"ceC" = ( +/obj/structure/prop/almayer/ship_memorial, +/turf/open/floor/plating/almayer, +/area/almayer/living/starboard_garden) +"ceD" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-3"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"ceE" = ( +/turf/closed/wall/almayer, +/area/almayer/command/cichallway) +"ceK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"ceV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/midship_hallway) +"ceY" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"ceZ" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/shipboard/brig/cic_hallway) +"cfk" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"cfm" = ( +/obj/structure/flora/pottedplant{ + desc = "Life is underwhelming, especially when you're a potted plant."; + icon_state = "pottedplant_22"; + name = "Jerry"; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses/prescription{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"cfo" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"cfp" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cfq" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cft" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"cfE" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/starboard_missiles) +"cfT" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"cgl" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) +"cgo" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie_delta_shared) +"cgq" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"cgr" = ( +/obj/structure/machinery/cm_vending/clothing/medic/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cgs" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cgt" = ( +/obj/structure/machinery/cm_vending/clothing/engi/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cgu" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cgv" = ( +/obj/structure/machinery/cm_vending/clothing/leader/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cgy" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"cgA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cgE" = ( +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"cgO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"cgT" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"cgU" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"chb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/starboard) +"chc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/body_scanconsole{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"chf" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"chk" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"chl" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"chm" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"chn" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"chp" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"chq" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"chv" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"chL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/squads/bravo) +"chM" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"chN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) +"chO" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"chP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"chQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/squads/charlie) +"chR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"chS" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"chV" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) +"chW" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"cib" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"cic" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"cif" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"cil" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"cir" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"ciu" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north2) +"civ" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering) +"ciw" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"cix" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-4"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"ciB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"ciD" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"ciN" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"ciQ" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"cjc" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"cjd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"cjf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"cjg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"cji" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"cjk" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 6"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"cjm" = ( +/obj/structure/surface/rack, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"cjt" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"cjA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cjC" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cjE" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"cjW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"ckd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 9; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"cke" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"ckh" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"ckj" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/nanopaste{ + pixel_x = -3; + pixel_y = 14 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"ckr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ckK" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"ckP" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"ckQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"ckR" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ckW" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/engineering/lower) +"ckX" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"ckZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"cle" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_lobby) +"clg" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"clh" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"cli" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"clj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"clk" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"cll" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"clm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"cln" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1; + pixel_y = -29 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"clo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"clp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"clr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) +"cls" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/port_point_defense) +"clw" = ( +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"clE" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"clF" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"clG" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"clH" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"clI" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"clJ" = ( +/obj/structure/machinery/cm_vending/clothing/medic/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clL" = ( +/obj/structure/machinery/cm_vending/clothing/engi/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clM" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clN" = ( +/obj/structure/machinery/cm_vending/clothing/leader/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clS" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clT" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clV" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"clW" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clX" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clY" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clZ" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"cme" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"cml" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"cmm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"cmn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"cmo" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/tool, +/obj/item/packageWrap, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"cmr" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"cmv" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"cmC" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SL-1"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"cmF" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north2) +"cmK" = ( +/obj/structure/window/reinforced, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) +"cmL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cmM" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/medical) +"cmN" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"cmS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/fore_hallway) +"cmV" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"cnd" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PL-1"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"cnm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"cnn" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"cnq" = ( +/obj/structure/machinery/line_nexter{ + id = "line1"; + pixel_x = -2 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"cnr" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"cnu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"cnE" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/computerlab) +"cnH" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Computer Lab" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/computerlab) +"cnI" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) +"cnM" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/yellow{ + layer = 3.2 + }, +/obj/item/bedsheet/yellow{ + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"cnP" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"cnR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastleft{ + req_access = list(19) + }, +/obj/structure/machinery/door/window/westright, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/computerlab) +"cnS" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/command/computerlab) +"cnT" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 1; + name = "\improper Computer Lab"; + req_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/computerlab) +"cnV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"cnW" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) +"cnZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/hemostat, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/morgue) +"coa" = ( +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/retractor, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"cod" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) +"cog" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"coj" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) +"coo" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"cop" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/tankerbunks) +"cov" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/obj/structure/sign/safety/security{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"coB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"coD" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 12 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"coH" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"coJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 10 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"coT" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"coZ" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"cpj" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"cpk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/port_point_defense) +"cpp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"cpz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"cpJ" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "or3privacyshutter"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/medical/operating_room_three) +"cpK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby2"; + name = "\improper RO Line 2" + }, +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/turf/open/floor/plating, +/area/almayer/squads/req) +"cpP" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"cqd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/hallways/lower/starboard_umbilical) +"cqm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/folder/white{ + pixel_y = 6 + }, +/obj/item/folder/white{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"cqp" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"cqz" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"cqH" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_m_s) +"cqJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/general_equipment) +"cqM" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"cqQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"cqY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar/tarbacktube, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"crc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"crh" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"cri" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"crD" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/squads/req) +"csd" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"csy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"csI" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"csZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"cth" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"ctp" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"cts" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"ctw" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"ctx" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 + }, +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"ctJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"ctQ" = ( +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"ctT" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Cryogenics Bay" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cryo) +"cuq" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"cus" = ( +/obj/docking_port/stationary/lifeboat_dock/starboard, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"cuy" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cuC" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/upper_engineering/starboard) +"cuN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/starboard) +"cuY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"cvb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"cvg" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"cvx" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/cryo_cells) +"cvH" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"cvI" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"cvZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"cwo" = ( +/obj/structure/largecrate/random/mini/chest{ + pixel_x = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"cwC" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/starboard_hallway) +"cwS" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"cwX" = ( +/obj/structure/ladder{ + height = 1; + id = "cicladder1" + }, +/turf/open/floor/plating/almayer, +/area/almayer/living/briefing) +"cxc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"cxk" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"cxF" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"cyc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"cyh" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Passenger Cryogenics Bay" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_p) +"cyo" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"cyp" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/obj/structure/plasticflaps, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) +"cyv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"cyL" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/maint/upper/mess) +"cyP" = ( +/obj/structure/machinery/cm_vending/clothing/intelligence_officer{ + density = 0; + pixel_x = -32 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) +"cyR" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"cyU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"cyZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"czN" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"czR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cAa" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"cAm" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"cAy" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"cAz" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"cAF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"cAR" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/mp_bunks) +"cBb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"cBd" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"cBj" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"cBs" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) +"cBw" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"cBC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/lower/port_aft_hallway) +"cBV" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_fore_hallway) +"cCa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"cCD" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/living/briefing) +"cCE" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cCL" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"cDb" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"cDn" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/clothing/mask/cigarette{ + pixel_y = 8 + }, +/obj/item/clothing/mask/cigarette{ + pixel_x = 4; + pixel_y = 11 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"cDs" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"cDx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_p) +"cDC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"cDH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cDI" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"cDN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"cDP" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/hallways/upper/midship_hallway) +"cDZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/living/tankerbunks) +"cEi" = ( +/obj/structure/sign/poster, +/turf/closed/wall/almayer, +/area/almayer/living/grunt_rnr) +"cEl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"cEA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"cEC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"cEG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"cFg" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_AresUp2"; + vector_x = -102; + vector_y = 61 + }, +/obj/structure/machinery/door_control{ + id = "ARES ReceptStairs2"; + name = "ARES Reception Stairway Shutters"; + pixel_x = 24; + req_one_access_txt = "91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"cFh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"cFn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"cFC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"cFP" = ( +/obj/structure/sign/safety/outpatient{ + pixel_x = -17; + pixel_y = 6 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"cGd" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) +"cGA" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"cGB" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/hull/lower/l_m_s) +"cGO" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"cGR" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"cGV" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"cGY" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"cHc" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"cHk" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/warden_office) +"cHl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"cHu" = ( +/turf/closed/wall/almayer/research/containment/wall/south, +/area/almayer/medical/containment/cell/cl) +"cHB" = ( +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"cHC" = ( +/obj/structure/machinery/cm_vending/clothing/combat_correspondent, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"cHE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/command/cichallway) +"cHG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"cIe" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"cIm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_fore_hallway) +"cIr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"cIx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cIG" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"cIO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"cIS" = ( +/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"cIW" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Engine Monitoring" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"cJm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"cJs" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"cJu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"cJv" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_AresDown2"; + vector_x = 102; + vector_y = -61 + }, +/turf/open/floor/plating, +/area/almayer/command/airoom) +"cJE" = ( +/obj/structure/sign/prop2, +/turf/closed/wall/almayer, +/area/almayer/shipboard/sea_office) +"cJI" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit."; + icon_state = "delivery_engi"; + name = "Returns"; + pixel_x = 25; + pixel_y = 28 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"cJK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"cJM" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 8; + has_wall_divider = 1; + id = "Containment Cell 3"; + layer = 3.2; + name = "Cell 3 Control"; + pixel_x = 16; + pixel_y = -16 + }, +/obj/structure/machinery/door_display/research_cell{ + dir = 8; + has_wall_divider = 1; + id = "Containment Cell 2"; + layer = 3.2; + name = "Cell 2 Control"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 2"; + name = "Containment Lockdown"; + pixel_x = 13; + pixel_y = 7; + req_one_access_txt = "19;28" + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 3"; + name = "Containment Lockdown"; + pixel_x = 13; + pixel_y = -6; + req_one_access_txt = "19;28" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"cKm" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -8 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_y = 12 + }, +/obj/item/clothing/head/militia/bucket{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 8; + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"cKJ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/interrogation) +"cKL" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering/port) +"cLd" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/mgoggles/prescription, +/obj/item/clothing/glasses/mbcg, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"cLl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/storage/fancy/cigar, +/obj/item/tool/lighter/zippo, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"cLo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/aicore/no_build/ai_arrow, +/area/almayer/command/airoom) +"cLq" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"cLA" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"cLC" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"cLN" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"cMl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/processing) +"cMx" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_a_s) +"cMz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"cMH" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"cMN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"cMV" = ( +/obj/structure/sign/prop1{ + pixel_x = -32; + pixel_y = 2 + }, +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"cMW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/processing) +"cNf" = ( +/turf/open/floor/almayer/orange, +/area/almayer/living/briefing) +"cNm" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_aft_hallway) +"cNC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"cNH" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + id = "Containment Cell 4"; + name = "\improper Containment Cell 4" + }, +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 4"; + locked = 1; + name = "\improper Containment Cell 4" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell/cl) +"cNI" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"cNJ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"cNK" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"cNM" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"cNX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"cOd" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"cOe" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/hallways/upper/midship_hallway) +"cOh" = ( +/obj/item/stool{ + pixel_x = 15; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"cOo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"cOt" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"cOK" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/almayer/engineering/upper_engineering/starboard) +"cOV" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = -24; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"cOY" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/obj/structure/machinery/cm_vending/clothing/dress/corporate_liaison, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"cPg" = ( +/obj/structure/sign/safety/north{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"cPj" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/p_bow) +"cPK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -15 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/starboard) +"cPP" = ( +/obj/structure/sign/poster/pinup{ + pixel_x = -30 + }, +/obj/structure/sign/poster/hunk{ + pixel_x = -25; + pixel_y = 10 + }, +/obj/item/trash/buritto, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"cQc" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/living/briefing) +"cQg" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"cQo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/containment) +"cQv" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/general_equipment) +"cQC" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -8; + pixel_y = 28 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = 14; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"cQF" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"cQG" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"cQL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/lobby) +"cQW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"cRb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"cRi" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"cRv" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/port_missiles) +"cRK" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"cRL" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/starboard) +"cSa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"cSk" = ( +/obj/structure/machinery/door/window/southleft, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) +"cSm" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"cSx" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cSC" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/starboard_missiles) +"cSH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"cSP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/hallways/lower/port_midship_hallway) +"cSQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"cST" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"cTf" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cTy" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"cTC" = ( +/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/offices) +"cTM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"cTX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"cUl" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"cUo" = ( +/turf/open/floor/almayer/plate, +/area/almayer/lifeboat_pumps/north1) +"cVb" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"cVf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cVq" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"cVt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"cVw" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"cVK" = ( +/obj/structure/surface/rack, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/spawner/random/facepaint, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"cVZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"cWb" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"cWm" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/structure/sign/safety/med_life_support{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"cWr" = ( +/obj/structure/machinery/photocopier{ + density = 0; + layer = 2.9; + pixel_x = -3; + pixel_y = 16 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = -19; + pixel_y = 5 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/offices) +"cWw" = ( +/obj/structure/machinery/cm_vending/gear/staff_officer_armory, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"cWy" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/packaged_burger, +/obj/item/reagent_container/food/snacks/packaged_burger, +/obj/item/reagent_container/food/snacks/packaged_burger, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"cWE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"cXi" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/sign/safety/water{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/waterhazard{ + pixel_x = -17; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"cXm" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"cXq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/upper/fore_hallway) +"cXz" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/mask/cigarette/pipe{ + pixel_x = 8 + }, +/obj/structure/transmitter/rotary{ + name = "Reporter Telephone"; + phone_category = "Almayer"; + phone_id = "Reporter"; + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/device/toner{ + pixel_x = -2; + pixel_y = -11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"cXC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"cXD" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"cXF" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 4"; + layer = 2.1; + name = "Mounted Flash"; + pixel_x = -15; + pixel_y = 30 + }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell/cl) +"cXR" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/squads/req) +"cXV" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"cXW" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"cXX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"cXY" = ( +/obj/item/stack/catwalk, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"cYo" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"cYu" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"cYN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"cYT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"cZb" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"cZe" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_s) +"cZh" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" + }, +/turf/open/floor/plating, +/area/almayer/command/cichallway) +"cZp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"cZq" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"cZB" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"cZI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"cZO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"cZV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigarettes/wypacket, +/obj/item/tool/lighter, +/turf/open/floor/almayer, +/area/almayer/living/pilotbunks) +"cZW" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"dan" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/upper/u_a_s) +"daz" = ( +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"daF" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"daI" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Armourer's Workshop"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"dbc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"dbe" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"dbn" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c200{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 9 + }, +/obj/item/reagent_container/pill/happy, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/almayer/living/port_emb) +"dbq" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/engineering/upper_engineering/port) +"dbs" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_s"; + dir = 1; + name = "\improper Brig Maintenance" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown_2"; + name = "\improper Perma Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"dbv" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/computer{ + pixel_x = 7 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 1; + pixel_y = 25 + }, +/obj/item/prop/magazine/book/borntokill{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"dbw" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = -17 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"dbX" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/upper/mess) +"dcd" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"dck" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"dcp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"dcx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"dcy" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/perma) +"dcR" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"dcT" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"dcX" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"ddf" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"ddj" = ( +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/interrogation) +"ddk" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"ddw" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"ddz" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"ddL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"ddM" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"ddO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"deg" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"deq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"deD" = ( +/obj/structure/machinery/prop/almayer/CICmap{ + pixel_x = -5 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"deF" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"deH" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"deT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/port_emb) +"dfa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"dfg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"dfk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"dfA" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"dfC" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"dgg" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"dgl" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"dgx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 13 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/chief_mp_office) +"dgI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"dha" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"dhd" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/brig/execution) +"dho" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"dhp" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"dhA" = ( +/obj/structure/largecrate/supply/generator, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/maint/upper/u_a_p) +"dhQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"dhR" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "north_central_checkpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"div" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"diw" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"diz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D4"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"diJ" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"djQ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/closet/firecloset, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"dka" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"dkj" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/alamo{ + layer = 2.9 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"dkq" = ( +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Shutters"; + pixel_x = -30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/living/briefing) +"dkz" = ( +/obj/structure/pipes/vents/scrubber/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"dkO" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/obj/structure/catwalk{ + health = null + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"dkP" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dkX" = ( +/obj/structure/bed/chair/comfy/delta, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"dll" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"dlo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"dlT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"dmg" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"dmr" = ( +/obj/structure/transmitter{ + name = "Brig Offices Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig Main Offices"; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"dmv" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/command/cichallway) +"dmA" = ( +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"dmE" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/incendiary, +/obj/item/mortar_shell/incendiary, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"dmF" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"dmR" = ( +/obj/effect/glowshroom, +/obj/effect/glowshroom{ + pixel_y = 16 + }, +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"dmZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 1"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"dnh" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/orbital_cannon_manual, +/turf/open/floor/almayer/red/northwest, +/area/almayer/maint/upper/u_a_p) +"dnC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/hydroponics) +"dnE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"dnH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"dnP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"dnS" = ( +/obj/structure/safe, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/securestorage) +"dnZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) +"dof" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + name = "\improper Upper Engineering" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"doJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"doP" = ( +/obj/structure/disposaloutlet{ + density = 0; + desc = "An outlet for the pneumatic delivery system."; + icon_state = "delivery_outlet"; + name = "delivery outlet"; + pixel_x = -1; + pixel_y = 25; + range = 0 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"doU" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"doX" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"dpo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/waterhazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"dpp" = ( +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"dpA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"dpO" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/delta) +"dqb" = ( +/obj/structure/sign/safety/security{ + pixel_x = -16 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"dqg" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"dqj" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/command/lifeboat) +"dqw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/weapon_room/notunnel) +"dqD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"dqE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Conference and Office Area" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"drj" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"drk" = ( +/obj/structure/closet, +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"dro" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"drT" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"drU" = ( +/obj/structure/machinery/door_control{ + id = "ARES JoeCryo"; + name = "ARES WorkingJoe Bay Shutters"; + pixel_x = 24; + req_one_access_txt = "91;92" + }, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Comms" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"dsA" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/execution) +"dsY" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dtu" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_a_s) +"dtH" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"dtZ" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"duo" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"dut" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc04"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = 28; + pixel_y = 23 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"duv" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"duw" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"duz" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"duF" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"duT" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 2"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/cells) +"duV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"dvg" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/obj/structure/sign/safety/chem_lab{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/chemistry) +"dvl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"dvs" = ( +/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"dvD" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"dvZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) +"dwj" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"dwl" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"dwr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/centrifuge{ + layer = 3.1; + pixel_y = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"dwu" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_s) +"dwA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"dwI" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering North Hall" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"dxu" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) +"dxv" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/computerlab) +"dxF" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/stair_clone/upper) +"dxJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"dxK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"dxT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"dya" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "Perma 2"; + name = "\improper cell shutter" + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Isolation Cell" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"dyb" = ( +/obj/structure/machinery/smartfridge/chemistry, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"dyd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"dyj" = ( +/obj/structure/closet/secure_closet/commander, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/device/whistle, +/obj/item/device/megaphone, +/obj/item/device/radio, +/obj/item/clothing/shoes/laceup, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"dyp" = ( +/obj/structure/machinery/ares/cpu, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"dyq" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"dyx" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"dyK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/ce_room) +"dzp" = ( +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"dzt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Secondary Processors"; + dir = 8 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"dzG" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 26 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"dzX" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"dAl" = ( +/obj/item/paper_bin/wy, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/pen/clicky, +/obj/item/tool/pen/clicky, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"dAm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dAq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"dAA" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"dAQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"dAX" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"dBg" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"dBj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/hydroponics) +"dBp" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"dBs" = ( +/obj/structure/machinery/cm_vending/clothing/dress, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) +"dBG" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"dBH" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/almayer/medical/lower_medical_medbay) +"dBI" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 4 + }, +/obj/item/trash/USCMtray{ + pixel_y = 6 + }, +/obj/item/trash/USCMtray{ + pixel_y = 8 + }, +/obj/item/trash/USCMtray{ + pixel_y = 10 + }, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"dBO" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"dBR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/light, +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/hallways/lower/repair_bay) +"dBS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"dCe" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/coffee{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cells) +"dCr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"dCx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"dCz" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"dCD" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"dCK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"dCM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"dDp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"dDt" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"dDJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"dDL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/research/main_terminal{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"dDM" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop/hangar) +"dDT" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"dEm" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/containment/cell) +"dEn" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"dEo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"dEp" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) +"dEt" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering South Hall" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"dEG" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"dEJ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north2) +"dEK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"dEL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"dEQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"dEX" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"dFk" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/command/lifeboat) +"dFl" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"dFF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"dFL" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"dFM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"dFN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"dFR" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cichallway) +"dFW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"dGg" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"dGr" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"dGC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"dGP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"dGT" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"dGU" = ( +/obj/structure/sign/poster/propaganda{ + pixel_x = -27 + }, +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"dHd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"dHe" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"dHu" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2; + pixel_y = 23 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 2; + pixel_y = -4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"dHV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/unary/freezer{ + dir = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"dHZ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/plating, +/area/almayer/living/bridgebunks) +"dIi" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/almayer/command/airoom) +"dIn" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"dID" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"dIH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"dII" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"dJe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"dJy" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"dJC" = ( +/obj/structure/machinery/sentry_holder/almayer/mini/aicore, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"dJG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"dJI" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/arcturianstopsign{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"dJJ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/execution_storage) +"dJO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + indestructible = 1; + name = "ARES Chamber Lockdown"; + pixel_x = -24; + pixel_y = 8; + req_one_access_txt = "90;91;92" + }, +/obj/structure/machinery/door/poddoor/railing{ + closed_layer = 4; + density = 0; + id = "ARES Railing"; + layer = 2.1; + open_layer = 2.1; + unacidable = 0; + unslashable = 0 + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"dKp" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell/cl) +"dKK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"dKL" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/airmix) +"dKO" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = 25; + req_one_access_txt = "3" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"dKS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"dLc" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"dLe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"dLt" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/sea_office) +"dLz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south1) +"dMj" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"dMB" = ( +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"dME" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"dMK" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 8 + }, +/area/almayer/medical/containment/cell) +"dNj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"dNq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"dNt" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_1"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"dNv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"dNM" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"dNW" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"dNZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"dOe" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/reagent_dispensers/ethanoltank{ + anchored = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"dOl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"dOG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"dON" = ( +/obj/item/stack/cable_coil{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/item/trash/pistachios, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) +"dPd" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"dPk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"dPm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"dPq" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"dPC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"dPH" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"dPO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"dPQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"dPT" = ( +/obj/structure/machinery/brig_cell/cell_2{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"dQp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"dQA" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/lower) +"dQV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dRh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/hydroponics) +"dRj" = ( +/obj/structure/toilet{ + pixel_y = 13 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/mp_bunks) +"dRs" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"dRv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/squads/alpha) +"dRA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"dRD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Dropship Control Bubble"; + req_access = null; + req_one_access_txt = "3;22;2;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) +"dRP" = ( +/obj/structure/bed/chair/comfy/orange, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"dRT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"dSm" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"dSp" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"dSI" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/hallways/upper/midship_hallway) +"dSJ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -28 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"dSX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_two) +"dSZ" = ( +/obj/structure/bed/chair, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"dTd" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dTn" = ( +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"dTr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"dTI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"dTS" = ( +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"dTZ" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"dUE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"dUR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"dUS" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"dUZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/port_missiles) +"dVd" = ( +/obj/structure/machinery/seed_extractor{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"dVe" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/briefing) +"dVn" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"dVs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"dVu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"dVH" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"dVO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"dVR" = ( +/obj/structure/ladder{ + height = 2; + id = "AftPortMaint" + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_p) +"dWc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"dWg" = ( +/obj/effect/landmark/start/cargo, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"dWw" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) +"dWA" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"dWJ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"dWX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"dXb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"dXd" = ( +/obj/item/storage/fancy/cigarettes/kpack, +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"dXo" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"dXr" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"dXG" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"dXI" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/stern_point_defense) +"dXV" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"dXY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"dYb" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"dYc" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"dYl" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"dYu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"dYC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/item/frame/fire_alarm, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"dYR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"dYU" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + dir = 8; + plane = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"dYX" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"dZu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"dZZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"eaf" = ( +/obj/structure/machinery/cm_vending/clothing/military_police{ + density = 0; + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/general_equipment) +"ean" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 3"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 4 + }, +/area/almayer/medical/containment/cell) +"eas" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_one) +"eax" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"eaz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"ebd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"ebf" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." + }, +/obj/item/storage/beer_pack, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"ebn" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"ebp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"ebI" = ( +/obj/item/clothing/shoes/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"ebN" = ( +/turf/closed/wall/almayer/aicore/reinforced, +/area/almayer/command/airoom) +"ecb" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"ecj" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"eco" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"ecr" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/captain_mess) +"ecS" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"ecZ" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge4" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"edn" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"edo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"edv" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"edG" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"edV" = ( +/obj/structure/machinery/power/terminal, +/turf/open/floor/almayer, +/area/almayer/maint/upper/mess) +"eed" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/computerlab) +"eeh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 9 + }, +/obj/item/reagent_container/food/snacks/packaged_burger, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"eei" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/cups{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"eem" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/snacks/boiledrice, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"eet" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"eeu" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/machinery/door_control{ + id = "kitchen"; + name = "Kitchen Shutters"; + pixel_x = -25 + }, +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"eeA" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"eeC" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"eeR" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"efj" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"efk" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"efC" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"efJ" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"efK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"efP" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_y = 14 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"efT" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"efV" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"egc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc01"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = -28; + pixel_y = -23 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"ege" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = -24; + pixel_y = 8; + req_one_access_txt = "90;91;92" + }, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Main Staircase"; + dir = 4; + pixel_y = -8 + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"egp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/platform_decoration, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"egt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Chapel" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) +"egD" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/lower/port_midship_hallway) +"ehc" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"ehi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"ehj" = ( +/obj/item/stack/catwalk, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"ehl" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/interrogation) +"ehm" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south2) +"ehx" = ( +/obj/effect/landmark/start/marine/tl/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"ehL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/starboard) +"ehM" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"ehR" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/red{ + layer = 3.2 + }, +/obj/item/bedsheet/red{ + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"ehX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"eii" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"eim" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"eiq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/prop/magazine/dirty, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"eiw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_two) +"eiE" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/optable, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"eiN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bedsheetbin{ + pixel_y = 6 + }, +/obj/item/clothing/under/marine/dress, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"eiP" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"ejj" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/wrench{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/tool/wrench{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"ejo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"ejt" = ( +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/command/lifeboat) +"ejx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) +"ejV" = ( +/obj/structure/closet, +/obj/item/device/flashlight/pen, +/obj/item/attachable/reddot, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"ejY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"eky" = ( +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"ekz" = ( +/obj/structure/girder/displaced, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"ekM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"ekR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_umbilical) +"ekY" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Memorial Room" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/starboard_garden) +"ekZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 4; + pixel_y = 10 + }, +/obj/structure/machinery/computer/cameras/almayer_brig{ + desc = "Used to access the various cameras in the security brig."; + dir = 4; + name = "brig cameras console"; + pixel_y = -11 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"elf" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"elv" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/port) +"elx" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"elE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"elR" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"elV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + dir = 2; + name = "\improper Execution Equipment" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/execution_storage) +"elY" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"eme" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"eml" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"emn" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"emp" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/processing) +"emr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"emw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"emA" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_s) +"emC" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) +"emK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"emL" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/midship_hallway) +"ene" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/securestorage) +"eni" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"enK" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"enQ" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"enY" = ( +/obj/item/storage/firstaid, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"eob" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"eox" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"eoy" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"eoE" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"eoG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"eoK" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"epk" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"epu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/lobby) +"epJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"epT" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"eqb" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/stamp/denied{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/device/eftpos{ + eftpos_name = "Cargo Bay EFTPOS scanner"; + pixel_x = -10 + }, +/obj/item/tool/stamp/ro{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/storage/fancy/cigar{ + pixel_x = 6 + }, +/obj/item/ashtray/glass{ + pixel_x = 11; + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"eqd" = ( +/obj/item/stack/folding_barricade/three, +/obj/item/stack/folding_barricade/three, +/obj/structure/surface/rack, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/panic) +"eqm" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/machinery/door_control{ + id = "Secretroom"; + indestructible = 1; + layer = 2.5; + name = "Shutters"; + use_power = 0 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"eqB" = ( +/obj/item/bedsheet/brown{ + layer = 3.2 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/engineering/port_atmos) +"eqD" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"eqI" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/bed/chair, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"eqL" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"eqN" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/synthcloset) +"eqP" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"erd" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell/cl) +"ere" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"erh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"ern" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"erE" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"erF" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/book/manual/engineering_guide, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"erG" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/effect/landmark/start/marine/smartgunner/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"erL" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/crushed_cup, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/ashtray/plastic{ + pixel_x = 5; + pixel_y = -10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"erN" = ( +/turf/open/floor/almayer/aicore/no_build/ai_plates, +/area/almayer/command/airoom) +"esd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"esm" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"esn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/multitool{ + desc = "A large handheld tool used to override various machine functions. Primarily used to pulse Airlock and APC wires on a shortwave frequency. It contains a small data buffer as well. This one is comically oversized. Made in Texas."; + icon_state = "multitool_big"; + name = "\improper Oversized Security Access Tuner"; + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/stack/sheet/cardboard/medium_stack{ + layer = 3.01; + pixel_x = -7; + pixel_y = -6 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"esC" = ( +/obj/structure/toilet{ + pixel_y = 13 + }, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = -3 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/item/prop/magazine/dirty{ + pixel_x = -6; + pixel_y = -10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/captain_mess) +"esF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"esK" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"esM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/gym) +"esQ" = ( +/turf/open/floor/almayer/green/northwest, +/area/almayer/hallways/upper/fore_hallway) +"esT" = ( +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/command/lifeboat) +"etf" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/command/lifeboat) +"etn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"ets" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"ety" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"etE" = ( +/obj/structure/prop/almayer/name_stencil, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"etF" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"etM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"etN" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"eua" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"eup" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"euL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Starboard Railguns and Viewing Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"euN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door_control{ + id = "ARES Mainframe Left"; + name = "ARES Mainframe Lockdown"; + pixel_x = 24; + pixel_y = 24; + req_one_access_txt = "200;91;92" + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"euV" = ( +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/command/cic) +"euW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/closet/secure_closet/engineering_materials, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"eva" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"evg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"evk" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = -4 + }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"evC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "civ_uniforms"; + name = "Uniform Vendor Lockdown"; + pixel_x = -24; + pixel_y = -7; + req_access_txt = "31" + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"evM" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"evR" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"evX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"ewc" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"ewr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"ewI" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Execution Room" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/execution) +"ewO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"ewS" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) +"exb" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"exc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) +"exi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"exl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"exy" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) +"exQ" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eyD" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/starboard_hallway) +"eyG" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"eyM" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"eyQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"eyR" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"eyV" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/waterhazard{ + pixel_x = -17; + pixel_y = 6 + }, +/turf/open/floor/almayer/green/southwest, +/area/almayer/shipboard/brig/cells) +"ezq" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ezG" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"ezQ" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ezX" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"eAg" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) +"eAm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"eAx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/fore_hallway) +"eAC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"eAF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"eAG" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/obj/item/clipboard, +/obj/item/tool/pen{ + pixel_y = -17 + }, +/obj/item/paper_bin/uscm{ + pixel_y = -16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"eAI" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower/engine_core) +"eAL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"eAN" = ( +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"eAU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/living/basketball) +"eBd" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"eBe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"eBg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"eBx" = ( +/obj/structure/closet/emcloset/legacy, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/starboard_hallway) +"eBE" = ( +/obj/structure/machinery/photocopier{ + anchored = 0 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"eBG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"eBO" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"eBV" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"eBZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/fire{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"eCo" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south2) +"eCt" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/item/stack/sheet/mineral/uranium{ + amount = 5 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"eCI" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/execution) +"eDe" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"eDo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"eDq" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"eDt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 8 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/processing) +"eDu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"eDT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"eEc" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eEk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"eEo" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"eEw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"eFa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eFj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"eFG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"eFK" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"eFM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"eFP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/fridge/organic, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"eFT" = ( +/obj/structure/bed/sofa/vert/grey, +/obj/structure/bed/sofa/vert/grey{ + pixel_y = 11 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"eFY" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/structure/machinery/door_control/cl/office/window{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/structure/machinery/door_control/cl/office/door{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/spacecash/c500{ + pixel_x = -10; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"eGq" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"eGr" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Records"; + dir = 8 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"eGB" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"eGH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"eGZ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"eHa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"eHx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"eHy" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) +"eHX" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_s) +"eHY" = ( +/obj/structure/surface/rack, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"eIf" = ( +/obj/structure/prop/invuln/pipe_water, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"eIN" = ( +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"eIO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Podlocks"; + pixel_y = -26; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"eIY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"eJg" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"eJQ" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/almayer/command/lifeboat) +"eJU" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/lifeboat_pumps/north1) +"eJX" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/ce_room) +"eKy" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"eKH" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"eKI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"eKJ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"eKQ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"eKT" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"eKZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Port Viewing Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"eLp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/computer/supplycomp/vehicle, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"eLu" = ( +/obj/structure/sign/safety/three{ + pixel_x = 31; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) +"eLC" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 + }, +/obj/item/tool/kitchen/knife{ + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"eLH" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/beer_pack, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -27; + serial_number = 11 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"eLX" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/mp_bunks) +"eMr" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"eMx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"eMI" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"eMJ" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/perma) +"eMP" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"eMZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"eNi" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/ce_room) +"eNI" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "containmentlockdown_S"; + name = "\improper Containment Lockdown" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment) +"eNL" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eNR" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/processing) +"eOx" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"eOM" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-6"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"eON" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/starboard) +"ePq" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_umbilical) +"ePz" = ( +/obj/structure/largecrate/supply/weapons/pistols, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"ePM" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"ePN" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plastic{ + amount = 5 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"eQj" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = -5; + pixel_y = -24; + req_one_access_txt = "91;92" + }, +/obj/structure/machinery/door_control{ + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown"; + pixel_x = 6; + pixel_y = -24; + req_one_access_txt = "91;92" + }, +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 4; + pixel_y = 12 + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4; + pixel_y = -1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"eQm" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"eQz" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"eQJ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/poster/ad{ + pixel_x = 30 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"eQR" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"eRi" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/black{ + pixel_y = 8 + }, +/obj/item/folder/yellow, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -16; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"eRu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"eRy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc04"; + name = "\improper Treatment Center" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"eRI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Reception Exterior"; + dir = 8; + pixel_y = 2 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"eRR" = ( +/obj/item/clothing/head/helmet/marine{ + pixel_x = 16; + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/grown/poppy, +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"eRS" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/lower/workshop/hangar) +"eSk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/airlock{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"eSo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/medical_science) +"eSp" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -16 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"eSU" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer1" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"eTb" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/stern) +"eTd" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/boonie{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/trash/popcorn, +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"eTm" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"eTx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_aft_hallway) +"eTC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lockerroom) +"eTD" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"eUe" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"eUf" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eUh" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"eUn" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/chemistry) +"eUA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"eUZ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"eVj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"eVm" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eVv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"eVE" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"eVQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"eVR" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = 17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"eVT" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"eWf" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"eWp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 8 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"eWs" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"eWv" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"eWx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"eWF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"eXb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"eXq" = ( +/turf/closed/wall/almayer, +/area/almayer/living/offices/flight) +"eXr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"eXy" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"eXD" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"eYj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"eYn" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"eYp" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Tool Closet" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"eYr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/surface/rack{ + density = 0; + pixel_x = -16 + }, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"eYu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/squad_changer{ + pixel_x = -9 + }, +/obj/structure/machinery/computer/card{ + pixel_x = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"eYD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"eYF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"eYM" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2; + pixel_y = -22 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"eYQ" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -32 + }, +/obj/effect/landmark/start/synthetic, +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"eYR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering/port) +"eYU" = ( +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink_med_req" + }, +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/hydroponics) +"eZm" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/p_stern) +"eZo" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"eZp" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"eZC" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"eZH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"eZR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"fag" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"far" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/port_aft_hallway) +"faE" = ( +/obj/structure/bookcase{ + icon_state = "book-5"; + name = "law and engineering manuals bookcase"; + opacity = 0 + }, +/obj/item/book/manual/marine_law, +/obj/item/book/manual/detective, +/obj/item/book/manual/security_space_law, +/obj/item/book/manual/engineering_guide, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/orbital_cannon_manual, +/obj/item/book/manual/ripley_build_and_repair, +/obj/item/book/manual/engineering_hacking, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"faO" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"faR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"faX" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"fbb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"fbe" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"fbo" = ( +/obj/structure/machinery/door_control{ + id = "kitchen2"; + name = "Main Kitchen Shutters"; + pixel_x = -28 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"fbr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "briglobby"; + dir = 2; + name = "\improper Brig Lobby" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"fbu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"fbw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"fbB" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"fbC" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/maint/hull/lower/l_m_s) +"fbR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"fbU" = ( +/obj/item/stool, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"fbV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/north2) +"fca" = ( +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"fcf" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"fco" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"fcy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"fcB" = ( +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"fcE" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/basketball) +"fcM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) +"fcP" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"fcS" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"fdx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"fdE" = ( +/obj/item/clothing/mask/rebreather/scarf, +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"fdX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"fdZ" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"fea" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"feb" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/brig/execution) +"feo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"feq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"feD" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"feG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"feI" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"feS" = ( +/obj/structure/machinery/door_control{ + id = "pobunk2"; + name = "PO2 Privacy Shutters"; + pixel_x = -24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"feY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_two) +"ffg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/perma) +"ffq" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat{ + pixel_y = 15 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/clothing/head/hardhat{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ffx" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/clothing/head/helmet/marine/tech/tanker, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"ffE" = ( +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"ffN" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"fgh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"fgl" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"fgm" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"fgt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/shipboard/brig/medical) +"fgE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/machinery/vending/cigarette, +/obj/item/ashtray/plastic{ + layer = 3.4; + pixel_x = 7; + pixel_y = 11 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 7; + pixel_y = 19 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"fgR" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "courtyard window"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/cells) +"fgU" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"fhf" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"fhH" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"fhR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"fic" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"fie" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop) +"fix" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"fiE" = ( +/obj/structure/machinery/computer/cameras/containment/hidden{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/photo_album, +/obj/item/device/camera_film, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"fiQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"fje" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"fjo" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) +"fjz" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"fjA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/midship_hallway) +"fkK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"fkX" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 8 + }, +/area/almayer/medical/containment/cell/cl) +"flf" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 1; + vent_tag = "Records" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"flr" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"flD" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer/red, +/area/almayer/maint/upper/u_a_p) +"flL" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - SynthBay"; + dir = 8 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"flR" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"flW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"fml" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_fore_hallway) +"fmv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"fmB" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/pilotbunks) +"fmZ" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_umbilical) +"fnc" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"fnk" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"fnv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"fnx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/eastright{ + access_modified = 1; + dir = 8; + req_access_txt = "19" + }, +/obj/effect/landmark/map_item, +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"fnA" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/device/radio, +/obj/item/device/flashlight, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"fnH" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"fnI" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"foC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"foL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) +"foN" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/almayer/living/tankerbunks) +"foP" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/machinery/door_control{ + id = "containmentlockdown_S"; + name = "Containment Lockdown"; + pixel_x = 29; + pixel_y = 3; + req_one_access_txt = "28" + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"foS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"fpi" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"fpA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) +"fpI" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"fpM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"fpR" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/starboard_atmos) +"fpT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"fpW" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/hangar) +"fqb" = ( +/obj/item/paper/prison_station/interrogation_log{ + pixel_x = 10; + pixel_y = 7 + }, +/obj/structure/largecrate/random/barrel/green, +/obj/item/limb/hand/l_hand{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"fqc" = ( +/obj/structure/machinery/vending/cigarette, +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"fqw" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"fqA" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"fqC" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"fqJ" = ( +/obj/structure/machinery/door_control{ + id = "safe_armory"; + name = "Hangar Armory Lockdown"; + pixel_y = 24; + req_access_txt = "4" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"fqO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"fqQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"fqU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"fqW" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"fqZ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera"; + pixel_y = 6 + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"frb" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 + }, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza{ + pixel_y = 8 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"frl" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"frt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutters"; + pixel_x = 6; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_x = -6; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "courtyard window"; + name = "Courtyard Window Shutters"; + pixel_x = -6; + pixel_y = 9; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "Cell Privacy Shutters"; + name = "Cell Privacy Shutters"; + pixel_x = 6; + pixel_y = 9; + req_access_txt = "3" + }, +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"frz" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_point_defense) +"frF" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/starboard_missiles) +"frM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"fsf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/port_umbilical) +"fsh" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"fsp" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"fsR" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"fsU" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"fsV" = ( +/obj/structure/target, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"fuz" = ( +/obj/structure/machinery/cm_vending/clothing/pilot_officer, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"fuS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"fuT" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"fuU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) +"fuY" = ( +/obj/structure/bed/chair/bolted{ + dir = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/interrogation) +"fva" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"fvd" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"fvf" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/living/briefing) +"fvo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/glasses/welding{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/tool/weldingtool{ + pixel_x = -11; + pixel_y = 5 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fvA" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"fvB" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"fvN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/port_point_defense) +"fvV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"fwD" = ( +/obj/item/reagent_container/food/snacks/grown/poppy{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"fwK" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/lower/starboard_umbilical) +"fwM" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"fwY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie_delta_shared) +"fxI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"fxJ" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"fxZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"fya" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"fyp" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"fyD" = ( +/obj/structure/machinery/light, +/obj/structure/ladder{ + height = 1; + id = "cicladder2" + }, +/turf/open/floor/plating/almayer, +/area/almayer/living/briefing) +"fyI" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"fyT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + dir = 1; + name = "\improper Command Power Substation" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) +"fzc" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"fzq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"fzt" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/tool/crowbar{ + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"fzx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"fzP" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/item/folder/black, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/structure/machinery/door_control{ + id = "CE Office Shutters"; + name = "CE Office Shutters"; + pixel_x = -6; + pixel_y = 18; + req_access_txt = list(); + req_one_access_txt = "1;6" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/ce_room) +"fzT" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"fAa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/ammo_magazine/pistol{ + current_rounds = 0 + }, +/obj/item/weapon/gun/pistol/m4a3{ + current_mag = null + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/offices/flight) +"fAr" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"fBi" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fBo" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"fBO" = ( +/obj/structure/machinery/chem_master{ + vial_maker = 1 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"fCg" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"fCi" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/lungs/prosthetic, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"fCp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"fCG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"fCI" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ARES JoeCryo"; + name = "\improper ARES Synth Bay Shutters"; + plane = -7 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"fCL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"fCT" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"fCW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"fDh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"fDj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"fDG" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"fDJ" = ( +/obj/effect/landmark/start/marine/engineer/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"fDS" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"fDU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"fDV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/crowbar, +/obj/item/clothing/head/headset{ + pixel_y = -7 + }, +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"fEe" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"fEk" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"fEC" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"fEF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fER" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"fFe" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"fFh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/autopsy_scanner, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"fFD" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"fFL" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"fFO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"fFQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"fFU" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"fGa" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"fGd" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"fGg" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"fGi" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"fGu" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext"; + name = "Window Shutters"; + pixel_x = -26; + pixel_y = 6; + req_access_txt = "28" + }, +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_door"; + name = "Door Shutters"; + pixel_x = -26; + pixel_y = 1; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"fGB" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"fHb" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"fHh" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"fHz" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"fHF" = ( +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"fIK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"fIM" = ( +/obj/effect/landmark/start/marine/tl/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"fIX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + access_modified = 1; + name = "\improper Requisitions Auxiliary Storage Room"; + req_one_access_txt = "19;21" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"fIZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/boots/n117{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"fJm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"fJp" = ( +/obj/structure/girder, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fJt" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"fJu" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"fJy" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/almayer, +/area/almayer/living/pilotbunks) +"fJO" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_1"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"fJT" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4 + }, +/obj/item/seeds/wheatseed, +/obj/item/seeds/wheatseed, +/turf/open/floor/almayer/green/southeast, +/area/almayer/shipboard/brig/cells) +"fKe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"fKh" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/window, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"fKi" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/chief_mp_office) +"fKt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/prop/dam/crane{ + bound_height = 32; + climbable = 1; + layer = 3.5; + pixel_y = -23 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fKw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 5"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"fKT" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"fKV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/paper{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/tool/pen/red/clicky{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"fLf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"fLg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"fLi" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"fLl" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/s_stern) +"fLt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"fLu" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Oxygen Supply Console" + }, +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"fLv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"fLF" = ( +/obj/structure/machinery/brig_cell/perma_2{ + pixel_x = -32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"fMe" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 + }, +/obj/item/paper, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -10; + pixel_y = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"fMt" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Interior"; + name = "\improper ARES Inner Chamber Shutters"; + plane = -7 + }, +/obj/effect/step_trigger/ares_alert/core, +/obj/structure/sign/safety/laser{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"fME" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"fMU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/coffee{ + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"fNd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fNi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/bed/chair/office/dark, +/obj/item/clothing/head/cmcap{ + pixel_x = -2; + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"fNH" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fNX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"fOk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"fOv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"fOz" = ( +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"fOK" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"fOL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) +"fPn" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"fPp" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/yellow{ + layer = 3.2 + }, +/obj/item/bedsheet/yellow{ + pixel_y = 13 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/living/port_emb) +"fPu" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fPB" = ( +/obj/structure/machinery/ares/processor/apollo, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"fPF" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/clothing/gloves/yellow, +/obj/item/device/multitool, +/obj/item/tool/screwdriver{ + icon_state = "screwdriver7" + }, +/obj/item/tool/crowbar/red, +/obj/item/book/manual/engineering_hacking, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fQn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"fQu" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "CMO Shutters"; + name = "\improper CMO Office Shutters" + }, +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/almayer/medical/upper_medical) +"fQy" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"fQD" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Core Chamber"; + dir = 8 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"fQS" = ( +/obj/structure/bed/chair/comfy/orange, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"fRg" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_s) +"fRr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/blue/southwest, +/area/almayer/command/cichallway) +"fRC" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"fRL" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"fRS" = ( +/obj/effect/landmark/start/warden, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cryo) +"fSl" = ( +/obj/structure/machinery/line_nexter{ + id = "line2"; + pixel_x = -2 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"fSm" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"fSx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"fSF" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/obj/item/storage/firstaid/rad, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower) +"fTj" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) +"fTl" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_s) +"fTm" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"fTt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/processing) +"fTF" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Laundry Room" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"fUz" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/cups{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/storage/box/cups, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"fUA" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"fUB" = ( +/obj/structure/closet/secure_closet/fridge/organic/stock, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"fUC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"fUZ" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"fVa" = ( +/obj/item/stack/catwalk, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_a_p) +"fVe" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_p) +"fVk" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"fVo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/workshop) +"fVx" = ( +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3_4range, +/area/almayer/command/airoom) +"fVz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fVF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"fVG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"fWg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"fWi" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/tinted{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"fXg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"fXx" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"fXz" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"fXE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"fXN" = ( +/obj/effect/landmark/start/marine/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"fXO" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north2) +"fXP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"fXZ" = ( +/obj/docking_port/stationary/emergency_response/port3, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"fYb" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"fYf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"fYr" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"fYZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"fZl" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/engine_core) +"fZo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"fZq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"fZy" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"fZA" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/obj/structure/machinery/meter, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower) +"fZE" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fZG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"fZI" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 7; + pixel_y = -3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fZR" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"fZX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"fZZ" = ( +/obj/effect/landmark/start/marine/medic/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"gac" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"gaJ" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/cryo) +"gaQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"gba" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command{ + department = "AI Core"; + pixel_y = 8 + }, +/obj/structure/transmitter/rotary{ + name = "AI Core Telephone"; + phone_category = "ARES"; + phone_color = "blue"; + phone_id = "AI Core"; + pixel_x = 8; + pixel_y = -8 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"gbg" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 24 + }, +/obj/structure/sign/safety/laser{ + pixel_y = 24 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 14; + pixel_y = 38 + }, +/obj/structure/sign/safety/rewire{ + pixel_y = 38 + }, +/obj/structure/machinery/door_control{ + id = "ARES Operations Right"; + name = "ARES Operations Shutter"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"gbm" = ( +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"gbs" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"gbw" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/processing) +"gcm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"gcN" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + access_modified = 1; + name = "\improper Senior Enlisted Advisor's Office"; + req_access = null; + req_access_txt = "19;29" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/sea_office) +"gde" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"gdp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/hangar) +"gdG" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/mp_bunks) +"gdJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"gdS" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/engineering/laundry) +"gei" = ( +/obj/structure/sign/safety/ref_bio_storage{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17; + pixel_y = -7 + }, +/obj/structure/medical_supply_link, +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"gek" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigarettes/wypacket, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"gel" = ( +/turf/closed/wall/almayer/research/containment/wall/west, +/area/almayer/medical/containment/cell/cl) +"gen" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"ger" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/tool/pen{ + pixel_x = 8 + }, +/obj/item/clipboard{ + pixel_x = -8 + }, +/obj/item/folder/white{ + pixel_x = -8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"geu" = ( +/obj/structure/machinery/light, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"gfd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"gfo" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"gfq" = ( +/obj/structure/closet/secure_closet/fridge/groceries, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"gfu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"gfG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"gfN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/port) +"gfW" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/lockerroom) +"ggh" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"ggl" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"ggo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"ggt" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"ggz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"ggD" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"ggJ" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc03"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = 28; + pixel_y = -23 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"ggQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/airmix) +"ggS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"ghA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/toy/handcard/uno_reverse_red{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/toy/deck/uno, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"ghF" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"gii" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/interrogation) +"gio" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"gip" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"giD" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"giR" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/shipboard/brig/cic_hallway) +"giW" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/upper/midship_hallway) +"gjg" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"gji" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"gjm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gjq" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"gjt" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"gjv" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"gjB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/command/computerlab) +"gjK" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"gkr" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"gkE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"gkK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"gll" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"gls" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/clipboard, +/obj/item/clipboard, +/obj/item/folder/black, +/obj/item/folder/black, +/obj/item/folder/white, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"glB" = ( +/obj/structure/sign/safety/chem_lab{ + pixel_x = 5; + pixel_y = 29 + }, +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"glG" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"glH" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"glP" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"gmb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + dir = 1; + name = "Storage"; + req_one_access_txt = "19;21" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"gmj" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"gms" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/port) +"gnu" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/green, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"gnv" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"gnB" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"gnK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"gnM" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"gof" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"goj" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"gol" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "7;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/weapon_room) +"goo" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"goy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dorms" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"goL" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"goM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"goY" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/panic) +"gpc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering North Hall" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"gpi" = ( +/obj/structure/dropship_equipment/paradrop_system, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"gpp" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"gpI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"gpO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"gpT" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"gpW" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "ARES ReceptStairs1"; + name = "ARES Reception Shutters"; + pixel_y = 24; + req_one_access_txt = "91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"gpY" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/lifeboat_pumps/north1) +"gqt" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"gqx" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"gqz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"gqH" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/hallways/upper/midship_hallway) +"gqI" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/midship_hallway) +"gqP" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"gqQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/obj/structure/sign/poster/hero/voteno{ + pixel_y = 32 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"grd" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"gre" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/upper/fore_hallway) +"grv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"grG" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"grR" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/living/briefing) +"grT" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/tool/wet_sign{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"gsd" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler{ + pixel_x = 7 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = -6 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"gsg" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/machinery/door_control{ + id = "Alpha_1"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"gsi" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"gsm" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"gsp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"gsy" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"gsC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"gsJ" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/hallways/upper/midship_hallway) +"gsM" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"gsZ" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2; + pixel_y = -21 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"gtg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"gtp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"gtD" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"gtH" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"gtI" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"gtQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"gtU" = ( +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = 17 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"guo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/south2) +"guK" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"guP" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/maint/upper/u_a_s) +"guS" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"guW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sign/prop3{ + pixel_x = 28 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/clothing/mask/gas{ + pixel_y = 7 + }, +/obj/item/clothing/mask/gas{ + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"gvq" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"gvu" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"gvK" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"gvU" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"gwh" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"gwj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"gwn" = ( +/obj/structure/machinery/ares/processor/bioscan, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"gwo" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/basketball) +"gww" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"gwM" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/item/storage/pill_bottle/tramadol/skillless{ + layer = 2.9; + pill_type_to_fill = null; + pixel_y = 14 + }, +/obj/structure/machinery/door_control{ + id = "Delta_1"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"gwR" = ( +/obj/item/device/flashlight/lamp/green, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"gxh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/obj/item/tool/screwdriver, +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"gxk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"gxm" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/stairs) +"gxn" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"gxt" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Warden's Office" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"gxI" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/s_bow) +"gxO" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/gym) +"gxP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"gxU" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"gyh" = ( +/obj/structure/machinery/cm_vending/gear/executive_officer{ + density = 0; + pixel_y = 30 + }, +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"gym" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/mp_bunks) +"gyn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"gyv" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"gyw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"gyE" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_aft_hallway) +"gyH" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 16 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"gyN" = ( +/obj/structure/machinery/prop{ + desc = "It's a server box..."; + icon_state = "comm_server"; + name = "server box" + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"gyO" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/ce_room) +"gyU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"gzn" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/obj/structure/platform_decoration, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gzq" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"gzw" = ( +/obj/structure/closet/hydrant{ + pixel_x = 30 + }, +/obj/item/reagent_container/hypospray/autoinjector/skillless, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"gzI" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "pobunk1"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/living/pilotbunks) +"gzK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"gzM" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"gzN" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"gzV" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"gAj" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"gAk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"gAl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"gAz" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/golden_cup{ + desc = "A golden cup, won in the championship final against the USS Sulaco ca. 2172"; + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"gAA" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha_bravo_shared) +"gAO" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"gAP" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/closet, +/obj/item/clothing/head/bearpelt, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"gAS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"gBc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"gBd" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"gBo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"gBs" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"gBU" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/bag/trash{ + pixel_x = -3 + }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"gBW" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"gCf" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"gCu" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"gCw" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 10 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"gCB" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north{ + cell_type = /obj/item/cell/hyper + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"gCP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"gDh" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Security Vault"; + req_access = null; + req_one_access_txt = "91;92" + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore{ + plane = -6 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"gDk" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -15 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"gDp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"gDt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/crew/alt{ + dir = 4 + }, +/obj/structure/transmitter/rotary/no_dnd{ + name = "Brig Cells Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig Cells"; + pixel_x = 16 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/processing) +"gDH" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"gDW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"gDX" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"gEg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices/flight) +"gEh" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"gEo" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"gEv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"gEC" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"gFa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_point_defense) +"gFd" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/atmospipes{ + pixel_y = 9 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"gFP" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/stern_point_defense) +"gFR" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/cm_vending/gear/commanding_officer, +/turf/open/floor/almayer/cargo, +/area/almayer/living/commandbunks) +"gGb" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"gGf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"gGr" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"gGs" = ( +/obj/item/tool/crowbar/red{ + pixel_x = -13; + pixel_y = -13 + }, +/obj/item/stack/cable_coil{ + pixel_x = 7 + }, +/obj/item/tool/wirecutters{ + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" + }, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"gGw" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/vehiclehangar) +"gGx" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -16 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"gGI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"gGJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"gHh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"gHi" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"gHj" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/fridge/groceries/stock, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"gHl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"gHo" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"gHt" = ( +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"gHZ" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"gIh" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + damage_cap = 50000; + name = "\improper Chief Engineer's Bunk"; + no_panel = 1; + req_access = list(); + req_one_access_txt = "1;6" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/ce_room) +"gIm" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"gIz" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"gII" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"gIJ" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"gIO" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/interrogation) +"gIU" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/tapes{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/storage/box/tapes{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/box/tapes{ + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"gJf" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"gJg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"gJp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"gJC" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"gJE" = ( +/obj/structure/machinery/door_control{ + id = "Interrogation Shutters"; + name = "\improper Shutters"; + pixel_x = 24; + pixel_y = 12; + req_access_txt = "3" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/interrogation) +"gJF" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/s_stern) +"gJO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/southleft{ + desc = "A window, that is also a door. A windoor if you will. This one is stronger."; + health = 500; + name = "Reinforced Glass door"; + req_one_access_txt = "2;35" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"gJP" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"gKd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"gKo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"gKv" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"gKw" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"gKB" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"gKF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 8 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"gKK" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/lower/repair_bay) +"gKR" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"gKZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"gLc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/hydroponics) +"gLl" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_f_s) +"gLm" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"gLz" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"gLD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"gLE" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"gLG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower/engine_core) +"gLN" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"gLZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_2"; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"gMd" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/lighter, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"gMk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"gMN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + indestructible = 1; + name = "ARES Chamber Lockdown"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/obj/structure/machinery/door/poddoor/railing{ + closed_layer = 4.1; + density = 0; + dir = 2; + id = "ARES Railing"; + layer = 2.1; + open_layer = 2.1; + pixel_x = -1; + pixel_y = -1; + unacidable = 0; + unslashable = 0 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"gMS" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"gMU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/living/briefing) +"gNg" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"gNo" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"gNp" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) +"gNq" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"gNy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"gNI" = ( +/turf/open/floor/almayer/orange, +/area/almayer/maint/upper/u_a_s) +"gNN" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"gNO" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"gNZ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"gOa" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"gOk" = ( +/obj/structure/largecrate/guns/merc{ + name = "\improper dodgy crate" + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"gOC" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower) +"gOR" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"gOS" = ( +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) +"gPc" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"gPA" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/upper/midship_hallway) +"gPS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"gPU" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"gQk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/obj/structure/machinery/faxmachine/corporate/liaison, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"gQu" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/storage/firstaid/rad, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"gQF" = ( +/obj/structure/bed/chair/comfy{ + buckling_y = 2; + dir = 8; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"gQO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"gQQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"gRc" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"gRd" = ( +/obj/structure/platform, +/obj/structure/target{ + desc = "'Such an insult (referring to Canton) can only be repaid in American blood. Mark my words, this will happen'-Kolonel Ganbaatar UPP Armed Forces"; + name = "Kolonel Ganbaatar" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"gRJ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/hallways/lower/port_umbilical) +"gRP" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gSa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"gSj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/engineering/port_atmos) +"gSk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"gSy" = ( +/obj/item/frame/rack{ + layer = 3.1; + pixel_y = 19 + }, +/obj/structure/surface/rack, +/obj/item/tool/weldpack{ + pixel_x = 5 + }, +/obj/item/tool/weldpack{ + pixel_x = -2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"gSz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"gSH" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"gTk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"gTH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/skills{ + dir = 4; + pixel_y = 18 + }, +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4; + pixel_y = -18 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"gTK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"gUf" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"gUg" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"gUi" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"gUn" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"gUu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"gUG" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"gUL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/glass, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 6; + pixel_y = 13 + }, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"gUS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/port) +"gUV" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/command/lifeboat) +"gUX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"gVq" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/containment) +"gVu" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/obj/item/reagent_container/food/snacks/grown/banana{ + pixel_x = 18; + pixel_y = 5 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"gVA" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 8; + id = "almayerlink_OT1_req" + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"gVF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"gVW" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/sign/safety/reduction{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"gWm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"gWt" = ( +/obj/structure/surface/table/almayer, +/obj/item/pipe{ + dir = 9 + }, +/obj/item/tool/screwdriver{ + layer = 3.6; + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/tool/crowbar/red{ + pixel_x = 17 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/lower/repair_bay) +"gWu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"gWE" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/marine/spec/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"gWG" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/medical/upper_medical) +"gXl" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access_txt = "5" + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"gXs" = ( +/obj/effect/step_trigger/ares_alert/terminals, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ARES Operations Right"; + name = "\improper ARES Operations Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"gXx" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"gXB" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"gYe" = ( +/obj/structure/machinery/vending/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"gYg" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/flight_recorder{ + pixel_x = 9 + }, +/obj/item/tool/weldingtool{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"gYj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"gYl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"gYp" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/maint/upper/u_m_p) +"gYt" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"gYx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"gYI" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"gYU" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"gZw" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"gZK" = ( +/turf/open/floor/almayer, +/area/almayer/living/auxiliary_officer_office) +"gZP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D4"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"gZW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/port_fore_hallway) +"had" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"hal" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"ham" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"haz" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"haB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"haD" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower) +"haO" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"haQ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/marine, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"haR" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"haY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/starboard_hallway) +"hbl" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"hbp" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/p_stern) +"hbs" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/fire_alarm, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower) +"hbu" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) +"hbA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"hbE" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/snacks/cheesecakeslice{ + pixel_y = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"hbI" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"hcf" = ( +/obj/item/bedsheet/brown{ + layer = 3.2 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/structure/barricade/handrail{ + dir = 4; + layer = 3.3; + pixel_y = 3 + }, +/obj/structure/barricade/handrail{ + dir = 8; + layer = 3.3; + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/engineering/port_atmos) +"hcw" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/structure/machinery/door_control{ + id = "Firing_Range_1"; + name = "range shutters"; + pixel_x = 9; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"hcI" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"hcX" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"hdd" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/starboard_missiles) +"hds" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/living/offices) +"hdy" = ( +/obj/item/storage/firstaid/fire, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"hdE" = ( +/obj/structure/filingcabinet, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_y = 14 + }, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"hdP" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"hdQ" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Execution Firearms" + }, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/ammo_box/magazine/m4ra, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"hdV" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/lower/port_midship_hallway) +"hec" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"heo" = ( +/obj/structure/machinery/power/apc/almayer/north{ + cell_type = /obj/item/cell/hyper + }, +/obj/structure/sign/safety/rewire{ + pixel_x = -15; + pixel_y = 25 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/armory) +"heK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Tool Closet" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"heO" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"heS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"hfa" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"hfb" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"hft" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"hfv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"hfO" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full{ + pixel_y = 8 + }, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/suit/storage/hazardvest/black, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"hfQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"hgg" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"hgk" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"hgo" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower) +"hgp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"hgs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hgB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/intel, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/computerlab) +"hgD" = ( +/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ + anchored = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"hgL" = ( +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 14 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"hgZ" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "or3privacyshutter"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"hhd" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = -9; + pixel_y = 16 + }, +/obj/item/clothing/suit/storage/hazardvest/blue{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/clothing/head/hardhat{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"hhg" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"hhn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"hhA" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"hif" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hip" = ( +/obj/item/device/multitool, +/obj/structure/platform_decoration, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"hiu" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice13"; + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"hiy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"hiM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"hiP" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hji" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"hjk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"hjs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"hjA" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/port_missiles) +"hjB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "Kitchen"; + req_one_access_txt = "30;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"hjM" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 + }, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/processing) +"hjQ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hjT" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/largecrate, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"hki" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"hkz" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"hkB" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/port_point_defense) +"hkC" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"hkG" = ( +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"hkH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/structure/machinery/door_control{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutters"; + pixel_x = 16; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_x = 16; + pixel_y = 8; + req_access_txt = "3" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"hkX" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -7; + pixel_y = 20 + }, +/obj/item/ashtray/bronze{ + pixel_x = 4; + pixel_y = 19 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/map_item{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/reagent_container/spray/cleaner{ + layer = 3.04; + pixel_x = 5; + pixel_y = 22 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"hlj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"hlH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"hlI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/structure/transmitter/rotary{ + name = "Brig Wardens's Office Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig Warden's Office"; + pixel_x = 15 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/warden_office) +"hlT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) +"hlU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"hlX" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"hme" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/hydroponics) +"hmj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"hmv" = ( +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"hmw" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"hmy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hmA" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/p_bow) +"hmC" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"hmF" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/sign/poster{ + pixel_x = -32 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"hmS" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/blue, +/area/almayer/command/cichallway) +"hmV" = ( +/obj/structure/bookcase{ + icon_state = "book-5"; + name = "medical manuals bookcase"; + opacity = 0 + }, +/obj/item/book/manual/surgery, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"hmZ" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"hng" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/accessory/storage/black_vest/acid_harness, +/obj/item/clothing/accessory/storage/black_vest/acid_harness, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"hnt" = ( +/obj/item/toy/deck{ + pixel_y = 12 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"hnE" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/ids{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/device/flash, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"hnI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + access_modified = 1; + name = "\improper Flight Crew Quarters"; + req_one_access_txt = "19;22" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"hnP" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"hoc" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"hoK" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"hoT" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"hoW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"hpk" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"hpN" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"hpS" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "crate_room3"; + name = "\improper Storage Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"hpY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"hqb" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) +"hqc" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"hqh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/research/containment/entrance, +/area/almayer/medical/containment/cell) +"hqm" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"hqp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"hqu" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"hqW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"hrm" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, +/obj/structure/machinery/light, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"hrn" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + name = "\improper Research Reception Laboratory" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"hro" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"hrF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_point_defense) +"hrI" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"hsc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"hsg" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/door/window/ultra{ + dir = 8; + req_access_txt = "19" + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"hsh" = ( +/obj/structure/coatrack, +/obj/structure/sign/poster/clf{ + pixel_x = -28 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"hsj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"hsr" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"hss" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"hsu" = ( +/obj/structure/bed/sofa/south/grey{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"hsy" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/lower/engine_core) +"hsK" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"hsW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) +"hte" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"htg" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"htk" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"htl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"hto" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"htq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"htG" = ( +/obj/item/tool/soap, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"htI" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"htL" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/boots/n150{ + pixel_x = -5; + pixel_y = 6 + }, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"huw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 4; + name = "Dropship Remote Control Console" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"huD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"huK" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/living/cryo_cells) +"huO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"huP" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"huU" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"hvd" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/interrogation) +"hvv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/item/clipboard{ + base_pixel_x = 20; + pixel_x = 5 + }, +/obj/item/paper{ + pixel_x = 5 + }, +/obj/item/tool/pen{ + pixel_x = 5 + }, +/obj/structure/surface/table/reinforced/black, +/obj/structure/transmitter/rotary{ + name = "CIC Reception Telephone"; + phone_category = "Command"; + phone_id = "CIC Reception"; + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"hvw" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating, +/area/almayer/powered/agent) +"hvx" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"hvz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hvH" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"hwB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"hwC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"hwH" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"hxe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"hxm" = ( +/obj/item/paper_bin/uscm{ + pixel_y = 4 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"hxG" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"hxZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade{ + pixel_x = -4 + }, +/obj/item/tool/shovel/spade{ + pixel_x = 4 + }, +/obj/item/tool/shovel/spade, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket, +/obj/item/reagent_container/glass/watertank, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"hyb" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"hyk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"hyw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"hyE" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown" + }, +/obj/effect/step_trigger/ares_alert/access_control, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"hyQ" = ( +/turf/closed/wall/almayer, +/area/almayer/living/synthcloset) +"hyT" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 + }, +/obj/structure/sign/safety/north{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"hyV" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 24 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/interrogation) +"hza" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"hzb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4; + icon_state = "exposed01-supply" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/combat_correspondent) +"hzc" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/upper_engineering/notunnel) +"hzg" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"hzs" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"hzu" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"hzG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"hzN" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"hAc" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/flare, +/obj/item/mortar_shell/flare, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"hAf" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"hAh" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/lower/port_umbilical) +"hAz" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"hAA" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"hAG" = ( +/obj/structure/closet/crate/internals, +/obj/item/restraint/adjustable/cable/blue, +/obj/item/restraint/adjustable/cable/blue, +/obj/item/restraint/adjustable/cable/cyan, +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"hAU" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"hAZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"hBc" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"hBr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"hBz" = ( +/obj/item/mortar_kit, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"hBF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"hBG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"hBL" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) +"hBW" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"hCf" = ( +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"hCk" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"hCq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"hCt" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/intercom{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hCS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/tool/pen, +/obj/structure/sign/safety/med_cryo{ + pixel_x = 32 + }, +/obj/item/weapon/pole/wooden_cane, +/obj/item/weapon/pole/wooden_cane, +/obj/item/weapon/pole/wooden_cane, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/lower_medical_medbay) +"hCV" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"hDw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"hDR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/syringe_case{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/syringe_case, +/obj/item/storage/syringe_case{ + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"hDU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/lower/port_fore_hallway) +"hDV" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"hDX" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"hEb" = ( +/obj/effect/landmark/start/marine/medic/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"hEg" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_fore_hallway) +"hEl" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"hEm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hEr" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"hEw" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 + }, +/obj/structure/machinery/meter, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"hEV" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"hFw" = ( +/obj/structure/machinery/disposal/broken, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"hFC" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"hFF" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + name = "Autopsy"; + req_access_txt = "25"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"hGb" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"hGh" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/medical/chemistry) +"hGG" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"hGN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/surface/rack{ + density = 0; + pixel_x = 16 + }, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"hGO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/briefing) +"hGV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"hHe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/starboard) +"hHl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/pouch/general/large, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"hHr" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"hIp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"hIs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"hIF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"hIG" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"hII" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"hIX" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"hJg" = ( +/obj/structure/pipes/trinary/mixer{ + dir = 4; + name = "Gas mixer N2/O2" + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"hJk" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"hJD" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"hJI" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"hKe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"hKl" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"hKO" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"hLr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_s"; + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment) +"hLu" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"hLC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"hLI" = ( +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"hLS" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"hMi" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"hMk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"hMG" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"hMM" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"hMN" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"hNh" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"hNv" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"hNw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/squads/charlie) +"hNB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "7;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/vehiclehangar) +"hNM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + layer = 2.9; + pixel_y = 6 + }, +/obj/item/tool/shovel/etool/folded, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"hNP" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"hNY" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/chief_mp_office) +"hOd" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"hOn" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/hallways/upper/midship_hallway) +"hOu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Podlocks"; + pixel_y = -26; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"hOV" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/constr) +"hPe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_door"; + name = "\improper Research Doorway Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"hPh" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/silver/north, +/area/almayer/living/auxiliary_officer_office) +"hPu" = ( +/obj/structure/largecrate/supply, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"hPD" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) +"hPI" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/brig/perma) +"hPL" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"hPN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/hydroponics) +"hPZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"hQc" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"hQf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"hQw" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower/engine_core) +"hQK" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) +"hQP" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"hQU" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"hQW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"hQY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"hRa" = ( +/obj/structure/machinery/vending/snack{ + pixel_x = -7 + }, +/obj/structure/machinery/vending/coffee{ + pixel_x = 14 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"hRd" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"hRk" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + density = 0; + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"hRu" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/brig/execution_storage) +"hRA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"hRW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/sign/safety/rewire{ + pixel_y = 38 + }, +/obj/structure/sign/safety/laser{ + pixel_y = 24 + }, +/obj/structure/machinery/computer/crew/alt{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 24 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 14; + pixel_y = 38 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"hSb" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"hSk" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"hSt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"hSv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"hSw" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"hSI" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"hTc" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"hTf" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"hTl" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + desc = "A powerful server tower housing various AI functions."; + name = "server tower"; + pixel_y = 16 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"hTt" = ( +/obj/structure/machinery/brig_cell/cell_1{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"hTF" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + isopen = 1; + starting_helmet_type = null; + starting_mask_type = null; + starting_suit_type = null; + starting_tank_type = null + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"hTP" = ( +/obj/structure/machinery/door_control{ + id = "crate_room2"; + name = "storage shutters"; + pixel_y = 26 + }, +/obj/structure/machinery/recharge_station{ + desc = "Where the cargo department's Working Joe used to charge before it tragically fell into the ASRS elevator three years ago. The replacement still hasn't arrived."; + name = "Working Joe charging station" + }, +/obj/structure/sign/safety/synth_storage{ + pixel_x = 8; + pixel_y = 36 + }, +/obj/item/frame/light_fixture/small{ + pixel_y = 17 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"hTT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 3 + }, +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"hTU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"hUb" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"hUh" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"hUk" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower/engine_core) +"hUu" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"hUz" = ( +/obj/structure/largecrate/supply/supplies/mre{ + desc = "A supply crate containing everything you need to stop a CLF uprising."; + name = "\improper USCM crate 'FOB supplies'" + }, +/obj/item/folded_tent/big{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"hUU" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/box/bodybags, +/obj/structure/machinery/light/small{ + dir = 4; + pixel_y = -12 + }, +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"hUW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"hVf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) +"hVz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"hVL" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"hWa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"hWq" = ( +/obj/structure/platform{ + layer = 3.1 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/ashtray/plastic{ + layer = 3.4; + pixel_x = 4 + }, +/obj/structure/largecrate/random/case, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"hWr" = ( +/obj/effect/landmark/start/marine/smartgunner/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"hWs" = ( +/obj/structure/machinery/flasher_button{ + id = "briefing_flash"; + name = "Briefing Flasher"; + pixel_x = 32; + pixel_y = 27; + req_access_txt = "19" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"hWB" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"hWD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"hWH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"hWJ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"hWM" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"hWO" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cichallway) +"hWP" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"hXb" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"hXd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_box/magazine/misc/mre{ + pixel_x = 4; + pixel_y = 15 + }, +/obj/item/storage/box/wy_mre{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -7; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"hXm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"hXD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"hXG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"hXX" = ( +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/port) +"hXY" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) +"hYf" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"hYj" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"hYn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"hYE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"hYG" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"hZe" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit. Sends items to the requisitions."; + icon_state = "delivery_engi"; + name = "Requisitions Delivery Unit"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"hZj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"hZw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"hZE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"hZJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"hZN" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"hZZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"iaa" = ( +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"iag" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) +"iah" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"ial" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"iaq" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"iat" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"iav" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) +"iaF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"iaO" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"iaR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"ibc" = ( +/obj/structure/machinery/conveyor_switch{ + id = "req_belt" + }, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"ibf" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"ibP" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"icp" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/hangar) +"icw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"icM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"icQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/fore_hallway) +"icZ" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/processing) +"idx" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"idL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"idX" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"ied" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"ien" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"ieu" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/item/stack/sheet/metal{ + layer = 4.1; + pixel_x = -3; + pixel_y = 14 + }, +/obj/item/tool/weldingtool{ + layer = 4.1; + pixel_x = 5; + pixel_y = 12 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/red{ + layer = 3.2 + }, +/obj/item/bedsheet/red{ + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"iey" = ( +/obj/structure/surface/table/almayer, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_lobby) +"ieX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"ifb" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer, +/area/almayer/living/tankerbunks) +"iff" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"ifz" = ( +/obj/structure/machinery/keycard_auth{ + pixel_x = 25 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"igb" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"igr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"igs" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"igw" = ( +/obj/structure/sign/poster/ad{ + pixel_x = 30 + }, +/obj/structure/closet, +/obj/item/clothing/mask/cigarette/weed, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"igS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"iho" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) +"ihw" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"ihI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"ihM" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ihW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/starboard_fore_hallway) +"ihX" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"ihY" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"iit" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"iiU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/fore_hallway) +"iiZ" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"ijd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) +"ijf" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/crap, +/obj/item/tool/crowbar, +/obj/structure/machinery/cell_charger, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"ijr" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"ijQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "SEA Office Shutters"; + name = "SEA Office Shutters"; + pixel_y = 12 + }, +/obj/item/ashtray/plastic{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/structure/transmitter/rotary{ + name = "Senior Enlisted Advisor Office Telephone"; + phone_category = "Offices"; + phone_id = "Senior Enlisted Advisor's Office"; + pixel_x = -3 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"ikl" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/vehiclehangar) +"iks" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 1 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"ikv" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"ikA" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"ikQ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/stamp/hop{ + name = "Commanding Officer's rubber stamp"; + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/paper_bin/uscm{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/tool/pen/red/clicky{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/tool/pen/blue/clicky{ + pixel_x = -6; + pixel_y = -3 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"ikT" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"ilq" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"ily" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"ilG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil{ + icon_state = "dropship2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ilJ" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"iml" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"imo" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"imp" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"imt" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"imy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"imS" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES StairsUpper"; + name = "\improper ARES Core Shutters"; + plane = -7 + }, +/obj/structure/disposalpipe/up/almayer{ + dir = 2; + id = "ares_vault_in"; + name = "aicore" + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"inh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-y" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"ins" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"inw" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering) +"inL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"ios" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"iow" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_y_offset = 0 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"ioH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"ioM" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"ioP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"ioU" = ( +/turf/closed/wall/almayer, +/area/almayer/command/securestorage) +"ioV" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"ipa" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"ipe" = ( +/obj/item/toy/crayon{ + name = "chewed crayon"; + pixel_y = 20; + uses = 1 + }, +/turf/open/floor/plating, +/area/almayer/living/port_emb) +"ipk" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"ipn" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"ipB" = ( +/obj/structure/surface/rack, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/hatchet, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"ipE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/squads/alpha_bravo_shared) +"ipK" = ( +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"ipQ" = ( +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -29 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"iqd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"iqo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"iqp" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "37" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"iqH" = ( +/obj/item/trash/chips{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/trash/cheesie, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"iqR" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = -16 + }, +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"irr" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_AresUp2"; + vector_x = -102; + vector_y = 61 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"iry" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south2) +"irJ" = ( +/obj/item/tool/wirecutters{ + pixel_y = -7 + }, +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"irS" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/south1) +"irT" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/plating, +/area/almayer/living/port_emb) +"irU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"ish" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop) +"iso" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/upper/midship_hallway) +"isq" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"isI" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"isN" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"itg" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ito" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"itR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"itX" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"iub" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"iuf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"iun" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"iup" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"iur" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"iuz" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/warhead, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"iuE" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"iuG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"iuI" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ivf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/camera, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"ivg" = ( +/obj/structure/janitorialcart, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/hangar) +"ivs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"ivu" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"ivz" = ( +/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"ivL" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"ivM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ivS" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"iwf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"iwB" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/obj/structure/sign/safety/waterhazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"iwI" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "Storage"; + req_one_access_txt = "19;21" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"iwJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/entrance/west, +/area/almayer/medical/containment/cell) +"iwV" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/armory) +"iwW" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"iwZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/packageWrap, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"ixj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"ixu" = ( +/obj/structure/largecrate/random/case{ + layer = 2.98 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"ixv" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"ixD" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ixN" = ( +/obj/structure/largecrate, +/obj/item/folded_tent/reqs{ + pixel_x = -3; + pixel_y = 10 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"ixQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"ixT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"iyC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"iyE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"iyF" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"iyS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"izf" = ( +/obj/structure/disposalpipe/up/almayer{ + dir = 4; + id = "ares_vault_out"; + name = "aicore" + }, +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"izk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"izY" = ( +/obj/structure/machinery/autodoc_console, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"iAg" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/mp_bunks) +"iAw" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12 + }, +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"iAz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/containment) +"iAE" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"iAI" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"iBl" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/sign/safety/rewire{ + pixel_x = 7; + pixel_y = -30 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"iBn" = ( +/turf/closed/wall/almayer/aicore/white/hull, +/area/space) +"iBu" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"iBY" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"iCg" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/hallways/upper/midship_hallway) +"iCu" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"iCD" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"iCF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/offices) +"iCT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"iDa" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/almayer/red/southwest, +/area/almayer/maint/upper/u_a_p) +"iDk" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"iDs" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"iDK" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"iEa" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"iEg" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/auxiliary_officer_office) +"iEr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"iEw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"iEx" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 26 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"iEz" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 3 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"iEM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iFc" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"iFn" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"iFp" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iFA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Railguns and Viewing Room" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"iFC" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) +"iFD" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"iFH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"iFK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"iFM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_1"; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"iFY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"iGc" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"iGi" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"iGn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_four) +"iGQ" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"iHc" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/notunnel) +"iHG" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cells) +"iIb" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_m_p) +"iIj" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"iIl" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"iIP" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"iIR" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_x = 10; + pixel_y = 22 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"iIU" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"iJs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"iJB" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"iJS" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) +"iJT" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"iKb" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"iKc" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"iKf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"iKw" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"iKy" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"iKD" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/device/flash, +/obj/item/device/binoculars, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"iKI" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/starboard_missiles) +"iKK" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"iKM" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/port_atmos) +"iKV" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"iKZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"iLd" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"iLf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/disk_reader, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"iLh" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"iLm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iLq" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"iLs" = ( +/obj/structure/ladder{ + height = 1; + id = "med2" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_lobby) +"iLG" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"iLL" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/midship_hallway) +"iLO" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"iMm" = ( +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"iMr" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"iMx" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"iMD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"iMI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/machinery/cm_vending/sorted/medical, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"iNh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + name = "\improper Brig Cells" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"iNk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"iNH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/maint{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/storage{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/hallways/lower/port_fore_hallway) +"iNR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"iNY" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32; + pixel_y = 16 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"iOo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"iOD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"iOX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"iPf" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"iPq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"iPt" = ( +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iPv" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/window/reinforced/ultra, +/obj/structure/window/reinforced/ultra{ + dir = 8 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/living/briefing) +"iPD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"iPH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"iPN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/maint/upper/mess) +"iPS" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"iQd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"iQi" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"iQj" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge4" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"iQt" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = -30; + pixel_y = 6; + serial_number = 12 + }, +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/living/port_emb) +"iQB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/card{ + dir = 4; + layer = 3.2; + pixel_y = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/computer/secure_data{ + dir = 4; + layer = 2.99; + pixel_y = 23 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"iQJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"iRp" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "Interrogation Shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/interrogation) +"iRy" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"iRN" = ( +/obj/structure/machinery/light/containment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"iSd" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"iSm" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + desc = "Do you remember who you are?"; + icon_state = "mirror_broke"; + name = "broken mirror"; + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/item/device/cassette_tape/nam{ + layer = 2.9; + pixel_x = -6; + pixel_y = 11 + }, +/obj/structure/machinery/door_control{ + id = "Delta_2"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 + }, +/obj/item/prop{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8; + pixel_y = 29 + }, +/obj/item/prop{ + desc = "A bunch of tiny bits of shattered metal."; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "piece of shrapnel"; + pixel_x = -1; + pixel_y = 24 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"iSx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/upper/midship_hallway) +"iSB" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"iSV" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "2;7" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) +"iSZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"iTd" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"iTe" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"iTl" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/processing) +"iTq" = ( +/obj/structure/curtain/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"iTt" = ( +/obj/structure/largecrate/supply/medicine/medivend{ + pixel_x = 3 + }, +/obj/structure/largecrate/random/mini/med{ + density = 1; + pixel_x = 3; + pixel_y = 11 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"iTw" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"iTD" = ( +/obj/effect/landmark/start/auxiliary_officer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/bridgebunks) +"iTI" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"iTQ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"iTW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_n"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"iUh" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"iUk" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"iUm" = ( +/obj/structure/closet/emcloset{ + pixel_x = 8 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"iUo" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 7; + pixel_y = -25 + }, +/obj/structure/surface/rack, +/obj/item/storage/box/autoinjectors{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/storage/box/beakers{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/storage/box/sprays{ + pixel_y = -3 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"iUG" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/shipboard/brig/medical) +"iUW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/tool/crowbar/red, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"iUX" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/interrogation) +"iVy" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"iVz" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"iVD" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_n"; + dir = 1; + name = "\improper Brig" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/s_bow) +"iVE" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"iVG" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"iVP" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/processing) +"iWa" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"iWc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"iWn" = ( +/obj/item/paper/almayer_storage, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"iWx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"iWB" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"iWH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/structure/janitorialcart, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"iWJ" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"iWQ" = ( +/obj/effect/landmark/start/researcher, +/obj/effect/landmark/late_join/researcher, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"iWR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"iXb" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"iXm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"iXA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"iXB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"iXT" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"iXU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law{ + pixel_y = 3 + }, +/obj/item/book/manual/evaguide, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"iXW" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_lobby) +"iYe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) +"iYf" = ( +/obj/structure/machinery/cm_vending/clothing/medical_crew{ + density = 0; + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/medical/hydroponics) +"iYm" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"iYt" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"iYx" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"iZd" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"iZg" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"iZE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"iZP" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"iZU" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"iZV" = ( +/obj/structure/machinery/door_control/cl/quarter/officedoor{ + pixel_x = 25 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"jac" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"jaf" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -27; + serial_number = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jak" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"jao" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"jas" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"jay" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 + }, +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"jaz" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"jaI" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"jaM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"jaR" = ( +/obj/structure/largecrate/random/mini/small_case/b{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/item/trash/crushed_cup{ + pixel_y = 12 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"jbq" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/command/lifeboat) +"jbt" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"jbH" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"jbK" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"jbN" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/door_control/brbutton{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown"; + pixel_x = -12; + pixel_y = 26 + }, +/obj/structure/machinery/door_control/brbutton{ + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown Override"; + pixel_x = -2; + pixel_y = 26 + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4 + }, +/obj/structure/machinery/aicore_lockdown{ + icon_state = "big_red_button_wallv"; + pixel_x = 8; + pixel_y = 26 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"jbX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"jcf" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/processing) +"jcu" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/fore_hallway) +"jcE" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"jcP" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/engineering/upper_engineering/starboard) +"jdl" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/platform_decoration, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"jdm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/trash/USCMtray, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"jdn" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"jdu" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"jdC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"jdG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"jdZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"jeb" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/alpha_bravo_shared) +"jei" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"jeq" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/pillbottles{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/storage/box/pillbottles{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"jer" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"jev" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/device/taperecorder{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"jew" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"jez" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"jeO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"jeQ" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/southeast, +/area/almayer/living/cryo_cells) +"jeR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"jfK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"jfS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"jfY" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/folder/red, +/obj/structure/transmitter/rotary{ + name = "Brig CMP's Office Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig CMP's Office"; + pixel_x = 15 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"jfZ" = ( +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"jge" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"jgg" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"jgk" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"jgl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"jgr" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/paper_bin/uscm{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -8; + pixel_y = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"jgw" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/notunnel) +"jgy" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"jgF" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"jgJ" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/command/cichallway) +"jgK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"jgR" = ( +/obj/structure/sign/safety/rewire{ + pixel_y = 32 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/mp_bunks) +"jhb" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = -6; + pixel_y = -6 + }, +/turf/closed/wall/almayer, +/area/almayer/living/cryo_cells) +"jhc" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"jhn" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_four) +"jhs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"jht" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"jhx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"jhy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/offices) +"jhA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"jhD" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"jhI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 4; + layer = 2.99; + pixel_y = 19 + }, +/obj/structure/machinery/computer/cameras/almayer_brig{ + desc = "Used to access the various cameras in the security brig."; + dir = 4; + layer = 2.99; + name = "brig cameras console"; + pixel_y = 5 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"jhK" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"jhQ" = ( +/obj/structure/closet, +/obj/item/clothing/under/marine, +/obj/item/clothing/suit/storage/marine, +/obj/item/clothing/head/helmet/marine, +/obj/item/clothing/head/beret/cm, +/obj/item/clothing/head/beret/cm, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"jhR" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"jhS" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"jhW" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"jic" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/lobby) +"jiM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"jiU" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/surface/rack{ + density = 0; + pixel_x = 26 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"jjl" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "vehicle_elevator_railing_aux" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"jjS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/medical_science) +"jkj" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) +"jkl" = ( +/obj/structure/morgue, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"jkq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"jks" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_2"; + name = "range shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"jkz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/handcuffs{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/box/ids{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/storage/box/handcuffs, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jkB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"jkD" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jkN" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"jkT" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"jkY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/sign/safety/terminal{ + pixel_y = 32 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/lower/repair_bay) +"jlc" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) +"jlA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/containment) +"jlD" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"jlE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/toy/deck/uno, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/mp_bunks) +"jlG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/research/containment/entrance, +/area/almayer/medical/containment/cell) +"jlN" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = -6 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = 9 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"jlQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"jlT" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"jlX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"jmn" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/dirty{ + pixel_y = 5 + }, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"jmz" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"jmK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"jmP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"jmQ" = ( +/obj/effect/landmark/start/maint, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"jmY" = ( +/turf/open/floor/almayer/blue, +/area/almayer/command/cichallway) +"jnc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"jne" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"jnh" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"jno" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"jnp" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"jnD" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/shipboard/brig/cic_hallway) +"jnI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"jnX" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/command/cic) +"joG" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_y = 30 + }, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"jpl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_n"; + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"jpn" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/port) +"jpp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"jpt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"jpD" = ( +/obj/structure/machinery/door/window/eastleft{ + req_one_access_txt = "2;21" + }, +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby2"; + name = "\improper RO Line 2" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/surface/table/reinforced/almayer_blend, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"jpW" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jqP" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Interior"; + name = "\improper ARES Inner Chamber Shutters"; + plane = -7 + }, +/obj/effect/step_trigger/ares_alert/core, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"jqY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"jre" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/clothing/accessory/storage/webbing, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"jri" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"jrm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"jru" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = 32 + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_y = -32 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"jrB" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"jrC" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"jrH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 8 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"jrI" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"jrM" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"jsa" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"jsd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"jss" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"jsu" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"jsx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/medical_science) +"jsA" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"jsE" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"jsP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"jsR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"jtj" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"jts" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_aft_hallway) +"jtU" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"jtZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) +"juj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"juo" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"juD" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"juS" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"juX" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"jva" = ( +/obj/structure/closet, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -17 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/lower_medical_medbay) +"jvc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"jvp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"jvt" = ( +/obj/item/tool/warning_cone{ + pixel_x = -20; + pixel_y = 18 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"jvB" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build/ai_plates, +/area/almayer/command/airoom) +"jvD" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/port_fore_hallway) +"jvM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"jvP" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/cryo) +"jvX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"jvY" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/telecomms) +"jwi" = ( +/obj/structure/machinery/door_control{ + id = "InnerShutter"; + name = "Inner Shutter"; + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/obj/item/ashtray/plastic, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/intercom{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"jwq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"jwr" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"jwJ" = ( +/obj/structure/platform_decoration, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"jwK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha_bravo_shared) +"jwP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"jxi" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"jxq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"jxu" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"jxx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"jxB" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/plating, +/area/almayer/living/bridgebunks) +"jxX" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_aft_hallway) +"jyb" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/processing) +"jyE" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"jyJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/ladder{ + height = 2; + id = "cicladder3" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) +"jyR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_one_access_txt = "7;23;27" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"jyY" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_s"; + dir = 1; + name = "\improper Brig Maintenance" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown_2"; + name = "\improper Perma Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"jzD" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "s_engi" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"jzE" = ( +/obj/structure/closet/secure_closet/bar{ + name = "Success Cabinet"; + req_access_txt = "1" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"jzT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jzZ" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"jAe" = ( +/obj/structure/surface/rack, +/obj/item/storage/beer_pack, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"jAj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_aft_hallway) +"jAz" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"jAB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"jAJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"jBy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) +"jBO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 3"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 8 + }, +/area/almayer/medical/containment/cell) +"jCg" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) +"jCm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/item/tool/stamp/approved{ + pixel_x = -3; + pixel_y = -11 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"jCn" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"jCr" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"jCx" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"jCK" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_x = 20 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"jCX" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"jDk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/transmitter{ + dir = 8; + name = "OT Telephone"; + phone_category = "Almayer"; + phone_id = "Ordnance Tech"; + pixel_x = 14 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"jDz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"jDO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"jDP" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Spare Bomb Suit"; + req_one_access = null; + req_one_access_txt = "35" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"jEA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"jEM" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"jES" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"jEV" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -7 + }, +/obj/item/tool/pen, +/obj/item/tool/pen{ + pixel_y = 3 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/mp_bunks) +"jFf" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"jFt" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"jFx" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"jFy" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/clipboard, +/obj/item/tool/pen, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"jFE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"jFI" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"jFM" = ( +/obj/structure/surface/table/almayer, +/obj/item/attachable/lasersight, +/obj/item/reagent_container/food/drinks/cans/souto/vanilla{ + pixel_x = 10; + pixel_y = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"jFY" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"jGn" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"jGI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"jGQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"jGR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"jHh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"jHn" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"jHt" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/repair_bay) +"jHC" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/computerlab) +"jHL" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"jHQ" = ( +/obj/structure/machinery/crema_switch{ + pixel_x = -24; + req_access_txt = "25" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"jIs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"jIC" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/upper/mess) +"jIJ" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"jIT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/brig/chief, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"jIV" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"jJk" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/port_emb) +"jKn" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"jKz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/largecrate/random/case/double, +/obj/item/cell/crap{ + pixel_y = 14 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"jKF" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" + }, +/turf/open/floor/plating, +/area/almayer/command/cichallway) +"jKI" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = -17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/port_atmos) +"jLg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/port_aft_hallway) +"jLj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"jLs" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"jLH" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"jLS" = ( +/obj/structure/bed/chair/comfy/charlie, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jMa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"jMm" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/mask/rebreather/scarf, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"jMr" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box{ + pixel_y = 4 + }, +/obj/structure/sign/safety/security{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"jMx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 11; + pixel_y = -26 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"jMy" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"jMG" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"jML" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"jMQ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"jMR" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"jNc" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + id = "Containment Cell 3"; + locked = 1; + name = "\improper Containment Cell 3"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + dir = 4; + id = "Containment Cell 3"; + name = "\improper Containment Cell 3" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"jNo" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 + }, +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"jNw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/port_fore_hallway) +"jND" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"jNG" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"jNT" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/execution) +"jOi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/squads/bravo) +"jOk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/line_nexter_control{ + id = "line2"; + pixel_x = -4; + pixel_y = 10; + req_one_access_txt = "1;21" + }, +/obj/structure/machinery/door_control{ + id = "ROlobby2"; + name = "RO Line 2 Shutters"; + pixel_x = 5; + pixel_y = 10; + req_one_access_txt = "1;21" + }, +/obj/item/paper_bin/uscm{ + pixel_y = -4 + }, +/obj/item/tool/pen{ + pixel_y = -5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"jOo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/gym) +"jOq" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"jOt" = ( +/obj/item/trash/barcardine, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"jOx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"jOD" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"jOE" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"jOG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"jPd" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/engine_core) +"jPq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"jPu" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_x = 27 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"jPx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"jPP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"jPS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/chief_mp_office) +"jPU" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"jQt" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"jRc" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"jRp" = ( +/obj/structure/largecrate/supply/supplies/water, +/obj/item/toy/deck{ + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"jRz" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "tele_ground1"; + teleport_x = 180; + teleport_x_offset = 200; + teleport_y = 50; + teleport_y_offset = 80; + teleport_z = 1; + teleport_z_offset = 1 + }, +/turf/closed/wall/almayer/outer, +/area/space) +"jRC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"jRK" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"jRS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"jSc" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/machinery/cm_vending/gear/staff_officer_armory, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"jSo" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"jSp" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/squads/charlie) +"jSw" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"jSy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"jSU" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"jTj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"jTt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_y = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jTB" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower) +"jTH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"jTI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie_delta_shared) +"jTU" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) +"jUb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"jUh" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"jUl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"jUq" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jUx" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SL-2"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"jUF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"jUM" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"jUV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"jUY" = ( +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"jVa" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"jVg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"jVr" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"jVt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/corner3, +/area/almayer/medical/containment/cell) +"jVE" = ( +/turf/open/floor/almayer/test_floor5, +/area/almayer/command/computerlab) +"jWb" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"jWh" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/upper_engineering/port) +"jWr" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"jWu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"jXc" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/starboard_hallway) +"jXd" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"jXf" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + id_tag = "or03"; + name = "Lobby" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"jXk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/weapons/m39{ + pixel_x = 2 + }, +/obj/structure/largecrate/supply/weapons/m41a{ + layer = 3.1; + pixel_x = 6; + pixel_y = 17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"jXN" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) +"jXR" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"jYa" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"jYc" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 + }, +/obj/item/bedsheet/blue{ + pixel_y = 13 + }, +/obj/item/toy/plush/therapy/red{ + desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; + force = 15; + layer = 4.1; + name = "Sergeant Huggs"; + pixel_y = 15; + throwforce = 15 + }, +/obj/item/clothing/head/cmcap{ + layer = 4.1; + pixel_x = -1; + pixel_y = 22 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/blue, +/area/almayer/living/port_emb) +"jYm" = ( +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"jYH" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/mob/living/silicon/decoy/ship_ai{ + layer = 2.98; + pixel_y = -16 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"jYM" = ( +/obj/structure/ladder{ + height = 1; + id = "ForePortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/p_bow) +"jZd" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"jZe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"jZo" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"jZs" = ( +/obj/structure/machinery/light/containment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"jZu" = ( +/obj/structure/machinery/door_control{ + id = "CIC_Conference"; + name = "Conference Lockdown"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "1" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"jZv" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"jZC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"jZU" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/medical/containment/cell/cl) +"jZY" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"kac" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"kaj" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"kak" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/midship_hallway) +"kam" = ( +/obj/item/tool/screwdriver{ + layer = 2.9; + pixel_x = -21; + pixel_y = -14 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"kan" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/lower_medical_medbay) +"kaq" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"kaB" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) +"kaE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/hallways/upper/midship_hallway) +"kaI" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/charlie_delta_shared) +"kaO" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"kaQ" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/starboard_hallway) +"kaS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"kbc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ + dir = 8 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"kbl" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"kbv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"kbw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"kbx" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"kbJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/containment) +"kbV" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"kbX" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer/brig, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"kcg" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"kcl" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/squads/bravo) +"kcp" = ( +/turf/closed/wall/almayer, +/area/almayer/living/auxiliary_officer_office) +"kcs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"kcx" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_n"; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"kcA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"kcG" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"kcH" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/synthcloset) +"kcN" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/living/commandbunks) +"kde" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"kdi" = ( +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"kdn" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"kdo" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"kdv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"kdB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"keG" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Interrogation Observation" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/interrogation) +"keO" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"keR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"kfB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"kfE" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"kfI" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"kfU" = ( +/turf/open/floor/plating, +/area/almayer/powered/agent) +"kgp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/transmitter{ + name = "CMO Office Telephone"; + phone_category = "Offices"; + phone_id = "CMO Office"; + pixel_y = 29 + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"kgs" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_se_2"; + name = "\improper Research Window Shutter" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/plating, +/area/almayer/medical/medical_science) +"kgt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"kgD" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 35 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"kgS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"kgV" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/upper/aft_hallway) +"khd" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"khf" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"khD" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"khE" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"khI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"kil" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/item/storage/belt/utility, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"kin" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"kio" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/closet, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"kiy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"kiG" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"kiM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"kiR" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"kiT" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"kiU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"kiV" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 11 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"kiX" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kjk" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"kjw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"kjD" = ( +/obj/structure/machinery/computer/demo_sim{ + dir = 4; + pixel_x = -17; + pixel_y = 8 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"kjO" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower/engine_core) +"kjW" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/port_midship_hallway) +"kjY" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"kkk" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"kkt" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"kkv" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/chief_mp_office) +"kkx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"kkN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"kkW" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/atmospipes, +/obj/item/circuitboard/airalarm, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"klH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"klT" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"kmd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"kmp" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"kmE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"kmT" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/upper/fore_hallway) +"knb" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"kng" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"knl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_aft_hallway) +"knm" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"knH" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 32 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_lobby) +"knK" = ( +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood/gibs, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"knL" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south2) +"knU" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"kon" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"kow" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"kox" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ + dir = 4; + id = "civ_uniforms" + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/living/gym) +"koB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"koC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"kph" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"kpj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"kpo" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"kpL" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"kpQ" = ( +/obj/structure/machinery/door_control{ + id = "engidorm"; + pixel_x = 25; + pixel_y = 2 + }, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"kqa" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"kqb" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"kqd" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"kqm" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"kqo" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"kqt" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"kqv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"kqy" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/tool/pen, +/obj/item/tool/pen{ + pixel_y = 3 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"kqB" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"kqC" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"kqK" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_1"; + name = "treadmill" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"kqN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/basketball) +"krp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/cups, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"kry" = ( +/obj/structure/machinery/flasher{ + id = "Perma 1"; + pixel_y = 24 + }, +/obj/structure/machinery/camera/autoname/almayer/brig, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"krA" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_1"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"krG" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"krJ" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"krN" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"krO" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"krS" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"krU" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/tool/screwdriver, +/obj/item/bananapeel{ + desc = "An experimental B8 Smart-Scope. Based on the technologies used in the Smart Gun by ARMAT, this sight has integrated IFF systems. It can only attach to the L42A Battle Rifle, M44 Combat Revolver, and M46C Pulse Rifle. This one appears to be covered in gun oil"; + icon = 'icons/obj/items/weapons/guns/attachments.dmi'; + icon_state = "iffbarrel"; + name = "Broken B8 Smart-Scope"; + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"krZ" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/clothing/accessory/storage/webbing, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"ksg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"ksm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"ksp" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"ksw" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_stern) +"ksN" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/almayer/living/briefing) +"kti" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ktl" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ktI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) +"ktQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build/ai_arrow/west, +/area/almayer/command/airoom) +"ktR" = ( +/obj/item/trash/crushed_cup, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"ktX" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/living/grunt_rnr) +"kui" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/machinery/vending/security/riot, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"kuk" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"kuu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"kuw" = ( +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/living/briefing) +"kuJ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"kuK" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"kvf" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"kvh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"kvL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 4; + pixel_y = 0 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"kvU" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"kwc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kwd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"kwg" = ( +/obj/structure/bookcase/manuals/medical, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"kwi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"kwo" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"kws" = ( +/obj/structure/machinery/line_nexter/med{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"kwQ" = ( +/obj/item/tool/warning_cone{ + pixel_y = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"kxd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"kxe" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"kxo" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"kxL" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/uscm_mre, +/obj/item/storage/box/uscm_mre, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"kxP" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/mp_bunks) +"kya" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"kyh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"kyr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/starboard) +"kyw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_s) +"kyN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"kyP" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_p) +"kyR" = ( +/obj/structure/safe/co_office, +/obj/item/weapon/pole/fancy_cane, +/obj/item/tool/lighter/zippo/gold{ + layer = 3.05; + pixel_y = 3 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"kyX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"kyY" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"kzb" = ( +/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"kzc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"kzk" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/computerlab) +"kzr" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/firingrange{ + pixel_x = 32; + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"kzs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"kzy" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"kzC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"kzK" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/item/bedsheet/blue{ + layer = 3.2 + }, +/obj/item/bedsheet/blue{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"kzO" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"kAh" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"kAj" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"kAm" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"kAv" = ( +/obj/structure/largecrate/supply/ammo/shotgun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"kAL" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"kAU" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south2) +"kBo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) +"kBy" = ( +/obj/structure/machinery/ares/processor, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"kBP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"kBY" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/tankerbunks) +"kCd" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"kCi" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/port_missiles) +"kCj" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"kCl" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = -6; + pixel_y = -3 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = 5; + pixel_y = -3 + }, +/obj/structure/noticeboard{ + desc = "The note is haphazardly attached to the cork board by what looks like a bent firing pin. 'The order has come in to perform end of life service checks on all L42A service rifles, any that are defective are to be dis-assembled and packed into a crate and sent to to the cargo hold. L42A service rifles that are in working order after servicing, are to be locked in secure cabinets ready to be off-loaded at Chinook. Scheduled end of life service for the L42A - Complete'"; + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"kCm" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"kCu" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"kCE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"kCY" = ( +/obj/structure/machinery/sleep_console{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"kDd" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"kDk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"kDH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"kDK" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"kDR" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"kEc" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"kEg" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/toy/deck/uno{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kEp" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/morgue) +"kEq" = ( +/obj/structure/machinery/door/window/ultra{ + dir = 8; + req_access_txt = "3" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"kEs" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/prop/helmetgarb/helmet_nvg/cosmetic, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"kEA" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"kEE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"kEW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"kFe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"kFs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kFv" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"kFO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "crate_room2"; + name = "\improper Storage Shutters" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"kFU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"kFY" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 7 + }, +/turf/closed/wall/almayer, +/area/almayer/living/cryo_cells) +"kGi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"kGu" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"kGw" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"kGF" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"kGQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"kGS" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"kHd" = ( +/obj/structure/machinery/computer/arcade, +/obj/item/prop/helmetgarb/spacejam_tickets{ + pixel_x = 4; + pixel_y = 12 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/grunt_rnr) +"kHo" = ( +/obj/item/device/camera{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/camera_film, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"kHS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"kHY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"kIf" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"kIk" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"kIl" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"kIP" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"kJc" = ( +/obj/structure/ladder{ + height = 1; + id = "ForeStarboardMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/s_bow) +"kJh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"kJi" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"kJm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"kJH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/closet/secure_closet/freezer/industry, +/obj/item/reagent_container/glass/beaker/silver, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"kJW" = ( +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/shower{ + dir = 8; + layer = 3.10; + plane = -4 + }, +/obj/item/tool/soap{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/commandbunks) +"kJZ" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"kKk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"kKB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_aft_hallway) +"kKR" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"kKY" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_aft_hallway) +"kLc" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;7" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"kLk" = ( +/obj/structure/machinery/cm_vending/clothing/tl/bravo{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"kLm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"kLE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"kLP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/greencorner/west, +/area/almayer/squads/req) +"kMa" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"kMp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"kMr" = ( +/obj/item/trash/uscm_mre, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"kMH" = ( +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 1"; + name = "Cell 1" + }, +/obj/structure/sign/safety/one{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"kMK" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/engineering/upper_engineering/port) +"kMR" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"kMV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"kMW" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"kNf" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"kNk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"kNl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"kNq" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_p) +"kNC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"kNO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = -9; + pixel_y = 4 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"kNV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/starboard) +"kNX" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"kNY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"kOv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/port_missiles) +"kOB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = -6 + }, +/obj/item/tool/pen/blue{ + pixel_x = -6 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"kOH" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"kOJ" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"kOR" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"kOW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"kPa" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/upper/fore_hallway) +"kPx" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/mass_spectrometer, +/obj/item/device/mass_spectrometer, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/chemistry) +"kPB" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/basketball) +"kPG" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"kPH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"kPJ" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"kPR" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = -17 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"kPZ" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"kQr" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/pistachios, +/obj/item/tool/lighter/random{ + pixel_x = 13 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"kQu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"kRd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_three) +"kRg" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) +"kRD" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 11 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"kRP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/prop/magazine/dirty/torn, +/obj/item/prop/magazine/dirty/torn/alt{ + pixel_x = 7; + pixel_y = 11 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"kRQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 8; + pixel_x = 17; + pixel_y = 7 + }, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 8; + pixel_x = 17; + pixel_y = -6 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"kRU" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/repair_bay) +"kSi" = ( +/obj/structure/machinery/cm_vending/gear/intelligence_officer{ + density = 0; + pixel_x = -32 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"kSn" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"kSv" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/hangar) +"kSy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/door_control{ + id = "ARES Mainframe Right"; + name = "ARES Mainframe Lockdown"; + pixel_x = -24; + pixel_y = 24; + req_one_access_txt = "200;91;92" + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"kSA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"kSC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"kSH" = ( +/obj/structure/sign/prop1{ + pixel_y = 32 + }, +/obj/structure/filingcabinet/security{ + pixel_x = -8 + }, +/obj/structure/filingcabinet/medical{ + pixel_x = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"kSU" = ( +/obj/structure/transmitter/no_dnd{ + name = "Requisition Telephone"; + phone_category = "Almayer"; + phone_id = "Requisition"; + pixel_y = 30 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"kTp" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/medical) +"kTv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"kTN" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/ce_room) +"kTY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/safety/medical{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"kUg" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"kUh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + access_modified = 1; + dir = 1; + name = "\improper Flight Crew Quarters"; + req_one_access_txt = "19;22" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"kUA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"kUI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kUJ" = ( +/obj/item/trash/USCMtray{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"kUL" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"kUR" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"kUV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"kVV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"kVW" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"kVZ" = ( +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 2"; + name = "Cell 2" + }, +/obj/structure/sign/safety/two{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"kWk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/greencorner, +/area/almayer/squads/req) +"kWq" = ( +/obj/structure/sign/safety/synth_storage{ + pixel_x = 8; + pixel_y = 25 + }, +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"kWI" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"kWN" = ( +/obj/structure/sign/poster{ + desc = "It says DRUG."; + icon_state = "poster2"; + pixel_x = -27 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kWR" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/transmitter/rotary{ + name = "Commanding Officer's Office"; + phone_category = "Offices"; + phone_id = "Commanding Officer's Office"; + pixel_x = 16; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"kWT" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/living/pilotbunks) +"kXa" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"kXf" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"kXm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_x = -17; + pixel_y = -7 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"kXt" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"kXu" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"kXw" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"kXN" = ( +/obj/item/clothing/glasses/sunglasses/aviator{ + pixel_x = -1; + pixel_y = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"kYb" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"kYl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"kYt" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/bible{ + desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'."; + name = "Holy Bible"; + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/prop/helmetgarb/rosary{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = 3; + pixel_y = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"kYv" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"kYF" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_s) +"kYL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"kYU" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"kYV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"kZc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"kZN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/auxiliary_officer_office) +"kZV" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"lab" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"lah" = ( +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/living/gym) +"lat" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"laD" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) +"laI" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"laM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"laO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"laQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + name = "\improper Engineering Reception" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"laU" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Firing_Range_1"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"laV" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/command/cic) +"lbf" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"lbs" = ( +/obj/structure/sign/safety/biolab{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = -17; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"lbB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"lbO" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"lbX" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"lcg" = ( +/obj/structure/machinery/ares/substrate, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"lcy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"lcV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"lcW" = ( +/obj/item/storage/donut_box{ + pixel_y = 8 + }, +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"ldb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"ldc" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/lower/workshop) +"lde" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"ldl" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"ldt" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_1"; + name = "treadmill" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"ldC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"ldF" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"ldW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"lea" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/hydroponics) +"lef" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"leg" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/hallways/hangar) +"let" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"ley" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"leM" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"leY" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"lft" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/fire, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"lfx" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"lfz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"lfH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"lfZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/mre_pack/meal5, +/obj/item/device/flashlight/lamp{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"lgk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"lgt" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"lgy" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Firing_Range_2"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"lgF" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -11; + pixel_y = 5 + }, +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"lhj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -34 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"lhs" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"lht" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"lhv" = ( +/obj/structure/machinery/door_control{ + id = "CMO Shutters"; + name = "Office Shutters"; + pixel_y = -20; + req_access_txt = "5" + }, +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/upper_medical) +"lhB" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "kitchen"; + name = "\improper Kitchen Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/grunt_rnr) +"lhJ" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 12; + pixel_y = 25 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"lhX" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"lia" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"lib" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"lid" = ( +/obj/structure/machinery/chem_master{ + vial_maker = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"liJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"liY" = ( +/obj/structure/machinery/flasher{ + id = "Containment Cell 5"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 + }, +/obj/structure/machinery/iv_drip, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"liZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/obj/item/toy/dice/d20, +/obj/item/toy/deck/uno, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"ljf" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"ljm" = ( +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/structure/closet/crate, +/obj/item/clothing/suit/storage/hazardvest/black, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"ljs" = ( +/obj/effect/landmark/start/marine/spec/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"ljv" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"ljG" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/condiment/coldsauce, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"ljO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"ljS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"ljW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"lka" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"lkd" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "kitchen2"; + name = "\improper Kitchen Shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/grunt_rnr) +"lkf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + pixel_y = -2; + req_one_access_txt = "3;22;19" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/living/offices/flight) +"lkm" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"lkL" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"lkM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"lkV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"lkW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/clothing/glasses/hud/health, +/obj/item/device/radio/marine, +/obj/item/clothing/accessory/storage/surg_vest, +/obj/item/tool/portadialysis, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"lla" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"llo" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"llK" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"llO" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/hangar) +"lma" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15 + }, +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"lmi" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"lml" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"lmq" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"lmw" = ( +/obj/structure/closet/l3closet/general, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"lmz" = ( +/turf/closed/wall/almayer/aicore/hull, +/area/space) +"lmA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"lmG" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"lne" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"lnh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 8; + name = "\improper Chief MP's Office" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) +"lnm" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/living/briefing) +"lnt" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/shipboard/brig/cic_hallway) +"lnu" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/living/gym) +"lnP" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"lnS" = ( +/obj/structure/sign/safety/rewire{ + pixel_y = 38 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 14; + pixel_y = 38 + }, +/obj/structure/sign/safety/laser{ + pixel_y = 24 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 24 + }, +/obj/structure/machinery/door_control{ + id = "ARES Operations Left"; + name = "ARES Operations Shutter"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"lok" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"lol" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"lou" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"loy" = ( +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_x = 27 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"loE" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"loK" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/adv, +/obj/item/tank/emergency_oxygen/double, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"loP" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/laundry) +"loS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"loV" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/obj/structure/machinery/scoreboard{ + id = "basketball"; + pixel_y = 30 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"loY" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"lpg" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + req_access = list(1) + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/commandbunks) +"lpl" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"lpt" = ( +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) +"lpy" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered/agent) +"lql" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"lqF" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_lobby) +"lqK" = ( +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -13; + pixel_y = 8 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/hallways/hangar) +"lqL" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"lqN" = ( +/obj/item/device/assembly/mousetrap/armed, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/living/port_emb) +"lrq" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/armory) +"lrE" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/s_bow) +"lrF" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"lrH" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"lrT" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"lrW" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"lrX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"lsn" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"lso" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"lsp" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Conference Room" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"lsD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/living/offices/flight) +"lsV" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"ltb" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"ltc" = ( +/obj/effect/landmark/late_join/working_joe, +/obj/effect/landmark/start/working_joe, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/almayer/command/airoom) +"ltm" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"lto" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"ltv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"ltw" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"lty" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"ltA" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"ltI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/northeast, +/area/almayer/squads/charlie) +"ltO" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Lethal Injection Locker" + }, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"ltU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"lul" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Commanding Officer's Quarters"; + req_access = null; + req_access_txt = "31" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/commandbunks) +"luE" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"luS" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = -3 + }, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"luY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"luZ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"lvb" = ( +/obj/structure/machinery/door_control/cl/office/door{ + pixel_y = 25 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"lvh" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 + }, +/obj/structure/machinery/meter, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"lvA" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"lwh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/comfy/delta, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"lwp" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/machinery/cm_vending/sorted/tech/circuits, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"lwC" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"lwG" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"lwJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie) +"lwY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"lxd" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"lxo" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"lxE" = ( +/obj/structure/machinery/cm_vending/clothing/commanding_officer, +/turf/open/floor/almayer/cargo, +/area/almayer/living/commandbunks) +"lxW" = ( +/obj/structure/sign/prop2{ + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"lyh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel{ + pixel_x = -1; + pixel_y = 10 + }, +/obj/item/stack/cable_coil{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/stack/sheet/cardboard/small_stack{ + layer = 3.01; + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"lyk" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"lym" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"lyq" = ( +/turf/open/floor/almayer/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) +"lyw" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"lyz" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/heart/prosthetic{ + pixel_x = -4 + }, +/obj/item/circuitboard{ + pixel_x = 12; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"lyE" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/computerlab) +"lyP" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"lyW" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_p) +"lyX" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + req_access = null; + req_access_txt = 37; + req_one_access = null + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"lza" = ( +/obj/structure/bed/sofa/vert/grey, +/obj/structure/bed/sofa/vert/grey/top{ + pixel_y = 11 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"lze" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"lzq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"lzt" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/weapon/gun/rifle/l42a{ + pixel_x = 17; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"lzA" = ( +/obj/structure/bed/chair/comfy{ + dir = 5 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"lAa" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/toolbox/emergency, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"lAl" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"lAu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"lAy" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"lAQ" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"lAW" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) +"lBg" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"lBl" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"lBv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) +"lCg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"lCm" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"lCr" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"lCt" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/containment) +"lCE" = ( +/obj/structure/bed/chair/comfy/delta, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"lCL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"lDa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"lDk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_y = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"lDn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"lDA" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"lDL" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"lDN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"lDT" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"lDV" = ( +/obj/effect/landmark/start/marine/medic/bravo, +/obj/effect/landmark/late_join/bravo, +/obj/structure/sign/safety/cryo{ + pixel_y = 26 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"lEe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"lEf" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 1 + }, +/area/almayer/medical/containment/cell/cl) +"lEj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering) +"lEv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/lobby) +"lEF" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"lEO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"lEV" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"lFe" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"lFh" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/living/port_emb) +"lFj" = ( +/obj/structure/machinery/door_control{ + id = "ARES Operations Right"; + name = "ARES Operations Shutter"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"lFn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/morgue) +"lFp" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"lFr" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/upper/mess) +"lFt" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) +"lFw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lFA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/tank, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"lFK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"lFL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lGg" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"lGh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"lHk" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"lHu" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/living/grunt_rnr) +"lHB" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"lHG" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "30;19" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"lIj" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/mess) +"lIp" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"lIu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"lII" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/port_atmos) +"lIQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"lIU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"lIY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"lJu" = ( +/obj/structure/barricade/metal{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"lJv" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext"; + name = "\improper Research Window Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/plating, +/area/almayer/medical/medical_science) +"lJD" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"lJG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"lJK" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"lJL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"lJM" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"lJO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"lJY" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"lKa" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light/small, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"lKb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha_bravo_shared) +"lKM" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"lKO" = ( +/obj/structure/sign/safety/refridgeration{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"lLl" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/port_fore_hallway) +"lLt" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/midship_hallway) +"lLA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"lLC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"lLO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"lLS" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"lMb" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"lMc" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"lMp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"lMv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) +"lMw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"lMx" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"lMy" = ( +/obj/structure/machinery/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"lMF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_n"; + id_tag = "cic_exterior"; + name = "\improper Combat Information Center" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"lMO" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"lMY" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"lNk" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"lNw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"lNL" = ( +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 + }, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"lNR" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/lower/workshop) +"lOn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"lOr" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "crate_room"; + name = "\improper Storage Shutters" + }, +/turf/open/floor/plating, +/area/almayer/squads/req) +"lOH" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) +"lON" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_door"; + name = "\improper Research Doorway Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"lOX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"lPm" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"lPB" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"lPC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"lPO" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/securestorage) +"lPY" = ( +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/upper/fore_hallway) +"lQa" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) +"lQf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"lQz" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"lQB" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"lQG" = ( +/obj/structure/machinery/computer/tech_control, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"lQO" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_three) +"lRh" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/hallways/upper/midship_hallway) +"lRs" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_y = 20 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"lRt" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"lRE" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"lRP" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/helmetgarb/chaplain_patch, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"lRX" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/hangar) +"lRZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -16 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) +"lSs" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 5"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"lSJ" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"lSN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"lST" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_p) +"lSX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"lTt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"lTE" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/bible{ + desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'."; + name = "Holy Bible" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"lUA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/lower/port_fore_hallway) +"lUQ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"lVl" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"lVo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"lVR" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"lVS" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "south_central_checkpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"lVW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"lVX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 16 + }, +/obj/structure/transmitter/rotary/no_dnd{ + name = "Alpha Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Alpha Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"lVZ" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"lWr" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"lWt" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"lWO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) +"lWS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"lWY" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"lXb" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"lXg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"lXl" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"lXO" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/item/trash/popcorn{ + layer = 3.1; + pixel_x = -3; + pixel_y = 13 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"lXR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"lYg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"lYk" = ( +/obj/item/trash/c_tube{ + pixel_x = 16; + pixel_y = 7 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"lYt" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"lYL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"lYN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"lYS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"lZb" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"lZs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -6; + pixel_y = 28 + }, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + pixel_x = -17 + }, +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/obj/structure/machinery/firealarm{ + pixel_x = 8; + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"lZI" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"lZJ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"lZM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/cryo_cells) +"lZZ" = ( +/obj/structure/machinery/autolathe/medilathe/full, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"may" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 16 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/starboard_hallway) +"maI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"maK" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"maL" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/protein_pack, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"maO" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"maT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"mbx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) +"mbR" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"mcp" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/starboard_hallway) +"mcL" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"mcW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"mdk" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "vehicle_elevator_railing_aux" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"mdm" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/upper/midship_hallway) +"mdo" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"mdC" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) +"mdW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/item/folder/white, +/obj/item/folder/white, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"mea" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/mp_bunks) +"mem" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"meu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"meE" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"meQ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"meT" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"meY" = ( +/turf/closed/wall/almayer{ + damage_cap = 15000 + }, +/area/almayer/squads/alpha) +"mfL" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 + }, +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"mfM" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/device/megaphone, +/obj/structure/window/reinforced/ultra, +/obj/structure/window/reinforced/ultra{ + dir = 4 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/living/briefing) +"mfO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"mfQ" = ( +/turf/open/floor/almayer/no_build/plate, +/area/almayer/living/pilotbunks) +"mgb" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"mgd" = ( +/obj/structure/machinery/autolathe/armylathe/full, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"mgj" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"mgu" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"mgy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"mgF" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"mgX" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"mha" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"mhd" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"mhm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"mho" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"mhG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"mhI" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = 13; + pixel_y = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"mis" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_f_s) +"miy" = ( +/obj/structure/machinery/optable, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 29 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/shipboard/brig/medical) +"miE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"miV" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"mje" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"mjs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"mjt" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"mjy" = ( +/obj/structure/machinery/conveyor_switch{ + id = "lower_garbage" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"mjS" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"mkc" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/obj/structure/closet/crate/trashcart, +/obj/item/reagent_container/food/drinks/cans/souto, +/obj/item/reagent_container/food/snacks/margheritaslice{ + desc = "A slice of classic pizza ruined by the corps."; + name = "dirty margherita slice"; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/trash/cigbutt/ucigbutt{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8 + }, +/obj/item/bananapeel{ + desc = "Ew."; + gender = "plural"; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "\improper finger nails"; + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/stack/medical/ointment{ + layer = 3.5; + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/clothing/gloves/latex, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 11; + pixel_y = 7 + }, +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"mki" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"mkl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"mkn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OTStore"; + name = "\improper Secure Storage"; + unacidable = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"mkw" = ( +/obj/structure/sign/safety/security{ + pixel_y = -32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"mkx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"mkF" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"mkG" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"mkH" = ( +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 + }, +/obj/structure/surface/rack{ + layer = 2.5 + }, +/obj/item/storage/fancy/candle_box{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"mkI" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"mkL" = ( +/obj/structure/pipes/valve/digital/open{ + dir = 4 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"mkP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"mlb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"mlm" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/living/cryo_cells) +"mlz" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"mlF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"mlH" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"mlP" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + dir = 1; + name = "Corporate Liaison's Bedroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"mmn" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/intelligence_officer{ + density = 0; + pixel_x = -32 + }, +/obj/structure/machinery/light{ + alpha = 0; + dir = 8; + pixel_x = -32 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"mmN" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_se_2"; + name = "\improper Research Window Shutter" + }, +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/plating, +/area/almayer/medical/medical_science) +"mnc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"mnf" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/hallways/upper/midship_hallway) +"mng" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/living/briefing) +"mnA" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"mnB" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/meson, +/turf/open/floor/almayer/red, +/area/almayer/maint/upper/u_a_p) +"mnI" = ( +/turf/open/floor/almayer/blue, +/area/almayer/living/briefing) +"mnW" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/reagent_scanner{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/clipboard{ + pixel_x = 8 + }, +/obj/item/paper{ + pixel_x = 8 + }, +/obj/effect/spawner/random/toolbox{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"moc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"mor" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 16 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"mov" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"moB" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/cells) +"moI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha_bravo_shared) +"moK" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"moL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 1; + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -9; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"moM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"moQ" = ( +/turf/open/floor/almayer/silver, +/area/almayer/living/briefing) +"mph" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"mpn" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"mpP" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"mpV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"mpZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"mqb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"mqg" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"mqh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"mqt" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/hallways/lower/port_midship_hallway) +"mqB" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/port_umbilical) +"mqK" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"mqU" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"mqZ" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"mrD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mrL" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"mrM" = ( +/obj/structure/closet/secure_closet/quartermaster_uscm, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"msg" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_y = -32 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = -32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"msi" = ( +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + layer = 2.9; + pixel_x = 7; + pixel_y = 16 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + layer = 2.9; + pixel_x = -8; + pixel_y = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/containment) +"msm" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"msC" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"msP" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"msS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"msZ" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"mtl" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/execution) +"mto" = ( +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"mtr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = -29 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"mtD" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = 30 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"mtM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"mtZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"mua" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"mub" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"muq" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/obj/structure/bed/sofa/vert/grey{ + pixel_y = 11 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"mux" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"muy" = ( +/obj/effect/landmark/start/marine/engineer/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"muQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"muV" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/faxmachine/uscm/command/capt{ + name = "Commanding Officer's Fax Machine"; + pixel_x = -4; + pixel_y = 3 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"muW" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) +"mvg" = ( +/obj/docking_port/stationary/escape_pod/west, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"mvi" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/revolver/m44{ + desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"mvl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"mvI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/barricade/handrail/medical{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"mww" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"mwA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"mwL" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"mwM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"mwP" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"mwQ" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mwR" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/stair_clone/upper) +"mxo" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_f_p) +"mxq" = ( +/obj/structure/machinery/door_control/cl/office/door{ + pixel_y = -20 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/midship_hallway) +"mxT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"mxV" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"myl" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north{ + cell_type = /obj/item/cell/hyper + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"myo" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/soft/purple, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"myJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"myP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"mza" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Armory" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/armory) +"mzg" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"mzn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"mzq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/hydroponics) +"mzs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"mzv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mzz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"mzF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"mzI" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"mzP" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown2"; + vector_x = 102; + vector_y = -61 + }, +/turf/open/floor/plating, +/area/almayer/command/airoom) +"mzS" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north2) +"mzV" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/port_emb) +"mAe" = ( +/obj/structure/window/framed/almayer/aicore/hull/black/hijack_bustable, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown{ + dir = 4; + plane = -6 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"mAp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"mAs" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"mAF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) +"mAV" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"mAY" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"mBa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mBc" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/charlie_delta_shared) +"mBe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"mBk" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/pill/happy{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 9 + }, +/obj/item/tool/surgery/bonegel/empty{ + pixel_x = 4; + pixel_y = 15 + }, +/obj/item/tool/surgery/bonegel/empty{ + pixel_x = -8; + pixel_y = 13 + }, +/obj/item/tool/surgery/bonegel/empty{ + layer = 3.01; + pixel_x = -5; + pixel_y = 19 + }, +/obj/item/storage/box/gloves{ + layer = 3.2; + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"mBx" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"mBJ" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"mBO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"mCg" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"mCo" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/squads/req) +"mCx" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper AI Reception"; + req_access = null; + req_one_access_txt = "91;92" + }, +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES ReceptStairs1"; + name = "\improper ARES Reception Shutters" + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"mCE" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"mCJ" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_p) +"mCL" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"mDj" = ( +/obj/structure/machinery/photocopier, +/obj/item/paper{ + color = "grey"; + info = "This is seemingly a photocopy of an image, containing.. OH GOD, WHY, GET IT OUT OF MY SIGHT"; + name = "photocopied image"; + pixel_y = 5 + }, +/obj/structure/sign/safety/rad_shield{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"mDG" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"mDJ" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"mDL" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/mousetraps, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) +"mDT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) +"mDW" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/briefing) +"mDX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + id_tag = "CO-Office"; + name = "\improper Commanding Officer's Office"; + req_access = null; + req_access_txt = "31" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/commandbunks) +"mDZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"mEs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + indestructible = 1; + name = "ARES Chamber Lockdown"; + pixel_x = 24; + pixel_y = 8; + req_one_access_txt = "90;91;92" + }, +/obj/structure/machinery/door/poddoor/railing{ + closed_layer = 4; + density = 0; + id = "ARES Railing"; + layer = 2.1; + open_layer = 2.1; + unacidable = 0; + unslashable = 0 + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"mEE" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"mFc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"mFq" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_door"; + name = "Door Shutters"; + pixel_y = 29; + req_access_txt = "28" + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"mFL" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mFN" = ( +/obj/effect/step_trigger/ares_alert/mainframe, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Mainframe Right"; + name = "\improper ARES Mainframe Shutters"; + plane = -7 + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"mFO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"mFP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"mFQ" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/s_bow) +"mGb" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"mGe" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"mGu" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) +"mGM" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 4; + id = "almayerlink_med_req" + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"mGT" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/closet/cabinet, +/obj/item/clipboard, +/obj/item/storage/lockbox/loyalty, +/obj/item/storage/briefcase, +/obj/item/reagent_container/spray/pepper, +/obj/item/device/eftpos{ + eftpos_name = "Weyland-Yutani EFTPOS scanner" + }, +/obj/item/device/portable_vendor/corporate, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"mHb" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"mHo" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = -17 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"mHx" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"mHz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/chief_mp_office) +"mHD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"mHF" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/headband/red{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"mHO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"mHT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/upper/u_a_s) +"mHY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"mId" = ( +/obj/structure/closet, +/obj/item/clothing/suit/armor/riot/marine/vintage_riot, +/obj/item/clothing/head/helmet/riot/vintage_riot, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"mIi" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"mIy" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"mIz" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/obj/item/prop/magazine/book/bladerunner{ + pixel_x = -1; + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mIJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 6 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"mIP" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"mIR" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"mJa" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/boonie, +/obj/item/trash/chunk/hunk, +/obj/item/trash/crushed_cup, +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"mJe" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/north{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"mJi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"mJj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/squads/alpha) +"mJu" = ( +/turf/open/floor/almayer/uscm/directional, +/area/almayer/command/cic) +"mJx" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"mJL" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/pilotbunks) +"mJO" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_p) +"mJP" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"mKb" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/squads/alpha) +"mKi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"mKq" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/bridgebunks) +"mKs" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"mKw" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"mKx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"mKy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"mKJ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/item/bedsheet/purple{ + layer = 3.2 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"mKN" = ( +/obj/effect/landmark/start/pilot/cas_pilot, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"mLe" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/door_control/cl/quarter/backdoor{ + pixel_x = 25 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"mLg" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"mLz" = ( +/obj/structure/machinery/door_control{ + id = "pobunk1"; + name = "PO1 Privacy Shutters"; + pixel_x = -24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"mLF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"mLN" = ( +/obj/structure/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"mLR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"mMP" = ( +/obj/effect/landmark/start/intel, +/obj/effect/landmark/late_join/intel, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/port_atmos) +"mMV" = ( +/obj/structure/pipes/vents/scrubber, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"mNm" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"mNG" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_y = 24; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"mNI" = ( +/obj/structure/machinery/door/window/westleft{ + dir = 2 + }, +/obj/structure/machinery/shower, +/obj/item/tool/soap, +/turf/open/floor/almayer/sterile, +/area/almayer/medical/upper_medical) +"mNK" = ( +/obj/structure/closet/secure_closet/brig/restraints, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"mNX" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"mOb" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"mOg" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"mOi" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/command/airoom) +"mOE" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"mOZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/midship_hallway) +"mPc" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"mPf" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/almayer/command/lifeboat) +"mPh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering South Hall" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"mPj" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"mPn" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"mPw" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"mPM" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"mPR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"mQc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"mQd" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/obj/item/tool/weldpack, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"mQn" = ( +/obj/structure/sign/safety/rad_shield{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/engine_core) +"mQx" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"mQC" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/port_atmos) +"mQY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"mRn" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Interior"; + name = "\improper ARES Inner Chamber Shutters"; + plane = -7 + }, +/obj/effect/step_trigger/ares_alert/core, +/obj/structure/sign/safety/terminal{ + pixel_x = -18; + pixel_y = -8 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = -18; + pixel_y = 6 + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"mRq" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"mRH" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -3; + pixel_y = 18 + }, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"mRI" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"mRJ" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/hallways/upper/midship_hallway) +"mRQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"mRU" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) +"mRW" = ( +/turf/open/floor/almayer/research/containment/corner1, +/area/almayer/medical/containment/cell/cl) +"mSi" = ( +/obj/structure/bed/sofa/vert/grey/top{ + pixel_y = 11 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"mSl" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/clothing/glasses/mgoggles, +/obj/item/clothing/glasses/mgoggles, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"mSo" = ( +/obj/structure/surface/rack, +/obj/item/facepaint/sniper, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"mSr" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"mSs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"mSz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"mSK" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"mSM" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"mSU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) +"mTc" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/emails{ + dir = 4; + pixel_y = 2 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"mTd" = ( +/obj/structure/machinery/smartfridge/chemistry{ + pixel_x = -3; + pixel_y = -1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"mTi" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"mTm" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"mTp" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/machinery/cm_vending/clothing/medical_crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/medical/hydroponics) +"mTr" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Main Corridor"; + dir = 8; + pixel_y = 2 + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"mTL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"mTN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"mUq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"mUx" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"mUE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"mUY" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"mVh" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"mVr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"mVA" = ( +/obj/item/reagent_container/glass/bucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"mVE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/machinery/door_control{ + id = "DeployWorkR"; + name = "Workshop Shutters"; + pixel_y = 26; + req_one_access_txt = "3;22;19;7" + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mVF" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "officers_mess"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;30" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) +"mWs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"mWy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha_bravo_shared) +"mWD" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"mWJ" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"mWQ" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/obj/structure/sign/banners/maximumeffort{ + pixel_y = 30 + }, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/squads/delta) +"mWV" = ( +/obj/structure/bed/chair/comfy/blue, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"mWW" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 10 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"mXj" = ( +/turf/closed/wall/almayer, +/area/almayer/living/commandbunks) +"mXm" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"mYt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"mYv" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + negdir = 4; + posdir = 1 + }, +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"mYA" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"mZb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/command/cichallway) +"mZc" = ( +/obj/structure/sign/poster/blacklight{ + pixel_y = 35 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/reagent_dispensers/beerkeg/alt_dark{ + anchored = 1; + chemical = null; + density = 0; + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"mZf" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 + }, +/obj/item/reagent_container/food/snacks/meatpizzaslice{ + pixel_x = -5; + pixel_y = 7 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"mZr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"mZF" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "s_engi_ext" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"mZL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"mZM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"mZP" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"mZQ" = ( +/obj/structure/machinery/vending/security, +/obj/structure/machinery/light, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"naa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nac" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"nah" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/item/desk_bell{ + anchored = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/lobby) +"naj" = ( +/obj/structure/machinery/door_control{ + id = "ARES JoeCryo"; + name = "ARES WorkingJoe Bay Shutters"; + pixel_x = -24; + req_one_access_txt = "91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"nar" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/auxiliary_officer_office) +"nau" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"naw" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OTStore"; + name = "\improper Secure Storage"; + unacidable = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"naB" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/perma) +"naK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"naR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/sleep_console{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"naV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Gym" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) +"nbu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"nbH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"ncf" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"nci" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"ncl" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/lobby) +"ncp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"ncx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Emergency Air Storage" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"ncE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/autodispenser{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"ncG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/port) +"ncT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"ndl" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"ndm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"ndZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"nec" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access_txt = "200"; + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"nef" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"ner" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south2) +"new" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"neC" = ( +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"neE" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"neG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"neH" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"neO" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"neS" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"neT" = ( +/obj/structure/transmitter/rotary{ + name = "CL Office Telephone"; + phone_category = "Offices"; + phone_id = "CL Office" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"neZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"nff" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"nfC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"ngf" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"ngl" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"ngn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"ngr" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = -17 + }, +/obj/structure/bed/sofa/south/grey/left, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/lobby) +"ngw" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/frag, +/obj/item/mortar_shell/frag, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"ngA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"ngI" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/living/briefing) +"ngK" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) +"ngU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"ngV" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/farwacube{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/neaeracube{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/stokcube{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/yirencube{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"nhi" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/window/reinforced/ultra, +/turf/open/floor/almayer/silver, +/area/almayer/living/briefing) +"nhr" = ( +/obj/structure/ladder{ + height = 1; + id = "engineeringladder" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/workshop) +"nhw" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"nhx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck{ + desc = "A simple deck of playing cards. You could play Caravan with these!"; + pixel_y = 12 + }, +/obj/item/toy/deck/uno{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/clothing/mask/cigarette{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"nhE" = ( +/obj/structure/sign/safety/maint{ + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nhG" = ( +/obj/item/newspaper{ + name = "character sheet" + }, +/obj/item/device/cassette_tape/heavymetal{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/toy/dice, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/door_control{ + id = "courtyard window"; + name = "Privacy Shutters"; + pixel_x = -8; + pixel_y = -6; + req_access_txt = "3" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"nhN" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"nhV" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"nic" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/stern) +"nig" = ( +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"nii" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"nik" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"nim" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + access_modified = 1; + dir = 2; + name = "\improper Chief Engineer's Office"; + req_one_access = null; + req_one_access_txt = "1;6" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "CE Office Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/ce_room) +"nis" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"niF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/medical_science) +"niL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"niR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"niY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"nja" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"njd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"njk" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"njn" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_m_s) +"njD" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south1) +"njJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/toy/crayon/blue{ + pixel_x = -9; + pixel_y = -5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"njO" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/panic) +"njS" = ( +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"nkc" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"nkj" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"nkn" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"nkx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"nkF" = ( +/obj/structure/bed/chair/bolted{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"nkH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) +"nkK" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_AresDown2"; + vector_x = 102; + vector_y = -61 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"nkX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4; + pixel_y = 5 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"nlh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"nlz" = ( +/obj/structure/machinery/brig_cell/cell_3{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"nlB" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/living/briefing) +"nlI" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"nlW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"nme" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/port) +"nmh" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"nmp" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"nmH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"nmK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"nmV" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/securestorage) +"nmY" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/lower/workshop/hangar) +"nne" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge2" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"nnr" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/port_aft_hallway) +"nny" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"nnD" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/stair_clone/upper) +"nnL" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/corporateliaison) +"nnX" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"noe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/aft_hallway) +"noj" = ( +/obj/structure/largecrate, +/obj/structure/prop/server_equipment/laptop{ + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"noo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_s"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"nop" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"nos" = ( +/obj/structure/machinery/chem_storage/medbay{ + dir = 1 + }, +/obj/structure/machinery/chem_storage/research{ + dir = 1; + layer = 3; + pixel_y = 18 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"nou" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) +"noy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"noE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"noI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"noO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"noP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"nph" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/engineering/starboard_atmos) +"npq" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 8; + id = "ares_vault_in"; + name = "aicore" + }, +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"npt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"npw" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/starboard_midship_hallway) +"npA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"npO" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"nqe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/armory) +"nqx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"nqO" = ( +/obj/structure/closet/secure_closet/fridge/fish/stock, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"nqV" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"nqW" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"nrb" = ( +/obj/item/robot_parts/arm/l_arm, +/obj/item/robot_parts/leg/l_leg, +/obj/item/robot_parts/arm/r_arm, +/obj/item/robot_parts/leg/r_leg, +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/synthcloset) +"nri" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/working_joe{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"nrw" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/squads/charlie) +"nrN" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"nrO" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"nsc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"nsd" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/lights/bulbs{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"nso" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"nsr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"nsH" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/hallways/upper/midship_hallway) +"nsQ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 29 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/captain_mess) +"nsY" = ( +/turf/closed/wall/almayer, +/area/almayer/living/port_emb) +"ntd" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/clipboard{ + pixel_x = 12 + }, +/obj/item/tool/pen{ + pixel_x = 12 + }, +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/structure/sign/ROcreed{ + pixel_y = 30 + }, +/obj/item/device/flashlight/lamp{ + pixel_y = -11; + pixel_x = 7 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"ntj" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/computerlab) +"ntx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Alpha_2"; + name = "\improper Bathroom" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"ntI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"nux" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "perma_lockdown_1"; + name = "\improper Perma Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"nuA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"nuK" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"nuM" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south2) +"nuN" = ( +/obj/effect/landmark/start/marine/medic/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"nuZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"nve" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"nvz" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south2) +"nvG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/structure/mirror{ + pixel_y = 21 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"nvI" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"nvM" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/medical/chemistry) +"nvT" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"nvX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/stack/cable_coil{ + pixel_x = 8; + pixel_y = -4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"nwb" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"nwi" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"nwx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/port_missiles) +"nwD" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/command/cic) +"nwG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"nwL" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"nwU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"nwW" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"nwY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"nxb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/workshop) +"nxe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/toolbox, +/obj/item/stack/sheet/metal{ + desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; + icon = 'icons/obj/structures/props/semiotic_standard.dmi'; + icon_state = "coffee"; + name = "coffee semiotic"; + pixel_x = 20; + pixel_y = 12; + singular_name = "coffee semiotic" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"nxx" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"nyj" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"nyw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"nyK" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/upper/fore_hallway) +"nyQ" = ( +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"nyS" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"nzt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"nzv" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/clipboard, +/obj/item/clipboard, +/obj/item/folder/black, +/obj/item/folder/black, +/obj/item/folder/white, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"nzD" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/port) +"nzO" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"nzT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "brignorth"; + name = "\improper Brig Lobby" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"nAd" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"nAm" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"nAv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"nAY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"nBa" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0; + vend_y_offset = 0 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"nBi" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/glasses/monocle, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -7; + pixel_y = -2 + }, +/obj/item/weapon/pole/fancy_cane{ + pixel_x = 5 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"nBw" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) +"nBE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"nBF" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"nBJ" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/s_bow) +"nBK" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north2) +"nBV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"nCe" = ( +/obj/structure/machinery/prop/almayer/computer{ + pixel_y = 20 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"nCf" = ( +/obj/effect/landmark/start/marine/tl/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"nCj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/hangar{ + dir = 4; + pixel_y = 12 + }, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 4; + name = "Remote dropship navigation computer"; + pixel_y = -12 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"nCn" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"nCp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"nCx" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + desc = "A premium double-malt whiskey, this bottle was gifted to the Captain of the USS Almayer after the completion of the ship's space trials by the VADM. himself."; + pixel_x = 3; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 11; + pixel_y = 16 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/clothing/mask/cigarette/pipe{ + layer = 2.8; + pixel_x = 14 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"nCD" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"nCM" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"nCR" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 29 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/auxiliary_officer_office) +"nCT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"nDa" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"nDb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"nDo" = ( +/obj/structure/closet/l3closet/general, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"nDy" = ( +/obj/structure/bed/chair/comfy/ares{ + dir = 1 + }, +/obj/structure/pipes/vents/pump/no_boom/gas{ + vent_tag = "Core Chamber" + }, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"nDH" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"nDM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"nEc" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"nEl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"nEo" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"nEF" = ( +/obj/structure/machinery/conveyor_switch{ + id = "gym_1"; + name = "treadmill switch" + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"nEH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/computer/research{ + dir = 4; + pixel_y = 4 + }, +/obj/item/tool/hand_labeler{ + pixel_x = -6; + pixel_y = -5 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"nEJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"nEO" = ( +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"nEZ" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"nFm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"nFs" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"nFA" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"nFI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Shutters" + }, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"nFK" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"nFX" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"nGh" = ( +/obj/structure/bed/chair{ + buckling_y = 5; + dir = 1; + pixel_y = 5 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"nGi" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"nGk" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"nGM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"nGY" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north2) +"nHu" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"nHG" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"nHJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) +"nHL" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"nHX" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"nIj" = ( +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"nIt" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/starboard_missiles) +"nID" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin{ + pixel_x = -7 + }, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/tool/pen{ + pixel_y = 3 + }, +/obj/item/tool/pen, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"nIE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"nIG" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/securestorage) +"nIN" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_m_p) +"nIS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/basketball) +"nJa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/lower/engine_core) +"nJs" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"nJu" = ( +/obj/item/newspaper, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"nJH" = ( +/obj/structure/machinery/computer/cameras/almayer{ + dir = 8; + pixel_x = 17 + }, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"nKq" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"nKO" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet{ + density = 0; + desc = "An outlet for the pneumatic delivery system."; + icon_state = "delivery_outlet"; + name = "take-ins"; + pixel_x = 7; + pixel_y = 28; + range = 0 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"nKP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"nLk" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"nLp" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_p) +"nLt" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/req) +"nLI" = ( +/obj/structure/sign/safety/terminal{ + layer = 2.5; + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/chem_simulator{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"nLJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"nMe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"nMp" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/franks, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"nMV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"nNg" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"nNt" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"nNv" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"nNx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"nNA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"nNH" = ( +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/living/briefing) +"nNT" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"nNV" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie_delta_shared) +"nNX" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PU-1"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"nNY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"nOb" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"nOp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"nOx" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"nOC" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"nOX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"nPa" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"nPb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"nPf" = ( +/obj/structure/machinery/computer/cameras/almayer/containment{ + dir = 8; + pixel_x = -4; + pixel_y = 6 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/structure/machinery/door_control{ + id = "containmentlockdown_S"; + name = "Containment Lockdown"; + pixel_x = -5; + pixel_y = -4; + req_one_access_txt = "19;28" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"nPs" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/synthcloset) +"nPx" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"nPB" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/hangar) +"nPE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/centrifuge{ + pixel_y = 7 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"nPO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/maint/hull/lower/l_m_s) +"nPT" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + desc = "These shutters seem to be pretty poorly mantained and almost wedged into the room.. you're not sure if these are official."; + dir = 4; + id = "crate_room4"; + name = "dilapidated storage shutters" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"nPY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/lifeboat) +"nQn" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"nQo" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"nQv" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"nQA" = ( +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"nRA" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"nRE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"nRH" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"nRN" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"nRR" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"nRX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"nSk" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"nSq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"nSu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"nSw" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"nSG" = ( +/obj/structure/machinery/door_control{ + id = "tcomms"; + name = "Telecommunications Entrance"; + pixel_y = 25 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/telecomms) +"nSS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"nTl" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"nTo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/transmitter{ + dir = 8; + name = "Medical Telephone"; + phone_category = "Almayer"; + phone_id = "Medical Lower"; + pixel_x = 16 + }, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"nTs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"nTA" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"nTH" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"nTR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"nTZ" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/living/gym) +"nUa" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"nUd" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/spray/cleaner{ + layer = 3.2; + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"nUj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 2"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"nUm" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 12; + pixel_y = -5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"nUn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"nUv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"nUT" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"nVi" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"nVm" = ( +/obj/structure/machinery/door_control{ + id = "firearm_storage_armory"; + name = "Armory Lockdown"; + pixel_y = 24; + req_access_txt = "4" + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"nVn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"nVq" = ( +/obj/structure/sign/safety/security{ + pixel_x = -17; + pixel_y = 6 + }, +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"nVB" = ( +/turf/open/floor/almayer, +/area/almayer/command/securestorage) +"nVE" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"nVF" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"nVQ" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/security{ + pixel_y = -32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nVR" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/perma) +"nVX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D1"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"nWf" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"nWN" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"nWS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"nXo" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"nXG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south2) +"nXO" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigar{ + layer = 3.04; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -11; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -2; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 7; + pixel_y = 16 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"nXU" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 1; + name = "\improper Requisitions Storage" + }, +/obj/structure/disposalpipe/up/almayer{ + dir = 4; + id = "almayerlink_OT1_req" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"nXV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"nYc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"nYd" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"nYg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"nYi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"nYn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"nYp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"nYD" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_four) +"nYE" = ( +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/command/lifeboat) +"nYR" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = 26 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"nZf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"nZm" = ( +/obj/structure/machinery/door_control{ + access_modified = 1; + id = "OTStore"; + name = "Shutters"; + pixel_y = 24; + req_one_access_txt = "35" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"nZy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/facepaint/black, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"nZG" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"nZK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"nZR" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"nZW" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"oap" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/upper_medical) +"oaw" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"oaK" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"oaO" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/obj/structure/machinery/recycler, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) +"oaP" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet, +/obj/item/clothing/under/marine, +/obj/item/clothing/suit/storage/marine, +/obj/item/clothing/head/helmet/marine, +/obj/item/clothing/head/cmcap, +/obj/item/clothing/head/cmcap, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"oaW" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"obo" = ( +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink_med1_req" + }, +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"oby" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"obC" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/engineering/port_atmos) +"obE" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"obQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"ocf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"ocm" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/machinery/space_heater, +/obj/item/ashtray/glass{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"ocB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 24 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 14; + pixel_y = 38 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17 + }, +/obj/structure/sign/safety/laser{ + pixel_y = 24 + }, +/obj/structure/sign/safety/rewire{ + pixel_y = 38 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"ocL" = ( +/obj/structure/machinery/cryopod/right{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build/ai_cargo, +/area/almayer/command/airoom) +"odb" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"ode" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/s_bow) +"odl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"odt" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/vehiclehangar) +"odu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"odB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"odD" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"odG" = ( +/obj/structure/platform, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"odN" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "SEA Office Shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/sea_office) +"odV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"oee" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/command/lifeboat) +"oef" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha_bravo_shared) +"oer" = ( +/turf/closed/wall/almayer{ + damage_cap = 15000 + }, +/area/almayer/squads/delta) +"oes" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"oex" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"oeB" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/processing) +"oeH" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"oeM" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"oeZ" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/medical) +"ofH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"ofK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"ofU" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"ofY" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + layer = 3.3; + pixel_y = 6 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ogK" = ( +/obj/structure/bed/bedroll{ + desc = "A bed of cotton fabric, purposely made for a cat to comfortably sleep on."; + name = "cat bed" + }, +/obj/structure/machinery/firealarm{ + pixel_x = -1; + pixel_y = 28 + }, +/mob/living/simple_animal/cat/Jones{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"ogT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"ohi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"ohj" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"ohu" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig Maintenance" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/p_bow) +"ohA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"ohB" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"ohE" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ohH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D3"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"ohI" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/stack/cable_coil{ + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ohJ" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"ohL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"ohS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/captain_mess) +"oif" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"oih" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 + }, +/obj/item/bedsheet/orange{ + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"oiq" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"oir" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/power/apc/almayer/hardened/east, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"oit" = ( +/obj/effect/landmark/railgun_computer{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"oix" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"oiz" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigwarden"; + dir = 1; + name = "\improper Warden's Office" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"oiL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"oiQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"oiX" = ( +/obj/docking_port/stationary/vehicle_elevator/almayer, +/turf/open/floor/almayer/empty/vehicle_bay, +/area/almayer/hallways/lower/vehiclehangar) +"oiY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/obj/structure/sink{ + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"ojh" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"ojF" = ( +/obj/structure/machinery/cm_vending/clothing/tl/charlie{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"ojH" = ( +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/starboard) +"ojQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"ojX" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_f_p) +"ojZ" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/medical/lower_medical_medbay) +"oka" = ( +/obj/effect/landmark/start/marine/medic/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"okd" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "n_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"okg" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"okD" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer6" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"okO" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"old" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"olF" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/midship_hallway) +"olM" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"olN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"olO" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"olQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"olU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/command/cichallway) +"olW" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/s_bow) +"omb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"ome" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"omo" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/medical/lockerroom) +"omt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"omx" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"omy" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"omP" = ( +/obj/item/tool/mop, +/obj/structure/surface/rack, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"onn" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"onv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"onN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/toy/deck{ + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"onQ" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/upper_medical) +"onU" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"onY" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"oog" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"ooh" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"oos" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"oou" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"ooA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"opd" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"opu" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north2) +"opC" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"opD" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/gym) +"opF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/chief_mp_office) +"opH" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"opJ" = ( +/obj/docking_port/stationary/emergency_response/external/port4, +/turf/open/space/basic, +/area/space) +"opV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_y = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"oqc" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"oqt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"oqu" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"oqv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"oqw" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"oqI" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"oqS" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"oqY" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" + }, +/obj/structure/plasticflaps, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"oqZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 5 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -4; + pixel_y = 19 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 4; + pixel_y = 16 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"ora" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 9; + pixel_y = 15 + }, +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"orx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"orH" = ( +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/command/lifeboat) +"orN" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"osc" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"osr" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"osx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"osz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"osA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"osI" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop) +"osQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"osT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/ice_colony/hula_girl{ + pixel_x = 10; + pixel_y = -4 + }, +/turf/open/floor/almayer, +/area/almayer/living/pilotbunks) +"osU" = ( +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_x = -27 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"osX" = ( +/obj/structure/sign/safety/north{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"otp" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"otq" = ( +/obj/structure/machinery/line_nexter{ + dir = 1; + id = "MTline"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"otu" = ( +/turf/closed/wall/almayer/research/containment/wall/connect_w, +/area/almayer/medical/containment/cell) +"otC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"otW" = ( +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"ouf" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/starboard) +"oug" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/computer/squad_changer{ + dir = 8; + layer = 2.99; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"our" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ouw" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/bombcloset, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"ouB" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"ouQ" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"ouU" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"ouW" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) +"ove" = ( +/obj/structure/airlock_assembly, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ovi" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering/port) +"ovp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"ovG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"ovQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"owg" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"owU" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"owW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "19;29" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/sea_office) +"oxc" = ( +/obj/structure/bed, +/obj/item/toy/plush/farwa{ + pixel_x = 5 + }, +/obj/item/clothing/under/redpyjamas, +/obj/item/bedsheet/orange, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"oxe" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"oxl" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"oxn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"oxu" = ( +/obj/structure/sign/safety/galley{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"oxy" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"oxz" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"oxU" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"oyB" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"oyC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/starboard_hallway) +"oyE" = ( +/obj/effect/landmark/start/intel, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 29; + serial_number = 12 + }, +/obj/effect/landmark/late_join/intel, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/port_atmos) +"oyO" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"oyR" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"oyX" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"ozq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"ozz" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"ozH" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"ozN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D2"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"ozT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"oAa" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"oAB" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/living/briefing) +"oAK" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"oAO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"oAT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/clothing/head/soft/ferret{ + pixel_x = -7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"oBq" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 1"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/cells) +"oBr" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_s) +"oBA" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/south{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"oBD" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 8; + vent_tag = "Access Hall" + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"oCa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"oCb" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"oCf" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"oCi" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"oCl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/bed/chair/comfy/delta, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"oCK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"oDa" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"oDh" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"oDi" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"oDm" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"oDv" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/gym) +"oDx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "30;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"oDy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"oDE" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6 + }, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"oDJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/spiderling_remains{ + pixel_x = 18; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/ash{ + pixel_x = 11; + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"oDL" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"oDR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"oDU" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"oDY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"oEf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"oEn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/midship_hallway) +"oEo" = ( +/obj/effect/landmark/start/marine/medic/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"oEw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = 7; + pixel_y = 14 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = -5; + pixel_y = 10 + }, +/obj/structure/sign/safety/medical{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"oEy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"oEA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump{ + pixel_y = 9; + starting_attachment_types = list(/obj/item/attachable/stock/shotgun) + }, +/obj/item/stack/sheet/cardboard/small_stack{ + layer = 3.01 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"oEE" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"oER" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"oEX" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/living/port_emb) +"oFm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop) +"oFn" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters/clippers, +/obj/item/restraint/handcuffs/zip, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"oFr" = ( +/obj/item/storage/firstaid/regular, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"oFz" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"oFV" = ( +/obj/structure/sign/poster{ + pixel_x = -32; + serial_number = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"oFY" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/lobby) +"oGf" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"oGh" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_aft_hallway) +"oGi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"oGj" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"oGm" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) +"oGx" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = 30 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"oGy" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"oGC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"oGF" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"oGI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"oGJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"oGL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"oGP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/living/port_emb) +"oGW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"oGY" = ( +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/door_control/cl/office/evac{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/structure/machinery/door_control/cl/office/divider{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"oHc" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"oHf" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"oHg" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"oHl" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"oHs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oHt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"oHx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"oIa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"oIh" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"oIn" = ( +/obj/effect/landmark/start/liaison, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"oIp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"oIt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"oIB" = ( +/turf/closed/wall/almayer, +/area/almayer/command/combat_correspondent) +"oIY" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"oJj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"oJk" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop) +"oJm" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"oJp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/bed/chair/office/dark, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"oJK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/south2) +"oJL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"oKb" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"oKv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"oKx" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"oLf" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"oLj" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"oLF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 2; + name = "\improper Brig Lobby"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/lobby) +"oLN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"oLU" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/hydroponics) +"oMe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"oMi" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"oMs" = ( +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"oMH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha_bravo_shared) +"oMQ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"oNb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 15 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) +"oNj" = ( +/obj/structure/sign/prop1{ + pixel_x = -32; + pixel_y = 2 + }, +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"oNp" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"oNJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"oNK" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"oNM" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"oNP" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"oNW" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/sign/safety/storage{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = -17; + pixel_y = -7 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"oNY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 7 + }, +/obj/structure/machinery/door_control/cl/quarter/officedoor{ + pixel_x = -25 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"oOp" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"oOw" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"oON" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) +"oOO" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"oOW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"oOZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"oPf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"oPy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"oPz" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -9; + pixel_y = 3 + }, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"oPE" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/command/cic) +"oPF" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"oPH" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_2"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"oQn" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_midship_hallway) +"oQs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/book/manual/surgery{ + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"oQw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/hallways/lower/port_umbilical) +"oQH" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/briefing) +"oQI" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/port) +"oQJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"oQL" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"oQM" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/tool/pen, +/obj/item/book/manual/marine_law{ + pixel_x = 15; + pixel_y = 5 + }, +/obj/item/book/manual/security_space_law{ + pixel_x = 16; + pixel_y = 9 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/auxiliary_officer_office) +"oRk" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"oRm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"oRy" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = 20; + pixel_y = -32 + }, +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"oRJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/surface/table/almayer{ + layer = 3 + }, +/obj/effect/landmark/map_item, +/obj/item/device/megaphone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"oRO" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"oRV" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"oRW" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/clipboard, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"oSq" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel" + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"oSw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"oSx" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"oSC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"oSG" = ( +/obj/structure/surface/table/almayer, +/obj/item/card/id/visa, +/obj/item/tool/crew_monitor, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"oSL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"oSM" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"oSR" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"oTe" = ( +/obj/item/prop/almayer/box, +/obj/item/prop{ + desc = "This M57 smartgun was utilized in field testing by the greatest smartgunner the USS Almayer ever had, Larry A.W Lewis, until he was fatally and tragically decapitated from a single clean shot to the head by a CLF sniper. As he didn't wear a helmet, it took weeks to find the body."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'; + icon_state = "m56c"; + item_state = "m56c"; + name = "broken M57 'Larry's Will' smartgun"; + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/frame/light_fixture/small{ + pixel_y = 17 + }, +/obj/structure/machinery/door_control{ + id = "crate_room4"; + name = "storage shutters"; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/obj/item/packageWrap, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"oTA" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"oTH" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"oTO" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"oUi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oUt" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"oUx" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"oUz" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) +"oUG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"oUZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"oVf" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/evidence{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/storage/box/evidence{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"oVk" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"oVo" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"oVY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"oWf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"oWg" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/east{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"oWq" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"oWx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"oWz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"oWE" = ( +/obj/structure/stairs, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oWF" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"oWK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"oWN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"oXb" = ( +/obj/effect/landmark/start/marine/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"oXp" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"oXJ" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"oXM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"oXY" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"oYi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"oYp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/living/offices/flight) +"oYr" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) +"oYs" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"oYA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/dropship_equipment/fuel/cooling_system{ + layer = 3.5 + }, +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = 2; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/lower/repair_bay) +"oYZ" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"oZp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/prop/magazine/boots/n055{ + pixel_x = -9; + pixel_y = 5 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/offices/flight) +"oZx" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES ReceptStairs2"; + name = "\improper ARES Reception Shutters"; + plane = -7 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"oZy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"oZD" = ( +/obj/structure/sign/poster/music{ + pixel_x = -27 + }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = -1 + }, +/obj/item/tool/pen{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/tool/pen{ + pixel_x = -11; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"oZI" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north2) +"oZV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"paa" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/containment) +"pas" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/sign/safety/cryo{ + pixel_x = 3; + pixel_y = 25 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 15; + pixel_y = 25 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"pax" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 8; + vent_tag = "Reception" + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"paI" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"paJ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"paL" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/command/cic) +"pbm" = ( +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/mp_bunks) +"pbo" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"pbp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"pbs" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"pbV" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/command/cic) +"pbW" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"pcc" = ( +/obj/structure/surface/rack, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"pcf" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"pcj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/shipboard/brig/cic_hallway) +"pcl" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"pcs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"pcv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"pcE" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_2"; + name = "treadmill" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"pcG" = ( +/obj/structure/machinery/door_control{ + id = "dccbunk"; + name = "DCC Privacy Shutters"; + pixel_x = 24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"pcO" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/grunt_rnr) +"pcY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) +"pdo" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north2) +"pdp" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"pdK" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"pdT" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"pek" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/s_bow) +"pep" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_p) +"peM" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_s) +"peO" = ( +/obj/structure/sign/safety/medical{ + pixel_x = -17; + pixel_y = 6 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -9 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/lobby) +"pfa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"pfc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"pfd" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/starboard_hallway) +"pfp" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"pfD" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"pfH" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"pfL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"pfM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"pfT" = ( +/obj/structure/machinery/ares/processor/interface, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"pga" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"pgw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"pgD" = ( +/turf/closed/wall/almayer, +/area/almayer/lifeboat_pumps/south1) +"pgJ" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"pgM" = ( +/obj/structure/reagent_dispensers/water_cooler/walk_past{ + pixel_x = 10; + pixel_y = 3 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"pgN" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"pgP" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"pha" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"phd" = ( +/obj/structure/sign/poster/safety{ + pixel_x = 27 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"phj" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/machinery/photocopier/wyphotocopier, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"phw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"phN" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/processing) +"pij" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"piJ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"piK" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "Perma 1"; + name = "\improper cell shutter" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/perma) +"piQ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"pje" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"pjh" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"pjj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/starboard) +"pjw" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_lobby) +"pjz" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/p_bow) +"pjF" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/lighter/random, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"pjG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plating_striped, +/area/almayer/squads/req) +"pjP" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"pjR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"pkz" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha_bravo_shared) +"pkA" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"pkS" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_AresUp2"; + vector_x = -102; + vector_y = 61 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"pld" = ( +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/northeast, +/area/almayer/maint/upper/u_a_p) +"plv" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"plK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"pmd" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"pmq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"pmv" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"pmH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"pmV" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/obj/structure/machinery/computer/tech_control{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/no_build/ai_floors, +/area/almayer/command/airoom) +"pnh" = ( +/obj/structure/ladder{ + height = 2; + id = "ForePortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/p_bow) +"pns" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"pnC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"pnL" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" + }, +/obj/item/weapon/baseballbat/metal{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"pok" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"poA" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_y = 10 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"poD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"ppe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/living/auxiliary_officer_office) +"ppn" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"ppF" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/obj/structure/surface/table/almayer, +/obj/item/clipboard{ + pixel_x = -4 + }, +/obj/item/device/taperecorder{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/camera, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"ppG" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"ppM" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"ppV" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pqc" = ( +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"pqi" = ( +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/tool/weldingtool, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding, +/obj/item/device/reagent_scanner, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"pql" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"pqw" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"pqD" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"pqF" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/cigarbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"pqK" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"pqM" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Workshop Vendors" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) +"pqP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"pqX" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"pqY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"prf" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"pri" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"prl" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"prx" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"prE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/clothing/suit/chef/classic, +/obj/item/clothing/head/chefhat, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"prP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"prX" = ( +/obj/structure/ladder{ + height = 2; + id = "AftStarboardMaint" + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_s) +"prY" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray, +/obj/item/tool/kitchen/utensil/pknife, +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"psa" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"psk" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"psK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc02"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = -28; + pixel_y = 23 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"psO" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"ptf" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering) +"pth" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/blue, +/obj/effect/landmark/map_item, +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"ptj" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"ptq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/processing) +"ptv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"ptA" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/starboard) +"ptK" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"ptQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/s_stern) +"ptZ" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"pub" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"pum" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"pun" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/shipboard/port_missiles) +"pur" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"puI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"puO" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"puP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/upper/midship_hallway) +"puT" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"pvh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/item/tool/warning_cone{ + pixel_x = -21; + pixel_y = -9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"pvi" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) +"pvI" = ( +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"pvJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"pvK" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -6; + pixel_y = 28 + }, +/obj/structure/machinery/firealarm{ + pixel_x = 8; + pixel_y = 28 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/transmitter/rotary{ + name = "Intelligence Center Telephone"; + phone_category = "Almayer"; + phone_id = "Intelligence Center Telephone" + }, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"pvP" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/starboard_missiles) +"pwl" = ( +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/west{ + pixel_y = -32 + }, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/hallways/upper/fore_hallway) +"pwx" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pwG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"pxj" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"pxo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"pxD" = ( +/obj/structure/machinery/vending/coffee{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/machinery/vending/snack{ + pixel_x = -18; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"pxG" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"pxJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"pyc" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/port_emb) +"pyi" = ( +/obj/structure/prop/almayer/missile_tube{ + icon_state = "missiletubesouth" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"pyj" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"pyl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"pyx" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Containment Cell 4"; + name = "Control Panel"; + pixel_x = -15; + req_access_txt = "200" + }, +/obj/item/storage/fancy/cigarettes/blackpack{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/tool/lighter/zippo/gold{ + pixel_x = 2 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"pyy" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"pyC" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"pyL" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"pzc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"pzd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"pzj" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pzw" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"pzG" = ( +/obj/docking_port/stationary/emergency_response/port1, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"pzJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"pzM" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"pzV" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/briefing) +"pzW" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/hallways/lower/vehiclehangar) +"pzX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"pAm" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"pAV" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/item/tool/mop, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"pBG" = ( +/turf/closed/wall/almayer, +/area/almayer/command/corporateliaison) +"pCq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"pCr" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/blend, +/turf/closed/wall/almayer{ + opacity = 0 + }, +/area/almayer/squads/req) +"pDh" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) +"pDo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"pDr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"pDt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"pDB" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"pDW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/chief_mp_office) +"pEl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/ladder/fragile_almayer{ + height = 1; + id = "kitchen" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 24 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"pEB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"pEJ" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 2"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 + }, +/obj/structure/machinery/light/containment{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"pEY" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"pFq" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars, +/obj/item/device/whistle{ + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"pFr" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"pGh" = ( +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -9; + pixel_y = 19 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"pGj" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"pGE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/hand_labeler{ + pixel_x = 7 + }, +/obj/item/paper_bin/uscm{ + pixel_y = 5 + }, +/obj/item/tool/pen, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17 + }, +/obj/item/device/megaphone, +/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"pGG" = ( +/obj/effect/landmark/start/doctor, +/obj/structure/sign/safety/maint{ + pixel_y = 26 + }, +/obj/effect/landmark/late_join/doctor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"pGK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"pGT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"pHc" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"pHh" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"pHp" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/perma) +"pHA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"pHD" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"pHF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"pHG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/basketball) +"pId" = ( +/obj/item/storage/box/nade_box/tear_gas, +/obj/item/storage/box/nade_box/tear_gas{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"pIo" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"pIC" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) +"pIU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"pIV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"pIZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"pJq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"pJr" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"pJD" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/item/tool/soap, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"pJS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"pKh" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/effect/landmark/start/nurse, +/obj/effect/landmark/late_join/nurse, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"pKB" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/firealarm, +/obj/item/circuitboard, +/obj/item/clipboard, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"pKH" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"pKL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/secure{ + pixel_x = -5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"pKU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"pKW" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) +"pKZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"pLa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"pLt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"pLE" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"pLO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 5"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"pLW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"pMj" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"pMk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"pMp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"pMA" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"pMH" = ( +/obj/item/tool/wet_sign, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"pMJ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"pML" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/blue, +/area/almayer/living/port_emb) +"pNa" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"pNM" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south1) +"pNP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/reagent_container/food/snacks/cheesewedge{ + pixel_x = -10; + pixel_y = 7 + }, +/mob/living/simple_animal/mouse/white/Doc, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"pOi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"pOp" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"pOD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"pOH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"pON" = ( +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/command/cic) +"pOW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"pOY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + density = 0; + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"pPd" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"pPv" = ( +/obj/structure/closet/cabinet, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"pPy" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"pPA" = ( +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 27; + serial_number = 12 + }, +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"pPG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"pPM" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/securestorage) +"pPN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/port_missiles) +"pPQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"pQc" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/offices) +"pQr" = ( +/obj/structure/bed, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"pQy" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/bridgebunks) +"pQz" = ( +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_s"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"pQF" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0; + vend_y_offset = 0 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"pQI" = ( +/obj/structure/machinery/power/apc/almayer/north{ + cell_type = /obj/item/cell/hyper + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/mp_bunks) +"pQN" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/franks, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"pQP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"pQV" = ( +/turf/open/floor/almayer/blue, +/area/almayer/living/pilotbunks) +"pQY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"pRn" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"pRs" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"pRy" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell/cl) +"pRO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/shipboard/brig/cic_hallway) +"pRT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 8; + name = "\improper Tool Closet" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"pRX" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"pRZ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/engineering/lower/workshop) +"pSF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"pSQ" = ( +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"pSU" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"pTj" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/computerlab) +"pTI" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"pTS" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/fore_hallway) +"pTX" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"pTY" = ( +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/maint/upper/u_a_s) +"pUd" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/mono, +/area/almayer/command/computerlab) +"pUf" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"pUg" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "ARES ReceptStairs2"; + name = "ARES Reception Stairway Shutters"; + pixel_x = 24; + req_one_access_txt = "91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"pUj" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"pUp" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 27 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"pUv" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"pUA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced/ultra{ + dir = 1 + }, +/obj/structure/window/reinforced/ultra{ + dir = 4 + }, +/obj/item/device/flashlight/lamp/on, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/briefing) +"pUD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/brig, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/brig/processing) +"pVh" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"pVr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pVx" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/req) +"pVA" = ( +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 2; + pixel_y = 18 + }, +/obj/item/tool/warning_cone{ + pixel_x = -12 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"pVB" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/structure/window/reinforced/ultra{ + dir = 1 + }, +/obj/structure/window/reinforced/ultra{ + dir = 8 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/briefing) +"pVF" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/atm{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"pWb" = ( +/obj/effect/landmark/start/marine/tl/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"pWd" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"pWr" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/plantspray/weeds, +/obj/structure/sign/safety/hvac_old{ + pixel_y = -26 + }, +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) +"pWw" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"pWN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/blue, +/area/almayer/living/pilotbunks) +"pXl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"pXx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"pXV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"pXZ" = ( +/obj/effect/landmark/start/marine/spec/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"pYh" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/one{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pYo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/containment) +"pYu" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 16 + }, +/obj/structure/sign/safety/security{ + pixel_x = -16 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"pYN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"pYQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"pYS" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"pYX" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"pZH" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/door/window/westright, +/obj/structure/window/reinforced/tinted/frosted, +/obj/item/tool/soap/deluxe, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/corporateliaison) +"pZK" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering/port) +"pZR" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"pZS" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"qam" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"qan" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"qas" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"qax" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"qaV" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering) +"qaW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/living/briefing) +"qbw" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"qbx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"qby" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -16 + }, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/living/briefing) +"qbD" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"qbO" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/pilotbunks) +"qbP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"qbU" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"qbZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + dir = 1; + name = "\improper Engineering Bunks" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"qck" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/cameras/wooden_tv/almayer{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"qcy" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"qdk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"qdv" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/clothing/head/beret/royal_marine, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/living/port_emb) +"qdz" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"qdA" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"qdJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"qdQ" = ( +/obj/structure/bed/sofa/vert/grey/top{ + pixel_y = 11 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"qdV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qec" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) +"qej" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"qep" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Field Surgery Equipment"; + req_access_txt = "20"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"qer" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"qeF" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"qeK" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/surface/table/reinforced/black, +/obj/item/storage/toolbox/mechanical, +/obj/item/stack/cable_coil{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/item/device/helmet_visor{ + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"qeY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"qfa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"qfh" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"qfq" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) +"qfy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = -11; + pixel_y = 16 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = 4; + pixel_y = 16 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/medical_science) +"qfA" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"qfD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"qfI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"qfQ" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade/three, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"qga" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/starboard_garden) +"qgn" = ( +/obj/item/stool, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"qgr" = ( +/obj/item/trash/plate{ + pixel_x = 9; + pixel_y = 11 + }, +/obj/item/reagent_container/food/snacks/carpmeat{ + layer = 3.3; + pixel_x = 8; + pixel_y = 11 + }, +/obj/item/reagent_container/food/snacks/carpmeat{ + layer = 3.3; + pixel_x = 8; + pixel_y = 11 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"qgK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic/press{ + dir = 1; + name = "\improper Combat Correspondent Room" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/combat_correspondent) +"qgN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"qgU" = ( +/obj/structure/machinery/power/apc/almayer/hardened/south, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"qhb" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"qhg" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"qhx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"qhD" = ( +/obj/structure/closet{ + name = "backpack storage" + }, +/obj/item/storage/backpack/marine/grenadepack, +/obj/item/storage/backpack/marine/grenadepack, +/obj/item/storage/backpack/marine/mortarpack, +/obj/item/storage/backpack/marine/mortarpack, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"qhG" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 4; + pixel_y = 13 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -13; + pixel_y = 8 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"qhT" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"qhU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"qid" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"qig" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"qih" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Tanker Quarters"; + req_one_access_txt = "19;27" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/tankerbunks) +"qim" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"qit" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"qiy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"qjz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/lighter, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"qjF" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/computerlab) +"qjK" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/mp_bunks) +"qjL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"qjN" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"qjV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"qjY" = ( +/obj/structure/machinery/door/window/eastleft{ + req_one_access_txt = "2;21" + }, +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby1"; + name = "\improper RO Line 1" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/surface/table/reinforced/almayer_blend/north, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -6; + pixel_y = -8 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"qjZ" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/stern_point_defense) +"qki" = ( +/obj/effect/landmark/start/marine/smartgunner/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"qkP" = ( +/obj/item/frame/light_fixture{ + anchored = 1; + desc = "A broken fluorescent tube light."; + dir = 8; + icon_state = "tube-broken"; + name = "broken light fixture" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"qkY" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -8; + pixel_y = -1 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 9 + }, +/obj/item/tool/pen{ + pixel_x = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"qlm" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"qlp" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/prop/tableflag/uscm{ + pixel_x = -5 + }, +/obj/item/prop/tableflag/uscm2{ + pixel_x = 5 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"qlu" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"qlz" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "SEA Office Shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/sea_office) +"qlI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"qlL" = ( +/obj/item/reagent_container/food/drinks/cans/souto, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) +"qmh" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/hallways/lower/repair_bay) +"qmk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/facepaint/green, +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/squads/delta) +"qmq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"qmy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_windoor"; + name = "Windoor Shutters"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "28" + }, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1; + pixel_x = 6; + pixel_y = -4 + }, +/obj/structure/sign/safety/biohazard{ + pixel_y = -32 + }, +/obj/structure/sign/safety/ref_bio_storage{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_se_2"; + name = "Window Shutters"; + pixel_x = -7; + pixel_y = 4; + req_access_txt = "28" + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/medical_science) +"qmD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"qmK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/fore_hallway) +"qmM" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"qmP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"qmR" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/brig/execution) +"qmU" = ( +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"qmW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"qmY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"qnd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"qnh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"qni" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"qnl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"qnA" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/tool/crowbar{ + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"qnC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"qnD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Crew Chief's Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"qnH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/midship_hallway) +"qnX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"qom" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_x = 1; + pixel_y = 14; + wrenchable = 0 + }, +/obj/structure/sign/safety/coffee{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"qon" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"qoJ" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"qoL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 8 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"qoM" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"qoN" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"qoR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"qoY" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"qpx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/vents/scrubber, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"qpQ" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/medbay, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) +"qpV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"qpY" = ( +/obj/structure/machinery/cryopod/right{ + dir = 4; + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/aicore/no_build/ai_cargo, +/area/almayer/command/airoom) +"qqa" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"qqf" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qqn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"qqr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"qqu" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/command/lifeboat) +"qqK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"qqQ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/medical_science) +"qqS" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"qra" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"qrc" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) +"qrv" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"qsp" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"qsC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"qsG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"qsL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/ce_room) +"qtv" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"quj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"quq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"quv" = ( +/obj/structure/pipes/standard/tank/oxygen, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -6; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) +"quJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"quS" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"quT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc02"; + name = "\improper Treatment Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"quV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/bed/stool, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"qvh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/hallways/upper/midship_hallway) +"qvC" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/plating, +/area/almayer/living/port_emb) +"qvE" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"qvF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/maint/upper/u_a_s) +"qvI" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"qvL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Weyland-Yutani Office" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/door, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"qwo" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"qwp" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" + }, +/turf/open/floor/plating, +/area/almayer/command/cichallway) +"qwt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"qwJ" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"qwU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"qwY" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"qxe" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 3"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"qxm" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 5"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/closed/wall/almayer/research/containment/wall/purple, +/area/almayer/medical/containment/cell) +"qxr" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"qxz" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-5"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"qxC" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Alpha_1"; + name = "\improper Bathroom" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"qxE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/biolab{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/water{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"qxI" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"qxJ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"qxL" = ( +/obj/structure/machinery/medical_pod/autodoc, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_medbay) +"qxP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"qxS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"qyi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) +"qyo" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cichallway) +"qys" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"qyA" = ( +/obj/structure/machinery/cm_vending/clothing/intelligence_officer{ + density = 0; + pixel_x = -32 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"qyD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"qyG" = ( +/obj/structure/sign/safety/hazard{ + desc = "A sign that warns of a hazardous environment nearby"; + name = "\improper Warning: Hazardous Environment" + }, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) +"qyK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"qyP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"qyW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie_delta_shared) +"qyX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qyZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/view_objectives, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"qzc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"qzA" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"qAs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"qAy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"qAA" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) +"qAB" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"qAE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/medical_science) +"qAG" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"qAK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"qAT" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 8 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/reagent_scanner{ + pixel_x = -16; + pixel_y = 5 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"qBl" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"qBq" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/commandbunks) +"qBM" = ( +/obj/item/storage/fancy/crayons{ + layer = 3.1; + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"qBS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"qCc" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"qCo" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"qCy" = ( +/obj/effect/landmark/start/captain, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/bridgebunks) +"qCA" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/execution) +"qCG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"qCH" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Secretroom"; + indestructible = 1; + unacidable = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"qCU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 32; + pixel_y = -22 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) +"qDq" = ( +/obj/effect/landmark/start/marine/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"qDt" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Lifeboat Control Bubble"; + req_access = null + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"qDB" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) +"qDP" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_four) +"qDS" = ( +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"qEk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"qEl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"qEn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research{ + name = "\improper Research Hydroponics Workshop" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"qEy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/processing) +"qEz" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_y = -21; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/structure/sign/safety/stairs{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/west{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"qEA" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 4"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"qEL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/case/small{ + pixel_y = 5 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"qEM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"qFi" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"qFu" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Cell Privacy Shutters"; + name = "\improper Cell Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/cells) +"qFE" = ( +/obj/structure/machinery/brig_cell/cell_5{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"qFG" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"qFK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/delta) +"qFS" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"qFX" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/mp_bunks) +"qGc" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha_bravo_shared) +"qGf" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/lobby) +"qGw" = ( +/obj/structure/reagent_dispensers/ammoniatank{ + anchored = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"qGC" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"qGF" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"qGU" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south2) +"qHg" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"qHq" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-6"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"qHD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"qHG" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"qHM" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"qHT" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"qIa" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"qIf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"qIx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access_txt = "200"; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/backdoor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"qIF" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"qIL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/item/folder/white{ + pixel_x = 6 + }, +/obj/item/storage/fancy/vials/empty{ + pixel_y = 10; + start_vials = 2 + }, +/obj/item/tool/pen{ + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"qJf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"qJj" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"qJo" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/perma) +"qJx" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"qJy" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/sign/safety/storage{ + pixel_x = 33; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"qJS" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -11; + pixel_y = -1 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"qJY" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + layer = 3.1; + pixel_x = -12; + pixel_y = 14 + }, +/obj/item/toy/deck/uno{ + layer = 3.1; + pixel_x = -3; + pixel_y = -1 + }, +/obj/item/toy/handcard/uno_reverse_yellow{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/almayer/orange, +/area/almayer/living/port_emb) +"qJZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"qKb" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/lights/tubes{ + pixel_x = -8 + }, +/obj/item/storage/box/lights/tubes{ + pixel_x = 5 + }, +/obj/item/storage/box/lights/tubes{ + pixel_y = 10 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"qKi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"qKl" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"qKz" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) +"qKK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"qKY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"qKZ" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"qLg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"qLi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"qLk" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_p) +"qLs" = ( +/obj/effect/landmark/start/maint, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"qLt" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters/clippers, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/open/floor/almayer/green/southwest, +/area/almayer/shipboard/brig/cells) +"qLH" = ( +/obj/structure/bed/chair{ + buckling_y = 6; + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"qLS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"qLV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/disk_reader, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"qLY" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"qMD" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/flashbangs{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = -8; + pixel_y = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"qMI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-y" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"qMP" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"qMR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"qNc" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = 24; + pixel_y = 8; + req_one_access_txt = "90;91;92" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"qNd" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"qNI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"qNK" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"qNR" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"qOf" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"qOk" = ( +/obj/docking_port/stationary/lifeboat_dock/port, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"qOp" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/gym) +"qOS" = ( +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qOY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"qOZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"qPk" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qPn" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_s) +"qPD" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"qPE" = ( +/obj/structure/machinery/prop/almayer/CICmap, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 16 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"qPS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"qPU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"qPX" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"qQc" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"qQp" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"qQu" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"qQy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"qQD" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/intercom{ + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"qQS" = ( +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"qRb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qRd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"qRj" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"qRr" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/door, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"qRX" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"qSm" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_point_defense) +"qSE" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/cholula, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"qSI" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"qSK" = ( +/obj/item/stack/sheet/metal{ + layer = 2.9; + pixel_x = 4; + pixel_y = 21 + }, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/living/port_emb) +"qSX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"qTi" = ( +/obj/structure/closet/crate, +/obj/item/ammo_box/magazine/l42a, +/obj/item/ammo_box/magazine/l42a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"qTu" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"qTA" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"qTQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"qTS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"qTY" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"qUh" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qUp" = ( +/obj/structure/surface/table/almayer, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"qUq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"qUu" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/fore_hallway) +"qUx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"qUz" = ( +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"qUK" = ( +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"qUL" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qUO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"qUZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "MTline"; + name = "Next button"; + pixel_x = 5; + pixel_y = 10; + req_one_access_txt = "2;7" + }, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"qVC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"qVE" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"qVF" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"qVS" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/sign/safety/conference_room{ + pixel_x = -17 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"qWt" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"qWx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"qWI" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"qWK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) +"qWL" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/item/frame/rack, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"qWQ" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"qWR" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 4 + }, +/area/almayer/medical/containment/cell/cl) +"qXk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"qXo" = ( +/obj/structure/machinery/seed_extractor, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/grunt_rnr) +"qXp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"qXE" = ( +/obj/structure/machinery/brig_cell/perma_1{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"qXO" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ + pixel_x = 5 + }, +/obj/item/reagent_container/food/snacks/mre_pack/xmas2{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/effect/landmark/map_item{ + layer = 3.03; + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"qXS" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/port) +"qXZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qYd" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south2) +"qYq" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/engine_core) +"qYr" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/obj/structure/catwalk{ + health = null + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"qYu" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"qYz" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"qYC" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 4; + id = "almayerlink_OT_req" + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"qYG" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/lifeboat) +"qYN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/toy/deck, +/turf/open/floor/almayer/red/northeast, +/area/almayer/living/offices/flight) +"qYQ" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"qYZ" = ( +/obj/structure/sign/safety/security{ + pixel_y = -32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"qZy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"qZA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/chief_mp_office) +"qZF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/machinery/door_control{ + id = "perma_lockdown_1"; + name = "\improper Perma Cells Lockdown"; + pixel_x = -8; + pixel_y = -4; + req_access_txt = "3" + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) +"qZH" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"qZK" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"qZT" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qZX" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"rae" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"raE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"raK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"raO" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"rbd" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rbp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"rby" = ( +/obj/structure/machinery/door_control{ + id = "ARES Mainframe Left"; + name = "ARES Mainframe Lockdown"; + pixel_x = 24; + pixel_y = -24; + req_one_access_txt = "200;91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"rbB" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/computerlab) +"rbF" = ( +/obj/effect/landmark/late_join, +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"rbH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"rbK" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"rbY" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "crate_room"; + name = "\improper Storage Shutters" + }, +/turf/open/floor/plating, +/area/almayer/squads/req) +"rcx" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"rcG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"rcS" = ( +/obj/structure/machinery/computer/cryopod/eng{ + dir = 8 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"rde" = ( +/obj/structure/sign/prop1, +/turf/closed/wall/almayer, +/area/almayer/living/grunt_rnr) +"rdh" = ( +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"rdt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/corner4, +/area/almayer/medical/containment/cell) +"rdz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_s"; + id_tag = "cic_exterior"; + name = "\improper Combat Information Center" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"rdA" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17; + pixel_y = -34 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"rdI" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) +"rdM" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"rdN" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"rdS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"rdT" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"rdZ" = ( +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"rec" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"ren" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"reu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"reH" = ( +/obj/structure/noticeboard{ + pixel_x = -10; + pixel_y = 31 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"reL" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"reM" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/maint/upper/mess) +"reN" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"rfa" = ( +/obj/effect/landmark/start/marine/medic/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"rfb" = ( +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 8; + icon_state = "containment_window_h" + }, +/area/almayer/medical/containment/cell/cl) +"rfB" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"rfI" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"rfT" = ( +/obj/item/frame/camera{ + desc = "The Staff Officer insisted he needed to monitor everyone at all times."; + layer = 2.9; + name = "broken camera"; + pixel_x = -7; + pixel_y = -6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"rfY" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"rgk" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"rgt" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/port_umbilical) +"rgy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"rgK" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.5; + pixel_x = 5; + pixel_y = 14 + }, +/obj/item/attachable/bayonet{ + pixel_x = -14; + pixel_y = 3 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) +"rgL" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) +"rgO" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"rgW" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/living/briefing) +"rhm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"rho" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/midship_hallway) +"rht" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"rhy" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/structure/prop/server_equipment/laptop{ + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"rhD" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"rhO" = ( +/obj/structure/machinery/vending/cola/research{ + pixel_x = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"rhQ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"rib" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"rir" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/s_bow) +"riB" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"riC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"riE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) +"riJ" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"riP" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/rewire{ + pixel_y = -32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"riT" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"rjn" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"rjr" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/upper/midship_hallway) +"rjF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"rjG" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"rjO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"rjV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + dir = 8; + layer = 3.2; + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = 27; + serial_number = 11 + }, +/obj/item/trash/pistachios{ + layer = 2; + pixel_x = 6; + pixel_y = -6 + }, +/obj/structure/machinery/recharger{ + layer = 3.1; + pixel_y = 22 + }, +/obj/item/ammo_magazine/rifle/incendiary{ + current_rounds = 0; + desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; + pixel_x = 10; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/port_emb) +"rjX" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"rka" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"rkz" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"rkV" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/warden_office) +"rlc" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"rlf" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"rlh" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"rll" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"rlD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) +"rlQ" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"rlZ" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"rmc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"rmf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering/starboard) +"rmk" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 26 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"rmo" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"rmx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/flash, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"rmz" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = 14; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"rmD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"rmE" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"rmG" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"rna" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"rnF" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"rnH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/computer/crew/alt{ + dir = 8; + pixel_x = 17 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"rnM" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"rnN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"rob" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"roj" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"rou" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"roG" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"roH" = ( +/obj/effect/step_trigger/ares_alert/terminals, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ARES Operations Left"; + name = "\improper ARES Operations Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"roU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"rpp" = ( +/obj/effect/landmark/start/executive, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/bridgebunks) +"rpG" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"rpK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"rpV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"rqb" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"rqj" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"rqv" = ( +/obj/structure/sign/poster/safety, +/turf/closed/wall/almayer, +/area/almayer/maint/lower/s_bow) +"rqz" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 + }, +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"rqD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) +"rqE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"rqQ" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"rqS" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/red{ + pixel_x = -4 + }, +/obj/item/folder/blue{ + pixel_x = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"rrh" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Under Construction Shutters"; + name = "\improper Construction Site" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) +"rrq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"rrz" = ( +/obj/structure/sign/safety/four{ + pixel_x = -17 + }, +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 4"; + name = "Cell 4" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"rrB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"rrK" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"rrU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rsK" = ( +/obj/structure/sign/safety/hvac_old, +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"rsL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_aft_hallway) +"rsM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"rsO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"rsP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"rsS" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = -25; + req_one_access_txt = "3" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"rsV" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"rtc" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/photo_album{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/folder/black{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/device/camera_film{ + pixel_x = -5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"rtd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"rth" = ( +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"rtA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/pen{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -5; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"rtV" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"rtY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/bronze, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 6; + pixel_y = 13 + }, +/turf/open/floor/almayer, +/area/almayer/living/pilotbunks) +"rub" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"ruc" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"rui" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"rur" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"rux" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/hangar) +"ruz" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"ruL" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/turf/open/floor/plating, +/area/almayer/engineering/lower/workshop/hangar) +"rvA" = ( +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"rvI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"rvT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"rwe" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"rwj" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rwq" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 7; + pixel_y = -26 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"rwv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"rwB" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"rwY" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "pobunk2"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/living/pilotbunks) +"rwZ" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_f_p) +"rxe" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"rxl" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit."; + icon_state = "delivery_engi"; + name = "Security Vault"; + pixel_x = -24; + pixel_y = 28 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = -32; + pixel_y = 40; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"rxq" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"rxK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"rxQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"ryn" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/command/securestorage) +"ryt" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"ryG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"ryJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_p) +"ryY" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/disposalpipe/down/almayer{ + dir = 1; + id = "almayerlink" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"rzk" = ( +/obj/item/tool/screwdriver, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"rzy" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"rzN" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"rAb" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/briefing) +"rAo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"rAw" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 8 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = -7 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"rAx" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"rAC" = ( +/obj/docking_port/stationary/emergency_response/external/port5, +/turf/open/space/basic, +/area/space) +"rAD" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"rAN" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"rAP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"rAS" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"rBa" = ( +/obj/structure/machinery/cm_vending/clothing/synth, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"rBb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"rBj" = ( +/obj/structure/machinery/processor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"rBv" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"rBx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/stamp/ro{ + name = "spare requisitions officer's rubber stamp"; + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"rBD" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_p) +"rBY" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/item/tool/soap, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"rCh" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"rCl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"rCD" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"rCK" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"rCO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"rCZ" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) +"rDb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"rDe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = 33 + }, +/obj/item/toy/deck{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = 9; + pixel_y = 12 + }, +/obj/item/ashtray/plastic{ + pixel_y = -4 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"rDf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"rDr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"rDt" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"rDv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"rDy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"rDH" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"rDO" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"rDQ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/cryo) +"rDR" = ( +/obj/structure/machinery/vending/coffee, +/obj/item/toy/bikehorn/rubberducky{ + desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; + name = "Quackers"; + pixel_x = 5; + pixel_y = 17 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"rDV" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"rEd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"rEf" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"rEm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"rEr" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer3" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"rEt" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"rEv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"rEK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"rEY" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"rFg" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) +"rFs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/folder/black, +/obj/item/tool/pen, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"rFy" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering/starboard) +"rFH" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"rGj" = ( +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"rGr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"rGz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"rGE" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Conference Room" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"rGL" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/upper/mess) +"rGU" = ( +/obj/structure/machinery/computer/skills{ + req_one_access_txt = "200" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"rHc" = ( +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"rHf" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"rHo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc01"; + name = "\improper Treatment Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"rHq" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"rHr" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/starboard_aft_hallway) +"rHw" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"rHB" = ( +/obj/item/ammo_box/magazine/misc/mre/empty{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 11; + pixel_y = -3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_stern) +"rHN" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"rIj" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" + }, +/obj/structure/machinery/door_control{ + id = "medicalemergency"; + name = "Medbay Lockdown"; + pixel_y = -23; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"rIw" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"rID" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/port) +"rIH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"rIO" = ( +/obj/structure/machinery/vending/snack, +/obj/item/clothing/head/cmcap/boonie/tan{ + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"rIP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rIV" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"rIW" = ( +/obj/structure/machinery/cm_vending/gear/synth, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"rJf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"rJh" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 5; + pixel_y = -2 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"rJj" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"rJu" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/living/briefing) +"rJx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) +"rJD" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/machinery/cm_vending/own_points/experimental_tools, +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"rJK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"rKd" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/command/cic) +"rKn" = ( +/obj/structure/machinery/door_control{ + id = "agentshuttle"; + indestructible = 1; + name = "Shutters"; + pixel_y = 25; + req_one_access_txt = "201"; + use_power = 0 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"rKt" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_aft_hallway) +"rKA" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"rKO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"rKQ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"rLk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"rLp" = ( +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 20 + }, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"rLv" = ( +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 4; + icon_state = "containment_window_h" + }, +/area/almayer/medical/containment/cell/cl) +"rLH" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/device/binoculars, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"rLK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/hvac_old{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"rLP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"rLU" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell/cl) +"rMh" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"rMj" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"rMO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/s_bow) +"rMT" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"rNa" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/uscm{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/item/tool/pen/clicky{ + pixel_x = -13; + pixel_y = -1 + }, +/obj/item/tool/pen/clicky{ + pixel_x = -13; + pixel_y = 5 + }, +/obj/structure/machinery/door_control{ + id = "CO-Office"; + name = "Door Control"; + normaldoorcontrol = 1; + pixel_y = 7; + req_access_txt = "31" + }, +/obj/item/ashtray/bronze{ + pixel_x = 12; + pixel_y = 1 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"rNb" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/machinery/door_control{ + id = "Alpha_2"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"rNK" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"rOc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"rOs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard, +/obj/item/device/binoculars, +/obj/item/storage/bible, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"rOv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"rOz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"rOC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"rOI" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"rOJ" = ( +/obj/structure/barricade/handrail, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"rPq" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"rPt" = ( +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"rPE" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"rPF" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"rPO" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) +"rPQ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"rQc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"rQs" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"rQt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"rQw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"rQy" = ( +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/hydroponics) +"rQA" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"rQV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"rQW" = ( +/obj/item/tool/screwdriver, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"rRq" = ( +/turf/closed/wall/almayer, +/area/almayer/lifeboat_pumps/south2) +"rRz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"rRT" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/midship_hallway) +"rRU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/ashtray/glass{ + pixel_x = -6 + }, +/obj/item/clothing/mask/cigarette/weed{ + name = "cigarette"; + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/weed{ + name = "cigarette"; + pixel_y = 7 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 7; + pixel_y = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"rSj" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/squads/alpha_bravo_shared) +"rSx" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/rods/plasteel{ + amount = 36 + }, +/obj/item/stack/catwalk{ + amount = 60; + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"rSA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"rSG" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"rSH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"rSR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) +"rSW" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"rTk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"rTA" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rTJ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"rTZ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"rUh" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) +"rUi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"rUk" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"rUq" = ( +/obj/effect/landmark/start/nurse, +/obj/effect/landmark/late_join/nurse, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"rUy" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"rUN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"rVc" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"rVt" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/part_fabricator/dropship, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"rVB" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"rVC" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"rVN" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/port_missiles) +"rWb" = ( +/obj/item/tool/minihoe{ + pixel_x = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"rWn" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMP Office Shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/chief_mp_office) +"rWs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"rWv" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"rWy" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"rWz" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) +"rWL" = ( +/obj/structure/barricade/metal, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"rWT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"rXd" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"rXj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"rXk" = ( +/obj/structure/barricade/plasteel/metal{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"rXq" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_p) +"rXv" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) +"rXE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = -32 + }, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"rXF" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"rXH" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"rXQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"rXS" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"rXU" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"rYh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"rYi" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"rYp" = ( +/obj/effect/landmark/start/marine/medic/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"rYv" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/computer/station_alert{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"rYI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"rYJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"rYU" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"rZt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"rZB" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"rZP" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"rZZ" = ( +/obj/structure/sign/poster{ + desc = "It says DRUG."; + icon_state = "poster2"; + pixel_y = 30 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"sab" = ( +/obj/effect/landmark/start/doctor, +/obj/effect/landmark/late_join/doctor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"sai" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"saL" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + name = "Corporate Liaison's Closet" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"saX" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 8; + id = "almayerlink_med1_req" + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"sbq" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "n_engi" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"sbt" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "safe_armory"; + name = "\improper Hangar Armory Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"sbE" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"sbJ" = ( +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/powered/agent) +"sbP" = ( +/obj/effect/landmark/start/police, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cryo) +"sbZ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"sco" = ( +/obj/structure/sign/prop1{ + layer = 3.1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"sct" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"scu" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"scy" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"scz" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer5" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"scE" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"scH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"scN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"scX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"sdd" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"sdf" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"sdn" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/almayer/sterile, +/area/almayer/medical/upper_medical) +"sdu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) +"sdv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"sdC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"sdO" = ( +/obj/structure/ladder{ + height = 1; + id = "med1" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"seL" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"sfz" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) +"sfA" = ( +/obj/structure/machinery/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"sfT" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/port) +"sfV" = ( +/obj/structure/machinery/alarm/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"sgc" = ( +/obj/structure/closet/crate/freezer/cooler{ + pixel_x = -7 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 10; + pixel_y = -4 + }, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/structure/sign/safety/storage{ + pixel_x = -24 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"sgi" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/processing) +"sgj" = ( +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/roller/medevac, +/obj/item/roller/medevac, +/obj/item/roller/medevac, +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"sgm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 + }, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/item/trash/USCMtray{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_x = -7; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"sgs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"sgD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"sgE" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 3"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"sgH" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"sgL" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/port_midship_hallway) +"sgR" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"sgU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"she" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"shh" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"shp" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/obj/structure/machinery/flasher{ + id = "briefing_flash"; + range = 12 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/living/briefing) +"shs" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south2) +"sht" = ( +/turf/open/floor/almayer, +/area/almayer/living/pilotbunks) +"shC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) +"shL" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"sin" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/hallways/upper/midship_hallway) +"sir" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "panicroomback"; + name = "\improper Safe Room Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"sit" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"siy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/lower/port_midship_hallway) +"siC" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/lower/port_fore_hallway) +"siN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Nitrogen Control Console" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"siT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"siW" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"sje" = ( +/turf/open/floor/almayer/empty/vehicle_bay, +/area/almayer/hallways/lower/vehiclehangar) +"sjj" = ( +/obj/structure/machinery/keycard_auth{ + pixel_x = -7; + pixel_y = 25 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 26 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) +"sjr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D1"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"sjz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"sjG" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"sjM" = ( +/obj/effect/landmark/start/reporter, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"skj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"skl" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"skn" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/sea_office) +"skC" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 + }, +/obj/structure/machinery/meter, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"skF" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"skL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"skR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/closet/secure_closet/cmdcabinet{ + desc = "A bulletproof cabinet containing communications equipment."; + name = "communications cabinet"; + pixel_y = 24; + req_access = null; + req_one_access_txt = "207;203" + }, +/obj/item/device/radio, +/obj/item/device/radio/listening_bug/radio_linked/wy, +/obj/item/device/radio/listening_bug/radio_linked/wy{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"sld" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"slf" = ( +/obj/structure/machinery/brig_cell/cell_6{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"slo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"slv" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"slF" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"smi" = ( +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"smw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"smA" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_x = -16; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"smH" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"smU" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"smW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"snb" = ( +/obj/structure/ladder{ + height = 1; + id = "cicladder3" + }, +/turf/open/floor/plating/almayer, +/area/almayer/living/briefing) +"sni" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/command/cic) +"snt" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"snw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"snx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"snE" = ( +/obj/structure/machinery/cryopod/right, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"snI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = -17 + }, +/obj/structure/transmitter/rotary/no_dnd{ + name = "Delta Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Delta Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"snM" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"snN" = ( +/obj/structure/curtain/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"snR" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"snX" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 16; + pixel_y = 27 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"soq" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"sov" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/engine_core) +"soA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"soK" = ( +/obj/item/storage/firstaid/fire/empty, +/obj/item/storage/firstaid/o2/empty, +/obj/item/storage/firstaid/rad/empty, +/obj/item/storage/firstaid/toxin/empty, +/obj/structure/surface/rack, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"soP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"soT" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"soX" = ( +/obj/structure/window/reinforced/toughened, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"spd" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"spF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"spH" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"spK" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"spS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"spT" = ( +/obj/structure/closet/crate{ + desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; + name = "special operations crate" + }, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"sqa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sqf" = ( +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/upper_medical) +"sqg" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower) +"sql" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"sqo" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"sqW" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/tomatoseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"srh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"srl" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"srO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) +"srR" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"srT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Evidence Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/evidence_storage) +"ssk" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"ssU" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"ssW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"ssX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"ssZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"sta" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"str" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/obj/structure/catwalk{ + health = null + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"stu" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"stO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/brig, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/perma) +"stP" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"stR" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sub" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/vehiclehangar) +"suy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"suH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"suJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"suU" = ( +/obj/structure/stairs, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"suY" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"svf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"svl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"svq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"svt" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/lower/port_midship_hallway) +"svw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"svF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/effect/landmark/yautja_teleport, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"swn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"swt" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/living/grunt_rnr) +"swx" = ( +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"swE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/grunt_rnr) +"swG" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"swH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -12; + pixel_y = 28 + }, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + pixel_x = -17 + }, +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"swM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"swN" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/storage/hazardvest/blue, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"sxD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Officer's Bunk" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"sxE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) +"sxS" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"sxW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"syg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_n"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"syj" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"syp" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/maint/upper/u_m_p) +"syH" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"syO" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"szf" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/coatrack{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"szE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"szG" = ( +/obj/item/stack/sheet/glass/reinforced{ + amount = 50 + }, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"szM" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"szO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"szU" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/numbertwobunks) +"sAc" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"sAw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"sAz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) +"sAC" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/ce_room) +"sAD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"sAS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"sBg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"sBL" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"sBQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "briglobby"; + name = "\improper Brig Cells" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"sBY" = ( +/obj/item/tool/wet_sign, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"sCg" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sCA" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"sCD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"sCI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"sCQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"sCT" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"sCV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"sCW" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"sDu" = ( +/obj/item/clothing/under/marine/dress, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"sDx" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"sDA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"sDD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"sDM" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/squads/delta) +"sEd" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"sEg" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"sEi" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/grunt_rnr) +"sEp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"sEq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"sEt" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/hallways/hangar) +"sEu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"sEz" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/starboard_hallway) +"sEK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"sEM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -12; + pixel_y = -28 + }, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + layer = 3.3; + pixel_x = -17 + }, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"sER" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"sEZ" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 26 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/armory) +"sFf" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/starboard_missiles) +"sFu" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"sGh" = ( +/turf/open/floor/almayer/uscm/directional, +/area/almayer/command/lifeboat) +"sGw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_s) +"sGK" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"sGL" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"sGQ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"sGU" = ( +/obj/structure/mirror, +/turf/closed/wall/almayer, +/area/almayer/living/gym) +"sGZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/airoom) +"sHe" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"sHm" = ( +/obj/structure/disposalpipe/up/almayer{ + id = "almayerlink_OT_req" + }, +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"sHo" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 8; + name = "Mixed Air Injector" + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"sHp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/small, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"sHx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"sHC" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"sHI" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"sHM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"sHY" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"sIr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"sIu" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"sIA" = ( +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/engineering/port_atmos) +"sII" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES ReceptStairs2"; + name = "\improper ARES Reception Stairway Shutters"; + plane = -7 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"sIR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"sIU" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sJa" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = -26 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"sJC" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"sJI" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/aluminum{ + amount = 20 + }, +/obj/item/stack/sheet/copper{ + amount = 20; + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/gold{ + amount = 3; + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/silver{ + amount = 5; + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"sJY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/living/port_emb) +"sKa" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) +"sKf" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"sKI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"sKM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"sKY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"sLk" = ( +/obj/structure/ladder{ + height = 2; + id = "cicladder4" + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) +"sLo" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"sLx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"sLA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"sLX" = ( +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"sMu" = ( +/obj/item/trash/uscm_mre, +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"sMM" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"sNb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"sNz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"sNI" = ( +/obj/structure/bed/chair/comfy/delta, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"sNL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sNO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 2 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"sNP" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"sNR" = ( +/turf/closed/wall/almayer/research/containment/wall/corner, +/area/almayer/medical/containment/cell/cl) +"sOi" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"sOr" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"sOt" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"sOv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/machinery/door_control/cl/quarter/windows{ + pixel_x = 11; + pixel_y = 37 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"sOw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"sOx" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"sOy" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"sOD" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"sOK" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 2; + id = "ares_vault_out"; + name = "wycomms" + }, +/turf/closed/wall/almayer/outer, +/area/almayer/command/airoom) +"sOL" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/maint/upper/mess) +"sOZ" = ( +/obj/structure/sign/safety/ammunition{ + pixel_y = 32 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"sPa" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil, +/obj/item/attachable/flashlight/grip, +/obj/item/ammo_box/magazine/l42a{ + pixel_y = 14 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"sPb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"sPc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"sPF" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"sPJ" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"sPY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"sQF" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/port_missiles) +"sQO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"sRZ" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/fore_hallway) +"sSa" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 2; + no_panel = 1; + not_weldable = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"sSc" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"sSj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"sSl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"sSC" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/squads/delta) +"sSG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = -17 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/transmitter/rotary/no_dnd{ + name = "Charlie Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Charlie Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"sTd" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"sTm" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"sTo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"sTw" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"sTU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"sTV" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north{ + cell_type = /obj/item/cell/hyper + }, +/turf/open/floor/plating, +/area/almayer/command/airoom) +"sUg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/shipboard/brig/cic_hallway) +"sUi" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"sUj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/delta) +"sUk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"sUs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"sUE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"sUO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"sUS" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"sVc" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/orangeseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"sVv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) +"sVT" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"sVV" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/starboard) +"sWb" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"sWp" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"sWw" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"sWC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"sWW" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 3"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"sXd" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"sXq" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"sXt" = ( +/obj/structure/machinery/cm_vending/clothing/tl/alpha{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"sXw" = ( +/obj/effect/landmark/start/marine/engineer/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"sXB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sXC" = ( +/obj/structure/sign/safety/storage{ + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"sXE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Auxiliary Support Officer's Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"sXQ" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/appleseed, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/shipboard/brig/cells) +"sYh" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"sYl" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/shipboard/brig/medical) +"sYr" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"sYw" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south2) +"sYD" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = 30 + }, +/obj/structure/sign/safety/debark_lounge{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"sYP" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"sYT" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMO Shutters"; + name = "\improper CMO Office Shutters" + }, +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/almayer/medical/upper_medical) +"sYU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"sZc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"sZe" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_aft_hallway) +"sZq" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"sZs" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"sZy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"sZH" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/trash/semki{ + layer = 2; + pixel_x = -13; + pixel_y = 14 + }, +/obj/item/prop/magazine/boots/n054{ + pixel_x = 29 + }, +/obj/item/prop/magazine/dirty/torn{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/port_emb) +"sZY" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"tab" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/flashbangs{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/restraint/handcuffs, +/obj/item/storage/firstaid/regular, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tan" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"tat" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"tau" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/reinforced{ + dir = 2; + name = "\improper Brig Permanent Confinement" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "perma_lockdown_1"; + name = "\improper Perma Lockdown Shutter" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"taw" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_s) +"taH" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + id = "Containment Cell 2"; + locked = 1; + name = "\improper Containment Cell 2" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + dir = 4; + id = "Containment Cell 2"; + name = "\improper Containment Cell 2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"taV" = ( +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/starboard) +"tcd" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"tcm" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"tcO" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) +"tcS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"tcZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"tda" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"tdc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"tdi" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tdv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"tdy" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/lobby) +"tdE" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"tdH" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/item/bedsheet/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"tdI" = ( +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"tdT" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"teg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"teo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"ter" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"tez" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"teE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"teY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"teZ" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"tfb" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"tff" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/lobby) +"tfE" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"tfF" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/upper/midship_hallway) +"tfH" = ( +/obj/structure/machinery/light/containment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"tfQ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"tfZ" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -7; + pixel_y = 17 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 12; + pixel_y = 28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"tge" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"tgm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"tgy" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = null; + req_one_access_txt = "7;23;27;102" + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/lower/repair_bay) +"tgz" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"tgJ" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"tgK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"tgV" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"thc" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/engine_core) +"thq" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"thv" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"thA" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"thL" = ( +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"thN" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/hydroponics) +"thP" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"thV" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"tie" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/red/southeast, +/area/almayer/maint/upper/u_a_p) +"tig" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 14; + pixel_y = 20 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"tii" = ( +/obj/structure/machinery/firealarm{ + pixel_x = 6; + pixel_y = 28 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/obj/structure/transmitter{ + name = "CE Office Telephone"; + phone_category = "Offices"; + phone_id = "CE Office"; + pixel_x = -8; + pixel_y = 29 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) +"tim" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"tiE" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/squads/req) +"tiF" = ( +/obj/structure/machinery/keycard_auth{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/chief_mp_office) +"tiI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/syringes, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"tiK" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"tiR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "7;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/weapon_room) +"tiW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"tiX" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"tiY" = ( +/obj/structure/closet, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/newspaper, +/obj/item/clothing/gloves/yellow, +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"tjj" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"tjl" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"tjn" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"tjw" = ( +/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer, +/area/almayer/living/tankerbunks) +"tjH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/headset/almayer/mt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"tjO" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/orange, +/area/almayer/maint/hull/lower/l_m_s) +"tkd" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 + }, +/obj/structure/sign/safety/south{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"tkg" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"tkn" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"tkq" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/weapon_room) +"tkF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"tkN" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"tkR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/starboard) +"tld" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 8; + pixel_x = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"tlk" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/general_equipment) +"tln" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tlp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 4"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"tlA" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"tlM" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/maint/upper/u_a_s) +"tmg" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"tml" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"tmB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"tmE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"tmH" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera"; + pixel_y = 6 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/execution) +"tmQ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"tmV" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - SecVault"; + dir = 8 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"tmX" = ( +/obj/effect/landmark/start/professor, +/obj/effect/landmark/late_join/cmo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"tnb" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"tne" = ( +/obj/structure/machinery/door_control/cl/quarter/backdoor{ + pixel_x = -25; + pixel_y = 23 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"tni" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_three) +"tnY" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"tob" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"tof" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"tos" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"tot" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"tou" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) +"tov" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"toD" = ( +/obj/structure/largecrate/supply/generator, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + layer = 2.9; + pixel_x = -10; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"toO" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/engineering_construction, +/obj/item/folder/black_random, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"toQ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"toS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 8; + req_access_txt = "8" + }, +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" + }, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -6; + pixel_y = 10 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_medbay) +"tpa" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"tpd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"tpn" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/evidence_storage) +"tpB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"tpD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/bridgebunks) +"tpG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"tpR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tqf" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"tqu" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "ARES ReceptStairs1"; + name = "ARES Reception Shutters"; + pixel_y = -24; + req_one_access_txt = "91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"tqE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"tqO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -15 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/port) +"tqQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"tqV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/mechanical/green, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"tra" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 2; + req_one_access = null; + req_one_access_txt = "19;34;30" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"trb" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/south1) +"trh" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower) +"tru" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"trx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) +"trB" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/starboard) +"trF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/medical_science) +"trU" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen/blue/clicky{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/tool/pen/red/clicky{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/tool/pen/clicky{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/paper_bin/wy{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"tsa" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/knife/butcher, +/obj/item/clothing/suit/chef/classic, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"tsn" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"tsr" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/upper/mess) +"tst" = ( +/obj/structure/machinery/cryopod/right, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"tsy" = ( +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"tsC" = ( +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/structure/surface/table/almayer, +/obj/structure/sign/poster{ + icon_state = "poster8"; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/upper_medical) +"tsE" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"tsM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"tsX" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/lobby) +"ttd" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"tte" = ( +/obj/structure/pipes/vents/pump/no_boom{ + welded = 1 + }, +/turf/open/floor/plating, +/area/almayer/powered/agent) +"ttB" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"ttD" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"ttS" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"ttX" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_x = -7 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/item/storage/xeno_tag_case/full{ + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"tuf" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"tuk" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"tul" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/closet/secure_closet/brig/prison_uni, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"tuo" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"tup" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tuA" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/port_missiles) +"tuC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"tuJ" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/tool/shovel/spade{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"tuN" = ( +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"tuX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"tuZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/weapon_room) +"tvl" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tvt" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_f_s) +"tvw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"tvA" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"tvJ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/starboard_hallway) +"tvM" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"tvN" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"tvQ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"twp" = ( +/obj/structure/ladder{ + height = 1; + id = "AftStarboardMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_a_s) +"twB" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer2" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"twI" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/door_control{ + id = "bot_uniforms"; + name = "Uniform Vendor Lockdown"; + pixel_x = -24; + pixel_y = 18; + req_access_txt = "31" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) +"twQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"twW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/item/tool/warning_cone{ + pixel_x = -21; + pixel_y = 3 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"txf" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"txp" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"txy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"txE" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"txH" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"txO" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"txS" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"tyb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"tyC" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"tyD" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"tyK" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/shipboard/starboard_missiles) +"tzd" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/processing) +"tzw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"tzx" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lockerroom) +"tzF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"tzL" = ( +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"tzO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"tzP" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"tAb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"tAq" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -5 + }, +/obj/item/clothing/head/helmet/space/compression/uscm, +/obj/item/cell/crap{ + pixel_x = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"tAt" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown" + }, +/obj/effect/step_trigger/ares_alert/access_control, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet{ + density = 0; + desc = "An outlet for the pneumatic delivery system."; + icon_state = "delivery_outlet"; + name = "returns outlet"; + pixel_x = -7; + pixel_y = 28; + range = 0 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"tAL" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"tAN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"tAU" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"tAW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tBq" = ( +/obj/item/tool/crowbar, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"tBu" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"tBP" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"tBU" = ( +/obj/structure/platform, +/obj/structure/largecrate/random/case/double{ + layer = 2.98 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"tBY" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"tCd" = ( +/obj/item/folder/red{ + desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; + name = "folder: 28"; + pixel_x = -4; + pixel_y = 5 + }, +/obj/structure/surface/table/almayer, +/obj/item/toy/crayon{ + pixel_x = 9; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"tCx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/port) +"tCC" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Reception Interior"; + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"tCH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "brignorth"; + dir = 2; + name = "\improper Brig Armoury"; + req_access = null; + req_one_access_txt = "1;3" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"tCT" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"tDZ" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"tEd" = ( +/obj/structure/reagent_dispensers/acidtank, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"tEi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/door_control{ + dir = 1; + id = "Research Armory"; + name = "Research Armory"; + pixel_x = 27; + req_one_access_txt = "4;28" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"tEu" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"tEB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"tEC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"tEO" = ( +/obj/effect/landmark/start/marine/medic/charlie, +/obj/effect/landmark/late_join/charlie, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"tFe" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES StairsUpper"; + name = "\improper ARES Core Shutters"; + plane = -7 + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"tFJ" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/red/north, +/area/almayer/maint/upper/u_a_p) +"tFO" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer/red/north, +/area/almayer/maint/upper/u_a_p) +"tFS" = ( +/obj/structure/machinery/computer/supplycomp, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"tFW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"tGd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_20" + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"tGh" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) +"tGi" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"tGj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"tGG" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"tGH" = ( +/obj/structure/sign/safety/restrictedarea, +/obj/structure/sign/safety/security{ + pixel_x = 15 + }, +/turf/closed/wall/almayer, +/area/almayer/shipboard/panic) +"tGS" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"tGT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/poster/art{ + pixel_y = 32 + }, +/obj/structure/machinery/photocopier/wyphotocopier, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"tHk" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"tHr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/item/pizzabox/mushroom{ + pixel_y = 11 + }, +/obj/item/poster, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/shipboard/brig/cic_hallway) +"tHu" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/airoom) +"tHv" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/living/briefing) +"tHF" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"tHQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"tHS" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/cells) +"tId" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/aicore/no_build/ai_cargo, +/area/almayer/command/airoom) +"tIe" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/engine_core) +"tIl" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"tIp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dorms" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"tIu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"tIF" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"tIK" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 4 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 2 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"tIN" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"tIQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"tIS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"tIX" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"tJi" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"tJm" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"tJq" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"tJz" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"tJR" = ( +/obj/structure/machinery/vending/cigarette, +/obj/structure/sign/safety/medical{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"tJV" = ( +/obj/structure/machinery/vending/hydronutrients, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"tKr" = ( +/obj/structure/machinery/cryopod/right{ + dir = 2 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"tLa" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -2; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Armory" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "firearm_storage_armory"; + name = "\improper Armory Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/armory) +"tLc" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/plants{ + pixel_x = -3 + }, +/obj/item/storage/bag/plants{ + pixel_x = 3 + }, +/obj/item/storage/bag/plants{ + pixel_y = -3 + }, +/obj/item/tool/scythe, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"tLZ" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tMc" = ( +/obj/structure/machinery/chem_master/industry_mixer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"tMi" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"tMU" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"tMW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tNw" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"tNB" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"tNP" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"tNR" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"tNY" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"tOr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/hydroponics) +"tOu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"tOC" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"tON" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"tOW" = ( +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/grunt_rnr) +"tPc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"tPj" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + access_modified = 1; + name = "\improper Requisition's Office"; + req_one_access = null; + req_one_access_txt = "1;26" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"tPm" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"tPI" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"tQd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"tQe" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tQi" = ( +/obj/effect/landmark/start/warrant, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cryo) +"tQL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"tQV" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/south1) +"tRs" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/frame/light_fixture, +/obj/item/frame/light_fixture, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"tRD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) +"tSm" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool{ + pixel_x = 6; + pixel_y = -16 + }, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"tSp" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"tSB" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/living/briefing) +"tSF" = ( +/obj/structure/bed/chair/comfy/delta, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tSX" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/l42a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"tTk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"tTp" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"tTu" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"tTC" = ( +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"tTD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/uscm_mre, +/obj/item/storage/box/uscm_mre, +/obj/item/book/manual/chef_recipes, +/obj/structure/sign/safety/coffee{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"tTG" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"tTO" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/starboard_hallway) +"tTZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"tUh" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"tUo" = ( +/obj/item/clipboard, +/obj/structure/surface/table/reinforced/black, +/obj/item/tool/pen, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"tUx" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"tUK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"tUN" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "35" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"tUS" = ( +/obj/item/toy/beach_ball/holoball, +/obj/structure/holohoop{ + density = 0; + pixel_y = 29 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"tVh" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"tVn" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"tVq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) +"tVx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"tVZ" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) +"tWd" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"tWi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"tWl" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Disposals" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"tWp" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"tWF" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) +"tWL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"tWY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMO Shutters"; + name = "\improper CMO Office Shutters" + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + name = "\improper CMO's Office"; + req_one_access = null; + req_one_access_txt = "1;5" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"tXa" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_y = 13 + }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"tXb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"tXc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"tXi" = ( +/obj/structure/machinery/conveyor_switch{ + id = "gym_2"; + name = "treadmill switch" + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"tXj" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/item/stack/sheet/mineral/plastic/small_stack, +/obj/item/frame/rack, +/obj/item/frame/rack, +/obj/item/frame/rack, +/obj/item/frame/rack, +/obj/item/frame/rack, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"tXn" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"tXo" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tXM" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"tXT" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 + }, +/obj/item/bedsheet/blue{ + pixel_y = 13 + }, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"tYi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"tYr" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"tYw" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_x = 20 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 28 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"tYM" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"tYV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"tYX" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"tZc" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"tZg" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/port) +"tZZ" = ( +/obj/structure/machinery/cryopod, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"uac" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"uag" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"uah" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"ual" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"uay" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"uaA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"uaG" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"uaI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/processor{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"uaU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1; + pixel_y = 11 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"uaV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"ubv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"ubA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ubI" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/tool/stamp{ + name = "Corporate Liaison's stamp"; + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"ubQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"ucp" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/starboard) +"ucw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"ucy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) +"ucz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 15 + }, +/obj/structure/machinery/light, +/obj/structure/transmitter/rotary/no_dnd{ + name = "Bravo Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Bravo Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"udf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"udi" = ( +/turf/open/floor/almayer/red, +/area/almayer/living/briefing) +"udr" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"udv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"udx" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"udG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"udK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/safety/coffee{ + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"udR" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"udZ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"ued" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"uek" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/magazine/boots/n117{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"uew" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"uey" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lockerroom) +"uez" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"ueG" = ( +/obj/item/bedsheet/orange, +/obj/structure/bed{ + icon_state = "psychbed" + }, +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + density = 0; + pixel_y = 30; + req_access = list(); + req_access_txt = "6" + }, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"ueJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"ueY" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"ueZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"ufh" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"ufx" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"ufJ" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"ufL" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"ugj" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/hull/lower/l_m_s) +"ugo" = ( +/obj/item/tool/weldpack{ + pixel_y = 15 + }, +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/welding, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"ugu" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"ugw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/starboard_hallway) +"ugJ" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -1; + pixel_y = 9 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"ugZ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"uhh" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"uhl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/almayer/living/offices) +"uhq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uhA" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"uhE" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"uhM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"uhP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"uig" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"uiC" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower/engine_core) +"uiG" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"uiK" = ( +/obj/item/ammo_box/magazine/misc/mre, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"uiR" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/engineering/upper_engineering/starboard) +"uiT" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"uiZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"ujn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"ujz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"ujV" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"uky" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) +"ukC" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"ukP" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"ukV" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"uli" = ( +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"ulo" = ( +/obj/structure/toilet{ + dir = 8; + layer = 2.9; + pixel_y = 8 + }, +/obj/structure/window{ + layer = 2.95; + pixel_y = -2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/commandbunks) +"ulp" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"uly" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"ulH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"ulZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"umh" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"umk" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"umm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light/small, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"umy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"umI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"umS" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/pilotbunks) +"umW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/vending/cigarette/free{ + pixel_y = 16 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"unh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/obj/item/tool/screwdriver, +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"uns" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/carrotseed, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/shipboard/brig/cells) +"unx" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"unQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"unT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/crowbar, +/obj/item/clothing/head/headset{ + pixel_y = -7 + }, +/obj/item/storage/bible, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"unZ" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"uoi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"uoj" = ( +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"uoA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/starboard_point_defense) +"uoH" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"uoO" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"upM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"upO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"upR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 7; + pixel_y = 25 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"upS" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"upW" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"uqd" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 1"; + name = "Containment Lockdown"; + pixel_x = -7; + pixel_y = 1; + req_one_access_txt = "19;28" + }, +/obj/structure/machinery/door_display/research_cell{ + id = "Containment Cell 1"; + name = "Cell 1 Control"; + pixel_x = 5; + pixel_y = 2 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"uqg" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"uqh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"uqo" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"uqs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/m41a{ + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"uqA" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/squads/bravo) +"uqI" = ( +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"urk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/hallways/lower/starboard_umbilical) +"ury" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"urM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"urN" = ( +/obj/effect/landmark/start/marine/leader/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"usm" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"usq" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/panic) +"usu" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"usy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"usX" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"usZ" = ( +/obj/structure/pipes/unary/outlet_injector, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower) +"utn" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"uto" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"utp" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"utK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"utX" = ( +/turf/closed/wall/almayer/research/containment/wall/connect_e2{ + icon_state = "containment_wall_connect_e" + }, +/area/almayer/medical/containment/cell) +"utZ" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/processing) +"uuj" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 + }, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_x = -8; + pixel_y = 22 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"uul" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 14; + pixel_y = -25 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"uun" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"uuu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + layer = 2.7; + pixel_y = 2 + }, +/obj/structure/largecrate/random/case, +/obj/effect/spawner/prop_gun/m41aMK1{ + pixel_y = 7 + }, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -10; + pixel_y = 1 + }, +/obj/item/tool/screwdriver{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"uux" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock SU-1"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"uuD" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"uuI" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"uuR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"uuT" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"uvh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"uvp" = ( +/obj/structure/largecrate/supply, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"uvt" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"uvu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/squads/bravo) +"uvP" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"uvU" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item{ + pixel_x = 5 + }, +/obj/item/facepaint/black{ + pixel_x = -10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"uvY" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"uws" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/port_missiles) +"uwt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"uwv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room/notunnel) +"uwN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"uwZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"uxa" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"uxb" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"uxl" = ( +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"uxp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"uxC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"uxO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"uxX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"uyd" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"uys" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/squads/req) +"uyC" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/south2) +"uyH" = ( +/turf/closed/wall/almayer/research/containment/wall/divide, +/area/almayer/medical/containment/cell) +"uyQ" = ( +/obj/structure/largecrate/random/case{ + layer = 2.98 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"uzv" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"uzy" = ( +/obj/item/reagent_container/glass/bucket, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"uzE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/ce_room) +"uAb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"uAj" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"uAl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"uAC" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/emerald, +/area/almayer/living/port_emb) +"uAK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/lower/engine_core) +"uAL" = ( +/obj/structure/bed/chair/wood/normal, +/obj/item/bedsheet/brown, +/obj/item/toy/plush/farwa, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"uAP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) +"uAW" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"uBi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"uBj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uBx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"uBG" = ( +/obj/item/tool/weldingtool, +/obj/structure/surface/rack, +/turf/open/floor/almayer/red, +/area/almayer/maint/upper/u_a_p) +"uBM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/combat_correspondent) +"uBN" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"uBO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/item/storage/toolbox/emergency{ + pixel_x = -3 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"uCh" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/grunt_rnr) +"uCt" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uCw" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"uCM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"uCR" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"uCW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"uDg" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/s_bow) +"uDn" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge2" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"uDA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"uDW" = ( +/obj/structure/machinery/cm_vending/clothing/tl/delta{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"uEO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"uES" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/recharge_station{ + layer = 2.9 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) +"uFd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"uFg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"uFo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 8; + req_access_txt = "8" + }, +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"uFp" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"uFq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"uFH" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"uGc" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = 32 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"uGf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"uGN" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/general_equipment) +"uGQ" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"uGU" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"uHk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"uHr" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south2) +"uHT" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"uIv" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"uIA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"uII" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"uIJ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"uIT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha_bravo_shared) +"uJb" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"uJk" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer4" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"uJM" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"uJU" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"uKd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"uKe" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_2"; + name = "treadmill" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"uKl" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"uKH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"uKV" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/food_storage{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"uLn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_point_defense) +"uLE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"uLG" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." + }, +/obj/item/reagent_container/food/snacks/mre_pack/xmas2, +/obj/item/reagent_container/food/snacks/mre_pack/xmas1, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"uMc" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/starboard) +"uMf" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"uMj" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/port_missiles) +"uMk" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 1 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"uMl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha) +"uMn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/emerald, +/area/almayer/living/port_emb) +"uMO" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = 24; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"uMS" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) +"uNf" = ( +/obj/structure/sign/safety/conference_room{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"uNg" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"uNp" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"uNq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"uNz" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"uNB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"uNM" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/living/briefing) +"uNN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/blue, +/area/almayer/living/basketball) +"uNQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"uNV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"uOh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"uOi" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/south2) +"uOJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"uPr" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/basketball) +"uPE" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"uPI" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/transmitter/rotary{ + name = "AI Reception Telephone"; + phone_category = "ARES"; + phone_color = "blue"; + phone_id = "AI Reception" + }, +/turf/open/floor/almayer/no_build/ai_floors, +/area/almayer/command/airoom) +"uPP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"uPQ" = ( +/obj/item/weapon/dart/green, +/obj/structure/dartboard{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"uPW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"uPX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"uQm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"uQo" = ( +/obj/structure/machinery/disposal, +/obj/item/reagent_container/food/drinks/cans/beer{ + layer = 3.3; + pixel_x = -4; + pixel_y = 15 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"uRo" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"uRs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/lifeboat) +"uRt" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"uRD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"uRM" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/red{ + layer = 3.2 + }, +/obj/item/bedsheet/medical{ + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/almayer/living/port_emb) +"uRR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/s_bow) +"uRY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"uSk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"uSH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = 12; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"uSS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"uSU" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"uSW" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"uTk" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"uTl" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"uTs" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/p_bow) +"uTv" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"uTE" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"uTN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"uTP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"uTU" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"uTV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"uTZ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"uUe" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"uUf" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 9 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -9; + pixel_y = -4 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_y = -2 + }, +/obj/item/reagent_container/pill/happy, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/hallways/lower/repair_bay) +"uUi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"uUo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"uUt" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"uUu" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/perma) +"uUz" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + dir = 4; + id = "engidorm"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"uUB" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -12; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -14 + }, +/obj/structure/machinery/aicore_lockdown{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"uVc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"uVd" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"uVh" = ( +/obj/structure/filingcabinet/seeds, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"uVp" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"uVv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"uVA" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"uVD" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"uVV" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"uVX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"uVY" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"uWc" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"uWk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/hallways/upper/midship_hallway) +"uWm" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"uWV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"uWY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"uXf" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + id = "medcryobeds"; + id_tag = "medcryobeds"; + name = "Medical Hypersleep Access"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"uXj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"uXk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"uXm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"uXu" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Interrogation Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Interrogation" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/interrogation) +"uXy" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_2"; + name = "range shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"uXE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/midship_hallway) +"uXL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) +"uXU" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"uYa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"uYd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 12 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"uYg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"uYn" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"uYM" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"uZm" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"uZo" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/living/port_emb) +"uZF" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"uZH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"uZV" = ( +/obj/structure/reagent_dispensers/fueltank/gas/methane{ + anchored = 1 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"uZZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Basketball Court" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"vaq" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"vaQ" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "Medical Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"vaS" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"vaV" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"vaZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"vbf" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vbo" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigcells"; + name = "\improper Brig Prisoner Yard" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"vbB" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"vbI" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"vbM" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) +"vbR" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/squads/req) +"vbS" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"vbU" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"vbV" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"vbZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"vcm" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"vcq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"vcu" = ( +/obj/effect/landmark/start/engineering, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"vcE" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"vcG" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"vcI" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"vdl" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 + }, +/obj/structure/bed/chair/bolted, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/brig/execution) +"vdL" = ( +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/bridge{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"vdM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"vdO" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 + }, +/obj/structure/machinery/cryo_cell{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"vdR" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south2) +"ven" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"veq" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"veu" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"vfa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"vfo" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PL-2"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"vfx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"vfP" = ( +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"vfS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"vgi" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/general_equipment) +"vgn" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vgv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"vgw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/lower) +"vgx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/research, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/hydroponics) +"vgB" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/autoinjectors{ + pixel_x = -6; + pixel_y = -1 + }, +/obj/item/device/mass_spectrometer{ + pixel_x = 8 + }, +/obj/item/storage/box/pillbottles{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/reagent_container/glass/beaker/cryoxadone{ + pixel_x = 8; + pixel_y = 10 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"vgD" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"vgO" = ( +/turf/closed/wall/almayer/research/containment/wall/east, +/area/almayer/medical/containment/cell) +"vhb" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/maint/upper/u_a_p) +"vhe" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/folder/white, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"vhw" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"vhA" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"vhR" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) +"vhX" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/medical/lower_medical_medbay) +"vif" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/chapel) +"vih" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/candle_box, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"vil" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"vit" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"viu" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"viv" = ( +/obj/structure/bed/sofa/south/white/right{ + pixel_y = 16 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/maint/upper/u_m_p) +"viB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/almayer/command/airoom) +"viJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) +"viN" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/securestorage) +"viO" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/living/briefing) +"viS" = ( +/obj/effect/landmark/start/marine/engineer/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"vjb" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"vjg" = ( +/obj/structure/prop/almayer/missile_tube{ + icon_state = "missiletubesouth" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"vjv" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"vjB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"vjC" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; + name = "dip cup"; + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"vjG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/port_umbilical) +"vjK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"vjS" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) +"vjT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/port_umbilical) +"vjW" = ( +/obj/structure/reagent_dispensers/watertank{ + anchored = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"vka" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"vkb" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/door_control{ + id = "officers_mess"; + name = "Privacy Shutters"; + pixel_y = -19 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"vkp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"vky" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/p_bow) +"vkI" = ( +/obj/item/coin/silver{ + desc = "A small coin, bearing the falling falcons insignia."; + name = "falling falcons challenge coin" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"vkM" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Brig Equipment" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/general_equipment) +"vkO" = ( +/obj/structure/closet, +/obj/item/stack/sheet/glass/large_stack, +/obj/item/device/lightreplacer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/stack/rods{ + amount = 40 + }, +/obj/item/tool/weldingtool, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"vkR" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"vlk" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) +"vln" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"vly" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"vlM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"vlO" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/yellow{ + layer = 3.2 + }, +/obj/item/bedsheet/yellow{ + pixel_y = 13 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 + }, +/obj/item/toy/plush/barricade, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"vlX" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"vme" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"vml" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"vmq" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_m_s) +"vmE" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/lower) +"vmJ" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"vmN" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"vmP" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vmW" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/port_missiles) +"vno" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) +"vnD" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"vnM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"vnY" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"voj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"vop" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/hallways/lower/repair_bay) +"vor" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/broken_arcade, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"vou" = ( +/obj/structure/surface/rack{ + desc = "A bunch of metal shelves stacked on top of eachother. Excellent for storage purposes, less so as cover. One of the shelf legs is damaged, resulting in the rack being propped up by what appears to be circuit boards." + }, +/obj/structure/machinery/light/small{ + dir = 4; + icon_state = "bulb-burned"; + status = 3 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag" + }, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag" + }, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag" + }, +/obj/item/prop{ + desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged."; + icon = 'icons/obj/items/circuitboards.dmi'; + icon_state = "id_mod"; + layer = 2.78; + name = "circuit board"; + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/prop{ + desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged."; + icon = 'icons/obj/items/circuitboards.dmi'; + icon_state = "id_mod"; + layer = 2.79; + name = "circuit board"; + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"voV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_n"; + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment) +"vpe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"vpf" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"vpn" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"vpv" = ( +/obj/structure/machinery/shower, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/tinted{ + dir = 2 + }, +/obj/item/clothing/mask/cigarette/weed, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"vpH" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + layer = 3.3 + }, +/obj/item/desk_bell/ares{ + anchored = 1; + pixel_x = -5; + pixel_y = 14 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"vpI" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"vpT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"vpV" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/command/cic) +"vpW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vqc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Holding Cell" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"vqz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/lower/port_fore_hallway) +"vqC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"vqD" = ( +/obj/item/trash/candle, +/obj/item/tool/match/paper, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"vqI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera_film{ + layer = 3.03; + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/stack/sheet/cardboard/small_stack{ + layer = 3.02; + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"vqK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"vqL" = ( +/obj/item/clothing/under/shorts/black, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"vqW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"vqZ" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/sign/safety/biolab{ + pixel_x = -9; + pixel_y = 32 + }, +/obj/structure/sign/safety/biohazard{ + pixel_x = 25; + pixel_y = 32 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80; + pixel_y = 6 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"vra" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/charlie_delta_shared) +"vrx" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"vrI" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -18 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"vrJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Liasion's Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"vrM" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "3" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"vrR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Deck Waste Tank Control" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"vrW" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/briefing) +"vrZ" = ( +/obj/structure/largecrate/machine/bodyscanner, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"vsd" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"vse" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"vsf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_y = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vsh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"vsi" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"vsz" = ( +/obj/structure/machinery/camera/autoname/almayer/brig{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"vsF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vta" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"vti" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"vtm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"vtr" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"vtx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"vtG" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"vtJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"vub" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/sea_office) +"vug" = ( +/obj/effect/landmark/start/marine/engineer/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"vuA" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/briefing) +"vuD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"vuF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + access_modified = 1; + dir = 1; + name = "\improper Kitchen Hydroponics"; + req_one_access_txt = "30;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"vuG" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"vuL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"vuV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"vuZ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/weapon_room) +"vvp" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/sign/safety/intercom{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/terminal{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"vvw" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"vvy" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = 32 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"vvH" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"vvX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"vvY" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/surface/rack{ + density = 0; + pixel_x = 26 + }, +/obj/structure/bedsheetbin{ + pixel_x = 26; + pixel_y = 5 + }, +/obj/item/tool/soap/syndie, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"vwj" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"vwC" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"vwF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"vwI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"vwT" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/midship_hallway) +"vwU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"vwV" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/command/cic) +"vwY" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"vxb" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"vxu" = ( +/obj/structure/machinery/meter, +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"vxG" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/chief_mp_office) +"vxK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"vxM" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/cryo) +"vxX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/wrench{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/item/storage/bible{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/storage/bible{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/grape{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"vxY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vyg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vyh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"vyi" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/processing) +"vyp" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"vyr" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"vyu" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"vyB" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"vyE" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build/ai_arrow/east, +/area/almayer/command/airoom) +"vyH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"vyI" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"vzi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vzj" = ( +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + name = "\improper Chief MP's Bedroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) +"vzk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"vzp" = ( +/turf/open/floor/almayer/research/containment/entrance, +/area/almayer/medical/containment/cell/cl) +"vzy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/starboard_hallway) +"vzz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Hydroponics Garden" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"vzB" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"vzK" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/ce_room) +"vzP" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/cups, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/fork, +/obj/item/tool/kitchen/utensil/fork, +/obj/item/tool/kitchen/utensil/fork, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Shutters" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"vAg" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 + }, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"vAq" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"vAx" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"vAz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"vAE" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"vAG" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"vAH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/port) +"vAI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"vAQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagent_analyzer{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"vBp" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/structure/window/reinforced/ultra{ + dir = 1 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/living/briefing) +"vBC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"vBJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/device/whistle, +/obj/item/device/megaphone, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/chief_mp_office) +"vBU" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"vCg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vCk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/hydroponics) +"vCt" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"vCv" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/midship_hallway) +"vCx" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"vCy" = ( +/obj/structure/machinery/camera/autoname/almayer/brig{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/shipboard/brig/cells) +"vCE" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"vCH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Primary Processors"; + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"vCO" = ( +/obj/effect/landmark/start/bridge, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/bridgebunks) +"vDa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/hydroponics) +"vDd" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_1"; + name = "range shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"vDh" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"vDo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"vDz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"vDN" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"vEf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"vEj" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/effect/landmark/start/synthetic, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/synthcloset) +"vEr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"vEv" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"vEx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 2; + name = "Morgue Waiting Room"; + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"vEG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"vEH" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"vEI" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"vER" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"vEV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"vFn" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"vFp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"vFv" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"vFw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"vFH" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"vFI" = ( +/obj/structure/largecrate/random/secure, +/obj/item/weapon/baseballbat/metal{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"vGn" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/interrogation) +"vGA" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"vGG" = ( +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"vGI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"vGQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"vHa" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/ares_console{ + pixel_x = 9 + }, +/obj/structure/machinery/computer/view_objectives{ + pixel_x = -9 + }, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"vHh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/tool/warning_cone{ + layer = 3.6; + pixel_x = -16; + pixel_y = -9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"vHn" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_s) +"vHp" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/prop/magazine/boots/n160{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/structure/transmitter/rotary{ + name = "Flight Deck Telephone"; + phone_category = "Almayer"; + phone_id = "Flight Deck"; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"vHq" = ( +/obj/item/device/assembly/mousetrap/armed, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"vHt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "CIC Lockdown"; + name = "CIC Lockdown"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "1" + }, +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + pixel_x = -7; + pixel_y = 2; + req_access_txt = "1" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4; + icon_state = "exposed01-supply" + }, +/obj/structure/machinery/door_control{ + id = "bot_armory"; + name = "Armory Lockdown"; + pixel_x = -7; + pixel_y = -5; + req_one_access_txt = "1;4" + }, +/obj/structure/transmitter/rotary/no_dnd{ + name = "Combat Information Center Telephone"; + phone_category = "Command"; + phone_id = "Combat Information Center"; + pixel_x = 5; + pixel_y = 4 + }, +/obj/structure/machinery/door/window/westright{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"vHO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"vHP" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"vHW" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"vIf" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"vIg" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_s) +"vIo" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_f_p) +"vIu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"vIZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"vJc" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"vJg" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) +"vJo" = ( +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) +"vJR" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_stern) +"vJV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + pixel_y = -29 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"vJZ" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"vKb" = ( +/obj/structure/machinery/smartfridge/chemistry{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/containment) +"vKe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vKr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigcells"; + dir = 1; + name = "\improper Brig Prison Yard And Offices" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"vKB" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"vKI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"vLg" = ( +/obj/item/trash/uscm_mre, +/obj/structure/bed/chair/comfy/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vLj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"vLp" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/lower/repair_bay) +"vLz" = ( +/obj/structure/machinery/door_control{ + id = "ARES Mainframe Right"; + name = "ARES Mainframe Lockdown"; + pixel_x = -24; + pixel_y = -24; + req_one_access_txt = "200;91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"vLA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"vMb" = ( +/obj/item/stool{ + pixel_x = -15; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"vMo" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/operating_room_four) +"vMr" = ( +/obj/effect/landmark/start/otech, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"vMt" = ( +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"vMA" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"vME" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"vMG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/iv_drip, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"vMI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"vMJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Brig Breakroom" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/mp_bunks) +"vMM" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vMU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/hallways/lower/port_fore_hallway) +"vNo" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"vNp" = ( +/obj/structure/sign/safety/three{ + pixel_x = -17 + }, +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 3"; + name = "Cell 3" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"vND" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"vNT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"vNW" = ( +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/command/cic) +"vOh" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"vOu" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/energy/taser, +/obj/item/weapon/gun/energy/taser{ + pixel_y = 8 + }, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"vOw" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"vOy" = ( +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/medical_science) +"vOG" = ( +/obj/structure/largecrate/supply/ammo/m41a/half, +/obj/structure/largecrate/supply/ammo/pistol/half{ + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"vOM" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"vON" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"vOP" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"vOV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"vOY" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "2;7" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) +"vOZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"vPf" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "Perma 2"; + name = "\improper cell shutter" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/perma) +"vPm" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"vPv" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"vPw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/ladder{ + height = 1; + id = "cicladder4" + }, +/turf/open/floor/plating/almayer, +/area/almayer/living/briefing) +"vPK" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/maint{ + pixel_y = -26 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"vPM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vPR" = ( +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/lower/workshop/hangar) +"vPT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"vPW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"vQe" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/obj/structure/catwalk{ + health = null + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"vQf" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/securestorage) +"vQq" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"vQN" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"vQR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"vRa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = -25 + }, +/obj/structure/sign/prop3{ + pixel_x = -32 + }, +/obj/structure/machinery/faxmachine/uscm{ + department = "SEA" + }, +/turf/open/floor/strata/faux_metal, +/area/almayer/shipboard/sea_office) +"vRb" = ( +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/command/cic) +"vRu" = ( +/obj/structure/surface/rack{ + layer = 2.5 + }, +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/storage/box/matches, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"vRA" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"vRR" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"vRX" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/device/megaphone, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/upper_medical) +"vSl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"vSn" = ( +/obj/structure/barricade/handrail/medical{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"vSp" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"vSr" = ( +/obj/structure/largecrate/random/case/double, +/obj/item/tool/wet_sign{ + pixel_y = 18 + }, +/obj/item/trash/cigbutt/ucigbutt{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"vSE" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/port) +"vSG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"vSK" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"vSN" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"vSW" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"vTu" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) +"vTv" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/airlock, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." + }, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"vTE" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"vTM" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"vTS" = ( +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"vTT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"vTX" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"vUb" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"vUe" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"vUh" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"vUn" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"vUI" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"vUJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"vUP" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/cic_hallway) +"vVb" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"vVd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"vVk" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"vVs" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"vVu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"vVw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"vVy" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"vVI" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"vVW" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"vVZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"vWc" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/normandy{ + layer = 3.5 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"vWs" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"vWt" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 5 + }, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 5 + }, +/obj/item/reagent_container/dropper, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/reagent_container/glass/beaker/bluespace{ + pixel_y = 12 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"vWA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = -5 + }, +/obj/item/prop/magazine/book/theartofwar, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"vWB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/bcigbutt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/item/trash/cigbutt{ + icon_state = "ucigbutt"; + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/tool/lighter/random{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/structure/sign/prop3{ + pixel_x = 28 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"vWG" = ( +/obj/structure/pipes/vents/pump, +/obj/item/tool/soap, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"vWJ" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vXd" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + id = "engidorm"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"vXf" = ( +/obj/structure/reagent_dispensers/pacidtank{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"vXh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"vXo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"vXv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_y = 14 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"vXF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"vYd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"vYi" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigwarden"; + name = "\improper Warden's Office" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"vYm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"vYt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"vYz" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 8 + }, +/obj/item/paper_bin/wy{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_y = -2 + }, +/obj/item/reagent_container/dropper{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/structure/machinery/biohazard_lockdown{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"vYC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"vYM" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"vZb" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 16; + pixel_y = 26 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"vZf" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8 + }, +/turf/closed/wall/almayer, +/area/almayer/engineering/lower) +"vZv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"vZw" = ( +/turf/open/floor/almayer/research/containment/floor2, +/area/almayer/medical/containment/cell/cl) +"vZI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/midship_hallway) +"vZJ" = ( +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/upper/fore_hallway) +"wac" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"wan" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/brown, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"waD" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_one) +"waJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"waP" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/fore_hallway) +"wbu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"wby" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"wbC" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"wbJ" = ( +/obj/structure/machinery/door_control/airlock{ + id = "n_engi"; + name = "Port Engi Airlock"; + pixel_x = 28; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/notunnel) +"wbN" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"wbO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 15 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"wbP" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_four) +"wbV" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"wbX" = ( +/obj/structure/closet/secure_closet/cmdcabinet{ + pixel_y = 24 + }, +/obj/item/device/cotablet, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"wcm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/south2) +"wct" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"wcD" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"wcJ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"wcN" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"wcR" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/cell/high, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"wdf" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/auxiliary_officer_office) +"wdh" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -8; + pixel_y = 3 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/shipboard/brig/cic_hallway) +"wdv" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"wdz" = ( +/obj/effect/landmark/start/marine/engineer/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"wdF" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"wdG" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"wdI" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"wdJ" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"wdQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"wdW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"wed" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"wee" = ( +/obj/effect/landmark/start/police, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cryo) +"wei" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"wer" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"wex" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -25 + }, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"weC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/port_point_defense) +"weD" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "dccbunk"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/living/pilotbunks) +"weR" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"wfn" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/lower/workshop/hangar) +"wfx" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"wfE" = ( +/turf/closed/wall/almayer, +/area/almayer/living/gym) +"wfZ" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"wga" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/window/reinforced/ultra{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"wgf" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"wgk" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"wgO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"wgR" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"whc" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"whm" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"whA" = ( +/turf/open/floor/almayer/uscm/directional, +/area/almayer/living/briefing) +"whB" = ( +/obj/structure/closet/firecloset, +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/bridge{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"whO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"whQ" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/storage/donut_box{ + pixel_y = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) +"wid" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/p_bow) +"wiu" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"wiz" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"wiG" = ( +/obj/structure/sign/poster{ + pixel_x = -30; + pixel_y = 4 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"wiI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/juicer{ + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"wiN" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/east{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"wiO" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wiQ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "vehicle1door"; + name = "Vehicle Bay One" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"wiW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"wjq" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"wjv" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"wjz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"wjC" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"wjL" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"wjQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) +"wjY" = ( +/obj/structure/closet/secure_closet/warrant_officer, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"wka" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 4 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"wkc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + access_modified = 1; + dir = 8; + req_access_txt = "8" + }, +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"wks" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"wky" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"wkA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"wkH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/whistle{ + pixel_y = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"wkM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES StairsLower"; + name = "\improper ARES Core Shutters"; + plane = -7 + }, +/obj/effect/step_trigger/ares_alert/public{ + alert_id = "AresStairs"; + alert_message = "Caution: Movement detected in ARES Core."; + cooldown_duration = 1200 + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"wkX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"wlb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wlg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "Interrogation Shutters"; + name = "\improper Shutters"; + pixel_x = -6; + pixel_y = -6; + req_access_txt = "3" + }, +/obj/item/device/taperecorder{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/interrogation) +"wlh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"wlr" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/upper/midship_hallway) +"wlD" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"wlE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"wlF" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"wlK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"wmg" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"wmo" = ( +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/hallways/upper/fore_hallway) +"wmz" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"wmK" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/computerlab) +"wmP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"wmQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc03"; + name = "\improper Treatment Center" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"wmT" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = 30 + }, +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"wnb" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/smg/m39{ + pixel_y = 6 + }, +/obj/item/weapon/gun/smg/m39{ + pixel_y = -6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"wnh" = ( +/obj/structure/window/framed/almayer/aicore/hull, +/turf/open/floor/plating, +/area/almayer/command/airoom) +"wnw" = ( +/obj/structure/machinery/flasher{ + id = "Perma 2"; + pixel_y = 24 + }, +/obj/structure/machinery/camera/autoname/almayer/brig, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"wnL" = ( +/obj/item/stack/tile/carpet{ + amount = 12 + }, +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"wnY" = ( +/obj/item/tool/crowbar/red, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"woh" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 4 + }, +/area/almayer/medical/containment/cell) +"wos" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"woy" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"woU" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_p) +"wpg" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"wpt" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_s"; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"wpu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp{ + pixel_y = 8 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/device/flash, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"wpI" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"wpS" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower) +"wqc" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"wqh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wqr" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 7; + pixel_y = 29 + }, +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"wqO" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"wqW" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/upper_medical) +"wra" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"wrr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control/railings{ + pixel_y = 24 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"wru" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"wrC" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"wrI" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"wrN" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"wrT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"wrX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"wse" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"wsh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/perma) +"wsl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"wsq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"wsw" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"wsz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"wsD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"wsR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"wsS" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wtk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"wtn" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/item/storage/firstaid{ + pixel_x = -13; + pixel_y = 13 + }, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"wty" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/delta) +"wtD" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/p_bow) +"wtM" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"wtY" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/white{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/paper, +/obj/item/restraint/handcuffs, +/obj/item/clothing/mask/cigarette/cigar/classic, +/obj/item/coin/silver{ + desc = "A small coin, bearing the falling falcons insignia."; + name = "falling falcons challenge coin" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"wub" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"wud" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"wuh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 + }, +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"wui" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = -17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_m_p) +"wuk" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"wup" = ( +/obj/structure/supply_drop/echo, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"wuq" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"wuB" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"wuS" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"wuT" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/starboard) +"wvb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"wvj" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"wvo" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"wvE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 4; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/terminal{ + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/chief_mp_office) +"wvI" = ( +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/tool/pen, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"wvU" = ( +/obj/structure/machinery/recharge_station, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"wvX" = ( +/obj/structure/sign/safety/analysis_lab{ + pixel_y = 26 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 26 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) +"wwr" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"wwv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"wwE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"wwJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"wwW" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/hidden{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell/cl) +"wxc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"wxj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"wxp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wxq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/lower_medical_medbay) +"wxu" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"wxy" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/p_stern) +"wxD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"wxF" = ( +/obj/structure/closet/secure_closet/cmdcabinet{ + desc = "A bulletproof cabinet containing communications equipment."; + name = "communications cabinet"; + pixel_y = 24; + req_access = null; + req_one_access_txt = "3" + }, +/obj/item/device/radio/listening_bug/radio_linked/mp{ + pixel_y = 8 + }, +/obj/item/device/radio/listening_bug/radio_linked/mp, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/warden_office) +"wxU" = ( +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 7; + pixel_y = 16 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/beach_ball/holoball{ + pixel_x = -5; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"wyt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_x = -2; + pixel_y = 7 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"wyz" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"wyG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"wyQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/aicore_lockdown, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"wzy" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"wzJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"wzZ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + id = "medcryobeds"; + id_tag = "medcryobeds"; + name = "Medical Wheelchair Storage"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"wAE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"wAK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) +"wBw" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wBI" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/starboard) +"wCe" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"wCi" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/medical/lockerroom) +"wCk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/ot{ + pixel_y = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"wCn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"wCs" = ( +/obj/structure/machinery/vending/security, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"wCI" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/living/briefing) +"wDg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/starboard) +"wDq" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wDr" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/stairs) +"wDs" = ( +/obj/structure/machinery/seed_extractor, +/obj/structure/sign/safety/terminal{ + pixel_x = -6; + pixel_y = -26 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 7; + pixel_y = -26 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 20; + pixel_y = -26 + }, +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) +"wDy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"wDC" = ( +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 5"; + name = "Cell 5" + }, +/obj/structure/sign/safety/five{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"wDG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"wDH" = ( +/obj/structure/morgue, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"wDJ" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie_delta_shared) +"wDK" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"wDM" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/engineering/upper_engineering) +"wDP" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"wEd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"wEg" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "agentshuttle"; + indestructible = 1; + unacidable = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"wEw" = ( +/obj/effect/landmark/start/pilot/dropship_pilot, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"wEF" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"wEI" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/tool/pen, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/clipboard{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"wEK" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wEO" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"wET" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/l42a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"wFb" = ( +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"wFi" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"wFn" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"wFs" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"wFz" = ( +/obj/item/prop{ + desc = "Predecessor to the M56 the M38 was known for its extreme reliability in the field. This particular M38D is fondly remembered for its stalwart defence of the hangar bay during the Arcturian commando raid of the USS Almayer on Io."; + icon = 'icons/turf/whiskeyoutpost.dmi'; + icon_state = "M56D_gun_e"; + layer = 3.1; + name = "\improper M38D heavy machine gun 'Bess'"; + pixel_x = -3; + pixel_y = 10 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"wFN" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"wFQ" = ( +/obj/structure/machinery/cm_vending/clothing/maintenance_technician, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"wFR" = ( +/turf/open/floor/almayer, +/area/almayer/living/gym) +"wFX" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"wGa" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"wGb" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"wGd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"wGe" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"wGE" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/marine/leader/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"wGX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/auxiliary_officer_office) +"wHj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/prop/ice_colony/tiger_rug{ + desc = "A beat up beer stained, incredibly garish, polyester tiger rug. No one knows how it got here. Written on the wash tag are the words 'From Thedus, with love <3', in Sharpie."; + icon_state = "HotlineAlt"; + layer = 2.9; + name = "Richard the tiger" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/living/port_emb) +"wHn" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"wHo" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/living/briefing) +"wHp" = ( +/obj/structure/bed/sofa/vert/grey, +/obj/structure/bed/sofa/vert/grey{ + pixel_y = 11 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"wHr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"wIr" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + req_access = list(); + req_access_txt = "26" + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"wIu" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"wIC" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/chief_mp_office) +"wIG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"wIQ" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/shipboard/brig/cic_hallway) +"wIX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink" + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"wJb" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/lower_medical_medbay) +"wJh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/cryo) +"wJo" = ( +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper CMO's Bedroom"; + req_one_access_txt = "1;5" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"wJC" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"wJD" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"wJH" = ( +/turf/closed/wall/almayer/research/containment/wall/east, +/area/almayer/medical/containment/cell/cl) +"wKb" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"wKc" = ( +/obj/effect/decal/cleanable/vomit, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"wKm" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_aft_hallway) +"wKF" = ( +/obj/structure/machinery/power/apc/almayer/north{ + cell_type = /obj/item/cell/hyper + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"wKJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"wKL" = ( +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_s"; + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"wKN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"wKP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/medical/containment) +"wLi" = ( +/obj/structure/machinery/door_control/airlock{ + id = "s_engi"; + name = "Starboard Engi Airlock"; + pixel_x = 28; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/notunnel) +"wLm" = ( +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) +"wLu" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"wLy" = ( +/obj/structure/pipes/vents/pump/no_boom{ + name = "Secure Reinforced Air Vent"; + welded = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"wLC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/safety/bridge{ + pixel_y = 32 + }, +/obj/structure/sign/safety/reception{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"wLF" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + closeOtherId = "brigmed"; + name = "\improper Brig Medbay"; + req_access = null; + req_one_access = null; + req_one_access_txt = "20;3" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/medical) +"wLG" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 + }, +/obj/item/bedsheet/blue{ + pixel_y = 13 + }, +/obj/item/clothing/head/ushanka{ + layer = 3.3 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/port_emb) +"wLK" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = 12 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"wLN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"wLS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"wMl" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/two{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wMv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/auxiliary_officer_office) +"wMB" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wMF" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"wMG" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"wMI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"wMO" = ( +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"wNl" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + layer = 3.2; + pixel_x = 4; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -10; + pixel_y = 1 + }, +/obj/item/reagent_container/food/snacks/grown/orange{ + layer = 3.3; + pixel_x = 1; + pixel_y = 13 + }, +/obj/item/prop/magazine/book/starshiptroopers{ + pixel_x = 8; + pixel_y = -3 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/living/port_emb) +"wNt" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"wNz" = ( +/obj/structure/stairs, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wNC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"wNG" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"wNS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"wNT" = ( +/obj/structure/platform, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"wOt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"wOv" = ( +/obj/structure/platform, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"wOK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"wPa" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/reagent_container/glass/rag, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wPf" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"wPi" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/hallways/lower/port_midship_hallway) +"wPz" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"wPC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"wPF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"wQu" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"wQA" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"wQD" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/engine_core) +"wQI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"wRf" = ( +/obj/structure/machinery/light/small, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_y = 32 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"wRk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"wRN" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) +"wRO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"wRP" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"wRT" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"wSm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"wSn" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"wSu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"wSx" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wSB" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"wSQ" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) +"wSR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"wSV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"wSX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"wTd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/securestorage) +"wTg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wTm" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/living/briefing) +"wTn" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"wTu" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/maint/upper/mess) +"wTw" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_y_offset = 0 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"wTB" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"wTM" = ( +/turf/closed/wall/almayer/research/containment/wall/south, +/area/almayer/medical/containment/cell) +"wTN" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"wUd" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"wUJ" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"wUK" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower/workshop/hangar) +"wUP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"wUR" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/living/pilotbunks) +"wUX" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_x = 1; + pixel_y = -5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"wVh" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"wVm" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"wVt" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"wVy" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"wVA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"wVB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"wVN" = ( +/obj/item/roller, +/obj/structure/surface/rack, +/obj/item/roller, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"wVW" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/cic) +"wWg" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"wWl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Mixed Air Control" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"wWm" = ( +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"wWq" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/clothing/suit/space/compression/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"wWt" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wWz" = ( +/turf/closed/wall/almayer/research/containment/wall/north, +/area/almayer/medical/containment/cell) +"wWC" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/pilotbunks) +"wWP" = ( +/obj/structure/prop/cash_register/broken, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"wWR" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"wWX" = ( +/obj/effect/landmark/start/marine/engineer/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"wXh" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"wXl" = ( +/obj/structure/platform, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wXz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"wXH" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"wXI" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/living/grunt_rnr) +"wXJ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"wXT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"wYa" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north2) +"wYd" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"wYr" = ( +/obj/structure/machinery/gel_refiller, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"wYA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"wYG" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"wYK" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"wYS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"wYY" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "CE Office Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/engineering/ce_room) +"wZv" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/almayer/engineering/upper_engineering/port) +"wZE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_four) +"wZL" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"wZX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"xac" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"xad" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"xas" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"xaC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/reagent_container/food/snacks/mre_pack/meal5{ + desc = "How long has this been sitting here?"; + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"xaM" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper{ + name = "character sheet"; + pixel_x = -6 + }, +/obj/item/newspaper{ + name = "character sheet"; + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/toy/dice/d20, +/obj/item/toy/crayon/blue{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"xaN" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/knife, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 7 + }, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"xaS" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/command/lifeboat) +"xba" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/living/cryo_cells) +"xbd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xbg" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"xbk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"xbI" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xcI" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"xcV" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"xdf" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"xdx" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular/empty, +/obj/item/storage/firstaid/regular/empty, +/obj/item/storage/firstaid/regular/empty, +/obj/structure/sign/safety/outpatient{ + pixel_x = -17; + pixel_y = -6 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"xdA" = ( +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/faxmachine/uscm/command{ + density = 0; + department = "AI Core"; + pixel_y = 32 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"xdJ" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"xdP" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/uscm_mre, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/grape{ + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"xee" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"xef" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/yellow, +/obj/structure/machinery/keycard_auth{ + pixel_x = -8; + pixel_y = 25 + }, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 26 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"xer" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"xeU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Laundry Room"; + req_access = list(); + req_one_access = list(19,7) + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"xfm" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/cafeteria_officer) +"xfq" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"xfK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/transmitter{ + name = "Kitchen Telephone"; + phone_category = "Almayer"; + phone_id = "Kitchen"; + pixel_x = -8; + pixel_y = 29 + }, +/obj/structure/machinery/vending/ingredients, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"xfO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/bridgebunks) +"xfT" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_one) +"xga" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/upper/aft_hallway) +"xgh" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"xgk" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xgm" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"xgr" = ( +/obj/structure/ladder{ + height = 1; + id = "AftPortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"xgJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lockerroom) +"xgN" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xgP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"xgS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"xhn" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"xhx" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"xhO" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"xhQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"xhU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/starboard_hallway) +"xhW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xhZ" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"xik" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/item/toy/inflatable_duck, +/obj/structure/window/reinforced, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"xiH" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"xiP" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"xiU" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/item/tool/plantspray/weeds, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"xiV" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/p_bow) +"xiW" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"xjb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + access_modified = 1; + name = "\improper Main Kitchen"; + req_one_access_txt = "30;19" + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"xjt" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/card{ + dir = 4; + pixel_x = 2 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"xjz" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/command/lifeboat) +"xjD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"xjF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 3; + pixel_y = 27 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 15; + pixel_y = 27 + }, +/obj/structure/machinery/computer/cameras/almayer_brig{ + desc = "Used to access the various cameras in the security brig."; + dir = 4; + name = "brig cameras console" + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"xjK" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xjW" = ( +/obj/structure/sign/safety/hazard{ + desc = "A sign that warns of a hazardous environment nearby"; + name = "\improper Warning: Hazardous Environment" + }, +/turf/closed/wall/almayer, +/area/almayer/hallways/hangar) +"xka" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_point_defense) +"xkb" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xkc" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"xkd" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/cells) +"xkB" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xkN" = ( +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_fore_hallway) +"xlk" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"xlC" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/ce_room) +"xlO" = ( +/obj/structure/filingcabinet, +/obj/item/folder/yellow, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"xmg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/shipboard/brig/cic_hallway) +"xmn" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"xmJ" = ( +/obj/structure/closet, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"xmP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"xmT" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"xnh" = ( +/obj/structure/closet, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"xnz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"xnI" = ( +/obj/effect/landmark/start/requisition, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"xnX" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"xnZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/hangar{ + dir = 8; + pixel_y = -12 + }, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 8; + name = "Remote dropship navigation computer"; + pixel_y = 12; + shuttleId = "dropship_alamo" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"xoe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = -29 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"xoj" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"xos" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"xoB" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_s) +"xoJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"xoO" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"xpc" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xpi" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/commandbunks) +"xpl" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/four{ + pixel_x = 31; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) +"xpw" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"xpL" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"xpT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xpZ" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"xqh" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"xqp" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit. Sends items to the requisitions."; + icon_state = "delivery_med"; + name = "Requisitions Delivery Unit"; + pixel_y = 28 + }, +/obj/structure/machinery/xenoanalyzer, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"xqv" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"xqy" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "or4privacyshutter"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/medical/operating_room_four) +"xqD" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = -17 + }, +/turf/closed/wall/almayer, +/area/almayer/command/securestorage) +"xqQ" = ( +/obj/structure/machinery/door/poddoor/almayer/blended{ + id = "RoomDivider"; + layer = 3.1; + name = "\improper Room Divider" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"xrg" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"xrq" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) +"xrt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 12; + pixel_y = -24 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"xry" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"xrC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_fore_hallway) +"xrI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"xrT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"xsi" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp2"; + vector_x = -102; + vector_y = 61 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"xsl" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"xss" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) +"xsv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"xsw" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"xsz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"xsQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart/green, +/obj/item/weapon/dart/green, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"xtM" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"xub" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"xuc" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"xui" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"xuy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/lower/port_fore_hallway) +"xuE" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 5"; + locked = 1; + name = "\improper Containment Cell 5" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Containment Cell 5"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"xuQ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"xuY" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"xuZ" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"xvE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"xvQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing{ + dir = 8 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"xvX" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"xwd" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xwl" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"xwm" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"xwp" = ( +/obj/item/storage/box/matches{ + pixel_x = -11; + pixel_y = -3 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/item/reagent_container/food/drinks/cans/dr_gibb{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"xwE" = ( +/obj/structure/bed/chair/comfy/alpha, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xwU" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 1; + vent_tag = "Comms" + }, +/turf/open/floor/almayer/aicore/no_build/ai_plates, +/area/almayer/command/airoom) +"xwX" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south2) +"xxa" = ( +/obj/item/stack/sheet/cardboard{ + amount = 50 + }, +/obj/structure/surface/rack, +/obj/item/packageWrap, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"xxh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/prop/magazine/boots/n160{ + layer = 2.8; + pixel_x = 4; + pixel_y = -8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/commandbunks) +"xxi" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -2 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"xxm" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/item/clothing/shoes/marine{ + layer = 4.1; + pixel_x = -5; + pixel_y = 20 + }, +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = 3; + pixel_y = 16 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/red{ + layer = 3.2 + }, +/obj/item/bedsheet/red{ + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/almayer/living/port_emb) +"xxB" = ( +/obj/structure/machinery/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"xxG" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/structure/largecrate/random/barrel/red, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = -2; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xxI" = ( +/obj/structure/cargo_container/wy/mid, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -22; + pixel_y = 3; + serial_number = 11 + }, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 8; + serial_number = 12 + }, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + serial_number = 16 + }, +/obj/structure/sign/poster{ + desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; + icon_state = "poster10"; + name = "Koorlander Gold Poster"; + pixel_x = 29; + pixel_y = 6; + serial_number = 10 + }, +/obj/structure/bed/chair{ + dir = 1; + pixel_y = 42 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xxZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"xyk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"xyp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"xyt" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/item/folder/white{ + layer = 2.9; + pixel_x = -8 + }, +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"xyw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xyB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"xyL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"xyN" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/execution_storage) +"xyQ" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/hallways/lower/repair_bay) +"xyY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"xyZ" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"xzf" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/basketball) +"xzh" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"xzx" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"xzB" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"xzI" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"xAe" = ( +/turf/closed/wall/almayer/research/containment/wall/corner, +/area/almayer/medical/containment/cell) +"xAt" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 8 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"xAu" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"xAB" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/clipboard, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"xAI" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"xAY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"xBe" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/upper_engineering) +"xBn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D3"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"xBK" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"xBQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"xBS" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"xBV" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"xBW" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"xBY" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/laundry) +"xCa" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/frame/table/wood/poor, +/obj/item/frame/table/wood/poor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"xCb" = ( +/obj/structure/closet/secure_closet/fridge/dry, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"xCf" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"xCs" = ( +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/upper/midship_hallway) +"xCy" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"xCB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"xDe" = ( +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/port) +"xDn" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"xDy" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_p) +"xDC" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"xDF" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"xDV" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"xEe" = ( +/obj/structure/prop/invuln/joey, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"xEs" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"xEz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_two) +"xEO" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"xEX" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"xFt" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"xFx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"xFP" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/starboard_missiles) +"xFZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"xGh" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"xGm" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"xGo" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"xGE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"xGF" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"xGI" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/l42a, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = -6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"xGJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_x = -13 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/living/briefing) +"xGK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/lights/tubes{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"xGT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"xHa" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"xHl" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"xHp" = ( +/turf/open/floor/almayer/orange, +/area/almayer/squads/alpha_bravo_shared) +"xHt" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + req_one_access = null; + req_one_access_txt = "2;7" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"xHS" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"xHX" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"xId" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/he, +/obj/item/mortar_shell/he, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"xIj" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"xIk" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"xIq" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/evidence_storage) +"xIu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -14; + pixel_y = 28 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"xIQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"xIV" = ( +/turf/open/floor/almayer, +/area/almayer/maint/upper/mess) +"xIW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/poster, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"xJe" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/shipboard/brig/cells) +"xJh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/analyzer, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"xJp" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xJH" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie_delta_shared) +"xJR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"xJT" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"xJV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) +"xKG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door_control{ + id = "Under Construction Shutters"; + name = "shutter-control"; + pixel_x = -25 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"xKM" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"xKT" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"xLi" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xLl" = ( +/obj/structure/machinery/cm_vending/clothing/military_police{ + density = 0; + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/general_equipment) +"xLn" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"xLu" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"xLw" = ( +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/midship_hallway) +"xLX" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"xMf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_point_defense) +"xMj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"xMl" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"xMm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"xMs" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/operating_room_two) +"xMz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"xMA" = ( +/obj/structure/machinery/computer/med_data, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"xMB" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/almayer/command/cic) +"xMG" = ( +/obj/structure/machinery/door_control{ + id = "OuterShutter"; + name = "Outer Shutter"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "1;3" + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "OfficeSafeRoom"; + name = "Office Safe Room"; + pixel_x = 5; + pixel_y = 5; + req_one_access_txt = "1;3" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"xML" = ( +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"xMO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"xMR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"xNb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xNf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"xNg" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"xNj" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access_txt = "7;23;27" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"xNu" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile, +/area/almayer/medical/upper_medical) +"xNv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"xNz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 7 + }, +/obj/item/storage/box/cups{ + pixel_x = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_y = 19 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"xNM" = ( +/obj/structure/machinery/cm_vending/gear/vehicle_crew, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/vehiclehangar) +"xOs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/poster/pinup{ + pixel_x = -30 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"xOL" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"xOT" = ( +/obj/structure/closet/secure_closet/fridge/meat/stock, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"xOY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"xPn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) +"xPq" = ( +/obj/structure/filingcabinet, +/obj/item/folder/yellow, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"xPZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"xQa" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"xQd" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"xQe" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"xQg" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/pilotbunks) +"xQj" = ( +/obj/item/pipe{ + dir = 4; + layer = 3.5 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"xQm" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"xQz" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"xQV" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"xQW" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = -18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"xRj" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/squads/charlie) +"xRk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/view_objectives{ + dir = 4 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"xRw" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/living/briefing) +"xRH" = ( +/obj/structure/sign/safety/fibre_optics{ + pixel_y = 32 + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"xRJ" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"xSw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "cryo curtain" + }, +/turf/open/floor/plating, +/area/almayer/squads/charlie) +"xSx" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xSz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"xSM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"xSW" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"xSY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/containment) +"xTu" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"xTx" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_p) +"xTG" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"xTH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"xTR" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/plating, +/area/almayer/command/cichallway) +"xTW" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/yellow{ + layer = 3.2 + }, +/obj/item/bedsheet/red{ + pixel_y = 13 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/living/port_emb) +"xUa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"xUy" = ( +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"xUA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/tank, +/obj/structure/sign/safety/life_support{ + pixel_x = -17 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"xUB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"xUV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"xUY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"xVc" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = 24; + pixel_y = 24; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"xVe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"xVk" = ( +/turf/open/space, +/area/space/almayer/lifeboat_dock) +"xVF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"xVI" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"xVS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"xVT" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/closed/wall/almayer, +/area/almayer/living/tankerbunks) +"xVY" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"xWd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange, +/area/almayer/squads/alpha_bravo_shared) +"xWo" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;21" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"xWp" = ( +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"xWv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"xWO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"xWT" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"xXa" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"xXd" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/hallways/upper/midship_hallway) +"xXh" = ( +/turf/closed/wall/almayer/research/containment/wall/west, +/area/almayer/medical/containment/cell) +"xXj" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "Perma 1"; + name = "\improper cell shutter" + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Isolation Cell" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"xXl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"xXr" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/research, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"xXT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/starboard) +"xXW" = ( +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xYf" = ( +/obj/structure/machinery/cm_vending/clothing/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"xYr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"xYB" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/starboard_point_defense) +"xYE" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"xYP" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"xYQ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"xYZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"xZk" = ( +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = -10; + pixel_y = 10 + }, +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/weapon/broken_bottle{ + layer = 4.51; + pixel_x = 9; + pixel_y = 1 + }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xZt" = ( +/obj/structure/sign/safety/refridgeration{ + pixel_y = -32 + }, +/obj/structure/sign/safety/medical{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"xZG" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/bedsheet/hop, +/obj/structure/bed, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"xZH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"xZM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"xZR" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xZU" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"yac" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"yap" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"yat" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_a_p) +"yaz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Officer's Study" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"yaF" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"yaQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"yaX" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/hallways/lower/vehiclehangar) +"yaZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ybm" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ybz" = ( +/obj/structure/machinery/brig_cell/cell_4{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"ybP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) +"ybZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/transmitter{ + dir = 4; + name = "Port Railgun Control Telephone"; + phone_category = "Command"; + phone_id = "Port Railgun Control"; + pixel_x = -26 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"ycd" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"ycl" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) +"ycm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"ycx" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"ycH" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/margherita{ + pixel_y = 8 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"ycM" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"ycZ" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"ydf" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"ydh" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/black, +/obj/item/tank/oxygen, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"ydz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"ydA" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"ydE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"ydI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ydM" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"ydO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"ydY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"yeg" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 + }, +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"yei" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"yeH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"yeN" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"yeR" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + req_access = null; + req_access_txt = 19; + req_one_access = null + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"yfd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"yff" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) +"yfg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"yfm" = ( +/obj/effect/landmark/start/marine/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"yfn" = ( +/obj/structure/machinery/pipedispenser/orderable, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"yfy" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"yfG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/power/apc/almayer/west, +/obj/item/storage/briefcase{ + pixel_y = 15 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"yfS" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/grunt_rnr) +"yge" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"ygf" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"ygp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ygv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/west{ + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"ygB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ygP" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"yhg" = ( +/obj/structure/machinery/camera/autoname/almayer/brig{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"yht" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"yhI" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south1) +"yhR" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"yhV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/mp_bunks) +"yhZ" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/p_bow) +"yia" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"yih" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"yiu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"yiW" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"yiX" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"yjb" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/morgue) +"yjq" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "n_engi_ext" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"yjr" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_f_s) +"yjE" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"yjG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"yjM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/pilotbunks) +"yjU" = ( +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"ykj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Rest and Relaxation Area" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"yko" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/repair_bay) +"ykv" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"ykI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"yle" = ( +/obj/effect/landmark/start/marine/engineer/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ylh" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/test_floor5, +/area/almayer/engineering/lower/engine_core) +"ylN" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"ymg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) + +(1,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(2,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(3,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(4,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(5,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(6,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(7,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(8,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(9,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(10,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(11,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(12,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(13,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(14,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(15,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(16,1,1) = {" +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aKQ +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +"} +(17,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(18,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(19,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(20,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(21,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(22,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(23,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(24,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(25,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(26,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(27,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(28,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(29,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(30,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(31,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(32,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(33,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(34,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(35,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +feb +feb +feb +feb +feb +feb +feb +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(36,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aac +aaf +aaf +aaf +aaf +aag +feb +qmR +oog +dsA +rbK +tmH +feb +aag +aaf +aaf +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(37,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aad +hPI +hPI +hPI +hPI +hPI +feb +dhd +oog +jNT +fag +qCA +feb +hRu +hRu +hRu +hRu +hRu +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(38,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aag +hPI +naB +naB +naB +naB +mtl +vdl +nPb +fZX +dBS +nSu +rXE +xyN +ltO +tBP +tfE +hRu +aag +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(39,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +uDg +uDg +hPI +pQr +rib +vtG +naB +mtl +eCI +nOC +qVF +xdJ +kzr +jqY +elV +dJJ +dJJ +glP +hRu +xiV +xiV +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(40,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf +uDg +uDg +lHk +naB +wnw +pHp +fgl +dya +fLF +kEq +mtl +mtl +mtl +mtl +ewI +xyN +hdQ +hUU +cXD +xyN +igS +xiV +xiV +aaf +aaf +aaf +aaf +aaf +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(41,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +uDg +uDg +uDg +uDg +uDg +uDg +uDg +uDg +aPN +lSJ +naB +pQr +jeR +wvI +vPf +fvA +qPD +vcm +tul +mNK +gtU +bjk +xyN +xyN +xyN +xyN +xyN +iuf +pnh +xiV +xiV +xiV +xiV +xiV +xiV +xiV +xiV +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(42,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +uDg +cth +gkr +xkc +oGj +iVD +xkc +mph +nlh +rGr +naB +naB +naB +naB +naB +dcy +qPD +qPD +qPD +qPD +quJ +rdA +dbs +sql +jyY +rwe +pdp +hZw +xYr +mjs +pdp +ohu +iUh +pdp +pdp +kSn +xiV +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(43,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aac +aaf +aag +uDg +gkr +xkc +gkr +vAg +gxI +kqC +bBU +xkc +eeA +naB +pQr +ggS +wvI +piK +fvA +qPD +wZL +ffg +ffg +wsh +eMJ +xkd +xkd +xkd +xkd +xkd +xkd +lRt +tsE +iVG +hmA +hmZ +oDh +oDh +pdp +xiV +aag +aaf +ajY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(44,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +uDg +uDg +gkr +xkc +hvd +hvd +hvd +hvd +hvd +bLF +eyD +naB +kry +pHp +fgl +xXj +qXE +qPD +sPF +qPD +qPD +uQm +stO +xkd +teE +xJT +xkd +ljS +xkd +xkd +xkd +xkd +xkd +xkd +xkd +pdp +oDh +xiV +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(45,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +uDg +pOp +gkr +cth +hvd +ddj +wlg +fuY +hvd +cQG +jXc +naB +pQr +bsp +hCV +naB +naB +uUu +qCU +qZF +qPD +iQd +qJo +xkd +vWG +lJL +dQp +vlM +iHG +dCe +moB +uns +vCy +eyV +xkd +mkF +oDh +pdp +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(46,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aad +aag +uDg +lDT +xkc +xyZ +hvd +vGn +ehl +ehl +uXu +cQG +alp +naB +naB +naB +naB +naB +naB +nVR +nVR +nVR +nux +tau +nVR +xkd +xik +bjQ +xkd +kmd +tUx +ebd +tHS +xGh +jVa +wDs +xkd +oHf +oDh +pdp +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aac +aaf +aaf +aaf +aaf +aaf +aag +dqw +bDF +bDF +dqw +aag +aag +aag +aag +aag +aag +aag +aag +aag +dqw +bDF +bDF +dqw +aag +aag +aag +aaf +aaf +aaf +aaf +aaf +ajY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(47,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +uDg +xkc +gkr +hvd +hvd +iRp +iRp +iRp +hvd +cyc +vzy +fqQ +kHo +sFu +hnE +tTO +wFs +nkX +iQB +cmv +vzk +phN +iVP +xkd +xkd +xkd +xkd +umW +iOD +iOD +tHS +sqW +tUx +wRN +xkd +xkd +pdp +oDh +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +nBJ +nBJ +nBJ +aag +dqw +uwv +uwv +dqw +aag +aag +aag +aag +aag +aag +aag +aag +aag +dqw +uwv +uwv +dqw +aag +aag +aag +wid +wid +wid +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(48,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +lrE +xkc +gkr +hvd +iUX +gii +gIO +gIO +hvd +gYx +oyC +bKI +xhU +xhU +jCX +sEz +iNh +wdF +wdF +wdF +wdF +cMl +icZ +xkd +uvY +oBq +xkd +wKJ +jVa +jVa +tHS +sVc +tUx +xJe +qLt +xkd +pdp +oDh +cPj +aag +etE +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +kJc +jFt +bAs +bAs +bAs +bDF +bDF +bAs +bTT +bTT +bAs +aag +aag +aag +aag +aag +bAs +bAs +bDF +bDF +bAs +bTT +bTT +bTT +bAs +kOR +jYM +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(49,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +lrE +gkr +xkc +hvd +iUX +gJE +cKJ +hyV +keG +cQG +cQG +ugw +cwC +cwC +sEz +cwC +uun +oRk +oRk +oRk +utZ +cMl +hTt +kMH +tUx +iTI +dmZ +eZH +jVa +jVa +tHS +xGh +ycm +qCo +pWr +xkd +aGa +oDh +cPj +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +rUi +grv +bBA +bAK +bCY +bDO +bDO +bDO +bHI +bJS +bAs +aag +aag +aag +aag +aag +bAs +bHP +sSc +sSc +bDO +acr +bPG +acN +bBA +gTK +fWg +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(50,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +lrE +vDh +xkc +lrq +lrq +lrq +lrq +lrq +lrq +lrq +uhA +aaP +tpn +tpn +srT +tpn +tpn +xjF +myP +gDt +bju +cMl +lMc +xkd +qFu +xkd +xkd +vdM +jVa +wtM +moB +sXQ +cyZ +jVa +fJT +xkd +rfB +pdp +cPj +aag +eSU +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +uRR +mFQ +bBA +hWJ +bCY +bDO +bDO +bDO +bHP +bJT +bAs +bAs +bAs +bAs +bAs +bAs +bAs +bNl +sSc +sSc +bDO +bHP +bPG +hpk +bBA +yhZ +wtD +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(51,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +uDg +cth +qsp +lrq +kEc +chv +cAy +uhE +vKB +lrq +vjB +gIz +tpn +eVR +cak +vrM +tpn +mHb +hjM +xTH +bju +wSm +dEG +xkd +uvY +duT +xkd +eZH +jVa +jVa +moB +moB +dfk +vzz +moB +xkd +gNZ +pdp +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +ecS +eQR +gol +akb +bCY +bDO +bDO +bDO +abU +bHP +avw +bKn +bLk +bLw +bKn +bLk +avw +bHP +sSc +sSc +bDO +bPn +bPG +ald +gol +sGK +hLu +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(52,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +uDg +cUl +gkr +lrq +heo +nqe +nqe +nqe +nqe +tLa +cQG +gfd +tpn +rqS +cak +vrM +tpn +pUD +bju +wdF +wdF +wSm +dPT +kVZ +tUx +iTI +nUj +eZH +tUx +vrx +yhg +lbs +eZH +tUx +cXi +xkd +ttB +pdp +xiV +aag +twB +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +eQR +xAu +bBA +bAN +bCY +bDO +bDO +bOq +bPo +bHP +avw +akb +axk +bLH +vuZ +ald +avw +bHP +sSc +sSc +bOq +bPo +bPG +acs +bBA +xHX +sGK +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(53,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +lrE +vOM +gkr +lrq +kui +uqo +pId +qMD +uqo +lrq +nVm +dRA +tpn +gIU +xIq +vrM +tpn +efT +nkF +hkH +kuJ +sLA +jSw +xkd +qFu +xkd +xkd +icM +thL +thL +thL +thL +nYd +thL +jVa +fgR +nEc +oDh +cPj +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +ldF +eox +bBA +bAO +bCZ +bDW +fya +ohA +ohA +ohA +bKb +akf +jbX +kNY +jbX +tuZ +bKb +ohA +ohA +ohA +cFh +bDW +bPJ +iuz +bBA +mVh +uMf +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(54,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +lrE +etN +xkc +lrq +sEZ +nqe +nqe +nqe +nqe +mza +cQG +qvE +tpn +tpn +tpn +tpn +tpn +xIu +xvQ +eDt +bju +cMl +kAL +xkd +uvY +sgE +xkd +qJZ +ohJ +thL +thL +uAL +liZ +rUk +jVa +fgR +azg +gKv +cPj +aag +rEr +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +ldF +eQR +bBA +bAP +aqu +aqu +bEF +bNm +bNm +bNm +avw +bKp +bLl +bLJ +bMS +bNe +avw +bNm +bNm +bNm +bOs +aqu +aqu +bQz +bBA +sGK +vOG +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(55,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +lrE +gkr +xkc +lrq +dEX +fxJ +fxJ +fAr +qmU +lrq +dmr +wLS +aVm +cmM +miy +iUG +cmM +snX +oIh +oIh +wNt +cMl +nlz +vNp +tUx +iTI +qxe +eZH +ohJ +thL +thL +ezX +uaU +rUk +xaM +fgR +hIG +pdp +cPj +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +vCE +ldF +bBA +bBu +amg +amg +bFa +alU +alU +alU +alU +alU +alU +alU +alU +alU +alU +alU +alU +alU +bOM +amg +amg +rAD +bBA +sGK +mVh +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(56,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +uDg +xkc +xkc +lrq +iwV +iwV +iwV +iwV +lrq +lrq +kXt +wLS +eBx +cmM +hAf +cNI +bbi +wdF +wdF +wdF +wdF +kQu +cqM +xkd +qFu +xkd +xkd +pns +omt +omt +omt +omt +uxa +iZU +nhG +xkd +oDh +uqg +xiV +aag +uJk +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +amu +eQR +bBA +bBu +amg +amg +bFj +alU +bId +bJU +bKd +alU +bLm +bTG +bMT +alU +bNi +bNn +bNq +alU +bON +amg +amg +rAD +bBA +ozH +flr +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(57,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +uDg +gkr +old +cQv +oVf +rmx +bvH +evR +cQv +cQv +rmk +nuZ +cmM +cmM +pdT +otp +cmM +tzd +tzd +sgi +bju +wSm +kAL +xkd +uvY +qEA +xkd +eZo +thL +thL +thL +thL +tov +thL +sUs +xkd +gNZ +pdp +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +kMW +eQR +bBA +bBv +aqu +tkq +bFa +alU +neO +aoi +avB +bKq +ayw +aoi +avB +bKq +ayw +aoi +azA +alU +bOO +tkq +aqu +bQG +bBA +uoO +mVh +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(58,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +lrE +gkr +wJC +cQv +cBw +kde +kde +ajj +mZQ +cQv +dFl +tUK +kTp +sYl +fgt +kCY +kTp +gHt +oIh +eNR +bju +wSm +ybz +rrz +tUx +iTI +tlp +lXb +thL +oXp +thL +thL +tov +thL +xhx +fgR +oDh +pdp +cPj +aag +scz +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +iWJ +eQR +bBA +bBx +amg +bEw +bFk +bHq +let +bJX +bJX +bKs +bLo +bMO +bMU +bNf +bJX +bJX +let +bHq +bFk +bPq +amg +rAD +bBA +sGK +nhV +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(59,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +lrE +gkr +wMF +cQv +eaf +bEv +quj +vgi +rXd +cqJ +oJm +tUK +kTp +hUh +nWS +xpw +kTp +neC +mjt +vqc +edo +fTt +lMc +xkd +qFu +xkd +xkd +thq +ezX +pqF +rUk +thL +iFc +thL +tUx +fgR +pdp +hIG +cPj +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aag +aag +nBJ +dKS +ffN +bBA +bBy +amg +aoa +ald +alU +bIn +bJY +aoi +bLh +bLp +bMP +bNa +bLh +aoi +bNo +bNt +alU +akb +aoa +amg +bQE +bBA +bME +sGK +wid +aag +aag +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(60,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +lrE +xkc +vDh +cQv +eaf +bEv +lEe +pGT +pGT +vkM +ksm +bxE +cmM +oeZ +wLF +oeZ +oeZ +ptq +oRk +eNR +bju +cMl +dEG +xkd +uvY +lSs +xkd +kbX +ezX +prY +rUk +thL +thL +thL +tUx +fgR +pdp +aCA +cPj +aag +okD +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +nBJ +eQR +bTW +bBA +bBz +aqu +bEx +bQt +alU +bIw +bJY +sta +rxK +amX +bLh +azA +pfa +iLq +bNo +bNS +alU +bPg +bEx +aqu +bQI +bBA +gsy +sGK +wid +wid +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(61,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +uDg +xkc +xkc +cQv +eaf +bEv +vyH +ajj +rXd +cqJ +oJm +tUK +kTp +uLE +nWS +cTy +oeZ +emp +emp +emp +iEx +cMl +qFE +wDC +tUx +iTI +fKw +pgP +thL +thL +thL +thL +thL +thL +tUx +xkd +pdp +vhA +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +ldF +ldF +xiP +bBA +lsV +amg +ddz +ald +alU +bIx +bJZ +kyN +bLi +bLq +bMR +bNb +bNg +mTm +gjt +vJo +alU +bPh +bPC +amg +pyL +bBA +cDb +sGK +nhV +wid +aag +ajZ +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(62,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +uDg +lDT +xkc +cQv +eaf +bEv +sBg +uGN +rXd +cQv +mAY +tUK +kTp +hoW +nWS +aIY +oeZ +cFC +oIh +sBQ +skj +tXc +cqM +xkd +qFu +xkd +xkd +cvH +thL +thL +thL +thL +thL +thL +tUx +xkd +pdp +oDh +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +aaf +aag +nBJ +nBJ +ldF +eQR +uFp +bBA +bBA +tiR +bBA +bBA +alU +bIy +alU +alU +alU +syg +alU +pQz +alU +alU +alU +pzW +pzW +pzW +pzW +hNB +pzW +pzW +ipB +mVh +sGK +wid +wid +aag +aaf +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(63,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +uDg +gkr +qsp +cQv +xLl +bEv +kde +ajj +tuk +cQv +kYU +tUK +kTp +krO +nWS +glG +oeZ +ehX +mTN +hZJ +iLG +jXd +kAL +xkd +uvY +cjk +xkd +pgP +tUx +tUx +tUx +tUx +tUx +vsz +oEE +xkd +gNZ +pdp +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +nBJ +nBJ +nBJ +ldF +ldF +bos +bos +bos +haR +uHT +jHn +kcp +bWJ +nar +alU +bXo +oCi +bLs +mZM +aoi +grG +bXY +alU +xNM +ikl +eLp +dFM +lEV +mZP +sDx +sDx +sDx +mVh +sGK +wid +wid +wid +wid +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(64,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +bdH +bdH +aad +uDg +uDg +xkc +eeA +cQv +dzG +kde +ioV +cQv +tlk +cQv +uhA +tCH +oeZ +oeZ +wLF +oeZ +oeZ +mFc +fbr +emp +lze +wSm +slf +bli +tUx +iTI +bQc +pgP +uVV +iBl +cHk +rkV +rkV +cHk +vYi +cHk +pRs +pdp +xiV +xiV +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +fUz +ldF +eQR +ldF +ikA +bos +gpO +uHT +bKP +uHT +sGQ +kcp +wMv +nCR +alU +uDn +bKf +bLs +bLj +aoi +bNk +ecZ +alU +odt +ikl +qAy +mua +mua +mua +lEV +eQz +sDx +mVh +fJu +mVh +roj +qzA +wid +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(65,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +bdH +bdH +aad +uDg +hzN +gkr +krG +cQv +rdM +gUg +cov +cqJ +may +hoK +mcp +hzG +eyD +ngr +cDN +peO +lEv +jic +qGf +emp +bju +wSm +jSw +emp +emp +emp +emp +vbo +emp +emp +cHk +hlI +ekZ +kvL +oix +cHk +uxb +oDh +pdp +xiV +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +lJM +ldF +eQR +ldF +lyP +bos +gpO +kcp +kcp +iqp +kcp +kcp +jgl +kcp +alU +alU +alU +iTW +alU +noo +alU +alU +alU +wrr +kjw +hBr +tqQ +hgp +hgp +hgp +nef +sDx +mXm +mVh +sGK +sGK +nhV +wid +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(66,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +bdH +bdH +aad +uDg +fHb +gkr +vxM +vxM +vxM +vxM +vxM +vxM +tfZ +cQG +cQG +hzG +eyD +tdy +cDN +oFY +oFY +yjG +ncl +jcf +bju +cMl +oeB +emp +slF +oIh +qUz +ksg +oIh +iTl +cHk +frt +vUI +tgJ +wVh +cHk +cHk +oDh +pdp +xiV +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +eQR +eQR +ldF +eQR +sxS +bos +gpO +kcp +bBD +bTS +bTS +lxo +qcy +kcp +sub +sub +tqf +pHF +vYd +ghF +eSp +ghF +aFG +pPQ +juS +mdk +mdk +mdk +mdk +mdk +kCd +bSv +bSv +bSv +bSv +bSv +sGK +wid +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(67,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +bdH +bdH +aad +uDg +xkc +gkr +vxM +rfY +kGu +iqR +fyp +wJh +oJm +cQG +cQG +hzG +nzT +tff +cDN +oFY +cQL +npO +ncl +jcf +bju +cMW +qEy +vKr +rQc +oDy +oDy +wsq +vxK +gwj +oiz +csy +csy +bWQ +deH +szG +cHk +pdp +kIf +xiV +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +ldF +ldF +wcJ +jCr +nQn +bos +uHT +kcp +bTR +iEg +oQM +aqI +aqI +kcp +bOw +mYt +jsR +vPW +vyB +vyB +vyB +vyB +aFG +vFp +yaX +sje +sje +sje +sje +sje +jhS +qih +bTH +foN +cDZ +bSv +hLu +wid +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(68,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aac +aag +uDg +kac +xkc +vxM +tQi +wee +wee +fRS +wJh +iFK +ksm +haY +kaQ +vNT +oSC +uFq +wsl +wSu +xIW +nah +emp +gbw +oRk +jyb +emp +bPH +rJj +mBx +utZ +pyj +jPP +cHk +wxF +vJc +kUg +ifz +fyI +cHk +pdp +ome +xiV +aag +ajY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +ecS +ldF +bos +bos +bos +bos +uHT +kcp +lxW +hPh +wGX +bFr +ppe +kcp +lEV +ghF +ghF +jak +jdC +jdC +jdC +jdC +wiQ +dEo +fGd +sje +sje +sje +sje +sje +jhS +bSv +tjw +bTH +bTV +bSv +sGK +wid +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bTg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(69,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +uDg +fco +qsp +vxM +jvP +rDQ +rDQ +rDQ +ctT +wXz +aNW +tvJ +eyD +eyD +tsX +tsX +epu +oLF +tsX +tsX +emp +vyi +vyi +vyi +emp +emp +emp +emp +emp +wIC +lnh +wIC +rWn +rWn +cHk +cHk +gxt +cHk +dJy +aCA +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +eQR +ldF +bos +vkO +ibf +bos +rIw +kcp +wTN +kZN +rgK +hbu +iYe +bJl +yfd +yfd +yfd +kgS +lEV +lEV +lEV +lEV +aFG +mua +yaX +sje +sje +oiX +sje +sje +rqQ +bSv +ifb +bTH +bSv +xVT +flr +wid +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(70,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +uDg +lDT +xkc +vxM +sbP +sbP +sbP +sbP +wJh +oWK +jwr +eyD +eyD +tHr +mqg +udR +vka +uwN +nVq +xuZ +mSs +xuZ +xuZ +xuZ +xuZ +rEY +gxU +giR +vUP +wIC +qZA +dgx +fKi +vxG +wIC +whQ +bHu +cHk +oLf +hIG +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +ldF +eQR +bos +lBl +nEO +bos +gpO +kcp +oMi +bAZ +bTS +bTS +niR +kcp +lEV +ghF +ghF +pHF +lEV +ghF +ghF +ghF +aFG +mua +hoc +sje +sje +sje +sje +sje +jhS +bSv +aIX +aIX +bSv +xcI +sIu +wid +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(71,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +uDg +xkc +gkr +vxM +pas +ncf +kjk +qxr +wJh +oWK +rPF +pfd +ceZ +jnD +hUW +hiM +rWs +qNR +hiM +hiM +hiM +hiM +rWs +rWs +rQt +cgT +xuc +gXx +wdh +wIC +mHz +jPS +jPS +xrt +wIC +aDt +jTU +cHk +oDh +xas +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +ldF +eQR +rqv +gpO +gpO +bos +gpO +kcp +kcp +kcp +sXE +kcp +kcp +kcp +lEV +vyB +vyB +pHF +lEV +ghF +vyB +vyB +aFG +pJq +yaX +sje +sje +sje +sje +sje +jhS +bSv +cop +cop +bSv +kxe +sGK +wid +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(72,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +uDg +xkc +gkr +vxM +vxM +vxM +vxM +vxM +gaJ +vMJ +qFX +cAR +vGA +hUW +dHd +vka +lnt +eAF +uVA +uVA +uVA +uVA +gde +uVA +wIQ +xWv +aQb +vka +jUY +wIC +hNY +qFi +vAG +hsj +wIC +cHk +cHk +cHk +oDh +nEc +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +ldF +eQR +bos +iWH +gpO +bos +gpO +nEZ +kcp +bTU +gZK +bTS +lyX +kcp +rMj +ghF +vyB +pHF +lEV +ghF +vyB +ghF +aFG +pPQ +juS +jjl +jjl +jjl +jjl +jjl +kCd +bSv +kBY +bTn +bSv +mVh +mVh +wid +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(73,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +aaf +aag +aag +uDg +cUl +xkc +ode +xkc +gNg +cAR +dRj +yhV +jvc +jEV +cAR +iuE +uwN +vka +pRO +kqy +awz +awz +cZh +cZh +cZh +awz +awz +jfK +wIQ +mPj +omy +sCQ +wIC +wvE +jhI +jfY +bra +wIC +eQm +rXQ +vky +oDh +pdp +xiV +aag +aag +aaf +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +nBJ +nBJ +nBJ +nBJ +nBJ +eQR +ldF +bos +bos +olW +bos +uHT +gUi +kcp +onY +wdf +bTS +kcp +kcp +sDx +ghF +vyB +pHF +lEV +ghF +vyB +ghF +sDx +prl +gNy +fbU +vbZ +qEl +qEl +qEl +vWs +bSv +bSv +bSv +bSv +sGK +mVh +wid +wid +wid +wid +wid +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(74,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +adG +adG +adG +adG +adG +rvI +cYo +ode +gkr +gkr +cAR +cAR +cAR +pKU +vOu +cAR +udK +mwA +lnt +cgO +awz +awz +nID +wPF +eHx +uKd +oER +awz +awz +mgj +wIQ +jHh +jUY +wIC +aWg +jES +vBJ +qTQ +wIC +oDh +pdp +vky +pdp +paJ +tuA +tuA +tuA +tuA +tuA +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +nBJ +ldF +jsE +rdN +eQR +eQR +eQR +ldF +sXq +rdN +rMO +uHT +hfv +kcp +xNz +utK +rKA +kcp +kcp +sDx +hIF +vyB +pHF +lEV +ghF +vyB +kEW +sDx +xHl +vyB +mQd +akn +vTM +vyB +lEV +meE +gGw +mVh +iBu +sGK +mVh +mVh +mVh +sGK +gDX +sGK +wid +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(75,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +aeK +aeK +bur +hdd +akC +akC +akC +akC +uvp +gkr +cAR +pbm +qjK +jvc +dGT +cAR +bmz +wSR +mMV +awz +awz +aJp +jgJ +jgJ +jgJ +jgJ +jgJ +mZb +awz +awz +woy +laO +nRH +wIC +tiF +vAG +opF +pDW +wIC +oDh +lhj +kCi +kCi +kCi +kCi +hjA +nIE +jKn +pyi +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +fwK +cZB +uaG +uaG +uaG +uaG +uaG +uaG +uaG +uaG +bcm +bcm +kcp +kcp +kcp +kcp +kcp +kcp +kcp +sDx +lQB +qax +jTH +gPU +lQB +qax +lQB +sDx +sDx +sDx +sDx +sDx +sDx +sDx +sDx +sDx +sDx +rgt +rgt +sYr +rgt +rgt +rgt +rgt +rgt +ctw +hAh +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(76,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +afa +aeK +bur +wdI +sFf +bbV +bzz +akC +pzc +gkr +cAR +pQI +gym +gSz +cNJ +cAR +pZS +pEB +jUY +qwp +aVI +jmY +rHc +xhZ +xhZ +xhZ +rHc +qyo +udx +qwp +pZS +jHh +jUY +wIC +wIC +vzj +wIC +wIC +wIC +oDh +nYi +kCi +sDD +kOv +cRv +sQF +nIE +jKn +vjg +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +fwK +elY +uaG +sbZ +lxd +dPk +nBV +dyq +rVB +uaG +lYN +byr +aXh +bAQ +aXj +bDH +xyw +bIo +bKt +bLD +aYt +btO +btN +xyw +aYt +btO +aYt +mIz +xyw +bYq +bZi +bZO +caM +aXj +qUh +xyw +ccG +rgt +gMS +vXF +hsc +epk +lwG +uJb +rgt +wRf +hAh +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(77,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +aeK +aeK +bur +xFP +nIt +adu +aHZ +akC +lDT +gkr +cAR +jgR +iAg +vaS +bsF +cAR +vkR +wsD +jUY +qwp +eei +jmY +iwW +sTm +oSq +sTm +tdT +qyo +itX +qwp +vGA +uwN +uVd +wIC +wjY +aTg +rFg +kkv +wIC +pdp +pdp +kCi +uAj +qfa +btD +vmW +nIE +jKn +pyi +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +okd +lql +okd +urk +fmZ +ePq +fmZ +cqd +jhc +eml +btO +aYt +bzQ +bAS +baG +bDI +btO +bhT +bKu +btO +aYt +wqh +bym +brW +brW +bve +bwn +bVM +bVM +bAh +bZj +bVM +bwn +bVM +bVM +bwn +bVM +oTH +kUA +gRJ +mqB +vjG +mqB +oQw +avp +oAa +efk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(78,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +adG +amz +amz +aly +nkx +bbZ +btv +akC +lCm +gkr +cAR +cAR +eLX +vaS +nCD +cAR +kfE +wsD +jUY +qwp +rBx +jmY +iwW +sTm +gwR +sTm +tdT +qyo +pbW +qwp +cDn +uwN +jUY +wIC +lcW +aTg +wIC +wIC +wIC +pdp +iEa +kCi +eqI +ssZ +btD +awC +uMj +uMj +tuA +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +okd +lql +okd +nDb +jhc +ccL +rDf +xZM +mnc +eml +btO +aYt +aYt +aYt +aYt +bdK +aYt +bhU +bjR +aYt +aYt +wqh +bHB +xyw +btO +bcc +aYt +aYt +aYt +bAi +aYt +aYt +aYt +aYt +aYt +aYt +btO +tpG +wdQ +ybP +dhQ +dcx +mLg +wAK +efk +bTz +efk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(79,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aeE +afb +ayq +cfE +cfE +pvP +adu +aHZ +akC +jdn +lgk +hMM +cAR +jlE +cXV +kqd +cAR +xDn +pEB +jUY +awz +wkH +hmS +mWV +jZu +sco +fqO +lIp +hWO +fqc +awz +gGr +jHh +sCQ +wIC +wtY +aTg +jIT +wIC +aCA +pdp +pdp +kCi +nwW +btD +btD +rVN +rVN +vly +ybZ +pun +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +okd +lql +okd +nDb +jhc +jhc +jhc +vOV +eAm +eml +btO +aYu +aYu +aYu +aYu +aYu +aYu +aYu +aYu +aYu +aYu +bwm +bHB +xyw +btO +bSR +aYu +aYu +aYu +aYu +aYu +aYu +aYu +aYu +aYu +aYu +btO +tpG +hbA +uky +mLg +mLg +mLg +wAK +efk +bTz +efk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(80,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aeE +aie +aTy +adu +adu +adu +adu +aHZ +akC +pek +rir +pek +cAR +gdG +kxP +mea +cAR +nNv +pEB +jUY +qwp +wyt +jmY +iwW +dCr +gwR +sTm +tdT +qyo +tsy +qwp +ora +laO +rKQ +wIC +yeR +aTg +nNg +wIC +pjz +uTs +pjz +kCi +nRR +btD +btD +btD +btD +tnb +oit +pun +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +okd +lql +okd +bRt +oGm +hPD +aIy +ekR +gWm +mpV +bvf +bdL +bvf +bvf +bvf +bdL +bvf +bvf +bvf +bvf +bvf +bvf +bIe +baN +bvf +bvf +bvf +bvf +bvf +bvf +bvf +bdL +bvf +bvf +bvf +bdL +bvf +srh +gKo +fsf +fuU +cnI +qfq +vjT +efk +bTz +efk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(81,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aeE +aig +brf +cSC +cSC +nIt +adu +hxG +akC +ibP +loE +cmr +cAR +cAR +cAR +cAR +cAR +xSz +pEB +jUY +qwp +sUE +jmY +iwW +dCr +oSq +sTm +tdT +qyo +tsy +qwp +pZS +jHh +vCx +wIC +wIC +wIC +wIC +wIC +hrI +ioM +xCy +kCi +nNt +vqC +btD +pPN +pPN +gKF +ndZ +pun +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +fwK +jru +uaG +aEf +lxd +cif +jaz +dyq +lxd +uaG +vCg +bHB +xyw +xyw +xyw +bdM +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xpT +xyw +xyw +xyw +bHB +osx +rgt +qTu +wlD +gTk +qSI +lwG +uJb +rgt +oCa +hAh +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(82,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +adG +amz +amz +aly +wmg +adu +cqQ +afT +txy +rbp +cri +euL +hiM +hiM +qRj +xuZ +jnD +wsD +jUY +qwp +iiZ +jmY +rHc +lAy +wjq +wjq +rHc +qyo +tsy +qwp +vGA +uwN +pYX +xuZ +pcj +hXm +fZq +iFA +sLx +twQ +twQ +bpd +bqT +vZv +vjK +awC +uMj +uMj +tuA +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +fwK +cZB +uaG +uaG +uaG +uaG +uaG +uaG +hte +lma +xyw +bHB +xyw +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +puI +aYt +aYt +aYt +aYt +bfY +baR +bfJ +btO +dTI +btO +aYt +xyw +bHB +xyw +bcm +hOV +hOV +hOV +hOV +hOV +hOV +hOV +vVZ +hAh +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(83,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +aeK +aeK +bur +hdd +pvP +adu +frF +akC +oUt +cmr +iPq +aMf +vka +vka +mPj +mIy +eEw +rTk +nRH +awz +awz +fRr +dmv +cHE +dmv +dmv +dmv +olU +awz +awz +vSN +mPj +rWs +inh +ewr +lPC +mgy +qoN +tVx +feG +pPy +kCi +nRR +btM +vjK +dUZ +nIE +jKn +pyi +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +nmp +eWs +usq +rQw +pOH +sbt +smU +nZR +lpl +xyw +bHB +gjm +aYu +ilG +aYt +bfJ +btO +btO +btO +btO +aYt +bcm +bcm +btG +btO +btO +btO +btO +aYt +bBN +bcm +caN +aYu +bcb +bHB +btO +bcm +sCW +nvX +tTC +jdu +tWd +aPe +hOV +ygv +kyP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(84,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +afa +aeK +bur +wdI +aHY +tyK +iKI +akC +akC +aMf +hSv +xoB +xoB +kzy +wIQ +jHh +vka +lnt +ciN +sUg +qwp +vYM +fJm +aAq +iah +mGe +dCx +rpK +qwp +xmg +ggt +wIQ +vka +jHh +lnt +ckP +xTx +xTx +cyv +eKZ +xTx +kCi +cfk +uws +cRv +nwx +nIE +jKn +vjg +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +klT +eWs +njO +riC +eqd +goY +fqJ +nOX +xcV +xyw +bHB +wqh +xyw +bcc +aYt +bfK +aYt +aYt +aYt +aYt +aYt +anW +aYt +aYt +aYt +aYt +aYt +aYt +aYt +btO +sEq +wqh +xyw +bcc +bHB +aYt +bcm +xsQ +tTC +tTC +tTC +tTC +tTC +iho +uKH +kyP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(85,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +aeK +aeK +bur +xFP +akC +akC +akC +akC +ehM +cmr +iPq +oQJ +xoB +xoB +vSN +jHh +lnt +dUE +awz +awz +awz +jKF +awz +rGE +awz +lsp +awz +jKF +awz +awz +awz +sTo +wIQ +jHh +jUY +xTx +xTx +hrI +tVx +feG +bxY +kCi +kCi +kCi +kCi +vmW +nIE +jKn +pyi +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +xzB +bfs +bYW +bYW +bYW +bYW +kNf +vpT +xcV +xyw +bHB +sXB +baH +bcd +bdO +bfL +baH +bjS +bdO +bfL +baH +bjS +bdO +bfL +baH +bjS +bdO +bfL +baH +bjS +bdO +bEA +baH +fVz +bHB +bBN +bcm +uPQ +tTC +tTC +tTC +tTC +gzN +hOV +uXm +kyP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(86,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +adG +adG +adG +adG +adG +ltw +cmr +oRm +cmr +cmr +iPq +oQJ +pcc +xoB +xDn +uwN +wiN +awz +awz +awz +awz +aGb +qVS +aUe +gAl +aVG +aGj +aVR +awz +awz +awz +awz +oWg +uwN +jUY +xTx +lym +hrI +lIQ +noy +rcG +lwY +feG +kfB +tuA +tuA +tuA +tuA +tuA +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +xzB +bfs +qfQ +cJm +jwi +bYW +phw +xMG +xcV +xyw +bHB +aZO +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGF +bHB +aYt +bcm +vKI +tTC +hhd +ybm +ffq +rsV +hOV +mLN +kyP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(87,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +cZe +cmr +lSX +uaA +snx +snx +fLt +cmr +fYr +xoB +pNa +iCu +awz +awz +agb +azC +awz +nne +aGj +oSw +vIu +aVH +aGj +iQj +awz +oQs +nFm +awz +ceE +eMP +faX +xTx +tIX +ioM +abn +ioM +lIQ +qOY +xZH +mSr +nLp +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +xzB +bfs +wVN +qxI +qmM +bYW +wFN +wFN +tGH +hmy +bHB +aZP +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGG +bHB +btO +bcm +kQr +tTC +tTC +tTC +tTC +tTC +hOV +uKH +kyP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(88,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +cZe +cCL +vDz +kcH +kcH +kcH +kcH +kcH +kcH +kcH +kWq +qnh +aVG +awz +afZ +afZ +awz +xTR +awz +cRb +awz +opC +awz +xTR +awz +afZ +afZ +awz +dFR +qnh +ouW +mKq +dHZ +dHZ +aES +aES +aES +aES +lIQ +xZH +nLp +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +onv +bfs +pjh +qxI +qxI +iXm +qxI +qxI +vvX +xyw +bHB +aZQ +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGH +bHB +btO +bcm +qhG +krJ +jOt +tTC +tTC +tTC +hOV +uKH +kyP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(89,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +cZe +cZe +cZe +cZe +iPq +cmr +kcH +kcH +kcH +kcH +xKT +eqN +aBP +aKa +qnh +ewS +oBA +aom +aom +oUG +aom +bzR +qnh +oUG +aKa +bzR +aom +oUG +aom +aom +mJe +iVy +qnh +aKa +rrB +aGr +eDu +tKr +uNg +cLN +aES +hrI +tVx +nLp +nLp +nLp +nLp +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +xzB +bfs +wFi +qxI +dKO +ykv +jPu +qKl +pPd +xyw +bHB +aZR +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGI +bHB +xyw +bcm +gOk +tTC +tTC +tTC +tTC +bjg +hOV +siT +kyP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(90,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aad +aag +aag +cZe +ivu +gSy +ltw +iPq +cmr +kcH +rlf +soq +eYQ +eqN +dmA +hyQ +iur +lTt +haB +dvl +miE +dCK +esF +mQc +mQc +wgk +gaQ +aIl +aGv +aGv +dvl +fYf +uCW +omb +haB +gtp +qfA +tYX +tpD +xfO +iTD +vCO +vCO +jxB +hrI +tVx +hrI +hrI +hrI +nLp +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +dvD +bfs +bfs +sir +bfs +bfs +eWs +eWs +eWs +xyw +bHB +aZO +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGF +bHB +eEc +hOV +hOV +tTC +tSm +tcd +tTC +rsV +hOV +siT +kyP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(91,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aad +aag +aag +cZe +nHu +sit +snx +oVY +cGA +kcH +rBa +nPs +vEj +nPs +rJD +hyQ +fEk +hlU +wVW +feD +azL +aJw +iBY +wVW +wVW +wVW +wVW +wVW +wVW +wVW +dmg +vMI +gII +oPy +wVW +fDU +uiZ +mKq +qCy +rpp +vCO +vCO +vCO +jxB +gUu +dWc +lVW +kcs +rDH +nLp +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +fea +eWs +rsS +xzB +mKs +sCT +rXU +rEt +eWs +wlb +bHB +aZP +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bFJ +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGG +bHB +bGK +rrh +xKG +gyH +rSx +dCz +tTC +lDA +hOV +siT +kyP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(92,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aad +aag +aag +cZe +lSX +nRE +cmr +cmr +sWw +kcH +rIW +oGx +wvU +yiX +nrb +hyQ +aic +aov +wVW +wVW +sEp +wVW +wVW +wVW +swH +ucz +wVW +sSG +sEM +wVW +wVW +wVW +osz +wVW +wVW +aKn +aKz +pQy +jhW +mWD +wmT +jhW +mWD +jxB +xBK +moc +pYQ +tVx +hrI +nLp +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +dvD +kWI +xzB +dvD +ipk +dvD +xzB +dvD +meT +wqh +bHB +aZQ +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGH +bHB +cuy +rrh +iNR +uCR +tTC +tTC +tTC +fca +vjS +xee +kyP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(93,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aad +cZe +cZe +cZe +vfS +cmr +cmr +agj +agj +agj +agj +agj +agj +kcN +kcN +agj +akL +aov +wVW +apo +fHh +wVW +lZs +lVX +sni +ayz +dAX +aQg +vpV +snI +aGp +wVW +aDv +aHK +wVW +aKn +aKy +mKq +aES +aES +aES +aES +aES +aES +aES +aES +nVn +cZO +hrI +nLp +nLp +nLp +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +sGw +xzB +eWs +omx +xzB +rAw +qNK +rEt +sCT +eWs +pyC +bHB +aZR +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGI +bHB +kwQ +rrh +iNR +uCR +rDR +tTC +wyz +gzN +hOV +uKH +kyP +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(94,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aad +tvt +fRg +peM +jUV +cmr +agj +agj +jbN +mTc +hkX +yfG +lxE +kcN +twI +ufL +aic +aov +wVW +arF +alX +auQ +awm +avS +nwD +asR +pbs +pbV +aPB +aJG +aGq +auQ +aIf +aEA +wVW +aKn +iJB +mKq +aVU +aRq +bHG +ceK +sxD +bhJ +bHG +aES +aES +fMU +hrI +dPd +rLH +rwZ +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +sGw +sGw +xzB +eWs +eWs +sOr +eWs +eWs +eWs +eWs +eWs +cCE +bHB +aZO +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGF +bHB +iAw +hOV +hOV +tTC +tTC +tTC +jRp +rsV +hOV +kzs +kyP +kyP +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +"} +(95,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aad +tvt +jhR +fix +pfL +cmr +agj +kyR +agc +qfD +agc +kJm +gFR +kcN +cod +ufL +aic +aov +wVW +arG +alX +lQG +oPE +alZ +auT +aBR +awD +bZJ +aRt +axp +aPI +lQG +aIf +aEB +wVW +aKi +amY +aVg +aVV +aWV +aZy +ceK +aES +bpe +brS +rOs +aES +dWA +hrI +hrI +dPO +rwZ +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +sGw +dvD +xzB +eWs +kRU +dON +oJj +vLp +oYA +gWt +jHt +amo +bHB +aZP +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGG +bHB +btO +xjW +uTk +tTC +tTC +tTC +cyR +tTC +hOV +qpV +hSb +kyP +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(96,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aad +tvt +oyX +vBC +rhm +she +agj +ogK +qgr +agc +agc +kJm +lpg +kcN +yff +ufL +aic +aKq +luZ +alX +alX +avY +alX +alX +alX +vNW +pON +vRb +alX +alX +alX +avY +aIf +alX +eRu +aKq +aKz +mKq +aUk +aWW +aGr +uvt +aES +aES +aES +aES +aES +tPc +jwq +vwU +uew +rwZ +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +sGw +dvD +xzB +eWs +irJ +bKk +kil +vnY +fCG +gYg +jHt +gRP +bHB +aZQ +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGH +bHB +btO +bcm +gBU +tTC +tTC +efJ +tTC +sHe +hOV +uKH +vyr +kyP +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(97,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +cZe +kwg +cmr +cmr +jkq +agj +nCx +tYM +mqb +kDK +jMx +mXj +kcN +kcN +agj +aic +aKq +uTU +alX +alX +aqN +avY +alX +alX +paL +euV +mJu +alX +alX +avY +aqN +aIf +alX +uTU +aKq +aKz +mKq +ceK +lcy +iTw +ceK +sxD +bhJ +bHG +nis +aES +xGF +tVx +jne +rDH +nLp +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +sGw +fzx +dWJ +eWs +yko +qlL +oxz +gnB +vnY +mRH +jHt +xjK +bHB +btO +bdU +aog +bdU +bfV +baM +bkd +bdU +bfV +baM +bkd +bdU +bfV +baM +vbf +vbf +vbf +yeN +gzn +iGQ +bED +baM +bcb +bHB +aYt +bcm +ohI +tTC +tTC +tTC +tTC +tml +hOV +uKH +hZZ +kyP +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(98,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aad +tvt +gJf +cmr +hYE +vAz +agj +nXO +hvH +bVs +hvH +hvH +qBq +xxh +xpi +agj +bFA +aov +wVW +arR +atO +atO +atO +awt +aqN +rKd +aAA +xMB +aqN +ays +atO +atO +cvZ +asN +wVW +aTj +aKz +mKq +bFC +vWA +cqY +ceK +aES +bpe +brS +cpj +aES +hro +tVx +tNB +ioM +rwZ +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +sGw +dvD +nsd +eWs +kqm +vnY +wjL +oGF +gKK +dBR +jHt +bwl +bHB +xyw +puI +aYt +aYt +aYt +puI +aYt +pcl +gHZ +pcl +gHZ +bHD +api +aYt +sIU +gdp +lcV +lcV +hWq +hif +jKz +xyw +bcc +bHB +xyw +bcm +grT +tTC +tTC +ove +tTC +rsV +hOV +siT +bUQ +kyP +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(99,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aad +tvt +hsu +cmr +pFq +iPq +agj +dyj +fnv +bVs +xZG +kYt +mXj +ulo +kJW +agj +aic +aoA +wVW +teY +eVj +aqN +alX +asc +abk +huw +aAB +aBZ +avY +awk +alX +alX +mPn +xMA +wVW +aKo +aKz +mKq +ceK +gUL +hHl +uvt +aES +aES +aES +aES +aES +uhh +cZO +ppG +ioM +rwZ +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +sGw +dvD +kFU +eWs +oUz +mqZ +mqZ +lVZ +ctQ +wer +pKW +wqh +bHB +vpW +eXq +aho +aho +aho +eXq +kqv +pcl +bpj +pcl +gHZ +pcl +fgE +btO +btO +btO +btO +btO +neE +mNm +bEE +rOc +fVz +bHB +vpW +bcm +cKm +tTC +cOh +tTC +tTC +dPq +hOV +siT +xFt +kyP +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +"} +(100,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +bdH +aaa +aaa +aad +tvt +hJD +cmr +fFQ +pMH +agj +mXj +mXj +lul +mXj +mXj +mXj +mXj +mXj +agj +aic +aov +wVW +awA +ayr +awH +aPD +asc +azW +aqN +aAC +aCa +bPs +xUB +gkK +oug +vSl +aGH +wVW +aKn +aKz +mKq +ceK +wVB +psa +ceK +sxD +bhJ +bHG +brS +aES +jrI +tVx +raO +ioM +rwZ +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +sGw +xzB +xer +eWs +uES +xrT +gYj +vnY +ctQ +wer +pKW +wqh +bHB +xyw +aho +vWc +nCj +aEj +aho +aYt +pcl +gHZ +pcl +gHZ +pcl +fNi +aYt +xyw +vAq +hYG +aYt +gGs +aYt +aYt +aYt +jSo +bHB +xyw +bcm +qKb +tTC +xQj +tTC +tTC +uTk +hOV +siT +xFt +kyP +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(101,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aad +cZe +bLc +fOK +pWd +iPq +agj +mXj +pjR +jND +aKk +aKk +szf +faE +mXj +agj +amI +aov +wVW +wVW +wVW +wVW +wVW +rOC +soX +sKI +vHt +aCb +aDv +aEC +wVW +wVW +wVW +wVW +wVW +aKn +aKz +mKq +ceK +lcy +iTw +ceK +aES +tJi +ivf +bpe +aES +pok +tVx +kzc +gen +nLp +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +sGw +nkj +dvD +eWs +rVt +tVZ +bkS +vnY +ctQ +wer +pKW +wqh +bHB +ezQ +eXq +fAa +oYp +oZp +eXq +vvp +aYd +aMY +bqF +gHZ +pcl +oRJ +fTm +fPu +vAq +hYG +hYG +aYt +aYt +gCw +boV +xyw +bHB +aYt +bcm +jNG +tTC +vMb +xYE +iuI +lDA +hOV +siT +fFU +kyP +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(102,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +bdH +aaa +aad +tvt +nCM +cmr +wKb +pri +agj +qlI +cdB +xjt +coD +agc +ako +tYM +gLN +agj +aic +acS +wVW +asQ +awG +ayI +wVW +wbX +avY +avY +aAE +avY +wlE +gvq +wVW +lrW +mqh +vHW +wVW +ccg +aKz +mKq +ceK +rFs +gek +uvt +aES +aES +aES +aES +aES +gBd +tVx +fjz +hPu +rwZ +ajZ +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aac +aaf +aag +aag +sGw +vEI +dvD +eWs +nCe +tVZ +bkS +bfO +tWL +aLx +jHt +mVE +rgy +baN +anU +gEg +imy +gEg +dRD +bdV +bvf +tQL +bDn +bGu +bvf +fKt +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xxI +xyw +bHB +btO +bcm +bcm +bcm +bcm +bcm +hOV +pIC +hOV +qpV +nGk +kyP +aag +aag +aaf +ajY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(103,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +bdH +aaa +bdH +bdH +bdH +bdH +aaa +aad +tvt +mPw +cmr +wGa +bAy +agj +eBE +hvH +agc +rNa +pxG +fOv +agc +agc +agj +aic +sxW +wVW +jSc +atN +cEl +sOi +aqN +aqN +ixv +ixv +ixv +aDv +aqN +atP +aHR +aJI +wFn +wVW +aKn +aKz +mKq +bFC +jUb +qjz +ceK +sxD +bhJ +bHG +gCP +aES +imt +noE +dcT +hrI +rwZ +ajZ +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +sGw +oGf +dvD +eWs +jkY +ktI +xPn +xyQ +ixT +hBG +ngK +sqa +hBF +hCt +eXq +qYN +lsD +lkf +eXq +ooh +pcl +gHZ +pcl +aMY +pcl +xNb +aYt +fPu +leg +hYG +hYG +aYt +aYt +wFz +bAi +xyw +bnH +btO +cdA +lRX +rux +sEt +bcm +qyG +bUQ +bUQ +siT +bUQ +kyP +aag +aag +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(104,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +bdH +aaa +bdH +bdH +bdH +bdH +bdH +aad +tvt +qwY +cmr +cmr +mVA +agj +kSH +hvH +nTA +kWR +agc +aiW +xyk +xyk +mDX +aTl +dLe +wVW +atx +qEk +ajm +wVW +arP +alX +azZ +aAF +azZ +aIf +hkG +wVW +fvB +qEk +iaa +wVW +aKn +aKz +mKq +oKx +tVh +psa +ceK +aES +mhm +brS +bpe +aES +ioM +cZO +pfD +pfD +rwZ +ajZ +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +sGw +fzT +dvD +eWs +qmh +qmh +jHt +wSQ +rOv +wer +pKW +wqh +bHB +xyw +aho +dkj +xnZ +gYt +aho +aYt +pcl +gHZ +pcl +gHZ +pcl +uuu +fTm +xyw +lqK +hYG +hYG +hYG +aYt +aYt +bFP +xyw +bHB +btO +cdA +myo +dtH +eyR +bcm +rQs +xFt +bUQ +uKH +gsp +kyP +aag +aag +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(105,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aad +cZe +cZe +cZe +tiX +vcI +agj +ikQ +hvH +agc +qlp +pxG +tTk +agc +agc +agj +fXP +aov +wVW +atx +qEk +ato +wVW +aKF +alX +hxm +deD +tUo +aIf +aEB +wVW +fvB +qEk +iaa +wVW +aKn +aKz +mKq +aWk +aWW +aGr +uvt +aES +aES +aES +aES +aES +ied +cZO +nLp +nLp +nLp +ajZ +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +sGw +iPf +klT +eWs +vHp +gJp +qmh +wSQ +rOv +wer +pKW +wqh +bHB +vpW +eXq +aho +aho +aho +eXq +kqv +pcl +gHZ +pcl +gpi +pcl +oJp +bvf +kRP +bvf +bvf +bvf +egp +ptv +qXZ +vsF +bGJ +hBF +vxb +bcm +mhd +aYt +tuN +fPn +xFt +xFt +bUQ +uKH +eLC +kyP +aag +aag +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(106,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +bdH +bdH +aaa +aad +aag +aag +cZe +cmr +iNk +agj +muV +hvH +qck +eRi +agc +tan +kDK +iEz +agj +aic +aov +wVW +ssW +qEk +hrm +wVW +rOC +aqN +tCT +tCT +tCT +aDv +aEC +wVW +dNZ +qEk +mje +wVW +aKn +aKz +mKq +aWq +aXb +aGr +ceK +sxD +bhJ +bHG +cWy +aES +hrI +tVx +nLp +aag +aag +ajZ +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +sGw +cqp +xzB +smH +vnY +asE +qmh +wSQ +vop +tgy +jHt +vPM +bHB +xyw +anW +aYt +aYt +aYt +anW +aYt +pcl +gHZ +pcl +gHZ +pcl +brY +aYt +cSx +nPB +hYG +ggh +gRd +hif +jRS +xyw +bGK +bHB +btO +cdA +omP +aYt +bOC +bcm +bUQ +xFt +bUQ +uKH +rVc +kyP +aag +aag +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(107,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aad +aag +aag +cZe +huD +vAz +agj +mXj +fnv +hvH +hvH +iNY +hvH +hmV +mXj +agj +aic +aoA +wVW +atx +jvX +ato +wVW +vTu +alX +alX +avY +alX +aIf +aED +wVW +cWw +jvX +iaa +wVW +aKn +aKy +mKq +aWt +ceK +ceK +eua +aES +eBd +brS +cpj +aES +luE +wgO +nLp +aag +aag +ajZ +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +sGw +jOq +xzB +eWs +nso +jdZ +pqM +bZS +rlD +uUf +jHt +kCm +bHB +btO +bea +aoN +bea +bfZ +baS +bkh +bea +bfZ +baS +bkh +bea +bfZ +baS +bkh +ohE +vWJ +qUL +txO +mwQ +bEK +baS +bGL +bHB +aYt +cdA +ivg +llO +kSv +bcm +emC +dZZ +xmn +uKH +xFt +kyP +aag +aag +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(108,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aad +aag +aag +cZe +pcf +vAz +agj +agj +agj +agj +agj +agj +agj +agj +agj +agj +fEk +hlU +wVW +wVW +wVW +wVW +wVW +aCf +kcx +aCf +wVW +aCf +wpt +aCf +wVW +wVW +wVW +wVW +wVW +fDU +uiZ +mKq +mKq +kqt +aVX +aES +aES +aES +aES +aES +aES +hXD +tYV +nLp +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +sGw +dvD +qig +eWs +eXq +adR +eXq +aho +aho +aho +eXq +hmy +bHB +aZV +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGM +bHB +aqs +bcm +bcm +wXT +cdA +bcm +bcm +emC +emC +mTL +xFt +kyP +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(109,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +cZe +uTE +fZy +gpY +uBi +wYA +awW +awW +awW +awW +aSJ +goj +kAh +aic +aBW +aom +nmh +eco +vdL +laV +aqF +alX +alX +xQa +alX +aIf +aBS +laV +whB +gio +nmh +aKf +aKu +aKz +vjb +cZb +aXe +baw +oxu +baw +baw +oaK +nUn +pgD +tVx +hrI +nLp +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +sGw +dvD +dvD +eWs +abG +aeh +afy +xWp +aAL +aBt +ajM +aXh +bHB +aZW +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGN +bHB +xAY +gHZ +wlK +aYt +aYt +aYt +lrX +bcm +jGQ +siT +fFU +kyP +aag +aag +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(110,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +aag +aag +cZe +cmr +vAz +gpY +uac +vFw +ajf +ajf +ajf +ajf +oAO +oEf +aVW +vta +aBH +aKv +aKv +aKv +aKv +bYY +aCj +ayK +aAd +aAP +hvv +ayu +aCj +bYY +aKv +aKv +aKv +aTa +aTk +mtM +rmD +aWz +aZC +aZz +aZz +aZz +aZz +wUP +lrF +pgD +cZO +hrI +nLp +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +sGw +dvD +klT +eWs +abH +aer +agf +ais +aoL +akz +ajM +caM +bHB +aZX +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGO +bHB +xAY +gHZ +qCG +btO +btO +btO +uII +fPn +htq +siT +nGk +kyP +aag +aag +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(111,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +abs +abs +abs +abs +abs +abs +abs +abs +cZe +aMf +wby +gpY +mto +acW +awW +awW +oGC +oGC +aSJ +goj +iff +bYz +aBX +rqb +aJw +aBX +aBX +laV +asc +ayL +aAf +aLM +wlE +alX +awk +laV +aBX +aKa +aJw +lLS +aKq +cPg +wPf +cZb +aXe +iVE +baw +baw +baw +sgU +baw +pgD +cyv +eKZ +nLp +tQV +tQV +tQV +tQV +tQV +tQV +tQV +tQV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aac +aaf +aaf +aag +aag +aag +aag +sGw +dvD +sZc +dGP +acq +aeJ +azl +ahV +khD +rYJ +ajM +xyw +bHB +aZY +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGP +bHB +xAY +gHZ +xJR +aYt +aYt +puI +iWx +bcm +ymg +uKH +bUQ +kyP +aag +aag +aag +aag +aaf +aaf +ajY +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(112,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +abs +adq +aeW +ajD +anM +oGC +add +aSA +bvb +afr +ajI +pYu +awW +acW +add +ryG +ohB +aiX +awd +awd +awd +awd +awd +awd +awd +awd +awd +wVW +ayv +ayM +aAj +aBI +aCk +aDK +aEG +wVW +awF +aIQ +awF +ecr +aJc +ecr +ecr +ecr +ohS +aET +nUv +aJU +aJU +sgU +baw +dqb +tiW +goL +mor +iKK +aJU +baw +mAp +mAp +lVl +pgD +tQV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +aag +aag +aag +aag +aag +aag +sGw +dvD +iQJ +eWs +acu +aeh +afF +xWp +azJ +bLP +eXq +eVm +bHB +aZV +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGM +bHB +tIS +bcm +bcm +wXT +cdA +bcm +bcm +bcm +emC +wuh +fgU +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(113,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +abs +adq +aea +ajE +awW +awW +add +aSJ +awW +bZe +ajI +awW +awW +acW +qdQ +eFT +hhA +weD +unT +kng +fDV +aiX +aiX +tAL +awX +tAL +awX +wVW +wVW +wVW +lMF +jnX +rdz +wVW +wVW +wVW +cbF +aGZ +awF +cST +aTz +aUl +aET +esC +nsQ +aET +mSi +wHp +gZw +sgU +baw +baw +tiW +nig +baw +aXe +aJU +baw +baw +baw +cxk +pgD +tQV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +aag +aag +aag +aag +aag +aag +sGw +nHX +cEA +eWs +acM +aer +agf +ais +xWp +aBw +ajM +xyw +bHB +aZW +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bFR +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGN +bHB +btO +cdA +apE +icp +fER +bcm +emC +hVL +bUQ +uKH +hSb +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(114,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaC +abs +adq +aoy +awW +awW +awW +add +aoI +awW +aeZ +ajI +awW +uzy +abB +add +add +add +weD +nwL +amh +nwL +aiX +wbO +avU +avU +mKN +wEw +kOB +awZ +aiX +wLC +mGb +uOh +awF +aEM +aGV +rvA +aKE +awF +jzE +aUw +aUm +aET +aET +aET +aET +nUv +aJU +aJU +pIV +baw +baw +tiW +tTu +baw +gnv +aJU +baw +baw +baw +ciQ +pgD +tQV +aaC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +aag +aag +aag +aag +aag +aag +sGw +xzB +hRA +eWs +acZ +aeN +azl +ahS +ajA +akz +ajM +xyw +bHB +aZX +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGO +bHB +aYt +cdA +uiT +aYt +jyR +bcm +fUZ +xFt +bUQ +uKH +eyM +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(115,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaC +abw +adr +awW +ajH +ajf +abf +aEQ +ajf +ajf +ajf +teo +abf +ajf +evX +aeZ +aka +aoI +weD +fdE +amh +amh +aiX +cJu +pXx +pXx +pXx +pXx +jrm +evg +aiX +iiU +eAx +cmS +awF +aFg +aGY +rvA +aKN +awF +cbm +aUw +aUm +aUw +aRv +pPv +aET +nPa +yhI +tTu +gVF +aZz +cts +tvw +aZz +aZz +aZz +ejY +cts +aZz +kyX +baw +gCf +trb +aaC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +aag +aag +aag +aag +aag +aag +sGw +xzB +ghA +eWs +vhw +khD +azw +xWp +aAK +aBz +ajM +aXj +bHB +aZY +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGP +bHB +vxb +bcm +apL +aYt +iKb +bcm +umk +xFt +bUQ +siT +qBl +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(116,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaC +abw +adP +awW +acW +awW +add +add +add +stu +add +add +add +oMQ +evX +afr +akc +buc +weD +jMm +pcG +iFn +qnD +amh +kWT +wUR +wUR +wWC +auZ +aiX +aiX +qmK +oIp +pTS +awF +hRk +aGY +rvA +aKO +awF +aRx +aRx +aUo +aVi +pbp +pMj +awS +lWr +csI +goL +sgU +baw +aJU +aJU +aJU +tBu +aJU +aJU +aJU +hEV +eBe +baw +xYQ +trb +aaC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +aag +aag +aag +aag +aag +aag +sGw +nkj +rjF +eWs +eXq +eXq +eXq +eXq +eXq +eXq +eXq +mrD +bHB +aZV +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGM +bHB +btO +cdA +uiT +aYt +xNj +bcm +hSb +xFt +bUQ +uKH +pTX +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(117,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaC +abs +adq +dpo +ajI +add +add +aFJ +aTf +aTf +aTf +iZP +add +add +ajI +add +add +gqP +aiX +aiX +aiX +aiX +aiX +oqw +lvA +osT +cZV +pQV +apq +ana +aiX +gwh +oIp +qUK +awF +gyh +lmA +rvA +aqm +awF +dOl +aTA +aUp +qVC +aUw +jmP +awS +xhn +aJU +aJU +tiW +aJU +qQp +xAI +kiT +kiT +kiT +gjq +aJU +aJU +tiW +msg +pgD +tQV +aaC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +aag +aag +aag +aag +aag +aag +sGw +xzB +oes +eWs +aRu +aRu +aRu +aRu +aRu +aRu +bcm +aXj +bHB +aZW +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGN +bHB +btO +cdA +fpW +llO +vml +bcm +emC +rVc +rVc +uKH +nBF +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(118,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaC +abs +adq +myl +ajI +add +fsU +aHU +aTm +xxB +aTm +jgF +fsU +add +ajI +add +add +add +gzI +fdE +mLz +iFn +alw +amh +dGr +rtY +fJy +xQg +wWC +szO +aiX +jkT +oIp +fNX +awF +awF +aEW +aHX +aEW +awF +aRB +qVC +wvb +eem +aUw +aUw +awS +nJs +aJU +aJU +tiW +aJU +gBW +ouQ +iun +sfA +vPm +qys +gBW +aJU +tiW +qgU +pgD +tQV +aaC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +aag +aag +aag +aag +aag +aag +sGw +dvD +oes +eWs +aRu +aRu +aRu +aRu +aRu +aRu +bcm +xyw +bHB +aZX +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGO +bHB +uAb +bcm +emC +hvx +emC +emC +emC +emC +emC +qpV +bUQ +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(119,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaC +abw +aee +avd +acW +awW +auK +aIr +aTm +cpP +aTm +juX +scu +awW +acW +aeZ +aka +aoI +gzI +nwL +mfQ +nPx +aiX +amd +dXY +fmB +umS +yjM +qbO +aqw +hnI +dME +oIp +oGI +waP +awF +nvG +vGI +aLp +awF +jss +aTB +aUq +aVk +ldC +vkb +aET +eFM +yhI +tTu +sgU +baw +lRE +tuf +vbB +aqB +vbB +mlz +sOy +baw +sgU +xVF +njD +trb +aaC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +aag +aag +aag +aag +aag +aag +sGw +dvD +iQJ +eWs +aRu +aRu +aRu +aRu +aRu +aRu +bcm +hmy +bHB +aZL +baX +bcw +beg +bgj +baX +bks +beg +bgj +baX +bks +beg +bgj +baX +bks +beg +bgj +baX +bks +beg +bEN +baX +bcp +bHB +xAY +aYz +emC +bUQ +wDP +mHF +hhg +emC +qBl +uKH +bUQ +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(120,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaY +abw +aec +avd +acW +awW +avc +aIv +aTm +cpP +cbM +jzZ +sLo +awW +acW +afr +akc +xVI +gzI +aku +eGH +qnl +aiX +apt +sCI +pWN +uTN +aqy +nBE +pOD +bZa +voj +sUS +oGI +qUu +awF +aHn +szU +fGa +awF +aRC +aUw +aUw +aUw +aUw +jmP +aET +dSp +csI +goL +sgU +baw +hJk +yac +vbB +aqB +vbB +fDS +iLd +baw +sgU +xVF +dLz +trb +aaC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +aag +aag +aag +aag +aag +aag +sGw +xzB +oes +eWs +aRu +aRu +aRu +aRu +aRu +aRu +bcm +xyw +bHB +wqh +xyw +bcc +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +wqh +xyw +bcc +bHB +xAY +aYz +emC +vFI +xFt +xFt +bUQ +wdG +xFt +siT +nGk +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(121,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaY +abs +adq +tGj +ajI +add +fsU +aHU +aTm +fnk +aTm +jgF +fsU +add +ajI +add +add +vmN +aiX +aiX +aiX +aiX +aiX +awq +lvA +pQV +mHO +aiX +aiX +aiX +aiX +diw +oIp +wCn +tsr +tsr +tsr +tsr +tsr +tsr +aRE +qVC +qVC +prE +aUw +aUw +awS +nJs +aJU +aJU +tiW +aJU +gBW +ouQ +vbB +aqB +tBq +qys +gBW +aJU +tiW +bpw +pgD +tQV +aaY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +aag +aag +aag +aag +aag +aag +sGw +fzx +cEA +eWs +aRu +aRu +aRu +aRu +aRu +aRu +bcm +bGQ +bHB +tdc +rOc +bcx +bPr +bPr +bPr +byv +bdI +rBb +ehi +mha +kTY +ehi +mha +rBb +bdI +bPr +bPr +bPr +byv +bEO +rOc +fVz +bHB +uII +ruz +emC +jev +aML +xFt +oFn +emC +jaI +siT +xFt +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(122,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaY +abs +adq +aeY +ajI +add +add +aIw +aUa +aUa +aUa +jAz +add +add +ajI +add +add +add +rwY +fdE +feS +iFn +alw +kFe +mJL +qbO +wbu +aiX +aKG +amb +aiX +hOd +oIp +qUK +tsr +sOL +jIC +lFr +wTu +tsr +aSq +aTE +aTE +aTE +aTE +jLs +awS +nJs +aJU +aJU +tiW +aJU +aJU +gLE +pNM +pNM +pNM +hHr +aJU +aJU +tiW +usm +pgD +tQV +aaY +bdH +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +aag +aag +aag +aag +aag +aag +sGw +xzB +rsP +eWs +aRu +aRu +aRu +aRu +aRu +aRu +bcm +bGR +bHB +xyw +bkA +bkA +bkA +bkA +bkA +bkA +bkA +baZ +qOf +rIj +baZ +qOf +bqH +baZ +gfW +gfW +gfW +gfW +gfW +gfW +gfW +xyw +bHB +uII +wrT +emC +fqb +ury +dFW +mvi +emC +daF +siT +fFU +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaY +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(123,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaY +abw +adP +awW +ajT +aoC +add +add +add +stu +add +add +add +awW +acW +aeZ +aka +aoI +rwY +nwL +amh +nPx +aiX +aiX +uOJ +pqc +pqc +aqz +aKH +and +aiX +aaE +oIp +dME +fyT +xIV +xIV +edV +reM +tsr +aSt +aTE +aTE +aTE +aTE +qdA +awS +tvQ +yhI +tTu +sgU +baw +aJU +aJU +aJU +nnX +aJU +aJU +aJU +baw +sgU +baw +xYQ +trb +aaY +bdH +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +sGw +sGw +sGw +sGw +sGw +sGw +sGw +dvD +iOX +eWs +aRu +aRu +aRu +aRu +aRu +aRu +bcm +xyw +bHB +xyw +bkA +bnj +kPx +bgk +biq +dvg +nvM +bnI +qjN +qjN +rdS +qjN +qjN +tGh +gfW +sgj +bDv +bDv +bDv +bEP +gfW +bGQ +bHB +qnd +lFp +lFp +lFp +lFp +lFp +lFp +lFp +ljm +siT +xFt +kyP +kyP +kyP +kyP +kyP +kyP +kyP +ajZ +aaY +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(124,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaY +abw +adr +awW +ajV +ajf +abf +aEQ +ajf +ajf +ajf +aEQ +abf +ajf +evX +afr +akc +buc +rwY +akv +eGH +qnl +aiX +fuz +pLW +sht +wex +aiX +aiX +aiX +aiX +qIF +oIp +aPV +tsr +iPN +dbX +rGL +cyL +tsr +aSx +aTE +aTG +aVr +aUC +tTD +aET +ngf +bAH +goL +gVF +aZz +cts +ejY +aZz +aZz +aZz +ejY +cts +aZz +nsc +ltA +gCf +trb +aaY +bdH +bdH +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +sGw +lrH +dvD +xzB +xzB +xzB +dvD +dvD +wsz +eWs +aRu +aRu +aRu +aRu +aRu +aRu +bcm +aYu +wTg +bGq +bkA +bcz +bej +bej +bej +bzS +nvM +vyu +qjN +qjN +qjN +qjN +qjN +bei +gfW +bkN +ezG +fdZ +bzg +pqi +gfW +rHw +wTg +aYu +lFp +ddw +gHl +kjD +gHl +qoL +lFp +hSb +siT +xFt +bUQ +bUQ +gQQ +bUQ +cOt +uSU +kyP +ajZ +aaY +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(125,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaY +abs +adq +aoy +awW +awW +awW +add +apg +awW +afr +add +awW +awW +abB +add +xWO +aiX +aiX +aau +aau +aau +aau +uVX +ase +sht +uOJ +aqz +mBe +atT +aiX +bhR +oIp +mYA +tsr +tsr +vOY +tsr +tsr +tsr +lIj +mVF +lIj +lIj +lIj +lIj +lIj +pgD +nUv +aJU +pIV +baw +baw +aJU +goL +baw +vpn +aJU +baw +baw +baw +ciQ +pgD +tQV +aaY +bdH +bdH +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +sGw +xzB +xzB +dvD +dvD +sZc +abj +mUE +coo +lnu +lnu +lnu +lnu +lnu +aRu +aRu +bcm +aZZ +aYC +aZZ +bkA +bcA +bgm +bgm +bgl +bpz +biu +kdB +kdB +udr +bqL +bqL +bqL +bqL +bkz +uSS +pIU +uSS +uDA +bER +gfW +aZZ +aYC +aZZ +lFp +mgd +wfn +aId +aId +poA +lFp +hSb +uGU +kGi +kGi +khI +kGi +kGi +kow +qBl +kyP +ajZ +aaY +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(126,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aaa +abs +adq +aeX +awW +awW +awW +add +aSJ +awW +bZe +add +awW +awW +acW +qdQ +muq +aiX +aiX +aau +dBs +dBs +aau +fuz +tld +uOJ +mHO +aiX +asf +atT +aiX +hOd +lSN +qUK +lIj +tBY +gkE +cTM +rqD +pcY +srO +srO +lWO +wjQ +uag +uag +jnh +pgD +lza +gZw +gVF +kuk +baw +aJU +nig +baw +aXe +aJU +baw +baw +baw +cxk +pgD +tQV +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +dvD +dvD +eWs +jri +iOX +kIl +jmz +hsK +lnu +bjZ +bjZ +bjZ +lnu +sGU +wfE +wfE +yap +bqg +eIO +bkA +eFG +bej +arX +vSG +iag +nvM +qOZ +qjN +gGJ +ham +qjN +qjN +oWf +gfW +xgJ +fdZ +bnS +fdZ +tzx +gfW +rZt +qyP +tuC +lFp +lGg +aId +aId +aId +jFx +nmY +nmY +nmY +nmY +nmY +nmY +nmY +nmY +siT +bUQ +kyP +ajZ +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(127,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aaa +abs +adq +awW +awW +awW +oGC +ryG +aVL +bBl +aeZ +ryG +oGC +awW +acW +add +bny +aiX +aiX +aiX +vwV +vwV +aiX +aiX +aiX +sHM +kUh +aiX +aiX +aiX +aiX +wmo +icQ +pwl +lIj +lIj +dvZ +lIj +lIj +lIj +lIj +lIj +lIj +lIj +lIj +lIj +tWF +pgD +nUv +aJU +sgU +baw +baw +aJU +bnZ +cIe +jez +aJU +baw +baw +baw +baw +pgD +tQV +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +dvD +dvD +wfE +wfE +rXv +wfE +wfE +wfE +wfE +kox +kox +kox +wfE +bsD +btr +wfE +kLE +lIu +kLE +bkA +bcC +bej +tzO +fVG +qpQ +nvM +qOZ +qjN +sld +ham +ham +qjN +oDY +wCi +eTC +fdZ +ixj +fdZ +uey +gfW +kSA +tpB +kSA +lFp +xDF +eRS +aId +aId +tMc +nmY +ouw +jDP +aId +xHS +tEd +vjW +nmY +siT +bUQ +kyP +ajZ +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(128,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aaa +abs +adq +aei +aka +aWn +gLl +gLl +gLl +gLl +gLl +gLl +oGC +awW +acW +awW +awW +awW +fSm +hiy +esQ +iKy +iKy +oyB +iKy +dME +dME +gJC +iKy +udv +iKy +iKy +gji +iKy +iKy +udv +oGW +gJC +iKy +iKy +iKy +iKy +oyB +iKy +kmT +pEY +jsP +baw +fGg +baw +sgU +baw +baw +vIo +vIo +vIo +vIo +vIo +vIo +gnv +yhI +tTu +pgD +tQV +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +dvD +dvD +wfE +mcL +jOo +wrC +mHx +pqX +evC +xbk +wFR +wFR +bmF +wFR +xbk +aWw +cJK +oGL +hOu +bkA +eUn +bcD +qpx +bet +bgu +nvM +qOZ +qjN +gGJ +ham +qjN +qjN +qyD +wCi +blZ +bqN +nTo +bqN +bwR +gfW +oJL +jMa +cVt +sHm +ddM +hZe +aId +aId +rNK +nmY +nmY +nmY +dZu +dKK +dKK +xry +nmY +siT +bUQ +kyP +ajZ +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(129,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aaa +abs +adq +afr +akc +apg +gLl +mis +mis +mis +yjr +gLl +aea +oGC +xjD +ajf +ajf +ajf +oAO +pIZ +nsr +fSx +tTZ +tTZ +tTZ +dNj +tTZ +tTZ +pcs +fCW +fCW +tTZ +bjv +tTZ +dNj +dNj +ubv +plK +plK +tuX +plK +plK +plK +fSx +xFx +tFW +dGC +aZz +aZz +aZz +nsc +baw +cxk +vIo +ojX +ojX +ojX +mxo +vIo +crh +csI +qhb +pgD +tQV +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +xiH +xzB +wfE +dgl +jOo +xbk +mub +mub +mub +xbk +rkz +esM +esM +uUi +xbk +aWw +gtD +uRD +wru +bkA +hGh +hGh +bcK +hGh +hGh +bkA +vwF +nEJ +ben +qjN +qjN +qjN +hpN +gfW +omo +wkc +gfW +uFo +omo +gfW +eWx +lLO +juo +otq +gJO +pwG +aId +aId +wUK +dDM +vPR +nmY +aId +vXf +qGw +uZV +nmY +uKH +bUQ +kyP +ajZ +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(130,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aaa +abs +adq +nfC +akt +awW +gLl +mis +mis +mis +mis +gLl +oGC +sHp +oGC +awW +awW +awW +aSJ +isI +gvu +xCB +nyK +llo +epT +llo +llo +pub +llo +llo +llo +llo +aVK +llo +pub +llo +llo +llo +llo +llo +epT +llo +aWM +xCB +tJm +dCD +aXe +baw +baw +baw +mnA +baw +baw +vIo +ojX +ojX +ojX +ojX +vIo +baw +sMM +rSH +pgD +tQV +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +jOq +xzB +wfE +krp +jOo +aGn +oDv +wFR +gxO +vnD +wFR +wFR +wFR +soA +xbk +wfE +xos +uRD +qPk +bCd +iey +baf +kws +vSn +vSn +mvI +lqF +qjN +gGJ +qjN +qjN +qjN +pjw +qdz +bmb +bsj +bPk +bsj +byb +bCd +knm +lLO +knm +yfy +ruL +qUZ +aId +hJI +vwY +uIA +acd +ruL +aId +kyh +dKK +xry +nmY +qpV +hNh +kyP +ajZ +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(131,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aaa +abs +aec +avd +akt +awW +qHq +mis +mis +mis +mis +gLl +eHX +gLl +gLl +gLl +gLl +gLl +gLl +gLl +gvu +xCB +tJm +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +hwB +xCB +kaj +vIo +vIo +vIo +vIo +vIo +vIo +xDy +vIo +vIo +ojX +ojX +ojX +ojX +eOM +baw +sMM +xVF +dLz +tQV +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +eoE +xzB +wfE +eiP +qOp +rOJ +vYm +vYm +vYm +fsp +qtv +qtv +qtv +xFZ +btx +naV +pij +kJh +qPk +bCd +tmg +qjN +qjN +qjN +qjN +qjN +qjN +qjN +gGJ +qjN +qjN +qjN +qjN +tzP +tzP +qjN +qjN +tzP +wYK +bCd +knm +lLO +knm +yfy +ruL +gsd +aId +oqt +wCk +aId +lab +ruL +aId +hgD +pSQ +dOe +nmY +rEK +bba +kyP +ajZ +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(132,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aaa +abs +adq +aGP +aka +aWu +gLl +mis +mis +mis +mis +gLl +lNL +kUJ +qgn +eIf +mfL +hto +qhg +gLl +pzw +xCB +tJm +aoe +aoh +jHQ +jkl +jkl +jkl +wDH +dSJ +hQU +pjF +mcW +vih +aoe +imp +fYb +cnV +isN +cnZ +aoe +gvu +xCB +tJm +vIo +giD +giD +wrI +lST +wrI +pep +mCJ +vIo +ojX +ojX +ojX +ojX +vIo +hWB +yhI +qSX +pgD +tQV +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +jIJ +xzB +wfE +fHz +opD +aGn +nTZ +wFR +lah +vnD +iRy +esM +esM +jpt +xbk +aWw +qPk +hKe +uJM +baZ +bep +qjN +qjN +qjN +cle +qjN +qjN +qjN +gGJ +qjN +qjN +qjN +qjN +qjN +cle +qjN +qjN +qjN +imo +baZ +sbE +lLO +knm +yfy +ruL +xPq +aId +vjv +gOR +aId +ary +nmY +nZm +smW +prP +xXl +nmY +idL +gnM +kyP +ajZ +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(133,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aaa +abs +adq +aGQ +akc +apg +gLl +mis +mis +mis +mis +gLl +gtI +utp +cZq +xBW +cZq +utp +gtI +kYF +dME +nbH +tJm +aoe +vbS +arb +aoq +aoq +aoq +aoq +arb +ccs +aoq +aoq +aoq +aor +aEi +aEi +cnW +aEi +coa +aoe +lXR +nbH +dME +lST +wrI +pep +pep +vIo +fzt +wrI +wrI +vIo +ojX +ojX +ojX +ojX +vIo +wvj +csI +iPH +pgD +tQV +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +xzB +dvD +sGU +iYx +opD +xbk +msZ +msZ +msZ +xbk +wFR +ldt +nEF +tXi +pcE +aWw +qPk +hKe +qPk +hqW +qjN +qjN +hDX +bei +xgh +mlH +cAF +eEk +kDR +maI +ujz +ljO +kdB +bmO +xgh +mlH +hDX +qjN +qjN +jpp +knm +lLO +knm +hnP +lFp +xlO +aId +oqt +iXA +aId +oZy +naw +npA +oqt +oEy +qmY +tUN +siT +lZb +kyP +ajZ +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(134,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abs +aee +avd +akt +qWI +gLl +gLl +gLl +gLl +gLl +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +lXR +nbH +tJm +aoe +qQc +fXg +dfa +dfa +dfa +dfa +dfa +gzK +arb +arb +arb +aor +sKa +sKa +jBy +aEi +fFh +aoe +gvu +nbH +tJm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +vIo +vIo +vIo +vIo +vIo +ehj +irS +ilJ +njD +tQV +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +xzB +dvD +wfE +gww +opD +wFR +wFR +aqn +arT +xbk +jfZ +kqK +ljf +maL +uKe +aWw +qPk +ckh +gyn +vcq +qPS +qPS +qim +qPS +vln +mKw +rcx +kan +ojZ +toS +ojZ +kan +leY +tYi +uYa +bqL +iaF +bqL +bqL +ocf +wwE +sAD +cIO +tAb +vpe +dxT +olN +jDk +uNq +tOu +qyK +mkn +tHQ +uxX +oZy +orN +nmY +lQf +tHk +kyP +ajZ +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(135,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abs +adq +nAv +akt +awW +gLl +vHP +wQI +cIS +cIS +gxm +sWb +sWb +sWb +dkO +aps +aps +aps +gxm +gpp +xCB +tJm +aoe +vbS +koB +asU +asU +asU +asU +arb +fEC +aoe +aoe +aCw +aoe +aoe +aoe +aoe +hFF +aoe +aoe +gvu +xCB +tJm +gxm +aiJ +aiJ +aiJ +qYr +kEA +kEA +kEA +gxm +qTA +bMZ +pep +qTA +vIo +baw +sMM +noO +pgD +tQV +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +nkj +dvD +wfE +rYi +opD +wFR +wFR +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +qPk +hKe +uJM +baZ +eyQ +qjN +qjN +qjN +qjN +gGJ +bqR +vhX +gls +cAm +bwH +vhX +xqv +gGJ +qjN +qjN +qjN +qjN +xtM +baZ +sbE +jZe +cbL +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +iZE +oqt +oZy +qhD +nmY +siT +xFt +kyP +ajZ +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(136,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abs +adq +aWm +aka +kyY +gLl +lfZ +lWS +gtI +gtI +gxm +sWb +sWb +sWb +vQe +aps +aps +aps +gxm +sHC +nbH +tJm +aoe +aop +koB +jkl +jkl +jkl +jkl +arb +ayW +aoe +lFn +imp +kEp +aoe +tsC +uRt +aQz +aRJ +ajl +gvu +nbH +tJm +gxm +aiJ +aiJ +aiJ +str +kEA +kEA +kEA +gxm +bMZ +pep +pep +osr +vIo +rQW +yhI +rRz +pgD +tQV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +xzB +dvD +wfE +cVK +opD +oRO +ren +wDr +aeL +aeL +aeL +oLj +wNG +wNG +wNG +wDr +qZT +pSF +eZC +bCd +mlH +bqR +cle +tYw +tlA +nyj +vVW +vhX +ctJ +rlZ +pGE +vhX +jCK +nyj +tlA +bwT +cle +bCe +sdO +bCd +hBW +dxJ +rdT +wDr +mQx +mQx +mQx +jsa +azy +azy +azy +wDr +kJH +oqt +qlm +kRD +nmY +uKH +xFt +kyP +ajZ +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(137,1,1) = {" +aaa +aaa +aab +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +abs +adq +afr +akc +apg +gLl +gLl +nlI +utp +usu +gxm +sRZ +sRZ +sRZ +vQe +aps +aps +aps +gxm +gvu +lYS +mzn +hSI +pMp +gzK +aoq +aoq +aoq +aoq +aoq +aoq +aAG +aBd +aEi +aGW +aRF +akx +akw +aQz +aRK +ajl +aUB +nbH +tJm +gxm +aiJ +aiJ +aiJ +str +jcu +jcu +jcu +gxm +cAa +pep +wrI +vIo +vIo +vpn +csI +goL +pgD +tQV +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +xzB +esm +wfE +wfE +viJ +wfE +wfE +wDr +aeL +aeL +aeL +uZm +wNG +wNG +wNG +wDr +qPk +hKe +qPk +bCd +bmn +knH +kan +kan +oKv +rHo +kan +kan +kan +jXf +kan +kan +kan +cbu +quT +kan +kan +iXW +iLs +bCd +knm +jZe +knm +wDr +mQx +mQx +mQx +guK +azy +azy +azy +wDr +euW +rOI +aId +hQP +nmY +qpV +bUQ +kyP +ajZ +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(138,1,1) = {" +aaa +aaa +aab +bdH +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +abw +eJU +awW +akt +awW +cUo +dwu +utp +qxS +usu +gxm +lmG +lmG +lmG +gxm +asm +asm +asm +gxm +gvu +lSN +xZt +aoe +pjF +wUd +asU +asU +asU +fFO +mrL +mrL +aoe +yjb +aEN +aGX +aoe +aLS +akw +fOL +aRS +ajl +sHC +xCB +tJm +gxm +alW +alW +alW +gxm +mWJ +mWJ +mWJ +gxm +bMZ +qTA +wrI +lST +aJU +baw +sMM +baw +gFd +trb +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +ajY +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +dvD +xzB +pIo +xzB +xzB +fQy +nAm +wDr +aeL +aeL +aeL +uZm +kaq +kaq +kaq +wDr +qPk +hKe +qqf +kan +kan +kan +kan +xdx +rlZ +egc +thP +beW +ygf +rlZ +fqZ +beW +bgP +psK +rlZ +cFP +kan +kan +kan +kan +tzw +sPY +knm +wDr +wQu +wQu +wQu +guK +azy +azy +azy +wDr +sJI +aId +aId +hQP +nmY +uKH +bUQ +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +aaa +aab +aaa +aaa +"} +(139,1,1) = {" +aaa +aaa +aab +bdH +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abw +eJU +awW +akt +vCt +gLl +gLl +gLl +gLl +gLl +gxm +lmG +lmG +lmG +gxm +asm +asm +asm +gxm +gvu +nbH +vQN +sqf +sqf +sqf +sqf +sqf +sqf +sqf +ajl +ajl +ajl +aCo +aEO +aHa +aoe +cXW +upM +akw +alD +vEx +dME +nbH +tJm +gxm +alW +alW +alW +gxm +mWJ +mWJ +mWJ +gxm +vIo +vIo +vIo +vIo +vIo +nTH +sMM +baw +teg +trb +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKS +aKS +aKS +aKS +aKS +aKU +aKS +aKS +aKS +aKS +aKS +aKS +aKU +aKS +aLL +vtJ +stP +eWs +hKO +eoE +lrH +kdo +wDr +aiR +aiR +aiR +wDr +hwH +hwH +hwH +wDr +qPk +hKe +qPk +kan +mBk +oDJ +vaQ +iTt +rlZ +buu +rlZ +rlZ +rlZ +rlZ +rlZ +rlZ +rlZ +buu +rlZ +dTZ +kan +psO +gjK +kan +knm +sPY +knm +wDr +ydA +ydA +ydA +wDr +azD +azD +azD +wDr +ePN +aId +aId +hQP +nmY +xUY +wGe +bSf +bWe +bWn +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWn +bWe +bWe +bWe +bWn +bWe +bVU +aaa +aab +aaa +aaa +"} +(140,1,1) = {" +aaa +aaa +aab +bdH +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abs +adq +aeZ +aka +aoI +gLl +mis +mis +mis +yjr +gxm +lmG +lmG +lmG +gxm +asm +asm +asm +gxm +gvu +nbH +tJm +sqf +anp +wjz +fnA +jZY +jZY +sqf +wpu +okO +ajl +ajl +ajl +ajl +ajl +ajl +ajl +onQ +alD +ajl +bgN +nbH +tJm +gxm +alW +alW +alW +gxm +mWJ +mWJ +mWJ +gxm +ojX +ojX +ojX +mxo +vIo +gnv +yhI +tTu +pgD +tQV +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +pzG +bby +aLL +aLL +frz +aLL +aLL +aLL +aLL +aLL +wDr +aiR +aiR +aiR +wDr +hwH +hwH +hwH +wDr +qPk +hKe +qPk +kan +vou +dYU +kan +cWm +soK +gDW +rlZ +rlZ +pqD +pqD +pqD +rlZ +rlZ +gYl +frl +wFb +wzZ +tdI +vbV +kan +knm +jZe +knm +wDr +ydA +ydA +ydA +wDr +azD +azD +azD +wDr +bSf +bSf +auW +bSf +bSf +ued +bSf +bSf +cml +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWo +bWe +bVU +aaa +aab +aaa +aaa +"} +(141,1,1) = {" +aaa +aaa +aab +bdH +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abs +adq +afr +akc +apg +gLl +mis +mis +mis +mis +gxm +aoz +lmG +lmG +gxm +asm +asm +asm +gxm +gvu +xCB +tJm +sqf +sOZ +oNJ +eDo +eDo +eDo +sqf +vXv +wub +gXl +ajl +wqW +awj +dDL +aLZ +ajl +aCp +alD +ajl +evM +xCB +tJm +gxm +alW +alW +alW +gxm +mWJ +mWJ +kbl +gxm +ojX +ojX +ojX +ojX +vIo +vpn +csI +goL +pgD +tQV +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +bbz +aLL +etF +bbS +aLL +coT +fgh +rZP +gmj +wDr +aiR +aiR +aiR +wDr +hwH +hwH +hwH +wDr +iGi +pSF +eZC +bst +bst +bst +bst +bst +bst +oou +rlZ +rlZ +tiI +hDR +oZV +rlZ +rlZ +xMj +biA +biA +biA +biA +biA +biA +hBW +ltv +uYM +wDr +ydA +ydA +ydA +wDr +azD +azD +azD +wDr +wcN +nGi +bVd +bUO +bSf +weC +tZc +bSf +cmm +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bVU +aaa +aab +aaa +aaa +"} +(142,1,1) = {" +aaa +aaa +aab +bdH +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abw +eJU +awW +akt +awW +avJ +mis +mis +mis +mis +gxm +lmG +lmG +lmG +gxm +asm +asm +asm +gxm +gvu +lSN +kaj +sqf +anq +awn +xsz +jTj +jTj +sqf +lmi +xgP +dwA +wJo +cyU +eme +skl +nzv +fQu +akx +alD +gWG +gvu +xCB +tJm +gxm +alW +alW +alW +gxm +mWJ +mWJ +mWJ +gxm +ojX +ojX +ojX +ojX +qxz +baw +sMM +baw +wiz +trb +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +bbz +aLL +fXz +bbS +aLL +uUt +aLW +aLW +guS +wDr +aiR +aiR +aiR +wDr +hwH +hwH +srR +wDr +cvg +hKe +qPk +bst +bui +bvz +bgC +xfT +bkE +bJw +rlZ +hBc +hzs +bHg +hzs +aZK +rlZ +hYn +cpJ +lQO +bsQ +bmj +caS +biA +knm +sPY +jxu +wDr +oVk +ydA +ydA +wDr +azD +azD +azD +wDr +wgR +bTO +bTO +sYP +bSf +cpk +bVd +bSf +cmm +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bVU +aaa +aab +aaa +aaa +"} +(143,1,1) = {" +aaa +aaa +aab +bdH +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abw +eJU +awW +akt +aAn +gLl +mis +mis +mis +mis +gxm +lmG +lmG +lmG +gxm +asm +asm +asm +gxm +gvu +xCB +tJm +sqf +anr +awn +tEi +asu +hbI +sqf +ajl +vtx +ajl +ajl +kgp +fbB +cyU +bho +fQu +akx +alD +gWG +gvu +xCB +tJm +gxm +alW +alW +alW +gxm +mWJ +mWJ +mWJ +gxm +ojX +ojX +ojX +ojX +vIo +xuY +sMM +baw +oby +trb +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +bbz +bdy +bbS +bbS +bdy +bbS +xka +uLn +uoA +wDr +aiR +aiR +aiR +wDr +hwH +hwH +hwH +wDr +qPk +hKe +qPk +bst +bcR +bev +bgA +eas +bkE +bLr +qni +hQY +qni +qni +qni +hQY +qni +lJG +cpJ +kRd +bCl +bsz +caT +biA +knm +sPY +knm +wDr +ydA +ydA +ydA +wDr +azD +azD +azD +wDr +hkB +bTO +qSm +cls +xoJ +weC +cls +bWc +cmm +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bVU +aaa +aab +aaa +aaa +"} +(144,1,1) = {" +aaa +aaa +aab +bdH +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abs +adq +aeZ +aka +aoI +gLl +mis +mis +mis +mis +gxm +lmG +lmG +lmG +gxm +asm +asm +asm +gxm +hwB +xCB +tJm +sqf +sqf +awp +sqf +sqf +sqf +sqf +mNI +sdn +xNu +ajl +vRX +pth +axm +lhv +ajl +hVz +alD +ajl +lXR +xCB +tJm +gxm +alW +alW +alW +gxm +mWJ +mWJ +mWJ +gxm +ojX +ojX +ojX +ojX +vIo +gnv +yhI +tTu +pgD +tQV +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +pDo +aLL +aON +xYB +aLL +rlh +aLW +aLW +gxh +wDr +aiR +aiR +aiR +wDr +hwH +hwH +hwH +wDr +qPk +hKe +tON +bst +bcS +bag +bgz +elE +bgv +bPz +dTZ +qxL +sYh +rlZ +dTZ +qxL +sYh +fFL +bmc +jdG +bCm +bsP +hgZ +biA +knm +sPY +knm +wDr +ydA +ydA +ydA +wDr +azD +azD +azD +wDr +wjC +bTO +xMf +unh +bSf +weC +rfI +bSf +qzc +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bVU +aaa +aab +aaa +aaa +"} +(145,1,1) = {" +aaa +aaa +aab +bdH +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abs +adq +sSj +akc +rMh +gLl +gLl +gLl +gLl +gLl +gxm +qqa +qqa +qqa +gxm +gxm +gxm +gxm +gxm +atz +nbH +tyC +ajl +qhx +akw +axl +gKR +fvd +ajl +ajl +ajl +ajl +ajl +sYT +sYT +tWY +sYT +ajl +nMV +vIf +ajl +hwB +nbH +yeg +gxm +gxm +gxm +gxm +gxm +qqa +qqa +qqa +gxm +vIo +vIo +vIo +vIo +vIo +crh +csI +qhb +pgD +tQV +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +bbz +aLL +etF +bbS +aLL +djQ +nFs +aLW +gFa +wDr +aiR +aiR +aiR +wDr +hwH +hwH +hwH +wDr +qPk +hKe +qPk +bst +buj +bev +dBO +waD +bkE +bQM +rlZ +izY +rlZ +rlZ +rlZ +izY +rlZ +hZN +cpJ +tni +bCn +bsz +hMN +biA +knm +sPY +knm +wDr +ydA +ydA +ydA +wDr +azD +azD +azD +wDr +xad +roG +mZr +eax +bSf +fvN +tZc +bSf +cmm +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bVU +aaa +aab +aaa +aaa +"} +(146,1,1) = {" +aaa +aaa +aab +bdH +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abw +eJU +awW +awW +awW +wAE +iKy +iKy +iKy +iKy +tMi +lCg +knb +knb +jsd +iKy +iKy +udv +iKy +gre +nbH +dME +bVE +aos +akw +akw +akw +alE +ans +ans +asw +ans +ans +ans +ans +axm +ans +ans +aos +alE +bVE +dME +nbH +kPa +iKy +gDk +iKy +iKy +gOa +lCg +lCg +lCg +ccx +iKy +iKy +iKy +iKy +wAE +mGM +baw +qYC +kwo +trb +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +bbA +aLL +aLL +frz +aLL +aLL +aLL +aLL +hrF +wDr +wDr +wDr +wDr +wDr +jXR +enK +enK +wDr +kgt +hKe +qPk +bst +aYQ +bbd +bcL +bez +bkE +bRP +rlZ +rlZ +xsw +bZn +kFv +rlZ +rlZ +siW +cpJ +bmi +bnT +btX +byc +biA +knm +sPY +qPU +wDr +sai +sai +wrN +wDr +wDr +wDr +wDr +wDr +bSf +bSf +auX +bSf +bSf +ued +bSf +bSf +cmn +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bVU +aaa +aab +aaa +aaa +"} +(147,1,1) = {" +aaa +aaa +aab +bdH +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abw +eJU +awW +aTm +awW +wAE +qQu +qQu +qQu +qQu +kVW +kVW +oFz +oFz +oFz +qQu +dcR +dcR +dcR +dcR +hWa +cEG +aEe +akA +akA +akA +akA +jOG +akA +akA +akA +akA +rnN +akA +akA +maT +akA +akA +oap +aSb +aEe +cEG +rxQ +dcR +dcR +dcR +dcR +qQu +oFz +oFz +oFz +kVW +kVW +qQu +qQu +qQu +qQu +wAE +ley +vbB +ley +kwo +trb +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKS +aKS +aKS +aKS +aKS +aKV +aKS +aKS +aKS +aKS +aKS +aKS +aKV +aKS +aLL +qVE +iGc +bwG +hCk +nRN +mzI +olQ +oCK +eob +gMk +qRb +axY +xrC +oWF +xrC +toQ +exl +qyX +qPk +bst +bst +bst +bst +bst +bst +cjW +rlZ +rlZ +oRy +kan +biy +boX +rlZ +vMG +biA +biA +biA +biA +biA +biA +wHn +rDO +cIO +rEd +fml +fqU +bIO +rSA +cIm +emw +bvD +gZW +lUA +bwv +hDU +iNH +cDx +ndl +iDk +bSf +bWe +bWp +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWp +bWe +bWe +bWe +bWp +bWe +bVU +aaa +aab +aaa +aaa +"} +(148,1,1) = {" +aaa +aaa +aab +bdH +aae +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +abs +abs +awW +vGQ +ajE +wAE +dME +epT +dME +aVK +llo +llo +llo +llo +epT +llo +llo +llo +llo +aWM +lSN +tJm +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +wMO +wky +sqf +bgN +lSN +nyK +llo +epT +llo +llo +llo +llo +llo +llo +epT +llo +dME +bRO +llo +wAE +saX +dBp +gVA +tQV +tQV +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +afm +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +deq +lfx +jgK +lfx +lfx +yih +kgD +deq +bwG +vVy +gtD +vEv +cvI +cvI +cvI +aza +qPk +wKN +qPk +kan +ihw +beW +lkW +biF +vhX +akQ +rlZ +rlZ +pnC +dBH +bky +ryt +rlZ +wYS +vhX +jva +tAU +xmT +tAU +kan +knm +sPY +knm +qEM +wzy +wzy +wzy +qEM +juo +seL +siC +jNw +xuy +juo +vqz +vMU +mJO +vDN +xbg +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +aaa +aab +aaa +aaa +"} +(149,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acf +biV +aet +biV +aet +ekY +aet +ekY +aet +abE +abE +abE +abE +abE +abE +abE +abE +abE +cXq +bXc +vZJ +vOy +nos +fcy +drT +ipQ +lZZ +vOy +oDL +nEH +vAQ +qIL +ncE +vWt +gei +vOy +ayX +kXw +pxo +sqf +lPY +bXc +vZJ +pBG +pBG +pBG +pBG +pBG +pBG +pBG +pBG +pBG +pBG +oiq +mRU +mRU +mRU +mRU +mRU +mRU +woU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +kyw +deq +lfx +bwG +aQF +aQF +aQF +aQF +szE +aQF +ihW +qOS +vEv +xkN +dwj +xkN +aza +qPk +hKe +qPk +kan +iMI +rlZ +rlZ +rlZ +qep +cnr +qqK +qqK +ayD +dBH +bky +ryt +rlZ +buu +uXf +wxq +wJb +wJb +bPu +kan +knm +sPY +knm +qEM +hEg +ewc +lLl +qEM +jvD +cBV +mJO +mJO +mJO +bTq +mJO +mJO +mJO +mgb +xbg +lyW +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(150,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acv +aiH +alf +arp +arp +aiH +aiH +aiH +aet +kPB +aci +aci +aci +aci +gwo +aed +aeG +abE +rSW +dNv +rSW +vOy +oNp +aSn +lYL +pNP +kCj +vOy +nLI +rDV +dwr +rDV +mTd +gQF +xXr +vOy +niL +kXw +pxo +sqf +rSW +dYl +rSW +pBG +rdZ +rdZ +rdZ +rdZ +bCs +pBG +rLp +ttX +pBG +vpf +mRU +vor +qnA +vkI +gNN +lyz +woU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +kyw +xwd +lfx +bwG +weR +aPE +weR +vrI +izk +aQF +aQF +aQF +aQF +aQF +aQF +aQF +aQF +mNG +pSF +eZC +kan +avW +bZn +dXr +uay +vhX +gDW +rlZ +rlZ +wYr +dBH +bky +ryt +rlZ +gYl +vhX +hCS +xIk +cLA +xIk +kan +hBW +ltv +qEz +bJt +bJt +bJt +bJt +bJt +bJt +bJt +mJO +plv +plv +plv +plv +mvg +mJO +mgb +mgb +lyW +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(151,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acv +aiH +alg +bBC +bBC +aIx +aIB +aiH +aet +kPZ +acI +acj +vJZ +wfZ +adF +aef +dWw +agA +mRJ +fjA +gqH +vOy +anz +vgx +hme +mzq +qJy +vOy +vti +vti +fBO +vti +gGx +vti +lid +lJv +aCC +kXw +pxo +asn +mRJ +oEn +gqH +pBG +rdZ +rdZ +rdZ +rdZ +rdZ +pBG +jZU +jAe +pBG +jtU +mRU +tNw +ebI +ukC +jtU +fCi +woU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +kyw +deq +cGY +bwG +rUq +rUq +sab +sab +izk +pQc +cWr +jSU +lXO +eKT +wan +cTC +aQF +syj +wKN +qqf +xMs +xMs +xMs +xMs +xMs +xMs +cjW +rlZ +rlZ +kSC +kan +quv +rZB +rlZ +wxc +vMo +vMo +vMo +vMo +vMo +vMo +tzw +sPY +hkC +bJt +xOL +gGI +eeu +gfq +eFP +gAz +mJO +plv +plv +plv +plv +plv +mJO +xbg +pgJ +lyW +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(152,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acf +aet +avx +ahN +uli +uli +uli +bWf +aet +lwC +aTT +acl +xxi +qJj +adF +aef +aef +uZZ +muW +lGh +bBH +vOy +awQ +oLU +thN +vDa +vOy +vOy +qfy +inL +oiY +ueJ +ueJ +oDi +trF +lJv +edv +kXw +pxo +asn +lXl +yiu +bBH +pBG +rdZ +rdZ +rdZ +rdZ +rdZ +pBG +cVq +nOb +pBG +vpI +mRU +mRU +mRU +gBs +mRU +mRU +woU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +kyw +deq +veq +bwG +pKh +sab +rDv +bmW +jWu +pQc +aqo +aRy +aRy +aRy +aRy +nIj +aQF +rWv +hKe +qPk +xMs +aSO +feY +xEz +bgn +bgw +eXb +rlZ +rlZ +thP +beW +bgP +rlZ +rlZ +hAU +xqy +bmk +wZE +iGn +byd +vMo +knm +sPY +knm +lhB +pOY +bDs +jge +bDs +bDs +hLC +mJO +plv +plv +plv +plv +plv +mJO +xbg +mgb +lyW +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(153,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acf +aet +avV +uli +uli +uli +mov +bWq +aet +lhX +aXc +acl +jlN +qqn +adF +bls +aeH +agq +ijd +efV +bBH +vOy +hng +dnC +hPN +vCk +qEn +qam +riE +gAS +lMv +dVu +eSo +qmD +aIC +lJv +aCt +kXw +pxo +asn +lXl +poD +qmW +pBG +rdZ +rdZ +rdZ +rdZ +rdZ +pBG +dzp +ngV +pBG +jtU +jtU +uBx +fLi +vpf +prf +vpf +woU +aaa +aac +aaf +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +bdH +aad +kyw +deq +deF +bwG +mTi +lJK +kYV +hhn +aQp +aQG +ulZ +aRA +aRA +bQU +bQU +bjD +dqE +htl +vaq +vTX +xMs +lOH +dUS +bcP +dSX +bgw +fbw +rlZ +rlZ +pqD +pqD +pqD +rlZ +rlZ +rFH +xqy +aGg +bof +vit +dxu +vMo +knm +sPY +knm +lhB +xCb +bDs +bIJ +bDs +bDs +qJS +mJO +plv +plv +plv +plv +plv +mJO +xbg +xbg +lyW +ajZ +aaa +avo +avo +avo +avo +avo +avo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(154,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acv +aez +uli +aIx +uli +uli +mov +bWq +aet +lhX +eYM +uuR +dHu +qqn +adF +aef +kqN +agA +lXl +qdJ +qmW +vOy +xyt +wiW +tOr +dBj +wei +kBP +kBP +jsx +tjn +aCC +kXw +pQP +qAT +vOy +vOy +mFq +vqW +sqf +rnM +poD +bBH +pBG +pBG +pBG +pBG +nec +pBG +pBG +saL +pBG +pBG +mRU +mRU +mRU +mRU +mRU +jtU +vpf +woU +aaa +aad +aag +aag +aag +aag +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +bdH +aad +kyw +deq +oWq +bwG +aQF +aQF +aPH +xIQ +tmX +pQc +rrK +aRy +feI +brb +cpp +buv +aWF +qPk +hKe +qPk +xMs +akE +qGF +bcV +bgr +bgy +fxZ +rlZ +aZK +vYt +fDj +eBZ +hBc +rlZ +pKZ +bmd +bnR +ggz +dka +bye +vMo +knm +sPY +knm +lhB +aQW +bDs +bNw +wIG +wLK +hAz +bJt +bJt +bJt +bJt +bJt +bJt +bJt +xbg +otW +lyW +ajZ +avo +avo +avs +avs +avs +avs +avo +avo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(155,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acv +aez +uli +uli +uli +uli +uli +aiH +aet +lhX +acl +acl +acl +qqn +aef +aef +tRD +abE +tkF +qdJ +bBH +vOy +iYf +bIM +wPz +iUo +qAE +xqp +lzA +vkp +tjn +aCC +kXw +vtm +emK +fGu +hPe +sdu +btC +vLj +ijd +efV +bBH +rRT +pBG +gqQ +cHG +nQA +dAl +pyx +lKO +pBG +lEf +gel +gel +gel +fkX +mRU +jtU +tMU +woU +aaf +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +xwd +lfx +bwG +weR +aPE +izk +xIQ +vse +aQF +blp +aRy +aTn +aTY +iCF +gJP +aQF +uNf +hKe +qPk +xMs +aYR +dUS +mqU +bgs +bgw +icw +qni +klH +tgV +tgV +tgV +klH +qni +uah +xqy +jhn +jZd +vit +bzo +vMo +knm +sPY +knm +lhB +pxD +bDs +gSk +bDs +bDs +bDs +xjb +fbo +duo +iIl +bDs +ujV +bJt +xbg +xbg +lyW +ajZ +avo +avs +avs +hAG +vtr +avs +avs +avo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(156,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acf +ahy +avZ +ipK +ipK +ipK +uli +bWf +aet +lhX +acl +acl +acl +qqn +adF +aef +afs +agA +lXl +yiu +bBH +vOy +mTp +wiW +wPz +jeq +eYU +wWR +vti +vkp +cfT +hec +gNp +hVf +dVu +rmc +lON +dVu +oDR +vOP +muW +cDI +tru +uXE +qvL +wmP +wmP +dRP +eFY +nQA +eAN +xqQ +rfb +cXF +rLU +dKp +cHu +mRU +jtU +vpf +woU +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +deq +sJa +bwG +pGG +sab +izk +hds +aQF +aQF +haQ +aRy +boY +qZH +bsN +buB +aWD +qPk +hKe +qPk +xMs +bXw +eiw +bda +bgt +bgw +jxi +rlZ +rlZ +rlZ +rlZ +rlZ +rlZ +rlZ +nrN +xqy +nYD +boh +qDP +wbP +vMo +knm +sPY +cbL +bJt +qom +bDs +rAx +jFE +fuS +jFE +jFE +jFE +jFE +idx +hAz +gHj +bJt +oqI +xbg +avo +avo +avo +avs +rKn +awa +awa +umm +avs +avo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(157,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acf +aet +aIx +ipK +ceC +eRR +uli +bWq +aet +loV +acK +acm +acK +esK +adD +sOw +afs +agA +lXl +yiu +bBH +vOy +axn +dRh +ydE +bST +rQy +vOy +vdO +vkp +aoM +kBo +chc +naR +vOy +hrn +vOy +aRd +aIo +vOy +whc +yiu +bBH +mxq +pBG +lvb +eAN +jVg +rGU +xCf +eAN +xqQ +rLv +bHk +vZw +bHk +cHu +mRU +vpf +mRU +woU +aag +aag +aag +aag +aag +aag +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +lfx +deq +jgK +aNs +aNs +hyw +mzz +aQF +aQF +blj +aRy +bpa +fHF +bml +buB +aWD +eZC +pSF +eZC +xMs +xMs +xMs +xMs +xMs +xMs +jGn +rlZ +ggJ +oXY +bZn +kFv +dut +rlZ +sPJ +vMo +vMo +vMo +vMo +vMo +vMo +hBW +ltv +kGw +bJt +bJt +nFI +qdk +vzP +bJt +hjB +bJt +xfK +bDs +gSk +bDs +bpI +bJt +jLH +xbg +lpy +avC +avC +wEg +axa +axa +dSZ +oMs +avs +avo +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(158,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acf +aet +uli +ipK +awe +fwD +uli +oGy +aet +lhX +acl +acl +acl +qqn +adF +aef +afs +agA +lXl +yiu +bBH +vOy +aAr +pGK +tpa +tpa +tpa +vOy +dHV +vkp +jUM +lou +eBO +pRn +vOy +ayZ +aCD +hFC +qmy +vOy +lXl +yiu +bBH +pBG +pBG +hEl +eAN +fQS +oGY +neT +eAN +xqQ +cNH +vzp +vZw +erd +cHu +mRU +vzB +mRU +woU +aag +aag +aag +aag +aag +aag +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +txp +iGc +bwG +vMr +vMr +izk +uhl +aQF +aQF +blf +aRy +kkt +htL +aUL +buB +aWD +qPk +hKe +qPk +nyw +iXU +hDw +kzb +pha +kan +kan +mwM +wmQ +kan +kan +kan +mwM +eRy +kan +kan +rIO +vEH +uFH +tQd +nyw +knm +sPY +knm +yfS +sEi +dck +quV +doJ +loY +tOW +lkd +dYR +bDs +gSk +reL +wiI +bJt +tqV +dSm +avo +avo +avo +avs +awa +awa +awa +qUp +avs +avo +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(159,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acf +aet +avx +ipK +ipK +ipK +uli +bWq +aet +lhX +acl +acl +acl +qqn +aef +aef +pHG +abE +tkF +poD +bBH +vOy +aID +gLc +mKx +iit +kZV +vOy +vOy +jpl +vOy +wKL +vOy +vOy +vOy +qqQ +aoM +aoM +vgB +kgs +lXl +poD +bBH +bvX +ojQ +eAN +eAN +jVg +nQA +nQA +eAN +xqQ +rfb +bHk +vZw +bHk +cHu +mRU +vpf +mRU +woU +aah +aag +aag +aag +aag +aag +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +cme +whm +bwG +mTi +lJK +izk +xIQ +vyp +aQF +blw +aRy +aTr +aTZ +aUM +gJP +aQF +rmz +wKN +qPk +nyw +beH +dcd +beH +bqZ +beH +neS +beH +beH +tJR +rRU +oEw +beH +beH +neS +beH +bqZ +beH +beH +beH +nyw +knm +sPY +knm +yfS +hgL +swt +wSX +wpI +ktX +smi +lkd +tsa +bDs +gSk +bDs +vwI +bJt +lAa +mgb +lyW +ajZ +avo +avs +avs +loK +wpg +avs +avs +avo +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(160,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +acv +aez +uli +uli +uli +uli +uli +oWz +aet +lhX +gsZ +uxO +bTt +qqn +adF +aef +aGS +agA +lXl +poD +bBH +vOy +aMd +pGK +pRX +mHD +pRX +vOy +jFf +vkp +jrM +mWs +lmw +vOy +dyb +tsM +prx +fpT +eVT +kgs +lXl +poD +bBH +bvX +kVV +vQR +vQR +epJ +jML +jML +fnH +xqQ +rLv +pRy +wwW +mRW +cHu +mRU +jtU +vpf +woU +aaa +aad +aag +aag +aag +aag +aah +afm +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +cGY +ipn +bwG +aQF +aQF +sPc +xIQ +sab +pQc +olM +aRy +aRy +eXr +iFH +buv +aWE +qPk +ckh +htl +aum +emr +emr +emr +uNB +quq +duv +beH +beH +beH +bqZ +beH +beH +beH +fcf +beH +pmH +rCO +rCO +rCO +eVv +wwE +mDZ +knm +ykj +rlQ +ven +agH +wxU +tvM +smi +lkd +rBj +bDs +gSk +bDs +fUB +bJt +mgb +nhw +lyW +ajZ +avo +avo +avs +avs +avs +avs +avo +avo +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(161,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +acv +aez +aIB +aKg +uli +uli +mov +bWq +aet +lhX +kNO +acl +jlN +qqn +adF +aef +nIS +uZZ +muW +poD +bBH +vOy +aMg +aSo +pRX +mHD +tzL +vOy +vqZ +vkp +rDr +usy +nDo +vOy +glB +vkp +ger +aoM +aFf +mmN +lXl +poD +bBH +bvX +maO +lPm +iZV +fdx +cuq +eQJ +fVF +pBG +qWR +wJH +wJH +wJH +sNR +mRU +jtU +vpf +woU +aaa +aae +aah +aah +aah +afm +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +oif +deq +bwG +weR +aPE +izk +uhP +aQq +aQH +upO +pOi +pOi +pOi +pOi +nVF +aWF +qPk +wKN +qPk +nyw +eGZ +ieX +pfM +bqZ +rEf +rWT +emr +emr +usX +vKe +rCO +rCO +rCO +vVd +eBg +wRT +bhq +dcd +eTd +nyw +knm +rDO +hqp +kKk +rDt +gpI +xwp +fLg +tvM +dfC +cEi +bJt +oKb +gSk +bDs +nqO +bJt +nQo +pgJ +lyW +ajZ +aaa +avo +avo +avo +avo +avo +avo +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(162,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +acf +aet +aJJ +aIB +uli +uli +mov +bWq +aet +lwC +tIK +acl +sNO +qJj +adF +aef +nIS +eWF +muW +poD +bBH +vOy +aQZ +bkT +pRX +mHD +pRX +vOy +foP +sZy +vEr +irU +bVe +vOy +ggl +jjS +qMP +kBP +kqo +vOy +tkF +poD +qmW +pBG +pBG +pBG +pBG +qRr +pBG +pBG +pBG +pBG +pBG +mRU +mRU +mRU +mRU +mRU +jtU +tMU +woU +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +byt +lfx +bwG +iWQ +iWQ +uFd +mUq +qwt +pQc +bng +bmX +bmX +tou +tou +jhy +aQF +eZC +hMk +mkw +bdd +bdd +bdd +bdd +bdd +qCc +fUA +beH +spF +uBN +bqZ +jMr +eGZ +beH +fUA +qYZ +bdd +bdd +bdd +bdd +bdd +xwm +ltv +hBW +yfS +ape +ven +njJ +kiM +tvM +smi +lkd +kvU +idX +cnu +bDs +knK +bJt +xbg +oUZ +lyW +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(163,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +acf +aet +avx +ahN +aIB +aKg +uli +bWf +aet +abK +acL +acn +cRK +dXV +adF +aef +kqN +agA +lXl +yiu +bBH +vOy +dVd +lea +hKl +lDN +kZV +vOy +vOy +eNI +eNI +eNI +vOy +vOy +hRa +vti +vti +vti +aEZ +vOy +lXl +yiu +bBH +fKh +gQk +trU +oNY +fdx +pBG +pVF +ppF +fiE +pBG +jtU +jtU +uBx +ycM +vpf +jtU +vpf +woU +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +jNo +lfx +bwG +iWQ +iWQ +sab +aNr +pQY +pQc +bll +bll +bpo +dVO +bsR +aQr +aQF +qPk +wKN +qPk +tda +ngI +dkq +lRZ +acc +beH +beH +dwl +bdd +bdd +gac +bdd +bdd +aMt +beH +beH +acc +qby +btY +bAJ +huU +knm +sPY +knm +yfS +ape +ven +bWT +fKV +tvM +smi +lkd +qTY +bDs +gSk +ljG +tSp +bJt +xbg +ssk +lyW +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(164,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +acv +aiH +uli +bLO +bLO +bLO +bLO +aiH +qga +eAU +eAU +eAU +eAU +eAU +fcE +aef +uNN +abE +dfA +yiu +bBH +vOy +vOy +vOy +mSK +mSK +mSK +vOy +vOy +voV +wKP +hLr +vOy +vOy +rhO +pgM +nPE +oqZ +uaI +vOy +hUu +yiu +bBH +fKh +iuG +sOv +eAN +fdx +gAk +dzp +rMT +dzp +pBG +jtU +mRU +mRU +mRU +mRU +vpf +mRU +woU +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +deq +lfx +bwG +mTi +lJK +mTi +lJK +kmp +aQF +bln +xEX +aQF +aQF +aQF +aQF +aQF +ldb +rYI +fzc +bdg +vyg +bni +cwX +vuA +nVi +nVi +nVi +vuA +tab +udi +wCs +vuA +nVi +nVi +nVi +vuA +snb +xbd +bAU +bdg +jlD +pYN +raE +bJt +wbC +lHu +oiL +qBM +wXI +nUd +lkd +xOT +bDs +gSk +oDE +bJt +bJt +xbg +mgb +lyW +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(165,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acv +aiH +aiH +bWd +awi +bWd +mOb +aiH +aet +aBD +acU +uPr +sTd +lfH +aeI +eva +xzf +abE +tkF +poD +dSI +iLL +gqH +vOy +vOy +vOy +vOy +vOy +vOy +eNI +eNI +eNI +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +qQD +poD +bBH +fKh +ubI +nQA +nQA +jvM +pLa +nTR +gDp +rwq +pBG +jtU +mRU +oyO +nve +mRU +vzB +mRU +woU +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +xbI +lfx +bwG +aQF +aQF +aQF +aQF +aQF +aQF +aQF +aQF +aQF +wYG +yhR +gHi +bwG +pzj +uhq +pzj +bdg +apz +dyd +fyD +bdd +dhR +dhR +dhR +vuA +eYu +qaW +wbN +vuA +lVS +lVS +lVS +bdd +vPw +bvr +bBQ +bdg +sgL +aRL +sgL +rde +vjC +iMm +mJi +iMm +iMm +mkc +bJt +xaN +bDs +gSk +luS +bJt +uCw +xbg +mgb +lyW +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(166,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vHn +cGd +moK +cGd +cGd +aNi +aNi +bWr +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +hUu +poD +tsn +tsn +bBH +vOy +elR +xXh +xXh +xXh +dMK +aCR +aAT +aNY +elR +xXh +xXh +xXh +dMK +vOy +vOy +vOy +lXl +poD +bBH +pBG +mGT +nQA +nQA +vEG +pBG +pBG +pBG +pBG +pBG +jtU +rXF +jtU +vzB +mRU +kuK +mRU +woU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +bdH +aad +kyw +deq +deq +bwG +tEu +mUY +vOw +ouU +dro +bwG +gSH +xJp +qxJ +hCk +deq +nRN +bwG +wsS +vxY +wsS +bdg +auj +bbf +ber +vuA +nVi +nVi +nVi +vuA +jkz +ngI +xGJ +vuA +nVi +nVi +nVi +vuA +bpv +tMW +bBY +bCh +mPM +esd +mPM +yfS +xML +iMm +jSy +wGb +iMm +rjn +bJt +wUX +bDs +gSk +vSp +lHG +kOJ +mgb +mgb +lyW +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(167,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf +vHn +ejV +hoT +hoT +vyh +aNi +cYT +aNm +cYT +lEF +beZ +vif +bhx +aOR +bhx +vif +aOR +bsw +lXl +hPZ +bPi +ava +bBH +vOy +wWz +vHO +ruc +uvP +wTM +dNq +vVs +aFa +wWz +liY +ruc +xOY +wTM +vOy +uWk +iLL +lRh +poD +qmW +pBG +tGT +nQA +nQA +jDO +pBG +aYH +cHG +cOY +pBG +mSM +mRU +gRc +oOp +mRU +jtU +vpf +woU +aaf +aaf +aaf +aaf +aaf +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aac +kyw +kyw +kyw +kyw +kyw +kyw +kyw +kyw +deq +caq +bwG +igb +cpz +ooA +kpj +sBY +wyG +qjL +kpj +rAo +lka +kpj +kpj +mQY +ygp +tdi +fZE +tda +mng +wTm +wCI +acc +beH +beH +beH +acc +mng +wTm +wCI +acc +beH +beH +beH +acc +mng +wTm +wCI +tda +oSM +ter +oSM +bJt +swE +wpI +ocm +wpI +wnL +kHd +bJt +hSw +qxE +rui +vSp +bJt +uXU +xbg +nhw +lyW +lyW +lyW +lyW +lyW +lyW +lyW +lyW +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(168,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +aag +aag +aag +aag +aag +aag +vHn +dGg +tob +hoT +tob +aNi +aZe +aNm +aNm +lRP +beE +bhx +bhx +hMi +aco +aco +dYu +bsw +cOe +vwT +akh +poD +qmW +vOy +wWz +anw +wLy +jlG +aqP +kCE +wLN +npt +xuE +hqh +wLy +eiE +wTM +vOy +lXl +mfO +mHY +yei +bBH +fKh +eYn +nQA +nQA +vEG +mlP +eAN +eAN +eAN +pBG +vpf +mRU +mRU +mRU +mRU +vpI +vpf +woU +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +kyw +kyw +hCk +maK +lfx +lfx +lfx +deq +deq +deq +lfx +eYp +lfx +vmq +cqH +tjO +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +nhE +naa +nVQ +bdd +vuA +vuA +vuA +bdd +qCc +fUA +qYZ +bdd +vuA +fnx +vuA +bdd +qCc +fUA +qYZ +bdd +vuA +vuA +vuA +bdd +fvV +ter +gvK +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bJt +cDC +vuF +bJt +bJt +xbg +mgb +mgb +mgb +gLm +ttD +mgb +mgb +mgb +lyW +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(169,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +aag +aag +aag +aag +aag +aag +vHn +oSG +tob +tob +tob +aNi +aZr +aNm +aNm +lTE +beE +bhx +bhx +aOR +bhx +bhx +cCa +aNi +aNi +aNi +rnM +qdJ +bBH +vOy +wWz +ovG +gxP +aPJ +wTM +apS +wse +aFa +wWz +ual +gxP +aOe +wTM +vOy +piQ +yiu +xIj +xIj +bBH +fKh +wvo +nQA +nQA +vEG +pBG +skR +oxc +nBi +pBG +vzB +mRU +pGh +xEs +mRU +jtU +tMU +woU +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +kyw +xJp +lfx +deq +yih +deq +deq +lfx +lfx +lfx +rHq +bwG +nPO +cGB +ugj +fbC +bdd +uvU +xZk +dGU +lgF +eYj +aSp +mho +bdg +fZE +iLm +fZE +bdg +bqZ +bqZ +bqZ +bCg +beH +fUA +beH +bCg +bqZ +beH +bqZ +bCg +beH +fUA +beH +bCg +bqZ +bqZ +bqZ +bdg +oSM +xub +oSM +bdg +lCE +oZD +lwh +oPz +lCE +xLi +qkY +bdd +qXo +feq +loY +aDU +bJt +vAx +mgb +xbg +mgb +xpL +mgb +mgb +xbg +xbg +mgb +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(170,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +aag +aag +aag +aag +aag +aag +vHn +oeH +tob +hoT +tob +aNi +aZs +aNm +aNm +mwL +beE +bhx +bhx +aOR +bhx +bhx +qiy +ahR +ahR +egt +shC +vIZ +bBH +vOy +woh +vgO +aoJ +alk +xAe +avH +wse +cXC +woh +pLO +qxm +vgO +xAe +vOy +psk +poD +sin +vwT +gsJ +fKh +lDa +eAN +eAN +vEG +pBG +pBG +pBG +pBG +pBG +vpf +tra +vpf +vzB +mRU +iJT +vpf +woU +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +kyw +deq +lfx +nsY +nsY +pRT +nsY +nsY +nsY +nsY +nsY +nsY +bwG +bwG +msC +bwG +bdd +xwE +dAQ +tGG +kEs +tGG +bpA +mho +bdg +fZE +naa +fZE +bdg +bqZ +beH +beH +beH +beH +fUA +beH +beH +beH +beH +beH +beH +beH +fUA +beH +beH +beH +beH +bqZ +bdg +oSM +ter +oSM +bdg +lCE +uek +dkX +qXp +oCl +tPm +kiX +bdd +tLc +rsM +iMm +hTT +nsY +nsY +nik +nsY +nsY +nsY +nsY +nsY +nsY +kqb +mgb +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(171,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +aag +aag +aag +aag +aag +aag +vHn +mId +hoT +hoT +hoT +aNi +jWr +aNm +jWr +mBJ +dtZ +bhx +bhx +wWg +aco +aco +hpY +aOR +aOR +bgK +muW +qdJ +bBH +vOy +vOy +vOy +uqd +amk +pYo +avF +coJ +iAz +cQo +aIP +aoK +vOy +vOy +vOy +pLE +poD +bBH +mRU +mRU +pBG +aGs +eAN +eAN +vEG +vrJ +xOs +kOH +hIs +pBG +mSM +mRU +tCd +vpf +tra +vpf +mRU +woU +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +kyw +lfx +deq +nsY +xWT +kxd +jgk +nsY +rSG +rur +oqS +nsY +hsh +cPP +deq +eLH +bdd +eUZ +lCr +lCr +fwM +tGG +lJD +mho +bdg +fZE +naa +fZE +bdg +bqZ +beH +aLJ +bmr +beH +beH +beH +eGB +jMR +ufh +mEE +sTw +beH +beH +beH +rJK +gBo +beH +bqZ +bdg +oSM +ter +oSM +bdg +lCE +fMe +sNI +jmn +sgD +kUR +vMM +bdd +hxZ +rsM +iMm +gzV +nsY +xWT +kxd +viu +nsY +rSG +qkP +oqS +nsY +mgb +mgb +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(172,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +aag +aag +aag +aag +aag +aag +vHn +eDq +jFI +cGd +moK +aNi +aNi +aNi +aNi +aNi +aOR +eVQ +aOR +aOR +aOR +eVQ +aOR +aOR +agr +aNi +lXl +lGh +bBH +vOy +vOy +vOy +vOy +vKb +rzN +avG +jbK +aOd +sXd +aJn +vOy +vOy +vOy +vOy +mIR +lGh +bBH +mRU +vpf +pBG +xiU +xUa +eAN +mLe +pBG +pZH +nnL +lgt +pBG +vpI +mRU +bhV +jtU +mRU +vzB +mRU +woU +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +kyw +lfx +deq +nsY +xWT +kxd +viu +nsY +iIP +kxd +dDt +nsY +exb +deq +deq +qLY +bdd +ljW +bDP +lCr +ijr +lCr +mpn +pZR +bdd +atH +iEM +atH +bCx +bqZ +beH +bgO +boq +boq +boq +boq +wNT +pVB +hsg +iPv +kbV +uMk +uMk +uMk +uMk +bgO +beH +bqZ +bCx +oSM +ter +oSM +bdd +tSF +lsn +kUR +kUR +mkl +gXB +car +bdd +hTf +rsM +oos +sBL +nsY +xWT +rfT +viu +nsY +dmR +kxd +dDt +nsY +mgb +xbg +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(173,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +aag +aag +aag +aag +aag +aag +vHn +cGd +cGd +cGd +iTQ +lWt +eDq +eDq +eDq +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +pLE +lGh +bBH +bPF +aqG +ata +vOy +apR +aqS +mnW +nPf +vYz +awR +uoi +vOy +jyJ +niF +bPF +tkF +yiu +bBH +mRU +vpf +pBG +pBG +pBG +qIx +pBG +pBG +pBG +pBG +pBG +pBG +jtU +mRU +mRU +mRU +mRU +vpf +mRU +woU +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +kyw +lfx +deq +nsY +gsg +vHq +vvY +nsY +rNb +bxC +jiU +nsY +jvt +hiu +deq +vSr +bdd +asr +asr +asr +mki +nYp +fZG +phd +pmv +mzv +yfg +fZE +nyw +bqZ +beH +bgO +boq +boq +boq +boq +wNT +vBp +kNl +nhi +kbV +uMk +uMk +uMk +uMk +tmB +eBg +vKe +eVv +cVZ +xdf +cVZ +hLS +vKe +vKe +uSH +uwt +rLP +pPA +ycx +bdd +hTf +rKO +wGb +gUf +nsY +gwM +bxC +pJD +nsY +iSm +bxC +jiU +nsY +mgb +xbg +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(174,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +hoT +tob +tob +hoT +tob +tob +hqm +hoT +tob +tob +tob +tob +hoT +vyh +hoT +tob +tob +fkK +muW +lGh +muW +cbg +aqG +atb +vOy +xSY +rzN +lCt +lto +paa +sXd +gVq +vOy +sLk +niF +cbg +muW +yiu +muW +rXF +jtU +jtU +vpf +ycM +tne +jtU +jtU +vpf +ycM +vpf +jtU +jtU +jtU +uBx +fLi +jtU +vpf +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +kyw +lfx +deq +nsY +nsY +qxC +nsY +nsY +nsY +ntx +nsY +nsY +qWL +kIk +eXD +kMr +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +fZE +iLm +fZE +bdg +bqZ +beH +bgO +boq +boq +boq +boq +wNT +vBp +hWs +nhi +kbV +uMk +uMk +uMk +uMk +bgO +beH +bqZ +bdg +oSM +xub +oSM +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +tuo +rsM +oos +gUf +nsY +nsY +iFM +nsY +nsY +nsY +gLZ +nsY +nsY +mgb +nhw +lyW +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(175,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +gxm +dxF +dxF +aaH +aam +aam +aam +aam +aam +aam +aam +gxm +hgk +tob +njn +njn +njn +njn +njn +njn +njn +njn +njn +njn +njn +aej +aej +aej +aej +aej +gpT +lGh +cQF +vOy +vOy +vOy +vOy +msi +kDk +kbJ +cJM +jlA +qLi +dEm +vOy +vOy +vOy +vOy +xac +yiu +vbU +nIN +nIN +nIN +nIN +nIN +nIN +nIN +nIN +nIN +nIN +nIN +nIN +nIN +nIN +nIN +nIN +jtU +vpf +gxm +aeT +aeT +aeT +aeT +aeT +aeT +aeT +nnD +aZF +aZF +gxm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aad +kyw +kyw +kyw +deq +caq +nsY +tUS +bNh +wNl +nGh +fPp +lqN +vlO +nsY +xxG +smA +ktR +lfx +bdd +dJI +jaf +kwc +ebp +mPR +osU +vKe +dYX +mzv +xhW +fZE +bdg +bqZ +beH +bgO +boq +boq +boq +boq +wNT +pUA +wga +mfM +kbV +uMk +uMk +uMk +uMk +bgO +beH +bqZ +bdg +oSM +iOo +cVZ +iUk +cIx +fUC +vKe +sDA +kWN +tln +bko +bdd +hTf +wRO +iMm +gUf +nsY +aaq +wHj +qdv +uQo +iQt +uZo +xmJ +nsY +xbg +mgb +lyW +lyW +lyW +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(176,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +gxm +dxF +dxF +aaH +aam +aam +aam +aam +aam +aam +aam +gxm +bLf +tob +njn +rWz +rWz +rWz +rWz +rCZ +rWz +rWz +rWz +rWz +rCZ +aej +aeO +afG +ags +aej +lXl +lGh +bBH +vOy +elR +xXh +xXh +apU +taH +aBe +otu +jBO +jNc +ean +xXh +xXh +dMK +vOy +lXl +yiu +bBH +nIN +iIb +wui +iIb +nIN +rgL +rgL +rgL +rgL +lAW +rgL +rgL +rgL +rgL +lAW +nIN +jtU +nVE +gxm +aeT +aeT +aeT +aeT +aeT +aeT +aeT +nnD +aZF +aZF +gxm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +kyw +kyw +veq +deq +deq +lfx +nsY +kio +sJY +qJY +qLH +xTW +oGP +cnM +nsY +kqB +txH +txH +deq +bdd +fva +lkL +mBO +cHB +cHB +hDV +vmP +bdd +fZE +iLm +fZE +bdg +bqZ +bqZ +bgO +beH +beH +duv +beH +htI +cCD +shp +oAB +gyv +beH +duv +beH +beH +bgO +bqZ +bqZ +bdg +oSM +xub +oSM +bdd +oNP +tge +yjU +yjU +yjU +tEC +bko +bdd +gKB +rsM +oos +gUf +nsY +mKJ +deT +uAC +rhQ +pyc +uMn +ivz +nsY +xbg +mgb +xbg +xbg +lyW +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(177,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +gxm +dxF +dxF +aaH +aam +aam +aam +aam +aam +aam +aam +gxm +rGz +tob +njn +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +aej +aeP +agI +aia +yaz +muW +qdJ +bBH +vOy +wWz +vHO +uXj +uXj +iwJ +jVt +uyH +vHO +iwJ +uXj +uXj +rdt +wTM +vOy +lXl +poD +bBH +aQx +xzh +sjM +oIn +nIN +rgL +rgL +rgL +rgL +rgL +rgL +rgL +rgL +rgL +rgL +nIN +jtU +bWg +gxm +aeT +aeT +aeT +aeT +aeT +aeT +aeT +nnD +aZF +aZF +gxm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +kyw +lHB +lfx +lfx +lfx +lfx +heK +kam +axc +juD +twW +vHh +pvh +sZs +nsY +bwG +erL +scX +caq +bdd +cDH +cHB +scN +vvw +wmz +rhy +rec +bdg +fZE +naa +onn +bdd +bdd +bDQ +bgO +vGG +vGG +bgO +xRJ +xRJ +xRw +bPO +whA +xAt +xAt +bgO +gAj +gAj +bgO +cab +bdd +bdd +tmE +ter +oSM +bdg +jLS +xdP +gAj +dBI +sMu +eYF +vMM +bdd +sOt +cNX +cdI +sBL +nsY +eiN +dVs +tat +kNC +xuQ +uPW +kYv +oDx +sAS +sAS +sAS +rCh +xbg +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(178,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +gxm +adj +apk +apk +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +hqb +vsd +njn +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +aej +aeQ +agK +agu +eup +muW +qdJ +bBH +vOy +wWz +uwZ +wWm +jQt +nwi +sNz +uyH +uwZ +kGQ +jQt +coZ +sNz +wTM +vOy +lXl +poD +bBH +aQx +bcg +bkM +gYp +nIN +rgL +rgL +rgL +rgL +rgL +rgL +rgL +rgL +rgL +rgL +nIN +jZo +hQK +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +asM +asM +mwR +gxm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +kyw +eqm +lfx +vvH +bwG +bwG +nsY +gAP +oEX +irT +tyb +xxm +qSK +ieu +nsY +mZc +lfx +neH +deq +bdd +xXW +gVu +ydO +krU +wmz +vbI +rec +bdg +atH +iEM +atH +ppV +bdd +bqZ +bgO +vGG +vGG +bgO +xRJ +xRJ +viO +gMU +ksN +xAt +xAt +bgO +gAj +gAj +bgO +bqZ +bdd +eoy +brq +jnc +brq +bdg +jLS +frb +kNX +mZf +gAj +ngn +jUq +bdd +pEl +roU +oos +uVh +nsY +kzK +lFh +jYc +pVA +mzV +pML +ivz +nsY +iZd +mgb +xbg +jPx +xQd +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(179,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +gxm +ojH +ojH +taV +ouf +ouf +ouf +ouf +ouf +ouf +ouf +aLc +wBI +hGG +njn +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +aej +aeR +agK +agu +aej +dfA +qdJ +qmW +vOy +wWz +pEJ +xQm +wLy +eqD +sNz +uyH +sWW +mWW +wLy +xQm +tfH +wTM +vOy +piQ +poD +bBH +aQx +viv +xzh +syp +nIN +rgL +rgL +rgL +rgL +rgL +rgL +rgL +rgL +rgL +rgL +nIN +vmJ +elv +vRR +qXS +qXS +qXS +qXS +qXS +qXS +qXS +hXX +xDe +xDe +gxm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +kyw +htg +deq +deq +qCH +cXm +nsY +hUz +dbn +qvC +tyb +uRM +ipe +ehR +nsY +xEe +lfx +tdH +igw +bdd +sgm +kEg +nFA +jkD +xgN +vgn +xgN +bdg +fZE +naa +fZE +fZE +bdg +bqZ +qMR +rwv +rwv +dRT +dqD +dqD +bUb +dRT +eWp +eWp +eWp +dRT +tXb +tXb +fOk +bqZ +bdg +oSM +oSM +ter +oSM +bdg +vLg +loy +naK +mRq +xkB +qXO +eeh +bdd +pcO +tJV +qoY +uCh +nsY +tXT +jJk +wLG +tyb +sZH +rjV +ivz +nsY +qZy +jfS +bUH +ciB +soT +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(180,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +gxm +ojH +ojH +taV +ouf +ouf +ouf +ouf +ouf +ouf +ouf +sdf +cRL +hGG +njn +njn +njn +ahi +njn +njn +njn +njn +uux +njn +njn +aej +aej +agO +aid +aej +cOe +vZI +gsJ +vOy +wWz +uwZ +tyD +jQt +vfP +sNz +uyH +uwZ +tyD +jQt +vfP +sNz +wTM +vOy +cOe +vZI +gsJ +nIN +nIN +cyh +nIN +nIN +nIN +nIN +nNX +nIN +nIN +nIN +nIN +ayo +nIN +nIN +nIN +vmJ +nzD +xDV +qXS +qXS +qXS +qXS +qXS +qXS +qXS +hXX +xDe +xDe +gxm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +kyw +lfx +lfx +yih +qCH +spT +nsY +nsY +nsY +nsY +tIp +nsY +nsY +nsY +nsY +bwG +bwG +bwG +bwG +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +tvl +naa +meQ +fZE +bdg +bqZ +beH +vGG +vGG +beH +xRJ +xRJ +xRJ +beH +xAt +xAt +xAt +beH +gAj +gAj +beH +bqZ +bdg +oSM +awE +ter +gvK +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bJt +bJt +bJt +bJt +nsY +nsY +nsY +nsY +goy +nsY +nsY +nsY +nsY +ecj +bZf +lZI +faR +wxu +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(181,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +gxm +ojH +ojH +taV +ouf +ouf +ouf +ptA +ouf +ouf +ouf +fTj +jOD +oOw +cPK +sPb +dlo +sAz +jZC +uyd +ito +cuN +cQW +lQa +sPb +gtg +ilq +aMy +aMy +wNC +hOn +sYU +xCs +vOy +wWz +qxP +gxP +gxP +jgg +jZs +uyH +iRN +jgg +gxP +gxP +nMe +wTM +vOy +hOn +sYU +xCs +wNC +kin +oQI +laI +qwU +neZ +fpA +qUx +gUS +wrX +kMp +jkB +hlT +qNI +wrX +tqO +kdn +nyS +qec +qXS +qXS +qXS +jpn +qXS +qXS +qXS +hXX +xDe +xDe +gxm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +kyw +lfx +deq +bwG +bwG +bwG +bwG +bwG +bwG +kUI +bFB +iPt +atH +sCg +hgs +sCg +osX +uCt +sCg +atH +eUf +pwx +eUf +eUf +rIP +eUf +atH +fZE +fZE +naa +meQ +fZE +bdg +bqZ +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +bqZ +bdg +oSM +awE +ter +oSM +oSM +brq +mdC +qWK +lyq +lyq +lyq +lyq +brq +eMI +eMI +gjg +bom +kiy +eMI +brq +cSP +cSH +svt +mJO +mJO +mJO +mJO +mJO +mJO +jPx +mgb +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(182,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +dho +wVt +wVt +jlc +sVV +kbv +dTn +kbv +kbv +kbv +jlc +kbv +dTn +sVV +sVV +sVV +sVV +vnM +lLA +ejx +jIs +xLw +vOy +woh +vgO +vgO +vgO +vgO +vgO +utX +vgO +vgO +vgO +vgO +vgO +xAe +vOy +uAP +rgO +kak +nOp +cMz +cMz +cMz +cMz +cMz +gsC +cMz +qLg +aXD +cMz +cMz +gsC +cMz +bTY +qLg +iup +ryY +cnn +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +kyw +lfx +deq +bwG +ycl +ycl +ycl +jCg +bwG +eNL +pVr +oHs +osQ +tpR +tpR +tpR +tpR +tpR +tpR +osQ +tpR +tpR +tpR +tpR +tpR +tpR +osQ +wxp +tpR +baW +meQ +fZE +bdg +bqZ +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +bqZ +bdg +oSM +awE +jas +jhA +cVZ +qWx +jhA +jhA +jhA +jhA +jhA +jhA +qWx +jhA +jhA +jhA +jhA +jhA +jhA +qWx +ldW +mkx +eWv +mJO +plv +plv +plv +mbR +mJO +eBG +nhw +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(183,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +vHn +fbe +hoT +rpG +bGa +dVn +vwC +fbR +xMz +kMV +eON +gxn +vEV +xMz +sdv +xMO +wDg +xMz +lIY +gxn +aMy +kNV +wNC +wlr +xyp +mnf +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +gPA +eWf +mnf +wNC +gVW +oQI +iaO +vUn +atJ +rCl +ePM +pzd +oWx +nNx +pMA +ncT +gHh +oWx +dbc +cNM +ofU +njk +rXF +jtU +vzB +woU +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +kyw +lfx +deq +bwG +ycl +ycl +ycl +ycl +bwG +xgk +oUi +tLZ +atH +xSx +xSx +fBi +tXo +mBa +pYh +atH +wMl +aAU +dkP +dsY +rwj +xZR +atH +fZE +meQ +iEM +meQ +onn +bdd +bDQ +mng +bCu +bCu +bCu +bCu +wCI +moQ +flW +fvf +rgW +vUe +vUe +vUe +vUe +kuw +cab +bdd +tmE +awE +jnc +awE +oSM +brq +gOS +gOS +sLX +bIj +jtZ +eLu +brq +xpl +exc +jCx +mqt +vno +vno +brq +wDG +ihI +fnc +mJO +plv +plv +plv +plv +mJO +jPx +enQ +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(184,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +vHn +ggD +tob +cGd +njn +njn +njn +njn +njn +njn +hZE +sVV +oON +njn +njn +daI +njn +njn +ael +ael +agQ +aih +ael +hyT +lGh +iCg +cGO +cGO +cGO +rpV +cGO +cGO +cGO +cGO +cGO +kaO +cGO +rpV +cGO +cGO +cGO +cDP +lGh +tkd +nIN +nIN +rBD +nIN +nIN +nIN +rBD +nIN +nIN +nIN +mKi +sfT +hGV +nIN +nIN +nIN +nIN +nIN +nIN +mRU +vpf +tMU +woU +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +kyw +lfx +deq +bwG +ycl +ycl +ycl +ycl +jUx +fZE +bBR +tup +jeb +jeb +jeb +uIT +lKb +jeb +jeb +jeb +jeb +jeb +uIT +mWy +jeb +jeb +jeb +fZE +meQ +iEM +meQ +fZE +bdg +bqZ +udi +ddk +dEQ +hgg +ddk +cQc +nlB +ugu +oQH +wHo +uWc +wka +tTp +veu +mDW +bqZ +bdg +oSM +awE +jnc +awE +oSM +vra +vra +vra +mDT +cgl +vra +vra +vra +vra +vra +mDT +rJx +vra +vra +vra +uGf +mkx +oSM +vfo +plv +plv +plv +plv +mJO +nEl +bhy +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(185,1,1) = {" +aaa +aaa +aab +aaa +aac +aaf +aaf +aaf +aaf +aag +aag +aag +aag +aag +aag +aag +vHn +hgk +hoT +hoT +njn +rWz +rWz +rWz +jXN +njn +xVe +sVV +mbx +njn +tXa +gJg +tSX +lzt +ael +afE +agT +dgI +ael +ogT +yiu +xIj +xIj +xIj +tsn +tsn +tsn +xIj +tsn +tsn +tsn +xIj +tsn +tsn +tsn +xIj +xIj +xIj +lGh +syO +nIN +aGm +gNo +aGm +nIN +uig +xzh +xzh +fje +nIN +aNO +sfT +hGV +nIN +rgL +rgL +rgL +laD +nIN +upS +jtU +jtU +woU +aag +aag +aag +aag +aag +aag +aag +aaf +aaf +aaf +aaf +ajY +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aac +aaf +aaf +aaf +kyw +deq +lfx +bwG +ycl +ycl +ycl +ycl +bwG +hiP +meQ +czN +jeb +vlX +aNx +qGc +jhD +jeb +osc +cMV +osc +jeb +aIq +xHp +hmF +vlX +jeb +bMf +meQ +iEM +meQ +fZE +bdg +bqZ +udi +ddk +hgg +ddk +dNM +cQc +nlB +ugu +oQH +wHo +uWc +duw +uWc +fIZ +mDW +bqZ +bdg +oSM +awE +jnc +awE +eOx +vra +asX +chf +wDJ +tJz +vra +ukV +oNj +ukV +vra +gll +lpt +mgF +asX +vra +pHh +mkx +hNv +mJO +plv +plv +plv +plv +mJO +nEl +rxe +lyW +aaf +aaf +aaf +ajY +bdH +aaa +aab +aaa +aaa +"} +(186,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +vHn +tob +tob +njn +rWz +rWz +rWz +rWz +njn +hHe +gxn +ioH +njn +jXk +cGR +wks +jFM +ael +afH +agV +ain +ael +cQC +poD +rjr +aMl +aMl +rjr +aMl +iSx +dUR +kaE +kaE +kaE +eRI +qvh +aMl +xXd +aMl +aMl +xXd +lGh +iMD +nIN +nIN +xzh +uVY +nIN +lbO +gNo +xzh +lbO +nIN +uRY +pMA +waJ +nIN +rgL +rgL +rgL +rgL +nIN +oNM +vpf +woU +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aad +aag +aag +aag +kyw +xkb +dAA +bwG +ycl +ycl +ycl +ycl +bwG +cVf +meQ +jTt +jeb +obE +tdE +qGc +rth +rth +oef +oef +oef +nny +rth +xHp +xwl +rHf +jeb +rrU +meQ +iEM +meQ +fZE +bdg +bqZ +ngI +bDP +bDP +bDP +bDP +nBw +moQ +hGO +fvf +uNM +xAt +xAt +xAt +xAt +nNH +bqZ +bdg +oSM +awE +jnc +awE +uNp +vra +bMq +qUq +wDJ +nyQ +nyQ +xJH +xJH +xJH +miV +nyQ +lpt +qYQ +ptj +vra +opV +mkx +xVY +mJO +plv +plv +plv +plv +mJO +jPx +mgb +lyW +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +"} +(187,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +hoT +hoT +njn +rWz +rWz +rWz +rWz +aba +aGA +kbv +fZo +njn +pKL +jsA +jsA +qTi +ael +afI +agY +aiq +xfm +xIj +qdJ +iCg +mOi +mOi +mOi +mOi +mOi +sOK +tAt +auc +hyE +aqU +aHq +aHq +aHq +aHq +aHq +sfz +qdJ +nZK +mOZ +nIN +xzh +gNo +aZv +xzh +xzh +xzh +gNo +nIN +mzs +aPT +xyB +ceD +rgL +rgL +rgL +rgL +nIN +isq +vpf +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aad +aag +aag +aag +kyw +deq +qZK +bwG +bwG +bwG +bwG +bwG +bwG +dTd +dTd +div +jeb +vlX +thA +gAA +gAA +bfn +oMH +coB +rSj +bfn +gAA +gAA +fFD +vlX +jeb +wEK +meQ +iEM +meQ +fZE +bdg +bqZ +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +bqZ +bdg +oSM +awE +jnc +awE +dNW +vra +asX +drj +cgo +cgo +hyk +qyW +khd +kaI +hyk +cgo +cgo +hQc +asX +vra +crc +goo +hAA +mJO +mJO +mJO +mJO +mJO +mJO +jPx +pgJ +lyW +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +"} +(188,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +hoT +tob +njn +rWz +rWz +rWz +rWz +njn +mAF +ilq +pjj +njn +kCl +cGR +jsA +uqs +ael +afJ +agY +aiq +xfm +xIj +qdJ +xIj +mOi +onU +onU +qwJ +cOV +imS +rxl +xQV +qQS +aqU +aCZ +dgg +xRk +bti +aHq +wvX +qdJ +nZK +olF +nIN +xzh +lZJ +nIN +lbO +gNo +xzh +vwj +nIN +gfN +efj +sxE +nIN +rgL +rgL +rgL +rgL +nIN +vpI +jtU +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aad +aag +aag +aag +kyw +xwd +lfx +bwG +ycl +ycl +ycl +jCg +bwG +wBw +bZo +vsf +jeb +vlX +tdE +qGc +rth +rth +hNM +vxX +uBO +rth +rth +xHp +xwl +vlX +jeb +dQV +meQ +iEM +meQ +onn +bdd +bDQ +lnm +iLh +iLh +iLh +iLh +grR +moQ +ovp +fvf +rAb +sCA +sCA +sCA +sCA +bVw +cab +bdd +tmE +awE +jnc +awE +gvK +vra +asX +qUq +wDJ +nyQ +lrT +bqW +xaC +qeY +nyQ +nyQ +lpt +qYQ +asX +vra +lDk +dEK +oWN +mJO +plv +plv +plv +mbR +mJO +jPx +mgb +lyW +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +"} +(189,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +tob +xLu +njn +rWz +rWz +rWz +rWz +njn +hZE +kbv +mbx +njn +ePz +cGR +jsA +uqs +ael +afK +ahc +air +ael +sgH +qdJ +xIj +mOi +vRA +oYZ +ezq +eXy +tFe +xQV +pax +tCC +aqU +qjF +oqv +iqd +rUy +cnS +sfz +qdJ +qTS +nIN +nIN +xzh +oIY +nIN +aGm +qoM +xzh +gNo +nIN +aDS +aPT +hGV +nIN +rgL +rgL +rgL +rgL +nIN +jtU +vpf +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aad +aag +aag +aag +kyw +deq +lfx +bwG +ycl +ycl +ycl +ycl +bwG +tQe +meQ +ktl +jeb +obE +thA +qGc +rth +rth +rth +aTW +aTW +rth +rth +xHp +diJ +rHf +jeb +fZE +meQ +iEM +meQ +fZE +bCx +bqZ +cNf +dll +dll +lRs +dll +rJu +nlB +ugu +oQH +mnI +sJC +vSK +qnC +nuK +dVe +bqZ +bCx +oSM +awE +vOZ +awE +oSM +vra +bMq +drj +wDJ +nyQ +nyQ +nyQ +obQ +obQ +nyQ +nyQ +lpt +eBV +ptj +vra +xzI +mkx +hdV +mJO +plv +plv +plv +plv +mJO +nEl +xbg +lyW +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +"} +(190,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +tob +hUb +njn +njn +njn +njn +njn +njn +laM +kbv +nkH +njn +bVR +gJg +sPa +mSo +ael +afL +ahe +aij +ael +xIj +yiu +xIj +mOi +mAs +mAs +flR +uMO +tFe +xVc +xQV +vpH +aqU +gjB +wDy +aGN +dxv +cnS +cDP +qdJ +muW +aZv +gNo +gNo +pga +nIN +nIN +nIN +rBD +nIN +nIN +oIa +aPT +bqY +nIN +nIN +nIN +nIN +nIN +nIN +vpf +vpf +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +kyw +kyw +kyw +kyw +kyw +deq +iGc +bwG +ycl +ycl +ycl +ycl +cmC +fZE +meQ +hvz +jeb +vlX +tdE +qGc +rth +rth +tPI +tPI +iXT +rth +rth +xHp +xwl +vlX +jeb +fZE +meQ +cmL +czR +jzT +bCy +bDS +cNf +dll +qSE +nff +dll +rJu +nlB +ugu +oQH +mnI +nMp +qnC +qnC +qnC +dVe +cac +bCy +hQf +sTU +xLX +awE +hCf +vra +asX +qUq +wDJ +nyQ +nyQ +pHA +pHA +nyQ +nyQ +nyQ +lpt +qYQ +asX +vra +wcD +mkx +oSM +cnd +plv +plv +plv +plv +mJO +kLm +xbg +lyW +lyW +lyW +lyW +lyW +lyW +aaa +aab +aaa +aaa +"} +(191,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +tJq +bLf +njn +rWz +rWz +rWz +jXN +njn +hZE +kbv +mbx +njn +daI +njn +njn +njn +adO +adO +adO +adO +adO +iWB +yiu +syO +mOi +mOi +mOi +mOi +mOi +mOi +mAe +mAe +mAe +aqU +jVE +nTs +pje +pje +cnT +trx +gnK +aNE +nIN +nIN +nIN +nIN +nIN +uig +hPL +xzh +dMj +nIN +aDS +aPT +hGV +nIN +rgL +rgL +rgL +laD +nIN +wUJ +vpf +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +ety +deq +deq +deq +deq +deq +xJp +bwG +ycl +ycl +ycl +ycl +bwG +lFL +sNL +ygB +jeb +jeb +hfa +jwK +wnY +cLC +lyh +rtA +esn +nFK +lEO +xWd +oSL +jeb +jeb +fZE +meQ +dAm +fEF +otC +bdd +bDT +tHv +xRJ +xRJ +xRJ +xRJ +tSB +moQ +caO +fvf +vrW +iXb +iXb +iXb +iXb +pzV +cad +bdd +vMA +oYi +sIR +awE +oSM +vra +vra +eUh +jTI +lzq +nyQ +nhx +eiq +oEA +wXH +xBQ +mSU +wVy +vra +vra +siy +wIX +aCu +mJO +plv +plv +plv +plv +mJO +nEl +xbg +jPU +mgb +cgU +oqI +iDk +lyW +aaa +aab +aaa +aaa +"} +(192,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +hoT +rGz +njn +rWz +rWz +rWz +rWz +njn +hHe +gxn +gKd +njn +jsA +jsA +wET +gxk +adO +afM +fpR +ahf +adO +oDm +poD +xIj +mOi +mzP +mzP +nkK +tqu +aqU +gpW +ofY +eQj +aqU +lyE +rsO +aGN +rbB +cnS +xXd +qdJ +iCg +aUH +aXx +jKI +aXx +nIN +aGm +gNo +xzh +gNo +nIN +lCL +pMA +gcm +nIN +rgL +rgL +rgL +rgL +nIN +uNz +jtU +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +byt +lfx +lfx +lfx +lfx +txp +veq +bwG +ycl +ycl +ycl +ycl +bwG +bwP +bwP +bwP +jeb +tkN +qHg +gAA +beP +bfn +pkz +qfh +ipE +bfn +moI +gAA +cGV +tkN +jeb +hjQ +meQ +fNd +oUi +qdV +bdd +bDU +bqZ +bqZ +bqZ +kFs +bqZ +bqZ +bqZ +kFs +bqZ +bqZ +bqZ +kFs +bqZ +bqZ +bqZ +cae +bdd +huP +nbu +kcg +awE +oSM +vra +gNq +hXb +cgo +fwY +hyk +nNV +hyk +mBc +hyk +fwY +cgo +skF +gNq +vra +fqA +fqA +fqA +mJO +plv +plv +plv +plv +mJO +rxq +sAS +cXX +sAS +sAS +nHG +xbg +lyW +aaa +aab +aaa +aaa +"} +(193,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +tob +alh +njn +rWz +rWz +rWz +rWz +bWh +hmj +kbv +fZo +njn +iSd +jsA +jsA +qbP +adO +afN +ahh +aiw +ahG +muW +qdJ +xIj +mOi +mzP +mzP +cJv +xQV +mCx +qQS +tIu +uPI +aqU +wmK +liJ +pTj +cnq +cnS +sfz +poD +xIj +aUH +oyE +mMP +mMP +nIN +xzh +gNo +xzh +gNo +nIN +mzs +aPT +xyB +cix +rgL +rgL +rgL +rgL +nIN +bWg +jtU +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +deq +lfx +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +txE +bwP +bwP +jeb +aMx +qHg +qGc +hxe +aPf +rth +rth +rth +rth +hxe +xHp +cGV +nBa +jeb +atH +atH +dAm +aCX +suH +bdd +beQ +beQ +beQ +beQ +bdd +bdd +hjk +bOJ +bdd +hjk +bOJ +bdd +bdd +beQ +beQ +beQ +beQ +bdd +oCb +wwv +sIR +brq +brq +vra +bMu +hXb +wDJ +ivs +nyQ +nyQ +pHA +nyQ +nyQ +ivs +lpt +skF +pQF +vra +fqA +fqA +gzM +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +nEl +mgb +lyW +aaa +aab +aaa +aaa +"} +(194,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +btV +hoT +njn +rWz +rWz +rWz +rWz +njn +mAF +ilq +pjj +njn +xqh +svq +jsA +xGI +adO +afO +ahh +aiw +adO +xIj +qdJ +xIj +ryn +ryn +ryn +ryn +ryn +mOi +xdA +qQS +uUB +aqU +aHq +cnH +kzk +cnR +aHq +xIj +qdJ +xIj +aUH +sIA +gSj +aXA +nIN +xzh +gNo +xzh +lbO +nIN +gfN +efj +sxE +nIN +rgL +rgL +rgL +rgL +nIN +kUL +tMU +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +deq +iGc +wDr +mFL +mFL +iFp +wNz +wNz +wNz +oWE +wNz +wNz +suU +bwP +bwP +bwP +jeb +iow +aMO +qGc +hxe +rth +hXd +guW +aQM +rth +hxe +xHp +aUi +iow +jeb +fZE +meQ +rTA +tAW +stR +bCz +bDV +bGw +bGw +bGw +bGw +bNA +bKA +bdj +oMe +bdj +bKA +bNA +bGw +bDV +bGw +bGw +bGw +bCz +oSM +oYi +sIR +awE +dnP +vra +wTw +bNE +wDJ +ivs +nyQ +vqI +vWB +bSK +nyQ +ivs +bUi +bUT +wTw +vra +fqA +fqA +fqA +dBg +aqL +aqL +buY +aqL +aqL +aqL +uWm +nRA +nRA +wDr +jPx +wdW +lyW +aaa +aab +aaa +aaa +"} +(195,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +tob +tob +njn +rWz +rWz +rWz +rWz +njn +xXT +sVV +tkR +njn +ugo +uTl +cGR +wnb +adO +jkj +ahh +aiw +adO +eMr +lGh +xIj +ioU +pvK +qPE +xqD +ioU +ntj +ntj +ntj +ntj +ntj +cnE +liJ +hgB +cbn +aHq +eMr +gqz +shC +aUd +ckK +iKM +aHM +nIN +xzh +gNo +dMj +vNo +nIN +nme +sfT +vAH +nIN +rgL +rgL +rgL +rgL +nIN +edG +vpf +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +lfx +gSH +wDr +mFL +mFL +iFp +wNz +wNz +wNz +wNz +wNz +wNz +suU +bwP +bwP +bwP +aLT +aLT +aLT +aLT +ozq +ueZ +aPK +aLT +aQN +wsR +dAq +aQL +aQL +aQL +aQL +dQV +meQ +dAm +fEF +fZE +bCA +bCA +bdj +bCA +bCA +bdj +bCA +bCA +bdj +bCA +bdj +bCA +bCA +bdj +bCA +bCA +bdj +bCA +bCA +oSM +oYi +sIR +awE +gvK +bJC +bJC +bJC +bJC +cib +xvE +bQZ +bJC +bSL +moM +rXS +bSJ +bSJ +bSJ +bSJ +fqA +fqA +fqA +dBg +aqL +aqL +aqL +aqL +aqL +aqL +uWm +nRA +nRA +wDr +nEl +mgb +lyW +aaa +aab +aaa +aaa +"} +(196,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +hoT +hoT +njn +njn +njn +njn +njn +njn +ehL +kyr +chb +njn +njn +njn +eDe +njn +njn +lFt +ahh +aiw +adO +ogT +yiu +xIj +ioU +qyZ +wTd +cmK +cyP +kSi +mmn +kSi +qyA +kXu +jHC +liJ +qmP +uoH +aHq +xIj +lGh +xIj +aUH +dbv +lII +aWc +nIN +rBD +nIN +nIN +nIN +nIN +tCx +ncG +tZg +nIN +nIN +nIN +nIN +nIN +nIN +jtU +jtU +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +oif +nRN +wDr +mFL +mFL +iFp +wNz +wNz +wNz +wNz +wNz +wNz +suU +bwP +bwP +bwP +aLT +kaB +vVb +aLT +aOy +aOz +mKb +aLT +vbM +aRP +aSH +aQL +mJP +bSn +aQL +hEm +kti +eFa +fEF +exQ +bCB +bCB +bCB +bCB +bCB +bCB +bCB +bCB +bri +bdj +bri +bCB +bCB +bCB +bCB +bCB +bCB +bCB +bCB +uuI +oYi +mkx +bIW +eMZ +bJC +jSp +lAQ +bJC +bOZ +bPa +vhR +bJC +mWQ +bTy +bUf +bSJ +hII +iJS +bSJ +fqA +fqA +fqA +dBg +aqL +aqL +aqL +aqL +aqL +aqL +uWm +nRA +nRA +wDr +xgS +svF +lyW +aaa +aab +aaa +aaa +"} +(197,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +hoT +tob +lso +hoT +tob +tob +hqm +rpG +cSa +aeA +sjz +hbl +qYz +cGR +cGR +jsA +cdZ +aiw +ahh +aiw +nph +xIj +poD +xIj +ioU +mSz +nIG +cSk +ene +aGN +aGN +suy +uaV +uaV +nSS +iKf +aGN +qrv +aHq +vcG +qdJ +xIj +amM +ckd +mQC +aHM +aZv +xzh +xzh +kya +qoM +aZv +wcm +lJY +guo +rXF +fLi +vpf +uBx +jtU +jtU +vpf +vpf +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +vaV +qxJ +wDr +lFw +wWt +wWt +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +aLT +aLT +aLT +sXt +aMQ +aNI +bfy +aMz +sHY +aLT +msm +aRT +xMR +aTw +aUj +kLk +aQL +npw +vzi +eFa +fEF +rbd +bdk +bdk +bgR +bwc +eqP +pUp +bdk +bdk +brj +bQQ +fSl +bdk +bdk +pUp +eqP +myJ +eKI +bdk +bdk +cxF +oYi +mkx +fic +kjW +bJC +ojF +bNG +bOx +chR +bJD +mzg +bJC +ycZ +bTA +cIr +gHo +bUU +uDW +bSJ +bSJ +ljv +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +fCg +fCg +geu +wDr +wtk +mgb +lyW +aaa +aab +aaa +aaa +"} +(198,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abh +cGd +cGd +moK +cGd +cGd +cGd +cGd +cGd +wYa +nBK +mzS +njn +njn +njn +njn +cGR +njn +afP +ahh +aiw +nph +xIj +yiu +xIj +ioU +ioU +ioU +ioU +nmV +oeM +oeM +pUd +oeM +eed +udZ +aGN +aGN +pSU +aHq +upW +qdJ +xIj +amM +drk +mQC +mkG +nIN +qHT +nIN +nIN +nIN +nIN +nuM +uHr +xwX +mRU +mRU +mRU +mRU +mRU +gBs +mRU +mRU +uOi +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +lfx +gUn +wDr +bdY +bdY +bdY +aaF +aaF +aaF +aaF +aaF +aaF +aaF +wDr +aLT +aLT +aLT +aLT +aLT +aLT +tNR +aMP +eAg +aLT +qoJ +aRZ +aSI +aQL +aQL +aQL +aQL +aQL +uBj +eFa +fEF +wMB +bdl +bdl +bdl +bdl +bdl +bdl +bGo +bGo +qjY +pCr +jpD +cpK +cpK +bdl +bdl +bdl +bdl +bdl +bdl +opd +oYi +mkx +jwP +bJC +bJC +bJC +bJC +bJC +mjS +bNF +szM +bJC +qrc +bTE +syH +bSJ +bSJ +bSJ +bSJ +bSJ +ljv +wDr +anm +anm +anm +anm +anm +anm +anm +pfp +pfp +pfp +wDr +nEl +xbg +lyW +aaa +aab +aaa +aaa +"} +(199,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abh +acx +vuG +aeC +aeA +aeA +axw +aeA +bbe +aeA +aeC +aeA +bbe +aeA +aeA +njn +cGR +njn +afQ +aiw +aiw +nph +xIj +yiu +xIj +ioU +lPO +vJg +ioU +vQf +oeM +oeM +eed +oeM +eed +vQq +eEo +aGN +rub +aHq +sgH +qdJ +xIj +amM +eqB +obC +hcf +nIN +nhN +nIN +lJY +lJY +lFK +lJY +vcE +lJY +lFK +lJY +lMY +lJY +qvI +lJY +mCL +rRq +uOi +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +oxn +oxn +wDr +bdY +bdY +bdY +aaF +aaF +aaF +aaF +aaF +aaF +aaF +wDr +aLT +aLT +bbY +bdr +bdz +bdr +bft +bgU +bhG +aLT +bjs +blA +bno +bpC +brn +aRT +buM +aQL +fZE +eFa +fEF +wMB +bdl +bEr +bEs +bIs +bdm +rbY +eAG +bOK +bPD +bYa +bPD +jOk +bNB +tiE +xGo +bYu +nmK +caf +bdl +oDU +oYi +mkx +oSM +bJC +cdT +cfo +cgq +cfo +chM +cjd +cjA +bJC +ckr +ckQ +clh +clg +clI +clg +clW +bSJ +ljv +wDr +anm +anm +anm +anm +anm +anm +anm +pfp +pfp +pfp +wDr +cZI +xGT +lyW +aaa +aab +aaa +aaa +"} +(200,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abi +acz +aeA +aje +amF +asA +ayb +amF +amF +amF +ayb +asA +amF +kmE +aeA +njn +xzx +njn +ahJ +ahJ +ahJ +adO +xIj +poD +xIj +ioU +dnS +viN +bAu +nVB +eHY +oeM +eed +oeM +eed +iLf +aRi +aGN +qrv +aHq +fsh +qdJ +xIj +aUH +aGz +aGz +aGz +nIN +lZJ +nIN +lJY +qbx +dcp +yeH +sSl +dcp +dcp +dcp +sSl +yeH +dcp +nja +lJY +xxZ +uyC +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +emA +vIg +vIg +wDr +bdY +bdY +bdY +aaF +aaF +aaF +aaF +aaF +aaF +aaF +wDr +aLT +aLT +bca +aMC +aLT +avv +bfu +rGj +aQT +aLT +aTv +blB +bnp +aTx +aQL +aUY +buN +aQL +fZE +eFa +fEF +wMB +bdl +bDX +bCA +bCA +bdj +rbY +bEc +bKA +bCA +bQS +bCA +bKA +bEc +tiE +tjl +rIH +tUh +cag +bdl +jDz +oYi +mkx +oSM +bJC +cdU +bMy +bJC +cog +chN +mzg +cdP +bJC +dpO +ckX +cli +coj +bSJ +bVo +clX +bSJ +ljv +wDr +anm +anm +anm +anm +anm +anm +anm +pfp +pfp +pfp +wDr +cOo +rJf +tcO +aaa +aab +aaa +aaa +"} +(201,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abi +acA +aeA +ajk +aeA +aeC +aeC +aeC +cVb +aeC +aeC +aeC +vOh +gUX +ily +njn +eDe +njn +aeC +aeC +aeC +mdm +xIj +poD +xIj +ioU +pPM +qKz +ioU +mGu +fXx +fXx +kXf +huO +iLO +qLV +xNv +iLO +bUa +aHq +ogT +lGh +xIj +mdm +vcE +vcE +vcE +nIN +rBD +nIN +cBb +xVS +lJY +vcE +vcE +vcE +iTd +vcE +vcE +vcE +eKH +lVo +lJY +kAm +uyC +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +emA +gPS +gPS +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +aLT +aLT +aLT +aLT +aLT +aLT +bfx +rGj +aQT +aLT +aTv +blB +kiU +aQL +aQL +aQL +aQL +aQL +dQV +eFa +fEF +fNH +bdl +bDY +bCA +bCA +nLt +gmb +bNQ +bNQ +bNQ +bNQ +bNQ +bNQ +bNQ +nXU +bKA +jac +bCA +cah +bdl +wPi +oYi +mkx +gvK +bJC +bJC +bJC +bJC +bJC +chO +mzg +cdP +bJC +dpO +ckX +clj +bSJ +bSJ +bSJ +bSJ +bSJ +ljv +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +nGM +hIp +tcO +aaa +aab +aaa +aaa +"} +(202,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abh +acx +ahz +ajs +aeC +aeC +ayc +aOE +aOE +aOE +ciu +aeC +aeC +ajs +aeC +mzS +aeC +oZI +fjo +fjo +opu +hlj +iso +ceV +nsH +alL +alL +alL +jvY +jvY +jvY +jvY +jvY +jvY +jvY +jvY +jvY +alL +alL +alL +iso +ceV +nsH +hlj +nvz +ner +ner +vdR +uHr +nuM +vcE +kUV +vcE +vcE +eCo +iry +iry +iry +sYw +vcE +vcE +kUV +cil +rRq +uOi +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +emA +jEM +ikT +owU +iTq +ikT +jEM +kjY +riB +fGi +qan +jkN +jUh +tIF +bCk +jkN +aLT +bco +aMB +bdA +aLT +ial +rGj +aPl +aLT +aPn +aRU +bnr +aQL +brr +aUZ +buO +aQL +fZE +eFa +fEF +tLZ +bdl +bDZ +bdj +bri +bLX +bdl +kSU +bNP +bmD +bNP +bmD +bNP +bmD +mYv +doP +jac +xxa +cai +bdl +tkg +oYi +mkx +oSM +bJC +cdV +bMx +cgr +bJC +raK +mzg +bgW +bJC +ckR +ckX +iyS +bSJ +clJ +bVn +clY +bSJ +ljv +dnZ +eHy +eHy +eHy +cyp +oaO +lWY +ljv +jiM +ere +lYg +lYg +sEu +lia +tcO +aaa +aab +aaa +aaa +"} +(203,1,1) = {" +aaa +aaa +aab +aaa +aae +aah +aah +aah +aah +aag +aag +aag +aag +aag +aag +aag +aag +abh +acx +pMk +ajs +aeC +wXh +ayn +atr +lMy +aex +ciw +wXh +aeC +ydz +ayb +jxq +fbV +msS +asA +asA +msS +nZf +rho +jIs +emL +jvY +jvY +jvY +jvY +apW +aqV +asH +aui +avN +aqV +axV +jvY +jvY +jvY +jvY +gqI +iCT +qnH +nZf +ohi +yeH +yeH +ohi +oJK +qnX +sSl +kkx +vcE +kpo +iMx +tGi +cea +bXe +eyG +kpo +vcE +kUV +xyL +rRq +uOi +aag +aag +aag +aag +aag +aag +aag +aag +aah +aah +aah +aah +afm +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +emA +kJZ +kjY +fGB +snN +jEM +ikT +jEM +lty +eTD +lty +jEM +ikT +kjY +bCk +heO +aLT +bco +bdr +bdA +aLT +bfw +rGj +aQT +aLT +aTv +blB +vJV +aQL +brr +aRT +buO +aQL +fZE +eFa +fEF +xpc +bdl +lOr +lOr +iwI +bdl +bdl +reH +bNP +bmD +bNP +bmD +bNP +byu +obo +tiE +bYv +tiE +tiE +bdl +fJt +oYi +mkx +oSM +bJC +cdV +cfo +cgr +bJC +chQ +mzg +cdP +bJC +dpO +ckX +clk +bSJ +clJ +clg +clY +bSJ +ljv +eaz +lYg +lYg +aqH +oxl +wac +mjy +ljv +ien +xhO +xhO +xhO +cmN +srl +tcO +aaa +aab +aaa +aaa +"} +(204,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +aaa +aae +aah +aah +aah +aah +aah +aah +aah +abi +nGY +gyU +ajk +aeA +asY +ayQ +atr +iDK +atr +ciD +ngl +aeA +ajk +aeA +fXO +aeC +pdo +nBK +nBK +wYa +hlj +giW +puP +tfF +jvY +arg +atf +jvY +apX +aqb +asI +aqb +avO +aqb +axW +jvY +aMm +aOq +jvY +bgM +puP +tfF +hlj +xwX +uHr +uHr +ehm +nXG +qYd +lJY +xVS +lJY +ttS +wEO +faO +cOd +bXe +deg +wLu +lJY +xVS +kPH +knL +uyC +aah +aah +aah +aah +aah +aah +aah +afm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +emA +emA +emA +emA +emA +sEg +ikT +jEM +ahL +bFl +nZW +jEM +ikT +jEM +jEM +bCk +aLT +bcZ +bdr +bdC +beR +bfy +rGj +aQT +aLT +aTv +blB +bnt +bpG +brs +aRT +bew +aQL +atH +dAm +aCX +atH +mCo +iwZ +jFy +bKA +oNW +dmF +pXV +bNP +bmD +bNP +bmD +bNP +bmD +lyk +bOR +eHa +cmo +xAB +mCo +brq +wwv +sIR +brq +bJC +bKX +cfo +cgs +chk +chR +mzg +cdP +bJC +dpO +ckX +cll +clE +clK +clg +bVy +bSJ +ljv +ljv +ljv +ljv +tWl +jer +ljv +ljv +ljv +jEA +hCq +tcO +tcO +tcO +tcO +tcO +aaa +aab +aaa +aaa +"} +(205,1,1) = {" +aaa +aaa +aab +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +abi +dEJ +gyU +ajk +aeA +atp +ayR +atr +iDK +atr +cji +nqV +aeA +ajk +ily +cMx +fVk +cMx +rjX +aeC +beN +mdm +lLt +qdJ +vCv +jvY +arh +atm +jvY +apY +aqb +asJ +aqb +avP +aqb +axX +jvY +nSG +aOs +jvY +lLt +poD +vCv +mdm +rmo +vcE +uul +yat +qLk +yat +cBb +xVS +lJY +hlX +umh +bXe +cOd +tGi +pfH +wlF +lJY +xVS +kPH +qGU +uyC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +emA +tcm +ikT +jEM +uzv +tYr +uzv +jEM +ikT +hYf +jEM +ikT +aLT +bco +bdr +bdA +aLT +bfD +aPj +aPl +aLT +aPn +blB +sNb +aQL +brr +aRT +buO +aQL +jpW +eFa +svw +mzv +bmv +bEg +bGU +bGU +bKz +snw +qsC +bNL +bNL +bNL +bNL +bNL +bNL +bWL +bXH +bYw +nDM +bWL +sSa +bRo +dOG +gKw +tgz +bJC +cdV +cfo +cgr +bJC +foL +mzg +bgW +bJC +ckR +ckX +loS +bSJ +clJ +clg +clY +bSJ +bXh +lYg +lYg +lYg +sEu +eaz +ere +lYg +lYg +sEu +gEh +tcO +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(206,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +abh +acx +gCB +ajs +aeC +wXh +ayn +atr +rmG +bXz +ciw +wXh +aeC +ajs +qon +cMx +gqx +aep +ggQ +ggQ +aME +aep +lLt +lGh +vCv +jvY +ari +aoP +jvY +apZ +aqb +asK +aqb +avQ +aqb +aqa +axo +atm +aOr +jvY +lLt +poD +vCv +aep +aME +ggQ +aME +aep +dcX +yat +dHe +kUV +vcE +kpo +iMx +bXe +sZY +mzF +eyG +kpo +vcE +kUV +bxA +rRq +uOi +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +emA +hyb +fGB +kjY +yia +ugZ +kcG +fBo +ikT +jEM +jEM +ikT +aLT +bco +aMC +bdA +aLT +bfx +bgY +aQT +aLT +aTv +blB +nCp +aQL +brr +aUY +buO +aQL +fZE +eFa +fEF +tLZ +mCo +bEh +bNQ +bNQ +bNQ +pjG +boy +bpQ +bpQ +bsJ +bpQ +bpQ +bxf +bZr +bKA +bKA +cXR +cal +mCo +wcD +oYi +mkx +oSM +bJC +cdV +bMy +cgr +bJC +chP +mzg +cdP +bJC +dpO +ckX +cln +bSJ +clJ +bVo +clY +bSJ +tgm +xhO +xhO +xhO +xhO +gEh +sOD +gEh +xhO +xhO +tWp +tcO +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(207,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +abh +acx +aeB +ajs +aeC +aeC +azk +aOU +biL +biL +cmF +aeC +aeC +ajs +aeC +cMx +qbw +aep +afj +afk +agM +aep +lLt +yiu +vCv +jvY +arj +atm +jvY +xRH +aqb +aqb +aqb +aqb +aqb +aqb +bzD +atm +aOs +jvY +lLt +yiu +vCv +aep +aHS +afk +sHo +aep +cnm +yat +vcE +kUV +vcE +vcE +shs +kAU +kAU +kAU +aYE +vcE +vcE +kUV +riP +rRq +uOi +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +emA +emA +emA +emA +emA +emA +emA +emA +emA +emA +iTq +snN +aLT +aLT +aLT +aLT +aLT +hQW +bgY +aQT +aLT +aTv +blB +qhU +aQL +aQL +aQL +aQL +aQL +fZE +eFa +fEF +bNr +bdl +bEi +bZr +bmD +ngw +pjG +boz +bpR +bpR +bpR +bpR +bpR +bxg +bZr +bKA +bKA +cir +bdl +bdl +sXC +oYi +mkx +oSM +bJC +bJC +bJC +bJC +bJC +uUo +mzg +cdP +bJC +dpO +ckX +sUO +bSJ +bSJ +bSJ +bSJ +bSJ +cZp +xhO +tcO +tcO +tcO +tcO +tcO +tcO +tcO +tcO +tcO +tcO +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(208,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +abi +acX +aeA +aju +amH +aeC +aeC +aeC +cVb +aeC +aeC +aeC +aeA +ajk +aeA +cMx +qbw +aep +afk +afk +afk +aep +lLt +poD +vCv +jvY +ark +atm +jvY +bhf +aqb +asL +aqb +avR +aqb +kTv +axo +atm +thv +jvY +lLt +yiu +vCv +aep +afk +aHl +afk +aep +rZZ +yat +lJY +itR +kKR +vcE +vcE +vcE +iTd +vcE +vcE +vcE +lJY +xVS +lJY +hki +uyC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +ikT +jEM +aLT +bcE +aMB +bdD +aLT +bfz +bgY +aPl +aLT +aPn +blB +bnu +aQL +brt +aUZ +buS +aQL +fZE +eFa +fEF +tLZ +bdl +brp +bZr +bmD +xId +pjG +boz +bpR +bpR +bpR +bpR +bpR +bxg +bZr +bNQ +bNQ +bNQ +bGz +egD +oQn +oYi +mkx +oSM +bJC +cdX +bMx +cgt +bJC +chS +bQA +bgW +bJC +ckR +ckX +meu +bSJ +clL +bVn +clZ +bSJ +tgm +xhO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(209,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +abi +acY +aeA +ajv +amF +asA +ayb +amF +amF +amF +ayb +asA +amF +ohL +aeA +cMx +oVo +aep +aep +aep +aep +aep +umI +ddO +umI +jvY +alL +atk +jvY +jvY +axo +axo +axo +axo +axo +jvY +jvY +aAy +alL +jvY +umI +juj +umI +aep +aep +aep +aep +aep +lla +yat +lJY +ucw +dcp +yeH +sSl +dcp +dcp +dcp +sSl +yeH +dcp +lMp +lJY +jbt +uyC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +qGC +jEM +aLT +bcE +bdr +bdD +aLT +rrq +bgY +aQT +aLT +aTv +blB +mtr +aQL +brt +bpC +buS +aQL +bMf +eFa +fEF +tLZ +bdl +bEl +wup +bmD +hBz +pjG +boA +bpR +bpR +bsK +bpR +bpR +bxh +bZr +krN +krN +krN +oqY +lde +oSM +oYi +mkx +oSM +bJC +cdX +cfo +cgt +bJC +chQ +cjf +cdP +bJC +dpO +ckX +xoe +bSJ +clL +clg +clZ +bSJ +xMm +pFr +tcO +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(210,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +abh +acx +aeA +aeA +aeA +aeA +aeC +aeA +aeA +aeA +aeC +ntI +aeA +aeC +puO +cMx +qbw +xnh +aep +aep +aep +aep +sHI +jao +qhT +jvY +arl +atm +alL +awv +axu +azc +aAZ +aDa +aFh +aHr +alL +aMo +aOt +jvY +sHI +lOn +wCe +oIB +jgr +cXz +rtc +oIB +cnm +yat +lJY +uxC +lJY +lJY +fFe +lJY +lJY +lJY +vcE +lJY +lJY +lJY +lJY +rRq +uOi +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +ikT +jEM +aLT +abS +bdr +bdC +beS +bfy +bgY +aQT +aLT +aTv +blB +bnt +bpH +brs +bpC +abT +aQL +atH +dAm +aCX +atH +bdl +buz +bZr +bmD +dmE +pjG +boz +bpR +bpR +bpR +bpR +bpR +bxg +bZr +ibc +uly +bNN +vbR +eGq +uuI +wwv +sIR +brq +bJC +ack +cfo +cgs +chl +chR +cjf +cdP +bJC +dpO +ckX +cll +clF +clK +clg +acp +bSJ +qKK +gEh +tcO +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(211,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abh +abh +abh +abh +aeC +atr +aeC +atr +aeC +cMx +cMx +cMx +cMx +mRI +cMx +cMx +qbw +rYU +cMx +cMx +cMx +cMx +sHI +jao +qhT +jvY +abF +atm +auH +atm +atm +atm +aBb +aFi +aFi +aHs +aIT +atm +aVF +jvY +sHI +aPC +pKH +oIB +fXE +kaS +aiQ +oIB +cnm +yat +yat +kNq +kNq +qDB +kNq +kNq +vcE +bXe +vcE +bXe +vcE +uOi +uOi +uOi +uOi +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +jEM +ikT +aLT +bcE +aMC +bdD +aLT +bfC +bgY +aPl +aLT +aPn +aRX +cSQ +aQL +brt +aUY +buS +aQL +fZE +eFa +fEF +hvz +bdl +bEm +bZr +bmD +hAc +pjG +boz +bpR +bpR +bpR +bpR +bpR +bxg +bZr +xBV +uys +uys +uys +uys +bfd +oYi +mkx +oSM +bJC +cdX +bMy +cgt +bJC +chV +cjf +bgW +bJC +ckR +bTC +mvl +bSJ +clL +bVo +clZ +bSJ +hTU +lNk +tcO +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(212,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +abh +aeC +atr +aeC +atr +aeC +cMx +jrC +jYa +cMx +wFX +cMx +kqa +qbw +oVo +cMx +oVo +oVo +cMx +nSw +qsG +qhT +jvY +jvY +jvY +jvY +awx +awx +azd +aBc +aDb +awx +awx +jvY +jvY +jvY +jvY +sjG +lOn +qhT +oIB +wqr +bZw +xUV +oIB +cnm +cjm +yat +toD +wDq +aPO +sNP +kNq +vcE +bXe +vcE +bXe +vcE +uOi +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +rIV +dYc +aLT +aLT +aLT +aLT +aLT +bfx +bgY +aQT +aLT +aTv +blB +sNb +aQL +aQL +aQL +aQL +aQL +edn +qRd +gtH +edn +bdl +bpT +bNN +bNN +bNN +bmB +boB +bpS +bpS +bsL +bpS +bpS +bxi +bZr +bKA +dyx +eYr +bUo +uys +kKB +rsL +jts +kKB +bJC +bJC +bJC +bJC +bJC +chW +rvT +cdP +bJC +dpO +ckX +hAZ +bSJ +bSJ +bSJ +bSJ +bSJ +xsv +gEh +tcO +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(213,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +abh +aeC +atu +azU +aeC +ldl +cMx +qbw +iAI +cMx +tvA +cMx +iml +fIK +kZc +wuS +fIK +fIK +wuS +tzF +qsG +qhT +alL +urM +dBG +jvY +jvY +jvY +jvY +aBf +jvY +jvY +jvY +jvY +wjv +fDG +alL +sHI +aPC +tzF +qgK +tEB +uBM +dXo +oIB +fME +kon +yat +swG +jei +aPO +hIX +kNq +vcE +pxJ +swM +vcE +fFe +uOi +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +jEM +kDd +aLT +bdJ +bds +aLT +bpL +bfE +njd +aQT +aLT +aTv +blB +uvu +aUZ +aQL +bsS +mqK +aQL +bqc +tcS +mww +sZe +bdl +bEp +bCA +wlh +cvb +bmC +nwG +lDL +nwG +lMw +jeO +nQv +ltb +bmD +bKA +dyx +hGN +pVx +uys +wKm +ekM +aVM +wVm +bJC +cfp +cgu +bJC +bMx +chQ +cjf +cdP +bJC +dpO +ckX +clo +bVn +bSJ +clM +clS +bSJ +cZp +gEh +tcO +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(214,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +fTl +taw +taw +taw +mRI +taw +cMx +vPT +iAI +cMx +wTn +cMx +cLd +qbw +pTI +cMx +oVo +oVo +cMx +nWf +lOn +acQ +kwd +amw +anO +arq +arq +arq +aze +xYZ +aDe +arq +arq +arq +anO +qaV +kwd +acQ +lOn +qhT +oIB +wKF +hzb +ltU +oIB +wSB +gAO +yat +bCR +jei +aPO +fJp +kNq +kNq +kNq +kNq +qDB +kNq +fVe +aag +aag +afm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +jEM +ikT +aLT +beT +bdr +bkg +aMz +bfy +bgY +aPl +aLT +aPn +blB +bnt +aRT +ihY +bpC +dnE +aQL +qfI +dpA +ggo +lhs +bdl +tiE +tiE +tPj +tiE +tiE +bdl +bdl +fnI +agv +bdl +bdl +bdl +kFO +kFO +uys +uys +uys +uys +gyw +bFX +gyw +hza +bJC +bMA +cfo +chm +bJD +chR +cjf +bgW +bJC +ckR +ckX +cll +bTA +clG +clg +bVq +bSJ +ien +dFL +tcO +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(215,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +fTl +vrZ +qlu +taw +wTn +kCu +cMx +sdd +iAI +cMx +wFX +cMx +nDH +qbw +rYU +cMx +oVo +rYU +cMx +nXV +qMI +rUN +aqg +oOW +atn +atn +atn +sAw +anP +aBh +anP +anP +iJs +dFN +atn +aOB +aRj +rUN +hft +swn +oIB +phj +vEf +cNK +oIB +xiW +mCg +ryJ +aPO +aPO +aPO +jei +jei +lYt +jei +jei +aPO +jei +fVe +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +sEg +ikT +aLT +aLT +aLT +aLT +brv +nuA +bgY +aQT +aLT +aTv +blB +oiQ +lml +aQL +aQL +aQL +aQL +oxe +tcS +mww +sZe +bdl +fKT +bGy +kOW +snM +iqo +bdl +clV +crD +kLP +gvU +cyo +bdl +hTP +tXj +sgc +xCa +bUy +bdl +eTx +ekM +cJs +pOW +bJC +bJC +bJC +bJC +cdf +jxx +cjf +cdP +bJC +dpO +ckX +rXj +gfo +bSJ +bSJ +bSJ +bSJ +cZp +xhO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(216,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +fTl +hjT +rWb +taw +oAK +kCu +cMx +fVk +cMx +cMx +tvA +cMx +oVo +qbw +oVo +cMx +iVz +rAS +cMx +sHI +lOn +acQ +kwd +eDT +amx +amx +amx +awy +amx +amx +amx +amx +amx +mpZ +amx +aoT +kwd +acQ +tof +wCe +oIB +cHC +dha +pxj +oIB +wSB +hYj +yat +fPF +jei +nNT +jwJ +mgX +nZG +nZG +nZG +xGm +jei +fVe +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +jEM +ikT +aLT +beT +bdr +bpK +aMz +bfy +bgY +aQT +aLT +aTv +blB +bnt +aRT +mUx +bpC +dnE +aQL +bqc +tcS +mww +sZe +bdl +fgm +wEF +rHN +kuu +mDj +bdl +jre +dXG +nqx +hzg +vBU +fIX +fnI +ipa +fYZ +vYC +noj +hpS +gyE +ekM +cJs +pOW +bJC +bMA +cfo +chn +bJD +chR +cjf +cdP +bJC +dpO +ckX +cll +bTA +clH +oFV +bVq +bSJ +vUJ +hCq +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(217,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +fTl +qlu +uKl +kiR +oxy +oQL +jsu +oQL +gqt +oxy +oxy +vTE +qbw +qbw +oVo +cMx +cMx +cMx +cMx +sHI +jao +qhT +alO +ars +amx +amx +aqf +pzX +amx +amx +amx +amx +amx +mpZ +amx +aOC +alO +sHI +tof +qhT +loP +loP +loP +loP +loP +qej +loP +loP +kNq +fJp +aPO +wXl +dJe +unQ +nxe +tjH +tVn +oUx +fVe +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +ikT +jEM +aLT +beU +bdv +aLT +bry +bfu +bgY +jVr +aLT +kXa +blB +chL +lAl +aQL +bsW +xvX +aQL +bqc +noI +dJG +sZe +bdl +ntd +jCm +eqb +mLR +hdE +bdl +krZ +ixQ +kWk +xyY +nwY +bKA +fnI +cwo +scH +nzO +kxL +hpS +gyE +nzt +jhs +pOW +bJC +cfq +cgv +bJC +wqc +chN +cjf +lok +bJC +ihM +ckX +clm +hXY +bSJ +clN +clT +bSJ +xsv +gEh +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(218,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +fTl +wIu +wXJ +taw +oNK +kMa +qIa +iSB +oxy +oQL +hdy +cMx +oVo +qbw +oVo +cMx +oaP +jhQ +cMx +kYb +jao +qhT +inw +eDT +amx +amx +amx +amx +amx +amx +amx +amx +amx +aBo +amx +aoT +inw +sHI +tof +nii +loP +iwB +tOC +mHo +vqL +xBY +qwo +loP +ang +hqu +aPO +wXl +fJp +iCD +iCD +iCD +tVn +jei +fVe +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +qGC +jEM +aLT +aLT +aLT +aLT +bwe +cuY +aPo +aLT +aLT +aQL +aSa +bnA +xhQ +aQL +aQL +aQL +aQL +bqc +ubQ +fpM +bEk +bdl +tFS +bdj +bNs +nwb +mrM +bdl +ycH +pMJ +xnI +ayj +dWg +bdl +oTe +ixN +jaR +mJa +wWP +rsK +cBC +feo +ekM +pOW +bJC +bJC +bJC +bJC +qFG +pvJ +bQD +bJC +bJC +bSJ +hss +clp +hfQ +bSJ +bSJ +bSJ +bSJ +goM +tfQ +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(219,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +aaf +aaf +aag +aag +fTl +taw +taw +taw +wTn +wOv +tuJ +iKV +oxy +oQL +oFr +cMx +xnX +qbw +oVo +cMx +oVo +oVo +cMx +sHI +jao +qhT +inw +eDT +amx +auB +aqh +sqo +sqo +aDh +aDh +mux +aya +aBo +amx +wwJ +inw +sHI +cNC +qhT +loP +joG +sDu +kxo +wSn +xBY +lKa +loP +fvo +jei +aPO +wXl +kNq +jcE +jei +lVR +pHD +dhp +fVe +aag +aag +aaf +aaf +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +emA +emA +emA +emA +ikT +ikT +aLT +vZb +tnY +rAN +tIQ +cic +ceg +mdo +mJj +tDZ +nYc +bnB +aVd +aUZ +uqA +bES +kcl +bqc +ubQ +uPX +rHr +bdl +wIr +aQy +jAB +iYt +bMa +bdl +rDe +nUa +ufJ +rCK +cTf +bdl +bdl +nPT +nPT +bdl +bdl +bdl +jLg +uEO +ekM +pOW +hNw +wos +bMC +fcB +rUh +jLj +wPC +xZU +hNw +hmC +rQA +hjs +ivM +hcI +hcI +vPK +bSJ +cZp +gEh +tcO +tcO +tcO +tcO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(220,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +hEr +oQL +kiR +oxy +wOv +qlu +qAG +oxy +kMa +gQu +cMx +nDH +qbw +pTI +cMx +oVo +oVo +cMx +nWf +jao +qhT +inw +qHM +emn +rdI +alO +ptf +ptf +aBi +aDi +alO +aye +aBo +amx +aBs +inw +sHI +cNC +qhT +loP +kxo +wSn +kxo +kdi +xBY +kxo +loP +nSk +jei +aPO +wXl +kNq +cke +hqu +oSR +fZI +jei +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +hyb +kjY +kcG +tIF +jEM +ikT +aWT +aMH +beV +gWE +udG +aOK +dRv +mdo +mJj +ljs +hsW +mFO +bJE +aSE +aVf +bES +kcl +bqc +sUk +slo +bdl +bdl +bdl +bdl +bdl +bdl +bdl +bdl +bdl +xWo +bdl +bdl +bdl +bdl +reN +dEp +reN +htk +dEp +bdl +bdl +udf +iyC +pOW +hNw +sZq +jZv +cgy +nrw +spS +lBv +pXZ +hNw +bNC +sDM +clr +nvT +aMI +wGE +erG +ewO +sEu +xhO +ffx +jhK +srl +lWY +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(221,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +hEr +xBS +taw +tTG +wOv +wIu +ydf +oxy +wOv +ixu +cMx +tNY +qbw +qbw +vTE +qbw +qbw +rWy +kGS +lOn +wCe +alO +alO +alO +alO +alO +axx +amw +anO +aDj +ptf +aye +mpZ +amx +aBs +alO +sHI +tof +kGS +fTF +xBY +xBY +xBY +xBY +xBY +jGI +loP +kNq +fJp +nOx +wXl +kNq +kNq +kNq +kNq +pAV +jei +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +jkN +ikT +ikT +ikT +ikT +ikT +aLT +aZf +duV +duV +eUA +bfx +bgY +mdo +mJj +byn +gip +bnt +bJH +iIR +aVf +bES +kcl +bqc +ubQ +kwi +lZM +rSR +xss +rLK +xss +xss +uHk +dXb +dXb +dXb +cTX +xss +xss +dXb +ndm +xss +iFY +dXb +xss +xss +lZM +kYl +ekM +pOW +hNw +sZq +jZv +gnu +bOQ +chR +cjg +urN +hNw +bNC +ckX +vuL +fDh +jGR +jGR +oqu +bSJ +gEh +gEh +gEh +gEh +gEh +xhO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(222,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +oqc +smw +taw +oxy +rgk +nUT +cnP +oxy +wOv +qlu +cMx +qbU +qbw +oVo +cMx +oVo +oVo +btb +sHI +lOn +qhT +alO +gKZ +vTv +auL +alO +axy +azh +aBk +aoT +ptf +aye +mpZ +amx +aBs +alO +uSk +cNC +qhT +gdS +wSn +kXN +fuT +odD +xBY +mOg +oHx +aPO +iXB +aPO +gof +bVr +ivL +ivL +ivL +fVa +jei +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +fGi +ikT +aLT +aLT +aLT +aLT +aLT +aLT +mhI +bjA +xSW +bAd +bCS +aLT +aLT +ksp +gip +brH +chp +chp +aVf +aQL +aQL +lhs +bww +tHF +cvx +cvx +bKJ +cvx +cvx +cvx +cvx +vub +vub +vub +owW +vub +vub +vub +cvx +cvx +cvx +bKJ +cvx +cvx +cvx +xQz +bFX +pmd +bJC +bJC +bMD +vND +vND +chR +cjg +kIP +bJC +bSJ +bTJ +pUf +hji +rPO +ixD +bSJ +bSJ +bSJ +bSJ +bSJ +bSJ +gEh +dFL +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(223,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +taw +taw +taw +wTn +oQL +oQL +lUQ +oxy +tBU +iDs +cMx +qbU +qbw +rYU +cMx +pVh +mSl +btb +sHI +jao +qhT +alO +arz +atq +aoT +alO +aOG +amA +kDH +aOB +laQ +arr +iav +atc +aOF +alO +sHI +cNC +qhT +gdS +lBg +dXd +loP +loP +xeU +loP +loP +kNq +hnt +aPO +wSx +gYI +wPa +gYI +gYI +rzk +jei +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +jEM +ikT +aLT +bBg +vPv +oTA +vPv +rAN +tIQ +vme +aNQ +aOL +uIJ +hRd +aLT +aQL +bmh +bnX +aRo +brA +aVf +lQz +aQL +bqc +qIf +bqc +bbs +cbh +xYP +bbs +gsm +bCM +rbF +cJE +bOT +dLt +bRe +iFD +vRa +vub +bPL +bCM +xSM +cgE +gsm +bCM +bbr +uPE +ekM +pOW +bJC +jht +jZv +cgy +cgy +lbX +uxp +bJC +bJC +bSZ +ckX +bUp +bUN +bVb +ivM +mAV +hzu +qNd +hzu +hcI +bSJ +xhO +xhO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(224,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +oQL +mOE +gUG +oxy +oQL +cMx +cMx +fVk +cMx +cMx +cMx +uyQ +qbw +oVo +cMx +cMx +cMx +cMx +sHI +jao +qhT +alO +arz +atq +aoT +alO +axA +amA +aBl +aoT +aFl +arm +aIU +aMq +aOG +alO +sHI +tof +qhT +loP +loP +loP +loP +tGd +vyI +lPB +oHl +jWh +yat +rXq +yat +yat +kNq +kNq +kNq +gGb +oUx +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +jEM +jEM +aLT +nuN +nuN +rfa +ehx +ehx +tVq +vme +mLF +tig +uIJ +aPi +aLT +tDZ +gip +uTv +bKC +bOG +aVf +iaq +aQL +bqc +qIf +bqc +bbs +bKD +vTS +bbs +ccQ +bCN +rbF +qlz +xYf +skn +bQX +ijQ +cLl +qlz +tez +bCN +ccQ +cgE +ccQ +bCN +bbr +uPE +ekM +pOW +bJC +cjC +jZv +lLC +nEo +nZy +cjg +lbf +bJC +bTa +ckX +iWc +cqz +bVb +wty +pWb +pWb +rYp +oEo +oEo +bSJ +xhO +lMO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(225,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +oxy +oxy +bCv +oxy +oQL +cMx +aOS +gNI +eTm +cMx +nDH +oVo +qbw +oVo +oDa +yfn +nkc +cMx +sHI +jao +qhT +alO +arz +atq +aoT +alO +alO +alR +aBm +alR +alO +xBe +xBe +xBe +xBe +xBe +sHI +tof +qhT +jWh +eFK +wGd +cZW +pZK +hSk +hSk +uIv +jWh +dnh +bct +iDa +yat +tiY +qAK +xGK +gGb +jei +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +oPF +jEM +aLT +vug +vug +muy +vug +vug +tVq +vme +lJO +uRo +uIJ +aLT +aLT +hWr +gip +xlk +uuj +bRg +aVf +aQL +aQL +ylN +qIf +bqc +bbs +ydM +xYP +bbs +ccQ +cdn +rbF +qlz +gYe +skn +bTx +bKQ +tXM +qlz +tez +bpV +ccQ +cgE +ccQ +cdn +bbr +uPE +ekM +pOW +bJC +bJC +kGF +chq +bRf +onN +cjg +qki +bJC +bSJ +bTM +bUq +rPE +bVb +wty +wWX +wWX +yle +wWX +wWX +bSJ +xhO +xHa +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(226,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +wTn +oQL +qmq +oQL +nXo +cMx +aOS +guP +mHT +cMx +kpL +oVo +qbw +oVo +oVo +oVo +iIU +cMx +uSk +jao +kGS +xHt +arm +ats +auO +awB +axB +ayV +auu +aoT +aFm +xBe +aIV +qqr +arH +xBe +sHI +tof +qhT +vXd +duF +hSk +hSk +vyI +hSk +hSk +uIv +jWh +tFJ +wSB +uBG +yat +jei +ltm +oAT +gGb +cmV +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +rIV +nvI +aLT +iPS +vAE +iKw +vAE +wMG +tIQ +nTl +efK +aMz +rGj +mdo +mJj +bHp +bIU +tAN +tAN +jOi +aVf +bES +kcl +bqc +qIf +bqc +bbs +dvs +xYP +bbs +cdm +bCM +rbF +qlz +fOz +skn +bTx +bTx +dFF +qlz +tez +bCM +ccQ +cgE +ccQ +bCM +bbr +uPE +ekM +pOW +hNw +sZq +lef +xRj +wJD +cjE +ozT +pDB +hNw +bNC +ckX +qgN +bTN +sdC +ivM +gEo +scy +vSW +scy +kPJ +bSJ +xhO +eeR +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(227,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +oxy +cMx +cMx +orx +cMx +cMx +dtu +qbw +txf +ncx +whO +pJS +whO +whO +whO +whO +whO +bYL +dlT +qHD +qhT +alO +arA +att +auS +alO +lXg +amA +aBn +aDm +aFn +xBe +azo +aJg +abR +xBe +sHI +tof +wCe +jWh +oih +khE +ctx +vyI +vyI +kpQ +vSE +jWh +dhA +iWn +mnB +yat +jei +ltm +ejj +gGb +jei +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +sEg +kDd +aLT +aLT +aLT +aLT +aLT +aLT +fbb +nTl +bwf +aMP +bEG +mdo +mJj +fIM +fIM +sXw +sXw +vfx +aVf +bES +kcl +lhs +uvh +lhs +kFY +jmK +bDL +bbs +ccQ +bCN +rbF +vub +odN +odN +gcN +odN +odN +vub +tez +bCN +ccQ +cgE +ccQ +bCN +jhb +kAj +bFX +hza +hNw +sZq +ltI +vfa +wdz +wdz +nCf +nCf +hNw +bNC +uMS +qmk +rtV +sgR +tvN +bSJ +bSJ +bSJ +bSJ +bSJ +bSJ +qid +lNk +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(228,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +oxy +cMx +cMH +qvF +lat +cMx +aOS +tlM +dan +cMx +cMx +cMx +fVk +cMx +cMx +cMx +cMx +cMx +nWf +cNC +qhT +wDM +wDM +wDM +wDM +wDM +axD +amA +aBo +axe +anO +nFX +atv +auV +amE +xBe +sHI +tof +qhT +jWh +jWh +uUz +jWh +gIJ +qbZ +jWh +jWh +jWh +tFO +wSB +flD +yat +xQe +jei +lVR +pHD +dhp +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +eTD +ikT +aLT +bBg +vPv +oTA +vPv +rAN +tIQ +aNc +aNT +rGj +bdC +mdo +mJj +sEd +wDK +iMr +wuq +bRV +bSe +bES +kcl +bqc +qIf +bqc +bBd +aPr +bfl +bSb +byw +bkU +bAY +pur +bxm +bPM +jmK +bRa +bxm +pur +byw +bzI +bAY +bSb +bEa +bFp +bBd +uPE +ekM +pOW +hNw +sZq +lwJ +cgA +oaW +yiW +oaW +yiW +hNw +bNC +clK +jdm +pQN +snR +ivM +qNd +hzu +mAV +hzu +hcI +bSJ +rqz +xhO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(229,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +lmq +cMx +rBY +pTY +ueY +cMx +aOS +gNI +aPg +cMx +uiG +rTZ +tfb +tfb +tfb +tfb +tfb +ptK +sHI +cNC +qhT +wDM +aOM +aoW +aty +wDM +axE +amA +aBp +aDn +atc +nFX +atv +auV +amE +xBe +sHI +cNC +qhT +jWh +xXa +xXa +xXa +pZK +cKL +jbH +rJh +jWh +pld +vhb +tie +yat +cfm +jei +oSR +grd +jei +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +efP +ikT +aLT +cjc +cjc +vUb +nuN +nuN +cBs +kiV +iSZ +uIJ +kJi +aLT +aLT +aQL +aQL +aQL +aQL +csZ +odB +aQL +aQL +bqc +sUk +ade +bBe +bFq +bfm +bhg +bvF +cdo +bvF +bvF +bvF +bRa +bRc +bPM +bvF +bvF +bvF +cdo +bvF +bCD +bEb +bFq +bBe +hWD +iyC +pOW +bJC +bJC +rbH +cEC +bJC +bJC +bJC +bJC +bJC +bSJ +hTc +bUr +ycd +sAc +wty +oEo +oEo +yfm +fXN +fXN +bSJ +gEh +xhO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(230,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +oxy +cMx +cMx +cMx +cMx +cMx +cMx +fVk +cMx +cMx +bNM +wkX +jhx +jhx +jhx +jhx +dnH +gpc +tzF +uez +qhT +wDM +uto +aoX +auU +aHu +aFt +lEj +nRX +aDo +aFr +xBe +nNY +qKi +abR +xBe +uSk +wHr +tzF +dEt +soP +pDr +soP +pDr +soP +eoG +uIv +jWh +yat +rXq +yat +yat +kNq +fJp +ekz +gGb +oUx +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +uzv +ikT +aLT +cjc +cjc +vUb +cjc +cjc +cBs +bsU +bwg +bCP +bdC +aLT +pqK +uAW +pqK +uAW +tDZ +vil +bpC +qZX +aQL +pjP +qIf +lfz +bbs +oPH +oPH +oPH +oPH +bbs +bJf +bJf +bJf +bJf +xba +dNt +dNt +dNt +dNt +bbs +krA +krA +krA +krA +bbs +wMI +ekM +oHt +bJC +lbf +cft +rQV +ohj +wwr +cDs +wwr +lbf +bSJ +gGf +qyi +hXY +sSC +wty +fXN +fXN +yfm +fXN +fXN +bSJ +xhO +dFL +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(231,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +wTn +mOE +sWp +nUm +moL +taw +mDJ +owg +xUA +ozz +vFv +rob +owg +owg +nwU +owg +owg +ptK +sHI +tof +qhT +wDM +aOQ +fxI +nLJ +aHv +aya +amx +atq +aDr +aFu +xBe +azp +qJf +anV +xBe +sHI +cNC +qhT +jWh +iqH +khE +khE +khE +ovi +iat +eim +jWh +kNq +spd +kNq +kNq +dVH +cAz +bVr +pHD +jei +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +hfO +ikT +aLT +iPS +vAE +iKw +vAE +wMG +tIQ +btc +bwh +uMl +bdC +dII +fZZ +fZZ +viS +sXw +sXw +vil +bpC +qDq +kbc +bqc +ubQ +bqc +bbs +bdw +bfo +rWL +wLm +nHJ +wLm +wLm +wLm +bSa +xba +bSa +wLm +wLm +wLm +nHJ +wLm +lJu +bEd +bFs +bbs +uPE +ekM +pOW +fzq +oXb +cft +rQV +wdz +wdz +fDJ +bKM +bKM +bZU +clK +qFK +pmq +sUj +ivM +vSW +scy +gEo +scy +kPJ +bSJ +gEh +pFr +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(232,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +oxy +oxy +tIN +oxy +oxy +kiR +owg +owg +uKV +mDJ +bNM +iEr +owg +eNi +eNi +eNi +eNi +eNi +sHI +tof +wCe +wDM +aOH +aJf +aMw +wDM +xsl +aya +atq +aDr +aFv +xBe +xBe +xBe +xBe +xBe +sHI +cNC +xmP +jWh +jWh +jlQ +jlQ +jWh +thV +uWV +uIv +oSx +kNq +oUx +kNq +kNq +fJp +ekz +hqu +jei +qDS +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +jkN +ikT +aLT +aLT +aLT +aLT +aLT +aLT +sCD +pXl +bxB +uWY +wEd +jvp +gBc +gBc +gBc +gBc +gBc +ngA +koC +koC +xGE +jno +fqw +bqc +lgy +ccb +xYP +bGn +mlm +mlm +mlm +bxn +mlm +mlm +xba +mlm +mlm +bxn +mlm +mlm +mlm +rXk +xYP +jew +laU +uPE +dEL +rzy +uCM +lNw +eFj +iQi +lNw +lNw +lNw +lNw +lNw +erh +rqE +qWt +fXN +rEv +rll +bSJ +bSJ +bSJ +bSJ +bSJ +bSJ +gEh +kMR +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(233,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aah +aah +aah +aag +aag +aag +fTl +pWw +hbE +cbc +qIa +qIa +taw +ptK +afX +ptK +ptK +bNM +rtd +owg +eNi +olO +wiG +nWN +eNi +sHI +tof +qhT +wDM +wDM +wDM +wDM +wDM +axI +amA +amx +aDr +aFw +inw +aJh +arq +ufx +alR +sHI +cNC +wCe +jWh +hSk +hSk +cRi +jWh +upR +fCL +uIv +vVw +iSV +jei +oYr +jei +aPO +aPO +aPO +gtQ +wiO +fVe +aag +aag +aag +aah +aah +aah +afm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +hyb +jEM +jEM +jEM +jEM +hyb +jEM +aLT +cjc +cjc +uJU +cjc +cjc +aLT +lDV +fZZ +hEb +qDq +qDq +jOx +bpC +qDq +aQL +nYR +bww +lhs +lgy +bsG +xYP +rWL +dMB +dMB +dMB +dMB +dMB +fsV +xba +fsV +dMB +dMB +dMB +dMB +dMB +lJu +xYP +hLI +laU +gyw +uNQ +gyw +bJC +oXb +cfo +lkM +oXb +oXb +oka +bKM +tEO +bSJ +fXN +fXN +kPJ +fXN +fXN +bSJ +enY +srl +gEh +xhO +xhO +xhO +jay +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(234,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +fTl +prX +oYs +odG +biC +qlu +taw +bKm +hsr +mDJ +ptK +bNM +iEr +fhH +eNi +ueG +rPt +jyE +eNi +sHI +cNC +qhT +hwC +rcS +amx +swN +alO +axL +amA +amx +aDr +aFy +inw +aJi +azs +atq +alR +sHI +cNC +qhT +mDG +tst +uUe +hSk +bSN +pZK +fCL +uIv +lFA +kNq +jei +kNq +kNq +jei +jei +gYU +oGi +dVR +fVe +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +emA +emA +emA +emA +jEM +ikT +jEM +aLT +iPS +vAE +meY +iPS +vAE +aLT +iMr +wDK +iMr +wDK +rou +jOx +bpC +ksp +aQL +bqc +wqO +wxD +cau +bCG +cgE +bJe +jmK +xYP +xYP +xYP +xYP +jmK +xba +jmK +xYP +xYP +xYP +xYP +jmK +hcw +cgE +yht +blq +ddL +eZR +uPE +bJC +kIP +cfo +lkM +oaW +yiW +oaW +yiW +kIP +bSJ +vSW +scy +oer +vSW +scy +bSJ +mCE +qid +hCq +tcO +tcO +tcO +tcO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(235,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +fTl +fTl +fTl +fTl +fTl +fTl +fTl +qJx +hsr +mDJ +ptK +bNM +iEr +owg +eNi +iKD +rPt +rPt +eNi +sHI +cNC +qhT +alR +amA +atq +swN +alO +alO +cHc +atq +aDs +alO +alO +aJj +aMD +atq +alR +sHI +cNC +qhT +mDG +tZZ +gLz +hSk +gIJ +ovi +fCL +lYk +bYn +fVe +fVe +fVe +fVe +fVe +fVe +fVe +fVe +fVe +fVe +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +oPF +ikT +jEM +aLT +meY +meY +meY +meY +meY +meY +aQL +aQL +aQL +aQL +aQL +pyl +pDt +aQL +aQL +bqc +ubQ +bqc +lgy +ccN +xYP +rWL +wLm +wLm +wLm +wLm +wLm +bSa +xba +bSa +wLm +wLm +wLm +wLm +wLm +lJu +xYP +wbV +laU +uPE +vuV +uPE +bJC +bJC +vLA +oHc +bJC +bJC +bJC +bJC +bJC +oer +oer +oer +oer +oer +oer +oer +uVp +gEh +pFr +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(236,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +cuC +wdJ +hsr +hsr +ptK +krS +rtd +owg +eNi +eNi +eNi +gIh +eNi +hGb +tof +qhT +alR +amA +atq +sOx +alO +axM +amA +atq +aDr +aFz +inw +amA +ayl +amx +alR +sHI +cNC +qhT +jWh +jmQ +vcu +lIU +jWh +thV +uWV +tiK +bYn +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +wtn +ikT +ikT +ikT +ikT +ikT +ikT +ikT +jEM +ikT +jEM +aQL +qZX +qZX +tDZ +jOx +bpC +qZX +aQL +bqc +ubQ +bqc +lgy +ccb +xYP +bGn +mlm +mlm +mlm +bxn +mlm +mlm +xba +mlm +mlm +bxn +mlm +mlm +mlm +rXk +xYP +jew +laU +uPE +vuV +uPE +bJC +lbf +cfo +lkM +lbf +lbf +lbf +bJC +gEh +cmN +gEh +xhO +dzX +foS +xhO +gEh +gEh +gEh +gEh +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(237,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aah +aah +aah +aah +aah +aah +aah +aag +cuC +evk +hsr +mDJ +ptK +bNM +iEr +owg +eNi +aWb +dyK +vzK +wYY +sHI +tof +qhT +alR +amA +atq +sOx +alO +axN +azq +auy +aDB +aFA +inw +aJl +amx +atq +alR +sHI +cNC +qhT +mDG +snE +sGL +hSk +bSN +pZK +fCL +dbe +bYn +aag +aag +aag +aag +aag +aah +aah +aah +aah +aah +aah +aah +afm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +pGj +uoj +jEM +jEM +jEM +jEM +fBo +jEM +jEM +jEM +jEM +aQL +qDq +qDq +qDq +jOx +bpC +qDq +bTb +bqc +ubQ +bqc +bbs +ccd +ccN +rWL +dMB +uVD +dMB +dMB +dMB +fsV +xba +fsV +dMB +dMB +dMB +uVD +dMB +lJu +huK +jeQ +bbs +uPE +vuV +uPE +xSw +oXb +cfo +lkM +oXb +oXb +oXb +bJC +gEh +xhO +gEh +xhO +gEh +hWH +xhO +gEh +xhO +xhO +rhD +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(238,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rAC +bdH +bdH +bdH +bdH +bdH +aad +cuC +apB +cBd +jRK +ptK +bNM +iEr +owg +eNi +tii +eJX +sAC +wYY +sHI +tof +qhT +alR +amA +amx +apa +alO +axO +azr +aBr +aDC +aFB +alO +aJk +amx +atq +alR +sHI +cNC +qhT +mDG +tZZ +cBj +hSk +gIJ +ovi +fCL +tiK +bYn +aag +aag +aag +aag +ajZ +opJ +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +emA +emA +emA +emA +emA +emA +emA +emA +emA +ikT +jEM +aQL +qDq +qDq +qDq +osA +cHl +cHl +bTb +lhs +bww +lhs +bbs +cdp +cdp +jks +cdp +bbs +uXy +uXy +uXy +uXy +xba +vDd +vDd +vDd +vDd +bbs +fJO +fJO +fJO +fJO +bbs +gyw +uNQ +gyw +xSw +ejo +ejo +niY +oXb +oXb +oXb +bJC +xhO +gEh +gEh +tcO +tcO +ucy +tcO +tcO +tcO +tcO +tcO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(239,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aad +cuC +ptK +ptK +ptK +ptK +bNM +iEr +owg +eNi +sjj +fzP +sAC +wYY +sHI +cNC +qhT +alR +amA +atq +fhf +alO +axQ +azt +auA +aDD +aFD +inw +xEO +xEO +lnP +alR +sHI +cNC +wCe +jWh +qLs +qLs +cRi +jWh +upR +uWV +uIv +bYn +bYn +bYn +aag +aag +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +qGC +hyb +aQL +ksp +ksp +rou +qDq +qDq +qDq +bTb +bqc +ubQ +bqc +bqc +bqc +bqc +bqc +bqc +dYb +bqc +fpI +bqc +bqc +tGS +uPE +uPE +uuT +uPE +fRL +uPE +uPE +uPE +uPE +uPE +uPE +vuV +uPE +xSw +oXb +oXb +oXb +kIP +qer +kIP +bJC +xhO +wYd +pFr +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(240,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +hzc +hzc +hzc +cuC +dbw +uGQ +bNM +rtd +owg +eNi +fcM +uzE +qsL +nim +noe +pqY +qhT +alR +amA +atq +cSm +alO +elf +amA +atq +aDE +asT +aHw +iWR +iWR +kbx +alR +sHI +cNC +qhT +jWh +jWh +jlQ +jlQ +jWh +lhJ +fCL +uIv +oXJ +kPR +bYn +hzc +hzc +hzc +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +ikT +jEM +aQL +aQL +aQL +aQL +ksp +rou +ksp +aQL +bqc +qas +qUO +qUO +qUO +reu +fLf +reu +reu +reu +kkN +reu +reu +uTP +kEE +kEE +dCM +kEE +kEE +kEE +ulH +kEE +wzJ +wzJ +wzJ +nmH +xui +bJC +kIP +qer +kIP +bJC +bJC +bJC +bJC +gEh +gEh +gEh +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(241,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +yjq +bZc +iHc +sbq +rLk +hsr +bNM +iEr +owg +eNi +xlC +gyO +kTN +eNi +uSk +cNC +qhT +alR +amA +atq +civ +dof +atq +arm +atc +atc +atc +inw +xEO +xEO +aOV +alR +sHI +cNC +qhT +jWh +wFQ +bop +vyI +jnp +thV +fCL +uIv +hSk +vVw +jzD +iHc +bZc +mZF +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +ikT +jEM +jEM +hYf +jEM +oBr +oBr +oBr +oBr +oBr +ovQ +bqc +bqc +bqc +bqc +nci +mww +nci +nci +bqc +rVC +bqc +bqc +tGS +uPE +uPE +tIl +uPE +cJs +cJs +vuV +cJs +uPE +uPE +uPE +uPE +pqw +bJC +bJC +bJC +bJC +bJC +xhO +xhO +xhO +gEh +xhO +xfq +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(242,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +yjq +jgw +wbJ +sbq +rLk +hsr +bNM +iEr +fhH +eNi +oNb +iFC +qAA +eNi +sHI +tof +qhT +alR +arK +atc +civ +kwd +atq +atq +amA +aDH +aFI +alO +aJq +aMG +aOW +alR +sHI +cNC +qhT +jWh +bXy +bop +vyI +vyI +vyI +fCL +uIv +hSk +vVw +jzD +wLi +jgw +mZF +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +emA +kAv +jEM +ikT +ikT +jEM +jEM +gCu +ikT +ikT +oBr +oBr +qPn +oBr +oBr +jxX +knl +pum +jAj +kKY +kKY +oJk +lNR +lNR +oJk +lNR +lNR +oJk +cNm +oGh +far +vDo +nnr +rKt +ljv +ljv +sUi +ljv +ljv +xhO +xhO +xhO +xhO +xhO +xhO +xhO +xhO +xhO +srl +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(243,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +hzc +hzc +hzc +cuC +vvy +uGQ +bNM +rtd +owg +eNi +eNi +eNi +eNi +eNi +sHI +tof +qhT +alO +alO +alO +alO +alO +azi +azi +ets +kvh +rka +alO +alO +alO +alO +alO +sHI +cNC +qhT +jWh +wFQ +bop +vyI +wKc +thV +uWV +uIv +oXJ +uGc +bYn +hzc +hzc +hzc +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +emA +qFS +pPG +jEM +jEM +jEM +jEM +gCu +jEM +jEM +tXn +jEM +jEM +jEM +oBr +oBr +sqg +rPQ +sqg +oJk +oJk +oJk +oRW +mxT +pHc +eVE +jMy +oJk +oJk +oJk +sqg +mgu +sqg +ljv +ljv +xhO +gEh +xhO +xhO +gEh +gEh +gEh +xhO +xhO +xhO +xhO +gEh +aEr +keO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(244,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aad +aag +aag +cuC +cuC +cuC +bNM +iEr +owg +owg +dWX +owg +owg +ptK +knU +oOZ +hdP +aqq +aPa +eky +eky +alO +aqY +aqY +alO +aqY +aqY +alO +eky +eky +aPa +aqq +knU +oOZ +doX +jWh +xXa +xXa +xXa +xXa +pZK +fCL +uTZ +bYn +bYn +bYn +aag +aag +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +emA +twp +iyE +ecb +ikT +ikT +ikT +ctp +ecb +jEM +jEM +jEM +jEM +ikT +ikT +oBr +fcS +gdJ +oyR +oJk +nHL +wfx +ijf +osI +qXk +fie +tRs +pqP +fqC +oJk +ppn +nAY +cjt +ljv +ceY +gIm +gEh +gEh +gEh +xhO +wra +xhO +gEh +xhO +gEh +gEh +sOD +eMx +xgr +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(245,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aae +aah +aah +aah +aag +uMc +vFv +wOt +odl +jhx +keR +jhx +keR +dwI +tzF +eIY +vER +hal +uYg +nau +uYg +uYg +bXf +aDO +aDO +aDO +gQO +uYg +uYg +nau +uYg +hal +sVv +eIY +tzF +mPh +soP +tWi +soP +pDr +tWi +tpd +eim +pql +aag +aah +aah +aah +afm +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +emA +emA +emA +emA +emA +emA +emA +vgw +sqg +sqg +sqg +mpP +sqg +oBr +qGC +oBr +fcS +gdJ +oyR +oJk +uZF +xoj +xoj +osI +qXk +fie +pUj +xoj +sfV +oJk +pkA +nAY +cjt +ljv +gEh +ljv +sqg +mpP +aep +aep +aep +dKL +tcO +tcO +tcO +tcO +tcO +tcO +tcO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(246,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aad +uMc +bNM +rmf +uZH +bFt +kPG +kPG +cVw +ptK +eJg +bkb +pvi +aqq +eky +aNl +eky +eky +nCT +vsh +vsh +vsh +ydY +eky +eky +aNl +eky +aqq +eJg +lqL +pvi +jWh +tim +uWV +ttd +nLk +rCD +eYR +uIv +pql +ajZ +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +vgw +wct +hqc +sqg +rwB +lKM +sqg +nSq +oBr +sKf +gdJ +cjt +pRZ +ish +ish +ish +kzC +jUl +wud +ish +ish +ish +pRZ +fcS +nAY +jOE +ljv +mPc +sqg +qEL +vmE +ggQ +afk +afk +dKL +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(247,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aac +aag +cuC +blJ +pfc +ptK +ptK +ucp +cIW +ptK +ptK +xga +kgV +xga +aHe +jlT +exi +eky +eky +eAC +aBu +aBu +aBu +eAC +eky +eky +ins +wRP +aHe +eZm +eZm +eZm +jWh +jWh +sWC +jWh +jWh +jWh +jAJ +lAu +bYn +aag +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +vgw +wct +hqc +sqg +eKy +wQA +sqg +jEM +oBr +uYn +jaM +oXM +kvf +rDy +uVc +bxN +cYN +nhr +vuD +skL +dTr +gfG +mkP +muQ +ojh +nxx +ljv +xhO +sqg +gEC +skC +aWZ +bLx +bMJ +dKL +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(248,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +cuC +cuC +cuC +bNM +ofK +ptK +uXL +gPc +trB +exy +ptK +fLl +fLl +fLl +eky +eky +aNl +eky +uNV +aHe +aDQ +aDQ +aDQ +aHe +uNV +eky +aNl +eky +rqj +eZm +jYm +aZI +jWh +duz +hXG +htG +doU +jWh +lbB +uIv +bYn +bYn +bYn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aah +aah +vgw +utn +hqc +hqc +eqL +vxu +sqg +mpP +sqg +qWQ +gdJ +cjt +pRZ +wuB +wuB +qAs +dIH +nKP +uTV +sHx +vgv +wuB +pRZ +fcS +nAY +cjt +sqg +mpP +sqg +efC +yaF +aep +aep +aep +dKL +aah +aah +afm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(249,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +cuC +uiG +tfb +rFy +ofK +ptK +uXL +eet +fcP +pDh +ptK +aqZ +aqZ +ptQ +aMT +aMT +dPm +qeF +aHe +aHe +aDX +yge +aEm +aHe +aHe +okg +dPm +aMT +aMT +hbp +mwP +mwP +jWh +axR +mIP +tcZ +fWi +jWh +lbB +cKL +xXa +xoO +bYn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vgw +noP +hqc +hqc +xNg +spH +sqg +aFe +sqg +scE +gdJ +acy +oJk +jRc +xoj +eKQ +osI +xrI +fie +fsR +lkV +quS +oJk +bcM +nAY +mFP +sqg +pCq +sqg +gEC +unx +ggQ +bLy +bLy +dKL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(250,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +cuC +bNM +rmf +luY +ncp +ptK +cQg +wxj +lht +rYv +ptK +haO +pKB +fLl +svf +arV +wZX +eky +aDQ +ayi +eky +aBx +eky +jlX +aDQ +eky +wZX +arV +vUh +eZm +xUy +mwP +jWh +vpv +pgw +rmE +fWi +jWh +xPZ +pcv +eYR +uIv +bYn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vgw +gOC +nou +nou +dQA +sKM +uuD +eYD +uuD +bSH +gLD +cjt +oJk +oJk +lwp +xoj +osI +rYh +fie +xoj +ehc +oJk +oJk +gNO +vTT +heS +uPP +hlH +uPP +wVA +hJg +aWZ +bLz +bMK +dKL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(251,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +cuC +aeM +ofK +ptK +ptK +ptK +ptK +ptK +afX +ptK +ptK +haO +fLl +fLl +lDn +arV +wZX +eky +aDQ +pyy +eky +eky +eky +dLc +aDQ +eky +wZX +arV +wkA +eZm +eZm +mwP +jWh +jWh +kLc +jWh +jWh +jWh +jWh +jWh +lbB +oCf +bYn +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dKL +aep +aep +aep +ikv +hqc +vZf +ykI +vZf +aEo +gdJ +trh +hgo +oJk +sVT +xoj +osI +rYh +fie +xoj +bmp +oJk +haD +jTB +nAY +iUm +vZf +bYF +vZf +fiQ +pgN +aep +aep +aep +dKL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(252,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +uMc +bNM +ofK +fLl +uxl +haO +ebf +haO +aqZ +tot +haO +qqS +fLl +xrq +vVu +arV +wZX +eky +aHe +jMQ +eky +eky +eky +dEn +aHe +eky +wZX +arV +oIt +xrq +eZm +qHG +mwP +xQW +vJR +mwP +hkz +ckj +oaw +eZm +lbB +uIv +pql +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dKL +afk +aWo +aWZ +iyF +vrR +sqg +mpP +sqg +dYC +gdJ +elx +cjt +pRZ +xoj +xoj +osI +xrI +fie +xoj +xoj +pRZ +fcS +hMG +qQy +erF +sqg +mpP +sqg +fLu +hEw +aWZ +bLA +afk +dKL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(253,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +uMc +bNM +ofK +fLl +uxl +haO +uLG +haO +aqZ +pbo +haO +xLn +fLl +vlk +mKy +aMT +svl +pzJ +qDt +uYg +vsh +oPf +vsh +uYg +qDt +pzJ +sQO +aMT +wNS +vlk +eZm +oHg +uiK +mwP +vJR +mwP +jrB +eoK +xTG +eZm +lbB +uIv +pql +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dKL +aVo +aWp +aWZ +qAB +gEC +sqg +aIh +eTb +kkW +iwf +uFg +rEm +rnF +oFm +oFm +fVo +jUF +nxb +oFm +oFm +glH +vXo +gWu +xMl +lft +eTb +aIh +sqg +siN +cjt +ggQ +afk +bML +dKL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(254,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +uMc +bNM +rtd +ptQ +aqZ +aqZ +aqZ +aqZ +aqZ +leM +haO +iYm +fLl +fLl +wRk +eky +wZX +vUh +aHe +oxU +bsy +oir +gzw +shh +aHe +svf +wZX +eky +wuk +eZm +eZm +bjt +eIN +mwP +ksw +ksw +ksw +ksw +ksw +hbp +uWV +uIv +pql +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dKL +afk +afk +ggQ +pYS +ivS +sqg +ppM +eTb +hbs +xJV +elx +jnI +oJk +xef +dPQ +ams +eni +nri +gMd +toO +oJk +nYn +elx +mDL +fSF +eTb +ppM +sqg +lvh +iks +aWZ +bLC +afk +dKL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(255,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +cuC +blJ +pfc +fLl +fLl +fLl +fLl +rht +aqZ +aqZ +aqZ +aqZ +aqZ +ptQ +qYG +atM +bGc +atK +aHe +aHe +aHe +aHe +aHe +aHe +aHe +atM +bGc +atK +qYG +hbp +ksw +ksw +rHB +ksw +vJR +rPq +eZm +eZm +eZm +eZm +jAJ +lAu +bYn +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dKL +dKL +aep +aep +mkL +gEC +sqg +ppM +eTb +hsy +hsy +baJ +kbw +hsy +ldc +lNR +lNR +lNR +lNR +lNR +ldc +hsy +foC +kph +hsy +hsy +eTb +eUe +sqg +wWl +trh +aep +aep +dKL +dKL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(256,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +cuC +bNM +tgK +tfb +wuT +lMx +gJF +gJF +gJF +gJF +gJF +gJF +gJF +gJF +aPw +avu +mhG +cFn +cYu +aHe +fdX +wcR +xJh +aHe +qYu +dxK +dPC +aMU +aPw +wxy +wxy +wxy +wxy +wxy +wxy +wxy +wxy +jFY +qKY +jHL +wOK +uIv +bYn +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +vgw +usZ +wpS +fZA +fEe +sqg +ppM +ppM +hsy +shL +uXk +mlF +hsy +ckZ +hmv +hmv +dTS +hmv +hmv +ckZ +hsy +tos +uXk +tkn +hsy +aIh +ppM +sqg +fEe +nqW +kfI +vFH +vgw +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(257,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +cuC +riJ +kHY +uhM +kdv +lkm +cuC +aag +aag +aag +aag +aag +aag +aag +aPw +aqJ +aBu +odu +aMT +aEg +aDO +aDO +aDO +aEg +aMT +odV +aBu +aqp +aPw +aag +aag +aag +aag +aag +aag +aag +bYn +dRs +uAl +rDb +qjV +rID +bYn +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +vgw +ckW +vgw +vgw +vgw +vgw +aIh +aIh +hsy +wed +uXk +mlF +jWb +unZ +aPU +aPU +aPU +aPU +aPU +fbu +jWb +tos +uXk +wed +hsy +qBS +lib +vgw +vgw +vgw +vgw +ckW +vgw +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(258,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +cuC +cuC +umy +iKZ +pnL +cuC +cuC +mNX +mNX +mNX +mNX +mNX +mNX +cus +aPw +aPw +atM +bGc +atK +avu +aMT +arV +aMT +aMU +atM +bGc +atK +aPw +aPw +mNX +mNX +mNX +mNX +mNX +mNX +qOk +bYn +bYn +cWE +kHS +rID +bYn +bYn +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aae +aah +aag +aag +aag +nic +tmQ +ppM +hsy +txS +bVN +oGJ +xpZ +llK +mVr +mZL +mZL +mZL +gSa +coH +oTO +uqh +iAE +sct +hsy +iWa +fZR +nic +aag +aag +aag +aah +afm +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(259,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aad +cuC +mkH +rtd +fcP +cuC +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +aPw +vgD +mhG +had +eAL +pzJ +oPf +pzJ +had +eAL +dPC +ihX +aPw +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +bYn +kcA +uWV +uIv +bYn +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +nic +aIh +aIh +hsy +fCT +uXk +rae +jIV +pzM +mtZ +hmv +hmv +hmv +fQn +pzM +nac +xNf +uXk +slv +hsy +aIh +aIh +nic +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(260,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aad +cuC +vRu +ngU +ssU +cuC +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +aPw +aqJ +aBA +aqp +avu +eky +dPm +eky +aMU +aqJ +aBA +aqp +aPw +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +bYn +thV +uWV +uIv +bYn +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +nic +ppM +ppM +hsy +igs +nCn +oGJ +uSW +kzO +vaZ +kYL +hmv +sCV +rjO +suY +pdK +uqh +pJr +slv +hsy +aIh +aIh +nic +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(261,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aad +uMc +gbs +iEr +hFw +uMc +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +aPw +aHe +aHe +aHe +mtD +eky +wZX +eky +nKq +aHe +aHe +aHe +aPw +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +pql +thV +fCL +uIv +pql +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +nic +aIh +ppM +hsy +hsy +wTB +mlF +uXk +hmw +gSa +mtZ +hmv +fQn +wSV +ulp +uXk +tos +slv +hsy +hsy +ppM +eUe +nic +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(262,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aad +uMc +nrO +iEr +fcP +uMc +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +aPw +aHe +aHe +aHe +avu +eky +wZX +eky +aMU +aHe +aHe +aHe +aPw +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +pql +thV +fCL +uIv +pql +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +nic +aIh +aIh +aIh +hsy +ygP +mlF +hsy +hcX +fQn +mtZ +hmv +fQn +mtZ +hmv +hsy +beL +ygP +hsy +cWb +aIh +aIh +nic +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(263,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aad +uMc +aVC +iEr +fcP +uMc +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +jbq +kRg +uRs +aDO +qqu +eky +aNl +eky +dFk +aDO +nPY +kRg +jbq +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +pql +thV +fCL +uIv +pql +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +nic +ppM +ppM +ppM +hsy +ylh +opH +hsy +pvI +fQn +qoR +aPU +rjO +mtZ +njS +hsy +iEw +ylh +hsy +dDT +ppM +dDT +nic +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(264,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aad +cuC +mJx +rtd +odb +cuC +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +jbq +hBL +dID +eky +eky +nJu +aNl +eky +eky +eky +etn +hBL +jbq +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +bYn +thV +uWV +oCf +bYn +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +nic +nic +wsw +aIh +hsy +ylh +mlF +hsy +hmv +eZp +kzO +pzM +hip +ptZ +hmv +hsy +tos +ylh +hsy +qBS +piJ +nic +nic +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(265,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +cuC +cuC +dqg +rtd +fcP +cuC +cOK +xVk +xVk +xVk +xVk +xVk +xVk +xVk +eJQ +aPw +aHe +mRQ +eky +eky +eky +aNl +eky +eky +eky +biJ +aHe +aPw +eJQ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +wZv +bYn +thV +uWV +uIv +bYn +bYn +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +qBS +lib +hsy +hsy +suJ +hsy +hsy +gLG +khf +bhI +iIj +hQw +hsy +hsy +wdv +hsy +hsy +yjE +ppM +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(266,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +aaa +uMc +iKc +uiG +cMN +trB +nVX +jcP +xVk +xVk +xVk +xVk +xVk +xVk +xVk +etf +ohH +atM +aDO +atK +eky +eky +aNl +eky +eky +atM +aDO +atK +sjr +xjz +xVk +xVk +xVk +xVk +xVk +xVk +xVk +dbq +xBn +vME +hSt +xoO +rjG +pql +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +aIh +vsi +hsy +uiC +sIr +jCn +kkk +kjO +pAm +gzq +pAm +eAI +tdv +rlc +hfb +hUk +hsy +ppM +fZR +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(267,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +aaa +uMc +cIG +vqD +iEr +fcP +blJ +jcP +xVk +xVk +xVk +xVk +xVk +xVk +xVk +etf +aPz +avu +arV +aMU +ssX +vsh +iPD +vsh +fCp +avu +arV +aMU +aPz +xjz +xVk +xVk +xVk +xVk +xVk +xVk +xVk +dbq +gIJ +thV +fCL +lne +wEI +pql +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +ppM +ppM +hsy +thc +sIr +pAm +pAm +pAm +pAm +gzq +pAm +pAm +pAm +pAm +sIr +fZl +hsy +mxV +aIh +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(268,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +aaa +uMc +dfg +rAP +vqK +lht +blJ +jcP +xVk +xVk +xVk +xVk +xVk +xVk +xVk +etf +aPz +aqJ +aBu +aqp +nkn +lyw +iZg +lyw +nkn +aqJ +aBu +aqp +aPz +xjz +xVk +xVk +xVk +xVk +xVk +xVk +xVk +dbq +gIJ +tjj +ofH +gms +ydh +pql +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +aIh +aIh +hsy +tIe +uAK +bVv +bVv +xTu +gzq +gzq +gzq +ern +bVv +bVv +nJa +jPd +hsy +ppM +eeC +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(269,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +aaa +cuC +ptK +bSD +iEr +xKM +cuC +uiR +xVk +xVk +xVk +xVk +xVk +xVk +xVk +oee +aPw +sYD +aMT +aMT +uqI +aHe +aHe +aHe +rdh +aMT +aMT +bZR +aPw +oee +xVk +xVk +xVk +xVk +xVk +xVk +xVk +kMK +bYn +gEv +fCL +lol +jWh +bYn +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +ppM +ppM +hsy +dPH +sov +pAm +pAm +nAd +pAm +pAm +pAm +pAm +pAm +pAm +fZl +oex +hsy +aIh +aIh +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(270,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +aaa +cuC +ptK +new +iEr +paI +cuC +cOK +xVk +xVk +xVk +xVk +xVk +xVk +xVk +eJQ +aPw +ebn +aMT +aMT +eky +aHe +aHe +aHe +eky +aMT +aMT +oOO +aPw +eJQ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +wZv +bYn +vVw +fCL +tNP +jWh +bYn +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +aIh +aIh +hsy +rBv +sov +pAm +pAm +hsy +nDa +nDa +nDa +hsy +gDH +pAm +fZl +snt +hsy +ppM +ppM +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(271,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +aaa +uMc +jMG +uiG +iUW +trB +ozN +jcP +xVk +xVk +xVk +xVk +xVk +xVk +xVk +etf +gZP +atM +aDO +atK +eky +fRC +lFe +fRC +eky +atM +aDO +atK +aPx +xjz +xVk +xVk +xVk +xVk +xVk +xVk +xVk +dbq +diz +vME +hSt +xoO +adC +pql +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +ppM +ppM +hsy +fqW +qYq +mQn +pAm +hsy +kiG +aSk +pUv +hsy +pAm +mQn +wQD +fqW +hsy +aIh +aIh +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(272,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +aaa +uMc +msP +ugJ +kNk +cXY +blJ +jcP +xVk +xVk +xVk +xVk +xVk +xVk +xVk +etf +aPz +avu +arV +aMU +arV +arV +arV +arV +arV +avu +arV +aMU +aPz +xjz +xVk +xVk +xVk +xVk +xVk +xVk +xVk +dbq +gIJ +thV +fCL +lne +wWq +pql +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +aab +aab +aaa +aaa +aKQ +bdH +bdH +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +aIh +ppM +hsy +hsy +hsy +hsy +hNP +hsy +hsy +hsy +hsy +hsy +hNP +hsy +hsy +hsy +hsy +ppM +ppM +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(273,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +aaa +uMc +spK +nlW +uZH +lht +blJ +jcP +xVk +xVk +xVk +xVk +xVk +xVk +xVk +etf +aPz +aqJ +aBu +aqp +eky +eky +eky +eky +eky +aqJ +aBu +aqp +aPz +xjz +xVk +xVk +xVk +xVk +xVk +xVk +xVk +dbq +gIJ +tjj +jRC +gms +qeK +pql +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +bdH +bdH +bdH +bdH +bdH +bdH +aKQ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aak +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +aIh +ppM +csd +dDJ +hsy +haz +fQn +pzM +qra +tqE +qra +pzM +mtZ +haz +hsy +dDJ +rXH +aIh +aIh +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(274,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +aaa +cuC +cuC +jPq +xgm +aqK +cuC +uiR +xVk +xVk +xVk +xVk +xVk +xVk +xVk +oee +aPw +aHe +iTe +eky +eky +atg +aBE +ouB +eky +eky +qPX +aHe +aPw +oee +xVk +xVk +xVk +xVk +xVk +xVk +xVk +kMK +bYn +hTF +rTJ +tAq +bYn +bYn +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aKQ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aak +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +aIh +aIh +aIh +aIh +hsy +haz +pLt +mZL +mZL +mZL +mZL +mZL +lOX +haz +hsy +fpi +aIh +aIh +aIh +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(275,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cuC +uMc +uMc +uMc +cuC +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +jbq +xrq +dID +eky +eky +esT +nYE +orH +eky +eky +etn +xrq +jbq +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +bYn +pql +pql +pql +bYn +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +iBn +iBn +iBn +iBn +iBn +iBn +iBn +iBn +iBn +iBn +iBn +iBn +iBn +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +nic +mem +piJ +piJ +hsy +mkI +aPS +gsM +ukP +eCt +ukP +nop +aPS +ddf +hsy +atS +ppM +fZR +nic +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(276,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +jbq +vlk +dID +eky +eky +bAe +aBG +sGh +eky +eky +etn +vlk +jbq +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +aag +nic +aIh +ppM +sER +hsy +hsy +hsy +hsy +hsy +hsy +hsy +hsy +hsy +hsy +hsy +aIh +aIh +aIh +nic +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(277,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +aPw +uYd +xnz +dqj +eky +xaS +ejt +mPf +eky +gUV +neG +uYd +aPw +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +aag +nic +aIh +ppM +aIh +ppM +puT +aIh +xrg +ppM +ppM +ppM +xrg +aIh +erE +ppM +ppM +ppM +aIh +nic +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(278,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +aPw +jbq +aPw +vgD +eky +atg +aBE +ouB +eky +ihX +aPw +jbq +aPw +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +bdH +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +aag +gFP +gFP +qjZ +qjZ +qjZ +qjZ +dXI +qjZ +qjZ +qjZ +qjZ +qjZ +dXI +qjZ +qjZ +qjZ +qjZ +gFP +gFP +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(279,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aae +aah +aag +jbq +iaR +aBu +aBu +aBu +aBu +aBu +iub +jbq +aag +aah +afm +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +bdH +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +daz +vhe +qQS +cqm +gTH +qit +ebN +qQS +gwn +pfT +vCH +dyp +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +bdH +aae +aah +aah +aah +aah +gFP +gFP +lMb +lMb +fLv +cLq +vON +sgs +ioP +vAI +kXm +eSk +vON +cLq +oLN +lMb +lMb +gFP +gFP +aah +aah +aah +aah +afm +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(280,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +aad +aPw +aPw +jbq +jbq +jbq +jbq +jbq +aPw +aPw +ajZ +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +bdH +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +sbJ +sbJ +sbJ +daz +rna +clw +qQS +sKY +qQS +bIp +fKe +dDp +bFg +frM +lcg +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +gFP +vVI +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +fXZ +gsi +gFP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(281,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +aae +aah +aah +aah +aah +aah +aah +aah +aah +aah +afm +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +lmz +lmz +lmz +lmz +lmz +daz +daz +daz +daz +daz +tte +hvw +auf +pmV +eGr +xDC +dIn +rby +bIp +euN +ujn +sEK +etM +lcg +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +gFP +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +gFP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(282,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +lmz +lmz +lmz +lmz +daz +daz +hRW +asZ +vXh +daz +daz +kfU +daz +ebN +ebN +lnS +uVv +flf +ebN +rOz +kBy +kBy +nNA +fPB +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +gFP +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +gFP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(283,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +lmz +lmz +lmz +daz +daz +eKJ +yaZ +dJC +hZj +clw +daz +daz +daz +sGZ +ebN +ebN +roH +ebN +daz +daz +daz +wnh +wnh +daz +daz +daz +lmz +lmz +lmz +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +gFP +riT +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +vFn +gFP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(284,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +lmz +lmz +lmz +daz +jYH +ubA +cck +wyQ +fmv +ubA +gMN +mRn +dJO +vMt +dkz +aGk +ktQ +teZ +wkM +ege +hWP +bZq +bZq +mIi +mIi +daz +lmz +lmz +lmz +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +gFP +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +gFP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(285,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +lmz +lmz +lmz +daz +cwS +ffE +vHa +nDy +ffE +ffE +ffE +jqP +cLo +clw +viB +dIi +qLS +erN +wkM +jvB +jtj +swx +swx +qKZ +gjv +daz +lmz +lmz +lmz +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +gFP +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +gFP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(286,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +lmz +lmz +lmz +daz +oRV +ydI +mdW +ios +awu +ydI +aKs +fMt +mEs +gbm +oBD +lFj +vyE +mTr +wkM +qNc +jdl +dpp +dpp +jgy +eii +daz +lmz +lmz +lmz +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +gFP +vVI +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +gsi +gFP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(287,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +lmz +lmz +lmz +daz +daz +eKJ +yaZ +dJC +hZj +fQD +daz +daz +daz +tHu +ebN +ebN +gXs +ebN +daz +daz +daz +wnh +wnh +daz +daz +daz +lmz +lmz +lmz +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +gFP +lMb +wgf +lMb +qbD +lMb +wgf +lMb +qbD +lMb +wgf +lMb +qbD +lMb +wgf +lMb +gFP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(288,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +lmz +lmz +lmz +lmz +daz +daz +ocB +nJH +rnH +daz +daz +sTV +daz +ebN +ebN +gbg +uVv +xwU +ebN +qQS +kBy +kBy +gfu +kBy +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(289,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +lmz +lmz +lmz +lmz +lmz +daz +daz +daz +daz +daz +tte +hvw +auf +hTl +jrH +xDC +yaQ +vLz +mFN +kSy +bFg +dDp +nYg +lcg +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(290,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +bdH +lmz +lmz +lmz +daz +daz +daz +daz +daz +sbJ +sbJ +sbJ +daz +rna +qRX +qQS +aCd +qQS +mFN +igr +sEK +ujn +mlb +lcg +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(291,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +bdH +lmz +lmz +lmz +daz +hWM +hWM +hWM +ebN +daz +ocL +qpY +daz +drU +itg +gba +kRQ +our +ebN +cxc +kBy +kBy +dzt +gyN +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(292,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +bdH +lmz +lmz +lmz +daz +hWM +fVx +hWM +ebN +tId +ltc +ltc +daz +ebN +fCI +ebN +daz +daz +daz +daz +daz +daz +daz +daz +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(293,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +izf +hWM +qQS +hWM +ebN +tId +fVx +qQS +ebN +naj +itg +qQS +daz +daz +daz +daz +daz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(294,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +vVk +cJI +fVx +hWM +ebN +tId +qQS +mIJ +wiu +xDC +yaQ +jtj +oZx +irr +irr +xsi +daz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(295,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +fhR +nKO +tmV +qQS +gDh +qQS +qQS +bMg +flL +qQS +qQS +pUg +sII +cFg +pkS +xsi +daz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(296,1,1) = {" +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +bdH +bdH +bdH +bdH +npq +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +bdH +bdH +bdH +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +"} +(297,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aKQ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(298,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aKQ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(299,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +jRz +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(300,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} diff --git a/maps/map_files/USS_Almayer/sprinkles/.gitkeep b/maps/map_files/USS_Almayer/sprinkles/.gitkeep new file mode 100644 index 000000000000..8b137891791f --- /dev/null +++ b/maps/map_files/USS_Almayer/sprinkles/.gitkeep @@ -0,0 +1 @@ + From 2cfbef118eb2f29050035582a97102864f7e27c6 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Sat, 7 Sep 2024 22:22:00 +0100 Subject: [PATCH 16/17] Locker changes --- maps/map_files/BigRed/BigRed.dmm | 2 +- maps/map_files/CORSAT/Corsat.dmm | 8 ++++---- maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm | 2 +- maps/map_files/USS_Almayer/USS_Almayer.dmm | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm index ec03a01d7633..b3bdae668e10 100644 --- a/maps/map_files/BigRed/BigRed.dmm +++ b/maps/map_files/BigRed/BigRed.dmm @@ -8325,7 +8325,7 @@ /turf/open/floor/white, /area/bigredv2/outside/virology) "aNa" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet, /turf/open/floor/white, /area/bigredv2/outside/virology) "aNb" = ( diff --git a/maps/map_files/CORSAT/Corsat.dmm b/maps/map_files/CORSAT/Corsat.dmm index 59f0a59d6ca5..cba033af375d 100644 --- a/maps/map_files/CORSAT/Corsat.dmm +++ b/maps/map_files/CORSAT/Corsat.dmm @@ -22823,7 +22823,7 @@ /turf/open/floor/corsat/yellow, /area/corsat/omega/maint) "bLD" = ( -/obj/structure/closet/l3closet/janitor, +/obj/structure/closet/l3closet, /turf/open/floor/corsat/yellow/northeast, /area/corsat/omega/maint) "bLE" = ( @@ -25745,7 +25745,7 @@ /turf/open/floor/corsat, /area/corsat/inaccessible) "bYU" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet, /turf/open/floor/corsat/yellow, /area/corsat/omega/control) "bYW" = ( @@ -28704,7 +28704,7 @@ /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) "ePL" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet, /turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/virology) "eQR" = ( @@ -41951,7 +41951,7 @@ /turf/open/floor/corsat/bluegrey/southeast, /area/corsat/gamma/hangar/flightcontrol) "sFD" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet, /obj/structure/machinery/light, /turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/virology) diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm index 6878a0c1ed20..e228656680cd 100644 --- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm +++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm @@ -11859,7 +11859,7 @@ /turf/open/floor/prison/blue/southeast, /area/fiorina/station/civres_blue) "iXV" = ( -/obj/structure/closet/l3closet/general, +/obj/structure/closet/l3closet, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) "iYa" = ( diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index b5181e0f77f6..53052e0ced15 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -13329,11 +13329,11 @@ /turf/open/floor/almayer/plate, /area/almayer/shipboard/port_point_defense) "bVe" = ( -/obj/structure/closet/l3closet/general, /obj/structure/window/reinforced{ dir = 8; health = 80 }, +/obj/structure/closet/l3closet/scientist, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) "bVn" = ( @@ -36494,7 +36494,6 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_s) "lmw" = ( -/obj/structure/closet/l3closet/general, /obj/structure/machinery/light{ dir = 8 }, @@ -36502,6 +36501,7 @@ dir = 4; health = 80 }, +/obj/structure/closet/l3closet/scientist, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) "lmz" = ( @@ -42094,7 +42094,6 @@ /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_umbilical) "nDo" = ( -/obj/structure/closet/l3closet/general, /obj/structure/window/reinforced{ dir = 8; health = 80 @@ -42103,6 +42102,7 @@ dir = 4; health = 80 }, +/obj/structure/closet/l3closet/scientist, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) "nDy" = ( From defe54c896177b3ca13fd83f89e86f20ccedfc83 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Sat, 7 Sep 2024 22:28:22 +0100 Subject: [PATCH 17/17] jannies --- maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm index e228656680cd..fb1e6aa1f555 100644 --- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm +++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm @@ -10789,8 +10789,8 @@ "igQ" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/rank/janitor, -/obj/item/clothing/suit/bio_suit/janitor, -/obj/item/clothing/head/bio_hood/janitor, +/obj/item/clothing/suit/bio_suit, +/obj/item/clothing/head/bio_hood, /turf/open/floor/wood, /area/fiorina/station/civres_blue) "igV" = ( @@ -24592,7 +24592,7 @@ /area/fiorina/tumor/civres) "sQr" = ( /obj/structure/janitorialcart, -/obj/item/clothing/head/bio_hood/janitor{ +/obj/item/clothing/head/bio_hood{ pixel_x = -4; pixel_y = 5 },
  • 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⋘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 i!cEAg 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 z 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 GFaHOVw$%&( diff --git a/icons/obj/items/clothing/hats.dmi b/icons/obj/items/clothing/hats.dmi index 3e2a1dcfc24382fecb0e689885a9d8e01a7eeca8..fe95f09af4c8939dcf21cd0476233aa35f274f08 100644 GIT binary patch literal 57166 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�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�pKo+oB~etGog!4DgoqH=fjJ`9}bCxf}a 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%0A^hJO*OMAQs7ED+nb{R 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ÀXLj!7fzb`nd?{I5OREFq3;_m}@XPEH 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 UO5C1Z0l@2u@in7jgS!#`0n85w*Z=?k literal 57530 zcmbrlRajg>*EQHkAh-ny0U8YuoFKs^XmChyC%C&ya0~7l+}+)S1qdG8-5aNY{txf_ z&3rfW%*D(_bA&o|N_N%WYwdNy6y+r`P>E4NAP|PMl$bII1Wyk9K(CR2J8d-cA3z|) zQID_cPGZK6Mh@n7PUf~YAdp)|W@=lM7B_bA(X7gAmvoH$h7FqtYA#$t7o+_5yD@p6 zE2S{msA)zOvPF}11_|y)6{+CBu+QVE4A&m_dm&vyKDwQ-EBhLw3K0mz{{H56cGCu| zeK|U~lO8gVxyK51c~pAGsVm5=*P*%G^2_q}Vl8jIgvN;5`HD=p~5cXwIR zTC^nMHP5I6pYZQZcexY``EL4E(DR=&E4F5QNlwfE8mke;C0b%HW+H3fO(iw9`xjrQ zY%Z5m3s-QUx?4%C)fqX*{VrGMZHtUEkLv<|mEW=qjR?VtJQ2tk%}dB2ew)z2J<6pZ*zsmZTP^l4UVVa&0vKO~pv#2-1F7RK`NTB5I6*iSf7{hay}fZ;iu8JRWlA z+LoZ_k+)_%sN6%4Fi}|!Or|BH0FpkJEV?L9M1=OoNy~)+0pkGZTs#} z$D5LQ0>tD}ps;L@S6%tZIcLU~qY4ZN`q_%I36ADgG5o3Vt$uS5^SX`JKt zt$wFMm8WDBjM1)El5?Y&s|C2W#7V@vKL~IkM0u$kqo+Qg_a+Ip(&Rryt|p04T%fr} z+`uIYF6Vn$SyP;tzENe-k?EhwR#MlY-$wDuVNuu4CN1>d)?aypYZCwQHG^k~`lUPZ z(qxG?SGv9i+lfHQR%8ucJOL8>(7YHv{q7uc+s^UZl)Wy8B>U4U9aEVB64E!nb4p!; zYieBzH|#m~-;a=)&B~wJO^yX zUpJ{1_hDq2G*PmU#1U%M5v-FxiFH2))7}mJa8Im#XEPQ?eMPkJL5i#f(XP=mYS`%) zW@meOGjCCIDvZS~XqFs9Odvj;uFZ14Z6I??Dr9HN;c02-QpfS!o3{l*A|s71HYckk zXlqG=xc9_RARW9JHfy+)@}0822zEQFm;LKVpfoX^{=-iucDR@o-U1DXIj!GEx$@D4d1}y-h?)Wu6GSVDo`hvO6&ovPFR=)k zV_kow6}9^qb*rx_hkl*>SeMQd&O6jno}a628FMiz^fVE0N~LVSgQWOy-zD7jc8=?58M7Aw@>n`jJ=q*DJayu2s-u(B7a#+mSR4_{z_}- zvA`?>E|rX;#6^S8(n?#re?o&eZwTj{yvB}pLMG0V&xE|SACZgcQFOmh!wf(ma*(u` z$XB%B+DetwZODI)Ga=sk5hwYb9cipP?IL~qE)!Rbz z)A(DBN(x?H;xIAFSSe~;(@lp;g^cDY#)LsWLWy_v3#9-32O)fLAv<}vemyneSVMf= zf69jS<48ybH7Xl0;6y3*_bRnzqUB+X&B{>Y0?)Lt+W&hsy=WzFS&+*~N%c~9*miHu z0vkD=TAH{F`;>M^0wz#yGCC}o375~;SI@;(hL>iK|24iQE!g2W1Za=hME@uO3Z@K7 ztdnjUN#G)}W<14zDr%&I^h^(*yZI8qDT`8PVuS=J;%oAOuC=om%t@P8T(m+uqg4uJ z5B}aw7s|zF=c%%~FAy3+YFV~DohdGy*hxyelBIYl#$0;pY1=41QZ26U?adckEz}xg zDsWVFJ-6%)GRC|C1rLa`Fp)5fNyqhJ>$2Z z?DEm4wwg&)VCx;JL2YGWx6qI(V{J~gY`6io{ z_R#|KsVs32+ zG3uJb&Yb49~xK+n-@hKl&QB4#9Vc+40q8T18T zTt*AUr6lA>1Zs0%d%&$9Y{;=>XWiYNVhW$8;zGjF=&I;mt*4*p@$CfaGk_CY!a&VX zNswY{dMFt#?(JkpsTWqqrFDRHYV8U7n~T?&2SrK7CK*$5q87HzJsZ(cWf2kgH9f9B z{6~}ZEE>V2qqYG` zH7Rx)1bAS5@+x0GTWC|mL)qWIlT%93ClEk#)xIgn+hozG6+=WuDqTulSZKc-=W9Kd z6czPP`D9NSfQ)5x>DUm5EiP!2&DS*0XgObjpvgjUk`{c#nDFPbBdxDro@BJc?5tXR zN}BXjrA}25*NUHiXa{@2JJmR^+&z!v#ah} z>&nJsY45f}zJ_CI7aqU6$Q5{LCaHnXsXQDj9-f}QH_6k!q&(h_VVP_k5O-k89edxy zT@g3f@yjEPOw#MRg+J#TeY3Uy{;4N1YEWLq#YFY13StiYb~q^=OtXTnJeoFppK8xl zYDogi$n0kz2Orw5S8fIEuSx(-HOfd!Q*d*uSy$oP*w{3;wBUfj6O}q`X;w{^^URxDTeCMhvB8jy&}`jo^S_@3 z-yHbWZBBmeSiS3Nj-ywB_1-RZeX~_5e0~KZRAa9({b^#)essvZzsKGGxSZ)f1Zw=l z`%1qf8eOqK%=SHtw*(Ot?dAOx81ByNAR0I?Q_iLRvYS_0I#StQS{lCIEe!NCcS#Uf z0Q=WdV-B1BC=!uGIU^yXdGnm^Z7#D$B;h}e`$KU!xK;a;D^df9(jIl=lm$;xfKl-%K99Fd9ipwbzI`l?RwI?wzgI&2MnA{ zT`iGX%)pZvJFx2hQe8>}cd$LXI9A1-c%QZ1Mh>nUD@Q1blg#ufz?RT9GsTW2~S7QXgo<84JPpK+wr&Xy%7pBqhHOiF^7p)xKG0`g**-+&Jy=Sanb92_9DG$(Ro2ijS2N`xws&<^TiXBO{)gya z7r3^zya_4tNOi3+Uo-h`kAb;!1ElSI`{m-&6U`Z?vc8Y+^*gqbZ`KjFz8}1P|C#d= zVz+FKPqjxC7qH&xGtrvX%Q@nyKhoKFTw3U~8L=OBxw6;R($UjXaB-(!8NJC(Ac?TOcdu%&33_5H%UlP;ucM2qB{eKKUAK)S6HLRp%|pSJsJZb?IZa*p|_ zJ#W$~^#;WGUjYRij^p z`@1aN;C)F-cAJVBJw<%7AeGJQg&sLuT^&7$N*5ozpGDd0>QGQn zH>(_XS)KM31K7t|n3?6h8qM)iuQdz>6p?Z()oXGWTt=)?lNK{s>NSNwfb}fZudYtu z6~*&&+!!GTm5tvsc;31k-r2eM9XwT7tu4A#41BWq{6v2sDN_VRnL0ZBv&f~+0&NpRM zkB>m|By;csCen?T1_)gj@8as(p{H%Z(b*j`PhhvlVcOY=ThKfQneT0YJj~rTsyw-g ziwAGF?S6vQ;m!_o!AZISi4V?xMs6z0vh`COy0~bXhy2&C32?bHc#RHSpd)9cH$9-c zyRB%9zjq$=Us@o%pbCNerZ;*x=pCC)Vs4LRZwLvuwzm3G*o^k4i?FnsvY4pIg(FzU z3|Wcx=PKUy^z_`_-Ps-gtC67UyWZ|Nw`<#43vGD!=fXkuWYFaa%dcYX3b9%X8Iin; z5zBxLvRgU}U$24H&s*V=`AZOO^AtS!{e3^zWzL}J_lj7Yj{Lm*;(sw-kbE;{Xbz`i zGzkvQM^g(3?-3={Qv1Y944AU?yrIsX_F+D*5nXgPJc7CPwO{P@bd)3}SblC)E8VI} zDiqS5RIL^IN6ADqf?<^_`I|Xvg~GCRLEaX3zYEO_;JnyO{t(G$3u1I9s_72TRcO8C znR-P}G6Mv+og`@CsZU14eblg?cwH@Jr1 zs%K?BcBS>ILscYEikdW__6@W@3@_cf2xyoQ{#OA4N=pZtuUh7RMTNHq4i=+N8uV|T z&U^y{gC>gkrAu`Wbw9fQy9hI*ffq=Yp-d|clVQ_E|84LzbO-;SV!1yK^XvqXd zz1$tMoV{@6yjN62%4_A@_y1A1!m2Dt9akwWsT(Pe6TAC&Ta)!9vu5hNA>Yd^f|3%$ zbYq`}3`0pwtc5&t>M1wbjYAA4Hh6ID+dv*gW1XQ@>?VNXc=5(egcqqWmHGbz7h^es zY-DO=?qgnXqS(|MIn>a+RMy5V(S(C~jHOQ&YgwrrFR(IJs+CL*RqC_386D9JKqZzh zNzDB(D9q=q|A4S*)>g9j372qz^uLg^Kgp38VQM+NFsjkmx`J+HFxf4lLC zl%D**?aYY!f2eNDfmuP5!&EshVzi^nJfwZI0%$|#z9}J3dvn1(_>6CdkM3bXd^5L( z>R^@@(XV|5UA~{hLGw|8aNO1Hu}-ZLIH%Z>#Q7`q#xG;rY15U|N%PVA^32igaayfo zqy7$OD+G^~oX9UDK9%}3+*$Jx;~m#0{%0+lmI3pN5X_U$`ubR)+B&qb2pNH*JL^uO zm0X_qe*EMcW3TT~nvF+Npf=d26Al#j6Cs%S6>>Ao*4Hr&G|=B4ibpG7y!1ba5UAH1 z3d5F`mOi}c{(;c){ZD~>MAyj?i@3#?($*E)cC6{Dt{(FX*VAxmf4~M`w1|2}dc5JY4GTHblCUwa(cC>d>5H&!XFk<|__hw}b=**0>_bB68+m-PZOHg< zry@3^md>0OrQINV5$`eseOnK7RvdEN3Sr_($?jN+Xr_l?&wYw*!orweHW}qAVzio5+!E2|pzC z+P1KW_Q%QtYF;Wfy4s&?Kkr3z85HukGHdv$i<{dIX5Xe{Od@I9dO3M7mo~F|XHABX zJ0z*kf_3dO9C+aJ7N^4vux*@MrpQe_+w#q)hV+@Gu2uB`V2VggBzab4Y=kjGtNRqzZAr$yTVgkKdZfP^E+5IC3QEOmr2l8b=GZa3-j(`N z4`4`88- zd%UvZLXh7{7-*TeGgJaS%3EMEe?yFJdBI zaC)(YxeIqQ2zF&vxV<|_+(Fdk3P0l}g*%RhLFFW0w_CjdZnh38d`dz22lnmlkzLs` zH8y4gM!3;t1@#{o_TsbzJU9R}&^j3XQve+(Wp%va7`}Fh9vb)5{Jqzh|M_a->grbc z2-RWK?cw4;+kV?sr;eQ7bo{)ETh)G{eWIj+zRT+MMf|WYodImls z6+6#Y@(#ORR^aBUy$436Qm*Tr4O{llt__>cErG13J-k+9QL7y)<1KAOB=m88zRIRFbmZv*^fwzd@bRrQK|AA9xb_N{#%1r&@8|I7$I|3E+nNoK?9oIM7) ziAReWCz|+tTos1KtUVvOoO>SkvQ17~V3zPmdgA@vb+qgK`SCB~T<&(_@q4Yhb&PLP zlilI6*=lv~3KiTJ^E_7@!4kxjzFzB|eF;rVcZ$F$hHUWAM;aLqxXrbyoGORy<+E1m zB>r~2G;$7WvxR{vsi;0DMxWw6C^>M%o(e3}(U%uO1AVli5#L0w4FAjv;X2MzD|6Xw zK(d~<6I9o&*%d8tv{$FIJFanaX~VtH$=v9R~NqHs=K{4+IJhtsFkVMvh|oN zL3##lbV^F26}A3xvDwUL3+R|EHMSMq|9=ji`wO*oKixHu__d;&3)H z^5GPQA=sDuv%`p#kTq$bW=6*NSsP}YMvmT#f5pQSZN2=Rg)6!ufb#F1q@QMb56XIS zBC)4!*yb=pXNm+87{)l`gJU*3V5nslmz~_P+@Dr8Io2Y=l5LQ&g&Jq+jzdFd7 z%l>5VztZNavLrp;mDYq z(*vkZ?rK4`BPW@8h8^Q5urnpE_Lt9mQ`|_!-?R(!&bs{7r zxWA)9qKR0>?_`*Re~7dii)1}Oy^j~_BGRi)heNbR=@=LgBA30K6&xHR+z-!gFUCil zHABALpCPCJYj7rQk`LX^v=)DZkH4{$M+jU|3-Lw3e5%8^v(*b_juZS*l@DK0K~M?3 zkW)_%Bcdc7zq>LCJ;oj6-vwA%AhR7#Iq7Vfs(y{rU?GYPU<`~7uU_j42qWP+9koSS zkPo*-JdEb-9_qGPZT+oK#YiiF@G=YE*EHc--WjW9KS4z>Gf&4^-adG}1B@HdN-W1vhu$UPuGxsEOh>+J8Rq+?=CAUHcQ@uf&$QT zlNqyZyX{l2j4W@M-a#YRDFUhy|KnBOW%D!BW(9bipn!D#P;i zw&XzGx*qdecI*wo|IQ|`f?)5CFSF*UT>%};*GlbdN@K#;0RCB&s>b6gpDF)+x%mQg z2L&sSB4ZGj%pFNj<#a@L*)xNDeu!AySC7(`U3)kbucL=FX8ow}vqs8?qw>5tjk{1t zR_3`6 z4{GotKl65p-j+1C!Tt^6Kc=tv9vj_)=LA`ewI zixj4to_&t1H@1@q;^Xrs^tb<@A5~RsmZBE6a}a^kw^%Am6-@`|POdg@kFvLGtFph3 zMt!%?6%w^qB?fh5K_fI_8%HdbWZVq2*(XBJJ(*3{w0sO2iI~;llKP6ijj%i9FWf)p z^7BnEPIj-CIqBl+wD8GI^0)v1TVSsMl^# zkdvF+YZK#mK|csPir_Av@zUeteGb6lHBD=)+iGgrTTi>^Q@68*A1+c!? zy0o2CHS>kFwC6b*D7K0H6Ui@HaJByi4EvQ^D$!vLyTB5B zaEsUBt7zGQ3D|<}*6$_nT`oO7jLOU|HKosA_FP6UHpENSzvtvkT=s|WZM~1lbQ(D& zm>UZLE|pc%$NxCp-08$}F^O?m&M{67c5%PY3xl;?yh)Z#8Sm6Wa#uMhK*%h9)M8$_tY)%7o(dyyUlsi?Xo8tv(q&MPL39IMTx}F@MXb zeuE9l!J(2?;Ll%0@Va{#y+T1VSgyd@f5`FzLTk!jP1jG^tS1yjU9h(KE=tkf2e`k! zy?@X)&sYxB37EC%$lSMa1U>dh`33mT&&)IZ)3g+Y-Nj$IGHdi+P6$nmBrckgkB7YU zpem5pbUfqz-h=I8{jj<1Ba`cL$!SOe7JyR^9vHQo6(fn*{7Y1daB&PsL(@}IhJaiW zkJnxGDJ?82YHil6?!N$aN{J3vKjNdpGbw2o1I7OhX(t`;QU8m0aYO!pfZG4X$mZ9x zb~JI9K?O3&sDAgCdv#v-4xrq;yqyn$FQ`5&h9Tz*FNR5-21rao0{(BCtL=CO4?=e= zl_ZFs@}-1E3_Rt*8-OLt2@P?;U$t3jRr>brm9V^gl*hD|sBVTSfsyA@@<7Iqka?+l z0ENfRQN9v$&^6*p7Z(-=0d~5*z5R>-bgm+Ov9PrCOCpxAbrh2~ z74)t-;RWcMGdWNr@=d+=)}g{6IJqlzpa=4eLe!<0pL=9F_@W=v0Om&{h}ixjdbh!bm{EK;rM9Ggl$B`{WA*OzpvWM z=G0;UPcjAH2%!kt>NUJ*f16uhPhxAU(EAyF7UHMddAOC)PI+zrMS|-K)OFr!@~O_@ z<$XH;IK+ZD5tJOQGN-A55dRGj>5QM&!q?udiW_bh!;LlaIGyM3;!Y)aarCQ7TqVSG zG5gNt1bW|02`!SGWwh!ObP$}_A+L6=9VcL|=FaC1B<8^rVIN|24__(!2&8P)-|gY) zRe6duzq4R#@zlprR8#5WRDvnY-x>hPRZQ6PStryc*&9~i^=UWc6mTB; z|1hYzq~4YQ-MDO4+TO;Gjf<^FS`uue;irxPIwW?+Qw;4~7zv?2!va}2MOzHSdI1)P zO++*VghxTTxV2vQ5R;GCEFD*I%=Yg_Bqwz9P7cu^m>^b%84$r*o0J(1MMWZ(U%#QH z2UqW42#=s(Id^(c5^ip2NKrDO!RO;>A*N?P%{2lXb4R4_la`aczUOjxV6PN1f%0iM zR5Y|<(rd~VlfZXFL+pC` z#sWji7ziR~!g(!9OG}E2^UKSF-w_BF9(d-2N`C$NM!@5$du$BD@9@w9sD7c@p6YLd zn3#zW$z`AatKQM?y<=wm(`NaY)vra2bx83E&;}YBma9D)3eVIWbtpWXy_dNx!-Xjhrs{s^7W02kB1A5h)_8y8>hxiPARwKj-VksY3|-bGc~tNV^tyZ5)dM(^Uj7zQO1XTY$EO?QWu z57oUQ-4LI!aUxjA8%AT`ExMTb0{sFqNTHLs$Uk_l7qBbXDSUOF%g?VM@MhFtRPzf} z6b2Rs%Z9*udVmZFY3X8F^UWS*u+{#os|$C#3T0AxfZ~qHF?yUh<|HH1T~xLHBdr=y z{9ir;v90YAYVW04XerlyzB;!(7J&I#pAlCz>e2v;h&t#dM&l>1lvywVjbD(Q9|B*+<275F8F!up$8HY#`OU zaj>ybEhlbF^X=QW?}N^0vTa|I~IgKL2r>2k9?l4)i94``}u7WT3PmpyXZ-VC9RcE^%JoP)m$q+ zbII7-v*F|8Tg;CF=FX{yW_l0V$psR$HAZl|JXRlF7$22Ye?xXg0fUZ9N)u7f#*P{| zD`Vl2uF8UQv4)^J%(PYuQsftynBivybVolu^p$L@HmEI*+p`L8YuizSe+(;3bI&{w zWXltNzxB;F1$@F?@;SUfM*4x{i!E6_V|Di+R?kU%`}l{9ab}9!swl2U$0!Y_ zdM`R)hH!ClMGGcFi$ah^)rEpZUym?+C@w9fWMGhKx)WklC--P=-Lzm;L~bTVp9!sl zp>m3nAGR5Q(22dDfut$}iF43DmwV@XG|l_y}Malj!akp+^*Rm(0~@h3hdU04_|0+T|yE?tmY z^X)G>AvLB6Mq5o*ucyZ!=r6au8cr<7RwKaBYulDsj4#QN1lwv>gA+!jI;r=ynjlqM zE>4T1@j%rMoAg0HF=xM1{NW}dtzntvv_#4ZS5NN59s$Bg3z6b(BB`06=O0s zz(*%x@ z78VsPWgdT~qE&iBIQVN72c4An>j}J4tB`02W{?2#!DJqCPEO8@slqsqkGVMy)DX{o zeG>L5Au1S(tjd$>ycf{^u)H>7L%{@S2*x&!Q(4D8B!#Q|lHMT%T0eo=))jAA1)@u@%|96G4N;cPGgH0hI=TCrEP*`1gC_ z8m*|F%Wt}24r_JTiN!~tIXnE3sdWH(5CTWH)G9sXdX$CVse9VoLd2RDNu(1wr%^TM^}_;gHa4aBe*s7s1JivKV-uHGc1FMyq#b{@RO~kzonuP-GNhL*#PH$g+;W_$ zJUqz!+Bsbz10TqfAXs?&xE6Cf_v$528*TXMg)YuY(h@3p zLSCn82-V-vEQ$5qiS%?P%)`1-QITL@ytf!Q60nvaK2K1~tcOQPpKthS)@e$lGg0Jw zbR-0c05k$6$qGN-h+mDwm@pr|>Su$ms#?XBAC;-P{Y!R07335YKa}z$04>;Yr&D_G zclOwrm|xOXVFKK%Zd3xEH`I)bk)fflBPFPc6tdrQaW#JPO>e9{8RrvsjYpxHvnQ)W zLh!w~Rr^Sm^bk2XaeuFUyi;Hz6o_5V0<%v7(kEU=wJ1L`@?C;B{_xZ797xvEGcsB= zrsp@%t?-7g%VzR648$J+cwqp@L`pxzlDbSgHgt1Ab0T5YSFK;4aJvpq6Gab#C*y#i zFdR_j^!D|=o23s>gyZMuPZ98JRIF6QINwRuYxMMe0J1w(T~EIQAMCl3(uggHP38}2 z`oD8PMytA}s`R>Uf*W4u#YKmeso^ACz0wmIG+~WFe<)4^gfI+}HRv6Qy(mmSX#2cD3SFc6NB;0HE&;HwC~G)+r2nO-m( zXdC|;@{&0~LOAx46m;{^miSMT7yBA*x)dv84>^AgT2cAMo-W1C;f z5fnd*irTq06_N-D@ZYVSb*ZSSg@B5MHq^eVIzUgFA{G}l$B=S01G@*z#+vE31QM*0 zr&em~eu4bj(}*K8NYRv6#+iwN{Qcp>BYy-=UEM_h-W7;?=-H8!6}yBqr|L`<XnhaNO278ZdHz!mPkK(-dM3&{bL0IG}KI_q{`QC-+%>yb=@XX zRz3t|)$VuZ^|WTWC@K9des)52-S1!Z2|Zt6;jsOSuAjEy3Xmh6E;9ugcy~zi>5MS2 zbp0wpZ+zdDqedtj{b!X#fyFQP4bp5xFhp9-VQp{=^M~yxgVYXsbek3NT1_T$un=d} zXDB`&`}24vAI6tk8OMw-@^fCo7IMyS7oTNO{f~l8Fsn)7vL9 z(%g* zHwI{H@fCkFpSN3yaWsC>=`IzA*zGZVaKy7eG4_@VkR(siO)iDc)wjFt8<^F>k9*M= zYW_q)!NQ^imSj%=@{+M&_Xk?ka4)kKy3|Rten4cFrcnm_v*6N4XU2KHkOT?0n37M% zox8P~cleB>WHLYpQPRy>i53ca%RT3vOaz%|L@e;Wy1R4dZ$5OQ`$0r)9Fk2hEsTBo!u_uebq)pVsuz=7oWBm=__OR zuLR$WAU6eH)Q`7~hIvK?fB$?Z?*7RAFI-eq6uvJ63)#$`c$u4Psj-)0XKVSdC9kz* zYMo1k0l;Z+9BOjF2Q@UjnVDJN+H~OJQ)U5=3f_ywKgr9>7y81U1A~JhtDa|Yb_4io ze*xQT7%i!;j#+7|_;`5=KqMeqoxSF%7k2NM8;VS_e+P&rM0RSNF+Wm_C?DH#y~`c& zAkX%BC=nU<-`?FV#oc_p^e2RjA$M{7p;n!d=;)&(26C=HCte z_xZz}W7VETK^$tL20xUQQdSAK%_>rPdHrfu&-7o4^U~H?lW&VvT-W9P(YvmO}yEns3@w`iJ?DC{z|<@{|QAp;msakW_cNL@)u2`N-LXaf*4Ej*dR zEG4F4pf!$vjozIJ(c`0$vt^`ThR}Z!5?c-dK`I7DW4e_mAQdW$M#duh11Pgod7Uld zPpRrE;wik?j8RfqAG z*Y*mh7JAcI8fE2_ft{^Zbt1M>teoR$q=tu1>FBlo8x*)BS+Fru5>wM}oSiCw4@>O(;hbXCP4dnD8Pgc%>tN zrOXEGYCyEyiten^KQI8ex4Wxp1-^EuFr_)m2;|Iq*d$}rQ8S>nJB5-GDO$K~ft7P` z4(_1}VQS_}(RlM~9T}Y#57%q?be|5hX6m*R++$5y6?^c1<~@X*IC5N&_nz z7Hn{;NOo)?i2UOxwI~Mc{*q_@Vw)V};*?jdNRgBT@yQ)lv>;9puO4h5snVliY3_Ws zu?i#NOy?`?IlI1ur=-Q}pJDqgS=$LfK$S*gk@C*mp}61sxj^8UB7&wXgBe=Ri%W}R z&?2R&_uzEw3sjiw=7e1hz*dZc_GL&|5tMIbG{bP{=A4yCg1+QicbEQ zpZou+VR7PVPgZ!dI!fDkh9(CMN{?nf$0DioRlKf$MFZE;tz}j;g*&y z2G)#1lfegJn0 z2g+$sDh4{zeBbQW0!g|LQxxB2sLL!j@l##y8N>1Ihbl|87r`BN|^Y3Zsj?CEyd^Q=QhRrHTZ9U$-RnV%;V z5)uNwxOmq<|KS6W|Lrr!Rld2s|M`q^dC3U6a<~0i2#xW$<%e6JADt;4KUynu5?Hm= zJERXriUR4|=}CRE_C2$|CI?M5;=8)T-Mc({ZCJ3bpKSUM>vuOiBdNlblur03%+19C z3|vNoC8xI#Ntoo>sp-)~g8CUg&ZM%ai8dh(66V__!?yf8A|2}Qn{0LKrw?~$3pX{9 zuM9)o73^|`2EklA$(!0J_5hb-ofre8!@X*r_&Dvnw97RGzwg^!U;HVVKfFQuHzKL7 zo}%eIFS;|ea?tuxzfszR*uoHiMw zd(bEAIt9&9;KQ3OGNSUNp9nYYX?CijKK$~!;^aM_m)%dHJe!mB>F8&PV}z$Z@0Z)s zQ{vl1FS`bSu$dVk04x>nJ4m-Psft^;%d)wmDg{OcdZgxH_}k);*o zZ6m3e4ktP~NKSptSg@J6+uB8b#_FtMwk6v}}W}sUdJ7WahyQ34aM{3!&X_Uj7Elost z(`vgW2&3}*lHxQik-mq9@U2;rQ>?8CN}^xbsp&1n2L3ypJ^+enN{0f>9no#KJ|D^f zDTvc&&RZ*ySD_g`$qUW#p`5M!OD65^?IbhR_RbCs2-wdNGZJwsbk}eu(FnuIn3f#Kmim1E%V$Z+-SpQieD2U-#VsRwev@zBL*&Pn za=i-*(8nU(vK6u{)4*5Ps$i(gZEkVCER(`0Z=TjNnNJ7ZpNYJXZ0AQwVZ~z2|_gogwAvzn~F=`j}i*jte^Kj8*G3CnvTL9b>V4J)hi zN?gdxrdXsa7%3b!;4l7qIa1;qZ^8vwCQlD>9lUj#*W9QYf7h5A9Si`}D#CIhMWJj9 zZ-&au!eQnN+Q^_3B4QIhPzVH$P3Hr`6u$W^$MT-8hY~fZyyA|L+jr_dDyr0X?2_Ij zQ%l)eXBxtQp=5a;h!-(FZ|?2wMY3XEoSYiFR&fKCa7FqlviFfc98&j*j4*E%I36Ef zQ!_EimFu*rUY#td$&zqLz5HIzU+(1>6gV%4`$plbmKrK4TPlf@cP&ocB^3quZS#aq z_dk;`l+RF`Or!>sFxChW7`N5-iyDW$;%2d&n;c_^TwXDjCGo-NKqy~fd+{8cE2kE> zrj+dL%0M~^m4$^x380PunFNr&k0cXF(`j>=1gPjQGBSYv9QVu8&F`=OT=p`1XZ5>7 zuSch5_19URpC1R-^iFI5@UgY`=#|^K+}r8Kax>t0vF^GwNeKhKMN%!VUbWiUTB3?M z_t$5fo3`ybS%fjz+?(WW?Ahwkw4b?!TyJ;}US2j;S@1p^?F~#Ktw#K4OT?u)G4OrY z)@#=@EGafBH}0vK2q(>(;b$<%ubMG5P$emZWNcbJer?f=EAhyi(84L?(EdC95pT{# zI(>e>W3AMSgOgmz64DgsFYm`D0@Es%xJl)E=$i(7}3G)UJ z4&JEQktcHoyb!(5#$i~eD{^0x)QMLR)Z?W8db$IpOr}{ z`R;wE+8RC{LVrC6_DyeW^y`d|H=kKFX~@Bq&)w(CGA!X|P2S>_(O~aFolya}+dBXG z=Dka3$sY~rO|>$ z-rN|S*i*9C%3^G6984uyZmOxKrWQrQ<6l-*rdc&(F6XR6D$dC{lO~&jj#PRy=rse^ z;OzW$P9``y0?n8J%@vb4Q2aHJ2Dr7IGQoE6O8O>hg`CP2RN5tRGO*!@&O={+46O+6~nd8TVr&ozVwg3eU_c)b<*k&BDZHW zs}trmKEA_LJbZIM#8mfdfH8&MlKZX0C?hp->4_mn6BdtLq?|d!jyOSC;LK=9TQ-V} zGAHNoEHEtRSDYmfw!cf!f9?v~e0YzpmU%4aiLFdq>4<*xE^4xul>)GzC!Mq;Iog=` z3ERwq*t+jn^7B;;RuB*+I5;Ao|M@s^4#d}&z%eGBPxx|y1!KY8zFy=cE-Xx>qpGXq zniu#+ZEr`h?f7`?(gEs`8CnVxnX5jc$rb5X1wPf9{;SAAlGqR|-+(D4nU{YZf^j%s ze7b+3;`iLONLt}v`s$md7DIsD8*NL!ms|IUaO=%Z@{lmi;OZ za2@GF^H&1uLPzf>lkSAuZZ=xZ_CnVwPD{;Z?o#c>nu>4r@e^3Opus;@eO^q#{*E(K zl|$3;1)x84rRQvk8e#CPsq$yq>m*3=I}-sC{P2i~uzhaP`By{Z$bTHMP^Z9tf7RZp z%_Zx-*1%?pg`biD_64&q!sCO?2o+&bQ3NF=C0^$}$S&{>^E$48#y^{x9{j9(qoS9H z*Ut3ioxpbAWG65qs3!}_FU#5Mv-ZW6bNh{ydu&i{B=J5GB=P(Kr{ME{x^Ts*5vyIhFY>z(tw9b55g=YPyhBWdv`EF(*`X)Q_zIvt&f* z@458r9)$DY!uuwDZ83yY66GAsY|0F;1{f|^!a#<<229@Mfoa{V4Fz1L`QONh|Nn;4 zXNgnq97|wZ+DNJXJB907a~U`7VDI*|=zV;^s26?Rv6f#Z6GKqb)2j@6dbm-e`KA4( z$hxkz1SB_KT^Ct5<>|sHfp`Za1BLDl=>*YxxX8Ea{5shRUdCi} z-d=N(Jwt=}XtDO|oSxpinV%|ns6cYkylVV-E()-}R_T}{2hxcO`z}k4(e~Nii2lh^)j`nx0Z(x7<=t(JtS{`FJ*SJqz1!X)Beuzmlru}P z(6_^cWVY1+0_$J7JvDqze-NWOy2tMkB7w>}PyhxnH%bj=Mu0)er`8*3Zwo?ULEy zgo;k|2L=V1UWu_d9ev4rf{H$8IJ%7v-}Ent>00wzNuivjMdi@PJ;FC}GD6-zJ4JqwP9 zzASRW(vMqYAhp4JiRYcG+uG+#vTBQ`))NP}M=qX(Lc?Urmi?>SqSAUfy5yHm4!IDt zv&T>JL5F4U3#>p-%OpguX9#ysWh|i9Q*m2G7w3r)mG7+hd&CD~SI^q?AxG^D?kFm= zh|kRQlFA6KYnczCU%$3-@p16*1jMH;?$G}t_F@ca6MV8>Cras)YGC@eYnYdA=NqRzSl8$ zLN9-5=yS76=ho-M^>ed%QiXJJeYdxtJKPrxN7Nwyi%Qm@Z;S*Y6nTI42<0pA7T5>| z932sghvUx=6=|6&10-3%rv39}B>v$cy=0chsdqRy!x1kj$`}XgPYG^dRqT%`l#|7X;0&NM@Fugxyspb03Q-| z^<1SnS>8q`J4s|;3JDcncd?o*^(LM4p7Yfrc&B;FgdIF~svUX_$@8*`Xits$L`D6G zO_;J-`@+=z6aWPRY+f{Cc`^}kSOuf=oV*As4w+Q)mZg?#orhclhK>s5X_BYv!f9O+;WPJo-NS%zC_G>l0^L}antP~FcC@FOkba;o6O_&q$$ zA?%`42Z!XY}oGB;6_|I%8VDmfq|mFKF;hF;6MDHKqQc=ws=s@P;crCzde%| zL4aaS_I%XtjbY_c?Nwv+a5jBE|Gf?V(3~gOv{7EOyK4KybrvB6R`{peIMoK`Palsy zn*86qy$y^89oBI9Uk-{l#i{~NkB?1j0j^Kka>+L>d4`ASg5+#j zsEq?ei3oO2dq>N`qG}>Beh5Iqfl#^+U=0KX2LoqFA{+>b1lSa@LlTNnMa!O&>HK{s z?}E|*5_xq@gm=aV9t18df+BYhtvh&l#EKYnwao9B_+`-NvESfSsgy9CYVqVUm&O?$=$BTir0L{ zOzM4}{i$DG0J`m*Tn{3+khh<ublmsRbclX~BthE!W zzp}K8KV7B)rY2xN9=BvX0QzANB-s)*UG>_rOom{@CV02=@8BpN|TA6v%29ustVd9zuZPSu1?0o3cz0|9KNd{ zchX-NouOOvHYC1d;`E;9(54u{nyq$EjZ8L@w^sL5t}?F*PSm(ST8|LgZg)9Jbp#dr}Z#k6c>S+R%1DGUO&J&ilub`=#)tkHd`t znBS@b@zPS;Xl1ysayRdN2h&Ygtj{T+W{G>2bR5zp^>`h=M&j$SS#z-z?KL2P?2fU-2bnE6vev=kR7rYje& zgDWF$_R-nUa35QV^c%o3^#@K`Vq#+rs7SuXMF0?50OnV`=!RZ%Zb<=Ce6c=sTZ0Lu zc4uScp@jfht{MMcL+^UWW9B>{lpMNG>V|F0@Do zUteFzMy9Jsez9Mf*YNLVXr=2cWjfK{VB~}uMjGw~Muejt_r9TkF1*n9JTn%}nI4A{`FVY^;ahj#hk25K2bcR23QeI7* zZ50;AHk26k&06&ci;#|c1}}C9ZO}3K_~fJ@nt*y!1Kybphmg*D%9yCMmeRV!w#iPv z!jIG?e-wOzI_%m7R=EoAFpmpp^4`bSvR!75?U=W-)~*C-hspp@$8cQ)<=43z`smIx z^_}y)wvSzzbJKL$5LN<8?MROeIaCc^1W=EQ3iJBSb_Uk@ve)mLp>*E8vvFE8w|_Wu zx2QKN$F@qejr(=KE6BeX<(D2o;OX9I!<+5Tpr+kjCB_4Pd@Lju2m4u-i{*vcx0Zuw z`|xxj;rbSQ`GPrs{{a!G8vzP?v+2#1I20x^uDpT`qef!l<5LvKtQNB{7C9(Ke}B)g z*6teVgmzC|~Lz{85I*yFqu5ydi)ura`Z#CzXLKLk$}9zM9nychV1 zK9HF#pVJCntSc9ho*LeeL7~Cgw34;|?g_(6a-qtho&%Qe^m5D8?)3P{BYJ7+awlc9 z{%$RVR6E=)Jb{xD25z#T@nHdX#|%sx`6MPMuE!A=p#GAtwkKXyy*5R>JB1$ly6N-c zqi#k+4F1Y0IxlW{r*IaJP9dkvMGcycjePYhzXv5zwmjS`MmNyiAeSH$U&57Jbp~+T z;Fi)iUUFMKZki2yy|1knp%W7u)@zdaXFENj`9=>%PVC2|^5QxjIihAz0LQ>Hfpipy zbcv*ee;Rm3wFqCp+89#6^PFfoT3#>Aadn(~^odDi^R816DT4n*iOtHqpvZ9+&hup% zJp7FQzAE$0Yh}r!1v9R=sjrCzv!Nyh`vO{<@TCKt!}`=4m%e8>>Bf}dk(?w>`!uF4 zd^Y$M&K42+VYf$Cl)#a(67 zf%-4nFyy~1sXbPacTS^ytRF}kwqi10Zl?wzVN11zGG|=9d71Q zY@<~*;YY~l9Ymd3b0EQ4(!)A_**(If?r6mj45#AVWDoCP;f+@t%kGAf@(mlJ>0Z)V z^)k`Ty#-=SOP`=b>#58a6=QTlp9P=qB^U~9T>8*mR+yyxjH?VQXyM;7-ry@&#Itob zO06?~`}C>=HGOhG6rp^%+}ps zv`fVgjYiX!nR;J}yux2LlzU&&RrsG@Tn}#LFYF)XkAH0nSc`97t|H_;JaXKqI*x(} zem9JQOz(SkTZM|C?Vm5>!$17U9EIHn#(EEWG_sqp&rj+?dz&#O`IQs>-_kxSy!)VZ z)=wmKIFTg%dhp*0#CMlM4{fj^gvvc_RgZ+DepYn&bmbX|$Pnk>OR2u9G_BA!f{AR~ z?=&E~lCtviiy_wnh|%C=U|w5pFFH=tD9<3A=+nm7`i6JcO+2a(N#`lMTwWsn;6t$% zn`WFx&*%zuR%ok4S;ST2iWS4z(yXRJ`!3aY}OA5+y%qs61XZ)m9N>lvs?RbAcvpKMW4V_oOgwinMFY@scB zxtlL(=Nn+?>_Ap_+s6dA_b>Q^fwc}f?6%KE_DS<9m;9Hr1@_NcTwdAlu&>=ak~v?n z-BMqwqNC`@?62H}3@k>s27FuE9oYRK6tqr-iF3$Y%NmoiXZEwEPBQuqzV^10DmTl` z7W-D2;Dk=xMi7I^XTx5CGFmDjY*de+GOj8mXg=`<7CaFDI@{Hk`SnB+9+;-B&0HHr zQUgozTvZ@{enWhj9QJZ@@%{H|gVgk`EQWdT#T@~4(>56m(~lv!eusYPi^Wgblq^;> z*l$GM3=9*?<>7gc?WKjLHfuYFIKt`j=hsv4C z&(s97q1Mjyz$-3aqwoDuBgqQa-C>+!2wv_dUy@E=yUTz{3+NA3#;lth^d>J4t+qel zkMWKxPyJnXx60JT=>P@-1;DjXw0i!txE%IPS{iXMfdMEHc*O;TrT8DL0-fca-3+I) zuBP!w$=bbv66fs>ZX?hPH~BsizJP%nZ;E){ETf;MJYEmvi>-tzMVa*p*575HOmThW ztD^eUTl?}@YxgJ~MYJ$!yoz!@(yv!0bslH7H?q{T@KnO_Id3VBTIucb@(CQ1 z=UCzh)wexMU;tdc>{#V!eu0FS+DBpXT%dzoIqwbFt3TV3^Qhf6Y&{nMJrgjC_b~B` zmT5lvyMVnco-7h}-`D`-BH$G+B!a4|I7Enz_95DN$>e13kT@@e9p}=<08eIc@-H$9gE@>7VT_G<;zoy z`!CrMFr33R;v5jheqzUGX`bxZ${KkQY;OMMQ(N`BX>Y%M`^Jy?wRVwU8KPLNXknf2 z!Q$iZ3VPsR?X`@%mz0m+$*zDLHJm_>k7jI~&+^BW1-}Lw=HQ!+>%?W*WrlH??!OQt z24^ZWKWIaNVI?47tP^Gj>@U1sGwzJ+xIq5?KF)hD-tCuEtG^T!r_W$+i9umuXjs2LIaSeg*1>K z{3Qz+D^E&b>!fd#^z`H_?euI9ljhu{|ob0_&@ZpgF8a-*{WdR`XMf|wp9I(~6>OJm!k&)eidKd$0C&ss@ALR6j%5yCH{ z0f#Th-kg8Zm@Zer7MJa0%P#g$yrbO4qVfQ<4&$Q--bJ|HC>t{2PIy%9y;c@az&H9T z+x|It`rBjGDcpSGRxUexdx4?;{=3u~Mf|rZwVuXh=+Zs@_68#FQ^8x7tNZU*b6Vq> zo}>hoD@cT=c@TmWsJN3?K(wH{+tUJTj%V@=8YY{WLNG;_#-}lfJxy|U&AtdKGy%-9 zSPOXLR5M$@O4L;Trl2o$gAyo@uf<^CIQg?!e}YFs>NKmq51XFwm}*OhVWl7#;l_@5 z;r_v|y(^%Gbg2jp0?K$dg?N3Dk1a>)aE}udhI3IVfO?NsoUuZ4yE_h(HtmOrm6csu zmj=4}L`s3tAR!{TCH1jI?nB2r(SmWIIFzBD9q@8iHrp5Cj<`uZyBCpe$gTn+I5F|q z)|Er?QFpXt+0^(Cz_*P^t9HGNyYAn$-DVAF4X=^wErqjhPgkpDt8Y;h-2`5n38vQ9 zV!q*N0O*3nQceEAyxYNKBKcCjPFP>I8#%Av$+ZEr7AS#MKo3Ku2TyI?{xSgG@jJtO znWl_;|1+iEZ;HEoDPWJfyTg&E+5Y_fW%Jtd8>qZlD$`Vo-)y6p`nvv3g!AyvsdGNg zWXtM!&R7*W@!u|1e@6yjasfNA2&0il#Hq$vP*vpoTvT;xtz@DZE$==b2fvNV$3V=Efln-BN$=+RUQDj=f1 zcJKg3M?78$kpGEzqi=(LgP!E6tm)9zpe@I*{bGDSI=XwIVV$b082{Smj!duUaFEpH zKta!!mwZZDZ|D5RZAIbGjp_? zd-U2Bzl(7mCSgGurjineSD2|9wHFgS<%}q*9Y;mRZ>>=)w!Z1KV1J8)Gm`^PeTa2u z!%0{;^i!k4AZTRW#)UkGg6r4ta|rgLh*Sx*aq7Q!Q{{fW+x@d+LxpsJgs^5b@b!H! zC@$MqbNxTHj^!M9%>!CC(Fw{P`dg!c%#}OqBUy(1f@9+`ScG8TA3ik-UNr%gv)KLX zeI|&q<1(u&LGoyLb2@JaAVYqt2oESC@z5M zjI@8xODBZxr?oCoXWRbiE$zdN504GjF$py_yw3HBlWc(HJJ6t>9x3Y#A1t+Jevn*h zquo&-WH@LiE!emy-}v@P*(PPKO!~1hj_0&a^<5YS@Hl3beGB6}v{~G%A>b*AM84M= z)v9jkKNaE??$`|L0(QGu7159*)dN1I zZv>G3JyDd=32STMiSIo&q=ea7a$j(LAGxYYjN4EeGnRS_A1oj;dyNm#6XA~O{p5(# z;MWM}Hq%_)mOAz0I&g1guh1E~>N5m>_bC&83JDR06tUUHt#O>y`RyV~VXwgAc;TLk zkm+r+BEE}ttYuXs8mOK%!RIG_JvB-zhcxtQSOqYpturL-*eNKG;pVP`#ZA|m6>G+Y z`5(6@v{4bwwz60s`5zovy^iDl4=z6*-e%C(Wqbpth>MdJN-sHjQ-=wUAVM4yOg|TB zQ-?(BXR}^N*Quc;{AXI+a6+Dv^m3G%c-e79Ko&DWaKEoRAPwB(a3vb4qZlj zuGXpCl_VW-#+$&L_&-Zp{yDziIo?aD@U-Gw*d;41O-fDO$I>+MClk)HTSRESRe(mR zZ(yLqta`()9uO1u{b&mZM$F5a+sD&2og4G1*~rW|T205IabUq83pfmvow!`VJs^C+ z^+Vh7t?c+8B{AYPU}R3l{EpZLO&{~W>|b;91&Mx}>OOxs5WN!0^i>mEL%&v;H=m1F z2$jPX&95eEq~j(^o&5gsy~XNTTdS5zvvH z14fv?DG?ZKBYJ3o(aDu+`IN*E)2E)h1&wDMFqrUnXGTw<)7&7w57Jg08hJ?`5GkCt z9m>v8fPYa<4M$2U52*zjD4!M>X}inN(Xp{x{YXpIAI$pU+T8V2{?~ih{d*6&*LwhF z>8P^vx-~pG`o;S2#5Ienfh*!x(2n73sM zxoaGycnpthw;8&rVp@s^%J`V+gvCH|ueJ7v|5q|0aS4!|z@P^-jH|bsBaWq5fxM}t zjm;mkgrBP}qb}=Z?QquzvxA3>Y&e8; z|5e>4=d*PQ>z*(ZOlp#H5p-UD-paQ3eTGZIh@mYE*D<)6rD%FG@?S@aX_t?BOQ|yq z7Yb^#^63=Y1rpU5<+;Lt`(8{y+y7BGkACxi(+`uf7B2S}DZ7iK|H4>4KH6q|ySjk- zWa`#mAMnpbD5D}$Df9`n$Dy=nGu#CYA_Ve$^%%zuW)(Zh&1x_sjr|NfDS;p;i}xg^2V zVC9kMN}6}Kde`R9&@ZDE#E2gks>*N>`gYd;dVd_b+h*-kyghHJ>POfOKSWhU!8+68 zLXh|?KpY&ir+Ju2wY9+hQgTQ1u5$qg{b?$W9q4F=e8QO+FBAH(!2k#sKpd?!C(90aQNOq|IpOAM6Y=#!WOg(j*izqe}^v?Zol(imUh} zcmw#&fk2(3k{0}a?MXru77nL5j`CM)Pu|*F>yb~qxh7?%L5=zbC8(|-wUD7Z)a)5` z3nq&&#|O=`k#)o3l^clR1x5rxWfT{_Vg9ZGG?MM0X>ft%e5SsStyb$2u$o*urrM^&-Z_ZW_}ZSzm9il*7UR z2UH-O?os61vGdJd0zQx*z#dh#M>HsAVFJ%kbYP_m%VH- zD-wx-ZZuFn^8>#SjIb#8JsZ5kDqJLh?udbb0RY`f58!zJ#R62g zgRQDN-1b1Xf94Y7a#^@%5nF!p)h`Cx%Hh^)1=~E+YeYK52E~gm|9OV%o=KgDyyLxk zpG@XtY2sN6u9u6*$GVwLx#Cq5C0D?V23oVDLqrhQTbXpDg%}FVG0wF#X5zVPlW)uE>bwAB+x^M9@Iu^!)$(WE zN1mkoH9&2_rt1?`iD8!(45fV9(v}l&DvV(k)DARhcj9*%aCK}{eJwo(i9e&vISotz ztJi6B0$rVcy+R|T6HKzG@ONh18%a~U$G1x3YvceJhfh7~$OLd=5`I#4R$}N|)3hxi#(7 z$%>4tdXfeKQj8yqQm$FUL=lY{d?S|CyGMcrYDqq`qWKjv2+2#D#kd(!>5FsyVXzdB zrsqm-C;L&@EvG9z8eKtDbbaO}flN~qZQ{sL(1Jv+(>3+&r!XNQ7`T1TujQBeR0I-@ z_3r#i*+2IU5J{MnH6zllv2Fe9`&-8V$u z%r|4vhSeXbk& z7Xjr@29>Y<*2}Kp` z!`(fZfgDXn?`=$uuF?qLW3e?2ij#Z)jFK6KHIzobf$Ro2W^7+wHv`89&MnmccxFa2 zz{s=tQlCZFECi7dG;Dh9GFjcK+2W>VRPL8Y6s>!$Diy426|HLvaaLm&l&Lq)pITx( zT1Q_v7`%Tn!)+Vp#>Qh6;1F{^1H<0K`VL}j-(k;z8_;@xRS^L=v|VP^0JTuWz<@k4 zF>%g<-GLj7%aA?Zmm%b%5{J&O+3g8xj1V|>{iRB1bOAPZ^}_ZLaHVr^2=k6mE5Iq_ zx+faKc)XnQ0j0SS3f`khf*W~B*1xvdQ5On4mAGrU@+b5-8f)LTd1GheU=v*~y;$wC z-(R=Je&cFI`@&?l{5-jvu`%i#;~-^?S=LJawLAYoF5dM76sy;Vy{w$b`bVNDL^1jO zPo{t$!`oR)8y_y9_}&Dd7Kudi)?tZIt0c8+G6V*}WI{I+kv6C*+j73KXDht%J}Rlg z#4XFq^u3KidG!zt45py3y41IN+^A{xEAaW~QAu~^IULU>7C}7D5K*HLuiY)`Hf=+H zJxwEqe7pgKDIpcqG=(c@MB@m7{4XA7bO$>>|Qckl#- znlhj(zF%Y=jY7X5>7VABhs*+69_+hHkJ_euj+Shf%6x%W?a4YrAvN*dw9|c9MFV|@ z$2$vJdk}qf@k@RIy#(IRACoM4uM@$s)(V8+;62)BLzDq@Yd8_OkB@AzwC zY$qxfw>(!jA*}g#lRR_W}T1EY`DZiKxgh4R{ zg-8jxCW>wg_Ddj|N)h{e@NyVI=Ij`yJ7))dJ&YU5HV_*`m23$w=n&I@_t49jvcjC))%(OVvS1iI6N94yg>sH{KY}?DM(2K z{X2ZORpr-Ojiwnkt2IO??sw0|&b3dM@_b7tyQNdMUENfy(ddTxV(Sew$zNKXu=Gn8 zkp*ApgcxCSUFdDw+7(>LgQhnno@f^C&STfvxGF)drjwM*!1B|To1hy!xi4Ba`>ICZ z8*sWA=jY72pj$S(>A($iMKx7^hzhmRspf|+LLqdAL|bf;Ah@@C0Y4FHGrG2U0(J9s z^lz0RucYnK>It84ffD#eEj&t{*y z(}HJ4H$$WBDdxzXN_(U(OOUwo&Itex35-ZRJ#LG3SDtzY0 z-x-^j1N;{mG7lD#&C3g0wH9pny0C@^mLk%hgOiT-fjn5R6KCJ;>-G`>;p7|RsU~`x zu}M!dFqEfZyOL)McLU`UAsRRfNM#5OaqeGc1r zekgDAe6WE@#_vXRQhD>ZVUCgjd%?Dse;e%msyC<&@cDoh5}*$ShK7pfO|AnEvZ#oR zdBT&;7XUWUH|&wh!fsh)M6gM~$imEO-qOef2W&0nbPI@cymsC|bZB8~R^MP|i7)W* zxC!x;82XZAUvPg8tAV-yTUZ9f zZ>%%q`B!9)iM$&NfWyEo+dXccE`$$s9`$iX6A^)O6r0!)&G}aPqeZ%KE5U~u8|;I| z|Mm849f&^Vmy$vVAioJLlVf9na4@CDje0)5lH|MGbk9r;%7Cw~oTJ$wq8O3ck^5UI zGFp%@u?kWtvxCq#QFP>Ye>jV{bQ_7+OC_zHg}N5qi|Waj;Ohu({V_2m?;yZq!2$@1 z{>H#;wnAT`O1F~4X3mS^uFQuJhBbJ|A{BJGn5ETSc+ ze%DM7BgZD?lmOfK2V)DFh3n^n9`wa{6+*{qB;0>F8OTNV6c3foj3-b3ux?q5$l6(L zcw#U&>&h!CVgM_-5zs1AGcy&Q4^E{G1AN1?MwRE|62wdfedvH)^jZ-ht^*|(7hc|E zQ1|yJJ`w=XA)O2(x(@i;&K{*p!FJ7KZ;z&Ue01C%Qi){_ZeJ0}TPa`HJN!ub`P0_c zz7nFs0m4hKEf3gQZeXWTu9A|HZVP_CLIONIDN#|FwH9v;pfc*Zt`ybP)oD)_i#4*+ zfueTt;~OOJKq&|FCiXuH0H_D6ftT6)(O6OUEqws&(?FyAJCG}AnpYWf7|?NmbZ$45 zlS74Yzd8CQ_nj?-lh0F~Ml&^CGvGz<3=q73FI9<48uJQrc{S(KXo8I7zE?}|$2tN9 zLR-xT0XybGDnDNmP=D%Ho-XT}3tYGAA8x$)kR*L>>Ir;g4K;zI5VfJ$c{|8@94k>|?DgEl4AVuK(F9=JDlMdW} zP%mqLLwqpe^F^4`;iP%p?|V-R$u@oaEjikE#>=m((6*4EYoYufZv;?qTa)XhFAFCO z2F89pmyZZ=wQdoppovZfxF#?>IO}%>rgzeSbXIoOFPF|C_U?p#KsEgu;S-mN+Db=c z5Zx5rqVK|zKKFGI7$Fu-3)@PSQ?U!$N-?Pw<;r4`27LWnTdu(%M*KUYX}LEeC#Sj! z=9JvzzxJwFSGVyqksGNuG9zPuiN^L%{q~gpN8*2rHgD!T7qgAi%gBR#N=C&Q`R^&L z(bXT756b4{gb1QUmT@ScK9YBT(KI7o+@MM`s^y7^zU8E%5F|7zXY6nt(rxvw{a*v>9UkDvFJhMg4$kp+gZwaa&vSzqs%_zedYSSuOT?Jp15N9 zKF}E~T+h}Nc7WqJo*zPZY1~5E{(S2MP#-p&zgSJ96+R;aa_Z#%$aumwe_lGLdGhpp zLLV*rp;~)400{uR$X&15X8Xq;(ARmEq;B=C&AZ+7SxAet6R*+L&aHZZjcvVWcZMhj za*XqHl`pgwUm9mFH3)cYvjPJntS6sG_K70@hYKm_fGX2;R`1hE1(#>M4m#$>BtYU)0$`ch{nyZMkiWM7giT5bqyj3K6pacS&(SE!q7L^INby31`<@<eNg~$+vh(5JtbvDMVnjwF<4kwXZ=*^`TQ`WfC%-B5!X(D_?z zRikN&ty1^hz}Q$$@uyPa2QU5;=VYSY+{*pVQ%=_kZB>Nxlczae&*;6kCoPCu@{W0p zKjI7r?5f>GjD}J^$@CXM5Zy_R486(N+Y@S|BY}t$^HUP!4g{k41p%=Do#xC}$InOE zH2GkZc`SWhJ}CCS-9E8Df4lwjGA|4rqs)YX#NJwmR2cc&Z46qQ@%&GocqBG=5qfxp z^W*JboQW7k#L!AA+>hr(y!*tCe9E$F4@57}O`5$fvJJ3u?Z(*+nnco7p!n#?OE z>kLMQZHd(DIb3}}&{*chy!cE>Mb%ptxVy9SCTG1Fw66sDH8}itMZ-d6Q&ZN@lEqqc zBGC3_vhT85??!U(o*I8^|8Dg=PMeIKbC6V(DgKGP(>uKV_((t7A5qP(g9d>nQB<^m z1FoI|h|mCX1O|wwA1O=B;B0AT#*~y$!RxypLo%ZW#0Q6}r%!!@gV{j%&=@LtC3W>( z=VTyunVXy7#l^)G;&HnLyME=ohm}!f{Wwa7t{9~9%{D`Pt4Eb^6e=ejk!*>2^4u@U z^t6ai^oKnX=_g&m=pwko*2~bd!YTPNzfiG>9lr~f%(9SNdXWiTcm_?TL*k4Bn zhadmCIN+kutokjnnXvQ_6%#`SD9qq7e)ZmU8fKe~OiNqI`IR3;N{sk>&qQW?Jgv7= z?s~$kJ2-Cz1HymI2J7z6;sNmIa=HBw7#KLl`pgif2KIh5!6uhDxb32ShgWb(`%rRF zkZRQae$bDUsG9BMk3v;n3wAbf!UrfMi zg6`_-3W$vc3SRkAPuQLXo>teE;$OPUZq6)Pz7v)Q3(n5ewL18|6D}wzvAh_}>=FQ2 z|Er~oSq}z}HcS_>zE?q$Ow39FYO6fhcMAUM2SX>qmHtp0bj04fWts-*&irto=O`_& z$MY*;0d?Qc@}U$DO_!=+C?_Ywz{d1k+Q`@j;mvQqbD1*et;ZRm6ZQ6?`N=qIxi2Km zZzscv6q|XbzL%e^HA`7M6yls&owbs3KGyQ{5wQa*7Y*EMrP}i+gs;LI%a3=L1Z?~y zBqW>%Ef-tssk2#z@&3uR$r}^Q(U_WQ`^|SgFF_dU&qCF+di&#?PQ|goA6d$oqQZQ0 z*16f-g<^@qmRH|@2RjFh)Oi~1iUQpYn1q^^%dKC7YnpY&;YOH#Ad!wT?SxYC^Y_a) z+bmq5Eq1K#BG19}MbbB*#j*F>EerWD5P}$Z;1Fg6AOIP~#nbp(@CO3bSdX3*{Pi}z z>+dh`Ua?VIX;n$`-rsH(w!Zn4zDiD-B?lV+vnV&%>o1)i zcW{CkLnq#5u_K*)p^wF*M=VHO_9WstIF7|4TK|y?0%Y9cgM$&D@4-~8{k<3lAGo*@ zvq)dWy!-q6Zy5$v0ssp|r~L{q4ei^A^?Pl;Y@SFocaK_SmQqrPNu2p#eDlo~i|W$bGQ9Y9ozEp!ckMyn^O!xmd#lD7St51n4%Lfqu%%$@Lg8 zzv`725b3S^Z=OK6+S?d^JPGz|l>YJMyZ#}Uo!K(g@FU1PQ2^AU5UktT*{M;z^Ul`x z1Z^F}53vWOqM&>7Ttfh86&89>Q)Aj4%`wRn?sa4tLRevZWMIexc1is8wNwc~%6a>b zQj+H2@tIphl-w+eW&$&mc9*vV1ns{Bp6pHS7n`aKZYF|*7k1c9*@8VDN94y%l^^NZ z{a?2R`CRWgY6_7H2P6@ZGTqO;8VH>@`~!lE`fIsqYG$$xFNw{N^BS7^$Vf7K^2ITg z6g5R%2K9cc*#hB##tW3G03pHh^71sd0Kggts5*ZZk444AOy3f|v)ljLAC89j#?#DvcUPU^8R9IRUjf0mZ!)W-Pia)53-IAks*Ij|P4)%zKb z3mTXj%B?NOX(nyrdJld(;OB;ub)g3@8=VIRx~G;IELC59Bl>c0e4=^J2r(*f{io2? za-~Uw<9io8@EqzWYZbTjFO80kV7OA{uH5(}!U;3&cPA58`0UJRr}iD#ugfecfq;LN z^D>^E&GOKz=yYA3tIy53eaS#9PXHB%fPg^4%p47@JT*MOYXz$e@U4_zJ}D+-v-2co zz8R2DIinGLqOgDNMuOm-?J|`Fc5_mxFT_BsM`gBBC2jn-Z$)HfWh)nxhK)vV%x=1# zw*g(m7f4(vbRr@V7Z+qlM^#|ram2X}(8X5cy$-MY-oq#e(cUG_nV*khbaY+oTBEp- z;cqJ{09~yN`OiZ#1YR%B7xn?z|E z4!g{mJJo`;Vy6hn(;cN1?+z>-eSQ5m?dF2y`@2kQzlMh9He|tjO1@Lg_4DYoV8m%x zc-SY1e5OWs_hxg!wkI(S(-?zOi9t@PQr`o4;peBh3siR>iO_fJwddoS{7vT^+p7Txo~0Mez@yW!lY%mc>YD(+-n5(u7j zzyIeWE}1gDV9i6LNLP<|267p#?%jgY>9N{SdIi>*#bl!%?lgns%oJlNGsUbHpp2cb zbZwUZOfNcv?n=UJc{`Zu9Q@}Gq zqN)!{N73QiHDV!2o~za9XhAox_VEa0Y*D5g*p2$ZUH-7 z#V+SGH!t4{xLT=)z3&AQV7KM~KKQJTfQG|KtTgy!zUl13{PA>??ugGJMJk4h zgXWD{Z#t_hvpd@RT@bPLx?h4`wmaB@+gTb#(nG2j*wH}fFi%JhA8k#NWl|I*roL9T z!63)gYI*cf$jm5D&=(vPk(EV?ik-5i(2fus9DH^XHx?Y2pD%9Pm_F+RykT#KE5St1 z-Oa4anVURwpR9IAlci|W8-=SA%dgA%a(NrA$6>#-Osh0Gxwlv*0C#hGxpaSXC~xM5 z49dGz<6&?cMRYkp(eEMLcn0l$s5`Q;nx(Q0ph z$J-QMjlNBJzKC{{sgK25v_er49ofAup4Z7~TI=KbkWuJ{FKj#bK!cB#^k{EZ>V9t8 z=0*Vb{fhr@h+)PbGK9~O1OHrzf-nwzSkNY0+{aYnYH<-&=Y zUO5-v#zKZLTv}vf542>&ye#PuH}o*UNJ0*R4~x z5X+6mESJBNUH5+EYTItB@*lp@W&QQ|=#$h#>@vP4K1k&Dm4?N-ArUv-Q+jePI(!$X z)A`&J8r#7^>vbBB=&qGUQg2ylK2%0&&B&=;$$aafdzQX_lE?e!^Q~33w~@ELoX^(n z%U*g9?PUHHpjoiZa+TU~<*- zmOxpnoS8ItW5&37CU&kEm5W_BS(*zH&MN9!zu3j#PTzB<7lDp)@&SjgzAaW%mI@Y@^8^ z+Z#t9&;0e=P{jcyZ^*HVtj2ltTJ)eli{*|iga`N-6+)hVz?|&Pa6%<}apKyn+j?$sBIR8{ zcQ9@`=8wQhwI;pf8A-_^7;*~w;FxW;wBFx;7(bS%RZtlyw=?Ow2rWuKCg{3J!7&11 zRRDi$vfTlr>+l-|yI9GpjN&FtU`B}`;hBr8owhH2xm`w8ba{l?;kFDAjJ+-McwsH$ z1y_x7D+^ZuQF$&d(d@wQYh&V5+A=-!3|GIhey{y9SFRsmR37IEy1Y(!^-*2i-@Dmy zSWnZIif+huuEYyU3Q5RZTOyTs(gA!k?$q$uI%?#0ak-;WxVHRBQ+goi=!R?(s}$h> z2hylmXb>7Zf66(_HOU`ul!NXVoEomIxsztOi^9n}hcP zoR3$mf)YBaf*bC;XPsyQk&!7omD-1M_4V~>?^en{rsD{h(UV)O+ERk9N6!IuK#%6; z4zo{E(}UZp(J~5>c-hAB1|)n#!U#B=_5xOT;7*sIx-H)(utoonm|ZC{Lq+k^KkF8e zl)5Q#< z`DDxM83;akh7lupd0wnR3eR|O&FR-h1H&~cK>Wvpo7)S}bj`lhlV~B1whsYT02w-bWtI|6OSfQkY2eJ9vl*supC^g@DPS- zG;3CF0?W(8+X#P2jHna@nhzyF{OLNC4iIjw+EyBZ}{>3KaJYPOEo?F1|6Tu z^4)ly93JBX12~j~$%jcmNWZa{*liQ*cIGJ`A!O<(-^qjBA}x|893aWj!{pQ|L18bc5uih%trxE|Q-E~%-m3GhTX?SS9 zyYPWu0cMeGtvkYVuRM{rZ=QjIwb~N&@r2Z#Vngj1>ce;lUu16jWI8jk@)vU7I#Veg zhR&#{tN&|wO9aIPMb_V;X4x36uEOy-ZpHqnbaHa~#Lv$kkSXa!zv{GvYan@G6}ivf z)nb3>GT7riID42sv3rA+_Aokr>N@sF0Uc?w##JY|+SQA53B7T#+i*3rOjpwd@fJodnTm zlo1)+)1-4Q7W2A27vQW|)}h0e5k(08 zZ@k0@mX$(cbY@-8pLw;Z$;m4>$V(MhWxGvcG!tf|# z16bAIiGZJ@jh`@8l4|wx+<$RA%CaBBgYRQl%-~! z%q|(kGm7T$*S2@Zkvl#n*seKerjl4Gg^pCN?{7^g+|=~zjHc9+(Zp$1AZ*Pdjw*}R zu)O0QB@(11*E2mZ?RYLJC6VVPTW#7INfH%(T}i69RZK&Z(3;io@cbx&+diwIYMqny z+62^(a#W}~6wBBe<<`kW0R?;4$R!mz6Vm_5!s_|PJK_ERE6Y3jj$7wVL<*Z>fSYo# z{?*uLu?=1zG=4lJc<9_`#cnghbqr`^&QrH+E-Q#Qgs@U2pHovwOFj|ulwiy`u$x@$ zNw>W{nfaj#=Pg{8<(|tH^u(Ae#JFY$^55Cf)4Jun zTLLkx7BQzz+iYj}vQ`xf|5YBWKR!7-rve{i_ZUE_-Pka!(JHD#KH&cEn?@)MAcM+~ zKXB@5XoIKM_SEi|P|cm~aGL#Td>iuJ(&5$>MTVqImm296sB|CGvF#k6o<0zc#|YRl z%@;FP{#Jek@;DwXnbp-?z-R{mtkC70Q={0^zOT=fU%z`7HT+ZTPhZeeyr6N*b4@}Z zRTF!;R3KFs_JF{;bbR~RecAue6MXrQAayy{F=XenG~N4{e{Ut~S-bVOlyjS8JJX~W zE!xTaG0yKz-(Giwl(i1JVVpE{@OUab)_epX(R!b#`cln2wG$ldUTwR^_)ul)Fx+{G zV8E^YovHk<(8YB7*tGKNq*o++_ZQU4n+i+gzHPq=j6-A7(t3-Ft3@Bm(|8o*v-ndE zeW$w1hA&4hqIK7Z!o)?u7dYowa65K^y$=7J zI4EXucJ}h+Z$4hxM-*tq>Vt$4HGg-WYO*crp`66lTtWL}4!i zcjjjr&%e=QvW*IpeFi^2*)UwmaI&qul!% zQyd@EJRR4OfU#dtVhq;*5PV$p=6yCk4tsg2UPetT6cExPq4nOX7WS*G`u4+z=iI6_ znI``2Mn$K6GHR3ZnYxd-8AL4KIxL@g-nlU+s(Hg%f7;tSUM;H7+HN+-87}h;FDXl* zd^*Z;F)db}IsG+Bjl=CKn4I6uZ=vO9!`WxJy~U;^f63dCVzb%}ehp@|)<;7kl5LW^ zvsIBNQCrAj%l^27#t7+?oN3@wv2lq5`ReG|PSP)AFewd=j?lt6Ncj~zCzqNtr(csq zWlpw%LrHqva#Opqrqc;L>vnQqME~jIMA;=J>CPS6 zcAxTYk!s~2*r{tV%T2oKRd#eVR-q>qrf>Y_m(HW`+(MuY<_}A z@q40zuyS}9my%VjL5;>Xm~$SzPrV;j>Xqj%eX)K#+`%R@^u{fT*6Te++HWtww0`^g zwbar2g&jyjLoyhVB66Isc32TDZ_fX{E9$Z`4sURljN?^pC$XC7?J7ZK$(-ihtYwM4!a8q+2S<%`+j^a@+MXIzt5j%`pUONhWp;8pZtjG z>hAiWr>dYMPj2<-LGpOHQ&>8!Tl`^#>O~Pl@dn=*Ir7r`H{6fOKfJx9{DiusINhd< z!KuZqqRG(q(Dps}$r`@@z?4ilBJN%H8iSYB< zywl|`r_%KKKIOZWP_oYHhu;cijXsEY(!(&zz_qSy`G;YQva)h#8kzoD=c5gsP_rrp zRBAf0XJI|PV!QdO?Lw(TqI0Ujm`Kvc6=zoTF1597JAc}0^v@MIJwDVPWDOGoW z@JJPpX?{?lrsjY*42?zlb9zh15Wwf>h`e)o?{OS37wnZa_slg5EdI|hT7C4)H%1W| zFEhpGO6ld3xkyE&9+XOZOB|umL$6D{Sn8u11^Z8*#G4ZL?bkO5Wb;#|JjIRbsfYyI zPtIq#U0;9BTj|N%z44I9dETm1Ninfefa1ByJ;iN_sGmg`vR-MjFTrEmBcZTkr`eRu zl2JESF@T3_hX5()DN2qaJq?mje)WeGWcR`M^z`tt?4VvL72$T?JW+SEY2xO_;&L#SX)^gKQXQFxf-4DyU&;zGb?k4MEsWi(NQfJdcL_7-zE;lWR#zq z+VE)|w}^aAYgF7B*Wlz2(;aIx+ItLH&T1=fu7LY^RMA>*|AH{h#ip!+{D}(|`<*bb z3wYc#%oKKt$6ieFX)aHVwmBR24wG0s-@ZB>6RoJmUzvzPLP=#L-OY=HT8YxTfB@9~ zK&$m6cOP+oLyrQTrwMZXn)6^{{1yM~?RyQ4uqCp(k-b&-5pyo{+9M~#Ler(uDvo;U zFTb-@UeF}<$0a5{DN^|i_-=jcj>KeS#=qmAE&aSS-k+%n>2+~(k_6BHaYGcv4HaJ` z2uc3x>3ISQJg!)y_WKMt_uw-f3TF+uW)h*{uhv+1!ujC~ND8I+1~@f*WhszST?048zP_`%{RLS19K2 zcV{2oXJFjjZRb)Gjv#KCzmOWcp{S=wgWOGNM6`~!(RhhJo!;z+U{Nd5CiPdk-@7R6 z9A2AbiRG*1sK0lOOeK$uykfqpyXe-o`y_d{{*h~hR6JkJKcbVhQ~$9V9ctCP5k8<_ z==P^TMk-b-#bws6Eg70T1yX-XaP+g2hiHBY9N`eotLe%dVWIS9b>-X-%!@{sNw6r>aLWN!HH3QH* z3Ta4wz=F;Gv^!Dnyp8)xzZE@7IKJDI7bhZz2awYk$R)|3HmtEXuxffDt%dI1|>>l zSF7~hM#KIx2e+T2FMXRJxN)HntW`f6kI!eFBaZ#o`-ras9NX5o&Fxf*E{r0=q8YL>T9EbC~Gp)5YRyBnfB8V3z3ONanDp z-g7?i4Avxy*OVb}Jomz_3Wa7((Mz~coY!XV`;a6*BD!v_Onw3#5r#YxB?ISd)*0l@ zM-0U}?!b#IkPc3N;y){V@Mu0Ig><2t)l^&Rj~=xLY>1PA_Hfkn^g&O9C4dM+j>BpX z5XI`n9Y&2ppD{^FTAJSaOEra0WG|Ge>6w$9<5e<)mb zLTGW0kIrX&NK|l9W)@BeoetvL4|a3LE)j8t?nGQ681jmSj{aI+9vzdM@2JD>Dl>Ta zW$whds>ZG)1m{eX=fJ7GmQN`0m{xvt{C%1(Ao&aTNC|uF&CpQKAbvxyN z=4ptN3T*r2-8x*L{-Lzlwr{(2%etP-qlYlgqJ)+_5^IWUGk? ztr^)G>e0kvD-m#^Bw$PQDHkPJPEGNXb;x|$#5>``|L=U`5BF_P59C%T1&8N4$TtW# z>R*O;KHT5wXN3s0G5LYBx)$)W#gp z0U<}DrDl(fwuJ5qA0W^yC6h%NFV@&iGZI@FDpA=`J=v&{Pq2TB-66OG2VNvl4*xp~ zO_1w_m?)b&0h~3GW%y(8bi$)TS=DeRn|@J``K}5)Fjm z&?QGiphdH~NUzrF_1*G56(%yJ;pF_1M6m=r1{Sg)i5$aJx%>c~SDU4+5fKr~wV=i^ zWH9SY$7Q=4+(sYBXVaOsaI3M<_J;U+UlK64S(k^o%;)X1Dv`~ zlP)D8fgn%mIU%cFI@sNn2no<$| z!otFcM1MbzYL>%!4SQp;2dlueAepK)dni-c+d@WlY~p8msS9&TRY{MHMunwF zF;;*2gsAHe0k`Dmm()?rj?kC2&}S(zLe zpMU`D${=+A&6_j1|Q5{i^3?Kn-? zus^kgf8-I74f{e(_XhQMjo?)6wz`6zXN*F3X@q(ZrIa%eAL{%Bc+C)Z0y$p{1 z`&VhmO7z7{2mE5vSA&c=oTF3W=4&}D^bt+k*8e9LfJY?KK6(d(lcz^d6>IMH8c~as z#4x$C(l#Y2!9nFX2e7bQF7`C9uCERAKR!EHY{LT19zGFKZb=C`5)x9q@1sbe&C&UJ z_oDBk&6fAinwswG)6KY)lyFeznp#AJ5@1(`I5=~`*(+T}>4L79qTc6tA~#!fe0+S= zjEu;bn3(Tn>*uc#{3LSPJD#Iqa8un!k=yRRRW=F3(T9=q|NQwA8y_2hHkw5JWd{?< zu?9|u!z{&MtB*!L|2-YQ8qpmoir?AC=kdnM@0rydKU{?G*JFD>9V#1Q*RWLmV!D3V&>Vf9$hCj_Rl{9qVJ=Hx`f4GcBxrQj9lgwKG21k&u*ebeQk%U%d7Dz zV-T@~OVuL0^Yhd9@2D7COV9=7-j4qLCCg@{IY5s{+@YaIGh(I+dm9k=Z?L!Q)Up=oNqwWJdh6BX6fL2AWP zdU}~T-a3wsjsdS}{ekc2akd55pc7r6O(|BKXn$+%5Zp zJ(%NdZEZtp9V}KS36O7}AlAyXwf_p4m6X9W)N#IdJg={riT3ofp+g?BMCP(&Wg9a` zY^M-2AedEqYkvRlrhKHpan~30Ii4`yCW%m-pIKX5qvv!1m#en6Hhluw&*%Pz-5bRmSfm2ZTYjK! zm0?dLiAIwP3qC5+M2TkS8#2?u)b0{6qHE4-R##Tg;nwOFuLQ|Lu_gW#+oJrK=-qUU zjAR?>LM)|p`jcz-_>iujW{_OT9u1nUn~w`FieTg3(9qw|#3cQ~Z-AAl{U@^TuB#Wq zJNc0vLEV)IG*qKPz7i}5&u%`zCp`+B!FoRM2(F!tC-^1Ekqf|~lV$^!a&l^F$NW46 zKzCtJl<4DK=k<^%Ev>`|P*IvF*B6z|S3*QYggsSY>A2djTRZ~htyAmi_~Ftm5LSlS z+mQKuBX@y(3cT3l+m2`d1yjediAnMgu<(h#V)`yI@?vqf^PGB0#%jwm@6W0u zc7-0$0LMcO1{j6pYERS$6_p^6Y1jHyupRVyC6J6>1@ft&E$bzhl6Ii0nQ3U?Zc@iq z#Zlb#R0aKlLPI&Bu&5|*c~79N2>G2VwtE0%?c+LfPHJlE%GL2|vt1Zf3$=!>Zdl}S zM8!4+F`FOKlP9zc3{Q|T$=$YH1MY9mjlF{5M67TmP}F}=h@G8@BQCMJ!R)TJ?)R(z zV|ghlpP4xSUo_ERXZXKi;r*Zbx|zx(2F!Gn9S3Y(_MG=9z?wJbBK@xN0+eG{YgfO= zV^m-R)=8%gSOh7BJ;uI^{AXgW@!M~W(C|2I$OGs^LqkKXNJS!F$?$YzaIfWZVO1z7 zo!=?sd~X`>)vH$_7QliGi;gx0fPblrw*aCfXxEq%@ZOC;>U~9RZAe^P*1h~*0rV+=VgVV@Y51X=1rM`nm4-jb$w@R( z2#%bk*^Mj>kbnn&uE`ZkN=gbC4}QQXtZtRa@dNguT5+&+uD?=I5cmt;gFTxKPUAiU zFQ@`E2`hsvxV7jP;@kgM3+hml-`W1w$iAvMcm9!QH&I#Hs|t&c7=k&%C#nr>L)B|} z6#1{Z<@F`?-Xj)q;T=~#1(SbI{#G$~>ApKcN`Dm?Y_(Z6xwwboYUg@Yd-SWc-Yt)Q z?pN^ETXVmV^cw#O-+TSX<4Jm8KE*&#NHlrJneQXfI+Yoi@&@|y3^Pg|WoFquZYn%# z9(=D|WJ+0Ydvneo9m^g$58H-GQ&Pmqsj!rdjgz@-P?NsVGU202V#A(dkiswx@Da=V zYZ)o2%2w}N2`2n+0PO8(j*rI$x3AjjFCwqVm0!)nM%s%>UsGt*?kH(MlYv;k5#{A* zA~pX7CY0?D$tot&^79~dJDPmTQmzr2iRPFKtt#e}AC%8lVKTI^@h`x%%v;Z+&Hmu2 zFk}C}U*ejtiAqw3>*sLZ{C{0oH@>kIR!q!_?LOw*v_8NY{Q7adH&Nr(*<%mhS^rMo zv5P%>tn-|u{529Mne0m@3i-+9Y<#*GEutX$#yVbnUT$Y)!+cx#KRsf6agi+O`bw+T z`Y9eBUUEvxuRniK0aQX7)q{bm?)s5G&D6;lhw7fP$8xf^B?E+ z@Rb^OQzYxWR}i*{?~8uQJ#&P^I7lU#(} zdTTyH*^9CW?Y`5{D-G^Nd-+Sy0_gjfbv^x=W3HN(yB*q$p4ge^=9L4S46%{s_nwzK=f6J7Z4?2?;~oJ+rzUuaLw%yf*6;WIEWfUppF@}vw6X@KCZ-u{vDI^}<})L7KKe%RDVOcps?CU+YT zxXz!z@lxG^1IduCmSd+9M6`5ZlG%03#SXVy)1Ryj<^dXsmkdT&}n?NRp(mSWt zi5rzVCnv`mki3pAFOeZImO<7yTG;2$MmnLfApSj3W2FvbB)o@>ccAM-!^QRW7)RnY zEzWF(Ap!s;g8)+<1b(Om1W0M)!j3EP@WWs4fmDAnVAjAvi(aP~prVg^ak*V5@Q>rZ zehspnZzO?dqO!pTpZlUH!af!m9UYRCL{vVUg)MP)(oLj~0_kGI`C0rcU##u}IY&lmkO9UJUE-YjO zR?*VoVGLlZ!7jXNroEHG4ipU6(bZi(IEV&$=CmNK9u#r+*<(DNDO+rCGSg{x!x0e? zG5=S90i=A86%`d>dUNTMtcxKaFW6wN-T?&@v!^Q@FAk_E_4Uar%z_kh4G;t6;NW0$ zSb2?zjBE@(Wd1krsetRjK>sOYP;8_9_71mv8c)>I)Ksx`FRF`-v;b~i|L{Vjj*gDZ zejEK7PqC8H(q+#B@;hJ*e&`H=APh+6?OXKN{0+qqDQuu!esBK!;C2kORPB zdwY8by1KpXoSaOmn(<&%%zWMEbI)engARIvhLsg7f{;Z5v~{xvE*q4l0@BYIO3KQ| zAZ)i%TDK4YdYm5jDeE~LvB!UQC0Jj7&CQW(*IJ8Dmg(}Bx0v)3f_3-_u;!*}tcU^v z12ImAG6Z|wy(LhJ(4uTgb5vd|8~j6AVDU2i*Y^ax&@^QDc_pADAY*<6_>FIwhXioU zVRO+pKPYc)eK}KF*)UV7IJmYNfAI7Ko0LFxH&hZ7bMJ-$C;=<9@s;YgVz9Hb_x1I)0~W_fsWvaHXXxk~K+qkV z{cWvRysx{o(%_@l7aFE7{m8Vk_Z1GZE?0NT`;oO$Pn3OcAsj0U)Uk06x0#c+A|z>Y zHwS&sJliN%W`A`_8RvQ{%-K63l#=zn!LM{Q%E51c;xhHi?KFmutL;<9#$PT3wzY|- z^4Ng#oP_stSO)sjWL1pu`On}8q~h=U_6*^&SWIj^hbP@oU@3lNkI zZEP^0kXn1qCXwH*g||gm=iM*F=n;P&I_bOK`h|v0?KqMMm0n!H(e{|2@YkE5?TXs! zf-L}q6v6}UkNrZ(D>?R$94Q7M|2y{gNAL^zt@kJG zZgR4Rp3~9Mv0MD52O_wnfDbLMqVm-cdjs$f&`%riK~rJfv?z*=C$wh%)A3oCQDwGz zxgO*v6+!5rROeMLU9Q&xLSkTo7-n#Tbk)mxOSRc=ZXJ}`THXFKdQA%aU?t^=G+7*8 z$-hK!^H4;i>R+;`nf+!Y`@_bvCe>tPO~^&hQ~`6$lADv4w-EazKtNR~$bn>N>vpG@ zt)}wza3uO(O@;W+2+?SUh4w`g%gB;lX*J~pWF#G!Y0!{>JM`$75$UhliH85jG zbi>=(*;QLjVuDCq@p;G&)#U8#?ECVH`no&=naBSD1-PP2jlR$IGX%e>j#}s;_zMe&S@v1m*dXa-K4}6ZXVe&7up_8I z?5F%coihxgAl1rDe47la<%`xH`;n?1`p`0A8Du zCSjG?FyTO^@GKkQY9T%u7gW2e!Qx=x61ucXdeXQAx2$A>UWa_^we5K7BPWKwove{6?(Jrmeh zU9(;-LiEF%^Z*cRkiZ=PQkl}$hT8RQO_;uRBnHX8YgPx1)cv9ti`q}x@8>^-u~RuV-N{<&~36u%Cpl}?{7rX9z;B0$}X9x*l3)zx03};3yIjkO^VKA2zNr2v$1>9SGdS4&%*hE~?zB>rhwxc9 zD*2Z=u^cX{%8iZpMJnkNn*mF03=`Z{uLp*3?SCSD3~sc*BXl^GxU-0}Mb0Zv&_^H8 z>ReRVjG3mrIM`vF^qjbxp~VfK0vwY{P$6c^cXE8_QaLW{+5>v7w2e@TO+af2I#DZE`_IMCgP5>TqGpSpR+bk6}D{e6WDpnxZsJz-%q?7P-yT)P-s3`{7x#?aEOCvH+%3;Y2Y6S+Nh|k^=p>Z z%5> z&!F~+nJ3VD4f@{lHrwJ8V-O0;LnY;{m3ets+xOe|E`jNse2;vjzEb$}&xRHze43!6 z(v&ZFYf2=Ib)HQf%S#+4&!P6l9PGmw)Z&v>@bxtk#}g-mjHHN-hw^Xk1P573Nw)*p z0JIoRV{Nv3lBEI!iYM@xE$?U>fLy$-6@BT~s3MVlIA51f|E?6sJu_{%S zasT`qcDgrp<CL zZ6T_jXD)I^{96>77;(6uSgncr%9iEB=H@v8YY>eb(+BafA`^T80L4s$kXc6@0Ztox zBPDPWgebwywjBK&wx|KF2zIx{Ke&))d%%(eEFJ?!|3Kog;E&OWpc*EBOy6DR@~|Ej*{KcX6jYL6KyAsckEf zYgQ>++&KuCk4IPnEt@g14hYjjEVuesm)Yi5_7hE;Y39qDR>>}cB5>c9J4y6uJ}xsZ z50r*;Hac5JRT0@y3)7)Rs7oIyY15+`?R&U*?>U!A_Ep4&{u=J+_`{}Kq(c0#PJvpj5-379$>b}L}j|xAjoQH5bsV`F$$DxBi~wJ`Gy7uSHk*)zLdgWm)k;a zd=L;Cxou{~>;+j^FaVgeV$!WIP?N$hFqM zRY^yY=73;Mhy{=uG6Ug*X2due$q+W6ZcZ-ZMGOS!`Mj>!fN#MLy0b?HMU%}8b(eT4 zI2=zpJ4GKkuSdTlM%1P^fM1!I3N$!0hq)pjxzX8UkZphO8cpNMkZDyQh&hWtj(>K# zeYle#I;v!8=Ky0{_vueG{4m8hqw9h2$bM{G4qIxgmnU7pKU8gF_>T0#m&0xX}vDjbjdBgUCklop`WGr1VSGn$RS#uCJBcmA~|Lm{%7Lrt+ zPk<*aaIo+$nE53YhbCcC{w_xGll-l*KNQNyF5RxT!%JRs^Q59`HSn-Ifrf(Or}9Dy z^Zl}`m>2|H9=^wkVPLaX{Lc7lzMWu}?85mb9Bi|JTfCX2U}l(m`>UZShQ{k-{? zZKtrevYS7hkznCe5IKXne1I|x!0*=E13^8W02r({R)m+Hk%95==g*(^4|nb&e>%s< z2>^aBD=P~@^z`)Y6BCI^Gf?)#SK60~n88A1T2ZK|?mS>jzqgXhx*x8|&Xx^t`su~h zmi95(MLjVlfc6>ddDY1}lahr23l~CJ4+8XAh4ed@){vE})igPVBhuC)H`EhO>I~9y zS4`i%_fQVbR$%#{rq<(5R%;t$B$0z%_NwgY^fWNA1>u5XYEb0`fpipc|Fq|OdfXzt z-La>_fdOphM`A&~Y!ru>=mAM>R0r&Ej$@axpRQl1ufLT2La=f)%?CMz%pv0c>O-_&3KZ_dEQ!&~0k`k2h{#YFvTFm!=3#e91m zslRUW{{ecjuw%4ve#rz~L@lgK#P#zpE?hgdNb8j)9V=^VYz|F{*?UERxpaX329e)1 z9vg|i5$sy0O9h2lHqQ&|jpb#302`<#m$dlrjSSiVm4{)FdqC8E2Y<6XaG;s??xxqItY3xWu%8O4 zKOi8vuOC?$A4}9Kor$v}E>AGo_iK}4RxTr!3BQFSA6JdPkW4tk!UbC$N3d2-u$nGv zmP^@{)g=afLQrK*mgA)!K5B49l@+=SqfA$CZ|CT598#9cWi$-ZB{f$(@CkrKBLCF_ z-XHXRY&9oq=o#=sBFT6$%gV|^W^az@669dnH1-QmWIV~Hw9p*RwVDmJl+``)35)p3 zDMSqUtfuFX4isF>4`ztp&9%fj@IH0TbFY8dFLM>N%)G*QAQBv`NIbM;6oGYU3P)J$ zSNZh47CaN$@#hGZ!t)46)sUm*drLgoGE-`EBN_7hW7=kYn}E|$+g~|F81WAYjvpxf z$}T$rcO*DCn2DMBwe{YoP9cEeThCK=gCM(wfl+{~=NWK8k$a-j{HCi+C5n`m#>>jZ z6TcwmOGI6LMSmqnR(;}#D0eb4_M6bVsXCychHgx1n$L>|)8eN@eF~Sf4z4SeG~>`c zN(6Eg0wk+!C+hO>i^|1G-Pee?$%zr;xn`ryK}_2-q2w=qd*mbx3h2h74}HU}eu`kd zdFlGGlell(X7@|}bx6@?j#bpl;+^DJOXOHTKWJ{giAeNo+Jy*o`71CkIay;qw3yJ9 zkrDq#HD6nfC@3ld2bg#uy1aB3^1!4r9|%yY!t=H(%iN{S^9Yh`G|DWN`@~72G!5pE z@^V%}otDpaO)kOzM2ToTTj&(B_yZ~C8-XK~3!bX<@!>)5lgR-he0-r#J~kCUe|7+% zBev?2S_>_*LQOY}O0e0VY>$#W@v;{H!hFT|+vyhQ5PtUy=7*2usdamw0cx_+&)U|N zk!HrW`tK0qQoGTTg0~zE4{z?bD)pW(jr}EB*WGoN(e%&!dNQg&_bfYjd3nC)+O0mG zKwY!O(lq}@d(u0wU$ZAYfiSrGS617c*oQb&^`5!kUBm{P$!$6nBq{2#D0gr~UrCos zM{W455TInO#`Zr$_zVRFAr{ZHSmflYArAgx?Sj#zi&DNwN={6dS|0Ox7HrMwMqpvcKIvh)Ca)!0k|ojxzUq5C!Ek|@&M(mO9+p%Ubi(8 zz&r{FeH(*mNDv#)gD?ede{yD8npJY|GZ`5fK$1fMxiG-8Y%z-o;}1MeOhR&u zkb~@r#4v5b#Ha5=jfLhm_?xP?|2>%$Y1)W?aQ9$<01UZ25<=|7^)-#B4~?L2C@i$t z6Cw`GLH=11Nh3%{c_PtWMU@u>Ffx{nBopdP!|z2==}!CKRWV z=JUUE>`EFrdvz0k(Jx=!`upLbqr{|x3*7{y!gIwe0UI~#T?>gM5QQP9#7+=q6sloJT* zYF!7NAIy_I-Yz~?_}qKI$a8#dThxcboZx{VjHD9HJmt)yBp@Mq4hnbTrU5_`PzWLc zCO?#Qn||GosI~5_=5Z(z{aQaHu<}Xx8(cnOD|`AIj)B3*(f#wpWKLg_LK}8oZgB-4 zoNvaqGz#&-&2#W;Yec{1zOHt%uJ2?i*!pd}(zCZIA3pCU8)pVisZZ{l%K}s%Np)l1t@K<1vBcKDe4-H|0ge(9K!^nO0MNCai zQKO_I;O?Is-#qM2bEbbnw+xApQOIReY?z%ze5rnh+Y@cmCZa6I?G-50Hv|Bhj zp1dUxk)21)VoT@en_XQ!GQ6TSk_mP{Y@WtERU=>G^0U5jhM#q~SpH-m^2s9d_gmkU z{c}5-gI@x#IC$q;>t!+Ww_ay7Kb{!|4Ihci>TWOkqMx4p3t5DR{HcUieV-mfHO zqYzMNSeu47-9u#ljQ`*@sk5G&0xw zYaJWkty%l0*H}#U0Gh(B;X$9hlo55g31jEn$(DM=_>X3hM~Q~!6X9KRgJ-=+6;&K_ ze^O`e1-62a+PX6f^{|_wjY148}H#wEJ?CkXFz0%|V(0q3qxXEIS)ie~%$K44E ztj67w2`2EYcqq$r6UWK_BT!51R7N#D;KR@zREg6Qf{NLid$YP+QkqkZbdr9cI{C|+6Gd}3@0vPaz(bh-~Iy5jaU|?&D z`4$Zg601~tTBC&#C5-@0wRqO~?bgbtvxV9kJ# z5BK_fF556?V7!!MkJc9r(=P>uMvKw!hE=h1VC_;>@iEx`@+3uR7`e!1y)#t( zZPp*x`V^FU?oRN{J$FWlBJ0zOtr4 zlONhBp#W07*4>{82nq%>1c`v!)OaDL% z0$4Jwy(*26L^1`5^vm?3V7r-uju=0VRsXRIDBZnsN0>0QX_*duqH5W><9+L9A*nkt zLB{Q>8_Z*_Dm8UKD5N*Tb{4okpkl6TI5R=;PjBneN42vTzuWunc#XL`1N?mzfU=3K4)!J~y&o z^D5+8=LswW+0@Jqi4#q*lPijY3KZvzEXD?)b8<$NYw$u0A7pmK0{nUACQuk z-Z0+ewO9!NCg^K{AbD#@-plTF@Z54C~pooO}M``ilL)n(s~Ju^m_EMw>QV7^l3V zoTW)}+w%G150yG;xV5D3Ona9q;>s$1^Mii=A3kuq6DuLy9K~g21l{e?Lw>LS?vXsI zHi1|+wA7P;7h*x_qwDsR27IFAJ+)>I1T|l03ww=LhsPpX_}(<87p-uzR>xcrBVW#RE-+2`i5)CM*tR~OAgwn|j) zPF(0c5YIUV1Rc(Z3Fk9{#ujb-CW|lJz=RQ3yS?S9b-bj8!&6t&ag{3c9^;&hEj9&> z<%PU*@z<;U_6H)DRdqeNJ56)$;E>rv#SDw9+w3d-Cu0vZIQND`r3Khc(cv!#Szox_ z6-vHJf5jx`_~v)#>=#C|ht`|hL-gh| z+Yj17%QlA_-`ejSCc-Us1NH-P;!XSTlmrr&d>=GFAN+1obF-1BYWqR~>0PC%ntcVH zQ%nh&OG=#LvCy&$Qj>Nu#fepQ=KE_}#j7Vs?q-xz!S)Pwzpb}UwkbIdt^I}y6s?l) zDV8+A!pt^qOf3<{uaT)$rwNn4P`08sY}mra{tkQdG=ZR6s%-CIgF&%#UV`g(7xlgV z=yKDO%aK+%x^8nOrmBBD$~trTxgfN&PC-hga0l?iWm9FwfcIpwPn9%Z4v9qK4{Z zEX33}f&XgP)!6R2`dwyR)P#vW=acQ|AFI;634l`A4yFZDFho?2P8~?mzQNn&`lypuQ8$v7T9J|yrgGcyT95Hld5@1wzifnQ%S5;l8?y}i8^^j%Q7Nx#Hs~MrGcurz%Kx-9T z7Zp@S8lH}lU;DiDer*LDG!fubV*7D-KeQY`k~ zs!^2Tnb}|Akgh+{atpl6`@zSzvh-(p^l zQj`&{4&AuwNy%oL2!7vMc@99q!P)1n5BgNprs^44*>)Tb2URZhcT}W+77(#s6kDLv zT>k{to;YB!W8_FI>lbWz=5)WD$}t)bVeU(xJlSzDBoxW$e)BEId_fz$`gvCLesdH@))H~%0Qj+(AM9q%r2?W~r)+6FLw5gK_-^C1)V z!Hp3N`QS#|i8k;smrJVn6*hDshswk=3ma!;wvSsi^!17FM29Tk^52d8fdb>7CV#%v zSGL#~oC>=O(SDz1ebSNLOl`R`JAN$d_~Y)xHrDkc-?KU9Si!O{jXNz_`P&?z=-ZFGeG2xqajr+-y$&A$7Z|ESJPB5*#?!|`pUaG6AoFSq~lv3&wJS2`8Xkw*+ zftlcvBoGs9*Yo?y?YNjS8U@YX0NaFXw5WpO2@ypN7lh)Y!0-U+FSffg!w5SPWmuhX zn;^Yg$&A}$Yt8cFI?r$XLBO>c{Q@_-a)St;EmS+!Hsg|J_jEfxIh$d8RBH9>FeN|VmdxQbYQT9tK zbr(?$GXP+yIl@f{@9{+|cA>6~=i_-+t?MEsfFl-5;#)M`J+gjn;;`jDdyydb($b${ioNWuA_uhRaLQJ<{vlcEeGN@dt-CdK8E;P|Igdh#7^h7 z(Vy@*>xi3}BZr)--r`FxG=mZyzZx?kBJ$1*{%T~0>Nd2~`0S87HkU5~Oa{j`zX%yGBuEK}-$9Ak`}!(Z zS5-yj=Obg6#>U1#WPYf*d#~9I3VMX9rNw?qiNuF3szU3&J|El#)jiG-&OEr$_W?iT z$#r_Ba)dlOs3fym&32DNSg?(})KajbzyGj9#~PD;OpgTv{hiMi+d)N~FaSEaPJy(` z%1Xl~+v;>v;@h{v9b-^1d4J(v$6kR?3kQSAc_)(lTuRECc{A!qbi!ylNh5-+wUkKS zawu3c&tmP}-HI{q$qp-9rQscU=%L(_VTVwOp4PmW-%v;9DN)*r*V|(7O3@49p%={# zJ*l8)RCMSe2#-P6?Z&_G=6{gc+9zZVoqKL*HF^_7kQQ9-$8|Ub1n*Bf1j!?H*x96w zzT=vk(nA`d0>kKf>M@Y>XIbw-e_*1Hy^D{(pb=(s*PUTUCOfe~Aa?x1>Q(v(Sos5H zYfz;#?Gp#L=Z<^k5M<4_y?|{BIzzIOqpzxb>coG%JLz%HPL4j6-jsmnsh*jBO8jN| zuM^_~EH_y~^R)nF{D@b0ZOk!+nSEo}z0R(`IM1?}Oy2Fx`a^wUFPtX@97TsvVr62c z*@2K+Po8f-(*cauo*-$aADJxO2xZ*~Df}-r}F>wNZVAoTN&Na{L9sjcX zgg%2lBfC5nT-?5OIKR=D^pKK+iFZVBHVodugLAh0l6Gn{3eY7*`vvF7J=V2ON+V;4k9t5lRgH-z?R~PT7!qQTZq38>S=rP zff`%Z$i^yG?rf&0sDQlkuf!!+&#@9ugScxFa3u4`)a_3`H?4O%E0Me5CezQ*vlXZ> z8ZPAr6d0F^7PH!$-_hLJIWP5vni~pU;H$1MTA?*wv-ALaN4>TbzKQ`_$7^Qal>f8m zqEaJ3@qKO*K7Fg-X@3NSsRwSyO{}0v)#x~SUT*@LPnG5mH~GLhHBu<;;?>{d$LKJQ$PyZ zJlC!{UCSN5XkH`x+0lx83sH+RlmeiRx31~v1{j46ygKD*V&*8WT~T2|^zirBeel2z zTe-#&xwd{(LL(#ZncBDRsJI2z7keUO)nuD*R)TG<5N=LuArHId@GxadrcmU z_rL2kOY{X1;V)rn0BH5+hXTOetDM{b@KK!o4*;-9W;+4^3OIlb0A3?8008t{)B*ml c;q}^p-$E(2@O9%S@NKlotkiEMJZGy0wfR!geoH~p$Y;){{;R55Z(bj;&Fd2K_GZSFZC}j5@yaO zPL>WXmiBfakVjT_MvoIYH(Kb#jaq5K(Kl<`2}l?PyG*eaby>z(b_i9T-4}`}PoqV8xt=2JEk# zTtm92(OqBE=rr_Ks{QUZ9_W4~L!J+JAFNE0JYIaExr~>C`4sf9Kgn6)Ys_=^bSL{J z6IZhiuDmCon^NbNn~xD&BMJC!>HbaCObO?Xsa*ViO(O5ao?`7(hj;s94qdgk$++CT z>&GP~7S#fjsQE}yyb?2>d&=j7PxmLAO1YJtCDuoM-J>19?qfvByY!aaIr>{t-Q=jA zwM~{D6^l?^^Q-noB{7ZTF^?ry6y*zUPP&gI^o)el)iG{*TVyT6tV_!16W4z(p{xE% z(xxi&hfXvUsbWDwOP^HJwoQoVs}>RCcTyar#GKdnL>WbkEN!ca=SF1em2flZSf#I)ID;<`J+FuwgpOUy9cw(~ML>Ry z4S$XE?cP)2u~5N{S;^F>BhR)Cn|%q*9PQ)Rzh5t4L|dMQ@`*4;r7#ex(qV6|$>-g8 zF*roncYkKT43Y3iu59ICc3_pkQ2sIP@GvD8wEGw$$aWttFYA3O814FJI%UsO?1Cve zo}x{Z6O=D8Jw&DEB*R{#PF3bC*=K%>8hfH;5e{PCPqT>wAq0@`vn1Q+-)Sy0-__<^ z*5=J4<_NnRBM*A6-6N6j`j(>LgsakS_#fLoSSo@0+mj`b=&Y1Y2DPv=+$Ty9p@(JazSnv*AtqfYi zC*P0mhmicN5}fS!90nIFUw&*grXYNW!*FaZD}D|%gn<@ja!{==aJXcb>s>i0`( zjeAw%lCG1}{oy@ZQ$Hz97l|F(Ro@w{*!0yg?vG6w%f!Y|c~sw+e!mP<9D67Cz@f9Q z2Y_|l1N*xwaAHNGk6)jLzAp6`PFI&v1uU03GHoJLu^Bi}IB~fN%$Q7nujH$yRY6-u z<7|w;>z^+d4@;|T-Fy0B&K5P}2a3U=diMIG4*&J>dl@4t)(*k_w;8u;;!&i$&*|8R z$>kjKhHO zf^C*f6w0H2w28tfx19rawPQv2{bX$8zle9%GLF4n>qMbDeGI>StmKlhqjXoZ4d2Z^ zB1)#1*^he89*4Q*_3#9kmXyJ;?M1b?U7b>fji)u*RI#r#?QLdn!%8>RN54wi z4@_xp>qH_tsA)A=@oBzySmn>_;^sBjWv(`%$;P{4`X|cS!p%Pk$Kegbsk|A`LNu@B z{F1h~AZ{zi&vc#Dq5g>NTP57M@%=_es3r)Nu7p+f@hC#l6q@|f|1-b${GMiG zq*(pWcZLAHbfv4~)&9Yv&v~>mWZw1;M!m0c3v;wBYw2!ba8FujY?R&Wsnx;-dq44J zDQnq4$x-(H`Qv+qN3toHyvAlLsWRn}VyXdnbQA9s{*?^Hz8c9Hql{W?XDbuatSv)b z8La)y7Hx!qwlI z%HS|(2{L#B ztL!M28V#m^>G`qxQjHve6YYx>H6gk9H&R*zva=12ckmq|v|+mN+#2Dk=wA|!wzDxh zL^KmsX@guAWXEkj>ZWg%CajgU%e}Mv6>eaMm69o6GaL(^@b}U7eR$Y;cvW7+p28%I zEC+!;f@CB_)jhI~vps#V&0YrAEHfJ|Ga9ctGog1%5t7C2Bw%s;kv2aue3TN!!@zNb z)6;}Y))QUPz?chk`ho+i0;{JkqWFs@aHmEY>8kUr-g4U6&tKjmqaMzy(Brt>pxTpi zf_-9}on6LU=+c)7k|!Rf{C}-kg{R*2_Yzms`@-9>JtEZwbNBcEYcKnyRk%>eD7)9A zI}LwmsWe3Y+wxf5#>})cWaY3Ih!TF;R4s4thN;hKSO5HP``0B^r}2+5TC;Ihy|HhI zj^@AZ$=+d%>t~ZKKCSLVl)iO`F(1zV&P6b@t0+Cmc3D>ctgd|L%Wk*K1Jyk@hZoS^ zF5q^yT3M@W--1^2-&0Jcf!)Nc5E;Yc++at#(r7_+F zYmZzDUC)oVBU8&$1ybCP>5Q}mKmU0fFE=~({=g(}cG!TnY9JsbC3WE=-WrVETW)c_ zI)p^(wYjNiYD)U~2|*x`tNp1Ua;X>^s`{Y$UnXH73`|TYkz66)?Mt7BD@&-4w6ur; z;n>uRPyA_*iyYvLO4mqX)dth-$~2BkB~5~*wO4gWf@`Dk$WuJ@@7GUMF;y0a{HV9x z)|GWQ=;P0s5LUn1QydMszY7txYQoRL@}F&iRoR9c1hY~ zjLBdOv6zGe?9I)M%h@WimX_Ab%WW6C-;;;i$zs3o%Q^a=kr5er`NGD=l)^%a%#6vF zY6Wb8wieJ&cBj6uCg z8X;7Zm};6h1AH*6J*&ok>6j*E!^KoCz`si@36JGk`08|pkPBriWLBm9y;}gDs?-$c zBZz(V87+W)0*$;A1NcVxy%zRdZIHnvZAM^kO;2%Ic2X%0+>3)^bt|M3s3{NV{QGuV91;eJ zC7mz>_evsGTl!zWehJ*I2YEc+VPIi7L7d3Q$bkKS>p|#PgoH~ZGH@Yluw`Xs>YAF< zU@c})ZC%~YEmnuu^(TIQLX7BdW@ePYQQ}%*Rp)?|-KD^;m+R`@cF)V;{rzu7yQ90+ zlo{JSHUqgmShj7k{Zid9? zr3h1@=fLN40Relnlx^E z67f(JBWZ--Fj%Nf>mP&QjafILCzVOT4*67f<`RQ^?SLRk%F;vLAtpyz|F?&74j~NOhY^vJY%<0NHwWc%b z3qBckvN#G3rJH;krvC5ZjXrkn!aPHNWi-4e@=fyBJ+(?l@ zmtSE?iJF?4xTv4sBiaptz(Zd_Z!qFt?j=O*0mN9L^L^BVf7jNB!fdx>8}TjZoM7il z*GAI=WVw*9brr7WV_wo<9(tz>zl$z>LX$$`3^uqp}A?zP7u0>%bBpp)sz9~ zM^qHWr%!>dM}Hfv{TaqAB(11iy>(maxnf%ds|t&X)qshsZN;}D7aDiK}}B? z24Ewm3hjg|FJ*T|Sv!;$9C~bU!D<0f2If=QD2=4?aXT4Ht~fF~4LzgyUe#|=+ci6E zD@&m+r7)>{3#UQb-<}k%e8UInSu%m!SMrK(>Ejg|?)hC#goBrcam*e(jcdW$854m| zL>&E&?_V!yGd6iHoScEFOwG(4rcbi7{zMj5Z2yx-I8#vwYM!^XehC;KJ3Xx`D=RCl zs90QB2piNBF!im^kOcsqnBCq*8M?{IDQ054T!r=)~Rl_)-4AC#oCTcFWvR(z`+O=p+VKW*6~nVz0r^sAZcUYQ|{ z)-*{jnX+=Yy*k6_Sj+H}xcx{#I3~3#L?PjV-b(gR#m8LFrv(uaA!tT^0bzb7(ivPdA*^SK^Mn3_`P>+5Inxt1&J?VP)tBLQfr zy%%VCA^OTqsk*`)CJ}qadW~8ATr6}z;pG#{RfFxX*b*N3Iz~lL2|p(yMWjdU@s!;N zkx=mUNLc^bm^x;0*uqg>Pj$R(OrRV)N)3kLjt<%9k3zpVJRx5Pe-fXfnW!3wVwVof> z?6lHPIh#*5M6RmeEVZJ?*;`@u|RwV=jTwStXJ1&iD97tJc&;b27Us`9hzQTAeN}!)PEIZ*CMvBc?_D$SY3A{JYHk;zpa=%YAJshx2?=O> zdwYF*U)ohcq3y;5fTx&?3&)x-btBl>*}32~07_G3@&)FdAzM1=?zHU;fTlSxD3Eb6 z_wVfNKXVTr81OU=9bJBDDMH;s)GQiOw+&Zfc6M}03AJB$=ElZs{be&_i_;DgCMKrK z;cWO=CO3@32xHT~iy{&ip?iU~i;wZ~|7=6acc_IobV#;i43&_Okr&!M+3U>5J^|4V zfbj#sd90qxF9-_Va?9Xn&SNmZ?U78HH4ckwU!JGvgI7qz4trd9E0HgH`FpeTBXO=; z>)5|;E4%#K)MnEvDsIIsTd@$8gwjTLG>9sqdUr+K7p^vVj&@W0u|P!8+C{sbgb80x z;V$d}+6>s*PBVYF!}}%kyWO*IJX6X)_ZrlP*DD^GyYqWalg$L9kHlX3HYVUj2!r$< zZ+9#celQlBloU`FTFa4uD{LvFcDzP=*R7j2kaYe!_*d_>pSgk*=-sJr1EW{1_M{=t zAndcoZ9ZJs<`ox9zI5#E?&i-NfX+9Zy91!IcpRaHg@v7*opcgJ7Tq4{y}0mL$wJDr6+PZNJ>aJ65zPS10*%MxuksAF-aO={I9RPv>==PB;XYi`z`bL_cTFdBbt$uilCI$SAH)IkJ}#Hr_hU-Oxlu*QB(2om*yJs6YrjP;hz>~Hil9_aP?LM{bH zE|sYv+|8MSGRw5PhQD%}8%yq)T9UM6_8%j4=aI*X`vqgaj524pZ5m z40iizbJO@fd>)sFkMCkiigc<{ha3C^pqfKRh@Cw#2p)ZNe}CTY1X#00OTh&IO*V1+ zu55tA9G{yT3pAqV(ed%!G`)}Ii`u~tGzY~BnTyYv3=9lO-tBS+7Z*-^um1$9o=Hrt z478Atotnv;BkVonE)sJ^{&@gkKEJrAT^vtg$hzTfeA+X?6?)(nns}&@X)X9L>5gHc zlw&5+B}%cUXO(dJjYRv2L5|yRP#8}bSxSpb#+^fL;FUD2b9FrFJdp<@cZOnR3I(4f z;O@@j9SXjPwzhU+eZD<8mD0No61xtZM*A>wDeWp@Pqru`L|WQSV{seDCxz4ZGX}4^ zl$zk9DuM%|QY54G?1PGXNqJ#Myc+I88PDOu#ZM22ah{a$$MqtJEx51Da@bz?EKg1Z zp1wD7IqIk>jn@3C5++X$O5i7UOYH%p_t;hEwG)oY|51AlsYps1;-4`II_S1{Dp)o#~9I63!S_`nyS z-9NIry1I)Er2KBj%HO}B&Ng4FnRs0ve)jTeZI5RBvHv%^FcQzv$!)-pB`!N#K|}>;Npz&dyFfV@$&3NHQXt=?+*aDJUs1adAT>$zR6Zf%HkxWU$8M zY$ z<|UF)@CfE4gp{+8veynhuc9^MqN1FOw5uS995SE{;+>{t9RIe1un$C|o%&$+8g5Qk zS9Q&Ly)||_K}$!G@q*FP&@X-8s0XzI=U8~5A2zH}EyF)Rj>{7_Hff%!pfdr*EggIH+_CjAm`PBQMVo{z~Uh#8muv!ybR#EX@xLRnMlF_O` zJ0>8T$5BjiA9~@0t=h)YHz|msFN?L zS(ZoN|HZQZUg;|G)70h@w`SKNi+uEwTMjKY_-|pUxwE<2pTwv=bTK~Pl!an$pIsgD zkTRIr<0yDFSI)D;-*J4DQ1}x`UppogI4-1R=?EG!5LIe+BsfK5n`{jvV~A*h_!8QZ zVG>1p8va{U*vf7q*}$Ec(RgLv|5r_C#*2>_bYv>S#w6KN3@nRLFOO&eWPRhn46<8W zPb0;ZM{FzNukidv=$gI1onK$Zk^cmJ4l&!_Nm16G{-rYcwT=V}V0g>?o>=dvHO438 zyCf_fF$Zd$_!a|JrGXEQW4HVI(6T3~e*GFgY$^$M>>VGE$v6yMgoAG&NR|!BYln^= z_yAzo#qRX|_TKqvYZ}+t#P)Dv$l{{5Ivq}xHY3#c?;c)Wf2c;W5{D&JR4^C5eoZ2b zMhFZ5QjeuZTkFKm+3=yYwcOEB`B|%9sGb@cLGhk^g4uJ7lKpY{ReHByw%09v3e!9$cHu#pdwzl#ClY}Y}F;DJ;P|*f{Ak(D(rmbnAITjIapAtXXR?0$< z&#kF?sw&GNaiV04?Y1I zQ9ra*p_liNcEmlH;i}n9Ftj z94A;d_Gc_a3%@>%y%2Bei6i?b{@LpCa>>2jm^#TQ)5V1aBd+w)va)!*y5ZoDKYAQ3 zqLKNy-OI}t*PhG{riFsul^_EvBOR4#RjZ$3M+HfZD4T zNAlYYOw#l#UeFK`dzO}TNSJFnN+DK2WZyP2*nHKKZ}z0|issqu%~=Q!&J1I74Ze$8 z-`x$3jEsExH>t1Nz~tfih(YkFu_r0U|Bx95isqoQj_+kM&al1R*8$R4jVmHnFtvVq z$}}PEwjW}8dc=q4e~Ab3;WEOxbIQ)RZ=CIeBJr>#d!<5|2gD!BBu1RdHK*@PqaGKlRBZnjGj z)j`AGpevS~WTplQd#cNr(?0Eh!= z3OJ<@wD+@_>8C4gBS+ZS*tFaPj;_vwHdx>dV&d$@O8RRbdt_4ID@+iuKz_Tl@bP;* z0m05`k^Y51j9Bmi9RdhC7vf0!*Ipp-;m!KGp;LC-g(tVo;_07nZ1Ik}Q35NLcdLx; zdPlzlpAm`b=!$foF4+2#_+CE~MZbO#&dO zw;T{vhVaXWa~Q+)aWY(Kxd{=lYzR`&dwov=XdhLTYMQ zVxsMJ(Iv3H-9H#peEuxFbwG>uv=(=YwCy%@uXXkMrN2e!#1R;7!l|G9E$k zVd^i|)g2kc0#8EizDg)+9R0z--BXKHQp}DxSMTQ-U57qZx3Jv=f}(A=E1P-n5#xV?6TFqi0f_WLUQP-&n8eTG~&b}7N1 z-TTHSA~F&fX>zjIa8m9E|06tHC0(AXD)FtE{9b_3xp<9`-xqVq+Iv+}t#VcLJFTB)URiC3sOM%c)MW zv|rs^;)HScXt|#tftcT|ba4q&akF?RM|1GiW}4+?TydO2RD&3h^}6a3EfPanOJ9Q{=r|s7mT6r4B4(^jfBx4`*P!IUDf*hFH5}qCT(#y zu6)xOJNnMG$(Fx+&cHwW>owQ2d`8M@o+RH|4&uiyXo}7YB#T3DBw2uQDf(+OW`K8z5GL8U1}qUjnxf^J?i}K zr|&_HHj6_6M!#9{QGkp9YN#3}6xIGREpcu$oH|EY@OIg`SD_Pz3`ZS(H!*pdrL*KN zLwr5x1tH8Av?LVVbve#o{#MA**ET49=Zc?{%oTM;+u;>_P}-WxlZN{08rjbd9{v8~I59*mTRYd}X#3;!n?l9G>SC0pUPd^!L z3wV`rrcGN28Y4>eBX@2asw47v-=Pr=aj*G^--@6osLjYIDp<@-0z7G#RfUE^i#|a!=+ONo<2Q+glvqK zQgxOyRLQ171wgUG@A*MRPvf(#E#r}WD`LPk_lg9t57E%LI+{~D6|`@uWK3r<3Pk#5 zEcC|3tUsW<1IivXO-&Yi-7YDqsp_#DH0;DhN;1w==iJY3Vp5Q zO$e#)HW8K41g3ip#Ik<>GM&QXu*tXoQlXXe`DLdHk(P@mz`B275zzmXyaJ_ z!C4$)=e0}ZBPmPI%b9IH?~u*YLvgo5nZNCK#)JEh_j;Uvb`B3CG{KbI+)XRC1^`!X z^sDRmRs}IxnRaP34e%U6lkSpY$kpFt`1*cfQ$v|ryWX>q!}3xX2GxZBMP&H2%o23^P6=65qHht6+1?&p#?{f@vE#}O4a8e6yXB$%sRCX={ahZXbJS7NX?V7gzn$_@ zMK9i37%N&h;Dot;F)eagmKW&E+cdn=c2}sIu|8aOO-f#LyAhNlIi*CCAl-o|pV$q5 zG(e=6_WGX}fX5HV*$NrD74;+cHO07o-k4(b!Z3BfrjL$Rx6VF1Y+Pn$Bp7TBd|PWv z3qZTxKcgA<1i}>-7XF+&s^sH~!Dof;&}ZITs>Lp(Y!rAgN8N8&v}|eocg&AGWUZ;y~nSLL-C!_e#+4x;O z`vX3mDRQ<1qu-(DEADHKg?@Z|7|iXeeo}d=Wof<-9N;6VCK>=Gb5(lf=Uaow(OM$>rfiOKv4LUtNO-e~oRaOqjR0Jx_{LPQ2Z7tKKzfHu%0u`?CPSdH?ak=ZQ z-4C}V%p57vDD&@`TEBeP`a+GQ7HOM5mzEw`j11X*S5WQd_H$7;NSSi?gPg**6t?5&h>y_$AmhE-tSlm=2O+qfojw>9ygBULC9;drr=vEphL#>_aJH*@=18eZ zIJd8}5dq%>=uZUSfDMqmXw_tS^h`~~1BqGr5p^C7GjmrtqRJJ&W*4B}0gLe@_-DY= zqIQ~aZl97+-q31}d_%_ap%rfz`Be|s;99w8zBYSNab zSZs19)vejPsVv<$N*j$fN_l_}!Km*C=GZPesnApC$?p&^6IU`aQIh5Psi`Ttu7Z{Z zw&YyBwm*VfMRPiT_{~qxb?jO~?7NLA5jPg ziDBLTUgv`RF-kS*`@|O`mS60q>S8T|M11c?AJL_WJ40XL^7G@Up&LY{SYm(DI59`8 zbuE4klTv=KfkQb9QCHFTi?`C45xuef@O*WCP9~`L^g>Kb46w*NfP4ai1W=UASQ$u} z>N+~GNK|xvexLbyTTPO6;raq%o8?u<`9MqSWo6yJW?@%F3I`{2t>g9Qp15r7wyXpY zy>8)2lcd%Vpfe>zs!Lu$GSYP9Lz3vq{x3TDei|@~&4Q)xacl*W63kl9A9owAX~Xo1 zC_zLDIAbMk>{-K=MYFI~<8JDZ*^MHwEgQbCT|Qr^Q%5%7x~cm z7$yH4-!ers`vT9}UqB1Yad!@4`&qH^j(N;GH#$Yo4x`GNPgG3DZAR8{RkC7kuYXulI4HORjg0S zD$B*;6w22#!3p-riKICcApFR_i8`$%6DDwBV=FE{Jb$qElm}N;pna8WC!^1Of`>mp zQ_OByCOgHpm`cdqs;=;q*4ETJ8_tLBLMcrI&`t;~XdcX&hSD;tu3@;h9;HlwDzZg) zw_Cow)GLlINFfrGUfDtVO)Usee_XE%^f+St7U&4(Ri6)?tP>Y_R;C`J6^a?< zEv&ByGv#$O+M2#}P0g+F_zG58i4bN=j?mrjj+#3!)h7qfNg|G%)|OP{XP7-6|M(Yt zPkus658ie9PApY5yHOb;2Up{xDSmbvvyTYaf&MKS0U5ignVI9iby424nPq^u-TjP;{TN&)b%ATQ3Mk?~{{q*nhfV+Y_gBtTC=Ng_T{F zAav^alvY+zo;eA{FvWO;dZ}vZ$tAZSnW(^_Sxp)0-1s&5tdVs3`xgG2#iwEI$$S(& zL#(q4OHdu62|Y{fuJil$yG*U*Pe#hw((hTgS6rXAsQku7iPaq#9?On@C-17d`L2GqBYpUAsp^~TP2*t`;*lbygT+qAo5 znDmw5+kL;t!_4!~$E(Ax5({591qSxo|Jao;F8XjnqgkzAnIY`o8JEi}$-~Cp&l)f@ zGlPhPB=*ODFWY_57aIds^mO6$;J`BZ9V>x~u5Oe#e?ivVr$_5w1S|b(9|D%E3CkfT zvvl$;$vj^3ZW+RINHcwkdNEAKYLWT%p^Ex+$q{sFoHsGVC0+MvcjdPgN;*${M8qE} zVcW&|<#X~~&L7>TBTgbC*$6xR`T60?)Wts(>&c)rglOT=#lo0tp zrW|>$Q*7Bz(I>gsQ4dqI&I0o)6xZmbCwW`3LF(=a-i--9SLn*SAx{zOz2E zU%C4ZaL3rh zdtr^aKWbMvzB<25X6kyMcxR+#I)+-1KNMP+jvR>v!t6uH@r7R&cT{Pi}=K96`D1)bRVo|r4<@_)|N_f4<8V~ADC z?dw|eh~Il%OjZ)6Kfu6#P`r{hlI4-O=NJ{wu0k_C`K3-mNH8Gciu)DE*w4q0QzsDz z`$6i{O$>kVOG5)FIHVQoUv<^<{ZUcwoz~pTK04{Hl4w4&v;zCT#ExguKfy6RJ)%5U zstSo)E!v%o3yrp!EY54UptLm|Mr&T-c4g3y4ri7`s^=Ds$H{W8p9%NKC@A%R@LzQ5zWyd?r=tz2}D|cac*z(@r%GXbKdra!6>x}PJH@&}M`% zuv3nkH{0p{lkWps(oBicvj}jLfFUGH7on4wR4ykuJH7j4w~o$f9(vv;M^0$_LdoPp zmJ7pAj9!!=3pJ%$w+W}76soK7rO=CuE~eoF?w3m#5PZxNsQF9s<5k`3qO4{y?Ff%fFar-h)3XF%w0pL;cBI3zRp3@qqM>`cp|CpXle~2n z$b?*69jOM4ud%(2woAd3aw*+dL&VNqHhh#%w`ZFNt$h0a&l-80RQ3HG>x^Rtz-*zU zqy#h@HC5F>z_|2{!x%7>I69IQTnL!7X7wAg3>DWqLOiT3%l!IR3?sfLHi;-GM2}r< z2|d@vX?^{^$QuUg5cEvO*=9)_D*biW<~q1mN%&$X*i381z>7jvT^snZgTQ-_=z@;^ z$K%z+$u#^qdNW`{BLf^~;E9MFPPzFO=aR|hhn~L``Yo#aGadYZwuGwVUgt5Dn5JIE zpnpX{*mx>gFg01??XFp^yFm7sxBq%}V4w5+>n+xJT_fy{*rWYKKN^^yg888&O-{ci zui2UYs{sD3uPH2M8Z5+%^xy99+4e$YKWSjm@t}$dL$Ff7#Do zC_!oRILkzTW2eMV6UmEDHsWQPkeNGJB09oiq5f^9!>YVaeUBo@GoLDesl2!)5gL$V zj@kqUEgcg{?_TDxaGu{oocw-9y7G>=08{ifxGWuOwce_e@k@ph&^+U(nVIz_^XAs> zFZYnM1qAjnam|z0$Qhy(Nk~R>g#E zaK(9|3AHcUek}X&p|JRa^w`jPU(^Qy&ViWDBXG+XbqN4K0&saUkf*bhgj}6edzeQ1 zH716ywXhxfvHI16XPJ6^tGw?6&<9ZZ?bqzYe)j@|YVV*VwFW4j;N~9TewaL%DM1Fx zEVcJ-E(ch2$w&ZCeRC)|VC3=;5fPP^mUdUN{itS^OaQDk0Kyg)J^&u3Vx`>GVp36? zV`-z~c^l2D_P$`mu@x zTpPqPj!!KenRHw7kr5Eej#(~Q?O$v_PXfy<>GBM|mN+_%Hbw_>VBp=I=MT&?&r6G? zWmwvWSMP^R3x9^~Tlv8WVImQ(JinKXC}P0?;b=nfE+M14`>@L$Zuo7QQuWRbn~V+( zn*DT92MK1-Lhw7OtIbpR;)`x_rK!iiWU#a3bMFGAi5dtaf9|Q&;0nT) z2WR<7^T75>yh;U*8#aeBc4$XZ%0IdkZpgTgKIQspPUqJGuVQw8`;YK!$WnIM!O)FV zCT3!p;^lr5<=s?N>TJ30C^1P2CG}r+-IEaYI-H7Fnw3bYlsp4i3*ct}%=Gv^OadF= z9lPfr7?jhQ5^+)?_}hcu?981A-HnyGtU$NT(!&SP1fYwA9r*KFC9TsU)ZY6Djdk~l z=d$0oo#A5;j`YF6gVH?KK`_Q9=}naZ%_ZvX@VX3i`ObR8If31&1(MG%3Z;XLQ9hd$ z5XZOIfI&v$Pffm$Zbs*u{Xo?Qr~`l|-O)@2^v{i49y(3-uk%U+l9Jx{{{H>7-NP|b z;aeoie%zHyadF9IUp%=>Y^+qt43x6IzT!lVAT2Yq6d0mi1O*uCeG?Nr=xD>s4h~Rc zl#0~PYks6M?0LkS>ZKjqF=wDY^ad36{Tbu_HQGX2)nEj1whnTt$_0v&wkv@ zLrvfEXVor))tp3ctNurUPvJFH;iY=mWnf;p^p;@f535;xTec0pI`hJo2@ZSX3VrF> zQ?@HeB3TPx^+7H=O;{FgyW`oJz+u&}G<4rsA<*6Z1B=tPG@ww@Faz0q-^3g|2G<^pnI60K^^y5* zce{j027}p-AR0LxZusp0$Sbt|OyDVHs64>J?|t;1pwS`Kl#<*jBDO#J#M2jB4aPNG zef?Gud`=FefZhZrzi?qx5w{Ev;YZ3B4sJ*U_qK|7fsLIQBk2q1wE1iz>Vsff^GwMH zb}tt9rOcAM0$2SLo`e#`jU;04hC%mwP{qIccet0#fMwuJT zA(GS~2=vX2%_NSyy1p;7Q4<%kxUt#LK0qs34VIOYN>@Sz;?GBfHUcz5Op+ zZ`QrN&7FeYF>so8n^?K}{p=#n`mRP)D!MxE_L78DIo}U( z>p%2?A-{E1>=J!J4hw!HGt&xA>g*gJv#L4;S<~r$+&^ig$Q$%@z)-V)a$-om7>8Le zyC&!8=29^XZ(18!PZe_qIbHTyXXd89^HQdE@&{Z{_4V^2rx=AqifZU#%P-TeWpxO%voJN%?(ct11l($?))}zltEl- z^ppG(GE;ldzSSw5=(NG{*5N246DH&%o4ZDoa>U;o%r)p+-O<}6v@`~6r)^pb{$1Rd zPvw7x?#}-l3CnDMh6b?~+fn}4Tx3*6v`EGVD5cmreh-!)67OTyP*lQD{c3o_u|o)o zd<5_S7$o2uUl_`V-at5H&#HNy2Mf4-J7m|SYn-&wmw z<=7DO7!c-1db0R%M{k%{ws&TK8DcTPVIS{UYIIh@dU+1-I-Lc7e<*3&;tUab5p@X%$-Yt)x(V4P^#tXK> zMj%Icim!dYC!P{#O8nOMt73V458+Atc5`)kp0NXTPoKhnpZtX{O`F9Y6E5J*^h$^v z-jg0teAg$v*Z!FL?+||CdwCY_TLm3bEph#AU>qJ#2igT2$DX3@r+(sjDLg(t0>#-1VcQkvKB(ZC7MG zrg|?pd_EVN&dyGTFEs%*k|#;ke_!1FZa5fMn^If8PEif9nXCU%i_W$|=nfZa+T zNj~t%L&0<<=s*rI*HBSYht=0}$Wy6hhKWBkTzjK3Y^6(q_c?1&0%X0>nNnw2Yi`XR z(8dg>JKlL7@N)!-s-(8)s!A1gNYyPh-8D1j=K??}SZYn~88-*vDk(q_MC}7%sI^k3 zQofv#P+v#rUN$}^3Av;t%SE4yP}Ohi;y*FwrpjUCNmKYO&0fwjJ;mqE8Y8u{c*(Lv zArZ*>ims4w>Fk{Fw!m~g?Sfzi8R}(xmmZOoez|9VuNGbslbq(2RLXiwMla?gt?`BY z2+)Num3W284~Pu>8$*0`R;fJhC^GluFemHeR(~2^lYp3Zvb(HcXHBuh10K6x15eia zSvGb(xfWuV1L=;fz|GEgES@bErz)V+bnjWZwW`L5<-qbIALEhqu7fzMgYeMutGI{a ze+h`m7j<+5qa|i76-Zya@>?OlSv#H|F2&R*lslv4ege;(9M`+}@nla@K)2o;K{xsu z41IT&jEIQ1<6`<=nv>TK3_fXn85rn8NGuWPE;k#YVWI_+rg9tDqSvgeR;vXzrov)X zUDaOTP@2FF6u^r4y$L4e0=c@z6@UGWZw&Yf)0obf;T~E?cRhkzHID= zX*CA+`+I_*?u0%C?g{eO4GqUKx4By1I>^64YI%8Or#`p3`e}7+<#|B8f2~_lTKM^j zJm?+jCQx@on0Gv$S8369b@km=^TG)@>v|b7(PjOo^X2JZ0pnn^!kHI^!*W~Oa*QoJ@`_ut$y|5a`iw$B~ zsd(S^gaHWoW6`S`E+z566!B{jL3!zG36Gzf->V&bE_vSQLjY;7$Tub?Sr4?3( zUX~zv>kMr7=R*|Q(Ll(I@G#~iz>%=7kHD+9XY(i`-@aG` zhQ%~3I55<4+p9rISGK$5EYo;c_3tmfg+Czlfq+a-M?$2ZEYQYG2r8>Vn})H`YY4>S zAi?1seVN^$E#GJvLV>*x4Yt!5IT0xd{+%-$dU$>JWVLy8*+eDYs>0x3*_c1q3xR7F z&~;VCdDdTOzK<&uJVJ5De(J`UxP0}|xqk7_!7Dsj6n}j&J`sC;*$Y4R z&$PP!lML){x-$r_%N#*P$jN@WJFY7a&P78`xo`X%%fE7U_jr3|>HIv<40zEzy|>`v zlKM`mmFmDYsLXyJeqUACJmriVt1J*;bv+Y$I$~fg|39YQ0<5Yo>K3L$1O%i+LP{EG zq*X$?L%O@WL8ZI9ySp1HX~`pvbax)=F5d6|?tl05z&<-puDN2)ImVc;{3}1CE|lA_ zCIg)BGg?ull$MSO$rL5%BagPlxif`}fIW{f@vS2d61Ck!HV4Od`2{t z+)6{OID*ovR|wx1tVxSo4zHpaXH73PPjGQ@r>Cd0{$IpW!*|oKE{OI3ZeWk;q;YDo zn@T4F-wLdj?>6A(aaMp90hyO|&|Hlb9$u^T=AAZXSE{U|S*`K5s*c|AxXEw&-$qPT zUrG^cljFNisv==;+}m$%`Bge;Y_9*Ec${2b<&HD9FO*pgGDaUswY8${yM*G$fti!O z2lfNap7HI&=}qnZdNEU%QR>bVCiL=WNNzOag>TZ?UUxzF1N-z&us?j)XO$RE~E#geuj zRcXY{YqxrL;!Dy8Ib-i1HVzCP zv-V;M+WDX2P^HwXP~vECToz-@3%7w%)H|U?I;ed7JkUmEA3{3u2F8iAHC&l%UMK)V zj8%?;>x%ZP1P>ipZr^_L&W1cjsn{#x^Cy2JB#@9u;2cz~_44QIf7wBL zOrTy)d^3sb`2vJKR}}3CSO zu}0nldSd8wpZMx#N>yuZ|9!qy7MfX$5KE~0n|}DW`U?lZ-NN>k*qCvW(~>6xOk8DU zWty{-Q+`{UrZ*2DLyNU`#OY}0tW#!`Y+A@pN|)#4NDN07wytXC{yS+75PMi~zdh?= z#`Rk$oK0lbyES-7c^KKB__iW4^Nl$r;~7SS6D|tZ-WEh+0@F3;1>^2>O8yjiotA9M zVE9aG10X~zD6(2-s|07}zweLsHYTrl^U8vkW+~z9w{!JxUHThzI=3gj()GfqhF;Py zhrKq4S6ne`e2nkB-gr?yCFm*k@Kfw=^V{3MuLiA)A7AMRY7ExO))Pr+6h6uCb_yY4 z{<$LU@^dm!p0*)XB85dv5;RFsMsPe?{pWc*3fsK6k|;obzn)32ybr0w4?y^MBH27U z^r~U{rKn9Bc_JG6K11WV=RqHb3f7;0>xHLA2kOmfo~SdnY|MYSg!|zj=?Z%>z@Ey216xUzg|sAyHuTvdnvx<9{lz_uAM5VvF~` zSb%)>`u#NTqHa^9fMEDP9*6$oa(BBEf7!KCyJ?z#LVly%Hg4Qn;+Z-;pV6~N>#`} zZ|~oY3^f&%*#nQRt?q`>$?o>$%6|W0TKnA5_ZhBmra`{*#j8X4!+w5#b$e_YGpvw> zg@vKtVBE=`F=u)63@!iv@mfB|z=Eife_fqf>v$FI2?nGAtvW4H$+d@n- zwe}5OgA9}M2JUOSf#3gN+G_t%AYqb>t#Eo+ZH{Jt`zEF_tywn8H*(|NG}dDSOwvK{3EC{TY{$+*UAG zkLApQNmQ8H&`ahCK`SoSl)>)2>$ehOexF|0Oc=u>(aFN~S+K@LR$pI#Bs{Cm-3vPH^pGX8UfB*UXrE?J6fP+$%TrKgn0+{Brp8a`eSlpH{)KC32}FteYamz%OgVoW`UETU z@pI05p5)DZno<;SVh-9)C|KJqM{`47jZ1OD3?9x^ZA3T9Y!<)rh9^Sj6- zUpsVm!)%XL@7&le6LGxAlulLZM8e0%7ux$#SzHX*t=}aRP*>vFgEaZq-fS@B6&MI1 ze$oX{m1nwdy@_eG^SE@C`3&7V;A7R)umVnDy#2zzg&9`lr4b$C3xa8#xXMevu zMGla}Y!%+^ui(>d??PKT-n`z({AVhG@u^$B_X>S;_=)n>0#{ttDosSehFp}7s2RN& zDFu1%>8aJd=I^C-;t4_3s4o&{-k%NhcZs-?##cO}JM4aF)A{!A|^E$sm)CO~1yA8AN0Xrk1*QG-Y57E(~aCQK%T87lcoNJ#k1FiTDz ztn7T8KiWP#$?^v&Y?a)wjEoEbode13togs8!{UPbtDk;&5_2C_GegrnNk9LT ze*4igp@#0&(0ELIJo-~^hPAagYUl0Udc84v&w%#$QQp!^QWi~hL{wFKNgk4KW@ziy z1o@PNn#A}6HiLtfw@lG&&9|Dw5bpOIyrd7Ads|;1Psg*QoL6>w)*VUd^04)+8tg*zdgev(%bbCrzaZ6#MUnst15L1i^zLjq(e`-b z{g&KM$#P~z1<$n1&`3qO`7VcXFJ=bM<)m*)Q5DwEV)TY7*6Pdm-uCueA?1R!M&{D3 z)7T*4f^R&YQQp?NQOrHIu|+>%pR8`+?c}Akl5izcIsL5`@_J5F;!dlQneCBz>gi&u zrrc0f`{rgm$g1wtaXy$SR6v_)ar1BxS{wfoDgSOMVcFX|&p7=j-rnO5(6#ZmXLJ$^ zf0I9WuJgxtEQLd|tk|q=!NJ+N01$}>87hm4OlJ^Ex*NWUR*!5MPc0A*nXjg(e}GpK z+F-8|{Ym(dHS+h@ps={1jkAav*VEDR`P&}~W>)ieM=j~&PqnZx@9`lgL^f|RyN>TL z735N8n$b)@1A`G1fYQKh4kw&u9xnJR8}tV?7^&xoC`m&gmrjoJKdq)~^HGWt-txvt zMFO%HDcdzvV48l^kMFWXpcX*{K}%aIThRe!z;?eL=PW|sG#6m`Td11 zr$XiQr{7WIiNm~~l!BNmjwZ>jaS9_QDk1SO+`REop5&b~=Wn%m1y8*cKi@wz^Zdif zVws;)NCs2xSZ4fzL>z9EdWi3QMMNI;*@Z-6OaZmSeEzie2G*v0>3-7`k#^(Q4(VHEw@Lqq>D zPa>JE=%a^m9{#W?mek%p6ZtA7WvO!01&d+Ns53kJz-&G~%Si`QDts%=(7ujL7k&73y_>Mi^e zhFbRA9sk>=Hz2&>YZqiRrT$!KWRs``fkMfIH5RLlFHRi%*lyu)oQrrNWipUSa|Cul zojq;mdL|<((x2?xv2&KQj*q31gqYdQDqo{IfnqBB!yVVfIWi9nf(eivQr~lr9 z2{8vIQ(d(w%r>DQy9$o*CE&;WZ=1^BK~e%yr~kG>$qDo#U={yuGKpt_AF_Zv4E{hQ z=}Lik=lqn4*mk7Q8btK8JaM3Im;YgQ*r2z!GQ6bYiMhVx`AK7$kr;%3tP~4^kdN9` z52gwumoTM)QdKYf^)kJ6Dyv96X%;}`hPt>n!<^g&_pG5Yw~>Kh>cY{j$#@21$H_0W zwd3~~p)lZvtW>#lLHJ-DqP|ZL?{W%#PdD#G6ho@}t~+V_Xx`{_=!EUiekkg6%-Dl6 zm$g(qqLnH^AkSa$)?xA}c&AZ1nHa@XM=na^R+fDOR?W z6x0=`c8%T{oqsz?)B~9$-D}WGVS>2kOLyC8>uygpH zz+3l5k?^O)?>l15-COqNB&81y#Y{!jSQ=gGc3_kI;bp7~PDqfL6gR z@SGuU6EJo;IvT1lJSp+HQU;eIh3Re`-1&#bmyXts3(zOT;jJAL{f?oM^b3vOhvFA% zAvrF@(dzrCay?>`Ge#!gL+}YX%wL09SV>9gIXk|#tclWf+-w|?TFPtm`T0AF3JU|} z43KBbt*eW(7{kZ8TLdG_J$7T~6AKZEo7~68dJPvqJ{%ky>mL{h92psrA*z0E_=n}v z0z-KO85tR%6|}m!*#~$j-0l}NAg*q?*c1&k2S7CU8NlizPyK$Yso2;Xk}f#DsNFta z_HBhTNaPF;$_Z1HCO~!II@eg zcY3Su1n%aAG*{eX6kkep=4J#3BEQRE6@QPXOqQA0bWw`YiDy8f#n2*xk;Su)a_RjK zhTFflYV5|5?SU6ZC!3QC-M5NOgEl->%Bdf#f!RaGhZ*!K$B<@+?GOP00b#%XsN`6H zO=03nmTCh)@)Doz9cVa|HTk32Xv9M4$`;d2!4{6(NI`30=@Ltq&S%Zt<2_N6)^&6w zcmNFqTzwet!`bxQP#yBC=55%6k@rFX&}&>v2_p6*QntoI3?nGyZ}FYa;wGZ2U43syDI`HB&4ZbqUM_`NfY(Zm4VEkI`JS=x990 zXVUbw>>CXdb%*ShF;+kgWMQWZi%}?c8J~iL2K@m6F|=Tm@a`!Hns3bH=g+ynl6YMz zN+8c9LKYgDuPkm@KtmAPunC}>DLa^VziXwTJpyObnmWrct?LmxjTSF=K!e?~w#ThF zjN)5fdsHMdPe~q*n0q91TBQ&W6H9w}dDZgF`N27FO(j5~?m!3)Tv0F74lD7w?9;D) zMMQ)KSSlGcPnBOHVZf23wl)b2(6s~C##=LZkK3y@Od%r8+St8k z`bAVOwKH9;*a!H5Q>`vGfZWjkaJ|CJq}`_0_Vjqy2j2M|q}b^5vb$SYlb#9-^9`|q zzEH6OQ`=MyIz%;H6da<*ZMy8FL%0jCPf98uwE^UZ&03 zePZt*T0+p2wyRofgDv%Tlt!H92o{eTK z4VBI0mlP!%oef)c!g$<#aXETSw?msgd4#Hz;Yb^TosTsamM-{LZMKvt|CBdD^N?A7 zms`d~luP2HX{laVaAdV^jhmZO*(V;r6kJP=yIJ_87N78QCf4zMe@>(lxbvmgRqmp-KCCngi zw^0+Z!`qNQ(Lk%%>yhJi%c=!^$7fv;pjm9qE~h55D5XO~CH_9tTD-CC!;X<8UKIJmeLaJDojQEo%> zvpGA)Hk}y_9SmL98(74@wqi(u5j_`=go_zGucJn2MQ|xshx>JYn4(Xp;q&O0 zZw;g;OFADLD7~#-$11)F-%4rYA`kW ztRJP9cs~+XCIuPHv6yvw*gRg1kKaI63PXMFwoRIxkI`p&Dw2u{7<3H;h9ll_H=jKn zW%jK+-okD-Pz4!mNpCFQnN&XpuDr4s)#b=uSji}wUtuO1;TNL(z{V7TJ2-gX`8d^! zJNRuREHszwWAaN%oR(jvukR>J&L8&|TxgP$TTP2xo~^TlZtAy`ptQeDvwlAq3Q5;aoMX`{>L<-3u4XZwNu6)x`bp2K7G zrPg+4S6dw^7%YFUTf=H@XOitCXF2aT-pV+2&S)-IIWxix_w?KZwi4xvMXEITG__Xq z@r_h0J%$QPGCxb0l6mb0`um?w$qH5*4q|hTr^9w_HM6PJ7@~p%DGp#`g0;Zkbcj6A zAEJid+yD%~w7wV6H2V}7peQdtq3>lUj|C=M;)pKJJ^aQJpQ3I5i%{Nt%&T<)1ATq& zDxc08A7IX}2wrsoR#J|zDCWV6td!JC78aHgkxy2mCKh}rk2X?|*D^4`&WlJ;wVG_R zX^6sNetk~U)B>JyYRw#Wqr-dYR#VPVSA@D{X3bzRlL;=6vRvP>FG~;U*N}NPUb`Ofv}zuq>dvK z8G}86izA(EX4q;b%y0PuFUL~ANVA-Jy1w-RJrG!E1gQSw^KVY@uyI)~&QQdv7ql=dti5{?D0dMg@G9BtCaJmtyZ)S1+DpZQjTxVagdsUOEA^?2#>XvH7JNc9Nd%Pde$eS)njmO910IbHxTO7 zGc-1$;VIvR2Ya&2^S^C#K6GB8eV_Z;NZ#_r^mbE-`ym9<-Vu(wf>ro@`APxGj=qKQ zWuAC!6YSr)RxXjg7#1Eo@@ML;{Wztob#+~5tqV}|m(g?~4uw=AuLd|jo-#2p0oga2 zfoEmarlu3wbq<&?_f7OoyX`5ozo<%x7fSP?IY65c1CRg?l@hAd7`Q+3=mUZbH#dPV z7&_@Me+6mU{}w?BToMo86cAAGqY)G&#WyiA=e@~i*yYtLuC6N*%z1~;>VS$IMgz54R{(-6yn>Nm)iB) z+w9XJO<_Q~ab4Rz`YaNU`2HunfOhzbg$xpH#Om%*PMyzrZp8b{`T#N%ZeHH=+4mxR zJfozsU*IFUCL<+*)}ZLCxfSo zY~|5nHI1aPV~~jJ4{zBZ%r!YDu$k0wJ5Zx#Nkf}&=Pc*$!?RSbT`Ztp%SAnHb(uNG zJWmMk@wv?lRvM4x8Y~}0VWKKw$+*chclE|b$G0A?RbG%Sap&b7SjCE_zT8QDdgQ7# z9^Wdh?9e}6ZV$Od*n!Bt*}vIzzp-zx(^1kK0drmR!_~s=S}3#YGl%I4f8jX}t#{SK z)+_XM6sH_#P_0HoPq%d(+>%wsjX5+8l}wxYBrome>-~)bP!=P-V^2kv;%#CS}H%W`vhsrjuAA#1SBVt5X@RL#Wi8Z-O+r*;fOg93-!M|SQ%D;q- zv*|P%UY!s_trh@kL6hF3lRJDIEvt$OSNhc(^wd(+Z11ImVTP6_tUgw@|1Kz{#hcAWh}cV9BgOO~i@4_kwq`T(&$-Z%jn1>};qSg<3h&%@Gnl zD_nt;YOU!6xpheS(M z4jgI}S*t%X>%(5|1fZxJ)9y|^z)gB|RUaCZY?i$=)Gp&?# z5=IjAmmfQu`wQ;j$%1iAy%AzTl>Q=Xi@Y;=@`<;d3d--k@eW z-RXs*@=x{M@&2)VUNIl2;nAeut(P;^9w0QY7An>Ah zcmeq;@K-j>+s`G3oQWsuZ=8{TJ<9F95&rST9eb)#u;X#*TfMn*puo#gm2zy));sJe z!GP6_Zr5AaY6xx8lQ7c6Pr6pdMc|r||CrlY&Y;NS9=TmX3;p~-AjKfDc zktgSNKKAmC8#`P;GJo?#TdE%Gez5JR>pgPg83yl%us{@*07Nj9FE6?B3F3FQlNYgD zt*;YKPVKj)DlS}*Z(MU!MDP26VT;IO<)U&P9ugvRc&N94tlc&z7Zs337xS?`=f@ z2rtM+5qT8vKxWrA5B=rd$yudqkwtC^3iBh-s_*R`(d|M?a&^=cKC2n#=`&eLn_3Kj z!J%Z)wXPrS$!_+bc|k%FORipA6B@6ZCfGb7?AlVbbDeR*E2sCadwwDHB%kBcup(XJ zsJRJsHuB$&gO7S6xttCeEq5oAM}t*FMXc3>(9pVFgMIwYRwbs?nK7BqPyfQoDUas5 z-K&u`wC_GO9S)}U+NK^|k9Tmc9vqZWk{PAVjV3_6UjgM`fm5W&>knf^>tGSY>wuaV z)~HQF(SPaR%*Lt)t1`<<@rx^px23F6Lo*n*{@8tebPv0^VcQelurN12 zxwz=<>G>HJ_EK10__YWhf4-iek&%)4Z_PMdWL;y={Q)26UUfDP7s-i-_Ew)yO1rHc z<%Tey1}CLSXAiC`$SJwQe*A#5cr8cAmMjG{59Q4juKQctp(1^w=Wvf@Q2UDDGE(ff zv+o`_O}a6Od6cR+VzOn%%B{=Or?3)0E2=&Ilj!ad3#n)U>)xH*$hEb#A7m)b127~4 z%R?X2C+hP-)Z4)cS4JixP1YhSrzR#NJ9|h){@dVf9TL!~U{O^q#{OM8U6^?H=I zg|dG}A(_iyNZ*dx-v!ZtmRo474-}ySodWix!=2nCJ#%|zMd#pvil*+;NqPU$=RW!H zvwg_-F9UiLv6D%6Ath)oR>PMew^A%w3AYGlWrd&!gC!?Dn~b7|+FM<=Oc$UKAX&m%hlU!U zDXc}eP-HSoDP7c4k}ipP%i|4-U1Q;TS>cy_(L8v?`v9UvS_QaQP`jvl_)_Fp! zR}3Ad{{MADcv*^g`C~UNkcmrj87Rtc_4r$FCHF@#iv}z;juErqkfT%38YmC!-}lM{Dke54!Hi`-p5%D&&N9tbd1fvArqRI zZ@t5h*l4YBxn`F5rdrk45}n2n{v;)1&9D!*Vdis1d>>%&UUAOlgsAnbVshnim@^_> z%IJ=H;gSAQ*2vKQz>uzxm6bQY@~}u5cdpt18EB$m>UiH$JxerE!yE%3#b&|zOHzR} zkE7;5VqPA>Q>RdN_E&n+{evT84WV5jIYraiXNgr|e_{UVVZj(0nQ%@e?h9LO95!tx zXrxe4n)zFjFR)d&&G#$z4-bdN;IVqPI_(!YiX@GuYq(}}U=Rm>deFl%aXSyf6xhzQ z&t!8-D~t$k4>_<;Y_IcD4ZPB-lkNM^zYQSn%f6`&8kZ7We46T9PfLf`()_ zdn9lte~uGJ6>yrUpv7Bz7OXYFnpNuR_UE5R5HPYjP7%7+0-8N4LmTO3l(pXEq3&80 zejj3Di+bp>X^KmiD=>*!FpCay1c{k-%Lp`>nAo|%(F-Y|nvha54v~~Fe(cy?P`@jY z&Otjv{Hd=%o7d3mYweUO_7BGgXTfdKU%nmJW39hH!G}Isfm;Ms7p@UbgY2sz%v;#cKRQ0P=XnW+ibEY#b6fVt=?8G7 zT`i9^Pt#piln>vKq~9go^jA|@hS};SZpZrtibSQy=I;z|IT-e_P#bcd>?{uS8Xb4! znjuWjI(lC(xeP64sZUP6&0>sqq5>@DklX1HWzr`x2~jAa*~m6bT!o8b9EEF3l-%K` zU&spI)&`#BFYA4d(_Qin^D;r7zY^O0F@AXjeU$Zgu{_80 zW-a6jQ|{$2i^{#H2DdiF_v&X!MPqTJ%Y@0PsL|nLI1~eePQIod&;3>zuIo2s)jCmw z*zn@BXFcom{jJmy#4Z!30i^Ed3N&%|<4;j4TBCvr3a(uR569`6&gc3~&COW6ret^C zOH*amU0L7XK0H*FIQ*#>o+-kawmdS!|IU#v7s}Gh2-&2b57m=(J@@W z(F$QYA)#e$VS#^zaAPNt@3aX(6Kd{tgE{tBW|ULozry&He#xJSDABmlYNUP_+_}kK zsfZf*mu1piZ0me1>0X5_W~_afgJIf}~@%tVxwxR=@}Yg5hG2HGus ziC^xObv~}-t(3r~vl@k7~qO@ljStKo1Eu4MK8LjeV(=p-G$;uF9E)H=P}jeT0Fm-Y_- zi=v48tk9&CFx~SvKCaARdpw!#!hadAbY^OLKp zK1fJPy6t2K_C^Xozg}YguyoW2snLGUE$gT$^Jt}6OkM+=d9QaB%c zpQ#x`+Wmez94`C$C&Bl4STQz+j@o4T9%1zx4r z+2@ZOhTth%J}^2Ot{$j9_F6nsaQwgv2u5PQp9tPl45Tfe-8$bULt*H6v@-T~rGQDO zQ#V49@CtK`ZCm?Cnw;#Nn^NPfSpw1N=Y&&-{7TDG7Zdt7`GmKFZnP@XE6Haj%yz>WtArjOXz5} zI2M~Tk4bYaP3zx=bD3ZNG#Lh|<`w(TD`XS@uTWs$;zx!rT5E3^kew0PW;Q?=d+Myu}Z@Y1j7wY|J-D=!v zpOKO&nB0nd-@9#g#I0`9V)vFzVchyCbV30BR^e<*Ob2z6T?)UWd)oZIFk)=eH_g^C zbkOjZp@PYrR(eIg2s{)34Rknl^mAy=K;ngV0N|8fHClVpH{3yk1e-J*+cZssIWRe2bhuicCIgd-A- z-iq`sQl|0W`TIs?E>!*xEzDCH^GjuIvpmE{1A$AouKa#0i>k^?!>CJ|d-q&Z3J4YX ztm%RnpY`?E@;i`#L|r=C*^Y-!C>iJ&9d&*&YcpkT|LFDh1gS$GmyT72KBWZg#%P!Q z2d)yi{UX(q2T*V;qctC0P;A=yM8i&Ab-}YrEBHAz8PH;p9DfQ|D(FKv0Kq&Sp1s_0 z!tC5!hq-fr(-QV&#)#Ys?a4jdvmD-V{_loFuK!SB&1K1Ly1{C%F5%1s9PF-7U{--o zbx5+r&-e8_S@P2~nrZcmnCA}=(Xyj;0-l-3e}Wm7BLu0wYKQw)UnH9yv3d8?D#M*XE->h0hh!*7$UrSN) z;9K0*uW|Skknp02F;aMbRPkp>+jfm`uzSOVQbS`qK&R#BY9U?BnPlQhN}!!yqZJN%F}d)0z9Gtt~; z77Gi+=__u`j8G&4FYDO6kRvJWW_+=PatYHqw;8TIHcHIlQui7IRG>UOFrl2X_&=dv z=}$+F9x~1z)iZd+5NNo+4d&QoKA5ezl=idhY}wCW_18mEXBTE4D#dIk)U?fnS_4tW+%cboPPkXqgs>Y4=s~y#3*YpEz0YpMM885fkTi7&A zYZ^yxsO}GB0(Q_-bcHaiXWGH_<%Ryl)^1Ll+slhzdV3#pj$aysW1qcit)R}%n(u}@ zo1+bngYVka*~@&`mo?F16J$4s>n)PGOqgI)uXaZPuZ|v0)8nvyE#50H?7+=o>uhtr zUP@gco(odq!^lzZ)b&d359q>+U0wNfU-6zO%VIC|7_tkon@ z_d30wYBj{z$^I6fS!PPgX9njwWH4W(_ZEr0Gnh%fEbk-@*(ad<$gAAk_y+zeA*=4PU5beI4^MHtV^8P#V2Y&Qe~fN#UGX(a?U zSwiT4ad!4x%mP53fD$UQP^ETzoO|=g(o#B5@N5k-HIZu>kNy7dkb7cY`|!wR{i&j9 zC(>fA)5QF$xpM=GCK`OI0*~#JRjnx?U<-r2V(Rl+s?bU*ja%FC+!j8orAD2$kx}xi z-1Qx1-tYIPG2;lkr(izc0M=7W&-)4!8H2%4el0X-!qjrgN%I376r`!we7$=J{@4%z zh9%6#mSkgY&2F4@k!D76{CCeWkl%LM!>B9n=+pmaGjaLN3K>68H0T# z>hKOY>w#Y}Dg0kM8;D)4PN`OsH`fJKQ+Uv5*qdQxcDUn$)4IS6%yR_q{soFKlafNw z34DvoUV=wPZ1M3EHeE1no}Nh$Cp{&53n{XV23Qi!<-2iqym;@D{|J7goaSsnjTy8I z?!LSndgPzzDAE2|_)+K9Cqr7gp|qC2!Kx6+rt(H8Zq&%E*su;y;EwOf+Xqqb;OoZ9 zab;FMv{BVF3%dUV%8J?pz7`C%Y{p3K`e)p8H*iGadGe{A>Uo6R+1>_44HQ%7c|U&q zx4k{kWVb#Y{Nso-gg5a0i(F@-KFVBq_IhkB4#Ir*g)8%&VS*G4M@B<R@KQUp1`2E-)kf!BpRK()!AR$+jXS6eFA7i# zP3B!F0+k`XD_l{F_mTo*pN4P z4ao!stmm7*N{<^(HSY72TS*=aXTG?bB>otqJ_`^iI9ub<)2vtdyykeY4{Lp9pS2%V z_9i1aLw#EiG(TxU<w&zWBC9(=c!`tkN>K1X;% z-96;hlS-5Rm<;%{0=fGPV*HY%@yTDBp6%^H82j1kT-;xyM}fdGaJf*?(KkWOV~J_S zWlVJRe4ud*&Vw4OGclr^v0P7DJOTlRoK_1-VWOu=PET8%Tq!E`72P+T^ujGVh)mKJ zW1Kc+-%%~KIuY6b=v1kPc=iwUAd_~5;9gzQt9;$GCt{Q`m6Lk~YQbi6IB)?4^NF6G zFT42E-ES-pg{6>_lymNY-|FAA=S)UZ`!Mvm!iRV@N#FVO+yXs zZLYyC==g2-{y?_}Cls|LBfQ}@813H`MT(Vf)quhO2h=sH@hdd`58aEF8?gbr%-VW;j=zvj zpHioWrDOF!)1E_HTToiIT{hDseE}=!$P{Y!JD;QV-xIkTX`@Cr9FTwe`-Rh9%_?tp zK34hohz3Jg?^E`Fe@rb+E5z$q)=pyNn4X@crM{@3TB+H0M0a7lRbj~l(=WJi<6b(2 zXf0`MykK22KVQKJ+SCrL1cR_To-mx}rrY&7vMc{4O=x{R{2;L|rV*Op9CD-zYsQ{3 zUOQ=bU8*i9hU2ACH`NHBPL?f8RuoyR$QVU7pSMBB4+sndWqf?Qbxl>C+gL=bf|SEt zsZ_L@4SE--y|f91DR7`dK)TLrsY$6@M=q-LuW`5?Qqe&(8^Dy)`X;SwD=W1vp)?^a zCH1;cHWLGwc8W!X*^DNz0Q*r6$Oo4ScA1WH`9B!th@{UmHLO+2>pa|gC#Ru~G<2I( zTpNu_L@=n2UTM%xy^x&PHNInvHxscpldpY97^?fFq%v#Sna|2medvBo;QEi$xmo)t z1QLRI)f7sk;1z%PlmAHHx3SjP9p}Xhc8{Y7-BcI~8}(E5qSh)~7l}}(YpG=N!}}jv zlM}?G-hCF?M;TnU5R1>D(f*)5C;t#F7Tc;sx_absjBT{O3kG8GPpHT3*Cd%`_ri04GsG|P zLc;dkRxxa6>3TVT=uUu@H3nqS;Nam2S@e4m7l4TTkFG8uR#w*ew}@7Wuuk@l03#9g zQ!FO#BNv;)BsbtU0BCpG+xqYygHXl^Tqw`ek`jrvz>}WG9`EoPDRE!OIrR_Ee472q zTTz%Fo?6_oT1Dco9d(`_EnmJ+XlOW_?@-)Gh;uZjD=3(dO%5k*x9c{L<9hK%)%Hgv z7d1P5B1M+YR>dZ>i?{=`S3Ar1rXM)wzv(>hZ{NU@@oVfkMYXPPN=HPINDfz7R3eGy z%B!7CNCdL&CJ}JBvp)@sExagg^POr%n23U>Wmrma zXSe0U^>?%HlzkWXRgG}G7*rI?oE|VBjhFyX@xcP`L#>koAu03Bc*>0HVlqup`7Qh_ z1W-WWV7lGA4o7HVe>udNt0SLrGEvOcR)dd%jfDu}9V9 z@4gVn)qs71oNT@nJvlPp50)XKfgQDgaBpm1z1+-R79Ko);#N}`@YEpI$g2kb;n-6nf2(4kk|dLl)_Qt;${5Yt_44T zC}f#TMeWFb-vXAfri!!=b&F4`dnL%Sph~~s^rREZHGjpBI33Pxy+yCPG@v&4h{FlX zMZ&JKn`B*LY5a>k$*PnwCN6f~u_`_;R#8RUbXrFGq0t#PR5Y7Jwr;|Vo1Y)-u1vSM z=asHvXUjKp;s8%$@e!>Qpos^nm{++IBFSqcJuj67xYAAtdCrR`j<(w7Q}E4~rI#@< zpLi8BZZaH5#NIXOARzKvu%+9%o(fK~j%rNQ5yINo)EM2_IVj4oH@;>~u0BQuP#o1O zLION*RRqE3=%s2FRRFwwrKP38@-g$=pFXXujl~I8?d@7aPsJuL1ozyS2KYmEHG`rS zmpZ1gpGdr$STY_3A1_W~z1*=d*^z6vP1_@;+Nx^SuSTr8FUlO?Y%7Gn@HIw&$|Q(e z$QhlGo+LOl9}KW>R2yM{7z-#@-ioLJf^-iLk47mSv26u1G5&2P>1y|w{u-*f9RJad z`}gzF!frIlnz<@3Jj|)=`tz)5*Go`ez-jP#R;l4@oENg&WsSz0PZy>+OyF$%%qu~@ zygJ)C+cz;4q4?;+#UlUw&nA`m`&gzh4Ix(yBD>YbCgqpt2jX7?#tI5i20{^EHkp{d zgK?!H+f-&j*U}+v#gN>iLRU-kJXl;0?d1ItJG@-%)M9I<*w``YSOR7E-i6*RSs80;Taq85azIC&_GIS5{hRPBu=4wX0`dz2P{JotwR$4|bYCk#6nRC39Z$H2d z@exN$miaXD6D`lBc6wt&&V698H3X&`|Q@^M;SRJCP4A7v^s85u4{ab?V(dt@(+MbHYY4 zd^eoW4!=Pz?ka}Ohw%_N{uJH)QXO%|kE~Lxjx%@A>x2744oc)+u=J1T$(-()m&sdw z(50nYZx19IlWJQrpcFKJIC;Ax@-eKdLq7vI);!0J;a7J0hsxXPvN~C$317k{S?%Uu zndcn-*rn}%d+E*V%FLO4keF9V?@xc!b~B`8zXOZU-=Q3x#t9&w_({KZ;ys4!Y-nSn z3CD}CTflX5>eU7fFMw>%008uXrqHkW_`DcPO)?Sgbb^yN;^J5?c7GHl8W?!pF6ws@ zYGmwBEbHZ)5Fm4ogbWF~;M=6s28o+h0yQ4sxm&$1YdYcr7}!J1NFbHRoIJ?J#n8TjaXwyh+H7&Z-U0_369re)Ikoc@YVKONH@%g zYzjQHE&j!i!pv^|fpkV#IsdZlqJxN5_n3IfO%{xWmdJ1o-F|2A5q*;4ou+Tk2R<1= zZkn)mE~}>&pKFMwl1^MzesQk!rCofBN+{7%o>sTncpOWH`nLkw3fAPaw{r7t3~F^& zgv8zr;gdR+6x?Nz*#*Wk-WwD}ZF4={I;HxHT#k8ZO(|ckJb7MNG>gm;&D6`!@=xVx z#gBC6mMJ&RdCa{XhC|HJX8<=a`Q&_-Ro7n#S)ic~T}n$G-MiAmhR8 zWPl#mI<|Cq#wDt)f}_pH*H;ly#{sq*h9KQWoBYMKS9-q3Sdr(2+xHjy?QLE<2_(sV z*`IZ3Kf(FP%AG^0`NU%8pNFZO|32qFa90Ul9a!5HQ=TQr0uY`BYJS{<*Ul$-jHm`i z#sV^0Si?EWhR4RtY17|dpY`;zjP7bvxSi2}-t}a5 zTFI${Ue-zQ==*RWqFx*HrSf*c(DHghQP$KRjw)C{UcWTLazlQ?=>=#E$=%vsnLmjy zNb2tJEGt{sju)TqPoM; zIoRcGC2K!6y^7ZyZLM$D4&;j9KpT6$r5k)8m-<{yslM!jXGtvF{ zLq-}{TH?0TQS_v}GPOFH1h?%}z43zhjrEWFQ>KMFuJr`y7SvgF=?U8X^f%MTC|Hk= z%0J%X?;`wy!>230Z$dX--`VQtr*?PhRdDf3_Lybooq9QM;3wIeqhU=-$JEyEh)e(V z513WotD?ybH)B6>bFS^JN!2u%yZKn`(w@_t`(4^nOnuHFAbAu1Lt^V3amDo2C04vd zuVI(i(i=gE8-=Uor=l&uiT~uS`qN3+@@}bgqM-M=p#Z1YWWa#`H9B$i*dZUQ_J_Q) zs1!uBFWW_q3{6glYg@_IT>zk`t^M5IMnVY#)YoXbgMxxk-+lPZFxxMxBZ@a|YRxXa zEzxMuY%HmEREst4Oo7s>^@5F-HpNO?;euwIYGp$|>`4G0pI{w2Nf404*PT-gkD=KN3?cN&u?bO&Ve-toGzEqg!l00jMwq z71al~3lpbfrfFnqVGV z^=!HK<+ohvi*YA{e9f{c8@bts-ozbwd3hhUX^Z+n7jMq%?2HVb(QGk*iRuKv$&-_l zofzcii96gZx&b3aF77gGb0n>gMqfZtA&_P8EA>0YBk{=>oVA1O;J$1801(GYYDw zQ86+9Kt2r83wZw#uUR%>e-0Qxvl!)uvArxHHdHoupZur?Rc zpnD?EU?K!XA$v7@XiVZmwUbCPRUChE(!iynQ6*5nWvu^@S_%NA^2~T)Sr+W^8hP54 zAJgO48XxiH?0L3-Byd=#?EttNfEQwVgcI}2L^@)#gU=QXeJcnmc*o7_MfqcVk1gUz zIe{_BUD86xy#BPXw7A&xC~7eB!9PiSVfUN%)MxU2`Wk!GwRHsLapiI4Oc}2-Fuw-B zrXjtc$Psj-CVefm1=T;2I+7+gq=LEf;7`9@NVFdsVBMZt_Dr)+Q&cZZ%l^p^0TvT{ zhw!x)2S>-vDGh7OYU;|8Lypfr1z5T*hQ#MLr@x{w!|NE^mPR;ia|K9VSNni$T`wrA z0xAzwKkJrpss@iiXnWmK!4`a2XsE^HX`=5GDHT=MYkhIXG7AYcjpbwk{4K6h59j_r3~RxcbSf93u8z|iOYHzM-l~N@|?EKp$&+P zRW=)0r|bTSKEM?BIU=t73&H{#wRYeHD6&ol*-G##h5Tt~r7Z4o$gQZZffmVYlE}Id z@@qf(mGIDRPUGvL<_nP2=k8)0PzyS`wD83+Lkp@cNCn`1_hYz^n-yWr!je+}D0$); z_6r^&0FmqPF#qh;A$*PtetQ53)POF{ef3%$;`MGZ2^mJ2nE2RfJUDgL+e@GS{6UR^ z7};{}B`%~q2)_9EBJgpsv8N6@*h>->-JPAkWlo*R=h{YJ!zz)yMuLZJckHM(9nS&q zbs!Z#_xYx#28xeBDu4j{9Xt{w_>$lRe~Rbpz@dqoQ~aruSg zMkCm|oOc~Pv2H0w{l1q9+tr19HRhv)A%HAZ#~{PQTB;ebOJ3=B$$4$QjNROPlfqv% z1y~(MhkAq1uC6qL!nbbULR$k{Z_HZYZFa{fL8`c8<-4$wMjLTxEHEOX_g9B72@ikX zoO*)q)uG7&JK-ULq2uQRH=x0b?h{+3QfNrv)0r3oW*)}^?(mn88$O?f`CD7NC)Llz zO8uW8lCahTk7bIT+XO4ZYg?T#uPZ(XF>piR8Hbul@0ng#WA_gj?NY5QLqR8$A~on{ zKt@86+h=8EwFU3b!fe%NBEA8y5fOi{(@8hehnrK>qj_0|`Lhn^y~i8($Bd&VuL~p~ zY+zc6WT|Qp$LMb6ee9-H$B@A8S_vfdQr$EiZ$Fr~-3U#$zB(k~R)6TKuX5aoR-u5egVHZ4L!>f_iu$ zo~Z5!S`CeDyU6r%k47GPIm%ci2VmY@6GtAj{Mzh~udF0hQQ%+ zj68KVy6B4WkzYUgC?{Sg7{oE@3>E*3HJc^zLD%j5ON_22EsD zN>#0l>a+s<3HO4j*G7ZuMMTqwP!7v81LQxWy~rFK9CLNn!+`GLllLPJP%{4~6Xk%B zCCr`hd)O+@d)dm_+1OPanYVaJCl5S*HD_lp2AWmK$%*w`@W?N(VF}`^VC4l(RM@U$ zDKlu?g+t8)gn9elYb}v{vVhFPPAkdd-=q2h>1rGbR{}%N$~_Rcw@&d8kh4qvbe3?SnHzkV)(Cp&yv z$E(_5S%D*vg@&dNYBKlah=Y+L4uz)cn{p^4V%$CMx+=trKgJMp%7RVJUhLU*#6Wb~ zPU~3!mf$oj=&uh5Bub(JG@(^f=NdYi%9%tUUWiXaeBV{Lly>Rcf?hK`ix2 zgJUF;w};4atKA&&Bjlpo_uvU`g69er2bf5TptUu<8n5PF|8^4R20*j#)@f$8oCKCV zQ&;gITBmf!2qlDXT4}m1M}o6uu1wM`fue)H-bRaGcK?v5t+q9rU;zHEx&ob64^Ac~ zb&BPmBL3`~RHXrAT;N4wL}5Sy@;SMSU?~H&m=ek{^vTg$*g>kE%6#i^g0)NzqM@LYBXfBmNM#*Le`VdyEWpcnW(i#{nCJE4FtOKpcE7u=#cbt|gF)Fere!EucMye>Yf?W?pEV z?mEzaW?(vwF0^_n(=BB61q08_Ax=n2&_BV~<_gtl)`FZ)=dHxB`;y)!im)2{{Ld<5 zW(j;=5fh-&GRe<5rJ<#Jiys92)5@rYXEpvC<^E%BQ{Scx+4$Wz+?DP#pEr$;`=a1Y z>5T8&=gn(KlQn-6vALPDr_bGlqB&H7ojFA$3wGJJ)rieS{8@a@`Zo)2q-Z4+TGHK^ z4g1~{xI51xdObe4Ca;RcGioVZFD@*6vQA8xYH@cS{A^-ikn;uyN7TxS5#&ps6=CJ& z+YfPmIX5+N13pr_WnG%82qyS06P3TbR!dDS$j=Y%u(%6>BTm#+K)9Gk zu7HN7hDR1eQ4=w5CRyKPWg!*^4j*gC71E_kk+F6*$sS52{h0#|+i;n%iikeS9%uWj@H?qka#MG6R6^ccu zGK}zj=GK%X0Usxf(l0f6d0j;vdHKv>#r-RFMRoPy)Ko$cN`u?C3OEXn=4WRMuJ-ZB zOFjZq4)`9QUl~wJ?d zz;n+io(0b`WG^{*r)|eu<4Wh$3)X-!uI*qS>FXABy(Y?2fmtUZgX z>43z65{mFxuqQV+H_&*TD6axqrnG#qo{_?`d1zrj^rOP|EDY)3AsH_Iuo+LnS^&+C?^M%eu8^e8>{}R-#euDG1Cy6ooLD@P# zPJ85p)u`9}%+@Nk<}I=8&dOH?uE4p(-)P}0>&SIO>Y>vc>n1cpB`ryH5f(SMb*0t} z)+Xi|KP4j2Y5`M$Sm54ZV~dJIP$*lddUX$QnSZ-^Z_plOG&iTnhv2+x{48q5foxkG zPue(dD(p}<9*|I>9RM8ZLdU7-aGp8t*`EsgP7IxH4|z4+Ra@DY^|A~NPlxxfwk0;N ztJXF{!HRr-AfxO-ySXhfoViJn^Y^b1n2ilCr)1z3vTMsx!k4-5qoANXk2Ewi00UsA z_q1jmnG~1nh6|&-G3lrYw9n1d@o>Gz|MB2@`)$O$0eFsdo^_2C*P+(2-k(&5pO)KYn zy${yL)+b&NUmW2Py*Hz??HDzv$A}wFDxl~Rj6Pky*7310znSt|h;)lxN|Kk1Wf7w1 z-Nmo;kmd*VWXG1cX8v({nzhQCtdbF>aO~p!OQe3;pAmV0c+Tj6xJM|bygV|fJKWT= zQik1nNlHiv7J%UQ{Byt>Dc=u97WD8Bg9oD4R-2=ozi+TkE=iZa8m7}6dfwlzW}Ql( zDkzwsq|LiX8OwKK$Ta#iZ&DnGIz{TTf7Uo;&X~SPAM$4tNA|r>e0;n#{{H$VC8g$r zG@q>Gz2y1X`-(=yd_prO8X8?wZLr*%pGg~0`N^QJc4${LC#03S>1b(bm2rI*MJYb~ z^y$-yo*NhNaSTU-NImouk*3}xwY=GG1pRzmmU#P9wMz%Xpe+ZmY01A3p>sH1N(CHz zpu0}vQ2XOMc2LzbjQ;gfhGe+ zn2imk)vYa2FV~v7S&+dmn0N*!Fp$mrFg>AGgdl3kb@(S`_g_m9UBDpl|%bykZL#P`4(z#0Bj42psl zfNCdbuEJ`uk;P~rLH#f$F(1r*kg@CIq+!_Jx7B%`sU@RN0r~33KNe$P3#Z(*S}I;> zeu?>!A7L05M8?%#I4~CeM?H@t+1h)?$iA7*-lK$FV%7(5`;u_Nrl++4bbSYID9xgn zGYFlZor%lvihzdevnZ(Z?mBCJ)O0&rxMGMP1s*&qdAvcQKCwqOGDPo1K0kX$ zVekCn6B6>1PhLZDq1K0w8tc;?KMF4y9jBB_uK$*ar7AP5edTi55I#lN!A8QRlj}I1 z(k#wjObe*GVhh&h{cFLKal1R|SEMjLjG_0klD27ji-&iI08^%DO>)kT_b*9#K{4f zFd*&^HZ@|;Te*5HPY|h|2hqtuE$20QlOGyb{g@Q06efG#3X_hoOwk+u6V6CM5F@%bUDZQ~(e?>-Ik5@& zOFHKU^M+-%NbK!UTDw^Trmt$>1!k&cFIIZbu%Tj?1MT*Xw8qb2VB4<_X8od4g#?lN zp9!XR^U{Hi}FmMd-NYghe9v%(eR^c~> zxad#eV+u$~g$mB9?p**NPgaq7dA+R0Y$% zGD~tIHPh!pWGS`&v%D#rZrfINp1TOQU;EQDV^UCFxT});z}M2mndNF!I)B7du&dVc z>`EeP`MZzWe!YWTs)3}Ph>SkDR+Y*8aL+mzMWj8lz5i}mMW;b~;p5$rN=4q!5d+S% z5*a>)efvL4d3W`x7;et7*WAvdVji`WQ%l2*{<&%E0wo3Jm{C<#wFPB+>wU3wGeEM! zMIhGTq9jO& zqn^6TN=$EW@4=SHsVn?5A6oG_jSiH;40^wU?UBGnISchRqQOQPeSB>cqWs$bI*f&bdiL}M{b$`dhXJobz!CNYZyi3zqE0{_?8 zn*2yGbMOG3m-FzKpqU#_4ZzD*%{G1GPVXvJ_n~!dC%5saVWz58CEyb@WqG*F!!O8f zIOJ5Ei1_)vl`VYfB>?FYATts+rT(11;wFGJBKnMF>jnLAkuthDY0~-1Wihze*cE!6 zFHcveeWv4EXfO8`QGBqvWk-sfnPdp~1wVf?DXF!6M>Ao8^18|s@woZYd+oBm{b$4n z$%BBCgt>l2K5KSK^e~^3-**gJiFeUzdY}WSr8dk^abRpijAVn+^FXJEiwdS#?TMkH z!hLtu+Qgenva#81ae8c^;949sA+P_U(TC~bx-`FMB!9};#bjtJO{0S$khxydv|_hz zty4eTW<@a)7i{&q;OOnAT;c=Z`Qi3y*|ZqFMLy%N--z_LRp)Poek^53R?gYkhsVb*?i%fRa75uFB3VjI zo$xv%>>EfXMWv?`Keo1myGoLy_!fe=?##;U0q>)p7Mm>UE zT?2Z~0@LDKhmRGu;%3mupQSt>^l`c(zcpSF{9Q_C|3!3d-A&{Sy{yE!^48*2bz5mi zP6@w{?Vt|nX~5L%Zyn_edjyb2B3o`9&jvMn47UeLmF;$ zr>4Vv8YRQH+bQN$aCLoG#@$d}-i%63jXMdKl$!dxRxw;lb0L5BQ4}+?KYQy7&FpXg zyM`%HjY!uj)bZ9yWOZ5smsdU>n!Os|2Oa6(M;BC8GCL5Gji1(e((3j^_T*(7T#qi zQYeRz?<|%*$JoXk2yjtkcWCX)90?Wck0hS=gU*Ak>9TEK3j$)RKG?&!JQj!qfJ2(W z1fH@f$JjGNYo=e22RM&Oz)GvLf3;7>%MhFYLvpV~=kAV-VPK*+cTh)iy^H@3hej(| zmJTt*>2Qfbt6na=stQX)q!XgqsMP)s`Fi(?^TzuAVG>LSzF(lF5OOM!Ia}PSx=z2z z3kM4nw;v9zy`vxRrrXS%bacG0GT&gnf&8fuj{A#Sc-W2GUZJu5sQqC$#hhDQ!U-VY0@;OIL*7Z#^^J{~f+b56c6Wlt{q=(a&$+IAlp8#E3lu za;oheUZJg}A2U?P2p=QM6L^~z&6EgAOcG^g-b4YbL^ zbPg{_?h48C@Wt!QvY}M^MShaVgR%Yx?jy~TJAP64)$O@()oq!$YMe|-91(GHYh+_E zXF^-~%v^;OsLBS?EXny|?|#+!R~g91IFy8pi00`Ahla+0>K|qHXwQHcQN=rZj`Lq) z6xpNswWE*h^Fv*(glYtvlmB!F;)-L0O_R#EU*<=JJx@Pha>8< zE1s_dm#en9z!?~BVG`-dy8PtLw!T9AHajnwQ#_!_2i5!SFk+!n_dMqe4Y#s>wvBS! z7j4t7$(!GA8GEU6@E%Ny`LyxFy#Rg_Cnu+=S$C3ja$8)Q+m;$+&e?{Fg$BVVaz*B1 z@15uu8)}frIYrs|=QnOtZhAhQ3u-S3H#aV-XygbM z{hwkuseL%;E}`%IdJXhIBSt7)$kc>adieeq-gxmZa*$HEqm8c>^jxurUs>wW>Z2nw zAde4Y$)UTKRYtX{tu0c0;?i&=y9UMTj}djtlw}!8*y&T3z)F10wtK7Rtrf&5*%W>%P=6c6TX|NGv!(8!Gn}h$0 zLJ~bv)Y#DI{uUx>=&->$L*vP0v3q|iwG*eqQ_1og0$MKOt z3ks_SrloZ4)3X`+@`bsff%7Kt>TiXXI|LI`;q=U|bADc95lHKae~Ba)4nLe*C!Pyg zSRepPHGay+@p5?ULL=9tj1W*8*iy)s3H?$gw_(-0+#F$7u|n=iEhwK zS7t^lL=N7UWgpHzlgm%7F!m0&50<-AeszdwMy>9PL?yRJY0bPg%o>fCBMYrU9x-a_ zHq-;OH!;xrYpmC=GlJy|&&&ORUg@%|(!B}Jg6TV^LKq#-%h-#r&Mx3 zpbGOVGE&0K4Da^#HYYb192B~7gAlw|g7bS>Sw&_)d*U$PW7FzDucyoH1QfcyiPe)B zeeZDYLz|PAsy~R2k^rn=HXb!{3j6D!F5c6o*s?A$f)@^=^$#en5j&y ztVY#N5;RE?i@Gh)~>sii1j1w8!UiGZlqe3}sgfNd4dHszCTd+EpId-drUgqecw7OPw8=C<&hc<7v_5V`T9A z{E%b$T^CrpshHffoGFKmu4MhmYSw$b%_XKMWejp+X_ z4r0rqJBNGR0SUrvabEkEJEgz1@K2E=S9H5NbqOPepi^7W^cCF~XmFEcN=3uVd0mj? z5AKMFSJDYemdpJexsQtaK31f+sfepzU_!~0tUnl5ykpi6kWL1^URSJ$eGclU{M5r( z3_4vjKqi5X-ew_TA{*I;ag=B_ex#{_M&v~_@N~}ewIV8(xO4-CD1W;!tm7NA5)D?! z8~K9rwUXZh-dqx%)mGUltWUf766x*wghzN|`!5GqrYG%xKgLCAIgALymjel zV=I29TAqp=+UQm~5mk|auhK?GqtAOy)n5LG$MIqN&(GF}a!YPF^1HrT1`w}z2U>lF zma>^nMGsa!^)4Ka{rKD;nUzexx@?i)H0@ao-8HwnhT`-8nO_Wih~f!uMqBm3+B3+J z-Li@|D#e?mn19lQW(vN8+nZo{&4{zUw$=sQZcc|CmzD@k`mX8eFIHA)zkeGhMZhrh z^nV-ckWb;kkd@cwO5>w)yL!335p+|Oz995hYKbCe8?H(G%P=)*%O3@D;=sga$C~BE z;jr=9ZJ1A~o@obBA!dua2j>pg_Tv+2WJFqrhcwdte<(kJq?EhBmDARS$`jS}g-hIT z!xb~r`@VzOv3_Fjg@fzwm#=-o)2uG`@%u3P9b1IBN6W0=6Y_4h%Co&XfL`Y;fV3=M3fmhj?Z*GgnR9uVL*?t76zgcvQT4&`q-4R* zwoS>U`qD!`p4**&r&tMMVM_f#f~2!R5r7TNW1RY28QSOW)s!@S%UB`{m*YnV?_bJr z8?WuI4kZp#W6q3XZ2K`qC;nj$+Y+kh8I4k+|(6 zo;1IA1oq~9%%Jo2KNhyni)L;j#B_br1FgPmP#(S8!QJg2c-lbCW$%TZD}RV6mx2$K z_K3grKolF+)?j+~$!bS~=H_2TZ!dTsu-rSsx!fKz**5h3SnUX8wSMHuNj$q{s6Zd# z1p48U+aZKRi67#&wG;A!hlZ&5mHqjy|MEN!J)eSX@e}@dN)*yVjZm%q_ozj_!M`NS zDviL?vf~H`1g&Jg^@mWilrflH*)ua|F`*E7 zA_+)4ay->afat`Y`RM(1C{bs7eKvtipV6abEc+o2&s`*~OmeWRF9_o=I*T_oCc;y6#=(z52e$W&6}p_337Cjp|wp zx&8hQZ&i;4?!|@Gge&-&TV0K+qm!LW>H?7^#u9PeExe(p@2Tayx?s_Qk}<5@^CB z!})kXqS^WiS$EZ6?#hu^*uj^4+3S=Y)Icx5xr+;jO9F=c{>L+`#h%_?`FZ-|saM%D zAZW=^Oh|I-or5bxgmXH`qqZ??ry$^cm}#k-8~UlM%ig`(;)lepJhtBQDrKU_%RGkEoWS-D+nR-m1%@<9IKkz_Ip}J&i&ohC53aJ!~129Zwx6fdcBZ_RAkHS z4hYKQf>F*L?jIPw(A2Bjr#b9q%x_!gbtb=SW$Ut`=%c?p_g((3s#?7A`}W-RaB@1~ zvL{61B4#;dD(Lb2@tT>*aQgZ5dHD64EbU(7 zq3n}3>oyeS5zs=|0m+LU>m{zP&{0uB`jgU~D-j&X%I;*%fW8w++5x$_E^{y38cKX2 zFym#i%c11tb%}nk>cE7i@u)p{;Zr(mgy>@1^xN`u)+PCUkV^5)E}&jIFdP{Abv!sd z9godz|4zj@r(VtA(ElNY;DrGiLPpPikwS(3w@o@ zR%D!I&1vOwXlxCv|AHJHhbjv$NMOY`nH@E;g#Bx zx;mRPw->J$`Mtw4NsHgpRGzxgc4N~NGa0r6o8vM<@8LmC#*iMw+;$4x zQ)fPXo2C$D2tK>#P)-oxW=QdUV{5+-w&B9|DkaMA$6VOE>kETju30#|x!(AV3k!iO zAKK`MyJUmayPE4yUX3x3VzXLL!%BH2r5HAPxhtR2nMBFRCSos9wVzvCTOXb+B30kv zbK+*$94%YbyCa_*GcOn|THYz{QL4M@8>H%-D6l5-`1~W)@=%U3H7oZqHl$T@k%B+Y zlB_%*OV*P@_KV)!h3GtVdk_7UVxCmAhi909vGK2TCNa{=s;Y@<$&bV^XXodWO48J_ zY2Oy_YLYzB<8h2_z74BzITII$BPbK0AIwUa+6JiP?omt($GQgw+K!iF7^F#(lDv-@ zu%}sIlX8OHJ%qWmbK00<)(Jpt`lV#^t5lot3vGSR$+uZ@P!Vt#jr#q<@W2o_qsH`` z(ECexxz3C==)rOsHE=`USFK@1eVDDFYwg@kh`E33Dp^k}B({WEIz_ium7S*%efUwG z#k0~V>{&pn@vwFt@+mo1M5R~oVW?U-@zM6~!gR5j_~YU9kF+anSg17k12vj6>_7t# zhL@Mu#@6l$2k|GAnC80gXe#S`p1$1ndrGu??WvZZzxBG~e?mc>ID5gEVmPT1lz6Se zUvoLDQ=<$UU-jo3!!acC+{4Jo@K<82p`zE$2x*NrQ`Z8^*oET7Fy@etIkRRZp2Rku zl&AvECUz`AFn8aKd$$Quh{Dnn#{1WNEi3?r49yi{k7XFcoxek|)&C*oG?fR%E@wWZJh)Key)Z3cft^5+;)Sy-2Ru zRSDe9!P-}VE6|!~EPYuIU1t)mu-XqcBVXhSy^9cGMN=HRifW-fXt~v(Qw9;tw)M2p z?B~Gf=pFCNnW5m+SyU8%HLRnR(}k z-(4JY`9F;DG%tGIB*gFT;r{&ao(d#y1AaSuFpieEdOF$J$+slT&Z^bBIA_s6(UWXH zR(rwQoF094x>5t_meZ@NDV|r+MPekWP3XDCWx#Hpv)s8wM<>e;YgfJ%=YuxoUYSKj zX%z-bi8#D~|553EY}L9PJwi()Ct^UGRaK;lc$Jg7&5zuW10V-ninD$6-@Q~oXJJ?d8AvUxQ$;rg=IZx$r$aYT7Tip&pfBP1~0cpEg;9C3u3 zWaI?Rf>0Ee-_4{y;?8cj&$I?-h4N_q%lkN#7dV0M%QQ7!{v$X>i3pDNWnoD{cbLrH zlt*zM7kvv`z~A-m-htxBC*dn9j~lQw?!r=_vaYRD1Xjz z6mlK*g+c8h=zG7SudO0{Ty?JfooDuZcH|bc?)k!coNl^xWS^(SYHBW=TwPIt8t;}o zMzW4a!xFP&9~%t^hnV6qb-@Uv<%@spb=Tn=O{oOk1AG27o$of0Ls=s8L)T%tph&y(n+i;An2HmaMZa znJa5lfI5g=5bB+Ot)abPl{9b5c==?)lIKMufQE45Z z@1{(>zZd4(r~Zd6)lOQ&{sYDE4vOMru}owf`0_}dpudxrJG50BzA3h1Z65xvq1t1> zTz?0<_GL$GUi}EK$|9<2T9)e9bKzv^b{01Oh-MxODpHzmw=5)C5h<^AvSFX&nF{jG z(NX^ZQAGkm>F#hs0KZtlk7qG+XV}`N{i}!(jU0H5wPF3Qzaw=_m|t<}+E@Y|8X6zS zEeLY`XveDa#N#XJ?Z3}E(SmPK!yh_z2k)#C*($hliliX032e4p=2PDN83pcyLc&cf zPgnXkuAjIEANIR(_Zyw`UED_ZUx;|zT@&hl0;!rY#|9j0;~MD4`Gc>GjPW3aa|6!o zU@inD2VPkJx`B5U8m-s3KkcYJd|x%IdJqGpp5+8AG+KNh(hUHU%y^*$I)N-cn3?NB zf5!E%n~$lgWf&2%w~>A5$+x1P9zV&FahbaOW~xNTT+ZLXRrkertqyT%X+_@brKKg1 zp23*;m~!?vRDIhd2-qOM05MS3G~A!1OA+iK-Q4XawO^9() zKcBcj#_R#RC)^pq@|3Tl$7JYm7}U&W$_<;OO*9gJI&7G{G&FrjL18#2C7@nyP#}03 zW0v}})#$A@a+^lrMzT;gZ-#_bTPpV^#v~9Fi0YOXhTL9wY;vD}#o{{bdzrU!(8( zYW_`T`Yu1_g(d?2zRO#9$dX$zalw_JLtTsGzKUOxKI=ANO*85(wCq~q^VAjY2mEb(UF8BO7^ zgT_0ADYa5uaWQW=l8-fa5nisYiRz`eSX8|94Q}uXk<=lYlny{cAz)J}X;`+MR()zyi?3~7-(U+Y~b7j`~dq0%Byx0S&0#{;*GnXk~j=HrPw-?c^XR$!36S!`V#)RIR3 zEg{|_?G-kL8KF_cY%3f;Kl#W0YW4dTs_^hbR!KTS@m51D=Xt_D&Bp+qLYw_I4y=FL zj9SfdPZyuVOu{x9%are@$Uysl^pEeO)%b|B@R4>@5v*VY-NEat_c`8QF={efhrmEF)0?Vgv>f{sOE?A|AJUcKq9ZMy?kL^6I>61NYugJ#6 z`Ocw_k@rPDjY^eu&)jz#woN??;RKE{+mqAwkT0fVzhpjjNm-cRj#NWwx^nt^bh!R# z$5!G=@-~$7;?bvmfPN9>JcW*7fZ;y4+B|vDZZfM+piOxt2GZ~JRqcO_dVdFPPg!>r^m}p`_h2)*XLT=3Oh2&6W%hP{|EfX6!0cdTV93 zJd(%#Fc|A}g|XQ>1?L7^llvrQ=h~h9{VdLQ%OC1_p&G3$?7e0nH6rG1a%OpX^>2U~ z7sN+^LR8oK>3tPZQ%v?&1#fZr}WbL-mH3Jx7&T~Vi?Z01X zr#)I^_lu%>Aeho6f@7hrgR*=ypIH+3UXx0#bPsP@8|x2A&hHQ1=3s1xnhavaGQzL3 z^Xe&p#Vd1{WRG41B5;Ez#b!X{k$C84)alDGlO~$R?c=E-Z zX0wb`W>M9QRl3r5+sfQZW+xPl3h_5Az1@-a;8$`tST+uOE^mBc6+gWv%vG^q^@PX1u$gBgI;&M(i#!I9n4f|;&z zKIxIJvLxhw4tS$EtwfcvbjQX9aI(t*`|a<=9)IzwnQGwplX|y0U-^~YxTP9B92Tle z-;qnD;Th_G{G^c=0;`u?v2nAyL$;jbI_KUGz#y_p0%RrXc_H54g3an@FgvY(T*)#Z zl&iVNtVL(D0%;vDsqoEyYB4mb>zygoD(z%zOTDS^`ingF44Y=Zbb!p&ORP`YV8Y)~ z%=zf@e);QtH+YIa84>dq-AYx~!(I@RR1^9;n>-Im$@>p`w{E_AmIvLq`2rX2nZ?o9 z$Q~>6b_s)D*EF8KG3L7EpkU-8ZND@5YULd5C&+M#R`D%a~$ zner6bOT4y@n~Gw3C;l+u@w&yptr`01{Akd~*niI?xNEHa0C)Ur?399nPFBfxWXH0R z#p?5YUw3nYvn&20gE4vYq39X|AA(O8!6TTDN}APRczpf4$3RV8saj&gq@u&Loc_AH z{U6I8wFor^RvOwxUwg{-T|AZp6J{nPzTROCh7-N862Ilpx2vwa0jhMci|2cW&Mqt5 zpU}vSshTuhdF(X5-OA2aw?s5Mgm7VY$5@2}x?sE%Rs?^^@ml*ppH@^f{{s^>`h2iZ z$9z7Cy)z{$X2F=qExgWTmcTn@vozZG^u+?=9Vd>y55*`dK!-E2Mzm*Jfr3k z#6$@cK@t~m;p$V6->M3@kaY^6a@F6G9@=aUOgy_v(1i96B|hzKT(n^;imSr6OV5q6 zEf~h|5MoWC-7&S__<1oArhG?fp}nkXO+0v~n2N{Wb3-%UY0FHJyR$ENi?$gizqNJ# zGKIeq60rX`8mfO-E4Je2s&lJeoO3(OkYo6;(7m_J-#Sn6phMnumc7Zdco=y(aliZ= z+J_u$AHEHZ203qucwG)tkIExA`|$J4O54h(pZzH7Qrp64-Nz`ut1=3h3pvhvd5;>q zEC0C)iFsr2N2GlxlROi$g!<}WkLygXt}w2x;=91!2I3cf=_8=gEbQ7jF;Q-_X{LCF zK}9d7lw(q5H}6WhDaz|h(@(O7*#G2^#2XhSleO_&5vHDez<6(Ou3plVev&9}R#%#@ zfisdX?cVr%Mg3(`$R>5-Pz*@F&hL@7d!rS2C<}+|?z4l96v-($}5}hyo ztbX8T%#iWA9_DY;_#uiyCaB-oJcU+nO=NOYmHgA~F}n`mgEbnFH zzE>K~*r`%^azG7ZPTQvhAgpm-X|Xb!8+Qe)Z?2?c7|x#!&#={VLRYRoe%N!znQoM) zV4Db3s7~Xv0ZEsf!x_yyqUq(K%SDq&t{cSmcC58WEsL<9Z7@j~+t&6Pv~%pvX$&L8 zBqs+K7e^>38LYXzT6m|4rZ@7lc^M7SBb8f_>0iZ^6@O0f{GO5IcJ)(~3j#yKDW5@e zjIsrsz}0!$<#U62D!8_W*FPj2j#8iY5U#1?*7Umon-!0HbLBJl64HOmA8dI+L6?MQ z1PNEd#}c=11qJoMqA>0b*9>jw8{C`7*KTyowYrFPHaswfCxWa~vwTqHJu2$oB~^#( zP;RBAyQwPpwr8<(C45-)g?Pv=2VMRHD|3fC z$56pLCQmEU?gRJpP4rr&vlyL3bmWV{CP+(BMjIWlr0Ye19T2 zEfV32h-(qolfaZ#und3Dvc;)LVE=VRVp#}xHE~wm?5I4^T7?T%H8KCSESQIBW;N}Qp@+1u>1Xa6i&P$yZ3b+WOQXqfQPyCUxU_ld!D_{-vtupcEQvcr@T zNU~+hF4x3hj90t!#U`_EJFXopDsH6Bd*8S z*vmZ;nzqC_h~$u)>v_3yMq8g-(%ew97J-Hwfbw4@V%aMLk3B}qsiO9G>OV&?xLN_| zCwne~WYk`DTIcd|8ubH=hjGYY3AWF&&MPXJIC71eaoB#FiiG0jc0}tvQO3H?OP?=G zln%-&K#;oQZx6}n!S-UYVGfudH9J^Llk=#jM_U8!D)yhY_T&E&u;SJr$S5f(>8=Dm z7CBm-b`hw~esBC})&{-Nih0NU+YENc`M@jgzp{VhRv zbpV-}1z$;R>;Hjr@cBO|g~y7@(Aw4i4?5xhN;;AM|Dh26w;I#gaiujj7kZrPHAOU< zykG!|Hn0B|F~RB!xWuR`=-YHfF8f(_%lld-0qh3lr}$>iV;~2>?PSTBK$&O5Gf?u{ zz*Zn}vl=M!RaGGG2QdI6nGY2OeT*`n_mczZq`gI+M!T&efHE}K<#%#k+o|I6W49$9 z3jiO%Kj42}b`$|e;wA(6bS{qr;eO;$yB2wSBTAAJcG6Rf=;pTWhR}9@t~ey8Wonx1 z)brfc;dJ#C3N~f$pFmVrcJ}uNqArI82{@EOKLN>(950@ZlLQ8M@oBHy$e}AL_tTLW z^%?T@i*KcdZxJBSNN#p+RgRUEwa)lV7{ZO`W}q~}N`}~7Za(s->k9@1iMw6;t6HDK z${q&4B2htv(-G7NCwJ;MX4QPm>?HYCG@J1G2a3H?T?#RHyFOSq#r()ZfHJA2+i-_+x5(fVZO*-6XUIzcJq+r@5+x%C`; zr+=%|3?9KxJy|7r8{MNj)aLfkePLLA_}b?|pUOKjJS2TPY-D*I<{8323kf^99=DSx zj!bXO9cXnroQ(!8Dj!VPOs9dA^6*51PB%wTUr9XI0y~y0hPFT4U`L7Fm@D9AhTni> zH*@%n6V7qhTy>ICDz{cC)aNT(YJljw7?%W+Iv>_OT4@q?JtoAK>${8EvL&_DkM}Mk zF#L`oNt+VW>`akT?w*u`=Q?-!}?pZYLmLz!jU#%T7S}N?Qxl)?X4{Z0%jG^J(Onv1v@4adCDmSrew5MyXgSxxzEW?n_7s4^5v`h!u21$`__2W-xzw{U7Z>C z6xJq7?oC6)#q6v#pqY73OYICR&*tklzFhHv@<-X|H0grPQ_{Uc9C`rAQ}7`_lurDc z8hF6?bqF)A)w7cS&ir(HSlGVhg6>ev#wS+0nFQ&$0QQ~*uf5>l;3pL~dBEJg}+6LP6^>))=ZH0ix>n*Yuz~E+`~~fSNjL z%z}ZQK2SYf(Mj}WJZMXDJEb2wl!VNFR=){C53*Zc%zzQD!kLt49>6TJ#xYXt8yJWM zGxm+6qhlZ>Ha0e1vM@P(w1>)5=^0LXM@KBywd5^BiKy$sOuA?qr;tFF1GjKyof_armD; z?o5d0KkdI@OM_4QKF(NdXyZHfWnXeXILwVdGc!{l1>eW81IbxD2mNfO-@VeXGtc?gRbM6 zLPPI%>^%N@f{-UVy5(x-#NP)P0h7>F;StiJq)~wUA(wtr9Dw5DH6Q+s0`V2~h@GrjDlAdk71cHR5Oy!Pt0E0t!;kyq&Nf;+`sC5IKk&2{&<0t%rjb<;-_D|h)St7Bdn@kW8qjRR-6JPB__@RewZ+ds^jR)tn+aI` zsfN#aIG*K_)-hB5HR2F@$4{9y8PFl65pjr$k}PIyc;ed%hY!LGZ|AEACG`7RYd^G% zE{7yhxPIC3hHno;ABF~hG`nTC;#^OE=Hd-?b3jOf5LOfIc&{wYx>c2S0A%okobVLUsg2Mm-N>39I1dsG$iYg5}R_q z(_hAOwqft7fSpI?2bnV@&!h(Tby5UkPCW~R(^ez)X2-zUSUdAiTm+uuM~D4bf3Jfp zRgUb^go6EB7vW0C&IbzbhAWv45H?~|~h{kco9C1C&&_&JLm%x4RUPn5ocK1)8&MFSo%e=M++KiHl^W0yJ`>Ya_&`H#0F}v z>#x3DU-VeLDJ=D8>dKw>d26d#0HMtkKkf+(*BSxrpop)MdJRU(iUbNjA%xFQ5xJI% zs>=9ICJjhtiSb2xS+kWdeHMJ=ic+^LqYNj2Ov#3Z(i|3t5kASfkJmKdS!|nTxMk}4 z@-O+>?1GK&&{+1RkVl+S$Iss-vm~8^0RR$$g{n`}z`dIWz&ha2R1YPX5_9O}Fi@d9 zeM%OTu~20iG5#7&s@5BicmDmLTf|Y6aDRt{{M=XMfMW%heK=5%7vs(YjnIkaS#Ylg zoTQXj5s52MT%O!_1s)c*o9^wFM@w(p{t|g_e+$R~W^DQ|1--77zBdcy?sWgGUyx8Z zepO+C=(maiaoCR04Z$Dm-rW8@Du(y@e3C49MID><@nQtLHkAKFb!VGayZ%Fuy!JY5WMO5|nZO<*ZSsv=U$Z-2-UJI^z zXZF;$)oa}S03KcZAXn}aIHC)0|9y+ko38?S1COx$RkXd>XJSpvRdY>ir-%O{QDUS& zcZ5KYGmK;&$~~7XH}zXIb$BeMDTpr3*Cy?9u!_IL{eYfW0#44=dKX>A;q|~j-ExID z!mitS5j7OsrRJ?W*Rtmwcxo2FE_;1=(_yK>%v=bdo}>!aVNT4qyJ;$(zpP-CexjP3 zu^G!qMX!$#iH`DgBzMwOj>WwY!_OnDy~dDGXr=Yt_n_Kdjmqm>6FqzjWu-Zj)7(xI zJ;8DF$*&JusgM69E-)m(YOSk}bOPr_*cCpjb(zl`102Qu*353_p5Ci&=FOLu-_3*9 zyC)UZxEf^H3*3md%8r(dbWWDRlJ~@TpV5e!fgxygRLzutCuS%$pXhJfL0%ommMwng7#ny z!mp1OC67Luroc}Yk|0qOZl550!PqJ`4tBb@>thy|Jrd@)9aW(hEJe5FHc@0(p^*#z; z)8}r%c_q5vWy(vK{&RtBIdNnn#${zusyr^`tj)Cj zNKu9p-OV7z(x6>U`6z)392TCaGDy3K$9sZi1Rfq9OiG~&e{Vca2 z#ny80wSBG5+}E5ooJmOi;=(9#_e9} zha5`wwZbbn>fyE4pzi0zdNYJQU0;T+Pw1}Vyx2l(mA~r$%{I6`DJBLzA%F0Fl-x;$ zHXl!pLcyny{QM~XEo}okn+qcslYyYoYIm<2q5rH8-F4OZpuO;Flurqmix^Gv=RoTF z@6-2fZmM3o-z=F`zl*ygK#)9MK1fiGRx|m2XwJ-jv=joG_Kr>m3DqufdSrwOUyxWiAFt#6OJ! zh-NoQMErTzC*)Bll>7Qmoxfzs2zuK%h@uy&K}?>lk(uO5KwI$wO4RuDmQUuNV>XZ3 zkUk9lePRRuzgmDT>S)PN2oERUGc=dtB=?16__M?$B&ZH%6gE|F{dqH?4z6g+UY9KN z!8ptke3N}`2gNiJ5^3!rL8qN}R}A%YRlERq>s_9hRTzv_BabEN?6|^W@EwzZXB-|z zFah<->4Paw{)KZ_PY>@F4A;laM*Kj+`rdm%4A1-3J7GAbh9vswrLRhYbU-pZz%j&} zI?eKCB(^vwrfmOdEtVzz7X`hX=)E};%o63BsnkLeD`X{A0 z*ZiZ3)n%r2^<2D5T1EMF`!d{j`hkRC48us+sGsmLz$NE4ZzGTgpwdO1rE6iAw{D)+ zDL-#doP?Nx&uv;VJ{mH**dBZ4$yqi*e>hDoCkb`Wp?#3o5{%SPY?dkE>;2Y3J#Sli#*( zrx&&O%vJ7p$qK=b+Kf$d9_@!v`-=l(sq{9p7_Ufo?iU0h^|!ohD))KBU;Ud1+V>!O z8GApA#%;z~xJ`=oBT`co18J|U-P=#m)R4QHou58CYHLK42^U*@j)%9#ch7;_x%#mf zbc{YRwW2u?rMJ*jTb=gGnDDs%c-S~kq9C)(Nb|j?}p~fR&{OB;Oaze7n%* z9$whC2e_wrRy(OuocO+4f(gb@jj|!$_4*$FEPGI-c6_Edr~Y0=#fWt&Kr~i^Mbe8i z96MXr!JO)L$oX0i$ zbUlLWEwIe=K=>#aEah)Nk+Cw!j6M>Pb^?HT_E)eHw6qE?V=Dd6T+UGQ`V}@rop;)u z_LjnNaeXofg$Yld*$`nxzF=Fz@w1Ek`=mIQ*wji z?-!R3Gf?=*H2j^Y1T%*AcSktPk6mmEEt9-<H$?OYCU;ooPMzr4X(l=F*l_1gfQd`aK-XyY&pNC()LubUwJc~d#zm(zD2_7S z26u(iJ28dPgP)UqXv(awqNR;fSP$c1c=79qxQfdZ&(Dv=AKbs)8Lb|aw;NQq2ih5W zLQC;86g69H8||SgaxBx&rYMbx zNY9c}z9#hA{J<;j2%Q0DMydwX1AYK2_kmSk`o4LC)_^uZn>cW>TKLUkGI9jK7}4@i zP2dv(2%w~kUVH<+8#K56q!PIOKKcoThP+l1aE<)WqC2N4y0OoJLVZSTG-P~`S#unT>@+V@;k%uHh_ zOYUldgHylheWfp8+D)Z^evW){4&z$V@P%Jv*(|{*Vq#vq{4#UPdRVp4-j4L9t~YW13a z_v@*t`ZsEVnk?j9z7NBV-lYo9o^$(!-;=YI7PbiVagN-Qk%t&+F_%CgXY&lrJ$F(s zQy6*A@6(cczXpa2OL`*oIh&?c8NPqdp!{1X8pNPX?bLX7%$1Zd52j0H2KZMgW(~~~ zm<%w;3ePFiUlGJ^2}?qylqgG}N}Qq#&>CS312F4%M*aepMXbj`1FS${5fSwK{8N2M zoUDJqB_k+4#5l9$8tI`WBRt6`b#ygnWYF{pZTjwa91T|OV3x)bNIClbv$u`R z$OXeEA;1vwi;p7x}JC1O$aky~p8_se?C~ecmXY`~X#@-;A8*#c^Q?@W40De;; z01~D&jYc8jtjW(1!E2PrbAw@IHQ3YTfh2_VQcc;txzVQufbdlXLs;`kHDiNWi{OW8 zVonO)6oP~!gdFOJ+Oe0KQTeT6>8gSrJ`%eiQqkbvONw^T>vqwIFIl|CMAo>wqo#t;6)6wA^LKKJ%>AdKJb$@_O~fA zB>%C&mj0Wf_u%Ye?wG1J5NN44ZeoC>uua^4o|uh^HBU)asE0$V$}!X)r_~A%U84mc zX`?+ovSh(KWzUH zqpS8WB%~7$N`X`7+T=R=ZHGGkE{GmAewscAo7C@`gY~^m6mDL>U&vjde+{8g8M?gL zYH^ddGfGSTVKWouqi}--pu&8FDj(A=YR*+bDA|p}rcrZQ)4Zd;yNy%oks{WohuyI4 zH|SlB?~Wkh1-~kS4FJ+}!;-*Yq zKoLJzjm+`y{x+QV{)%KY{h(F)^gRio&{1p;8yZ|Hoqaq_ZuOz4Ayv`BO2q{-7@`pCOQ8`-k@|9eh0N>xKbi!6 zs#>ph{SZ&5kl%5%p7*~v>iYAd+@k$1%S1rYvZL$9Ep4$9iIteO>8zuGB)zR5E(}aOM8r@P(kASypOk zReA}JOdoM+RUjap{!6h3YBhUKriUNeDl8^`zdSh#4L=d(w*O~R^7Pv!rBjl`<^$?> zr0DU_^@FZuz*H6%rHX)*(*q}gm&dZOusGpoq}8RX)wjFBJRT&xguYePmp|_%m{=KW z7DQPEPQ2wA{9W-OGea+gglqf67yg(Xpu$U4o{x$`MPhGr68H5rZ1Z(JI-vSb2x-A} zrBsm*!fmB?l0rhHeg|c(2}Cb6t;|mJ81ZU@0Akg)FXlOYkq`YaWS|cL<{z%OBiY2=19^HFz5r{+YalE3Uck2$!u*4XmpgCf)~x#(sKB(u#V&mCy;TjduzK2P0tutxKNmK@|p zzmTw7b+#zdvmX8i0~qFt{{`$~Vq&BL1|uUQdzvX zS>Fok!^!QxRtRm! zqWeKDxl9veR^#dvD3D;~ZkqFf;v<=?Cx?w-_av&h;_GIlkiOm&Rj!L0IJ88&njyAN z*2%=4eNLWYGQzQWX&4m!@U>Ibdiyg%EdoEQ&XGu#0l;B2z}yLnFF)Fdf!uKnSd8iE zkxrF_`a@Q{SdZ96U-foKAc#$7`{4QIzpPh4cCS5zQ2-3{>9^1;R#gQBS|OoduL4mlnWT4yxfP@TsOcb*l9T+(!jiJgHJ7z`l#QGm zMPY4AQ)pC3!}&f%T$3_|gz@I6kJBZV>A|$UGhR_PnY0%q3WD@$Dsk@np}qQkJ#_`| z1)Dp=x?gU<5$a*GSdcmB>=ssfy)|p$%91q!x;LijBku<%QMUFWI-#RPfNvC4;CV*5 zp&_;=rJcH8_}zmhq(`GN^X~!cvGS698h%!_*-*^)PMp#FO9AGwdUH57%0C>`{qEK1 zVf)qDF+&Z!U8{ChG1C)zhp4EvQfN(nD5VUW)2T3Ja4z|Pie z(&pucjQTU4-04(HKPnXw5F%qjqG?asyFuo}2Bj$@ zDf{pY`8yK<0|5qGtPet%_DfVDbP&Xr&lv3^Df^@iO&sdByS$U{0# zw(&#bMLWPl_1o0{_nnNFp|2U!uY&3e6}nu5$Kr=^zlXp*4G#(^_F>-a$Mz?RGab05 z?Xw>{+K`$b&m-O8Z0~>3v~+x42Fa%P6m=Iz%pD|v41rPut4S6)FUZk?CSE!i5tSa$ z?E<=Ac){tRzwgYzH(T-;GbPk2eNQs)5EsYlY?|cW-BkrK22M%x!JGC? zdrYhX0tvITS|B;yJ6Wia3ud!=GQbyf0wol(sknt{GzXa>&kV}d?O&8mH@}572+y*x!cI|3*8$vf22(aKtniIIs znu$AF^V=FSd`W7E=gEEa;;BRa%aBf5PtjM9U=d1{D*zaJxqM4cM9@>;ZGu#VK`Txn z0_~S}g1O@VT|jqqccFbdx9p@mm`232DdA|*{?+&d7&!3=641kH6yJgE{Rb9Ez5NO& z;^eeMz?|O6+8Y%C#iIpD#E#x*dU3OrmKAn9v@XQ`_|*Xa_l*+52D&4jdU0Gv{;37x zU;h>AVRoXrLaZEAv_3H_+Z2aP#KWkJekS4gbsA~zf75anH^jgxn7;t!@AASQXFLPQ zc+K7vYnBV3t?fAoRV-|I3I_c%=1bm`s9306xZwGA)nUQ+^6JmrI8b}Mp%+Vy!M}bT zA4=X6m|HF2k&{2`O&clmrwu3Ns3XF~BYyh$$t`CdFnM^EmUtF&VDzag8LE4>vhom@ z^A4)Ldz8#fh2#a)-r?boUFJK(sfdKHbPNozrNAyxR6%=tyIEZ^hHc!3xQSwOt~#oP zkV-{AIstI%t?1`Ogdz;v%l)~Cs&L1AkO;+|IMas#Kuy0Wr3Cz+L+-S*%rRTJv&?oL>^7-sAS0+6g(6Kf8i zs^`$Kv6&bdmefcSr{~6>w^e2{nWctO z+=j08u6ZMblMt$P<)8XIp%iXWy`a4TyvrZ=K}NOO7SO3=qrEC^gv?tro*~$TgXnnF z+zO!VaT=2&`O;0KiBJK2W=lY_G7fx1M!y$j4FM6HO>giDbv{FQ7031cu(Z9xsipon z_Xzwvj#;oYy=X)&O9WO%w0*G=6j79^9sAe4$Z6**QCKz%?f6g*ZXxL-q-9tSR$DJ! ztUsx(ZpZ!y3tk-3LP_`pJpa01MRCt{vUcS!mD%{MpXJDt{%a6Y3JcS5LfmgqRjmD1 zG|x8Kqro(TbE`S^5#+_4jn#F3@q7-JjRL01FIv_w<(#BH{{0(JX3D=<@W66i;nfH~ zfoiTpABYCRln@**s{K61SY-=X>VNmj{{DI`ethL$3`JOVtC_w2#k&?Du1N?U1d|EW7@YtOcw! zrq(5Gie0#}US_(&)DVEwt#Ggu5f?`Ynr-6^Kl=Oo=j7%h{!B=C4Klwp@bi8EtH8+k z4J<({?Cdt@t-3O=)7ZrnUzpG)Ya*w@Oh%Zc+-t3Nmk=UjlYiO9#ZJlnF5y&{EvRxw zWp&n>z&~R>4SGzM6S_$UJv$?#q*QwUp0NH0#HFa+wnh*X^C6?6dddbR!vOxno8`pg zC*%I_cQp6Pn(kf!vK2g%E+qO_* zpSwPe4_V^9*fMfWG;+B*Z5cBO81$knES$YQwjG1kqtv3+zSnKo9G_TJZ~DIa2O3}X zZ(U{~e9Yo6FzUuE)Wy=xJMBhXMMj>#e5rDJ`!DLoYeU}VW?fOn&WBhZN#^u<^uLaq zwaLjzZf+l;Hu~{ha#Cq4gArRv-JN!0ky zJM}!w_C(X|H5S%Rm#)796VxvsFY87f(HHI@43%Z_Bzsc1d3sK?d3z4opr74Nt4c;| z>kYDy;8^eC8ampVH^7?kl&B@OH1OEEb}r8X8^Q7B{4lOaS7K1_8_w`ZCfb)V?VAQy;T9u4h|%^-2ti9`W0YN4Qm^XBxFGCPc` zf(`2G5-uu5YbTj5hwmHtsJ1jC{gwrG>5)Vja92pXnEHcmzW?}P3dFnX-#?MC(Y)al zK%m7?H@)0mnawUH3hk4g>_ICeej}bq?vc28cg{BACiPSv`(y)Xtt+}3J5g=@9KdN; zd}E{ZsV?V-CR zG_jS<(D71dZ)ZtUQxi*9xgrl$bH-d4ET*F%%4BN4L!+y`Aw*XwJDI?LR2^Yh@2S-G zk+oCNoR_{c#nLrQQmM^cTVwH-r?FmL9TdBXE2<_MpTA^1OaIoqaa-^FEP>k7xUlZi zdCU>eMU6*K^;^#B^g|(s;_sEf$6%5tRe6BaGSs=lCk^0fJigSm>11 zhpyaSCs(;tM36n>A^&05W66}eb)#iA53^g5FZgw4oop);cC}Ot#Y0I`Hn-F-&-?;`4R8{)JE+y?i7tIeB&2<_vxJ+2{x2)L_?FO}S?t&k#?7?em`kpOXkD zpVVdM8Lhz4Z4&7bwo(cK4_cT5uKrgS(z7N&F&rh3Uw^!4H8;qC2gUk_CsNl0HP zYe~prnaXG_igQVRvc-voFz2O%q}F7GdP93D$xXG0o61zyVz6?jO9z zCCTWHiYh&a&WT+RWnRiz!zyzcP&L?s!jlgCBCL+-#Pk@0w1=MyBZ15@u~<>RhVX#_ z6VjJn|7GJJ>y`0}S@qZpt|(@{TLvXJlk#eckd=h(g`5btsxR z7J5r8x)g6nsys1I$l;lcP@HKA7uxA8TiS9V4CH&gkm>ew2m0In0|W5U9@j$C6v0AN-tur8 zKH9=sv@?dP)}zmm7^{c4%}iCKE8__ZzUd>1gV-;A;5gRmfe`wuRpn%Y_+6b$?XLFJ;JJvJ&5K7x*8e*t;V}Dfu07CL7t!FkSaU^s#R_R!Rk=@Dfp{_~UMDo{r*34NK!)idQWPoT1&!8%v9C2v~&yb^boS*OoyMcd^GxW{x@t<;T9cS!jOqn}HN5Lzu!aNz+X&fMtB&xKqWh!nPWD*vhs{nR5Qo=JIAq&l*U9d9Vu4OD) zK8$=YG^++T8QxDextY*5$YSQ-{TjR%IWg2g7iMyw)h9xlpM}=uQj-(JChEQLZR@V^ z{Ayb({T!YQq(xj(<1C;l3oNd(L2_fuqtUy)%b2^8zrdzO(CIx;Im)tH?*rks%}d8T zP~fm9%ag=%C2I9OwC8mvaW-ck$m$!a8oO)kzJHiq*UFJMv{v6Ks~ODpJMz zWHDljV$XS64tMr#Sw zd8=H(Kf1G!MWn!_{kjQZYs&FbzD0z2b>&#-M@WBtWVN#8`TgHNT zn7qB#NWjyF-#2G`Wc=4PH(~?DDZ3IiNKxV+v1{&IPzd|elxW2QUHm4W3r|-U7wLcT z_Kp^#dpmRdX;wKUWKBN=i@Mc3;5^%`>l+jB%($LR_Czi7{wd{OqaaW*4rk;+#=7bp zasfT8h505{#kjha#^3m?r`ZGDoJ-*k)oLB%+ZVcltUQ%IZsMFO=&EX}ZT8O&{OS3p z3QL(;j%wo(|D6B+4a&T=Nh8y^I5R1SFmq63kDE7RefvFgw^Miy9{jk?e}qf zu<$V8`CsgfEvYOI1>xlwE&%a(|yxM(*eefZQTlG z7FU_$hPV#D8I7!d{V8tK(F3;BnFugr-gi;=hDiqv{8^*mPbRtbn#aLT*hy7*^M;0t zOBFAZrYAMjaSS^nCnxBC)WX+`?IA21pQ6aDGt^g~2tVJ1(p?*2DE&N#R4F@jM0 zv@g=SxOS!4!m-E41mj}kKjsb=XM}(5;Z-&jiym08ah9xYbaZr~+D1RYW_aM% zN{@H7)1#}e^AK1o2a(;bMvB#23xAX5U7S=@16Ge8XZ!tM0w9GjIC`Nx8%Oprg|dyrEmbqY+<~DH9^_D{ZeG4lCDvQqnZ~@6qK^^1Wr< zG8BjX`mN`nfAYtx$-I6X(zG1NTA`DgXJ~ck(z+W*6Xd`u@s(z&L z$G8`MWgai)XsVXKkz(PTdl8FegsSqKar-_7dp+Vnbb?L29O zCFVvo#lx3~a{f3bG_NBbu~91qemM_^aKwzvoO_(x@^{JIRsmg3jXlrGE}k1Y(!gSP zZu=vor=jz4HCG`R@97pUMdzwompjL|;6;SpoNZuz)r!=bSmMvt$NbYwH{Y0cf-dVg z)hHX(WCL5Hz@}38e1Nke6rcVAx|c)@4(Y`w9ET67CA?-WIn`*@yD2k{-NaI)Q>6&; z$=?DOJYf1KP(VgYPzt>)} zZrbFZ4GON1hUcjYe)qaHt-tG-lITs^Aqo1%!zPg6dw*5_7~Tk|;J*L(DOD{L>IxYCDBrYlO z@ccz(PIcTQr-0diXwrXe|5AGCw7GK)bb+MFrhRWib%^VKN%0szaJXtHW?-Z(w5z(4 z%z}Y(kJmrQbGv-P-BfwrwZ3_CcXv?EUpe#35A(Fx&`6==nsYi#b0+o3d+`rQW~^J? zBJPMF8-Dy4Txb`jr>f?B=M*cmK!lC@fqXb%^f#_qw?4Myyto&ZZPt}v6rE^*GZuFQhTD{%&XqYGE+z+za2L?w!7Uy88gm z%LdfT()#6>EmzaJ!65KvWo7k7Mdc$zF16=-@nQ3`AyDA))fny-3#zCm< zdGL_qdNd%Z)C4nNbHR%6j8#kuD6zMxANd4a^GS_ebMpGBMh3kYvDKeb&o6q`1cQc) zMY4dAp&{F1%coz`=@9oyCa=PnE!oj`^&Hy{ixZc<0I@jcz9t^VJ}ZdJtZtQ0pPg$S z5T2ns{vFGgcYWcUmgZ+r5}cE#-|P~8bIBm_Tx2xcT9c99pfN9&d2g&1%z_O|sLyi| zhj&_}xwW-=gv7yy`i=QV)KznCusaXs_^VNw7~ldY2pFDmjQNvt-D8y7-Y0_q3%kyF zjM4J%W=3}RMF|(e$iViDVZE8;3xJH!pjNuBJp8X!m4U*pxsP4BAqUh`M_!c_Bz)W1 zfKR*ZQ}9QI+juoYENLWEKkDr5KHvO;Qy|50IUKV4wf0t?B+cr#tl9r#>Mfw+2)3@# z!QGwU!QEW~Ap{HV65I*y4#9&32_ZNH_YmA&f(0kIySu;Q-utch&w@4GRnG=O;m*#2FVNDeit1rvEWRwG?6bHELK_ zcKGCrtG`!p)KYgwl0Zf>)8|a)^YgA;dCl1fLUblwbLJ5(dEmL%wYB8;j+Your;b}p zQ+KxuUAqB35&l#Zs)WaHn~KG|{kHe_o12>-%FkJ`P!PzK9C_%v7r@Y@xcquhF-lSw&)gYa{k5YnCBX& z*y$K#ydLlN^S(5?ny9t;!9HE3>K@OTL*144z<;Yq4{ZuTIID^NhYItsbRa~64uZsq z20x5d&Op@f!dWVFg3HElba8WzD@8)nPeh|N-O=n zM&Lr3%Iniz8Ms)4dK1}nd_9t9BTdK$mA%pBxQ7cge=W+iv@~1H zbCQ^Yu>9~d~BZ1^zVpH zHZZfaGkZ-bY!4#8vAzgpG77vyJgIpq6vKH6kC_zBo&Khh^z9A(Ztk0L!@cho8?DYh ze!|Z(zI)Aa+q43#VGxB(=NuR5xUDo$SMQnJIG&@G!KE~kmu}ylHw|KU(7tnA;x@=B zYWa3@Sv;EL&#Q>uf->2uO3_XC=A(FCpGcO!x#`ziug?e_$rm8O?r=deL(oJ`i_P2~0y)o+$DQ(kDY8xVbsdLBsn*{W-v#}nGyefU z;E?CMOk{c+hCXF`w4Oh!?G_Xl=u1EA9Q;aG=?DqmTiUQLcv%kBvS)V!*2|M28-nM$ zxlIMHX0w1y?11NQ!8G&3*~);q=QjT~{!S}35qD?t3-^kozC=77$kkOW46*1%nnU5{ zR*q5KANv~%pb*L*fBtRO6^xEot{xa$sEWC#M|xL0``(OUSV}mRlz^|gBf~))^F7Ay?#P$~XL(2-H zfg!!1h8W4tjA{%=HB4`FAGK@Kxq~NwMN$SQo;XBOzYgmPd|mUE(lS}z<5Ept$5Uo% zO$D{X+xXEveVM@eH0A5pzlPr*qxqKD3+F9aBzp8RBs?0;Ynw){1@v<-m;C|Qp|R$# zcjI}2;>cVJa>cfo*wZX~ZMp4gl4fH%>Ljr&)o0Ht`b>9KM(wq&mKQwd=)ZpBD(S_K zzJvj3{vr{x%j#=}8c;ezr+1dE`{1< zK_GC_joD224W5{}WKJ&~K<#1_)_;2t=li{V&)w)>&cA$>?PoPyJG~E(gVFbyx3h8j z8rb=*$Of-dfw^dZhgNSC*C zJtf6zJS9U{xE68@)W^Z!RuhT*1efgIs+%u|{pW>dr4c|&N5_Ynkxc#1zZsfc$-9dg z_yhW2XKrgN0CMNQFA)}5iSd_j`QI1vC@Wbp=n=4|qv0VWs;`M)koYf1$uD*XTJ3#7 z($MX88!=)#O+}lR0_@7XjEss}MZMIY7l;OUowo%6MBNjehx>ro&l6UuRw19r@o|-J zW!eSdWpfj>FIk>j_P#CsOpXqJ((1Sgj3sW+ibkjkDqt5~UHHRAE#Sa1uW7 z2t+b6)i_H%{btWT+FX=ZZYuHIRjF(QlEKaZl#%nxDG2%@$;+{MQmf~5L3nyo&6-uB zEnQTOSS7uuF-?}%?c5bRvwSnTb-`iSnnn9=wi%vm&77f{GMkn=pY+-U%{7YVFJC*U5c-(93JXWpeq@Uu4DU%8 zt05U23G|!}vQuP&i*qLXTR%{!Sd&D}0t&NA3~mjOqA_XieTIJ6JnLxLo44t%o3N09 zXzv!8LNWa17(%ncXt-QE4+?is5u6O7fss}p`70YbHp_)#P zJe6*-&hV?a&Ajz}P|(p=`5$76p3gNX1TvI#zd)9jPB6;x+1XF(-CDtHHbU^rU$)E3 zbkQ0KbO5Tiz-)(XjMn2Q+dB{NrdONvp+iD3$kE@tGozVrliRAovnM)gyp*!KohK&- zG(BP5XZGd~KE6E_CU-WVF|Zfz zOA4&0ZKIEhdexZ<7-d^rglM6t2z)}^=xMtD8lUkYqvpqnl0CN9JEu{(upNpyM6`(Y z@0%2V7jth%bJ?t%(2Q?Hm_(8icLUi4H#0S(*tw0f=LT?PIoVq$FV2%gsYzst; z_&wgOuCIRv6}v=5MZrZ=0HhA(A6s;ETD*7wn%sD%T;J5xw9;u)wkSV8R3Tl^s7i}a z*n|Cg!5QQ6?$QL{1IN?dmv*OlgztA2RZLB(K?QV@YLcJeit61aTMNGLO@O@NMQWki zB_SGZD<3kSV9N&m)P**fz_fWeD87m6;_xRm1D|N%+MCw`1;)~qrg6~S!J&U^-edL< zy^Fk&kBG_UrwSlGhOJxY2)R*185{^K=$MXR%QeXwd5wIz<_s=cjOL&1FXye`NwO|M z#N#OFb3Qk{$6Afkg>R>9f8N$l#2}Jt!%lVb%_-wwP8W5k$xKp}p>q82Z&X%s(}T~T z;CvA;NCG1EODH{@sn@u2{$~7#qP!*HYW|zE$v)q^vtG?tp2iMr`1=`3A2?En2e0*2 z|5Sm%-gI+iu@V1Z3)i#oD!riKQ5JYE#ZgNzq~!ss3^s1Y`}+LSY@(NqfwdyPq>WEA zrX@0RP_}^geor{?$V==MP9`NKrJ9=B%Jz0aGd?aZf5Z!Ez4aCn-rD*7ahnCmt@e4k z-Ih<`3;}3ZcB4+%=?VkI>!U@_?R5A0tsgewu^`eW$7%#HN_L(SnZ6fxMRGH&4_EW{ z5JKOe9ek3(B>y7XY)xuiHxjdplck?OEvk13?46Ly_=_VU^*cFV=owfY|DZ4m8|*tV z%0$E{3&$E{6jRc-XOcbU3<#TM7nY`#Gz&6h^ux-*<1AhTM|@Wd6zt^!55O5^7cSJs z^EqqJYsP;_3(-iAZg%89x@-Fd6*y+2w#6O#91b-$6LZW_ zbKOGisi|4GZ*aTvvlr&yYm0BAOjLk3*s^WVY8a)-b(iH)q1lX2DrkGUC%<}H_PLQQ zD)IMz5G1O1aeJ(OoHtwl8A%+mcBYdr+OX@t_q2EwU@meIr>3So(1d^vsqF4*yAyjj zdAr;D%AWf`ilbbE+Rl39cnYUbLpZrrs_%uYylQHF!0pzUsH<06)A<= zmTz$Y@<6!qMBqdDdlpe&A0J|1|3@PG`1pXT)Z?9cxd2Q~0t#?}O3@>gMqTtwOzY!v zY&5K_F>-7ziOYWX(MDaNr?=ag6M)el=u-=|p6r)|exmpg#$tsDuEvi(ZZT1PDmv>M zXp0we^!Mo7>)R87FULi^?tEGEipr2=8cvZ)=QAZ_UF1It`r8}ibiSn@p?8WzfD=%_ zk%I@lpE&lr;jmUA@{;(P%4e3pse(C6ZxNX!d?KAEm-=fdgyX(+$UNY=#QtoSqv&&1 zp(p2zf)+Cn<^MXo5$+JPy;bGm-ssedPc}9^n;GtQ6$rn^Mavz9YST(3dVcWhT0QYI zvqAxhz>xaKe;DkG!e)^hax{oCG7IL5KLdJ@h%{-hKa-6VNtg0c_^rcp)bE%V+jmFE>g5t)UbZ z2M2a#CQaEM=PifJDa~r5E_k<;;qgE@*426Ywj_-*ojmPrz?_94b9P3{$QT(_$~-80 z81;~v;_H2lJ=G#qFq%eL?CpMaxcDak)Wr5rmUr~z0U`#do_-lli~a1=sOO`J1I1rK zkYHnT6N`*&DAgxr>xV9|gKf^@H^;>obEu=V5P<%Rj$NbpoD0q^KYy3p=&n-~DS zyBz*Y0({L7cEfgv-|Z#=G78E|&wTBt^-dJFjiD4SyE)P^O}}T~ud!Z5PI4O+<5iT6Vq8rKQ=MzO;bOJPeQeXn4F2ed`yMvV zgdq`b^9dI_0N2p)-oxxh1Vy`2MMI%($1tZ^5KG;6yzE}nSzMBT<0n&}#0gkqrfA5E z{#kXulsnyeI5$uM6TVpT?9E&#$-P!`!0+r)cFq{m*Ihd9L1j4F0!c56NGQ+pVT1B$ z-6PNs!()`Y%|m$%uu>#^c-70(Dk!Z_cgZoc62Gjc7RY}UW{{{z71s9L@xALn2(3=4 zgVQ`^z!WQQX>JD88ZWq#bc>on@*ps2O(hW~U7uj=NCIJ9z|UqY{XwTMD){v@VOz=W zK6E(qQGPTdTj5iq%c;q^g&58&z6=_+wvLLXB`4kBC-(;rtF$&TBhrm+8?7*Od7c!H z2|La10($c8<6{o2;;Z(?H5rV9PNvpx@ZKLND@|Y_fuyhNqXcY)8YHnYb9~rUg=rnqrD zjZKKg7ry{}*RM#Mn~hyv;_~HkEWlDh$Ic#C2T;oU@iexxm4W4Q-%i|?TVdhh$J;>N zU|W&vv6k_kt}s;<6$vwaW(zencOZE~KmdO!q$%-Iist4t!YFBPW3_nPI20V*Ogo(q z^T~mN1BuCh$aqf~G1pYH?6$YJ`-b_J53ZJtHwTkIed4xp44{AzqDK4oqQb+tHR(5i zBE|k7(Pu8-W){p`NEDNN$xyxsm4-)RU>5LlqN0ob(B|R%%a?hg*KN)8UW@l}Z8##0 zn>A{GAgJLv5j$5F*a~sazVpZTKua-06z)^$kDoE%!A(kfS<@mGeLU%Yf}G-~A7Gi{ z0-C;Z%NkIlEe7^0h@F^20!YH9VU_F;a>-U5>IP)_*ed9(@WIxArH z1bcECUX0*S++*^7GG+I$<&fyN`p^QCG?;Nc$152k48?_}4x<@^iE3euuqvXa-<>{{ z&+R|kT)~xh9RyHuPLU}Eq`ybUu|uBhEX9%V0sMD)k$tMRduKopPy4Tr-(rYRUpB2k zZ_WbrxG|2|BWry?7@1e$@KwkSGh2yrw}sW>&dXE?;F+?zB~yF9ktPqj8`d5H0Pass zOQm&2q6I_T^5_+sRnZx{zl;oA+e3V|Ee#DGe$l0GBgZPnW!pMc%%92j>ftEPv~Ra@cAAtahQ$ zKwbmDBntyRtkASHlAxfV!WXwOm;e1CpS6t*5;Ag5R#pHYzZ!Db=*I#yI-_SJ!#IR1 zeUpx-)KUXR7(nfnl$3M;f(K^1F#*mD@b zsG5aik|y0dX+PS{YSx1Io~DTxkpoKA%ibvU9L$T6N&V~Z;;9t!>2D8rLGoEa`n77G zes;#zfBoHdtwW>>Ux1(%-B`cgd>hI@bpcefcj1k%JAr-%5d5x^myssZIdo`yM$e0V zF<2Yhe~wK05;22OZA7c_MXbX2@cIr-DxCko+#FtL$Ny^uf@>M!i-o~-(B%AV-1`{_ zUV_rLnTEIER7H+(M|{V~>#ztUG#hT0T$Tl}FefVU{fkRUDMBnSw!RhWv#xQHlm2Dv z-wqjmw*%zz;`t!m(*tM9W!C!b|6u{1o|ku*@^$0$?-i`R)`TbiDuiQGUx_3TFE4x( zq5}&{@CLTR7~n6P=}V;X#MyM-{q|9Y!qPiIP|NGrsAb)aueC}@W6{!jo+TJfEG}1Xi7p;yJs=X|9GUGeEW7ikojQA5mzuB>HJ&k=YDCL z>+f|Jq&qIOFRfx^{nn>$LtwDB@#9-)xmh)k%y{rT4WRbMrcS6sZvY9qlu&#LDJoG)Hb|ZdO*7 zQ3*7p-t&HCCNtIvgU_BE@lk*m-1CC2BtDku4XNF39LdorQP$K%fPhCL zWX`ttr%b}hAGWp?@EJFo$p-9J z{sDxCZ@~Y&YekxbMmukd{reQIZDlFi1Y<8*DpoUs)!DDk-@he7Qijk{HQNvy7Sg?K zKR!~Ka`MT`$+lO$-gaPULYz>=rc99G0F}5%y*`AWzy#F&`NPpa*P!mWd%O}LJ~HCb zl$IXMkcesfCy)jsXbhbh%MVgnum>kOi(#*>H<$*EWh6%8UHlOO=?FH|MQ8TJ40bb& z04L%x(C^XzI#L!X$HykNfVUgPV^GzV5bPvA?_@aed5j2Qnik57o()4(g&|)Mex*ru zhTU}&W44~}RgaW~uH8J9KesI?L!7Nq!r^wH1<=qY2eVa5B~vGMJ7oMg6hjr6?@E>u zNQB%_1I5J&xvcq_FE0tX>G2^-N=gtQN=M2{?SA4I#JDJOz9PL*#4+tz6yi<+ULGD4 zw6yRb6WjzW<37H=${_StT+CQfR#CwQTBgf%`?|Zk5%*q38lG(o+<^FD3g9YizTHaI zYV#8z4DA4ubO$>su$5!^mVIylhv$FB3?$IatA){J`fEF_%$oi5KjqPT=rcSTnxj|3 zqcBJsO}f2DPW4%^<#=t76br2mr846~9f69rC0Q8v$7$=^x2%UBP;i>RstWqU``aN0 z44gSDvb=*8MEnHu^lQZ^rIMyo9ml0tw+T@aId@rmEAATi584;$l+?u-SC5X+5T>6_ za&qicTQT^g(oSiJ<-Y!Dl`@dnC&L8E@SAkfAWZBj1ekMYW!DoS)S=PMqb_%&+v>Fe zw+n<+>W6*XN350A-3TC(Bmz!9r#LOtXm@^Z@*8MH1K1vgu<(L)RAHGVH}Q^(pj}%L z;^y(bi=aZOTcYYVa&}4S8ks-{{L*&?-Zm$|PYBpVdtGbJ$zPlqX^1qjU`%R~4O{ZB zFIj^#0b($%EK)H?2+5G%)@=u8DRH|R-i|OqSn~;A z1da?_Oma5Xw%RuMQQAZLfuEAzlr%sJ;oEUD^onuhYCHC7!AWIb<;UUWb)V2nr{K=6 z44fc|X(&sV|DMI%fLxsOyn?K9AFKjN*k!4TF&PsSQv=~a_X)S<-h`1;3?Jpi8 zLG9h}a7rrk@Jed^2h&W0aw`chT|

    z&oC ztK+uSU{GCiBSp=T1#11(0Or|k8mCF(zOrUr-?7gXpxn*fRjU*^1HwvsN+5=JLZ`+u zH)x!~z}F9%;;wbDGUBj@52Ysr++C+z3)vjZIwV`K)EG`_9Kg*tSb(B+N7!sad=x!>R-3283I z8K9``>8+t?@dcx*&eLQ@JBIrqBSE|Qo+P9(>Z3l?+-{&C;H^nt$;z|fihIYhRZ9m_ zmpAZptRGX?S==5smv3)0TSBAl6XAh!M+n`r9U)!l>>F2gP@=$-%gUO8mIDw)SB3MO z=P+pjr@HnIoY0}xd&dhlt+O%JmD)%q-&TBO9-eQTx)6x{B2{VyXodlOG7kWW{~9)8VP&WUM-R*0ggd~qYBog zI%9aZnn_Y)qRn&6Ci~dwnTV1jBa+vzvo)!|9qS>3>%4tI(Z=Fms%w&P2C%}?;Ab6T z$dps+U0h$ERfGb#vHXC zV5N^qYmUV}y-?~;X7aT37W#{;2YHbDJTAtzp5(^vqh4bRl=PoDdtiskh&ERVPng&8;;rv^#zK^Aj??6*7t4TP(T8S z#A4wAqhT_?>;HNVR16jA7NP!NI6r2Q1{9b;)^J{F17jBv!OIzdW4mm!Sj!>`<#Oang-JG`yVCQ4G zDnEfijUIohTfxba=GN*==#D(~$LKf;H)u5Np)9cjU|*#y4738Tnz0=MU6Qf=meod) z)7z11ac~}$+$8I?QF2{!too&QwtZ$%Z;Z2zYJTgOYb&!y%CuwG-{+w>ar@;Xe|+j6 zYM|R*Akf$OJhQ8i1>obI&j#)AOFTz>L1tbrd{F`tf^WSCJ(glY=6wi&mO3ArK2!Sr zh!J&>+F*xCP$lmBubEZ)(eP=yb`#GFsu zNOgnzQ(TQ=`Bqk6@LAtk$4;ftM|DWtQ_qbPXW_RldE6Ls33n2@LZNQSd)SdwszjHt z>^WPEb-<=<-~(LYn1MfO#aVHal>~i;&?F2R^n~BZqfrn$El;_rUgncTf5^xk%6cpU zKXoXz)!4ctkcwUpT(5;5Z52%YnR)eTY~zz^c7(}Gwc(F@S}mU`r><-TF#9wGSH>3K zaanUw&&G%ishDI$ySSy*7UEiCIeYIssk5u=x1ushdX1=Fe^mw6fq>V74p79Xn|DRja$Tq>astbI&!mNj{9Bj5VV6?!MX1b6ZpV=@mQE zte(-z$JNcjp0N(C1KZ$w=PdW`0n+K{70S3-Ck(gmfFdA@ae^m`b?#8q5Xoxl2l$p~ zXv2m|o?$YA=M2(u0XO(%^ib=(MrylWRSfMs@=}=8YR|=D-4b_}H(Qy0eM$OlOa%-t zeCVl;&0i2Xc$Hmg>A@){RA*euvb3U%4AZXwMc+$4hKH5y*4U`?h zSX5DOQ$BO-GTHcmQ?-q>W7vV==M+@n^8qqm*dS=_c3Q+hVq4FDY#1MkdvNV)Vbglp z;saCdnw~Yxycc04VJxfw%h7BV#$I>t!aFBI;^0qbb>4GF68#&$*4<44byHUF?G8b4M5^d%|k$838{&=k8?#6dT7PND(6&`BGa6m+bRP#sc#sPHJCMNQ}z z=)Vrr{IpjC(*HA6tHV;o=}o`)}vgfwIO6 z<8vEnfmvldmSgulJY$_($2C`WHBrlgH$%@Y<63F5Wk3ADkJEZxD6?Vrc$U-WOM3o| zN!A=u+*KU_tK6V8(mdL!8?VV5kbMZwtc#D|NC=)tlW`xx{ z>23GQ=Qx=Q#;ildjVPTY+}z`xAnlryR#trr;)SAu#*9{_X+1dKo0Omk3`Qw)3{_2& z4A!t-2@SCFVvzA{3ij-H<^88oG$^o|9Lg8rUsX~N&^sLnJ&^PZ-F8rimUdMI$fGdU zzB`53w#i~T)Q`sC%IEbX>)!6QkdoAQ{opD-K4Ay8Tu=C^K%)og_1!qT>-?d<{lf{P_k=0JjO|K^bsoJjD^sf z2GTj;Rtgch0-EswZX>@J*UM4F`!fiUtv@LZWAx^=&C8jHOQj!8i0=p5nYO0qhJH9PGeAl90;Fb7#@ zLfTjDTxXd0{zP9I)NgiOw@DL%rn0!M==Z4a_WFsUMd3!6iWdKdl=lmBb$Ig#Mm4A4 z3nt?%&;&UrnNhZL7JMP-7OmMq3y+olIhh5+P(SV3M*-&CPwX#@s1W71|4c`DlhcmeC;s zQ53lu#rff<+bsdb&+ns{vRGwRLBVFYsS3!$&WV8qip&yVM)FoIQXIrr>cgMmT_uCS zJ-RGE!Ky<>fcEmcG`3bu87w^eb5R8xBRrS$ z8uP8HYdqEyJd?Xfb1i+RcT?+#s|OD2EBrblMj@oB$!Mo4Jp9}!*9bE)y+UmI!lcOf ze%%x^i^lZAgWY>HR%^9L3yOKVpYWC=4p0nhE#*~Jf5w5S)Jz?HGQTm9jgLzO1Y6qj zg*0a=S+y_#R$xY6H2JsL_B7hvcS9I>dHb8@od-MHv*NFR(nbk#eb_Shwe1?r=#~p6 zA5tJ1KFRd2jmtDD#l^+ol$Uq|(B17oNW;m=!{fF4eKiu0APF5Y~H+8#FiPDFNZ-4rkI60#DFI!@B5nNmu#hg`K19= zeM7J=nNcuXIz7}om+|5Ul9WL4Ih&lPmP9v}AEoOh;v4hA%lEy&_^l1bxb!0T#aYM3 z9nWLeYVOo?S#iC*XmF%6mDAL^J*6c4nEA2ZXCNePF?K1-es;Lr5CXK7P0SjZOV9%z z*OZWfa=>MMWNycgd{;M}c5s%ehzh)>Z8g^&c|ibZtz3F0Z-Df8A&w=9JgXAvzv@K{ zJht`j6i@FSq5`Iop<_6j5VsbbmBFT)aP#SXSF#DgAPrfSq7jTer`<_(c+swClIzne zAsOf9(0~)mkFOx<)6P(#Gf;Ofw^bFsw6v5!IbVgNu;{60GgI5WNgl!pCq*}`?2-X( zRsb7W2w(+dk$<|l`Hk%D?xH5Ck|615jL3|^op*26?EW3NRx-x!(ljugNCMVs*A-z; zubY!AVNOqrUt)s+h{c`rA^h~y+;4OegXUHVQqD-xuk;X}U0-1J4_0M*ig!Z{zrz2C zY@!|n)@eI%Z)#A(fN2R+ft;sKM9$&2c_7AEd}^xTud!%V zuXpE_mmcqqGgyQbCksknHY-P~_&GV1{Mmw6AGv4la``ESWg5ks(Pk^YTc)Vb(5G)> zev_q`91f}?(B0DPH_Q28>2vZDTBl1DRn%zZtY9F=jog;L~V8&vE08S09kz4P9?0X6c7LSX!s*bq=4?N z_kvEJuT5PWeRKXJuUobNGu8bYyqayFltbRV+r+n~@5J_G%sjbyHNta{JNfunUcRUQ z#zCgcaa@0z=ZdyxY8vxojZ9JLfoj+VCEhM!yLhYe=d;k`+1z~OWUoN*5%!2rSFQE> z(ZLyRv&KLz%nV%Fb*&LG@q8nmdlaytM7o!6|03e$7yhdPmFL|W4-BjXLvFPpv$mD3 z^?2@mN6@*y4||M-&5I*4Kb{&|2KK}|x=G_+=tCDML-aAWZQOuI{fS@N0gRgP;&hgL zm7Fqn*p{a3{pq-GnR@O6({$1S!gF3=r18LViYM?9T;MXB)G4tRF;j{+Dg;Z~AJi}RDo)Cnh=<=V{7yD-6)H0-a%-hMmGjHdaS_JxUgqh&DEH0Xcavu6+r*cZo|;Z zv^sZc9FAbmGt4&Sps_NKP`I-&^x<^4cxW6!XDl=nbK;+(=ADQ+V7wY!G;pgLN?Ar# zTc$B**+%%@|3i#p zetYNaUt#rwu3xgBp?fV87{OmwN)TE%G$-sTUP*TJ2Tq-aDfV`ULC);wQWh;kPNw1I z?gR~ZX74LP%?_^tVo#k*=hO&j+xr>Yxh_Qv&pP6M9%rfh{NubbEDTv6mS-DLOf^LZ zH~TCU8yzkRDQ*>@)-@pwZ>^!P>li$A)xPo+s%K34W(G^^RRS(t{EU}*RdK1OOZ#q< zD0YG_UD~i%7`F567sBS4r_b4!sCM4NrOe+F{DD|0^u6-r(?ru1nekaZ(=%MybrxC| z{F?YX;xV&n|G4MfZOe6=Fl4Xd>BMT#wcFa>1|3(sTpP7QO<1mCmQ!I~yw|QRqY1Ba z)_yi>TxKcbx4?WUEsaAYmtr-NXw0Svo`^J{n@%EGd;)r=JI zv!OwH1U%Aut7CBU^-)Tg`7O(l8RKlIe1CYPsVG*m=-`1`#&WJhXyQOHQGdBfrByD2 zD)mub3w1*<<{P!LWJnAkADGx-c;p-cm3LYTVltiMH2r`*dEsH>L#?gv$8a$p2O}f$QMrF`_t*d0a<~tBI-N z76RT9HHb8|tRx0p?;~~o>@==$!17&dl7EjkdNLa%T(E8xSzOkO8(NhB6PL}MOrWfe zc$LYS$BA~Abqu@f`Il}yOWK$I*Alszd71?U{d_K{ZP^EttEb~}Dei~1ATbfRHO1F9 zke69%nS-|iPtaz{oGZ#E{24RKJDBcOL`^O(3L{H{|D7tG6luUs?&`I6Th?+(aLKVJ zU;N=eja<84gBAY0T_)+^pXh(nG4B9Owgxv*`*KCfso`Zy9EQ!-OA&m~vu9PD^13AK zYOg1^vD;~}v)(`UDDMEnwLFcmn4C-zv9Iw_{MS>@Osbu)ByRToM~op$RrxG~$(TgwZ*`6lKfcdr-v(2UE!}9dTsx;9^dr5CXmWV z$O?Du1uRZ51yoD5B{bo)J1om=?;jSzYffqRSgfFHPQ@WTvYg+BvE_W%QLA15YS*i{ z*^z7g?RRcKjCiqTLSlnVQE_&ZST;MQ0b$vTgo+Zexi#eOtlKdnz<(c|xU zRA}kHAC18TO6%pxHx#_AXK>}N>_14)pm1F?%dxrRtpl-yz(eAn_C}3h=hwB1B65cM zjQ=z{yj-A9H9>?rV3sw7(rz1CL=XD@TupfKU)qtp8QE!b$PP9ovyrI9%%oV|{Alyl!=Ro2d_!cflTUckm#ZSDJg-SO1Kauz>j*PL*zxcXOb3bKfGDK3FT`?P_Ut>EG z4)mkiL1Q)0IAe$A>}UCh#3hh1T^jD@v)V>+IlVu5TiKaxo)_!@pCfrQI_`J;oY;jtd+dRogDc1dvvDnLh&sH|UF~>~=R!Ue$nJGNz=?HV z%x)n=$MYilZ!(Ka@kb#_FCx$x%?XZJ zWfCKM@Q%{ha+YFPc&pwC)-N&c)D_fdvyJM-EZxu_e@wt@34sCEZj8Qj4j$vYPY7F3 zabg_QpW8Sk-z4O$j^Ckt|2XW`d|`EW59=e1^7}MQyxj;28*1$Qmj;)ptlIIl$rshe zM#8KkmaJkI*+k78k2adTH$JSeiHg6pgf;$kt~p)ekFlN)X%~rUpPa-6snzzI5c`o^^}g&{s%4Go4IZELjD$G) z2lq|tT2$$l*%iCl!Y=iS5j!sh5ukKUl-|k~)*|2^-As2<12@a11Z+v;k5kS@(iH{L z!%f(GzS>ppVLEjkgFJk!k~OlzMIN^@*WhGinJi1a*sOzimPq>bm2{1_^7^{d@jQa_ zg*3SbdvyOp@HzomTxtW*hdq#!Nshq;5<4y<1nL_{nTw6A|trZWO z8I@trP5qPgr5%r}lAK^ETifdfdh(m^d?l=>WA1)GuB8)e+4~%yMPQBWw7Zwq*+%yE z)i)NSE6XFRK?5Minz)CRlGnyK18Q?BB5)^V-h;l%5qqRK^PNR1mglXgIr-ORXPxgm z&3MVn5$9ZB#nxO)nHmqXZ!tiE4r!vKC7*Tskyk87F1patlb!RSuxMw{IVA&?SR@bo zLuz%%h^<$DJWvnmC};Y4{datb7D?|8jmc3R4N7?@<;I#*VoxL`4En-jD3#Ggz-cY_t~yi z1M3H23|DNLiQoyk2}-XPf8Ja^j@ZJm1@YU&mF)(+YGuA?n036~U}s7vDk9ePGlKcs z%aMY61NYO;?_z7Xyvj)Od{@cz-cpk}nmw|w8hZTrQ3xWd-qj@oe2(LN%KdZB5|wbK z+oGe{rpOrS;3jg5b70O$qA>*^Q0jQ9_r9V%^USVNnpJ*f2N7_sTSsRNien z1?BB`Jlzr#;gGPbda>I=LVL?hSlV68gI;V<`p|lm5S(5;SpSM>e7Y)9oBP%NwAx~C z8Y^K@BK_3o^XgRbb)VosMr?|`bkbVH7ydi17_?ADdH&HGEQ>0s?cv^i6Kp!54uxNo5~8pxMVr9ga?-01HRGxQb-V1Kn=6s zYnjOFL3VS!6&U<=;vJi9J47g|O0Ty!_jH&3VD6h_>PBj2eb?T{6;rb0R8NvT{$T6) zXk^8_>X(&eFkB)w9O=ec?;}<>BrRA=DPhZ%MobZ#uew6#`)!5u=EBlJka&gWYx@C|)PrNI#v;0Kdb+*4F!)^J+%5Zl$0_ zxEY>wlQeRfgtL2fQt0L9BYsu7?cJ4w3{%D0(Gp~c4dG-BQFGI(+#>GF?L#OthgrWU94XcB`8%R@40*zh-*F9yMH-5RbELwxz( zd~DI1D86)GYUYBH+t%@f;*#Unnq6EFe!p~BqtYcTmdDj=buYpWeweM;c3+c<{5{h( zJ`xSs1umxuUZ91fKRVK&DRJ?f%j`l`EEMFg^oZ$Vhg9gL2PUL>@u-iBL=}V@M z6V$Tu%ZZ7J`qxAhAkeoz@?SV__I)sZEclt_SP5fcRy}rDU%12OJvK(mP{-p2?Fz5N znJS1&3j&s%mTfcnuMK!D!INri+M$cv3-|rJ53ZC26Ah*7ngNP1%EkBfapK-Ttz2dT z>HCs`Hb+mtphPbr(t@vRoIC$1!-S0K88=w{pKD7acG=Kish6h}2pVpQ#MlFGaoxAB zPZ8#1uFQDa|PcP5R z%sk9uyZl$~&UP*~#?3GTo<%WfD*%2B@{On2t&8>bOL?E`+{MRv6cI1TL+P4v-)?YC zDPELmMgS^&?;N&1-0~AQk)>>Vt{;*fHKK6<4;H4QQL0Rg;U;BX-EB`D*Q=pwQagQJL1jb^PQUsXGKi+^HF-WK*@oQFjAT>5t@*t2~P<(7~&{tRd zMz!SAm23-(F8OTo?hPX+d=XL2qau&@umN*DBrVvCYCiVqYaAc^$DU=_WYrUgU@Ww* z8Scz?QVL}Y0n1aflcZDv4^Nk`H-%^Eq^tRu2x_O7QUa$#nAuN>qQ`7X7l*S*#LSli zk+B~|Gsjio4|VEWnOui-Ez^799i^nWXTg%@Z)F!(-)jh;b{UK)%_ZLgqqFB(lAHfh zjNsS`!^xnh8JYgeT9Hrs*c64|0X(M&_RE)(Y>sjn3X;%DywsS3jnpP)?Io_q92wBwm3>R!3YU9A%;oXyxrZt)aejKUixux|Np zleKDC-^b<~j-HpU44XfWxp*M*vHF!GeuQ0ddx!Qw(z+`#q5%_XXO}?Y4y#j&PVHyb z_+?!p7~-+}t>EE+=BvX-8qy@h5LM4;-Fh>q4lT%sJ@fDe{+Aeu)rdbb7dj^!pp#k? zn9~5Sru;hW2S8~&3 z0BG_}ItJ;gj<mc_y3gXK&!PU_L zFT|#-Od1{x1YT_GNQZm`|o;tB1>)!&;W_XR(NM4dErw2K7aJ;5H>vwgou4 z-2e45oeP&APjGi%d*gZE2+nK;&?$irh->9rRx{TsKuzfB=~`r&0IDi*;Vxt8|&35TcX z?Lg3(PDl_OZ(N`SjA}L9h)0v5m@s*yWPrkJOplh0Z4!T3m#;;!3uv?tK998_P^;O9rso zB4BW78(fc(7X-51hj^2BEYRbyPt$uls7P>Z_bOr1-yJ%do+Wa=bMmj(3=T$my&(gJ zFLIA;$w2h!v#oyK`Vjb6WF`E$)qfprBmZ}7$1Ri!T-`p~X2{R~8>G3BiuK#vT4wB<6pnS|x?Y4akHreWwvDvdequc`2GFB-*ib^*&l zbS5nCY;X7UXQS4NQo#Ertd0xrVCYi$_6o_2CKdu12&7Wvot@{f4FiKHf6(qG-*=5K zj`7pC1iV`^Gr9S6(C(HPF99Cj2LE93J}c%l>g%&BAO2D(+dZHKc!lp$LR=>Kpj?q` zibC6I(j3N5q?q4el9y{yU7!XQP!gK?{Z<4093q@_7s(X-vd3O^xfdo zRH>_oci(OAMTT*k!5G_o)UXc+5ki}=heL?Z_$*A1FMS#5?jEq1AW!By5HyhXr^{-< zw}z%9g#wul8^c!IBXLmSEf>u~ll^E$AbDRY)0hXyB_tU4mlEPD8zVf`z7v+?uF_ej1dwf||rzrZI(%C!s2TUpQR97*nKZJy4+`lh%4l{*Q!+ zh7SaWXgJPYuoAg`ti>hb&2_YFs6?IM2^jUkiFtC4FQ-fAh!1xtRyGw&p3inbT7a)e zSlRXh(^%kwOf#(HO3IGl0i0BnD(4O>^=pnTX)(?s6x_$|`H*HrP%LOm(r|c?)Etpo z2lj-p&DKF8e)!w`^K?V0?pZTaXv{Qp^vM5tR;A^=k3Kl7K2gU~>xUylVNXCcQ32uH zk`EqdW(H#nNq%9B+i!E;;;r_6IK1y?dE|;=t4tgOzm)04DDbR+V9gn8ymOVcIhlN6 zbJ+@o4cg=5&nj^cdn<||2?JnwF#@Z zO?tQmi|*{e@%!avQf(Nv)x-*R%?tDeWcc`%R2wdGK#rV7tF@zr`VmuvA&?1}Ktw)x zLhy+ty8u5T!RSLy*qvVl(O-DWZXakF6eMrMB|`dT>YjFfW1(@-B4Ug&FeWxuy+19+ zfK*<8btW24rZqA9F z{mO(vTa=(O*!_NZk}_`t?7uJCSH1qgHC4Uzpcb>*AwBPur}6ucX`(riltRoOJma3)g?5SR7&do5+sgfT=7w*|R!G1rc#nLLe|)w{V@ zX;e@oLki)WqWme-pw@mzsR&wLEcAEE^F3C|hU8g}l@bSE<(|_5;|a(cr<7bYrZCYl zl8%qjO}84~emnm?isDk2mC&e&y+ATW#|o+kZ`o`RqHw$;Bb|M{ivMI`bNu$9;y2h( zd#bZKh-HJv@jYi#CS0vlUb;w9VL z`k(FZ;$7jx2`C7e75M$-ST#60DjF1gR~0QOn=jE9P0~aKU(()=#%Fy?O=M6T3Jz~0 z3^{6P@D^rWevKv~(MUiYL#H}WdmWxRA66~)AU4SF4P-gVq8NY5D(4g)cjvyC*{R_dgZ-NQLg@2X)Mi^mTXlwSEQ4o8`OmN2f9|jS?rR3{ zIL&vftZPcTCP6vH)8iZ7pph_g=d}w7z)o9cl`n4?!t7Zs12M)*+aIT^1>BB@A1)hW zt_=UPq9Dq*6~Ot`Av0Lz1cy^aoGZq;h9CNuSmH}r%<%o_3dE?Vc{E|6TTnA=ct>d~ zTqx$B%eq-=O9AI7`3=!Vsd7rsPOz2`+)Osu!1(m_JtpygBK4!J|Lx(Xf><5@(O~;rB}f{ zaakBh^rN-U|0Frvg(&4R@%sjBs^;YfbSc+cA#`av`1X>3<4K}=mZVer_C9Aw#J>XK@?$`c+D``JQe?jO4Sa|_$d6swP1+&Nk_rz3ODy-P`+SZm6dh3i6QNx^6U2Yl z{4)JK>VDwq5y)KqDK)i37*&MzO&|pr5Gb3BI-7B^YXqy@jmw0qgcy48~UlGdgPqz?+O+xAmlA$ zSv<7$t%~qS&b!y3EF!^>u+!TO=>ItsyaQulITHd1G5`LLnN~o6Y?Ig88xVRh%wD+; z)XKvo{n&OzOUW~36NXl?QURnsEs7=_(D>^KLK30gAsyfMt$8#1lfZys|34q!0mDXf zB#*+mWQD$8_6a%Na73s@9{l~`dpe z8d3_JgXukcMgbI6R8RwD=FQ_@1!2FUu7FS{KAW^)Uen>v68+Nn<)L($XMO?q3p~ zmcO`E-y-+yfl%Q!QxbfDG#$6#+=mrMIQV z)gxsp+>2IfyB{3!Cb5OH7mn@4G_81^D66VwRWp$5+maBo9)A#6M?9XZ- zBnwG4{1M&uKfU>8dn@o^tYDXw9dUEAS`B0}@9pgc0DXNBTt@AY8eOJ@?T6nVW0R8D zfVQC_CMqf_4UOIYlsoUUvLK+rnO|Fr0O<~%>+9!~l|3;glYC7NvpjmUI;?Q1u@MV| zfXf|ZqTOP;Pv4x$>x~=@1rP)+!{0|%WPJ8fG=EGNY&}eVk&BBS22(mY@ypB2y_BDC zFCZYGYoHv>)uHLWeL;@^SJAfM0J5c#Chw{}Z^y^a`)eX2e}AF{C0IcQgnSZJ_!M{O z*{tD_cHYC^zmZ+ajSDnru1Ga?bz9JmX`C|xkAfTrDqdbSTTS3Q`}ONrfj)?oo7tBQ z{pj}LC1lYAwKHV$Rs|EHwg-d14F)}^HqT+Nwq9IilOFvfargM-OJodhp}cB9>r1tf z{hW)Q%WQ!9vSwcHyU8RbppKkeIe< zc}gIp&Y+i;L|VWF3;8~w-o5#wFSNBqlf;OuvI`LY_;zHM;Y+&lUUxP7TR`^LyO158 z#!HZ&3K6kHappqiFJBY?5pwG=;o>~1vBy<$j<_Y*zNJVh3);A)U(p>P5ej#r#N>ZD zj?zJ?IB4s|>9$9p_~voDrmhfuO;OoDt5tdY4+IbNA9GGNPfj-pb&ElD?>{=vl^7c^ z^67lrbi1$2(A~c_6iriAQrnx+HI5q^fAyKj2kKP$CH`?u|B__%uo5g9?RF+Z!)MRl z#$DPd8T!zm!MmN^p(3biZ_fu(jsSPdSU>CbS8j2{_sNyEh{$bB}ECl+~gzlaJD&PiR{(QF{_&%Rk4vjZ!iTm^P1|L5K z_`;V@BVZ%}V0>);Q-%57k6bFSQDHGLb&pDKjIm{~kdWYBueY_4AlNWzQ@fs-?~=(p@UnU#I6zg0sN(7iY}4h;vOlW8RfKp}*m%XrQdL z{bEaiO^Ro5|+ zPDt|G3XUv2Un%CPp7sm<1jj#fB+U0`$yMi+TTd_K5L?&SfL4ZL0itWgWndS^>R#vu z+X@cFUGfQeNQkqrZRAAZ8vFunVtszcot~GL$5A{MvDlzY+4`ns6!L)GO5M3PKN!E0Lez z0%W+-gh3-MK9HjDEI!FF2SzG-xb!){p@ChGNb%{FC`(TdiVPS(HQ(CEG=wKl-*88d zoTmg1JEH4e)u}aGP`K29tRLX$foXafw^;0D+fZ!?!RdOfvx7AdX67OMb4^JHJ2(5$ z4wRk za~PLb(76?=t^1499CxxTc;%hs@}40pTxIF;asQdxJaFwi{{K(t@BjIDz%5_G_7|-~ z@N9k}e72rI7)rUL4mv4ylNX*`%d#Ah&%&xVlNn}_QD+&j6}u-9;oZ>wOa;@kpPyY_ z=fOPG{ui}~u(PBcke!xpD{I}wA*S8#o6*#%mZrtDaL{)Omn0!U&B}SEREK6&SfDdUfi>R1g5nMMs`lJG~!kLdaKx39bi64Myf0;XTzY{&ap zBfq0maX|nr1B056&pkk(2kH3!j<9h5y%;dRBh`kYY$;Oc^BrmeLCoU2kz=fakkEOc z@+|#frLGYW`?t*lNQ1k3N9v$s(a<>foDqEAn9e}qA7O>@1km2Pb?Xed5N^@pQm=1d zKwioEZFkoL97Hda*U!BUARAvfUK^nSbPWxW0!lY-P!ez$&j3Z>NrtRGJ(u(aaLzSR z?+*FV(V=Hz@)6{8J0qyAlK?&$ysKS=C!oX-rx-zm)|Z#_Jk((*UmYAx*E? zQxrg@s3FKCqANDW@DGEk3Hp3|UO%>uBh$JRLOmT2&R)>{2)~!uB$WjNnO{02YMPDJ+aXY>?KehHpACn8?hjkmcxqk@#LSQdXkBQ^VSh^NGP=g?s$fJ8Dq0UCwvAro4ihl5+lwj$*sH@2q{ZxsVO;HC_iA z3=Un+45z8-^s2LpiptmJjr^})C(aci5Qy>+Ms{%k#8GHlA1k$2TLPJzk|mv4fq5_m zr_QC#5>RutG3 zrlu~H2_bMhklT*?ao0=g5tA;g*4EbS@)IT=wfk(IygYlzpS)=0pgcI!`SaCKoj`*d zrfEB%;_*cZR#&jfBa7434myCcvGEl}!r`+sEgRLlasO~q6yz zpF`yRaJ7`KRS|5ab(T583K9i&`|FO?tl&J#g5t}WP`|rHl+Vsl?2hi2UYIBiJG@jf z5kr{o}8F4*p~Y}gz-2MlWa z@1dj_LM>J9=TEEI zChxigBV#PMMY|mz9sL5S6Z4lhx^_V-6C04Gp>88GGIDRbdFMx07l?k6p0?r0rKqUr zcRcG$W`tKaHcoMM0fUmNMn*=Z5Lntdap3YwVzzXB&M6;1j3#z!(5S_xqKY5Vx1u98 zklL&=>fNobG&A8Se_P>_$vdekioL1*Wr2!v$pO&imzg#G87)?&+3U9?zEM|++->+P z0TL=+bNj8E91D5hV>ff4;3|5?&v+3eB>{=n0A6q)Z%RiK0`l#gSrxELX1fXt$~V2J z-rCcm3ULNpxG1cm;!dg3AY%hN4C6575DDh^pPZQ}2aMB~*2R)JYE|vD_m)a+U8M_6 z=aj4-Ri%;_3?cS}Z1*?T4QEx?N$BMzs=wgU-Pk^-JsaTtS-4$rl1;n(Q?D5n68=A^ zd&{UQzwTZ5rc+9#LlLAwxyboYi0oW<|? zKhHU1yywGv#yMxa_xbIM7r5YrkXa*%Rg5##_PTLjBq-;l`{3 zs1s$&iR*XE!h;J-%66xjx^^y;dsDiyt4QeHl6H3|UYVzu4xhO;xG|D0*tB0dd~r(W_Q0Ob zICvZ`Sxu$rM`iJ)IlNB|0Bh29YZxGpGfLqsPwAG#%TW0y^P?i!;mPZhZu zJaqa1?7FSubgtDeTryCY#D*pj_Umb1W(*Gl&%MHyw_lEV3ARl>e*&T%Kio%GTi(Pv z6KqJDH{reYF`-oT;hEOU-!+`m>;j^*fDoNVUy5?KYBovyg3jZ(LA5PHhqLiyNl9v< zZnV>zr!j2$nPE89Z{5B35y#;>;n*=o&$iyqoUG$|{r5J z%#_9yE`IKR?D83j6GiX{A8zE@pZIZ$U~QV8?Aim+=G?(=oXmySu_+Q^aLgFODYwf!`W@2iftc5xs(eIwp;Jy&4^+>nlO?;2Sd z`Pr-9nA|F|A9SlEHvHzXlP4C|XQTRo(+Rh z4$y#Y-yI)I0IQJuU9#5)U>#=z+ZY6GaCHZV8L+whWo&E;OZa&$&Aqt`3)+C~rv6l@ z1oVDmZ_TAqs5iOxYv3vSpY!i+T@1bxn`aslkX>?+b`l3RBT=GU`y)|iiN#{=z|hIT>nZ5f0-1Uy87!u`BjLgvDRSz5LhR-8?P3F#19X?6bluspY)&R zw~ZU3e06PVxm90?Mc|ZKT=aC?mR!E+%U;r|b1tdpiT>fR^?qBCf4~i^s-AYPpI9z= zfa~Hptt5-x%CF;cVf+ed{lGJ+ChMc|#;ehVsG{6AKiS=1oB15%CmVW?E{jpQ?96)S%M=Q<}RKYO%l z=Wr(Ilx|KR3{tc)F)?l@lje!2^uaH`e^t(dr1!8J{`Q(nceXz61Og~0H}@l8oVLDO zRai(QDk}O~((lPZT0ODVlUL@<$Wo0) z_A&{mg3;x;xEYtYwBd?}pMys8&kUz2=g-AP(lOfGe5EB;a%vpXQ%Ri?1OmQMm2ioR z;>(k3RHAz8fL#kaB(nbXw#sBOE`hy0GlNj&<#zig-A&7*MGB`b*@oy3`w&WBo z1=*RJsIPB$*ba~G4f3WEN{8|}>rY~NVC^So>am8JnY{sd?kdTvYnR@1);{XH7+b%J zoXMY0%Z^<@!g0?>=sBAx1``hQBUL|@$J~_M1-~}Ee=+XnCLrop@>xIc8k@%&UDCea zA}EGoo#g&Z`F7w3sN)RC!Zdzt8)EzgfUc64RhKaPgTJJ@XbmO(DhRBXhW_g0hR=^o zwMM7!<#qyKSdV6+@+U-C+2YUoaa%`pbad)^>Eco~P0i`P126DhfLh_PjEwL0p7}PP zk^U{06-y_&7{ljfQBGYFRO*(*jezv~&)z~Suk(i52NvcBjHhMCho>(!PpB;3lk(Rb zZRC2PIO_pij8FnkgCP4=GCMHVahr5F8GKOtDQ7-?8;~5FQ(pnQN>R8lKhgrbL5{VSuP)nz z3}%!XK*&>l}R)l=uEh#h=}Fcl5?>V^HrQin=-xfuTg8rnkQ*`i^KxNal;@ErMh~ zv4h8+`jsb_jeq)*#g*W&i-H17O%06-5sJP}t5=Sv1--Qu8#iVIpt^{)4f+RM@HDg- zGW-Kh%#c6}UZsP2c>clMiT**K`IIc~ngDzqAOj+Ht;g2Q?Tm-p7@VI4 zZUI*aowy4ognNH}brpw!fdK*~7U+Q8jU%x)6#`LHEPuqn5i7@R2j)5OPZgvP#2g(q z0Qv!7uj?&~gRu<`?xfqdj?gg%ReauFUtL!8^cFm|NHz4_F4qFpiQd3*L^wGKftg-W zDT_{xUqsS!;tuu?P#rJnT&hW?6|ecrmoFp?w%*rrn%btLD^d?1Vt@Sj@s$sQ*+0;V z8VN8Y=w+p%oBg;2_1CtbOn6I63j~33yA`|kE@;@)ar20txLUR5Bw^bWBar+G{?cRj zynT7lbmB)TjJJP{OkM0gd-_zKt=^;1O9N3>CIA&mKKtkDeB=as%uhLLr&hxX<9gLK zHOuYww_eWvBaGz+H?m)f5m(;sf+dhZ(CJDW(yhP!fbSc|}9pyZ9zmwBI?&6%!jjoG22=#TDL)N{vel zQdj2E5JEm%#b`QOO}T^iI9cVjmQ}6IB>@iyRqM@LQ>#;yYNi-X*`BF)HC;B$YQ0L% z&>woAX;yaO_>RN)pZmLR`TyMr+`bM9*JP(^wQP(xnZEj0pW8kLTrCegCb-SbG8aZ0 zdmR$JptH+gSS`}5WLW|06`NP(9-qJQqF`g_((?8D8~v991@|)La^-I0UUNY6sON1p4Kqc&+j?o4C1m(^YI2g+5jn zs;&f(+>rTsqv)6zGzi2HAP9j#fOsWX`Tj*kJWx|l58z7ve;3AFw)c`u0OXS zYJ59~Aq8e;5t~!kAgK5S-q?#7#Mrw`*#*%^|5W7=*kutYN*swxi2p>@_&&Fu{BzL3 z6lm zI0nI-ziVFBg!Shq&jyq*tdKv6neOpO671HYYDRcpx*w977g4=S^lPzIo}XDS zeL;T>hW~-h)(}Hl!{dt0k{*J6eFH$yZsydG!TTYvz|{MnD*;lF#SJ$5mC=VeqTNq5X_0%u9<0h>lGjU(LK>cq2C9{<*k#NN)$?; zE#L(~4vermpiLwxA-uFrU8@RVnQNjYu}?l&8$}U#yfwpWh*+xBJg-e`>xDISOMKjv zifAN`h}m!-?=Gr17e~%NcG7|IUtPk`fLK+uv{=hA`@i$bVq#%Uekn=;Cf5{#9&zj@e%{@Je|Aab$V4(TWrbQ+jqtEv@f9KmTJP|wDzBI7F z3!APt)RSJscG@JLT&`&Pac`Zus(LZL>s>{_zp(&OQGPx?H8=$3Gig>A7ti{h%F722 zktJCQg>V;>_l0M_YUA&h@H6d+UDyewNz;d?kWG!DR?1i!m4aj}+jcw0FGzlPqQ8Ev z_0_=J)8yPy89$!+rLHrVd>8bZk9wAzWJJNEK?u75wGqMtIejLKqO$JkRP28;SHbyS zPGl_`ZB1QTC_dbf0|rMh->)-iJ?a0&-5#oczElqXOUkGCye|uA%G_$ zG!4Db=3f+%#1B?{jZzmCiBH7vCe`4**4Y=oJcPY7%bYCa;d=QTo?qCuYtBXTpDU#J zsAL|2>8FDnr7(on#vF_PzSnIJ7%{n-1Mx0$S|>~6-MeuLR8=LqG27=+6b`%v9Cl?;gN}#zW(e+#l*EmFW6W0IeY{K1%Y{j2BEk_D9@%J2L-4F0@j{)rrN2NA2|Ar zjmK8?3=9l#adDe&fC#_PbLe(%{ZK^~;80E+DB@Wa_!s}kfpGh+oc{qcN=0iwsm^b&V!8%uGu zu^zFo;7o0lHlWCtSDR_+*dGj~9cBqXV3O`%upYaMYw>oEZJ@YfvcH$=wrV zXoYm~46d83pByjDOV{m(<{r5UhnU<&AI~Lpab#buuc@I1(gXtk9W$VmD8x3~FLZ-S zv>nP+09DLdO7MR?`>Mdh_E3w)Nzc637+b3n!4lw4-}s=T!U&8TPPbgIbhM%OmCq)zUqxesVud=SDcfWmZ72`7pv;`-K3>6<(?k2|>3Qxw(J8o7g_FCBl>=QE-32;$e2bXNy zUQ-+0<;xG@9TJ`bEp3}CgkPR8pVihe<;M3GJi4+xCW~r_=rX%$_JUxT)c!a$Fvidm zXkP0Qp5~uEb3B5j)pzHBevKywgFAUrdGpoog7ks0hMokKUN^1W*#amorKnKX7ondK znvyYxDFA(zmv<9jW}eb|sFc8T1KZi&=HgN`l-NF0AI7gd!GWNmkh2Z-B1U0hUH5(K z&qA^4`EU~b+Cat<&+rg$#oG0dpWY1?Ityc05Qq(sYO1>=9*VQjo6QzR8Bu-cjta-; z@qs@KGSZBR zK7D6BJ`tS{8tUg|R+=2~g<{-Pv;_kB?A|&R`7tjw>EZ~(G!oQfq`0O>Uu5TpfohYT zclE#h8!VSou$)rv|BpQ!+$s0Jknl2iUFr&7P>m*_XzG75m2FMU#&kcx-a$3%U1_dhT=_W%4u_5bAL+9KEM8x zFM%L8&U0r*#D%df(P+3c8AT6~p-Z8?`-&djJ!6W#RK zS(~G0J}I{ooUpsDt$t8sDoP~PAYR&W;oX7JsSx}^=1uIpe-5TJBn3Z3ZRKR0N<&u2 zHCZ;ZBg#;({AXs4-EkfFdohetr!`A=%B_rFs))l|TV;`JgIQP>jtp;@ z86fZw<>Br=IT?r#$fIl-|P2hv~_trP_2KV87y_jr>A-{XYwJX}iuV;C$lT4|zUh zdXJx;k;URI5o20t(6B~054;?>czD&3_IjmYY%rkqgk_ATX;G{ea{y#QZj9vK28Uj1 zy~1ZO85x;+1gPwsx7_oRp%FEaoSdYhVZhBfEFfF3JsSbEtQwVXJpgWW|9Gsf9+QUz zXl;Ps^3BM|aF|XHsQG!Qsiwx7s!7FdvRj0x^7Iv(Ja7@F^Go2YzvM!qN{=dpvrZfb zc7Mu#pOz#vao}M?jDyLz>gZcN+gg0|Q+BbXNMvFPtIEhXWDL)s?-k^W`u2Lsp?T-) znr}%m{9d-__sIjtcx@3kB34Bt1}@pf1spLCs|qTA9^NhBUva{(TX{4Oo0+^uOUmuO z{cXGQlqBV=Mfjva-yW{(^Oy`wVslrKY;lupN1R{s#SND})dARDqX8mgEetuia#^)3 z&>0#oS_Hm~Plh|5DjpXkg7%)^UJKjA-9ol_yC^IBS|y^X>hIULSUs*Wns#;@BJ1iU zX!Pbz;l#Mt7p2uJ`GVMrD~Wv)=sB*nH&c9>Gv{VrW0Ot_I}sI|Kl!xM%8?pQ#ru@K zs~><;I_$P40J;N&9s{g=bKh(>b|V*9Qgell8yyfYdI8cptEJ`1FL~t-{hyM1Z=T*a z!^XUK@1D%r{VH(A9}y7hSzlO4>%QOA_v%&mswn~i;FeEiWFYbsk&m^nJnykt))w=E zh~ewo>!-m?wuj(iZf+8!y^!S`5&gI1zYG?$Ol<<|B zB9Tp>qx!UJPSEh62ILCO{r-N{Z{!( zA2FHTAuPHuVm&wFIeFX3pC(d?Fd?-!L&3!S?_a$-zdt;Gl=S{0a)7ri*BkAmfBD|g&)MU4-al}> zRM5IAzxKObD7LvGKI!pOpON;p0U}uE6Y}(#8G9Qf%UeDrfsRXf!9$G4be|$d9-tS> zILr&%?>-W7MI~8WT=$z%65xl-uP+pO zg$Bzya3x=xn?xKUic}xK1xk0ugS*Eq$|nGR-OJm1v!JK1?-_8{KK+w`5El`FWHKt# zHO zZ58Ubz__iq#+C62EyMe4#Jt?kG$&5$aRO(hjbtjt?S5&6mqknaBYGwemXbV8$?X&) z_XVBYk)MB%7*n(+-0TVKE$&deHw5wSltaE*L9e3`=@qT*7dtUJZlW#MgHo((6Zl~| z;%aIdt^B;i@rkhZtTM9A>1*Z+-#85XX@%nYth@LUv!r}Ni(C*3+SV7alX+ysgT+$; z)j<-_y#rMHaH#}Ah)Ps6PIxrAj7C7-MQX4OcOCxGt>TlCX%azvHbov%?bk+Ho+5-b z1d&A-Kl)>+j4sR_NUD}B@a}B)v^Fx9ny^$w$7Gb5u-x2Z7Ri@8O9ljbY*G#j5g`Ms zr7SIbHQ^TgO@2O8v-2XpI-Ga!ax3iF(hyB^FYHn0`N6>jX=sGYq$2#v%HU6#6Ff~&rrbP@*-Pc8 z!gp^#d+CjjT*kS3+hLcPx2FklCpSZAS1&txI69C?R!%i`24}ybl5F9p^i_JI*ObuK z#hhQ+tTb+~H0ho6=uof_C>L%2#u5i9>7H;G6SnlDHM~D0gN%A&4t8##ArdDC|gnq5S&7Qtt zfT>s@%Z>1YM0^lp{y-NCt9SBj4-#hyoSzCD!~}U%y%CGU(t^qQ2?Yp?0iJShC>2HfHVlUv* zxNR{uo!sn?;p4ko=u3ZXg?zgksobe#1izY2iAwB@?FT(vDRMo0PoQhgMYNGWI(Pll z>Gpys$R2+>-h8yJG2%t6rD(C{ts#7}$r5w2#$1OQqk9gF7(Jq$qSF??wbM^Z!7m1& zft|3cx|#M#@^VwbwZumgcrvC(Deu+cVb836%C8y3#HaSV7xS{G$PZ4i=Lwqb%5(`w zCiY{m>uA5bzCGCM_mBC!Myad@K;lRONf-&Cg zd)VV`Ynd@?aB}^&UNH5nEiC$_Ems@abo0-v0YH5!HU zygu(mLvHV;nWCJBFSdGLZ!s zYsd)LG83h%gl|nU0xmiEdQ-)m*(+?}VbAH^pH}mTNk4cX`;Ea}Eu4S? z7U1W{)6ycA_TwJu@K0q5zCeKA0J+k1k>4E9)zv4D+abzRKLED$VTgDX^-$>>06E+5 zSm8gJ4!kccOaVYWZ?;8+*v%Uu7mDQ&z%WFJ2-N|Z+=d-HlhHS-D zKSVP+UT}IBU5*LWQE%fwd&$Vi0sGF$er8Ia-E(onmNFZ(ymvh=;RV;}Z{VRDm)B8; zjW(my#4Dy(1zw4pmpBf{(64&|J;7Gdu*Hy@0ezDKQ_g7rn)#v6*Ry86hav23FU@VW zp16?r@BDdY^kr4mUZc5=t9T(>RSBzp5?Jg?2la-SD=KNf5H3pOI@W_GygUV;_i?f3 zsAJ`20)DV58y`0LVC0iG_ZLNVx-lDa*Mi~yZQf4>AhCBrLSD-u z;IJmWm6a5b*swj*Xb77dRJ&aGBYtvv)a8@ zRkin|NCE*oS|R;Q&Ns_8eIaOLVxi4{4~X|3isg}N_b2ja z8!vw=&oeVCqU6GYi&8>+2GO^|wkHFhw-Y_-FkIaCnH!F%d0WPm7u-D=zEaq}{`<{u z?OXt;U;;s3^|jN+t{yOq5g*uQMK__HIz5i?;ZQ&LM>IS1UpjFOml1JkIhjwYw`U)q zgZhTD#XUFMhyKpv?aS4H+UNe-HU=;%#s^-5wVpYXoWEH^R+ZyEVO&P2tAvC_Hg~e; z$l3ic%*cAF2J7fFLdb4=xhC_AJ;Po~^MMe>nMK^rnPWHX#l&%_+{rohyV!c2Q=kKq{wK=O894u?xMtkTMbjEl0&*1 z#Xz_y(y_by9S8S|DDI#2H3v(_hD*29yuE0rlef)n)x2m3N-PL1F*q_FtnCPkUOpgz zfcQz)bFA$&w4AO8%I`vZl?O$eB=5Cnspd0>C-ZuxU?sK<%U%m)=$Df7I~&32-|#a{ z@1%3)Fh4tjX}h7t_So7yj-M2>RW^rY)<*bfwPwmne;*L;RlAuylbtN6OA6S)A@h#hIbT|7gab^*SF_%EeH}^Ot7-CI>o@n2E_}^{*f4oOTi$)8 zR7oY@W0TvU^R^Vhl**N>IMLVzpsTFFO+X9IJ(azJ`+2aYhRk7yP!vVa%+@cguZIXT z7<^TrF@HNdargTn91D^wU85a|;JUrd3h(pkSx{ufL z`S!(+;Ys$M<8$gVTlifcls%@D)W??gVz>PlY%DBFU3ubxuaZ3;u&jO>u)Y^pxZ^tW zF^o=}k(ZY=2qs7myIj$=#k;(up`c(n-WVl-jBIU-mT3sFp(c=>`rBn&XTc}vulojD z?wi#<5&JE0lzf#eZUO-IPY#7`W>^KIJr^f<7p55=Nu#v0SBwWT-adZ;G{pv&w5yQZ zneo7Z2@e~aDp9S_EWHIix^+!2LbgR;UmuL_c*&b@@NJA@a|>nDcrVty!0R2dhHGWp z1TMMRq37|((OFjq)qAqOtKpwxf%0FR4j3NX4OQOT&+biV&HwqLRQi%`Qk&{*vF&ki z@ZD*@SD@!DFMAxXOVn?xiGnpDE(3nB%am=dlUDf*vM&VrjdL|Y(b`6WM1DfOjqh{X z6@|he-{&vzZCI~sh(BWcz6~dr7fZgyiS283$1}&3tAMoLaLmhlL6nULu7y6#hi^Yv zNN!(msBU^9jMU?HAm|=od>zuli6Md7QvGfU6-E!uJmhZl-M_FlkkCc{O4UZs6|F}s z?YaDrDz2xriBYk*ZxrkN+iR$aE6t{RRZNrO&U(+)R;rLT?89d??!uGqk|8ob3#4<; zPd%~G*O@$T4mM&Jd?B7RlgJ+1=?baiv1G|aKWUB*rL^A%1V085jE9JW>46iHG@HK3 zQqeP;j>lP;U{(>3{~h2osC#YkQQ|0J_->Qb&Hu_W<)^BVOl59e$ZMFCE;=l?atF?H z{O23<+e5UbHo2g)v#f+O_594Qzc|k>kZ7Gx!1P;Oio^Fo`ToY;bgI}pJ@k_ZWLC_! zys;!49R48s!OZwDQRlvQa`G7UmuhX|_XDEKbB^pntWMDcqE)gO2F=W7nCUE7`Uli-Xln!g) z_TbQl^2ckbZ2V<2NqblPHJ>DfdKn00R@Kxb%;t3+C7D$FcBh8)#U8#qZSF`Evb-^} zM!w%Vt@Vb;PIm=35~(!%@G3BoB=2vG1nsQ9cs+CN9f@C=OQ*}+lw4x>(f!kViWCB) zlVd*G3@^r9N*li{!z{Z)M-0j5<&nw{k(b`Y{AW%Qq`tlvz zYm~U{0|G(ls%diZ{8^esbv2eL>&g3%RdXxha3{}TBOMFrNnu02Zur6%-DiU)XW}ZlWMa`ZHGSbPvSD9s`+tG^(=&>B$q>DaXvddhA%rCh)=Cwz!?xMOiWKN4HPxL z1#_VL0JLC)tq>Y*Y2B~R1{o27y@^4}hVEFiyHywc612qJx1bJMX3y{-4m7;8%^n?YRbx&1H27~Cw)n98^yAW9^ zXqU5B%Q3f`^hu(&dSml1&o)=OmLfY``J>E}ik#iwC@S}BGOs=pSp6*+u(kC>uP$PI zUJSWsSS}z$q^RP_`R1qc_#Zwhc(^o z=I$p@UP%sj-<9ViyK*HgeIF_DINqSSiuaV|Z;I8}8br_LPjT-5d{<6ttL9O@`(LSU z{8B=@*3tdX751}aY=T?_1O^6KkvuQ59(pU}I?$JR8FC%mZ$J2J39OjX5arJ)w}g5f z#zi@LMkVfCl;g=7dY#l;^CZlqDlU<=4R`D<&ke3-7(-_sDU zv`KE{a%@umODZYstAF{K%YqZ_oBc06K5{T!Rs^k)BJmo-av=97Q-##6L>~QDd1~A! zCc}t4xlE1n5ToRh!F;LB3v(&3rZ+M#m~;P)1yIRCYddt>2xz{RE?=XGpc&h5`^c$90i zep~y665L0t;BO;!_`0`Z9ZSi}hVx?TAjY16qN?n%ExY9pv*`W?xQY$9v5kk!U#lBA zp!rtY@SJn{Kh7N{Vnm?Jf%L3&A%wA_X`->T(UDy}m(sT;?4(-i`DuHqLZzFF_06`$ z%-G+d-B!zWRAAw=U(b+M+{=|T-{2vd+|7`G1IfL{vwN#EL!y{XquPeChOcF37e|x6 zd}sDL>c-6NDE>KEs4uQw@z}wk#A$C>c!0K|TF-0KfKFR2~ zfrQW1_xB%8yK|u*%gG$S+EOGv)n<1C zXR3#cagVCK&=$>QX}Sfno}v8`Kb+Dt^W{>7d0(Q?Anz&43^|HNz{GhShr{wfoCBkE z=TXY3*veJm00MDyKvl<|Usoz+ZW7tV&*9&kC2=3qPr=eyVjmGs^jQ`Kc1mmNsM+Vg zmVl@7#wZhdsvBeJJ7V%l^Ig_T zbAQ1b{`4?Be7{VVk{p9(7*p8JNzof;GAeILYwme1bv)Npi5Hqw_A<&zj0RY`*XJRL zO)Ji&F`82&-E{`pOMG+yZm9ak1ep~sY(189DJ1U<#~3FIx)(LLzI-P%!4^Ypaptk( z(Wa{kczm#GZf=@$rSa6s@$5OdQM^uRN+fARxAA!I{+>Csc1KckX?y(_ZMG8dM>+B5 z>bhvd3PSW?rkssV8CQ|3P>&EeB{z#PkoK@Ab5_2ey{db@Xeb zG8M}|aJJ7bW1!yxxsMus{p9=EwRXaXRaeX+4e7&)! zvsKzL(o!zrbZmlUdIhL258a?=U&a5>@{?9iC#`kl7W8B>!p5Jh}DL%qDn9kB`S?mePwA5&-U0mM2oQUcc zA(L{OW^6o7$04-!()Fq?SLk43-wZVKy@icokW(N-<4On3r>9XX+>H?y3#1`i&yl0? z6c0gkG+z4&9PfJy99XNVMT0DU76E=99%VL9=fePOVZPY2Qy-O-Xp8X2eRDPY%)xUz zPoI{ot*v=9e!WdbHgd7_lWHYj6k8GC6Sv~|vrIWO-Y@HxJ0vPz(G=A&B9>R!Pe{2F`?Ryd1jVz4-So54+HJ( z2j#bH%`3LH;@^2Sn1-;M6sy6GGTq6hPN5myQA6$Mpf!a0p@2-`{wRSZ4)*vm&2N0Hxd8atR z2__Mh*Q>g*j66KV$}fE|php}#_ZN_HUtkdu-hL|D8khy8wGO%w-e_F2ZPKt6T_Hm$ z!pfcdoffpP84v>vL#y(@Ez=1yszsg&y5W{lhf9O-_rd9@=FY|WIit8Z4Im21yHmUp zTLi+)$;98|c;XYVia}160b6rHeZ4x(&8RXD>%~(e?d|P{m}zvYs;b#~UW9}UmQ*~8 zA)`H<5a}9i!-D1)R|1C?-$F79A9C55-Rxd|U7qcp=G2W%jN_>D??z@X{|@d8PZ3c5 zltx>%Z3D^dgdz6m1$wFu&cc1`qXx*%HL+-YXzwIS8&zdS8$kUO4>LMqx_*i)HSA>m zNNukCUblzriJA5*&@uiT)D?0+-n=j$6Rv^=ORH#ki#75M%MCeIl*!i58BqJiy54zq zdeX@5uU;DS)@WsgJbYU#M7HbrFr?dhZ!E;#Z6}v94N0V9uBINlkd>8BP3!0Vd4d9s zuu%0|-DPcMscJE!8O(&ub$COPz{kcMsRNYVf>Twae>KM7R1ub8`XB}Q!5kkd>Z$V6Mq<072P6w%ZqoBQm9v;QQ z!onNwmRQ8@K{e(x;_xmr1l}M`Wa1xK}W% zos!JOn*~hssrfh6N`LfrMs|mX8hu5&b!baM5giX}FcZn8=U?E}X7P}bw|!2% z99>1La5>f-Q^TmyXfgljN<@<#tx~#(Cllw4FWxZ0E#NcI^qi^Q5U11>h?gVv^!n({ zK7SMN-3infgrcL&H{~eiYkIb}Xrue{^Yi`5jlhc6RJ4;d0hCSX_iP?&z);SI?-+Y* zP58qtdY|&aOOP^`lbT@TDZbTPmnTV}<4TylL?Rg&Xx3<&UP>drRdJuu>^@hrkEBTz z)geuSbIjyqxs3C%DWV}bUS4tadXkbe(olFfItL}HEXhmDIev#G`L49&fh&T>AGmth zdlx*le`6`$WiE}0Uo`WuK6&3z6hu%$pcr#uLqx<{nD=CDPvy>i{Ymy^qw^?|<O|T zA65B@jvH*(2Z3XJ{C=Q-u}VbTJe)Mbe!nY@ojHOaXWvrQh+(F~UVcbt{oEJgD_ z)(RuzIm_FB6RrGD4TS&i;8*`kCQN8z<%@$=ljlU^0=;%uqR3mJvZ23olAr%$b2*h( z?V#7$A8K@s_Y=DwuV-*h#}{jM_jSL{`l>AkccO*nH&=sPjEw=Y*vXDMvo36_i;b;Y zM9cqk@R}JQ{1M2ls33<_ZYbE?t}jp3FD_5dmckVwBTGv_9P;~jGoW%%?@5(#FL`I; zc&uDGHKkK`*e9NMbyc}c*^nTm!TzfTRDsRU0|bG{J^oSp>jYj|CdkfZ03DK`)tOII zry0GNKKwlREvR+WPnaN|+hof}>b3K=t^?uBH7I+FW`qnB?0!1`%l?gxh-Oqogq@P1 zR^{ID`X~kfb+B@9w9Z}PL?(UvwDpSE9gVAiHNM-F(} zUL){sl4}&^cA#i$L#>E#mY=g{Q42b~VcH-&G1!s`nz!rY_9`|huuz66u1X8BzB(8= zZ*d|Vo};=aZpt<<^s=? z$Y}AbA#X((ScAM;d^d!i-x3pPfbxf+Cl(4D8j00p30Y%OMW>Vw(-v>CI`l_yp1-FrBXeRsk zj+=x~XA$79a}zx?=~*`ghR!5!NT%oX*Vj8eCT9yR2Jnq*`dEdQ?>Dkz zw5hx2#mwJG$cCt39s!EYTxiG-GRWGi)Az+O8BfLrv~-Y&GisC!Pu+J;WbsfcZw(kB z$RjUaTYInYbC~V)*rPs=Sp=9__(Vk5(4D(?(V!&SqzGjBen6FfiRqJevTfiZ_8lWO zORLKRi)Lqs2$EM)D(@sfvjEHpQ2;7A_}k?9!~{;pSi~3L9R)GqoY$Y=`i;6nq6oAb zw!+{)PnULOz1=y~@qeJsYMp3&OS?S(j(P95QM6P(2CfnTyLp*XQ|oEDg|!8qfL)Ag zRCj6P1K7na?xNE+M2n=`>L$^^=J6B7f2P2?lUUYSLdoynqz0d8I2u86yqkn5mA=c4 z8sgfgdvKh|JuzSV6XM{FMGiWY#3Oh`b!RcX8TlHoF>V=;>#=1!VWf?-bpT1+IVtxE zQH!FANn1vyTtFVb-N9Dsrs;EaMU~l0X^-T6S6dwqAt|>S$D>J}gr#KWMziu(_zomYS*{#Z~6jg`CvZ4u$2Y!%9m__J&g!db@2^ zAAi*5y=!`v-u4#tR6c%=FR!Jxb=eqz)b||rIwT+Swj46h+!;4QdOOU{cE9{Z4Me@rk zw6b%2A3!oLF98L#DLN&CO<|i^3WII++AC8_B$V%Sbdn7Y>9>Nr)}-p*%R`_Qgz` zIqXKH+_TtC?NVAu39&r$4E_wIczD*uBhV~K!kIKs@xB>@cZvj?6V0EtHU;oZo9A>n zHw1jXHst-i*!q$C!Mm=$J|d9&2=tmP;BPT-c5FQ?x(aNgkpM160>9>aj5@}TC?gUR zLynG|lEht!R{N6Qw7*tWMKd=ye+jNQaS}&-ifyC;v$VAQE%r!7%}TPUP|B}T>K0#* z?fb7vAC_)sFpu|yu?ng!xVejl#l@L)1iaj;iuinsYF(bSOGYX$;9bvwYN-D=LaR>s zj_F48`E59V^zWq3qCeKJUQGa%V0>XHHA5j&e_&Gcs;ngM#T^a(X9^+sNjx#pPjpcRux)tP&8j41bmzKb?hHdwI#0vZLKat6N@uepjBqK#z^@FcA*QEE3npwsV zzUg09F8g86zW0edpj)K=3{(=6YUz)IB~0H|QFv=_+TAbt2YYL+1nTkbF`X zGjeY;deH>TLv`D)N?a~ae?`Yf;o*J%YV-Vu=*%%)?sQ}q^aE|~Gnkv7lkf_~4=wY6 zb{QNT{MM&~=!o((mn`1_ZqAGmH!q|5V-DH)0ELgicIO z0*+9^>gsC9w?MZt?_A<~E#sV@<_3=pHBC?JQvH;7SdT`mthDs?6*m9=d~kKKYxyjk zo(rURwoXq^TS=rxtE)5q8OG}9>DgaGzJ;1fiW*d$uX)b)dOX}q8K_y&nr81eAzwdV zkju=J!wQQttR6-`+xOyi+Ij6~a@({!DD?w*IMqG6{-OCDlJB9<@3{Xn*@(mKuvCnX zFMQf*DE9YoHP>c()Zy2c^wjs(L-h9H%2!R@=F^m#IeRHja9nmB)3;1O$RM!l_v;WJSZ<4g_@G+I2-boe58&ekt^v6WD6 zS#)AuUh$Dx%go?bA{8l@F`{e{FzZxqjS7?VZQtu&>`rRl$QF{*Vh+w0yvMb zp|!&TP>0aHx?tN*`Je{*43B*z|ACg7w1CP`HAOSQF>$ypyTkqng}(P$>=e1f!Z(6@ z(1M(o>@%@B`i1UGAJgmW_s!P#cUOaMB-u`p`E>W1fGzhHxT@PljIe-mpXYfEi%}7h z)`$_gr&AuXTOQG|l6!ntM_yBT=3z3A!t2ZQH$KlAST%z!GY1YMf{3Wt5fsa^-$?Kv z*ORT7qn?kKkbkGdASxhDL_umq6qF(YQlu(K?@I58^xk`K zDosT|dJ{xi=p8~w={@w`dv6KJ-FcqhJHGdiJMR7Gj&Z-wF@z+Xgu~hU?7h}pbIl1E zC@Nf1I72Z$%uFH#S&JTb&2`*YK*C{YXb5s&N#?eeZ$Q4rYgacnsaH*-;_Ths-44g= zD(lVyMjD2o@1DTb#YMtIBD;9!x$_@onXOz285sh|{2SApxBhmkhpgP}&B9*M>T%HV zGcq7f5fY~~>3vO1{M^wO-KZr`JEw8%&t3rM_c78YZtGaGCQ+u+WXn=4os`K_h;ncg&`8=l!qvn9T!0SEmac56~tpemt z2>`opB@psKmn0smxI?M^!6|c6;U)}O^d|pPp_=>aB*=R%=-0Zz7%UXRc{GGzSQ;(4~b(>owfa+qlCcwrN9lb zkG;7E(xXRq{(OL}^NjZW=cxQw3WxfK{jF)wDq!x0R`lEJT| z0?@`CEKNo~Re!+z%XJ9#e2Qh90rvVlXe0*00R;cbs%EYR{-n}DJdxoho#aq6&kZU4L3SP`Axrku(HDSD#RsCtYGH8U&yKY?E(;C z$hi1TrS5ZJNAW-pczy!C2_O&JmMs^*f6xid*YKB&{H9%L{b{UFhY|GRvg=f~dF?g) zQptxzQ}f8Ou(R{%ba&ImcS4W>ekwDS*`)`BMk^c$tS2RG=wyrY zXkDeg&bwxSQ$CqTPJ1w$P`4wxvpyRJf#h|usHo;rrV`)p)-dsSJUKU}pmo}L&^jPs zq4v}$4zPOXR~HCU!eFKH20sdA$tphZLLyT6Wp5D>v~6UqJ@-7c_df1ZKZc?>9zCLM zliK@?x!?xZerVjGgx~ie*(Z3iSf`-i15svZ0@VaKJx+2d8I?id{V6+UBUpu0$A&e; zzafcToXJ+X;W6I5hetRMczM;YK}1DG zKbV-{K!AnW&sjpll9Hk1*Pi8s=AV|2<=maZ6i-m0adUs}7u7+!SNccwezCDW9n$&f zA6jLHCsh{*@&CLj$M3rSai5b74D;r6L%!B-g6KCjA5?TC4abBa|C2LfHMMiYR?pE? z|F}M=K;{AlG9{w2CYtg1Xl3!_a=q^MGz{;p8(kYW^y>Pnl!vCExZDAOFm^QjwnQ`2 ztU~3bjb@`1EkLQU=78_Ic=EJ>MX&z@mtQ>H}tbK7bDWC533Kz~VXN5UWbLm*5D zp3xN>wcbSSx03REowCWw$%RBMd`cL81U2B;zFd^DrV)_W5^OL*HD(n z<+hFTh29=SjyODYxRB(R9&gOaV#`|XHY_WJ_yomc?+AG=K6xroi|6W#=9W~Vj|zsK zJ-l*`dmFqnZ5b-4U^&>jY^*wXP=r!LKrC-WsGCEtJx z0J`cAWopV)=KQ$Ubk%bjEiJ9Q?*rrGngAMU9voEBQV02EgFZ~VF)c04ajv_Y5VC*Z zOyllq8!r4bS{HG@2uW)Q=f%Odnm{mGae>i(QJhEXxCzv<8TxMaA+yS3@9%QwwH1iLYW6@;v98eO$3K0+xyarCD zz{Q{dbw@cINPUBuiv@IogM)$M2w@KV`VR2IStHmLpFVkbWb% zDsRCvGAb&9pl1K#;^)&&{lex`mF&8@y1`KyV9i&IQv4Wg5H+xtCZ#V!AeQDwe{j&f zu)H2zTekS{d%Rj^eUGN6ljEUE9*0KU?~Kw?v8V86o2hwG%oXG{w^?Rx-mQ$*(2UZz z)7RxqOm2vU5sRy+-3v7BYx6@RaRR3*1Hf#hO|B3t!$~i#zvCN#Q~l*zFgJ6wVLzsF zvF9%%czPY)1W}C(pTToES|P1CT)9?swBH``9T>G%k%yh`ys>q?8MT8USh;k}FwSLz zy{T!W?L5TrE?knU+W#=urPfcSY>%(x? zz-w3b3)5Q1^+?`o^9pkgdz$iS{E%?p212gzJrT|v9&zdFew z;glSUi|yfEr`7rhHUE`B4Q=($U`_0jve5cH;rUg*doN%H*(0Jzuh2G3xQ0*D3cgA+ zM>CCe^RPERRQR0q@ZzFMva_#h$y&DbaIoZPXaC49QpVw3u&tlmTK9Ijc7f)R2*|6x zq{MzId-~V?AT}FJ%zN5mVNoArTUx~r7Fp#ScppudSUv)8JafA3ztyKe`; zmUnmVe_UwwT-yEN_1s(2ZhDGy!1}5;kyJOuhlj3p=F00;>Q}W^u*}ZyqJ?|tG2jtC z$9!XBqdiCztgYER&vuC+SV23imKUf{^#F+#b2KPOJ_1kV6JHQCc%EE?9PiH1fO{Xj zCjQLx0LU|~ko)bm{Ip>apY^~p4q~S0`VjBJHZS8yPK~p6*%u!TSw09iK z%*zvd+OT30o12&CA5%sFUL{V2POC~rcwSt7N~W z&Zd-;wLZ55KJ-3muY!P-657!m#0-H5*UqW$q2_a5fY8o)eSpB-y=I{)y0gS>jm(6G z_WXdKWKXUoL!9|Jzo~Kzpk9d7bNsbN?#*~y$MY2;A?4ts6>z>524`cl+qBji0;Q0j{Z_5P1leHZZyov1hZa zFAP$zdb_$>>N6kyG&Nm3|NTzWpN5nk_a&AOjR9AnNPWiB(dXKe}GYr(5-TeD@erF{B6WJ{?( z0*NtNj4uS6rpRH@jf9-xey=motnTYV%DEiDVSTtd6w}$XpIHSk-ueWAa@_tyM3AP7 z`aAU^+TQ3RZYCL=Sq%=6Yor>-5uP-lGxxz{h!d|l!Xx0Di(!AvNk{dEm0BjzyXGK* zA8PbL-XjPqKxdT$6!Fe4*3x2+qJU9$u^+}4 zL}&|VbAFv0!@maW-0ZOGs4XNRKo`9gsM`kuyuf&@K+AkI?;h|r8vx}^HPcsea&jg1 z3u2GUb_=DeW?Wf4kGF49rf>^QJL41KOKN+v+zLN=G8&Hq>C66ki%vW;<7Rt%w!Kqb zZ9#SQU7k?tj2bTZn8<*~#sC8sZISIW`!Rvcg3@b`+q0hx(_onXcJ+|O`B<&#%ojKn z#QU&pL=0H-kt*G#q`+<$lyAR%zs5wVwA5pUBhS${GIG&0>g{7xS*l1MKPJP32Yh+WlgawvHazBzb1V6NPpa0AbcvLkjmQK&l>EP4wZH6!iFEe zqLW+yFozl*`H6_XK`3vdP-f?NmkbB%PZ=(vw53q>TYNj)OcWd@~$x>zxk%{ zm4(IAO5X|`4AK-fkx}w6B8~s1DB2t)xHQY)GjF)(KNt0A(csLbvmYZE9Hl3KKXsF? z&beuWacv)ltYzfkA>Mg7nW<1L+K92{_@M8-mcqC0* zek;X0BT%=ZD~|Whc+U$nuf0?K5dsv50tyS+iEfHFtXLxd{w1)=%P*PixH+yFo~wAp z*>=j>QysPEpm*b3OqM0EC6Go}LtpzdVW8i|GZ0T75|Y@Iqpq13r}M^kG@b#JF~h@g zcKEHb=94%(O~y|Gl+^{9xB46Q@7$bq<5Oq%8@8UI#30F*I-~B8S;fs2dMPHnjNwL8tG)Y2CsGfU?Q}kVON;rW);*_snA6YIC(va~CiBcM zjZXe`KYhbMZ3Wa8zT%2&!O$O~mbPrDGGo*3p_RE4=S^0e1mf9#8YDKKd~k)Jf5 zSJ6p+<=NCaL$}j1#X7YVR7D{hEnJ~2jmEQM|EBMYHZe(JPP@Q`?EAc@mLi+g?YrwDuiW`t^xesx9;M=ZQ+&96#1Ycpw0Y7&`4ZeKw=^^~{=jZh-o5)| ziTrP8Cmt}4z$YXW2TFw*h^?>Aetr)QDX!NStp%cz89-s(#h^`)H_!%8B{G{#%y1^A?15K)^v_ATdmX=VSew7H9UNs4zGq7#I1y= zDT56B&I%_R^;Q1CaU3#XN*Qo1osBXU<}$?6ej2?L24?=s z#`&IKy8#52LFAEBRVqZMWwBvuY-1_@p1!47k9mJ~jM#L^{d|_JYYntr#)q~|Pb^PB zlvT8FQlbePk*?7t)>7vW*?H(hcQ5bt^+oZYcyZCv(Wx-ZzwqycH%`A_raR*3UO7W0 z5Smlc1~5y?BOpybnmb@g7w$1qtmti)ezT~bGJnk!anA{sm_H{$1br^J)CC1HEA*q? z3n|E)R_Dvr!+(1UbGZnhs%ojfwhRUA@bKXCzVQB0(rnmtnwYr7lIDll=#DSR&be9j zheL=%Csd0U!S~Bc&wxE%(RhMTJs09nGc_YcQHLnXZtLh;4Y^S?o~L@Rd`py&Qx!Zi-)IV zq$nXfE+JN3Tf3`aBC~3wHn!4TMxj@?ORtI8#85NX$RK!cFZv*2KJIdfHupjZN(yaF zW<0v+J0ooMNZZpgZR6T&_Zuqzw5HZr=efCeX@UnK1(|5hvmBm#uNyIQ));RAsgmZBkSEB0qvG?Re78h_hNA)qH81(du z^#wfDJrTF1rM2ELISq0OGE3mXMz{G^I^!8-v*&u{8Vh9BeS>b=XL{Snxi9&pCD_Gz z67hhSSk`KPl?@Ve6l*q0!_goPhZ7HFkCCqR;Z&v+@9_&RZEsuGkx0l8SiO6DzA*h# z57++byeoPg)`dU~MB%gEsNB$mmsVZFwUMHs6$n1MXoQ?EjQrl(45FzeE#_SU?g^3g zeJAHx)27n>jei7^#AO^f@iuo%F@4Y-7ZOyhPIk_ZzZ@fOjGFnFy}7vky%o8Z+BsRoixF>Rj>*8%~Q1T$Qz*7ov4RP52o=;HRaJkVevARqwp|A$BYqFdA=6_;1YGY!xX(rV31 zPEX$le3cFk4*?X~IB$TtjNeTgoZN}JJlXnHJ_k~5K`z&A%_d&Cf?vR=t0Ri8+aCva zyuvE}iu*NeKL1lRrsH@wTnW9qA?!Iz%Fn?Oy-aTE=y+&8kd8x4Jp!un5sQoO9m|fK zg|F)oesAy+&4u_{tdc%8)#eE)<1Sk2;hC5e<$Yz{RthkXMU~`CuD0=653H#_ zw?go-*N%bHSzbLhy^;r}pURS`nVRHqEBJX&H&f~$OdnS3 zLZt~8p^M{yFJFb8!q7*l9K7ZF!i{-4@pZRu@q>DQtjipq^`C*yxAe^X%|4iMub~i= zQD*@sTf+;e84i-ujV#~lK1BTj5~7sMsn)=0CPHo|UszFA>L(c#O7w1FXQ~u4pn~Mu zsUfRcpnCD)hk%B8cF|TyexF5uWIeG;PJ2ZBUPxeAGF3J|HmLl0#6yWx07Di8zJui!??4CD#WuI`ZnNgp@fJb} zK=j34XSQPE;)7PF8r&vbcVoYN@mC-IgCvC`7h^1YL}A|f`Exo3bo5@~4kahuhxk8DZbe zxcMC49u3foqR*G8k;r%C4AnV-Zp#i{0fY9X7`M31B{aEyeYUe@<pee!(}kiItt6F-^-NCsnpVqg2ES*Sm7X8`+kj2di0zb+s+-Jc?uMk?};T$d5A^Oix8*qv4KY!)2GZ_n*X2rHM0%1h( zSdd*PQQeb_EKt+3!EZ7oY*x_m_!gTSbZV}8-k`Z%EYgLb12@U?5j-kBnNnAQLdbUN ze8^JEabYw%LKNk>9b6(?cTZX6HJRI+6SJd^6CO|g;;-emi&Cue_1wEZif2|p(DC$V z;~bx}d%bB!F_it+s~RT4Db4QJk*8NualQ}cS`;}3EQY+-K{rEbcbs2NrqF{bqM3m! zRziE-_xcYe78Y4G(Ard1#!bU#`=VYnlsMnBGoGe~wB))WL-1{}kD?z-$UE}7!srBL z&kNbhwG12jJSY||S>_H0a_5m|k8m{cvB!Zg;<@jJiT`aEgD^V@b8~^e)KUs{GHWUfr^3eMYeXCY2@ed@VW(| zw`Y=#7URW6@$Bb=QqTn3at4I)2zQn$P~rrr(T`qJP{h@$Fpp)ZzzHRV79}Sq@1LD@ zzAu?yUTy>R%*cFElj^`chVyVY`11l^P<_5atMK^O)zp-15-)YU`uCC^tevgI8|3{; z^Q8tsKQ*tl^y}9+At50Jnk8Z|~7NgU)zkpxge4`SDQ;A;$nP!vY807a6SP{r7Ac z(9^5^X|T)Vji9WCE4BCng(4+?|n;5G~|YhFUs^Y8hC z7)ozXZsrU4zOb?)0p3DjN7J{^8V0tx7HeLbw@?5Thc`97Y7q=|TJ50%BArhx)IrNX zvvZ-K_qqKF#ipdP@@>x(_PqSP{Cv8yUwt(TygkXH;-jG=@duRHd7ZThJ}pJ`BDjN|{-^V0ZxB+2vaxfwpHw!osxH}2Za?nm1N=zdO z1Q>y`a3KvKA%Rxp&jcLu%HgR7Kc^%S!35;r0do}$CeU^z@~0Q}#7?C;SYtS-9_VN9 z0C7X}kz6u=Vf#612i9m&G(Y%Xy?cT~57ZDotC9h6{AFMW2U^dEa#a|?(Ewf?t~fm+ zG|QdZMG@jO;{;a{F6=jFCCl?S_x0BCU+UZem*L7UB(;mhuBjjV&A`F+iOZJY;A+lT zIliUhcrU{vTKR`7KN5bQE7K@wh6D{(a z*}Oy9bSAxrvFfdfDd7{zU4uRZ{Cv5ca7w?og+6|d5nSledv`0&-o709dyberfCa_a z3KEp31+=xwghpdlCI?rdbSy{D_a^HRU+7+Np}Ei+NEAYZ6^|79GtU@LcLhNuHFj5ETJ8j>5!o8mlhdB>pJsd3Vk8BzLa#aj&D(-|p_L^mKm^@PHjO z0k}CQa<5HRy)I&fkQQo0_utxEn1(lI`^?l5fu|)WTjCP!C-AJT7e+1DD_pkJCo65b zyJa}u>FY;<^%gjM0aoyrloSQvs9a zoh~)OT4}tts&{^YT$oN5x#4l+g`=Ic+}=Y)vq$8!{9^HwQY3U0h(G=84;XoHyQv5* zR$q8cIX~5vQHX$7sxU7Z)OCt7GlucxqmA?W5|CX|cZldkq+{d0kNr6}n2x&DWi@(k zMU&6P8V_dJ3_z$LGG%TfTP$*bYBb=Jb zuag!-tgkPh#2X1VvUhM_AL#YO41*D%x^U0JTj7DvcBbZu)k! z(`c0P+dJL5x{x2k)ttSFJOG_iiw`$a`0@O8Z}Q8SzcI{C4=!Kh6EK{ol}RTa5YY;~ z*{|g|0BTSD`!CJv(wNP^c1!(fPTZpF5i?h5I$W0#@LJl+Q+77*(xW6DZTdg2K!X{!)Wee+7;kn9Omb zDUyUWM0@Uzq8KZe94*DCKA@}=6{>8oL!_0?5x!b)gTeLAqFJJZiisL^#IT(FY~OFK zwUQI`RdPA?u`w67**KdVikf?;(*b=&NU)EYdddf`Ch}!Sn4jP+WyULguqN@0&YV?b z5LaZ+fj1UO?j1mREWcmM`E$dQSs0!^-S~C_NVeu%u(iN8#65q?8J{WvDteOfqU%DZ z=MEy~bE#N?NcH?8ocq=c=b$Lzyf>Qy0v>Ee4TNIXCo5RN+++mgBLt*ilrO>hF*cv> zO!0De2j1qtt$h4_uP%RsHTT=MZ-BXy4nzvKCo96iwZ|sO0D;vkHVk-X^MlLeGl*Nu z5JQ$wA@>1#fB1Pzb-oHA!yA)Q+@Gr>p_SlfPoA9SWoUyUa#gZaRi*C)rG4T9<04yA zS2u+Kw8v8K3&-I^jfbNhZH7L$_8|V>*ze_I@*hB7sd4yWSeT*xfBGt6h*nUt9!Y;4 z#P70s7Y7Fiki`LktqYF1vKuSX%SVRU0gOxy?tAq-sTXXPPJj^xHj{IZOKHM=8;qc6 z01nuS-vxLE$fUG@w<82><+V2r!`rVlfjkPhwm|CK_HKTeXARE1m**v3Uuiv#h;!9d zurbey@aw%`ELXul=p=_fdMhD9=GWdIH>czG5?uObia=)XvlJO*t;S5=FS0Ev-~YR~ zzO0}2P`t_j?#uG zJ#RRPcM|_!k==RL@BiYO(3Wv_QHJq`gL>B z1T0o0@8CI8$~3cZY|sriOZAXkSzi7E_I|!O?{`+1zT=HysS3-{&u()*h<)D1gAN+Y z#kNnOBmWGPD1y$v%6cLb{4*abNbu1Ddk65DR0poUFP6oPKv~=pL|MVW(S3e(wF8*( zd;&45XV^R-(~p9%%(me~9o&Bqe(&?=*i)Abo(G9ih4aSSM%1C)`}gn1!Sn#1$Hc|; zmWr(9AtU4HJ0)Q(zX8V`FhySaqN-i3UMFf2fAONBi~42SivZ39uEB0ANLlcH#2!@_lLnm?|bG$+omgO$ir| zL>238>FK$+uwY~tqyhr79$*cT#ez^&QZfT=$)OR=OC=?@n&$dxoV0I3KRln2UYe5xSk-=nz3!Hj#KejAwyV?YuR)Z#U@}}d{ua>(Rn{y0i~0H$D97Cgz%xSlx>fTYSTxU(NOI74 z2hc(wtGm1q1|1U)mH^iYKuky79Ps@=jM4L(n_W6~4eh}F=swqnk48A6>}HdJ zG6Se|QQ9_Mm`X;`{>9R_tZ1;K0UmY6vFrTcHY0&wohAw6yY0>DiD9!Pz3oXP4LH4b zIdLaXkDqkH0ZlpTuFBlxmmfdwo3u%quUv-QeI0XodfBOzGFB%9VXv+1XwPDxM=R_* zp0$L>J))B_1jTFFJvtl^N~+LTo!=gLHd6Tjal@qYB!J8m&TAk{&3#?ePL#Tq_h)*s ze|f|U?2EnLo_V`V2E!*Dh?{4jw%fwTtago<4Ub^EzjXl9q=fYDI{4X+t+rT|A0zRdm}fU3rn}0tSk^H{@Gh;1Fk6I=o_MUW+r98X3D(IhQ=i& z8S><&H#N_D|4~`lB;MLl+u@u@VbtpC>f-Y92hv$k2myH7rn=72jN9BGSP((&U0zq0 z77%iJ5_!VGR==rFlMaTMO|#e^yaRm(#~c9Tz}WQk2jI68{U#kZ^Qm**XaOMu=={cZ zARli}ygQo&L;j&VjveeX#hxdYpjl~WtI}pF$IAz#w^6@-{}Q}$xIkkRkM;PMICj*=KuMO*MKdlQe`SB5mw0@>x7!K!s9T>l zrS0pKxtzHF_ViwV06wTw@%yI!-0*Nr`cVbX_I4k6s+zuBLZnC@fAj2!;HmOoY6~P+*HadoI*m$KYsj>Q|uki@^y6NqVoUy;UOj9He>^(%i7TSAAUln znNjcBtJ~h(>5N>GDx(U2OlM#Kg`lpksLsZ85Hq1xBu(IYZGvuv&e74>p`kqJi|p)d zpjb6jG4L~XkOwXply;9qI&1x;B(h3m;xawd{#wQ~B09GgvK{{O? zTOcvR#uRV!p|rF;;GP;UH6a8gWKpQ^IRm(l&4A5q?HFu26a+qCrnPj%veqm`34)v- zxTA*vSaoacW}z!s(5PNIKI%>4!!w+&b^uG?#w;dL#n|k3x@(HX^wF_4=Hxy}3G4QBmkE$D=2IdRyB^L&_-ZZPsNsEx7yp5;LM6r@ZeCgQ{=! zH_gK_dN*$1K?a&?M9lhuMn=oSDdX2T%uy-1ec#lu>o;ig0y*eTH{042(Clx1FY~Lu z9)&_sKmcyCWAhR8eS)6wqSHCJ$(~<&9LZjLG^r3|t<}!6HoFVMDY_3K6NSNxZhQCQ zXbR3%6cj|%*9!qSBCmjzl@<2^GSg6dMizPcn2jw04Ej*|Yurr)ObJxL!QTEoF3xd% zfZ+#!$>bK(qessHVm?`ArvwI><2OJmEH=j)GORx9m4Q7Ih=8_$s*%U?S1I%19AdXw z4`$4Hr|1tL4+{aCd~M~z_C#3^$T)yuT~d;5EkXXMELd3JsKf9g7akA{I0Fz7xmy8n;D3_h4@OvmK(Z1#^&4D-Qxa_IC*RBoE-eVuqR#{Oqq{cfIL^MaRw1zYX0=_GS z`%KrnhzU7wS%IBS$3)Fr8bzvCQc?BGC$Mr|l!vNv^H%Cgvf^cI+|FdiVfRzkr_7JJ zzpmoUqITXi?w%MBstGleebJe8ACKP?*8gLb@mY{9UYG}_{glQ1NL{1AD<*@!r#H8C zzdQ?aJG_>3R1Ec3^R-FPv!G%9D0bmvs}YE#8C= zbOE}NDSfaHve33diGI9)!E2Xccv;p_l4NgoPpK)O16#{QCEY(n?}Ux3zmj-O^=xFV za^TtYsWW8?>y&qmYvJ#`rhs_w4j+qw8%^35m+yIWs_TyC@<#HX6e~2<2-a||?tx0D zThE-aJS76Bntfz!k4D`m8yu>?P?xXd?#};91R3GRT1AZSzW@3TIk`)rO~s@bhAFXB zuniXqH5eLZuUt{z+Veic7<9)>_2b!)gJAaj($fh{9%-d2djy|X6RC92-rnA}b0N&5 z7svhLa3u#6_Hu#W%C`W2qYhu?j6$aT z;09m(qd1N#o9_`I1GXr094&NO>w_$>u1?x{l&{80uk4U~d4rvH6J^XGvI*6VoHPe> zgK6iXGRO};>`vEUu_S*u`UD1|lo(Ji+;SC6*D&x=!>LCdc4PkwQQ*&DuAwQ@i0#tX z(ANS2AnM3_f1Ag~#>dA2DzkH2&nEN`L*7=7xMn^%5}qRJ6YfTChqV4RXjGolx>uoz z?qeGUvq%-5!I>v+&n!+7?s~U%tUbw>F4Lf?fW)&8ohss!*t2at>wTnfGV)GoVypgQ zHHn2oFbQnBTb^{Ef&EQ|=ZfsKw@=N_#&)seKVPvS+GSbe@uwG#!WgF>GmkT0KS%Iw${#n7>s_JHMCtwh zDQg~Khmxw+?Tz1lxRy9sExRlAr->qARTw|2!6INLdAc{JbRI-{2z+-{M6b(|Gb~Tw zO~Cy`85kH&zvRWkN4qn1WMA5OxR0AHPzcMw6MTZVq&s%Qx>WvtmH%z5)y>2j)!Z@ z8AL>8kA1fH>`)s%_ZC43%L#Sv0Gj6iY{B4)0OY_fF#x+6C}RV()f_-gN7htBlaC<< z!4)C?{`M}LBfjFI_i?Ya#7dEmpLT~-zUrML-wzWMoSAqd$5{lh5DT z{7l-aIDa>mX9GG@d$B1@*JC+%i%aK~(Q3|wiHW-u_c#wfF_+VQ@teGafEVJ46D7B= zR}Yck7l+J&xuUme$)!{IXg`MCU2#{brd?KFlIb2={{^AdCzl1!w=N`x31BN4t@LUx4o)#h6e5-^Mykdbn3=;a6^Rdyt5WcilQS?Lxqqo%4h&J8 zgcsbTC7)_K~`OXL+hCc!~*CedCBPhmTGhi<-AWV+ch6lZkogb0&B4Dg?z%qV# zbTkn^{K>y=cJWs%?)DbkQyfke*af>9?!vh~eL{hB6!@B!rlhI)!*-#n@?&%~pT%0O zD?sgl^7vqbmm3hbXa)DViS&7$a%&eJvoL;Ic?w3z*QkG(t7i?gm~k?w*z9Lk(2eL$+yt-;@m&$IkNoxZ9366_4$DPkwh{N=)BiGLetfm{Rl z)-9W@e62pYEirbD_Yqx_Gg|wF=kwUu5{3;3cQ(K1D>R2H}x{(iM++G|xSBYIuZdM!@Yc3X-X!kmirEm*p!4j5bTKQCWTh zj?usYR@xwsb>-0lTRr(v?~rcMJB6f>u$?dvY4QM-3gl6R6@vQmLTC7dIg&n4mzuYg zxye;cJ?8HRO+gm8Tefx5>y2NEDym<)w)TA9OGB|BlFKueMdo>4!?bY1Iq#!LqY7Ag zUoJ2H!XJ>1jz%0i*O$y-T%)3+ZMoqUGS1G&D@@kiIAUUApU@VpkXe5W51Otz16$B- z(Y)ht(<2_n0@=Wpaif?71ST69yU1GhVpVUouS_xw`VW_yAYAE-u{GRt+~=fpc_>j% z(>NJy`7g6l5E|SqEF@I)67}Cj-o@Hyfsg;ES}cZAk@-KmT>Rf?;eQvqU0`Q409M<) zW^#IiX@53RTJr369J_&OUSEe^HnHVwy~pX=aE^lU1edWTBJMI?$My~Oc==cDChEU| zGb&Z7_+zjP^=_s7DJNzyj}DFYBSyfd9i^!J7{&^I{NgHgv=}MIfiR}J&lbxtK?T6vJ&)I$L4P3? zkL6v=MZX_yj>xOM*#2*JHc1W5<|Vxi>>qM`;k1v*txE?Z+@h3W^DOd>A~ z_pc~5_N#_{tIgNiak0az@}~WMYoVJ-U@d`dVgLRS03Fn`vL~%?wGzn**xkS@vA#go zy1tQ@j{pwZ?++H+PffrQX$J5v$s7LEFu22#q;{39p2-C${(k)Yd8mO{Bi~O+Rki)l zq&xYz2zu{c`y!4Vr|%3uGHYSUAn1foBvyLMRV_Y^|C);3CbSKvj!ESccZT`_$E;s@ zATyjy10GC?7e{L}r#QO9CpZ9B&Dw1^(?=eGY>h_S4|@*8O)xk*(XR2L~&qhOCYa!)e~*M$uqLGWCC`awen|JP(w>D#j>t+!T| zW`fn5`Ic5_UgfOZwfIGT;X2IQ>Us@j^_Orn74FgrGx^v+{8tA4HPvBk|G_ibevntH zfvPqL@MuN6e;9X0aXPKai?aNcOIC;xQ{->bZ1hg$eK#T7=5RY=P6SuZ5@C4+W zypfq=qadR_zk&4EU2}730DO$a!M%xPvbgR}f10r7eH1+A>{ET)_v-5E;P|+0Vj=-h zB*EOF&5=*Yw4$M4(@Zz*`O(~yzzw*=U`NF(o3PfzPkrf9a4F}08{=+$zi`r(;bQ&S zEM}h3cfxNwRBYd+7h<)*=P=Fh`{LKNTL25XLoQ7#8sHF4NycsYUAxk|<{2FsfCYhT zJ7-dFGQUGhE z0OZFjVfjL=`SIX>H+WkGU}fv^;s6l$WxL^zi5Y;;#F7sIM8Bz3sy+&@rh@>84Uo@N z-o9-C)Y$L(4DQW=H}V|Wn`UnoiXN-0>PmuJTgXb_aeK(J*04->>04FZQ{YH z@q5Y90D%> zKRvS6s5SK9a?5TUlSYq|?&!nr3~q)nQ02&CN0ftHAz+-s}9Pw33pP5i1X1#OVY5)A&|H)-%zj)T~NaMQ0bLKlcFE^W|VK<z;y}K_~W}8w%M_|(=z)|~jjV{a&KObG>HPf8Yxz3LgKje$VZ5pkh zKf9Sz>IZLhnFI4ec;L*=dE1dPayn^0&5wOK3A2;&+l`P=muQ9-Qr@?v{Bsj07F zc&8tUs^AWilox?^!4bm2X)lclYr*P)v%LUZnj-~oEX5+?6H*iIW|iMAsF1KqN)08V z&&<4hgYBOLFf6#w*bEwz8G^!cl@Q)}UQi+`p*IyImc6Kpqn#5V-e#%k(~Af7PKSWL z%o;G22=MXeLH{uS%aq~+!7 zKcr9uo?v+tJZ`(XkXqNBTTN?eetm$xy1hjSm=QV{gtJd^FFG_d)X_ok1?Zha6uR2l zK702|F&hxQz0ntIkkc~}pG#-Zmsfb4e50{WgJbl!IE`Ww_l3EQP(dW#eEG}aMsyw2 zx4P&O!H;Ww?QWf3py8bF^Mw6_10xLD2N1>6Ni4MS3AS@|@CSSk0Oi!R{RAX)qk5IM z{+)6b!#SLGv-RDfUpFbhngQ_2{PI==A|7b;+yT&!XYI=8tG9YN!a5r#3YF;H!K}`U zG@K*=90eUa%Z1Rd1*xOwQz{v*7mq_LPC_FwD&rts^hz}FHGAVy7U@U&iZC@kO0=o` z>aqc2F&7M3i|LE)m>UW@Cg!Y-@Bq^Vulm}CR^P$}$;TJ24msQ2IoDdsQGmg_(Ex)5wq zQF*z!1BD!^-iI=3y1G3JL17zS26Np-eD9e+CM}{o8M+3>{2cU{<2+$4E`2}xt9Fc@ z=l%T?YENC;*df8|SUwz>W&nnDlu2Pubr<8Y8k6rogaAOuU(VFKV#QNVUjEU82mX6- zOltRynXWY^4L%MISU3HucZH#DN=r-2eE{5}(dg5)$v&`)$;0#;h<<}wKm-s~_3G&b=Xz*YMQddmzdO|ge1+&DcrY#N@4ZGh8Na9C~ZNhsPb5I4;7*!+B^ zQ(2I?;{L9ou5qGQ&+E({fvA&Fs+wO~^77@C|C*Yr=;L|Meib5&R zo6szF^~7Q+BNy8qU1=;tSF?&xEXFvdJXp6vXRv>d7OOF%o) zRw^Zrs3ba?V`GDYYlt0yJ7lk_M1w0#QGCH)irZXq*jhW_M`M$s=#;8J#U<$cmYm|k z%Sw)&egHfH5yRD{09$+YAar}4lH-*N=UlPBrb)#GSbdU|@7C*$(n)H1)6S~QuL z-@3xqQP)D1qt5ZS*qHu|;18(DS)0$)$KPf8wZ^tMUAu(djimpQ_qEyMrIVE&bD_Az zu0Pijy~qZp!{0qkh;U!@h#3^bVL`6Rg)3mARcDsR&b#VBQTgSc#y;-ec>y-y5>-!8{RVG%a6_z1?KV*U(?uErr zFgAb#h?AZb?$4YYeO}ZxHm%aO?}>?dW*%JJ+&~t|bv?0O4 zx}2!MM#|;dAuE_>Ny{-<&VUqU3lJuDK~mW}IT?dGp#10R$g{d>uq3*;!@GB|Ph(j% z0Nj_OVd3Rdd}B5oqoxnzD}(}Fi8iF3t(j~q6F7+29~`x*uHm&KLsrF^ZA3o1=O~!O zYs2+(FD*$x5odXYlFP#Sg_S7g2XEn(7V@G~o|;BM-`6M><5pO7K|3F}w54jTVErb# z+`AE8#r*`Vs>M)}&7~z=)#9g|VWZv0FYz>!X5@PK#a8m|ADhxPN1xXAqbneE$V8b%&TocTpd0*W|u&MMD^-eZ8WOmTa?>Bj^Ox3-uec z!A5E|bsi={_TI0kig3v;U(Ko$^DbYzK|3w~HL~2Yo!3c(zKH7F^zQt^U_?a3izwRe z_enKWV8OY(qP+0q_eJp=B5}t7)P+0*dGn-c1~I7DweUJ|3+ZuhcbB6-8gPAtM_pAt zb6JWfdU#%8@b`~&>$gN)!#yubN*@l0e$4AVZ7K&c7Dkw>PhkXg5_V)k>1PaK2NA`z z#2fg0+Vkc(hjN7zB*zOLN2myj6HTuX?up8lgiHQ*hQ6+(3eOhWmrgP!O zR4EUjcLZM*|6km_^+Qxq+cr9YfRZ8zN(xA~NT(p6f^>ICH;D8wlG3PjN=Qg|Gc?lO z-AH#ca~9A0yx%$h!gqernLV@j9`;&$?X|A^3WCMhLV!KwjSx5LG2QC#Tq8NyK8s#& zWrC_yZ<8=L_esdtin@CQAFS85^*5!}_LFLzH~)Y^L&HmYhGqSoPwCj3 zbp~ao25094u+a|#_s{;1xH0>YtZq7?L||@d3BnL#Y^fV(xqw~)80tI|_2LJL*WWx# zjV73&CcV*ku`v3(XyRhVXc7=s4VN#Eb{86TE}E#OkWlD?cYLlqiX3#Gf_0+fbZ<6p zzcJ(J%z@^Q3S`!m%G3~fQ@rC+yu&;cV-L>=fZU{0(G&XQC%vzZcG__BEcfUq)f;H5 z&@Kcx*V5f+KpWdDJN!2~MHf=vDlW*LJP9c-#wV5)3=Xc!^AXvxUY?ws?1Ca>-@VKA z=H(QbH$M1T8?@qL*>;Ne9m{mbzAzh%Pr<>D;$gF%rzIC%piu5YhI9?gDnCpkiB*6S zbV9dHwl3k^FH;6=ZG$8t@5atsaxN|p;uG|L>)Vncs|PRMPfm;0g&{AGR>#?@=UNB) zlb$$g<4BK9nrV5ShtN<{e+3dIz-9o9*-Ws)^}0KoyhqXNDpse> z)6_s+nu9?;xw*eT9OT4})Hs@efo%G?O&X$J@M>RpD=~}W9D8g=@!FgR6nmZ$5VQcF zgy%k@Fwnl9f#EHHucitDBJU+Qpg5T<;yE!i`{HbWUI(SZYP^Ti7e&2L`?s}$#U0eK z5s(ugdc~+BJ_9&s^Vt-iw}%2vRe}z;tPO^1oz2g8r`tku4rt8~Ikz5%{I1AC78Ucp z+Kn%|Dv*fa;5;{*%ESZrMw~HqRaVpaBp1n7UElDMAI| zmLGJopK-lOMvEZcj^3HY5A+1S@i|t{W6y%&fBt6qzHMShs|I1^wIpV(VGog&!Cy+5 zL^uTLisZ0Oq=O9l!Ij^I`$#XMJ!8jhsUNh*+?po=Ag4O4F`Hmn<7DOZ=+CaMfKm!D zN}T*jRDV76i!((?2)*oRQe`ZEr(JAQe{uNTBst9BogC{VUX6~oC;m;~0qFZ5fl6Z& z|F`-t!?Q%5x>O?dD@72h{JcvHm5oR(^}D=6_0|(ug>w_jphp^&51}qU+vjlkWsS^$ zrHMV8i!>hQ+X?9iUc^j5E}&dmjAT6m38)=bm84HZIf{z8%95H;ko;xxAK+?+I&zcGYiEmR^v08UFi^niGEZ)n>6gqU%B=k3U$+@YeE;r0 z`gEJ`lywAmp!<{rkQp-4CaXHc`izpkVzcGW`zG!D!R3R*8w}|`v6Nr=Q_@h1^Dfx$ z!N0Co%cVil)oCPya?g5LLPhh+iY8N15=8Cw&M*yO1hmp)Y@oLIvsp<l6gW3nd#dT$oryWv*(m zCXkyfKb6j?p3P_g+Rq=fH1E^jMrSP(n20wYEyovv^vEKeipFY0x5TzY)vBQsb#E)_ zt`r3~Otb>e;SM(6zu!Im8g8+%r(hNMTz-R)3cgU12LBsGsZ7EVio7(D^g&pc;ak-q z10IjJ5m8b3%rCxn-qsu+S;U5CQ)ZcJ3D^#NI=^+rxq}SNK$a%Q&|ppYVz%$dnr<(w zv0kwCVi{iE_&`^3Wf73Z!%nB5Jp9K()Y9ng_0wroy?M&Sq`$Y?VWG*V1nh37w#vpPWeNWA%O*uAl;VK9ET$#I+>G}fr(I#Oht>plHF^O0BMkxZM! zp=4?4A6r9b;lvuWrOi$rsLp@4T&TxmNDP#2llyXGEhY=j|#vX6w8egz!>c{|81a zK_5!s@Y3`=l&>C5&BWsf@~{N!G!M?&6g|f1C5AK zWF|v@R!ZeIsf2Z1Q`IV6^K8}fXkY!K!n>pq;TL~JDSH=mKsF(Clnx?xTAdX9oC0mC zQ)GRNOFq8*T|Yl|a~{rYCrlrXDJhMonnE*Ma@X57C$_9)(x9cAuDQ-4d&0lMKYKURw#a-j?;7FECB&nz#*#)KJ@=oV2>DW7 zwRGQg4%zy-sCq}(zTtVFqO4PmMQ1fK-Jc<1SGa9C?dP7Y<<>9^>6MF=8_LJle?G@v zu(u5uaRX%+aZYQ8!&_5Kg9XF&cBTfP1!!pEDJLWzst%gTl#xF;ul z7w28)TT-gOFx=Sih9|w==t`Nr+`s837XdIVBrFVgbL)S62p33(wqXtpb;Q_D_rLEdB)>d-7X{>a9X@ZtLvj>c5F^U0soz zXL0%)zXhD9>o+yvZM|-PT<(O(QF|*Ttkq85;f74B3haRWciJXY(xRkPFI-zRu!LrKiCSH&s zdm|6gzA>9)+0X>f#eeXTa~2$fe{iUA#N=`*#(bImUpDKzmV~8x6j6 zbBzmssqWe>J2%|KA`dP#&+Xs!|A*xE(x)Yk1Z$41QMPnJaEBdIEynlW&Zf-)2HRa z`8tB}9DICX{-{R^;hRNYy&qy(_X?QOWNwjL)?aL^8)Tk+C5DpK)HnzW1aEHiZ43?H z3Gb^#bL3@6QXKH~z191tnqFZl zQ01fnxUP%=vM`=K#>q){|4)79X%>3+}2toiqO9 zSN%_7+McCHOD*SJ+!2-jvhr`>6<=0uR9qG?IMs&fa)sk{dDOzZTJiKCmQs@&%Yt$@ z06e&)-07l;VhBdSvvhJd$GaLrEDF3H{P1!1^7nUUQqOeG2_0P@*286AuIxV^k^i*% zZ#K$LEG5Hd(4lF@@m;l+;a-EmNh#|-nKz544}TyyB-`w?e8AOW7kpTFN;b~fsd9$t zeZuWodJ+o1_sgFd4NvU;J#E)G*n4Z8q`!#~dDCL6&SyCi4c09qjn)cPds7ll z$Cd-B{VSRyj`QZelV0a}$LHtSU(2}%qZ3st zdsk~2E96Q<Ff-fLkT)Sox?01)vc4IY0QT08`h6fP6TD%@qI=o#`nhyk4`?tXO z-vOWy&v@*f-Fn{!tmh@ltoc5;6SC zno0S)wHza}KV$Jcd(R_G!P&hae-$-eyc{Z&Cxg|gq}!8*%O~}mesA27t6a|!CA0U@ zRc`8b4)0Gq$H9!`bz@U`#9x7;t%WwO1}l0nFEaD33@LPa-ew&~x}mVO*CmWp1c|Dj zy=o4F{&sapYch~Wm!f9lADA5P{-gC=?P@bGZQLk53JdCMof)=Q$ArjY_Xe!+{n8N1 zN`?mykKPzBUXMQ98pmUBHSn|cWK!l>EBh7{F3GZc#Z91qxAV0mr>n(8UB~O(n#=K+?d92iiis*V$JNu1fA5k}#Q7QGq^ev=_~zu8 z-dY+7ME~p98mp%Gb6Wk2W!z*J`_7*x{wcn~m4b2}5vbBJGBLFP8d-n~cuSdjoCe{% zx#MPshELB-HII)!6+_mAo9I38sn|vX{39|aTid9F1l)wak^}g)85`tR-S)&Q2t6At zKi`gRHEnUYln3&Ho108jbT7R);qG|&5B}q;T_TmviDA#NcVVPl&y+VO+_EkpMpsA9 z4Czelz=BoikmRQgi?uZlmB14qoO455S;k*<>TdN^Zt>JmsiI2_S+Yb$JN|rMRl1N# zDeY+>fN{EmZobKDVQU{*cI-rSv4ir_@i`v3U}pioMhmYZ5BN-G9v94) zVABSkbv<+iPJzb^^7}V9P(2J2K*rP*Mm~)gXFOcFDt4f_6)qJym&szFY=aG#a~W&; zKms$|IxCJIK63XB4ZVr!4}w@*XOUPD+&Mk)LcLi{aV1`9yojac{-@B;$cj-?W%k56 z*+5YVx2WLBwlMC%MhY4vI#w;CBqPyV6lO|@X*54f6s@iH%Y=iZ;1-GrtkBTG?^r41 zTWrtTs(zVLpCDR&vdSR~S*mwIt|Bg4FyAQ%2MS!W!+9F@u@3rwmOOpWIVEl|AjFN8{5Jno0 zrL7AMMQ!Z}=bxh|oX@9tuUzqM-Yy8dL1kfctuwJ$oLXiA(UeA5Mw)e$*4Y!zD2n_HUi!1Zhr2x!K8^S8fW67VTY zu-qr3&}{;`e3_`YrjZ8F!;}XQBC@A*!%&iwA^aL%hTb+{OAC0F?>-0xAXX`@hRjr| z+p;S$$xV4nc$p>gnOT(7)E>PU9CO5-Yx2g1_3Ook$`%*<%WdE!O;B1)kC5WoLUe?5 zqEkW*K5ZAMPq2|(ec3LTGf2mT%+;x(YkeeZe-iKVIMWxG)~5QkhmpGvQXc{fI}5FG zj(XMIlsUP2U77D@cYG36`8{JN3Zb|`CXXDpWO?j!%hB+Rhrod2#{a!&abq#Li8O9U z=yI`9Vll=~cz9ehF|4lys(NT>_!Z2rc>m0DAK+9|ONJDih;=NW$v6(24!gV^yqhXP zqFA7aV+e0p^Pd^dZyq@B@9+1Ox$e&~Jp!6_VO?!WHAPoFeWT}^3O;syCf`H-5szc9 z5)rD=T{I-`NqhOP_-Na*s~r1D%TvvhQ&R)5&DmS@^mV-cLELkYjU~d z!=m_SoLbQ7rFt=P?;vdnCFb9$gQKNa?XwZ*P=|l5=%@QuHCP3q<+K~Dx}nVx@Z~&5 zzfzBmq`3lg8}`nU`&Y6mU8~?8d8_P1tecFxNk+WBxjGW_Itx=UlRMOqHsH4!W4J-+ z_>RU(qa(Yf2=WomnX9;w# zN|Da<<_;+m5vSPoHI#ef#xFi+4En`B?v#WzYV2=`s+}7(wA`>q&O{8=u?DqdA}fEj1sY z#4mWIngqTF?htg1aa5oECXA2ic-YxvRnyV0>9p4t<$QA#_#DU$ZEeH<{9&G}ZKFn- zJprGn$V_}MW`-3GFJ5J3z1*@I@MPuSkb&MQbc9*FCVlriP=W&lwNg?-tU?SSoM)%z z2mub=L0ybzA&Wg_!fWg6k1~fz!#l^mpWTjbnvX_+qF{HfQhCkhW@KQFE*_bV_0;st zFA0O-58h8vg>IH-@mC)Yo|3=A{Q_+y6oM}VTQ-rp)s@L!=LqY4wH#XNIGnVKE%Btd zoquSp{DIi+z0JXu2!0Q_6gvk%s-HYHt$A!V@R6=zrn`Tf=qniYo$Qz$$(s#GM&spu z?C^Mtv}m=ikAjk!2Nh4RuiUYFwKn8axcp{o%)E{nZnam)XP9$dfF1E{WhK(6``S-agoS*@ij0UP33{5|1WYC@@@-2z z)cIoz#272uYHSM%5LQ1won0>~YHIrag0yk?D8k5rS(s)cf)9K|I7+g-UCjHQnK|G8 zHm4Jp_?U$`KOThs_Gip^lY1VbcH-a%hL&dzQ5iqPifZeaCNK%aq&;5>ke=;qz2EUw zFNMSFaYZ+jW<{U2)jlW8&}rnn;LUR1Qy$)A&Qrfu1+&HMA0og8d~IjBIT8`Qcz_#*zz=FBjYTvT)LCtoYS-YABq^#n#($2!X2=J{E2=)-TJH=(kPXts$<^V%F_%PoB!ZW*J6qyj3 z!Fe_77OdL&dY|fh53GB!Q`U?<1XXx9;S34PJ(z1X9P5ocu=ZoyiSzQZ#qRP2f`fy< zgDJMo%D8-lGn}%$7b_r_wxm;Eov{YI^#{E!!@P;@s+a`c(BZr(d%40VA|gA6ZJ1Cu z)KpBc1kCP#5KvRkU9seCJs*3c30<~IELn&S&o6e3!VzpFCTR0Co;7OwX5D_6I`z|m z7!sA7=*to})%eJu_Vc3%<+g65=aT_mi>}HBuTwnZn<5)?lWEhV=&(YkDZVkWPONOscRA22 z1u)$75cpgwkP8|!!e|383M|QVzVJ@)|1d)ri~K-7U+9+>#1oMv(AuJ&oL|BhbVpTg z%#I1U;m9^QkivsE%#l7{AJ=TGe;m+p;Vt*fN;~F%xc~=LEUXj8XZsSD?wW0rO;1yA z%W%{g-$V{Tw^ry(n~;DfPlpxY>+Iwt0R}-})?g(g-g4f?VaVuJ~LwjEy_`>BuhEZzu=x8c5vd6%FfFA0G779$K4W_6o4K8w8WpF z*uUKE8< zy3ywR%_%VnxMVs>f>H-5Le)~WSXBZ?naz>K9u+MQ4-xi0kM~@SmS_V<2kIK3Phf5; zLu75$V8h*!dmnMORvPp=Zw&~M*AWLugu>S5y;%vwza?$HzN40;zE%o!AKwJ~&{z_{ zW<5e@7sH~U-S_kIT7UZv`MNR{mE_2WWlRkK84u9LzQwcoT23qGq}O;*k`Q zM!Xf{o+I(5`WHm$H?8ka`*Q7(-T03jF7s}MsCQQOeyxsy1hq9a25)PhocykEYJeM} zF6ft{%?nM1I-#2_2Q%skK5L8eEKO(T==vp8!} zGr0n2qC?4_!l>}gArKFYX_KhA!ym%XQR4h2Lm#5Uam(+z#vYG;zz-$5G@OSzigBB! zN~UQp#9U`FNQz04OpzB`yEyMdKMY^MGZvH%nnlmw3F@$a;hHEo^lq)gZ|}Jh68h5N zR8_@0w8O$>Xuuixk46;4b&Ytpzarw z^NWRiF-nGiDGLZOlRy z?07SSB+jiR`s5!^CiXF*L!jAMSPYbxjucVm9`r7xb_WR0khO>iF86hiX*L`)C}A7^ zuMyfsB-RrB{mG56CNeI>a#rI0$DTtXQGglt=)ZL;%?DrNul-{; z>>$+sbNB(quQhzMylzE8?YDjOK*qFpb%{CnwVz+N<_P5VVZ0F$THOxV8Omij>OM|;dxQ1~fCKTD zw8t2n6H|^;A%7 z^sF-xW!5faV(@7~_nWztLKK}h(Zqo^(Dmlr*5b7qr=9F}nhzJpTS-Yt0VDz+J93bM zA0uy!luf%r9E1eSPU^RFw^|Rjv?ys7jamjE?dQ*F%X#C4()egz`k$O1*?-nkH)Dn@ z0l4A)EEm{@2J>7`6fEaTPyZ?4<3mzYWy`|K!pJOPWtGk-m0Nq_KCFOmdnnqlpOXn< zv$@GQZ*iR}{t#1IA5=WqJ5X@$BdN#T=;6D#DF)xAm5|`aw?B}cTn9lmh8GB*VqLBU zq``B(2@GQn*z84A>Uc~o~ZNJwJCFfw>qfx1%R z72eC_<{xT{$z6fk}hW+A0VD9e2_>57asU@p0QG@h^VJu2!&MerGwc++JxQ7&o0j))Z}QOGcPFU{E8 zmALJZj+!YWG<^2S(m|*I%fhBQn_JR*vW)__H0;9*^srZ+k)&bPkGk$>t-#PA!i8XW zpFOBv7lVq*zQX<>0K}>T6Yn>_RV9Bbmxb|qB2Fzi93Vq`CcOg(iNH3 zJY3^OenHlSWMO~Tlcf3=8#tdB*oe`y66WJ)vA?RY zoxRU`aBy@4iZ*I6ky27seef|o(Y>j@o}6-FZ)s)4SDs=9s3v#;Vf1^P%g?JDfoB`52+=2pjhd_WyJVabun^Ycog!%Kf$qyqPq}f1Vz#j^7zxb#Sq{w=eFw}Iw zYxn6|^sq1M{e2IzIZ%wqQ7>xe{z-4tR&USquQpK?!f|)mh9LtX8BF2mNlH^SLrd@z zxjz5L#QIZUidG@aAyZg?QB=h7dKdkjDR0KQP#rUMOfByW{^WQ}pA*mahX?bfv%SpI zK9{PDM7qGD8AvqL&9A-@(B7M&H9Tz8K>*Um+it#2k|wZ9H*S9vb^=6`1VlvsK&WR7 zNbhpaPeX=vw?Y-DH&3N1Vg!t*N(fr(Xl3xybHxLONYaee{S$?#a@n8;TBjH*(3$XA z^gn{O1TzGrJqaE!`Cq?|1|7)ub+Jyh-9vW|@(K2vZowG~F{`}T! z^Jl~@N=iz}juX)WJ7L!uag0(9r{xL`pp!h_vc42*N0Qy`63*4J!OO%hhx(4)!3S?G z(bDjLy&==wJUM_@GyhTgr16rd3A~WFOc0TIZj@wT;bYm6(4aH?PvV=D05rRJ-$eTX2zwBDit#^zEp9UC?`kfbrm&ycDFY- z|J1nJr2Efi&DS=MIi8>PWW7pDfT>DDPmck(xKjIQ6X2%T&#e8|pzgC} z=1wfTUXL&p=c(i8&#xOA8<+q6oBqY2@43fAAHXkm+-NaOW26OkLq$VNAGac)pkSL} zg`mzgb?l2z-aRR2YjU!d^U1(`Rdzz~RNx6$(nV{vH)I0o@uA{23QEZnX@?>z4@rLP z8sZI9bym;TQxI>(3Xo?+*@q2u$fLB+B!C87&J|HVpAa9m?RlHb z^o#_a_wQd+bhdG?Yd+~7zIs^sr6>p6S@CmR;+%&AiZSA91yah=?5Z8ws;cv5&nIn8 z=2LJ-9S8>)f@cD8)E*JrPqD0pPGfp&dzvWTux~MbPcNUrn4D++-j{bI^Cctq3Iclt zd8Hwap>!;BO}gNTS$W_qRz}G6x3r4NZPJ^C%Y9pQU@WubXO8^3=s9k25?%hkn;&l* zUTad%h+bxY#G@2zRS@Fn=uC}>pK0H;8hPlTFVBALmQaknwRc zqYl`Re6mNkaX0!`ASO@?`;4JZnt5eg)Y z_#j2itada<#u@arzl!Q8kcopjrSc7oV{FxUQISL)IFzD%vGMwmBwY;xbK^dfaUi+;RZ2=3V z?jHfpVP?qZ*SBZxNVKIc=Bfo325pppz)4MQyS-?Qy%cqqrorf()myS-t*Vx}E8(^q zd**@I=i$5)a>9KaipzD32gtKyYJEgY7(Ko2I92O9Plm2Y-StIG-)xG8GGZ@R8c@2&RSjO`dDC9;t}?f_8t8V zs1+v;Qd*{Y-Q2y*vfty91GwGMYdn?(E6| z8~UZ3x7|=H4?L1U!YDBwIX^^3rpr^L18tK^@bklkg@wQUg(8rwajWk!F#+It&ed<< zckjCnD20!_!7PQe@m&nl7<_6H2$O1ocvsyKH~Ds*FImJD&D+DZ^(=a3_?)Ja*nDul zx!ZtLe(<#m!mofYhK{2tn67luxZ$8#(7WZrPt~gbWi@p1#J&ENykU2!{j2WRX6EK@ zK9)9rrh$_oKU9PT7%c)jSj@S3>%m5Js{uc?ZpW)*sqCwum6exZzE{IbaksSc*T_vw zVOKQv>$rifvA)CJ+_;1GO+j3?10ikQ@?oCtoYg-nUgShe_ru%AyQ zn7)QI=WWoL38UIH=(6heyVsoE_^rD)pQR-oI5)8sd~^TG)MF35YS=hLP>to2%(%Nf z+?+!V^z-98Id(X^bNBcsDXO*hpWCf7r=m{W5fOAns7*SI$6u%bH|OkgJ8&N(i=R#RY*NTk54RHAi4r#x4%6- zzQBgK=|0B{*!Y2ig2|8n_sMJcZKp;qZ_M>zw>bs|#>!B-B>kXu-&e`5lBLXQ$MZQ{ za$zs^OF_?l3}UZSUQo31sFP0@COjj<0W1tpiO>y3_Fgt}=B)GO!f3+u+r79GH z@ny)Q?=xnlKlY^cAQIJf6_394&7iShW(g<;|9|_A|BPL*EzQ}h8u3{2PLzZ3Rr1gG z4_W$`@8B;$$f$f;M@Mg5KrwdCV1{`6^HOxHbCR1n1LMkncI7Ndf;%Hw8eh%a5gZ)3 z=9_|}_9$%@4yO%W{Ne+G`hQcOA&5TVkwjs(ect_^iMe|H`_smia1+(#cL#(4#L$tl z?8uqaTzb$mjBLu8lbym4iE-~w(*XPo-7e-`cZj@2JWiX*>>Ivnm78%59!wTf0qGQ} zZa|^|M_^42zeQyre)7&_u?+B39sO=#(kTGmbb%HCZ2?osnMy^HP{9>46vH-VZhA_= zh39Ivz&h?WfJz!Wy&Baacyz@fO804^>stNYedr>%Nu5niO{ZSF3fR^1zupSn^kCHN zFxe}MEMZyoKa4-PAajlb7A!bwYHCx}k$Y+-k>mm+TPKUQwRu-Ph0AM{LxvA(RAYQ^ zQMt4Y9X3KpgM7qj^_TR>5qCHPx=L-6IeUvfCuo`%qe}0=)V{WcP?X=NcF2Keg%llK z?VFGz1)qJg`4=I|)!X0YGDb({AkJrGIuii5;!so1nwabiBE)@CSU=h3u%=H*`{uKY z+MgO6z>-P=4DPodjxbQZt#e)6z{jL809&k%wwaRhUd#xkbqz8!^^yLtSNqqjN{kkL zuOX#xK8*fqavsxdD?%_9TYl}d1>Mnw%7eyCvTPZdcb6Z~wE(g1{d z)P-h({5N;@HMqk+ip835bM(bE+udvytFWmMx45wlm-Hv7(SsZsBz&6Y9L~h+`prNX zr3>7RDLuBRo5!WLuptjapG8*oiW)m9=&!OU+Jjvo{!p1W)J1yr7~t8wae>NP4YZ<; z^L5Y7Bx~w>fBg|ao*b`-W_UkbJwRifXmm}I)w#SG+|a1%s##9q%C*bk9krP(p24_`Awq-3gmuR)G%oB0G^=-NXmtUjCs$C#gW+T%gLwB{U`cVIzjmc$o%kf(~3P;l-m45Yt-dG=r1u|bg!7}B!~tLKjoS-h_K z((iCXGLZ@I?-*4O>wj)w0o+f~#qM4Xh%DtOcz#{A7g*a{9o$W=?{5_8q)jb2@SY_< z*;$>X?eT_5{iV*TeYN>NOG-qnB>3C=4r*`gtq1QiP-}uOSK8*#OKRwgiksEr7$|AV0sfBpZ_>vU5U=vK-hf$p8@K?mgzVK-+4g{=kNtipf2_16&Z0BCiv zgQ*YjoY|>S0tz%#f75Ozrg)Dxp_TRcq3W86~GQ`W@C}=mzNtRq5C?P1$m~Li;j)C%e}39)7k6(ADE9vx|LU zmB3GhNRky*3`e902blUSFg`BC-RN6v^yDKUCB*_p?G1!SC=0Xa^uV#Y)Ok}rjEqly z%nRH@;nK8LqK1r6T3Xs+pk7PIJ$UN{YyTq#Ft0Rj+csd7P|H4XceGH&7qAOd_cjX+ zTG2H8G)@?sWS0*opwHM?JxvjUpI%asto!k&9sFD8VD0UH|C9}0%FCL}g9AA{V@O+? z&SlKDoq9sp)_8fn1A(pQM?xOE-XzH)Ck@OZ&>(1%*$__T&cWL`ddSLYOT(c9duu-DQ7tvzTz|3$16><^_N8Z)K)Sj#cCMN`Rx; zEj545MUHDK^_AfQ66qFjAoDoieT0vXe=muvxCK%;C*X}FaUW=GF)Id@c((b{B``F< z{&4-JODAY1;v^0;GSIzry-;B}k}Pi3)+#E|rIWhHjkC2h8X9a~X9sJ{AHX*ZKzD4^ zk94IG6<6GRao;MZ9*vw&Sk$3*c14P}AqjBMaoPF#H5rA~m}7=WjF)fpek)V6vEhOm zA+SBimHw@zw3$OgM<;cuyqOb1!1DKM{%MzZ#2aucPz8Z7tWD^@G8Rl6 zi8P!qK}$^b+O1ySU=NWtJM-c0F#q9Ljd5%XAW6@Y&I(T>gkX z7>mr1*PEe>r>CdP&;)RGUBDx$3*c2iTMXQRfH2KZl{w%(M6Vl>%+eVD5`lf-@70As9+8wmzKvp1jJ-cBs*wIAx#w9_ zSVX72{b&D31(|YNwEkZF)sp4ppMm4K5UbCXuv@enyk?M7=$HN35B$U#;W=DjJ=XTs z8Xk&-O=2-&ed8rvLdXyEen25_WIhcQqGo( z)48~%W2(i~^Y>jlHV2`_15XifZUic3JoI%0M-lTG-KC|Em*1JOtq(W~=m!Niw-iP< zpjO)zT#LLyY_Lc-QXy*j~WI6!Ws)mf-BA&!*w7m0q1@A~)Yd+nqRK5!=^K^`6AX!BOwXSi0%mb!mDbTZC1in2+p7qO$(>_ zCWcBB_VIMX!FU(R(n+-~Vbwv~w})X-8JD+}8BV2{EYpZ(x zNilaO*03EzTfH2J&*KX{2-*gl#MLff@B~YwFZHS2l2!-VV=uC+Yn@>&HA?4qif5rt z4GtE|A6ecaPftH@pmQ3=+x2lX!*q4*!GQ7t^8W1`)lC#oL)&Fizv8jo(l}X+0n{o8 z^i%5p%<*nF0j(nPXYKfac&->-Qj||9{l~Ao=EIiBw)-oSHMlg@>lU<;ZS45N@d+n+SWae~_v~YFBhvu-V`L7GPg1{j~FY+sD3VPl+^l_w?iwoMG+UI%q6= zO^OTf=ngB?|Ebz$JxctH$H|qJcw%S{?6shF6*ly+@&3>L{|#V}NJJ+^LB!=TIRVUH zfV8)bo0WgB~cKL7PJ2Q@~XUA z%Cb$Rd~wreHwBCy&Nuz@$PMUSLOl}Yq!9t6{xwzmw$w4*%k=g^Uh5w%#y$|`g}l9b zOis+3x-&=n%@J7w#rqL323$_hC_Z-w>v7xOVUp7lJAqvsn{Qf5~}_HerrY4WqxwW`%UdZQaSF%0^%@ONq4f@?(kqlNi#MvK8)pkoD@?l z7^ACOMtjM;Z!kg^0z0dar~kM!p0;=`3%%9XfiW})Ie#VqYv~vI-5j+Ob-u3 zVA01;V2X+PLZ13Hhj4PJgR>;8v9Tn~-cK_iz82d-6ba1VAsf@sRqsQ6X$*+twc$D6 zqq)$?n&!?<3}F4k2u0qxs;aB6?5qY{?gmizozRjLEb9lSq8jkYRM^`3Wt4sRv}RrU zWuAUGB7bMw?Oo~?TO5qSE0QL)a1%)hZnP1(nopN@Wi=e)@`fdP>aveV@stibj9l9Sr# zF9*r6g@d874g=q>?@b5;!^g+5$m2FV-S>4km9Nl&dvD*#%{gu-_s>+KSmb3J2QU`H zDM}V-eGPu(E6hAa|MTsqFAEIH+@6<9y!J9Cs{ZtkX8Gvqgom~yxLa}Obze2|H@wqX za&2MiGKlta*r1sc6$gSqXdI2VUAR8JZpsk{fuIlwR3p#dl)%nz3g8d!%gf1{Qd4g- zZ}B1`E-vLqS3=?GVz)0?g#;~sSj;wo*1y>vqJ}hIAFT$ggPk%ezAhrbyw*~i4FagY-XhjTk zbECzOr&IZT#IYZ(S%S*cSp2Ij+bVFM)?u{=1sIvXf3!9}KBbsNG!g#2n#A-*5+Ldz zkcGr^1s|)olUbVPtesPd~4u+Nf7f|r!ej$dMH@TxF z#TV+;gsWW3Fv5{4bKQ~n<#a0mrKK@l`A<|*Lbq_epN3GfuruC2l0od9TaQ!YMB6^N ztjy>AxqS9EygF77v{-{`x2iYeCofD zKrhlHYPlcBvhj|keP3ZO;@@D<%81by2-Vn&#eQmn6*MX@E#G)9_^3ioXd|>EBwJHO za3{>?>Rf#C@Wp!_-;G)wo#Kl3DBd zZ#+5o{*`8|9jk7?T1NT>ibX7*z!v!^x{_UEsrR+Hs!jHc@7=rTy$SDUE}+2kJN{(g zRYUndeuyUyDWZlG%VLgxqHh|x;c>^4gW&7h;b659-W*=QHu&`0PYgL$1IZs!YtC#W zX>ILvX3eHKQAy*=(hX4E{>EFh@U7kj)4?wEhcBzeYwgeb1bwV&_I@&+9J^{}erbUP zN-U-6?;fSWUL^k=G@ZcoI#0T)jp|vON^+`{Cp%{@PdFDdWGqQeN%Hec$8V15h}-ePPlI0~ zMOViJ!{48{OH$$zN_+D`uc$vALvmx7YJPlvu7_6trf{?wJR6n?Gx=2_QBOvTHXF`~ z!BLFbQ|#Nu;x^H|{Sv5fG*?U*q4@i=9IRvl*Ib5+e44K|0&bv9pwnGca(gX3`?t@| znlFY*W^x+;ySU0eu7QZSlj0Hf>NW=ntwFCNzn;?9Fs*WbQ}pq1Lp>PZm&eBO!>=7m z&%eg5K3?9%G04n7BK1AqUm~v>Jq2L%pSSEN8ixg47;1z)RcB{>M|Xzn8p!7bJ&VGjV*jva|j~9I{_{XdK zlJ5WM?yJ9|2>*YVkdRbTQUn2!2I-LQk`C!cr8^cyK%_*vJEVI-VkMOB28pG6>7{n} zj-UJa-gEzhd(Pb-_U!EJ^UUnbd!F;I*Xz|Xu)J@J3Gj;pam8x&&FB;LGym;luxAG< zLk*pIaOtpP8QFeF=huiR_e8zWDl~Y;BaZur%7NdzQ?W{rW^1^7WY$q9zamtz$~I-} zr4Cg-;Jpa(KW!+%s~Xo|yZtRtV2kzI+=mz>=!m7=E64~k_^_H#zumOZ&8zI;{=HU0 z_0;j#TkyC%O2mh-lV0o>j*#0idsTxOA&EaOo`Qp&9Z)1{d8*3Ivo(1s7T<AIDD%`8ab0*bdW-3ubISk}x7sv^c z<0Ay&50V20^)2PaBk>|Ev#a{_sFLb|7j#qfx@4L%Z|z0!R$kT8lFkzW7{9H(t=NBd zs_qZ^#d}-vn>RCjmwFx_7jYD6#!Z!jUh71f_5IQ``s8|i*NWD`cqg&Q!6|Tyj(qfJ zod_!1ZVln1udD*X?O3YC8FTEdju=8O049~OG%xc-sKQ`oFVeEM57FU1+b`<*841?@ z{48kT`*WfzG?21W@F%JUl%Mzk{>Ts8!_uE69869BNkJveZ8qnQc;-Lx+?sVbM&S;h z-@0%kU8{XgnA=?pYdTy|FB{BZ*XuC~QWk47x%)%X+tIoPhjfRZcXl8RvZ>62zacb3 zcm%X#r|)_1O}iTLeBInYp^Z;+LuTjq1#xk4fd~j>TT~qN$Wtrm^lsmw;y@j`_%rB9 zgVaA3C{}JWJvMmsLIdXYv$W!~dguPX%cld8j4PK-sN4IStPI#rJn${Zk#{B?JY3_T z^45{skMyf{0yk>LND&*|3N6tHS~6Nw5{@kug}QMuu1Wym?$yOvgh{DY$|}T_cU+iS z9MVTqVm22eJG6;`M?`=dD#koj(iK0g}Uq1A$!J=TTUD!q6N9KMcJjcGT zBzUWE^pO}>yqOt(2`ug!w3DDL`6Jw4&to=jI#WT^c@<@NEnYCppNPW&K|MfUF#qC@ zB(yL80>|U>-NRF$GeE^W=J>D^lq9NLcZWFA-fVj+$VsiHncJ0IUoSQl=9}S%ox;Pe zHMdDi75F1+AT$-?#>Bp{H(%0g;gk;kfU-6Vwd(bU@IS~NO=cG4q@#u2k8j?9NNFhJ zG?#4hxnG8JRNXIt-kTrHXUW0|iHTuA zXrf#k*RS6Cb%_u+^m?!Fp1py7310~@;`cerwc?BX3v7VZjfDpgEx`r-lTH3Mz+)4P z!Lbp9D=z*o0_dSCP#Q(s(}S`=p_{foJ8Lt6#~6&Aq>?}p{xPwS51`;)G_FXw03?GF zIfISbi#DZtBsFtuYLH|3{ptb<=yU+(j{gXy?b?`IP*x z9SdLl{t%lm>}T^L6$k;VKQ2E_#HB8If*=x7*Q$P!{-S<_ zzjArNA2*9=i4?*99<62`(BC|-AMgS({2An0$MT1I9N>xsA4D^qFf}rf5Ee1uxP2a~S3rT2Wuq?+CbiUn_&i}v46=`> z7x0+lzS8ZAC0GsQB4Y*vT>n|83bnm|9Kd>Ty-GAk2zeUgo>yucZ8dfkHpr(C3Od=M z;(Hu2$Y-$$M%I4{JXLFkEZ>M*Kr7c$z;=#u|6C7e)vJtnO0{k_MR(_HoO~;ovWB{% zvo-&9;N+QZys=r(U<(n@zl%l4Tq_ZBk+{VbO0&cbH27|9+hSanFjjc?(A?jL?bApQ zqTY&iGnNS~5`8heXmGPYV6Xy-jA0o3p;X<&ZovDgR;XC)gH$ZUNhCys+-y-D1KN52 zNW}kfgGL|S0aUB*pjyW%UtEk|@T)2v&htsrMhOsTs6?FsA4DtkjbHOCDIEIWBn;joEQK1naG|uq?7gUQ_hARvS32mcuHb8k|;{+i2Bdq_Vrq19+ z+U*s`1ki4QG1uj!v5s*OD;{)HpG>>#Cg#=kV^iynYju3bRWlm*rl-9b4BYB>~X ztDa*fbucMPo}6lpr-z=n_B-gs59eMK4YSE9J*8Ck!7dz=I28M}hci=iUo}2E8L7Vq}E;TmGlvK z5uE}-<1>{o0Z=q(4I?kZ%@)BLwjE_ee@ERZiBd^n-oJD0Rx*NFFWP}35*$ElONmW} zgY9?>=io8-AegB%R4MYq7fG*3Cq{L=%u(;%wV127i-i_wCHMWY)r9P{*v3Zd!}(E^ zh6rbn*xZd3*st+iUTxQ%pt-*-J^BD#{PjwS_dbe!bTA(?8&iy_R>?4_%+t!wF1%-H z%yK6#7KjtXtT==vIH>{Dtqg5C+jnmBuGl2nmcj_vu7V{H=i=clX;^_PJHE0T0%q`?#MMuoE4VQVM_CP9jSCe4`$1}s$_lQ z9`_OJfBlKJO&YEuP# zxw~5}rHzm%f87l~6>-0+Z-JsWaPzYN(%Wrq{loQVs#1h3c)yuOGVZS8&~@o;$=ri;%t>wbX=^gz%#2$2tfo)PfO)lzxS*EW1NbbcMl= zR~WXo>}nydM9CbqP)2dqeUz`K6Ok(%Aj?+ORwUPaZTmEvh)fi9N3;6Sih z=RH+@{hMzVMzcjoEg;33HU@x^ZBTI0YO!%O_S={`&QCW9tJroa+I}I@?}Wr~d_GzH z>wOQqyOQHh6$r-C<4FG7KM{`snw*;amgR*tMt?&XnonxKfU8@g4!b3S$4dp{_UJgr zzJ@+!DYghV&<$@WjfYLcr0blfSnZdj0TOae-5*N*yG+!40fHt&651uBJ^8_Rq!1pA zH?*cDH=vWz`_{k37wQ-LGX&W`ePwnuKRRwq(ll#U&o_CKjWUQuTxNz?PDbqMvbqN= z68^c4(#_-HdaYvhq5?hcvz{-k%~`-4A0 z=tz>|m>in`;1U1kOY-S#Qok&(C%j{aH1JUD90@ipkTpUxQBw(#PexYew;F^mFU4Em z<>EVbwMN&Ybv=0swQ?EojyIw;=@~yo#xm1kR@Pqj$jy5n@=qb9L)?Vbv!pS9CW-e~ zOs^}Ry~+~J{Mg{Y)4ke2dyYi+w)FAtCUiN@lvCV`<2-vMia#?mbG>oRcMmYG0DpU( z^EWfrt<`mZ-}uTB?t*c;NRXR!T&_fTw{iBJ2o)Y52$-x?lcpz@Sq{Qj+ zAL_%uNZKhRqu8;#dJfG4J9BQ1L2qR(wco$hQr-7dpB=t`p9V)O;b?@)@?p=;a!ow% zXN)q`)zSARI6cJ|LG=-D->nV~5|bckBkF9FdRC#5Z*&^~ntG{w?|r=EzduOr&^u*~ zc>9lIs^5l9v^MaVK$;^{Q|T;%>K=hnrvy{TRq%MC-{s7Y{sEnW%1XMq8i%#PWPz3p zKOFPpI7A2f2Z*&d=-B0vyRRHk-SB zpD_hR_i#XKZ`O(Ww>(PTwurPYOs}v8RReDyEHoMglGCccWZWu zwI-UnM!Ui_dkVycAH<=@2$`cRpNT!htS6L@p|NQf&iGTTVXZFcJ}~1_UY9Y;`l@xr z`scQk|KiexLH&hE!@Qu-#I*APjj#429lh5>9OC^#hlB#dyw3=CLY`)9*7=*bZiB|Q zkinZn;$t^~IIE(O0-#MwA(+5qIb!Al?gEq+a zxi`j|o0y7Kci91%XNibpf@-1f405lG`rUTs-t2ZIl~?4hhmAczJ^8H z=V6$#t^4I$^DsTJF<;o!_JF=27tV9?XpO1U*B0oyjrRVr@~!(DHTj5T1&v@Kjk8bV6 z00EHxkuh}RMKnvU>H{fhw4|gYfMDA4_>k?>vnP)F@dJ17_}IGZlhXK}*RGe?_rydM zEv@e3=}xfrYhlgOu%aSezrdTd_SvYZJed z1A!Py9VaQeV)Sxv^Q7_ZDHE7A4-WFm>_YRcN6x(&G}$49X}dqs`) zarV*4ckuMyY8ykrBSz_!$m?A<#Rs^P{PO6qS$m^n`5C z8oO%cNKy*9|u4)c6=(3PV1Tz8x@ADN#BbJMuOVItYY&d!5% zjetyK(w(x3#zZ4{zC}k~u@^wD$pVwf$S}!&R?08uAd&Fmne`E`FsPX=LN~`tJ$pKy zy1B7)cWY>9Stm$FCqWZkoL-^-dwN!I*#O*%$=Um>wJQFwSt_xAP#1l^K(RXJ`jMMQ z>zB6Kkc%gH%te2-N1JZ#cy2*B%*1*_z5R5Xl~se6==zMnQjjKja{aOQSf?DP@df+I zjf;2b{BA;)bp0|x}h(8Dp}7lDw`=IXeC~7^|J{ykY#Hs1(}j7{B|nq z;8<#=v!c!}E8o9bC@-%^4H&k>kuY$Vk#Ws|Km>mOdI7}0YBEWUD$Dr4P)(7|izkV5 znRA=}`B#ee_7?21%Q?iD)8$!_$_uLo|DKa3ZL7+D32u9RGb1J?>SZv6ik$MO6(B{;T>SYU=wS42mxwRV<#=0u#dwk6=uje| z)CoN-C_t>lj`N_LqgqanNS|V^4ieTwscN60e~vQmoEsRa+_r{4_Y$Mmuwm8pdP>q{ zxHU)X`RYj8_4g9wqNcn_&)y()*lPi5i zOncM1pl4{lxROrtqG{`SojLQdfcRwrlqyBj^hJJ68K5+ozodYKE^CUyj(CX5&xMN>k?B05oQTF7wGhLqZ%1p)P3 zsf19Fbmc5DKmXZ}svn!1KcJ3*D2L}(zSN-sxliR5<9$L~r-*o8?F# zEeJu61!`Crj=4eTxVOfve?LDAa^=a63kZscm(h7TD){xuIecUN^!%6_;k&a$k27uM z!)ajQCbVALXw$axU@q7yjlQjis$rpW;67QaO0V=Uz1r}m2#4pO|IGrt?i?wttv4|+ z`CQ8beHgfKIzasFnYB^tnG6KIB;s{KW_NeR(o|j^L$PY!l|Hqz5V*_h`{z&H{he0B z#`3Cwr-z`O=3c zF_z7zKwe0|+R=ojXC?&&Mf6NqU65W00maGdSm7+?>5vNxA>oh9 zKNODX?uu`GB0s`V-bR)AUKLG78H!UCuDu@!e$PRP+qm=^P%Z{l+VFI`-!Y%-iYS`u zU~C6|E*ldv<6s(|&NJR9s8qM`I$NT-rTs`b#s2Jj@xLqJn{_48>>P#DJ|!Lf4|~v{ z)5819Upl^V$jKnUJoT>K1}o?rn~fbC8Vk!gC|}A)l9U!K<{P7lcu?BGZpV`9Uxamx z%mztvf>SI|zUxnS;bRrjE5F3yokR5QbukPS-4RsaGS<#ZQwSngAn--Fg2MvXjd5Qb za`kW1Ve+cg^DuQAxY3wcghrLiuLV-BQZkWYn1qd{6P4)2rm=F}(iM$%r-#3bMJ3RG z)!v2dKyhTy365&I!w5%vRepb1?iu zcY0>V3Nn*le(u(4)?&u3A%*Oa(VyWNcDI6T=^9e~=O?qX{Qk4*Ibd%lX)~lJWULuD zl6?62Xij&{A-ba&Hcy|rEOqziUPKoUq4o9Y_-d-7E?q)Nlo{7RX?szcPiD42tA561 zjnk(QSLEmRVL@V+T;}ID*Li!n--EKse=1T+3MPg}r=HD2z=u~0fR#PMN0BoKf$h)= zTGuwx1xGj1J+=jX^ISmqRBl2!A`7Qh4IO>{eMmyP)&bxUFvDE0KWXHJhF<0XNFM4-`qZ?aCye@ zM_$1gpQ8Br{Gkuw6Yx|eSfw~wvIhM%YsffDS+r*_DKV@B4ZKgMANX4yzhf{yp;ki$ zcPu#o*7Jo$nY&H`NS&H{5Z3^T3k-H?Nf}IUu60{pO9LQe^UE{dvZv ztCQ#VmQ!gJtufZiVW#ijamL_iz`GTkp5qOi#Z2LR+wYr$sk7Fr9^I5|4H-L;)`b}({O7*y$HH`4?J2D-Nf zNCgTU=R+V=rChli;O2VQ8X*g;8DVg;iN)%d9XHoq?{7gD)BqPhtGHw;cO;pfC3iA*0Y(NN-NDOUS>A2B*)JZ_NoBr65pQQjWJ!#EzH!%BvKD1qDCq2qGgi$;wnGI_Fj~0{4?r zSWXYFZc7hXg3V*lt+CJ_t?R!t&|mhHpFfM_YKtTT#dtWx#>A8r6Z7yQ!0y*Av~KV1 z$Q}CfHS@$Ho4SP~7B)6Ae*Uzfh1Mj)^jC0;Z>e%V9~fX8-ScOCa=`6Pk!G--9rmmD zJU`*3#;HVKNk6~pfuoVwIMjQ)wcnGxKCi7!Y;K$9EidNzqbr9o&(0h02%@dgAD4mA zD6F>hG*YdQ5Xv6GeV)&5&?OX25%^Cmu3YN@Ke5aFh4+ ztN|G%<>-8^c5_gB0#e+^IV2|Jq?=&B*Xgu{+!YYrd;t(*)rbv@aja)UR%g9X-49;s zQ{X*(^RM;otbwtkh;n)wwm%N6k3%U{vzu3?Jd2%@D$7j=%;X9(@SSH?X6(@0k<7tz z{R+Kk1qBQ#$+Bf%9ccve)&9N0f$JXFcGW%vfieIt(^)A`xh|PC-UYnvp`MP3Y}?4_ z)+c`RU}RMY+_k}^#boZ)QzWyT{v7J%+_0`8XCN{KCGLYvIx>xST0w^!c2ZdFVy#j9)Q%#GKRJRv{ zRVRIfI)5D9@%(ZPxg_wGZI1#;OFt{LX)!U6XetbQsqp-M*8#l%N45n9yx?@A`G)dM zQ?xo6zjQ&D&Q%+x-Y;dC-okH&3{WR9`;j}>`I8J9hm23T7NEMi2>>EDHDOiU!jjqB zJ9pawwo#*s)kwkElMc`$EmR5!sY0ERax&q>u@cmdubghad&PB0zMA$bHIgB1vWAhE z)1=)XHWt4GLggjK&gC+5I1s-MPejROUN9~ep~qQ~Xz;fOMqfTM6V(3i0svB((h`{N zL!QO|sR&Fk+G0@tCl4-*$H&r-`9JCs*2=)p|MqeAetY^qGsu2nk^$!UZ&#<>C(d90 z9m^DfZ5$f@-#P;!em&@)-tNDB)Q|t49pKu6Q{!f5pE%wC1iVxfH07&hEkFG)mxoqE diff --git a/icons/mob/humans/onmob/suit_0.dmi b/icons/mob/humans/onmob/suit_0.dmi index 737b59f6c4afb3e25c3ad3094bf063ff5eb6a081..f2c4305f9cba91de4e14f334f75f62b2c3142470 100644 GIT binary patch literal 334931 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